.suckerdiv ul{
margin: 0;
padding: 0;
list-style-type: none;
width: 160px; /* Width of Menu Items */
border-bottom: 1px solid #ccc; /* Alt çizgi */
}
	
.suckerdiv ul li{
position: relative;
}
	
/*Sub level menu items */
.suckerdiv ul li ul{
position: absolute;
width: 160px; /*Alt menü genişlik*/
top: 0;
visibility: hidden;
}

/* Sub level menu links style */
.suckerdiv ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: black;
text-decoration: none;
background: #f4f4f4; /*Alt menüsü olmayan linkler */
padding: 5px 10px; /*Ust ve sol hiza*/
border: 1px solid #ccc;  /*Çerçeve Kalïnlığı ve rengi*/
border-bottom: 0;
}

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

.suckerdiv ul li a:hover{
background-color: #123456; /*Üstüne geldiğinde Bgcolor*/
color : #F4F4F4; /*Üstüne geldiğinde yazı rengi*/
}

.suckerdiv .subfolderstyle{
background: url(../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 */