/*  Navigation Menu  */

#navlist {
	/*height: 20px;*/
	width: 785px;
	margin: auto;
	text-align:center;
    z-index: 999;
	font-style: normal;
	font-family: "Trebuchet MS", Verdana, Tahoma, sans-serif;
	color: white;
	font-size: 12pt;
	position: relative;
}

#navlist ul {
    list-style: none;
    padding:  0px;
    margin: 0 auto 0 auto;
    text-align: center;
    vertical-align: middle;
    font-family: "Trebuchet MS", Helvetica, Georgia, Times New Roman, Serif;
	color:white;
	font-size:12pt;
	font-weight:bold;
	width: auto;
/*	height: 20px;*/
}

#navlist a {
    display: block;
    background: transparent;
    color: #FFFFFF;
    text-decoration: none;
    vertical-align: middle;
}

#navlist a:hover {
    color: black;
    background-color: transparent;
}

#navlist li {
      float: left;
      padding: 2px 10px 7px 10px;
      position: relative;
      list-style-type: none;
      text-transform: uppercase;
      font-weight: bold;
      text-align: center;
      margin: auto;
      border-right: 1px white solid;
      height: 15px;
      margin-top: 2px;
}

#navlist li.last {
     border-right: 0;
}

#navlist ul li ul {
      position: absolute;
      margin: 0;
      top: 100%;
      left: 0;
      display: none;  
      height: auto;
      width: 135px;
      text-align: center;
      font-weight: normal;
      padding-top: 0px;
      padding-bottom: 0px;
      color: white;
      background-color: #0376BF;
}

#navlist li.active
{
	background-color: #180B87;
}

#navlist ul li ul li {
	width:100%;
}

#navlist ul li ul li {
      width: 135px;
      padding-left: 0px;
      border-right: 0px;
      border-top: 1px solid white;
      border-left: 1px solid white;
      height: auto;
      font-size: 8pt;
      vertical-align:middle;
	  padding: 3px 0 3px 0;
}

#navlist li li.last {
border-bottom: 1px solid black;
border-right: 1px solid white;
}

#navlist li ul a {
      width: 136px;
      height: auto;
      padding-top: 2px;
      padding-bottom: 1px;
      font-weight: bold;
      vertical-align: middle;
      color: white;
}

#navlist li ul ul {
}

#navlist li:hover ul ul,
#navlist li:hover ul ul ul {
      display:none;
}

#navlist li:hover ul,
#navlist li li:hover ul,
#navlist li li li:hover ul {
      display:block;  
}

