/*font family for page. If you have another style sheet that sets font family, you can delete this rule*/
div, td, p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

/*Control DIV for expand all and collapse all links*/
#CMctrl {
	margin: 0 0 10px;
	font-size: 10px;
	display: none;
	/*/*/display: block; /* Hide from NN4*/
}
#CMctrl a:link {
	color: #FFFFFF;
}
#CMctrl a:visited {
	color: #FFFFFF;
}
#CMctrl a:hover {
	color: #681501;
}

/*Sets line-height of all menuitems*/
#CMnav {
	/*/*/line-height: 1.5; /* */
}
/*Sets background color and border around the menu DIV*/
#CMnav {
	border-bottom: 1px solid #002659;
	border-top: 1px none #002659;
	border-right: 1px none #002659;
	border-left: 1px none #002659;

}
#CMnav div {
	/*/*/background-color: #E63001; /* */
}

/*second level menuitem divs*/
/*Sets left margin to 12px establishing a cascading indent*/
/*Sets border and bg color to establish the pastel BOXES*/
#CMnav div div {
	margin: 0 0 0 10px;
	/*/*/border-left: 1px solid #002659;
	background-color: #004080; /* */
}

/*third level menuitem divs. Sets BOX color*/
#CMnav div div div {
	/*/*/background-color: #BBBBBB; /* */
}
/*fourth level menuitem divs. Sets BOX color*/
#CMnav div div div div {
	/*/*/background-color: #CCCCCC; /* */
}
/*fifth level menuitem divs. Sets BOX color. Cascades to lower levels*/
/*To set additional level color BOXES, add a new selector with an additional -div- appended*/
#CMnav div div div div div {
	/*/*/background-color: #C0C0C0; /* */
}

/*The Link style for top-level menuitems and is read by all browsers*/
#CMnav div a {
	color: #FFFFFF;
	font-size: 11px;
}
/*The Link style for top-level menuitems hidden from Netscape 4*/
#CMnav div a {
	/*/*/border-top: 1px solid #002659;
	border-right: 0px solid;
	border-bottom: 1px none #002659;
	border-left: 0px none #DDDEE8;
	text-decoration: none;
	background-color: transparent;
	display: block;
	padding: 2px 0 2px 10px; /* */
}
#CMnav div a:visited {
	color: #FFFFFF;
}
#CMnav div a:hover {
	background-color: #B72500;
	color: #FFFFFF;
}

/*The Link styles for second-level menuitems*/
#CMnav div div a {
	font-size: 11px;
	color: #FFFFFF;
}
#CMnav div div a:hover {
	color: #FFFFFF;
	background-color: #990000;
}

/*The Link style for third-level menuitems and lower*/
/*To set a specific style for the fourth level, add a div to the selector*/
/*Fourth-level example syntax: CMnav div div div div a {declaration}*/
#CMnav div div div a {
	font-size: 12px;
}

/*rules programatically assigned to parent links when image-based plus and minus option is selected. The padding on the 4 following rules supercedes (via !important) the padding on the CMnav div a selector when you've chosen the option to use images for the plus and minus signs*/
.CMplusmark {
	background-repeat: no-repeat;
	background-image:    url(CM_plus.gif);
	background-position: 8px 50%;
	padding: 0 0 0 20px !important;
}
.CMminusmark {
	background-repeat: no-repeat;
	background-image:    url(CM_minus.gif);
	background-position: 8px 50%;
	padding: 2px 0 2px 20px !important;
}

/*rule programatically assigned to child links when image-based plus and minus option is selected*/
.CMdefmark {
	background-image:  none;
	padding: 2px 0 2px 20px !important;
}

/*rules programatically assigned to page link correesponding to current page (You are Here)*/
.CMcurrentmark {
	font-weight: normal;
	letter-spacing: normal;
	background-color: transparent !important;
	color: #000000!important;
	padding: 2px 0 2px 10px!important;
}
