/* CSS Menus - Vertical CSS Menu with Popout and Dropdown Menus - 20050131 */

/* Begin CSS Popout Menu */

#vdropdown{
position:absolute;
z-index:2;
width:160px;
 /* To allow room for bottom dropdown padding-bottom:12em; */
}


#vdropdown ul {
	list-style:none;
	margin:0;
	padding:0;
	width:100%;
}

.vdropdownOptions {
	border-right: 1px solid #58697d;
	border-bottom: 1px solid #58697d;
	background-color: #cedae8;
}

/* 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#vdropdown li, div#vdropdown li:hover{
	position:relative;
}

div#vdropdown li:hover{
	background-color: #cedae8;
}

div#vdropdown li ul{
position:absolute;
top:0;
left:107px;
display:none;

}

div#vdropdown ul ul,
div#vdropdown ul ul ul,
div#vdropdown ul li:hover ul ul,
div#vdropdown ul li:hover ul ul ul
{
	display:none;
}

div#vdropdown ul li:hover ul,
div#vdropdown ul ul li:hover ul,
div#vdropdown ul ul ul li:hover ul
{
	display:block;
	padding: 0px 10px;
}


