/* CSS Menus - Vertical CSS Menu with Popout and Dropdown Menus - 20050131 */
/* Begin CSS Popout Menu */

#menu a{
	color: #000000;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	width:168px;
	padding-top: 7px;
	padding-bottom: 7px;
	font-size: 12px;
	background-image: url(bullet_wht.gif);
	background-repeat: no-repeat;
	padding-left: 30px;
	background-color: #FFCC00;
	background-position: 15px 12px;
	display: block;
}

#menu a:hover{
	color: #FFFFFF;
	background-color: #CC9900;
	background-image: url(bullet_blu.gif);
	background-repeat: no-repeat;
}

#menu a:active{
	color: #FFFFFF;
	background-color: #CC9900;
	background-image: url(bullet_blu.gif);
	background-repeat: no-repeat;
}

#menu ul{
    list-style:none;
    margin:0;
    padding:0;
    width:100%;
}

/* 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;
}

div#menu li ul{
    position:absolute;
    top:0;
    left:100%;
    display:none;
}

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 */