
/* CSS Document */

.suckerdiv ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 187px; /* Width of Menu Items */
    border-bottom: 1px solid #121212;
    font-family: tahoma, arial, sans-serif;
    font-size: 13px;
}

.suckerdiv ul li {
    position: relative;
}

/*1st level sub menu style */
.suckerdiv ul li ul {
    left: 186px; /* Parent menu width - 1*/
    position: absolute;
    width: 190px; /*sub menu width*/
    top: 0;
    display: none;

}

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

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

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

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

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

.suckerdiv ul li a:hover {  /* TOP LEVEL HOVER COLOR & BACKGROUND COLOR */
    background-color:#121212;
    color:#ffc000;
    text-decoration: none;

}


.suckerdiv ul li ul li a,
.suckerdiv ul li ul li a:link,
.suckerdiv ul li ul li a:visited {  /* FIRST LEVEL SUBMENU COLOR & BACKGROUND COLOR */
    background-color:#121212;
    color:#ffc000;
    text-decoration: none;
}


.suckerdiv ul li ul li a:hover {  /* FIRST LEVEL SUBMENU COLOR & BACKGROUND COLOR */
    background-color:black;
    color:white;
    text-decoration: none;
}

.suckerdiv ul li ul li ul li a:hover {
    background-color: #212121;
    color: #ffc000;
    text-decoration: none;
font-weight:bold;
}

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

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

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

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

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

* html .suckerdiv ul li a {
    height: 1%;
}
/* End */
