/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.menudiv
{
font: 11px Verdana, Arial, sans-serif;
}
.menudiv ul{
margin: 0;
padding: 0;
list-style-type: none;
width:100%; /* Width of Menu Items */
border-bottom: 1px solid #ccc;
background-color:#e3e3e3;
z-index:1000
}
	
.menudiv ul li{
position: relative;
z-index:1000
}
	
/*Sub level menu items */
.menudiv ul li ul{
position: absolute;
background:#e3e3e3;
width: 156px; /*sub menu width*/
top: 0;
visibility: hidden;
border: 1px solid #ccc;
}

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

.menudiv ul li ul a {
color:#86201e
}

.menudiv ul li a:hover{
background:#f2f2f2;
text-decoration:underline
}

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

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