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

/* single tab */
ul.jtabs li,
ul.jtabs2 li {
    display:block;
    width:auto;
	float:left;
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important;
}

/* link inside the tab. uses a background image */
ul.jtabs li a,
ul.jtabs2 li a {
	background: #ddd;
	font-size:14px;
	display:block;
	float:left;
	height: 30px;
	line-height:30px;
	text-align:center;
	text-decoration:none;
	color:#666;
	top:1px;
	padding:0px 10px;
	margin:0px 0px 0px 10px;
	position:relative;
	font-weight:bold;
	font-family: Georgia, serif;
	width:auto;
	_display:inline;
}

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

/* when mouse enters the tab move the background image */
ul.jtabs a:hover,
ul.jtabs2 a:hover {
	text-decoration:underline;
}

/* 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,
ul.jtabs2 a.current, ul.jtabs2 a.current:hover, ul.jtabs2 li.current a {
	cursor:default !important;
	color:#444 !important;
	background: #fff url(../../img/tab_bg.jpg) 0px 0px repeat-x;
}



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