.ui-tabs-nav li a, .ui-tabs-nav li a:link, .ui-tabs-nav li a:visited, .ui-tabs-nav li a:active, .ui-tabs-nav li a:hover {color:#FFF;}.ui-tabs-nav li a:active, .ui-tabs-nav li a:hover {color:#FFF;}

@media projection, screen { /* Use class for showing/hiding tab content, so that visibility can be better controlled in different media types... */
    .ui-tabs-hide {
        display: none;
    }
}

/* Hide useless elements in print layouts... */
@media print {
    .ui-tabs-nav {
        display: none;
    }
}

/* ------------- Skin ---------------- */

.ui-tabs-nav, .ui-tabs-panel {
	font-family: Helvetica, Arial, Verdana, sans-serif;	
}
.ui-tabs-nav {
/*	background: transparent url(/images_web/sbTabs.png) no-repeat; 		 */
    list-style: none;
    margin: 2px auto 0;  
    padding: 0 0 0 0px; 
	height:	24px;
	line-height: 24px;
	width: 174px;
}

.ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.ui-tabs-nav li {
    float: left;
	margin: 0;
    width: 92px; /* be nice to Opera */
	height:	24px;
	line-height: 24px;
	padding-left: 0px;
	margin-left: -10px;		
	color: #FFF;	 
}
.ui-tabs-nav li.first  {
	margin-left: 0px;
/*	border-right: 2px solid #e1c88e; */
}
.ui-tabs-nav li.sbNavSeparator  {
/*	
	background: transparent url(/images_web/sbTabsNavSeparator.jpg) no-repeat; 	 
*/
	width: 3px;
}
.ui-tabs-nav a, .ui-tabs-nav a span {
    display: block;
}
.ui-tabs-nav li a{
	color: #FFF;	 
	font-weight: bold;
    width: 92px; /* be nice to Opera */
	text-transform: uppercase;
	
}
.ui-tabs-nav a {
    font-size: 12px;
	padding: 0; 
	color: #FFF;	 
	height:	24px;
	line-height: 24px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
    outline: 0; /* prevent dotted border in Firefox */
/*
set the base hover image here (image should have highlighted tab first)
The width of each tab should be the same, and should match the width&min-widths below, as well as the negative background position.
*/		
}
.ui-tabs-nav .ui-tabs-selected a {
    position: relative;
    z-index: 2;
    margin-top: 0;
}
.ui-tabs-nav a span {
    width: 92px; /* IE 6 treats width as min-width */
    height: 28px; /* IE 6 treats height as min-height */
    line-height: 25px; /* IE 6 treats height as min-height */	
    min-height: 25px;
	height:	24px;
	line-height: 24px;
    padding-top: 6px;
    padding-right: 0;
}
*.ui-tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}

/* Tab Images -  de-selected*/
.ui-tabs-nav a, .ui-tabs-nav .ui-tabs-disabled a:active {
/*	background: transparent url(/images_web/sbTabs.png) no-repeat -92px 0; 	  */
	background:  url(/images_web/sbTabs.png) no-repeat -92px 0; 	 	
}

/* Tab Images -  selected*/
.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... */
	background:  url(/images_web/sbTabs.png) no-repeat 0 0; 	 	 
    cursor: text;
	color: #FFF;	 
}

/* Tab Images - hover*/
.ui-tabs-nav a:hover, .ui-tabs-nav a:focus, .ui-tabs-nav a:active,
.ui-tabs-nav .ui-tabs-deselectable a:hover, .ui-tabs-nav .ui-tabs-deselectable a:focus, .ui-tabs-nav .ui-tabs-deselectable a:active { /* @ Opera, we need to be explicit again here now... */
	background:  url(/images_web/sbTabs.png) no-repeat -184px 0; 	 	 
    cursor: pointer;
	color: #FFF;	 
}

.ui-tabs-panel {
}
.ui-tabs-loading em {
    padding: 0 0 0 20px;
/*    background: url(loading.gif) no-repeat 0 50%; */
}

/* 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  { /* @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
    display: inline-block;
}

