.suckerdiv ul{
margin: 0px;
padding: 0;
list-style-type: none;
width: 240px; /* Width of Menu Items */
border-bottom: 1px solid #000000;
font-family: Comic Sans MS;
font-size: small;
background: #62ad13;
color: white;
}
	
.suckerdiv ul li{
position: relative;
color: white;
}
	
/*Sub level menu items */
.suckerdiv ul li ul{
position: absolute;
width: 240px; /*sub menu width*/
top: 0;
visibility: hidden;
color: white;
}

/* Sub level menu links style */
.suckerdiv ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: white;
text-decoration: none;
background: #62ad13;
padding: 5px;
border: 1px solid #000000;
border-bottom: 0;
}

.suckerdiv ul li a:visited{
color: white;
}

.suckerdiv ul li a:hover{
background-color: #62ad13;
color: white;
}

.suckerdiv .subfolderstyle{
background: url(arrow-list.png) no-repeat center right;
color: white;
}

	
/* Holly Hack for IE \*/
* html .suckerdiv ul li { float: left; height: 1%; }
* html .suckerdiv ul li a { height: 1%; }
/* End */