/*dropdownmenu.css
  RSM 5/12/2007: cascading style sheet for a three-level, CSS-only dropdown menu.
  This method uses a combination of a and li :hover pseudoclasses to degrade gracefully. IE 7 and under only recognize a:hover.
  dropdownmenu_ie6.css includes IE6 and under hacks. See dropdownmenu.html for example markup.
  ---------------------------------------------------------------------------------------------------------------------------*/

.dropdownmenu
{
	width: 816px;
	font-size: 1.1em;
	position: relative;
	z-index: 100;
	font-family: verdana, sans-serif;
}
/* remove all the bullets, borders and padding from the default list styling */
.dropdownmenu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
.dropdownmenu ul ul {
	width:132px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.dropdownmenu li {
	float:left;
	width:110px;
	/*CH 9/18/2007 Changed width to fit all nav items on 1 linewidth:132px;*/
	position:relative;
	
}

/* style the links for the top level */
.dropdownmenu a,
.dropdownmenu a:visited {
	display:block;
	font-size:.85em;
	text-decoration:none; 
	color:#ffffff; 
	width:132px;
	border-bottom: none;
	height: 18px;
	text-align: left;
	display: block;
	padding: 10px 0px 10px 24px;
	background: #40ae49;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .dropdownmenu a, * html .dropdownmenu a:visited {
	width:92px;	/*rsm 2007-09-19: got as close as I could to fit sections on one line in IE6*/
}

/* style the second level background */
.dropdownmenu ul ul a.drop,
.dropdownmenu ul ul a.drop:visited {
	background:#ffffff;
}

/* style the second level hover */
.dropdownmenu ul ul a:hover{
	background:#ffffff;
}

.dropdownmenu ul ul a.drop:hover{
	background:#ffffff;
}
.dropdownmenu ul ul :hover > a.drop {
	background:#ffffff;
}
/* style the third level background */
.dropdownmenu ul ul ul a, .dropdownmenu ul ul ul a:visited {
	background:#ffffff;
}
/* style the third level hover */
.dropdownmenu ul ul ul a:hover {
	background:#ffffff;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.dropdownmenu ul ul {
visibility: hidden;
display: block;
position: absolute;
height:0;
top:36px;
left:24px;
width:132px;
}
/* another hack for IE5.5 */
* html .dropdownmenu ul ul {
top:36px;
t\op:36px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.dropdownmenu table {
	position:absolute;
	top:0; 
	left:10px;
}

/* style the second level links */
.dropdownmenu ul ul a,
.dropdownmenu ul ul a:visited {
background: #40ae49;
color:#ffffff; 
height:auto; 
padding: 4px; 
width:132px;
text-align: left;
border: none;
}

/* yet another hack for IE5.5 */
* html .dropdownmenu ul ul a {
width:112px;
w\idth:112px;
}

/* style the top level hover */
.dropdownmenu a:hover,
.dropdownmenu ul ul a:hover{
	text-decoration: underline;
}

.dropdownmenu :hover > a  {
	text-decoration: underline;
}

/* style the second level hover */
.dropdownmenu ul ul :hover > a {
	background: #40ae49;
	text-decoration: underline;
	font-weight: normal;
}

/* make the second level visible when hover on first level list OR link */
.dropdownmenu ul li:hover ul,
.dropdownmenu ul a:hover ul{
visibility:visible;
}

/* keep the third level hidden when you hover on first level list OR link */
.dropdownmenu ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.dropdownmenu ul :hover ul :hover ul{ 
visibility:visible;
}
