

.suckerdiv ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 170px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
	font-family: "Comic Sans MS", Arial, Helvetica, sans-serif;
	font-weight: bold;
}
	
.suckerdiv ul li{
position: relative;
}
	
/*Sub level menu items */
.suckerdiv ul li ul{
	position: absolute;
	width: 170px; /*sub menu width*/
	top: 0;
	visibility: hidden;
}

/* Sub level menu links style */
.suckerdiv ul li a{
	display: block;
	overflow: auto; /*force hasLayout in IE7 */
	color: #FFFFFF;
	text-decoration: none;
	background: #AF0000;
	padding: 3px 6px;
	border-bottom: 0 solid #FFCC00;
	border-top: 1px solid #FFCC00;
	border-right: 1px solid #FFCC00;
	border-left: 1px solid #FFCC00;
}

.suckerdiv ul li a:visited{
color: #FFFFFF;
}

.suckerdiv ul li a:hover{
	background-color: #C34040;
	color: #FFCC00;
}

.suckerdiv .subfolderstyle{
background: url(media/arrow-list.gif) no-repeat center right;
}

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