/*  LEVEL ONE */
ul.one {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 123px;
    }


ul.one li {
    font-weight: normal;
    float: left;
    z-index: 10000 !important;
    background: transparent;
    list-style: none;
    padding: 0;
    margin: 0;
    }


ul.one a:hover         {
    color: #000;
    }


ul.one a:active {
    color: #ffa500;
    }


ul.one li a {
    display: block;
    padding: 4px 8px;
    color: black;
    text-decoration: none;
    font-weight: normal;
    }

a.navAnchor {
    font-family: Times New Roman, Times, serif;
    font-size: 20px;
    display: block;
    color: white !important;
    padding: 0 13px 0 13px !important;
    font-weight: normal;
    text-shadow: 1px 1px 5px #373737;
    }


ul.one li:last-child a {
    /* Doesn't work in IE */
    border-right: none;
    }


ul.one li.hover,
ul.one li:hover {
    background: #e7d197;
    position: relative;
    background-image: url(images/hover_bak.jpg);
    background-repeat: repeat-x;
    background-position: bottom;
    }


ul.one li.itemOne,
ul.one li.itemOne {
    background: transparent !important;
    border: 1px solid transparent;
    padding-bottom: 5px;
    }


ul.one li.itemOne.hover,
ul.one li.itemOne:hover {
    background: #d7a460 !important;
    border: 1px solid white;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    -moz-border-radius-topright: 6px;
    -moz-border-radius-topleft: 6px;
    -webkit-border-top-right-radius: 6px;
    -webkit-border-top-left-radius: 6px;
    }


ul.one li.itemOne {
    white-space: nowrap;
    }


ul.one li.hover a {
    color: black;
    }


ul.one li.itemOne a.navAnchor:hover {
    color: white !important;
    }


/*  LEVEL TWO */
ul.one ul {
    width: 225px;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: -1px;
    z-index: 1000;
    border: 1px solid white;
    background-color: #0083df;
    padding: 3px;
    border-radius: 6px;
    border-top-left-radius: 0px;
    -moz-border-radius: 6px;
    -moz-border-radius-topleft: 0px;
    -webkit-border-radius: 6px;
    -webkit-border-top-left-radius: 0px;
    }


ul.one ul li {
    font-weight: normal;
    background: #f6f6f6;
    color: #000;
    border-bottom: 1px solid #ccc;
    float: none;
    }


ul.one ul li span {
    padding: 4px 8px;
    border-right: none;
    width: 100%;
    font-size: 12px;
    display: inline-block;
    }
                                      
/* IE 6 & 7 Needs Inline Block */
ul.one ul li a {
    border-right: none;
    width: 100%;
    font-size: 12px;
    display: inline-block;
    }

 
/*  LEVEL THREE */
ul.one ul ul {
    left: -102%;
    top: 0;
    }


ul.one li:hover > ul {
    visibility: visible;
    }

