/* Caution! Ensure accessibility in print and other media types... */
@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-helper-reset, .tx-b2btabs-pi1  .ui-helper-reset {margin: 0; padding: 0; border: 0; outline: 0;

}


.ui-tabs-nav, .ui-tabs-panel {
    font-family: "Trebuchet MS", Trebuchet, Verdana, Helvetica, Arial, sans-serif;
    font-size: 12px;

}
.ui-tabs-nav {
margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.4; text-decoration: none; font-size: 100%; list-style: none; background:url(../images/tabs_bg_header.jpg) repeat-x;
height:33px;
	clear:right;
}
.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 0 0 1px;
    min-width: 84px; /* be nice to Opera */
}
.ui-tabs-nav a, .ui-tabs-nav a span {
    display: block;
    padding: 0 10px;
    background: url(tab.png) no-repeat;
}
.ui-tabs-nav a {
display:block;
float:left;

height:33px;
line-height:33px;
font-family: Arial,Helvetica,sans-serif;
font-weight: bold;
font-size: 13px;
color: #ffffff;
text-decoration: none;
text-transform: uppercase;
outline: none;
border:none;
background:url(../images/tabs_bg_tab_default.jpg) right no-repeat;
margin:0;
}
.ui-tabs-nav .ui-tabs-selected {
line-height: 33px;
background:url(images/tabs_bg_active_tab.png) right bottom no-repeat;
background-position:100% 0px;
height:38px;
font-family: Arial,Helvetica,sans-serif;
font-weight: bold;
font-size: 13px;
color: #ffffff;
text-decoration: none;
margin-top:-5px;
margin-left:7px;
}
.ui-tabs-nav .ui-tabs-selected a {
cursor: text; padding: .5em 2em .5em 1em ;background:url(images/tabs_bg_active_tab_left.png) no-repeat; background-position:0px 0px;
color:#000000;
margin-left:-7px;
float:left;
}



.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-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... */
    cursor: pointer;
}
.ui-tabs-disabled {
    opacity: .4;
    filter: alpha(opacity=40);
}
.ui-tabs-panel {

padding: 0 0px 10px 5px;
color:#000000;
border-width:1px;
border:solid 1px #CCCCCC;
border-top:none;
background:url(images/tabs_bg_content.jpg) bottom repeat-x;

}


#main_content_footer .ui-tabs-panel {
padding:10px;
width:978px;
}

#main .ui-tabs-panel {
padding: 0 10px 10px 10px;
}
.ui-tabs-panel .csc-text{


}


.ui-tabs-panel .csc-text:after {
clear:both;

}

.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;
}


