/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.menudiv
{
font: 12px Verdana, Arial, sans-serif;
overflow: visible;
width: 100%;
background: #ffffff;
/*border: 1px solid #ccc;*/
}
.menudiv ul{
margin: 1;
padding: .15em;
list-style-type: none;
width: auto; /* Width of Menu Items */
}
	
.menudiv ul li{
position: relative;
}
	
/*Sub level menu items */
.menudiv ul li ul{
visibility: hidden;
position: absolute;
background: #f8f8f9;
width: 200px;
top: -6px;

border: 1px solid #ccc;
}

/* Sub level menu links style */
.menudiv ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: #000;
text-decoration: none;
background: #f8f8f9;
margin: 1;
padding: .15em;
}

.menudiv ul li a:visited{
}

.menudiv ul li a:hover{
color: #a00;
background: #ffffcc;
}

.menudiv .subfolderstyle{
background: url("images/icons/Menu Arrow.gif") no-repeat center right;
background-color: #ffffff;
}
.menudiv .subfolderstyle:hover{
background: url("images/icons/Menu Arrow Highlighted.gif") no-repeat center right;
background-color: #ffffff;
}
	
/* Holly Hack for IE \*/
* html .menudiv ul li { float: left; height: 1%; }
* html .menudiv ul li a { height: 1%; }
/* End */