/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.menudiv
{
font: 11px Tahoma, Verdana, Arial, sans-serif;
font-weight : bold;
}
.menudiv ul{
margin: 0;
padding: 0;
list-style-type: none;
width: 160px; /* Width of Menu Items */
border-bottom: 1px solid #ccc; 
}
	
.menudiv ul li{	
position: relative;
z-index: 100;
}
	
/*Sub level menu items */
.menudiv ul li ul{
position: absolute;
background: #f8f8f9;
width: 150px; /*sub menu width*/
top: -15px;
visibility: hidden;
border: 1px solid #ccc;
z-index: 100;
overflow-x:hidden;
overflow-y:auto;
height: expression( this.scrollHeight > 399 ? "400px" : "auto" ); /* sets max-height for IE */
max-height: 400px; /* sets max-height value for all standards-compliant browsers */
}

/* Sub level menu links style */
.menudiv ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: #000;
text-decoration: none;
background: #f8f8f9;
padding: 3px 3px;
border: 1px solid #ccc;
border-bottom: 0;
}

.menudiv ul li a:visited{}

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

.menudiv .subfolderstyle{
background: url(images/fwr_arrow.png) no-repeat center right;
}

	
/* Holly Hack for IE \*/
* html .menudiv ul li { float: left; height: 1%; }
* html .menudiv ul li a { height: 1%; }
/* End */