
/* 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-tabs-nav {
    list-style: none;
    margin: 0;
  height:35px;
  float:right;
  margin-bottom:10px;
  border:0px solid green;
}
.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 li a {
    display: block;
    padding: 0px;
    background: url(../img/layout/tabs_content.png) no-repeat;
  height:35px;
  text-indent:-1000em;
}

.ui-tabs-nav li a {
    position: relative;
    top: 1px;
    z-index: 2;
    padding-left: 0;
    color: #27537a;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
}



/* default */
.ui-tabs-nav li#tab-home a {
  width:75px;
  background-position:0 0;
}

.ui-tabs-nav li#tab-info a {
  width:91px;
  background-position:-75px 0;
}

.ui-tabs-nav li#tab-cast a {
  width:148px;
  background-position:-166px 0;
}


/* rollover */
.ui-tabs-nav li#tab-home a:hover {
  width:75px;
  background-position:0 -35px;
}

.ui-tabs-nav li#tab-info a:hover{
  width:91px;
  background-position:-75px -35px;
}

.ui-tabs-nav li#tab-cast a:hover {
  width:148px;
  background-position:-166px -35px;
}

/* active */
.ui-tabs-nav li#tab-home.ui-tabs-selected a {
  width:75px;
  background-position:0 -35px;
}

.ui-tabs-nav li#tab-info.ui-tabs-selected a {
  width:91px;
  background-position:-75px -35px;
}

.ui-tabs-nav li#tab-cast.ui-tabs-selected a {
  width:148px;
  background-position:-166px -35px;
}

