/* CSS Menus - Vertical CSS Menu with Popout and Dropdown Menus - 20050131 */

*{margin:0;padding:0;border:none;}

body{margin:0.5em 0.5em 0.5em 2.0em;font-size:100%;font-family:verdana,tahoma,arial,sans-serif;}

/* Begin CSS Popout Menu */

#menu{
	position:relative;
	top:0.5em;	
	width:300px;
	padding-bottom:20px; /* To allow room for bottom dropdown */
	z-index:5;
}

#menu a{
	display:block;
	line-height: 24px;
	white-space:nowrap;
	margin:0;
	padding:0 30px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
}

#menu a{
color:#013527;
background:#e1dac8;
text-decoration:none;
line-height: 24px;

}

#menu a:hover{
	color:#6a6347;
	background:#d0c9af;
	line-height: 24px;

}

#menu a:active{
color:#060;
background:#e1dac8;
line-height: 24px;
}

#menu ul{
list-style:none;
margin:0;
padding:0;
width:100%;
line-height: 24px;
}

/* Requirement: Put the element selector name (div)
onto non anchor hover selectors to force IE5 and
5.5 to correctly apply the csshover file. */

div#menu li, div#menu li:hover{
position:relative;
line-height: 24px;
}

div#menu li ul{
position:absolute;
top:0;
left:100.1%;
display:none;
line-height: 24px;
}

div#menu ul ul,
div#menu ul ul ul,
div#menu ul li:hover ul ul,
div#menu ul li:hover ul ul ul
{display:none;}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display:block;}

/* End non-anchor hover selectors */

/* Styling for Expand */

#menu a.x, #menu a.x:visited{
background-image: url(/images/nav_button.gif);
	background-repeat: no-repeat;
		line-height: 24px;
}

#menu a.x:hover{
color:#6a6347;
background:#d0c9af;
background-image: url(/images/nav_button_o.gif);
background-repeat: no-repeat;
	line-height: 24px;
}

#menu a.x:active{
	color:#060;
	background-color: #e1dac8;
	background-image: url(/images/nav_button.gif);
	background-repeat: no-repeat;
	line-height: 24px;
}



