.menulist ul{
margin: 0;
padding: 0;
list-style-type: none;
width: 100%; /* Width of Menu Items */
border-bottom: 1px solid #ccc;
background: #FFFFFF;
}
	
.menulist ul li{
position: relative;
}
	
/*Sub level menu items */
.menulist ul li ul{
position: absolute;
width: 160px; /*sub menu width*/
top: 0;
visibility: hidden;

}

/* Sub level menu links style */
.menulist ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: #004cab;
font-weight: bold;
text-decoration: none;
padding: 4px 0px 4px 5px;
border-bottom: 1px solid #d7d7d7;
background: #efefef;
}

.menulist ul li a:visited{
color: black;
}

.menulist ul li a:hover{
background-color: #d7d6d3;
color: #126b00;
text-decoration:underline;
}

.menulist .subfolderstyle{
background: #DBE1D7 url(../images/arrow.gif) no-repeat center right;
}

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

