/* tab pane styling */
div.tabs_content div {
	display:block;
	background-color:#fff;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCCCCC;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCCCCC;
	padding-top: 15px;
	padding-bottom: 0px;
}

/* root element for tabs  */
ul.tabs {
	list-style:none;
	margin:0 !important;
	padding:0;
	border-bottom:1px solid #666;
	height:34px;
}

/* single tab */
ul.tabs li {
	float:left;
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important;
}

/* link inside the tab. uses a background image */
ul.tabs a {
	display:block;
	height: 31px;
	line-height:34px;
	width: 130px;
	text-align:center;
	text-decoration:none;
	margin:0px;
	position:relative;
	top:1px;
	background-image: url(../images/blue2.jpg);
	background-repeat: no-repeat;
	background-position: -424px 0;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

ul.tabs a:active {
	outline:none;
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background-position: -424px -35px;
	color:#0066CC;
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	background-position: -424px -70px;
	cursor:default !important;
	color:#0066CC!important;
	font-weight: bold;
	font-size: 105%;
	letter-spacing: 1px;
}

