/* Here is the css that controls the tabs on the header */


.indentmenu{
	font: bold 18px Tahoma, Geneva, sans-serif;
	width: 100%; /*leave this value as is in most cases*/
}

.indentmenu ul{
	margin: 0 0 0 25px;
	padding: 0 0 0 0;
	float: left;
	/* width: 80%; width of menu*/
	border-top: 1px solid #fbc378; /*navy border*/
}

.indentmenu ul li{
	display: inline;
}

.indentmenu ul li a{
	float: left;
	color: white; /*text color*/
	background: #012e58;
	padding: 2px 15px;
	text-decoration: none;
	border-right: 1px solid #fbc378; /*navy divider between menu items*/
}

.indentmenu ul li a:visited{
	color: white;
}

.indentmenu ul li a:hover{
	background: #f5d417;
	color: #002d57;
}

.indentmenu ul li a.selected{
	color: #012e58 !important;
	padding-top: 2px; /*shift text down 1px*/
	background: #f5d417;
}


.tabcontentstyle{ /*style of tab content oontainer*/
	width: 791px;
	background: url(../images/tab-bg.jpg) left top repeat-y;
	padding: 20px 10px 5px 10px;
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: normal;
	color: #000;
	font-size: 12px;
	clear: both;
}

.tabcontentbottom {
	word-spacing: 801px;
	height: 24px;
	display: block;
	background: url(../images/tab-bottom.jpg) left top no-repeat;
	clear: both;
}

.tabcontent{
	display:none;
}

@media print {
.tabcontent {
	display:block !important;
}
}