/**	The tab layout puts a series of buttons in a horizontal row with the corresponding content under them. **/
.tabs {
	background-color:white;
	padding-top:12px;
	padding-left:6px;
	padding-right:6px;
	margin-top:3px;
}
	
.tabRow {
	font-size:90%;
	font-weight:normal;
	color:white;
	font-family:sans-serif;
	border:none;
	width:auto;
}

.tabRow .activeTab {
	padding:6px;
	background-color:#0B1439;
	margin-right:.25em;
}

.tabRow .inactiveTab {
	padding:6px;
	background-color:#55709E;
	margin-right:.25em;
	cursor:pointer;
}

.tabContent { 
	background-color:#F7F7FF; 
	padding:.5em 1em; 
	border:1px solid #0B1439; 
	margin-top:1em;
	margin-bottom:1em; 
}