﻿#tabbedTable {
	width: 500px;
	height: 250px;
	position: relative; 
}
#displayContent {
	border: 1px outset;
	border-bottom: 0;
}
.tab {
	text-align: center;
	vertical-align: middle;
	height: 24px;
	width: 25%;
	border: 1px outset;
	cursor: pointer;
	color: #6699CC;
	background-color: #EEEEEE;
}
#activeTab {
	border-top: 0;
	color: #006699;
	background-color: #FFFFFF;
}
.contentBlock {
	display: none;
	position: relative;
	width: 498px;
	height: 248px;
	overflow: hidden;
	text-align: center;
}
#activeContent {
	display: block;
}

