/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.suckerdiv{
z-index:9997;
}
.suckerdiv ul{
margin: 0;
padding: 0;
list-style-type: none;
width: 154px; /* Width of Menu Items */
border-bottom: 0px solid #ccc;
font-family: arial;
font-size: 12px;
}

.suckerdiv ul li{
position: relative;
background-color: #fff;
z-index: 9998;
}

/*1st level sub menu style */
.suckerdiv ul li ul{
left: 153px; /* Parent menu width - 1*/
position: absolute;
width: 200px; /*sub menu width*/
top: 0;
display: none;
z-index: 9999;
}

/*All subsequent sub menu levels offset */
.suckerdiv ul li ul li ul{
left: 199px; /* Parent menu width - 1*/
}

/*All subsequent sub menu levels offset */
.suckerdiv ul li ul li a{
left: 199px; /* Parent menu width - 1*/
background-color: #9cd3fc;
}

/*All subsequent sub menu levels offset */
.suckerdiv ul li ul li ul li a{
background-color: #6db8fc;
}

/*All subsequent sub menu levels offset */
.suckerdiv ul li ul li ul li ul li a{
background-color: #aaa;
}

/* menu links style */
.suckerdiv ul li a{
display: block;
color: black;
text-decoration: none;
background-color: #fff;
padding: 1px 5px;
border: 1px solid #c1d9eb;
border-bottom: 0;
line-height: 1.8em;
}

.suckerdiv ul li a:hover{
background-color: 3366cc;
color: white;
text-decoration: none;
}

.suckerdiv ul li ul li a:hover{
background-color: 3366cc;
color: white;
text-decoration: none;
}

.suckerdiv ul li ul li ul li a:hover{
background-color: 3366cc;
color: white;
text-decoration: none;
}

/* The main categories with sub-categories */
.suckerdiv .subfolderstyle{
background: url(images/arrow-list.gif) no-repeat center right;
}

/* This one colors the sub-folder with other sub-folders */
.suckerdiv ul li ul .subfolderstyle {
background-color: #9cd3fc;
}

/* This one colors the sub-folder with other sub-folders */
.suckerdiv ul li ul li ul .subfolderstyle {
background-color: #bbb;
}

/* This one colors the sub-folder with other sub-folders */
.suckerdiv ul li ul li ul li ul .subfolderstyle {
background-color: #aaa;
}

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