/* 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 {
	margin: 0 0 -4px 0;
	padding: 0;
	height: 29px;
	list-style: none;
}
.ui-tabs-nav li {
	float: left;
	display: inline;
	margin: 0 8px 0 0;
	padding: 0;
	font-size: 11px !important;
}
.ui-tabs-nav a:link,
.ui-tabs-nav a:visited {
	display: block;
	text-decoration: none;
	font-weight: normal;
	background: no-repeat top left url("images/img/bkg/tab_blue_left.gif");
}
.ui-tabs-nav a span {
	display: block;
	padding: 6px 8px;
	color: #FFFFFF;
	background: no-repeat top right url("images/img/bkg/tab_blue_right.gif");
	font-size: 11px !important;
}
.ui-tabs-nav .ui-tabs-selected a:link,
.ui-tabs-nav .ui-tabs-selected a:visited {
	color: #336699;
	font-weight: bold;
	padding: 0;
	font-size: 11px !important;
	background: no-repeat top left url("images/img/bkg/tab_white_left.gif");
}
.ui-tabs-nav a:hover,
.ui-tabs-nav .ui-tabs-selected a:hover {
	font-size: 11px !important;
}
.ui-tabs-nav .ui-tabs-selected a span {
	display: block;
	padding: 6px 8px;
	color: #006699;
	background: no-repeat top right url("images/img/bkg/tab_white_right.gif");
}
.ui-tabs-disabled {
    opacity: .4;
    filter: alpha(opacity=40);
}
.ui-tabs-disabled a:hover {
	color:#FFF;
}
.ui-tabs-panel .top {
	margin: -8px 0 0 -8px;
}

.ui-tabs-panel {
    padding:0;
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
    display: block;
}
.ui-tabs-panel ul {
	margin:0 0 0 18px; padding:0;
}
.ui-tabs-panel li {
	padding-bottom:8px;
}
.ui-tabs-loading em {
    padding: 0 0 0 20px;
    background: url(/images/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;
}

.ui-tabs-hide {
        display: none !important;
    }
