.tabs
{
	list-style-type: none;
	margin: 10px 0 0 0;
	padding: 0;
	display: block;
	height: 32px;
}
.tabs li
{
	margin: 0;
	float: left;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	padding-right:3px;
	margin-right:2px;
	
	background: transparent url(tab_deselected.gif) no-repeat 100% 0%;
}
.tabs li a
{
	display: block;
	text-decoration: none;
	color:#333333;
	
	background: transparent url(tab_deselected.gif) no-repeat;
	position: relative;
	padding: 8px 10px;
	z-index: 10;
}
.tabs .selected
{
	padding-right: 2px;
	background: transparent url(tab_selected.gif) no-repeat 100% 0%;
	border-bottom: none;
	font-weight: bold;
	position: relative;
	top: 3px;
	z-index: 10;
}
.tabs .selected a
{
	color: #333;
	background: transparent url(tab_selected.gif) no-repeat;
	padding: 8px 10px;
}
.tabPanel
{
	width: 495px;
	background: #fff url(tabs_bg.gif) repeat-x;
	padding: 15px;
	position: relative;
	left: -15px;
	margin-right: -15px;
	font-size:12px;
}
.tabContentHidden
{
	position: absolute;
	top: -10000px;
	left: -10000px;
}

.tabPanel ul
{
	line-height:25px;
}

