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

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

/* link inside the tab. uses a background image */
ul.tabs a { 
	background: #206BA4 -420px 0;
	font-size:15px;
	display:block;
	height: 30px;  
	line-height:30px;
	width: 185px;
	text-align:center;	
	text-decoration:none;
	color:#EBF4FA;
	padding:0px;
	margin:0px;	
	position:relative;
	border-left:1px dotted #ccc;
	border-top:1px dotted #ccc;
	border-right:1px dotted #ccc;
}

ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background: #206BA4;
	background-position: -420px -31px;	
	color:#ff9900;	
}

/* 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 {
	font-size:15px;
	background: #BBD9EE;
	background-position: -420px -62px;		
	cursor:default !important; 
	color:#333 !important;
}

/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;		
}

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

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

/* link inside the tab. uses a background image */
ul.tabs2 a {
        background: #206BA4 -420px 0;
        font-size:15px;
        display:block;
        height: 30px;
        line-height:30px;
        text-align:center;
        text-decoration:none;
        color:#EBF4FA;
        padding:0px;
	padding-left:15px;
	padding-right:15px;
        margin:0px;
        position:relative;
        border-left:1px dotted #ccc;
        border-top:1px dotted #ccc;
        border-right:1px dotted #ccc;
}

ul.tabs2 a:active {
        outline:none;
}

/* when mouse enters the tab move the background image */
ul.tabs2 a:hover {
        background: #206BA4;
        background-position: -420px -31px;
        color:#ff9900;
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabs2 a.current, ul.tabs a.current:hover, ul.tabs li.current a {
        font-size:15px;
        background: #BBD9EE;
        background-position: -420px -62px;
        cursor:default !important;
        color:#333 !important;
}

/* initially all panes are hidden */
div.panes div.pane {
        display:none;
}
