/*Sets line-height of all menuitems*/
#contextNav div {
	/*/*/line-height: 1.5; /* */
}


/*Sets background color and border around the menu DIV*/
#contextNav {
	background-color: #FFFFFF;
	border-bottom: 1px solid #999;
}

/*Sets a bottom margin for each top-level link*/
#contextNav div {
	margin: 0 0 .25em 0;
}

/*second level menuitem divs and lower -Cascades to lower levels-*/
/*Sets left margin to .6em establishing a fluid cascading indent*/
/*Sets a left border*/
#contextNav div div {
	margin: 0 0 0 .6em;
	border-left: 1px solid #999;
	border-bottom: 1px solid #666;
}

/*The Link style for top-level menuitems and is read by all browsers*/
#contextNav div a {
	color: #000;
	font-size: 1.0em;
}
/*The Link style for top-level menuitems hidden from Netscape 4*/
#contextNav div a {
	/*/*/display: block;
	color: #FFFFFF;
	border: 1px solid #999;
	padding: 0 0 0 .4em;
	text-decoration: none;
	background-color: #968354; /* */
}
#contextNav div a:visited {
	color: #FFF;
}
#contextNav div a:hover {
	color: #666;
	background-color: #CCCCCC;
}

/*The Link and visited styles combined for second-level menuitems*/
#contextNav div div a, #contextNav div div a:visited {
	color: #333;
	font-size: .9em;
	background-color: transparent;
	border: 0;
}
#contextNav div div a:hover {
	color: #fff;
	background-color: #999;
}

/*rules programatically assigned to page link correesponding to current page (You are Here)*/
.p7currentmark {
	font-weight: bold;
	text-transform: uppercase;
	background-color: transparent !important;
	color: #333 !important;
	padding: 0 0 0 20px !important;
}
