
/* root element for tabs  */
ul.jtabs {
	list-style:none;
	margin:0 !important;
	padding:0 !important;
	height:30px;
	border-bottom:1px solid #ccc;
}

/* single tab */
ul.jtabs li {
	float:left;
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important;
	_width:104px;
}

/* link inside the tab. uses a background image */
ul.jtabs a {
	background: #666;
	font-size:12px;
	display:block;
	height: 30px;
	line-height:30px;
	text-align:center;
	text-decoration:none;
	color:#ccc;
	top:1px;
	padding:0px 10px;
	margin:0px 0px 0px 10px;
	position:relative;
	font-weight:bold;
}

ul.jtabs a:active {
	outline:none;
	background: #F1F1F1;
	color:#000 !important;
}

/* when mouse enters the tab move the background image */
ul.jtabs a:hover {
	background: #F1F1F1;
	color:#000 !important;
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.jtabs a.current, ul.jtabs a.current:hover, ul.jtabs li.current a {
	cursor:default !important;
	color:#000 !important;
	background: #F1F1F1;
}



/* initially all panes are hidden */
div.jpanes div {
	padding:0px 0px;
	margin:0px;
}
div.jpanes div div{
    padding:0px;
}
div.jpanes div.pane {
	display:none;
}
