/* ######### CSS for Indented CSS Tabs. Remove if not using ######### */
.indentmenu{
	font: bold 13px Arial;
	width: 336px; /*leave this value as is in most cases*/
	float:left;
	}
.indentmenu ul{
	margin: 0;
	padding: 0;
	float: left;
	/* width: 80%; width of menu*/
	/*border-top: 1px solid navy; navy border*/
	/*background: black url(tab.jpg) center center repeat-x;*/
	width:380px;
	/*height:30px;*/
	}
.indentmenu ul li{
	float:left;
	width:118px;
	padding:0 3px 0 0;
	list-style:none;
	}
.indentmenu ul li a{
	float: left;
	color: white; /*text color*/
	padding: 10px 0px 0px 0px;
	text-decoration: none;
	/*border-right: 1px solid navy; navy divider between menu items*/
	width:118px;
	background:url(tab.jpg) no-repeat;
	height:24px;
	text-align:center;
	}
.indentmenu ul li a:visited{
	color: white;
	}
.indentmenu ul li a.selected{
	color: #fdbe57 !important;
	padding: 10px 0px 0px 0px;
	background:url(tab_active.jpg) no-repeat;
	width:118px;
	text-align:center;
	}
.tabcontent{
	display:none;
	font-size:16px;
	padding:30px 10px 30px 10px;
	}
	
	@media print {
	.tabcontent {
	display:block !important;
	}
	}
