
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.suckertreemenu {
    border-top: 4px solid black;
    border-bottom: 4px solid black;
    width: 920px;
    margin-left: 45px;
    margin: 2px auto 2px 45px;
}

.suckertreemenu ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    display:table;
}
/*Top level list items*/
.suckertreemenu ul li{
    display: inline;
    display:table-cell; vertical-align:middle;
    background-color: red;
    border-right: 1px solid #000;
    height: 35px;
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
    display: block;
/*  padding:5px 0 5px 0;*/
    width: 85px; /*Width of top level menu link items*/
    text-decoration: none;
    color: #fff;
    background-color: red;
    text-align: center;
    font-size: 14px;

}
	
/*1st sub level menu*/
.suckertreemenu ul li ul{
    left: 0;
    width: 85px;
    margin-top:0px;

    position: absolute;
    top: 1em; /* no need to change, as true value set by script */
    display: block;
    visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
    display: list-item;
    background-image:url(../images/menu-active-back.jpg);
    background-repeat:repeat-y;
    border-left:2px solid #BB8386;
    border-right:2px solid #BB8386;
    border-bottom:2px solid #BB8386;
    width: 85px;
    height:31px;
    padding-left:3px;
    font-size:11px;
    text-align:left;

    float: none;
}



/*All subsequent sub menu levels offset after 1st level sub menu */
.suckertreemenu ul li ul li ul{ 
left: 131px; /* no need to change, as true value set by script */
top: 0;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a{
    display: block;
    width: 130px; /*width of sub menu levels*/
    color: #323131;
    text-decoration: none;
}

.suckertreemenu ul li a:hover{
    width:85px;
    color: #323131;
}

#treemenu1 ul li a:hover{
width:130px;
color: #323131;
}

/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon{
    background: red;
}

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
background-image:url(../images/menu-active-back.jpg);
}

* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
padding-top: 1em;
}
	
/* Holly Hack for IE \*/
* html .suckertreemenu ul li { float: left; height: 1%; }
* html .suckertreemenu ul li a { height: 1%; }
/* End */
