/* CSS Menu */

.suckerdiv ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 220px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #BBBBBB;
}
	
.suckerdiv ul li{
position: relative;
}
	
/*Sub level menu items */
.suckerdiv ul li ul{
	position: absolute;
	width: 200px; /*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:#cc3333;
	text-decoration: none;
	background: #CCCCCC;
	padding: 1px 5px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 0;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #BBBBBB;
	border-right-color: #BBBBBB;
	border-bottom-color: #BBBBBB;
	border-left-color: #BBBBBB;
}

.suckerdiv ul li a:visited{
color: #993333;
text-decoration: none;
}

.suckerdiv ul li a:hover{
	color: #FF0000;
	background-color: #AAAAAA;
	text-decoration: underline;
}

.suckerdiv .subfolderstyle{
	background-color: #CCCCCC;
	background-image: url(/images/arrowbullet.png);
	background-repeat: no-repeat;
	background-position: right center;
}

	
/* Holly Hack for IE \*/
* html .suckerdiv ul li { float: left; height: 1%; }
* html .suckerdiv ul li a { height: 1%; }
/* End */
