/* 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... */
    .comprafacil .ui-tabs-hide {
        display: none;
    }
}

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

/* Skin */
.comprafacil .ui-tabs-nav, .comprafacil .ui-tabs-panel {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 12px;
}
.comprafacil .ui-tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}
.comprafacil .ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.comprafacil .ui-tabs-nav li {
    float: left;
    margin: 0;
    /*font-weight: bold;*/
}
.comprafacil .ui-tabs-nav a, .comprafacil .ui-tabs-nav a span {
	color: #595857;
    float: left; /* fixes dir=ltr problem and other quirks IE */
    padding: 0 12px;
    background: url(i/tabs_cf.gif) no-repeat;
}
.comprafacil .ui-tabs-nav a {
    margin: 0; /* position: relative makes opacity fail for disabled tab in IE */
    padding-left: 0;
    background-position: 100% 0;
    text-decoration: none;
    white-space: nowrap; /* @ IE 6 */
    outline: 0; /* @ Firefox, prevent dotted border after click */    
}
.comprafacil .ui-tabs-nav a:link, .comprafacil .ui-tabs-nav a:visited {
    /*color: #fff;*/
	color: #FFF;
}
.comprafacil .ui-tabs-nav .ui-tabs-selected a, .comprafacil .ui-tabs-nav .ui-tabs-selected a:hover {
	color: #CC0000;
    position: relative;
	top: 0;
   /* top: 1px;*/
    z-index: 2;
   /* margin-top: 0;*/
	background-position: 100% -30px;
}

.comprafacil .ui-tabs-nav a:hover {
	color: #CC0000;
    background-position: 100% 0;
}
.comprafacil .ui-tabs-nav a:hover span {
	color: #CC0000;
    background-position: 0 0;
}

.comprafacil .ui-tabs-nav a span {
    /*padding-top: 1px;*/
	padding-top: 0;
    padding-right: 0;
    height: 26px;
    background-position: 0 0;
    line-height: 26px;
}
.comprafacil .ui-tabs-nav .ui-tabs-selected a span, .comprafacil .ui-tabs-nav .ui-tabs-selected a:hover span {
	color: #fff;
    padding-top: 0;
    height: 26px;
    background-position: 0 -30px;
    line-height: 26px;
}
.comprafacil .ui-tabs-nav .ui-tabs-selected a:link, .comprafacil .ui-tabs-nav .ui-tabs-selected a:visited,
.comprafacil .ui-tabs-nav .ui-tabs-disabled a:link, .comprafacil .ui-tabs-nav .ui-tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
.comprafacil .ui-tabs-nav a:hover, .comprafacil .ui-tabs-nav a:focus, .comprafacil .ui-tabs-nav a:active,
.comprafacil .ui-tabs-nav .ui-tabs-unselect a:hover, .comprafacil .ui-tabs-nav .ui-tabs-unselect a:focus, .comprafacil .ui-tabs-nav .ui-tabs-unselect a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}
.comprafacil .ui-tabs-disabled {
    opacity: .4;
    filter: alpha(opacity=40);
}
.comprafacil .ui-tabs-nav .ui-tabs-disabled a:link, .comprafacil .ui-tabs-nav .ui-tabs-disabled a:visited {
    color: #000;
}
.comprafacil .ui-tabs-panel {
	border-top: none;
	/*border-bottom: 1px solid #ccd1d5;*/
   	padding-bottom: 0;
    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%;
}*/
.comprafacil .label {
padding-top: 5px;
padding-right: 12px;
}

/* Additional IE specific bug fixes... */
* html .comprafacil .ui-tabs-nav { /* auto clear @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}
*:first-child+html .comprafacil .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;
}
