@charset "UTF-8";

.tabbedPanels {
	overflow: hidden;
	margin: 0 0 15px;
	padding: 0px;
	clear: none;
	width: 98%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
}

.tabGroup {
	margin: 0px;
	padding: 0px;
}

.tab {
	position: relative;
	top: 1px;
	float: left;
	padding: 4px 7px;
	margin: 0px 1px 0px 0px;
	font: bold 1em sans-serif;
	background-color: #dddddd;
	list-style: none;
	border-left: solid 1px #cccccc;
	border-bottom: solid 1px #999999;
	border-top: solid 1px #999999;
	border-right: solid 1px #999;
	-moz-user-select: none;
	-khtml-user-select: none;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	cursor: pointer;
}

.tabHover {
	background-color: #cccccc;
}

.tabSelected {
	background-color: #ded4de;
	border-bottom: 1px solid #ded4de;
}

.tab a {
	color: black;
	text-decoration: none;
}

.tabContentGroup {
	clear: both;
	border-left: solid 1px #c4bfbf;
	border-bottom: solid 1px #c4bfbf;
	border-top: solid 1px #999999;
	border-right: solid 1px #999999;
	background-color: #ded4de;
}

.tabContent {
	overflow: hidden;
	padding: 4px;
	font-size: 10px;
}
.tabContent h5 {
	font-size: 12px;
	font-weight: bold;
	margin: 3px 0;
	padding: 0;
}
.tabContent a {
	text-decoration: none;
	font-size: 10px;
	color: #361d5b;
}
.tabContent a:hover {
	text-decoration: underline;
}
.tabContent p {
	font-size: 10px;
	line-height: 100%;
	margin: 0;
	padding: 0;
}
.contentVisible {
}

.vTabs {
	overflow: hidden;
	zoom: 1;
}

.vTabs .tabGroup {
	float: left;
	width: 10em;
	height: 20em;
	background-color: #eeeeee;
	position: relative;
	border-top: solid 1px #999999;
	border-right: solid 1px #999999;
	border-left: solid 1px #cccccc;
	border-bottom: solid 1px #cccccc;
}

.vTabs .tab {
	float: none;
	margin: 0px;
	border-top: none;
	border-left: none;
	border-right: none;
}

.vTabs .tabSelected {
	background-color: #eeeeee;
	border-bottom: solid 1px #999999;
}

.vTabs .tabContentGroup {
	clear: none;
	float: left;
	padding: 0px;
	width: 30em;
	height: 20em;
}

/* Styles for Printing */
@media print {
.tabbedPanels {
	overflow: visible !important;
}
.tabContentGroup {
	display: block !important;
	overflow: visible !important;
	height: auto !important;
}
.tabContent {
	overflow: visible !important;
	display: block !important;
	clear:both !important;
}
.tab {
	 overflow: visible !important;
	 display: block !important;
	 clear:both !important;
}
}