/* CSS for tabbed content  */

.tabs{
	width:620px;
	overflow:hidden;
	font-size:0.9em;
	zoom:1;
	padding:1px;
	position:relative;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
	text-align: left;
	}

.tabs dt {
	float:left;
	line-height:2;
	height:2em;
	background:#e8f0f5;
	border:1px solid #e8f0f5;
	border-bottom:0;
	padding:0 1em;
	position:relative;
	left:8px;
	margin-right:1px;
	cursor:pointer;
	
	-webkit-border-top-left-radius:8px;
	-webkit-border-top-right-radius:8px;
	-moz-border-radius-topleft:8px;
	-moz-border-radius-topright:8px;
}

.tabs dt:hover {
	background-color:#bfdff4;
}

.tabs dt.selected {
	border-color:#b0d0e9;
	background:#fff;
	z-index:3;
	cursor:auto;
}

.tabs dd {
	background:#fff;
	display:none;
	float:right;
	width:100%;
	margin:2em 0 0 -100%;
	position:relative;
	z-index:2;
}

.tabs dd.selected {
	display:block;
}

.tabs .tab-content {
	border:1px solid #b0d0e9;
	padding:8px;
	
	-webkit-border-radius:8px;
	-moz-border-radius:8px;
}	

.tab-content h3 {
	color: #5286C0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16pt;
	margin-right: 15px;
	padding-top: 3px;
	padding-right: 8px;
	padding-bottom: 3px;
	padding-left: 8px;
	margin-bottom: 8px;
	margin-top: 8px;
}
