/* JQuery TABS
 *************************************************/
.ui-tabs-hide { 
	display: none; 
}


/*
 * ui-tabs-nav This is the whole menu. Use this as a base class.
 * ui-tabs-selected This is the current tab. It's very important to create a strong visual indication which tab is the current one.
 * ui-tabs-unselect This is the class for all the tabs that are not selected but selectable.
 * ui-tabs-disabled For when a tab is disabled. Highly recommended to appear somewhat transparent or disabled. This is often done by graying the color.
 * ui-tabs-panel These are the boxes that will have their visibility toggled.
 * ui-tabs-hide This class hides the boxes (perhaps the most important class)
 * <span> The span tags are there to give freedom to tricks like rounded corners and resizable backgrounds. 
 */


.ui-tabs-nav {
    padding:0 !important;
    
}
.ui-tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0 0 0 0;
}
.ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.ui-tabs-nav li {
	position:relative;
    float: left;
    border:0;
	text-decoration:none;
	display:block;
	font-size:18px;
	line-height:35px;
	text-align:left;
	text-indent: 15px;
	background: url('../images/btn_content_tabs_left_inactive.png') no-repeat center left;
	padding-left:10px;
}
.ui-tabs-nav li a {
	background: url('../images/btn_content_tabs_inactive.png') no-repeat center right;
	padding-right:30px;
	height:35px;
	color:#99c;
	display:block;
	margin-right:5px;
}
.ui-tabs-nav .ui-tabs-selected {
	background: url('../images/btn_content_tabs_left_active.png') no-repeat center left;
}
.ui-tabs-nav .ui-tabs-selected a {
	background: url('../images/btn_content_tabs_active.png') no-repeat center right;
	color:#BB0000;
}
.ui-tabs-nav .ui-tabs-selected {

}
.ui-tabs-nav li span {
	color:black;
}
.ui-tabs-nav a {
    /*margin: 5px 0 0;  position: relative makes opacity fail for disabled tab in IE */
    padding-left: 0;    
    text-decoration: none;
    white-space: nowrap; /* @ IE 6 */
    outline: 0; /* @ Firefox, prevent dotted border after click */    
}
.ui-tabs-nav .ui-tabs-selected a {
    position: relative;    
    z-index: 2;
    margin-top: 0;    
}
.ui-tabs-nav a span {
    padding-top: 1px;
    padding-right: 0;
    height: 27px;
    background-position: 0 0;
    line-height: 27px;
    color:#9999CC;
    
}
.ui-tabs-nav .ui-tabs-selected a span {
    padding-top: 0;
    height: 27px;
    background-position: 0 -23px;
    line-height: 27px;
    color:#BB0000;
}
.ui-tabs-nav .ui-tabs-selected a:link, .ui-tabs-nav .ui-tabs-selected a:visited,
.ui-tabs-nav .ui-tabs-disabled a:link, .ui-tabs-nav .ui-tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
.ui-tabs-nav a:hover, .ui-tabs-nav a:focus, .ui-tabs-nav a:active,
.ui-tabs-nav .ui-tabs-unselect a:hover, .ui-tabs-nav .ui-tabs-unselect a:focus, .ui-tabs-nav .ui-tabs-unselect a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
    text-decoration: none;
}
.ui-tabs-disabled {
    opacity: .4;
    filter: alpha(opacity=40);
}
.ui-tabs-nav .ui-tabs-disabled a:link, .ui-tabs-nav .ui-tabs-disabled a:visited {
    color: #000;
}
.ui-tabs-panel {
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
}
/* Additional IE specific bug fixes... */
* html .ui-tabs-nav { /* auto clear @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}
*:first-child+html .ui-tabs-nav  { /* auto clear @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
    display: inline-block;
}
