/**
 * .shadetabs class applies to the drop down menu bar elements
 */
.shadetabs {
        background: #000000;                    /* Background behind tabs */
        border-bottom: 1px solid orange;       /* Divider between tabs and content */
        padding-top: 1px;                       /* Provides bg fill for tab height */
        margin: 0 0 0px 0;                      /* Space below divider */
}

.shadetabs ul {
        background: #000000;                    /* Background behind tabs */
        padding: 0px;                           /* Menu padding */
        margin: 3px 2px 2px 2px;                /* Margins on side of menu */
        font: bold 12px Verdana;
        list-style-type: none;
        text-align: left;
        color: white;
}

.shadetabs li{
        display: inline;
        padding: 3px 3px 1px 3px;                       /* tab text space */
}

.shadetabs li a {
        text-decoration: none;
        padding: 3px 4px 2px 1px;                       /* Controls tab size and text position */
        background: #AB631F;                            /* Tab background color */
        color: white;                                   /* Text color on tabs */
        border-top: 2px solid #C47838;                         /* Beveled edges on tabs */
        border-left: 2px solid #C47838;
        border-right: 2px solid #9B530F;
}

.shadetabs li a:visited {
        color: #2d2b2b;
        color: white;
}

.shadetabs li a:hover {
        text-decoration: underline;
        background: orange;
}

.shadetabs li.selected {
        /*      background: #FF37FF;  <--space between tabs */
}

.shadetabs li.selected a {
        /* background-image: url(images/shadeactive.gif); */
        background: orange;
        /* border-bottom-color: white; */
}

.shadetabs li.selected a:hover { /*selected main tab style */
        text-decoration: none;
}

/**
 * dropmenudiv class applies to submenus
 */
.dropmenudiv {
        position: absolute;
        top: 0;
        border: 1px solid #AB631F;
        border-width: 0 1px;
        font:normal 12px Verdana;
        line-height:18px;
        z-index:100;
        /*      background-color: white; */
        width: 200px;
        visibility: hidden;
        background: #AB631F;
        color: white;
        /* background: white url(images/shade.gif) top left repeat-x; */
        z-index: 20;
}

.dropmenudiv a {
        width: auto;
        display: block;
        text-indent: 3px;
        border-bottom: 1px solid #351504; /*drop down menu bottom border*/
        border-left: 5px solid #8B430F; /*drop down menu bottom border*/
        border-right: 1px solid #351504;
        padding: 3px;
        text-decoration: none;
        font-weight: bold;
        color: white;
}

* html .dropmenudiv a {
        width: 100%;
}

.dropmenudiv a:hover{
        background: orange;
        color: white;
}
