﻿.menu ul
{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/*Top level list items*/
.menu ul li
{
    position: relative;
    display: inline;
    float: left;
    background-color: #696364; /*overall menu background color*/
    padding: 1px 8px;
}

/*Top level menu link items style*/
.menu ul li a
{
    display: block;
    width: 125px; /*Width of top level menu link items*/
    padding: 1px 8px;
    border: 1px solid #B4B4B4;
    border-left-width: 0px;
    text-decoration: none;
    color: White;
    border-left-color: White;
}

/*1st sub level menu*/
.menu ul li ul
{
    left: 0;
    position: absolute;
    top: 1em; /* no need to change, as true value set by script */
    display: block;
    visibility: hidden;
    padding: 1px 8px;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.menu ul li ul li
{
    display: list-item;
    float: none;
    padding: 1px 5px;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.menu ul li ul li ul
{
    left: 125px; /* no need to change, as true value set by script */
    top: 0;
    padding: 1px 5px;
}

/* Sub level menu links style */
.menu ul li ul li a
{
    display: block;
    width: 125px; /*width of sub menu levels*/
    color: White;
    text-decoration: none;
    padding: 1px 5px;
    border: 1px solid #ccc;
}

.menu ul li a:hover
{
    background-color: #969696;
    color: Yellow;
    padding: 1px 8px;
}

/*Background image for top level menu list links */
.menu .mainfoldericon
{
    background: #696364 url("../images/arrow-down.gif") no-repeat center right;
}


/*Background image for subsequent level menu list links */
.menu .subfoldericon
{
    background: #F3F3F3 url("../images/topMenuImages.png") no-repeat center right;
}

* 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 .menu ul li
{
    float: left;
    height: 1%;
    padding: 1px 8px;
}
* html .menu ul li a
{
    height: 1%;
}

.menu ul li a.active
{
    background: #F2E413;
    color: blue;
    padding: 1px 8px;
}
.menu li a.disactive
{
    background: #696364;
    color: White;
}
.menu .mainfoldericonwhenSelecting
{
    background: #F2E413 url("../images/arrow-down.gif") no-repeat center right;
    color: Blue;
}
/* End */