﻿/* MAIN NAVIGATION
   --------------------------------------------------------------------------------------- */
    #menu * {
        margin:0;
        padding:0;
    }
    
    /* navigation menu
       --------------- */
    #menu ul { /* all lists */
	    position: relative;
	    display: block;
	    top: 0;
	    z-index: 5;
    }
    #menu li {
	    /* all list items */
	    position: relative;
	    float: left;
	    font-weight: bold;
	    width: 118px;
	    margin-right: 2px;
	    text-align: center;
    }
    #menu li ul { /* second-level lists */
	    position: absolute;
	    display: none;
	    z-index: 734;
	    left: 0;
	    width: 118px;
    }
    #menu li>ul {
	    /* to override top and left in browsers other than IE,
	    which will position to the top right of the containing li, 
	    rather than bottom left */
	    top: auto;
	    left: auto;
    }
    #menu li:hover ul, li.over ul {
	    /* lists nested under hovered list items */
	    display: block;
	    position: absolute;
	    top: 35px;
	    left: -1px;
	    height: 27px;
	    z-index: 53;
	    color: #fff !important;
	    padding-top: 1px;
    }
    .sub {
	    display: block;
	    width: 118px;
	    text-align: center;
	    color: #fff;
	    text-transform: capitalize;
	    background: #a9badc url(../images/navigation_off.gif);
	    border-right: 2px solid #fff;
    }
    a.sub:link, a.sub:visited {
	    line-height: 35px;
	    text-decoration: none;
	    height: 36px;
	    font-size: 110%;
    }
    a.sub:hover, a.sub:active {
	    background: #37B93D;
	    color: #ffffff !important;
	    text-decoration: none;
	    background: url(../images/navigation_on.gif);
    }
    .active {
    	display: block;
	    width: 118px;
	    text-align: center;
	    color: #fff;
	    text-transform: capitalize;
	    background: #a9badc url(../images/navigation_on.gif) repeat-x;
	    border-right: 2px solid #fff;
        line-height: 35px;
	    text-decoration: none;
	    height: 36px;
	    font-size: 110%;
    }
    
    .dd_sub {
	    display: block;
	    width: 118px;
	    text-align: center;
	    color: #fff;
	    height: 30px;
	    line-height: 29px;
	    text-transform: capitalize;
	    background: #7088be;
	    border-left: 1px solid #fff;
	    border-bottom: 1px solid #fff;
	    border-right: 1px solid #fff;
    }
    
    .dd_sub:hover { background: #354c90; color: #fff;}
    
        #menu li.navigationLast {
            float: right;
        }
        a.subLast {
	        display: block;
	        width: 118px;
	        text-align: center;
	        color: #fff;
	        text-transform: capitalize;
	        background: #a9badc url(../images/navigation_off.gif);
	        border-left: 2px solid #fff;
        }
            a.subLast:link, a.subLast:visited {
	            line-height: 35px;
	            text-decoration: none;
	            height: 36px;
	            font-size: 110%;
            }
            a.subLast:hover, a.subLast:active {
	            background: #37B93D;
	            color: #ffffff !important;
	            text-decoration: none;
	            background: url(../images/navigation_on.gif);
            }
    
    
    #spacer { height:1px; background:#fff }
