﻿div.menu_container {
    background: url(../images/horGrad.gif) repeat-x #e9e9e9;
}

.menu {
    width: 90%;
    min-width: 950px;
    margin: 0 auto;
}

.menu ul {
    cursor: pointer;
    z-index: 10000;
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-transform: uppercase;
    white-space: nowrap;
}

/*Top level list items*/
.menu ul li {
    position: relative;
    display: inline;
    float: right;
}

/*Top level menu link items style*/
.menu ul li a, .menu ul li em {
    display: block;
    color: #0054a6;
    padding: 10px 20px;
    text-decoration: none;
    font-style: normal;
}

* html .menu ul li a, * html .menu ul li em {
    /*IE6 hack to get sub menu links to behave correctly*/
    display: inline-block;
}

.menu ul li a:link, .menu ul li a:visited {
    color: #0054a6;
}

.menu ul li a.selected {
    /*CSS class that's dynamically added to the currently active menu items' LI A element*/
    color: #fff;
    background: url(../images/horGrad_red.gif) repeat-x bottom #90060f;
}

.menu ul li a:hover, .menu ul li em {
    color: #fff;
    background: url(../images/horGrad_red.gif) repeat-x bottom #90060f;
}

.menu ul li .disabled em {
    color: #fff;
    background: url(../images/horGrad_grey.gif) repeat-x bottom #909090;
}

.menu ul li .disabled  {
   cursor: default !important;
}

/*1st sub level menu*/
.menu ul li ul {
    position: absolute;
    left: 0;
    display: none; /*collapse all sub menus to begin with*/
    visibility: hidden;
    background: white;
    border: 1px solid #90060f;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.menu ul li ul li {
    display: list-item;
    float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.menu ul li ul li ul {
    top: 0;
}

/* Sub level menu links style */
.menu ul li ul li a, .menu ul li ul li em {
    width: auto; /*width of sub menus*/
    padding: 10px;
    margin: 0;
    text-transform: none;
}

/*Holly Hack for IE7 and below*/
* html .menu {
    height: 1%;
}

.menu-linklist ul li {
    float: left;
}

.menu-linklist ul li a {
    padding: 7px 10px;
    margin: 0 1px;
    font-size: 11px;
}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass {
    position: absolute;
    top: 9px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: url("../images/down.png") no-repeat 0 0;
}

.rightarrowclass {
    position: absolute;
    top: 6px;
    right: 5px;
    width: 11px;
    height: 11px;
    background: url("../images/right.gif") no-repeat 0 0;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow {
    /*shadow for NON CSS3 capable browsers*/
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    background: silver;
}

.toplevelshadow {
    /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
    opacity: 0.8;
}