@charset "utf-8";
.suckerdiv ul{
	padding: 0;
	list-style-type: none;
	width: 200px; /* Width of Menu Items */

	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	font-size:12px;
	left:0;
	
}
	
.suckerdiv ul li{
position: relative;
}
	
/*1st level sub menu style */
.suckerdiv ul li ul{
left:169px; /* Parent menu width - 1*/
position: absolute;
width: 200px; /*sub menu width*/
top: 0;
display: none;

}

/*All subsequent sub menu levels offset */
.suckerdiv ul li ul li ul{ 
left: 160px; /* Parent menu width - 1*/
}

/* menu links style */
.suckerdiv ul li a{
	display: block;
	color: black;
	text-decoration: none;
	background: #fff;
	padding: 5px 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ccc;
	line-height: 25px;
}

.suckerdiv ul li a:visited{
color: black;
}

.suckerdiv ul li a:hover{
color: white;
background-color: gray;
}

.suckerdiv .subfolderstyle{
	background-image: url(../images/arrow-list.gif);
	background-repeat: no-repeat;
	background-position: 180px center;
}
	
/* Holly Hack for IE \*/
* html .suckerdiv ul li { float: left; height: 1%; }
* html .suckerdiv ul li a { height: 1%; }
/* End */



