

.ui-tabs-hide { display: none; } /*This class hides the boxes (perhaps the most important class)*/ 

.ui-tabs-nav {
list-style-image:none;
    list-style: none;
   
}
.ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.ui-tabs-nav li {
list-style-image:none;
    list-style: none;
float: left;
margin: 0 2px 0 0;
height:30px;
line-height: 30px;
}

.ui-tabs-selected {
background-image:none;
background-color:#FFFFFF;
}

.ui-tabs-nav a, .ui-tabs-nav a span {
float: left;  /* fixes dir=ltr problem and other quirks IE */
}

.ui-tabs-nav a {
display:block;
color: #666;
text-decoration: none;
white-space: nowrap; /* @ IE 6 */
outline: 0; /* @ Firefox, prevent dotted border after click */  
background-image:url(images/TabTile.jpg);
background-repeat:repeat-x;
background-position:bottom;
line-height: 30px;
height:30px;
padding: 0 20px;  
border-top: solid 1px #d8d8d8;
border-right: solid 1px #d8d8d8;
border-bottom: solid 1px #d8d8d8;
border-left: solid 1px #d8d8d8;
z-index:2;
position:relative;
top:-1px;
}

.ui-tabs-nav a:link, .ui-tabs-nav a:visited {
color: #666;
text-decoration: none;
white-space: nowrap; /* @ IE 6 */
}

.ui-tabs-nav a:hover {
color: #666;
text-decoration: none;
white-space: nowrap; /* @ IE 6 */
background-color:none !important;
}

.ui-tabs-nav .ui-tabs-selected a {
color: #666;
background-image:none;
border-bottom: solid 1px #fff;
}

.ui-tabs-nav a span {

}

.ui-tabs-nav .ui-tabs-selected a span {
line-height: 30px;

}
	
.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;
}
.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 {
border-bottom: 1px solid #d8d8d8;
border-top: 1px solid #d8d8d8;
min-height:200px;
padding: 10px;
background-image:url(images/TabSectionTile.jpg);
background-repeat:repeat-x;
background-position:bottom;
 /*background: #fff;  declare background color for container to avoid distorted fonts in IE while fading */
}
/*.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  { /* 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;
}