
/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:30px 0 0 10px !important; 
	padding:0;
	height:24px;
    position: absolute;
}

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

/* link inside the tab. uses a background image */
ul.tabs a { 
    z-index: 7;
    padding: 6px 10px 4px 10px;
	display:block;
	text-align:center;	
	text-decoration:none;
    position:relative;
    top: -8px;
    font-size: 14px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px solid rgb(214, 214, 214);
}

ul.tabs a:active {
	outline:none;	
    background: #f2f2f2;
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
    background: #f2f2f2;
	color:#7030a0;	
    padding: 6px 10px 4px 10px;
    top: -8px;
}

/* active tab uses a class name "current". its highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	background: rgb(255, 255, 255);
    cursor: default !important;
    color: rgb(53, 53, 53) !important;
    font-weight: bold;
    border-bottom: none;
    top: -7px;
}
/* initially all panes are hidden */ 
.panes .pane {
	display:none;    
}
.panes {
    margin-top:54px;
    padding: 10px;
    background: white url('../images/tab_panes_bg.png') repeat-x 5px 0;
    border-top: 1px solid rgb(214, 214, 214);
    border-left: 3px solid white;
}