/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.suckerdiv ul{
margin: 0;
padding: 0;
list-style-type: none;
width: 160px; /* Width of Menu Items */
border-bottom: 1px solid #ccc;
}
	
.suckerdiv ul li{
position: relative;
z-index: 501;
}
	
/*Sub level menu items */
.suckerdiv ul li ul{
position: absolute;
width: 300px; /*sub menu width*/
top: 0;
visibility: hidden;
z-index: 500;
}

/* Sub level menu links style */
.suckerdiv ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: black;
text-decoration: none;
background: #fff;
padding: 1px 5px;
border: 1px solid #ccc;
border-bottom: 0;
}

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

.suckerdiv ul li a:hover{
background-color: #336699;
color: #fff;
cursor: hand;

}

.suckerdiv .subfolderstyle{
/* background: #cc33ff url(../images/arrow-list-bl.gif)  repeat-x 20% 5%; */
background: #FFF url(../images/arrow-list-bl.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 */