@charset "utf-8";
/* CSS Document */

#navcontainer /* menu bar*/
{
width:820px;
background: #e4e4e4; /* Old browsers */
background: -moz-linear-gradient(top, #e4e4e4 0%, #b3b3b3 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e4e4e4), color-stop(100%,#b3b3b3)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #e4e4e4 0%,#b3b3b3 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #e4e4e4 0%,#b3b3b3 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #e4e4e4 0%,#b3b3b3 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4e4e4', endColorstr='#b3b3b3',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #e4e4e4 0%,#b3b3b3 100%); /* W3C */
-webkit-border-top-left-radius: 7px;
-webkit-border-top-right-radius: 7px;
-moz-border-radius-topleft: 7px;
-moz-border-radius-topright: 7px;
border-top-left-radius: 7px;
border-top-right-radius: 7px;
border-radius: 7px;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
margin-left:10px;
/*border-top: solid 1px #b3b3b3;
border-bottom: solid 1px #404040;
*/

}


#navcontainer ul
{
font-family: Verdana,Arial, Helvetica, sans-serif;
font-weight: bold;
color: #6b708f;
/*color: #fc3;*/
text-align: center;
margin: 0;
padding-bottom: 7px;
padding-top: 7px;;
padding-left: 0px;


}


#navcontainer ul li /* these are the text labels visible on the menu bar*/
{
display: inline;
}


#navcontainer ul li a  /* these are the text labels visible on the menu bar*/
{
padding: 16px 10px 11px 10px;  /* the top border gives the hover a new height */
text-decoration: none;
/* border-left: 1px solid #f6f6f6;
border-right: 1px solid #f6f6f6; the borders have the same size */
margin-right: -1px; /* the value has to be like the above but negative */
/*color: #4f5266;*/
color:#166671;
/*text-shadow: 0px 1px 1px #fff;*/
text-shadow: 1px 1px 1px #fff;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}



#navcontainer ul li a:hover  /* this is the tab that appears in the main nav bar on rollover*/
{
background: #b3b3b3; /* Old browsers */
background: -moz-linear-gradient(top, #b3b3b3 0%, #e4e4e4 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b3b3b3), color-stop(100%,#e4e4e4)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #b3b3b3 0%,#e4e4e4 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #b3b3b3 0%,#e4e4e4 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #b3b3b3 0%,#e4e4e4 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3b3b3', endColorstr='#e4e4e4',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #b3b3b3 0%,#e4e4e4 100%); /* W3C */
color: #f6f6f6;
text-shadow: 1px 1px 1px #4f5266;
}



#current {color: #ff3;}