.tabs {
	margin-left: 0;
	margin-top: 1px;
	margin-bottom: 0;
	list-style-type: none;
	text-align: left; /*set to left, center, or right to align the menu as desired*/
	padding-top: 3px;
	padding-right: 0;
	padding-bottom: 7px;
	padding-left: 0;
}
.tabs li {
	display: inline;
	margin: 0;
}
.tabs li a {
	text-decoration: none;
	position: relative;
	z-index: 1;
	margin-right: 5px;
	background-color: #FFE879;
	font-weight: bold;
	padding-top: 6px;
	padding-right: 12px;
	padding-bottom: 6px;
	padding-left: 12px;
	font-size: 13px;
	color: #796400;
}
.tabs li a:hover {
	text-decoration: none;
	background-color: #FFF1AF;
}
.tabs li a.selected { /*selected main tab style */
	position: relative;
	top: 1px;
	background-color: #E3EEFF;
	color: #2F6FB7;
}
.tabs li a.selected:hover { /*selected main tab style */
	text-decoration: none;
}
.tabcontent {
	/*display: none;*/
	background-color: #E3EEFF;
	padding-bottom: 5px;
	padding-top: 5px;
}
.tabcontent td {
	padding: 4px;
}

.tabcontent p {
	z-index: 200;
	position: relative;
}
.tabcontent img {
	z-index: 300;
	position: relative;
}

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

