/* tabs using UL */
.tabControl
{
	height: 20px;
	margin: 0;
	padding-left: 5px;
	background: url('tabBottom.gif') repeat-x bottom;
}
.tabControl li
{
	display: inline;
	list-style-type: none;
	margin: 0; 
	padding: 0;
}
/*Inactive Tab*/
.tabControl a:link,
.tabControl a:visited
{
	background: #eeffcc;
	border: 1px solid #9bb26c;
	color: #000;
	float: left;
	font-size: 12px;
	line-height: 14px;
	font-weight: normal;
	padding: 2px 4px 2px 4px;
	margin-right: 3px;
	text-decoration: none;
}
.tabControl a:hover
{
	background: #dffb98;
	color: #000;
}
/*Active Tab*/
.tabControl a:link.active,
.tabControl a:visited.active,
.tabControl a:hover.active
{
	background:#fff;
	color:#0f5415;
	font-weight:bold;
	border-bottom:solid 1px #fff;
	padding:2px 6px 2px 6px;
}
/*Content area of tab control*/
.tabContent
{
  background:#fff;
  border:solid 1px #9bb26c;
  border-top:none;
  padding:5px;
  padding-top:10px;
}
