/* 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 !important;
    }
}
/* Hide useless elements in print layouts... */
@media print {
    .ui-tabs-nav {
        display: none;
    }
}
/* Skin */
.ui-tabs-nav, .ui-tabs-panel {
   position: absolute;
   top: -25px;
   left: -3px;
}
.ui-tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0 0 0 3px;
}
.ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.ui-tabs-nav li {
    float: left;
}
/* default */
.ui-tabs-nav a {
    margin: 0;
    text-decoration: none;
    width: 135px;
	height: 24px;
    outline: 0;
	float: left;
    padding: 15px 0px 0px 0px;
    background: url(../images/tab.gif) no-repeat;
	font-weight: bold;
	text-align: center;
	color: #4A4A4A;
}
.ui-tabs-nav .ui-tabs-selected a {
	height: 24px;
    padding: 15px 0px 0px 0px;
    background: url(../images/tab_active.gif) no-repeat;
}

/* first */
.ui-tabs-nav li.first a {
    width: 135px;
	height: 24px;
	float: left;
    padding: 15px 0px 0px 0px;
    background: url(../images/tab_first.gif) no-repeat;
}
.ui-tabs-nav .first.ui-tabs-selected a {
	height: 24px;
    padding: 15px 0px 0px 0px;
    background: url(../images/tab_first_active.gif) no-repeat;
}
.ui-tabs-nav li.firstlast a {
    width: 135px;
	height: 24px;
    padding: 15px 0px 0px 0px;
    background: url(../images/tab_firstlast.gif) no-repeat;
}

/* latest */
.ui-tabs-nav li.last a {
    width: 139px;
	height: 24px;
	float: left;
    padding: 15px 0px 0px 0px;
    background: url(../images/tab_last.gif) no-repeat;
}
.ui-tabs-nav .last.ui-tabs-selected a {
	height: 24px;
    padding: 15px 0px 0px 0px;
    background: url(../images/tab_last_active.gif) no-repeat;
}
.ui-tabs-nav .ui-tabs-selected a:link, .ui-tabs-nav .ui-tabs-selected 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{ /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}
.ui-tabs-panel {
    margin: 50px 0px 0px 12px;
	background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
	width: 623px;
}

/* 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;
}
