/***********************************************/
/* nav.css stylesheet                          */
/* last modified 05-Jul-04                     */
/***********************************************/

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

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

/*Sets a bottom margin for each top-level link*/
#contextLinks 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*/
#contextLinks div div { margin: 0 0 0 .6em; border-left: 1px solid #999; }

/*The Link style for top-level menuitems */
#contextLinks div a { color: #000; font-size: 1em; }

/*The Link style for top-level menuitems hidden from Netscape 4*/
#contextLinks div a {
	/*/*/display: block;
	color: #FFFFFF;
	border: 1px solid #999;
	padding: 0 0 0 .4em;
	text-decoration: none;
	background-color: #8AA0CC; /* */
}
#contextLinks div a:visited { color: #fff; }
#contextLinks div a:hover { color: #333; background-color: #CCCCCC; }

/* Second-level menuitems */
#contextLinks div div a, #contextLinks div div a:visited { color: #999999; font-size: 1em; background-color: transparent; border: 0; }
#contextLinks div div a:hover { color: #fff; background-color: #999; }

/* Third-level menuitems and lower */
#contextLinks div div div a { font-size: 1em; }

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

