@charset "UTF-8";
/* CSS Document */


/* ------ navigation ---------*/
#menutype{
overflow: hidden;
 /*bottom horizontal line that runs beneath tabs*/
}

#menutype ul{
margin:0 0px;
padding: 0;
padding-left: 0px; /*offset of tabs relative to browser left edge*/
font-face:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 11px;
font-weight:600;
list-style-type: none;
}

#menutype li{
display: inline;
margin: 0;
}

#menutype li a{
float: left;
display: block;
text-decoration: none;
margin: 0px 0;
padding: 3px 10px; /*padding inside each tab*/
padding-bottom:7px;
padding-top:7px;
border-right: 3px solid #fccc66; /*right divider between tabs*/
color: white;
background: #660000; /*background of tabs (default state)*/
}
#menutype ul li.last a
{
text-decoration: none;
border-right: 3px solid #600001;
}

#menutype li a:visited{
color: #ffffff;
float: left;
display: block;
text-decoration: none;
margin: 0px 0;
padding: 3px 10px; /*padding inside each tab*/
padding-bottom:7px;
padding-top:7px;
border-right: 3px solid #fccc66; /*right divider between tabs*/
color: white;
background: #660000; /*background of tabs (default state)*/

}

#menutype li a:hover, .menutype li.selected a{
color: #ffcc66; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
}
#menutype ul li.active a
{
color: #ffcc66;
}
