/* CSS Document */

.suckerdiv ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 190px; /* Width of Menu Items */
    border-bottom: 0px solid #ff5200;
    font-family: arial;
    font-size: 11px;
}

.suckerdiv ul li {
    position: relative;
}

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

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

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

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

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

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

.suckerdiv ul li a:hover {
    background-color:#ff5200;
    color:#000000;
    text-decoration: none;
}

.suckerdiv ul li ul li a:hover {
    background-color:#ff5200;
    color:#000000;
    text-decoration: none;
}

.suckerdiv ul li ul li ul li a:hover {
    background-color: #ff5200;
    color: #000000;
    text-decoration: none;
}

/* 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: #302e2f;
}

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

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

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

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