/* ######### Brandons Main Menu Bar CSS ######### */
/* COLORZ
	Dark Red Menu - 8A4647
	teal - 6AAEBF
	dark blue - 082D59
	book blue - 0070A2
	tan - C0B087
*/

.menu {
	width:767px;
	float:left;
}	

.menu ul{
margin: 0;
padding: 0;
font: bold 16px Georgia, "Times New Roman", Times, serif;
list-style-type: none;
background: url(../../images/nav-bg-over.jpg) repeat-x;
overflow: hidden;
width: 100%;
}

.menu li{
display: inline;
margin: 0;
}

.menu li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
padding: 9px 34px;
color: #FFF;
}

.menu li a:visited{
color: white;
}

.menu li a:hover{
background: url(../../images/nav-bg.jpg) repeat-x; /*background of tabs for hover state */
color: #C0B087;
}

.menu ul li a.active {
background: url(../../images/nav-bg.jpg) repeat-x; /*background of tab with "active" class assigned to its LI */
color: #6AAEBF; /*#082D59;*/
}

.menu ul li #active {
background: url(../../images/nav-bg.jpg) repeat-x; /* try to make IE 6 play nicely */
color: #6AAEBF; /*#082D59;*/
}


