/* CSS Document */

  

.menu{
	padding: 0;
	width: 600px;
	border-top: 5px solid #4e3e26;
	background: transparent;
	voice-family: "\"}\"";
	voice-family: inherit;
	position: relative;
}

.menu ul{
	margin:0;
	list-style: none;
}

.menu li{
display: inline;
margin: 0 5px 0 0;
padding: 0;
text-transform:uppercase;
}

.menu a{
	float: left;
	display: block;
	font: bold 11px Arial;
	color: white;
	text-decoration: none;
	margin: 0 14px 0 0;
	padding: 5px 10px;
	background-color: #ada48d;
	border-bottom: 1px solid white;
	letter-spacing: 1px;
}

.menu a:hover{
background-color: #9b821e; /*Brown color theme*/ 
color: white;
}

.menu a.selected{ /*currently selected tab*/
background-color: #4e3e26; /*Brown color theme*/ 
color: white;
border-color: #4e3e26; /*Brown color theme*/ 
}

.tabcontent{
display:none;
}

@media print {
.tabcontent {
display:block !important;
}
}