﻿#navigation {
    background-image:url(images/nav-bg.jpg);
    background-repeat:repeat-x;
    clear: both;
 	min-width: 780px;
	max-width: 1260px;
}

/*Navigation -- Menu*/
.jquerycssmenu{
 background: url(images/nav-bg.jpg) top center repeat-x; 
    font: bold 11px Verdana;
    clear:both;
    padding-left: 1px; /*offset of tabs relative to browser left edge*/
}

.jquerycssmenu ul{
 background: url(images/nav-bg.jpg) top center repeat-x; 
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/*Top level list items*/
.jquerycssmenu ul li{
    background: url(images/nav-bg.jpg) top center repeat-x; /*background of tabs (default state)*/
    position: relative;
    display: inline;
    margin-left:0px;
    float: left;
}

/*Top level menu link items style*/
.jquerycssmenu ul li a{
    display: block;
    padding: 3px 12px 4px 12px;
    border-right: 1px solid #FFF; /*spacing between tabs*/
    border-bottom-width: 0;
    height:12px;
    color:#FFF;
    text-decoration: none;
    vertical-align:middle;
	z-index:0;
}

.jquerycssmenu ul li a:hover{
    background-image:url(images/tab-hover.jpg); /*tab link background during hover state*/
    color:#003366;
}
	
/*1st sub level menu*/
.jquerycssmenu ul li ul{
    position: absolute;
    left: 0;
    display: block;
    visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.jquerycssmenu ul li ul li{
    background-image:none;
    list-style-type: none;
    float: none;
}

.jquerycssmenu ul li ul li img{
    border: 0;
    vertical-align: text-top;
    padding-right: 2px;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.jquerycssmenu ul li ul li ul{
    top: 0;
}

/* Sub level menu links style */
.jquerycssmenu ul li ul li a{
    font: bold 11px Arial;
    width: 200px; /*width of sub menus*/
    background: white;
    color: #003366;
    padding: 4px 0px 4px 13px;
    margin-left:-2px;
    border-top-width: 0;
    border-left: 1px solid #003366;
    border-right: 1px solid #003366;
    border-bottom: 1px solid #003366;
    vertical-align:middle;
    text-align:left;
	z-index:5;
}

.jquerycssmenu ul li ul li a:hover{ /*sub menus hover style*/
    background:#23507A;
    color: #FFF;
}

