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

.ui-tabs .ui-tabs-hide { display: none !important; }
            
/* Skin */
.ui-tabs-nav, .ui-tabs-panel {
    font:normal 11px arial, helvetica;
}
.ui-tabs-nav {
    list-style: none;
    margin: 0;
    padding:0;
}
.ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.ui-tabs-nav li {
    float: left;
    list-style-type: none;
    margin: 0 6px 0 0px;
    min-width: 8px; /* be nice to Opera */
    min-height: 8px; /* be nice to Opera */

}
.ui-tabs-nav a,
.ui-tabs-nav a span {
    display: block;
}


.ui-tabs-nav a {
    margin: 0; /* position: relative makes opacity fail for disabled tab in IE */
    padding: 0;
    color: #2f4f72;
    font:bold 13px arial, helvetica;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
    background:url(/images/site/blank.gif) left top no-repeat;
}

.ui-tabs-nav .ui-tabs-selected a {
    z-index: 2;
    font:bold 13px arial, helvetica;
    color: #2f4f72;
}
.ui-tabs-nav a span {
    width: 8px; /* IE 6 treats width as min-width */
    height: 8px; /* IE 6 treats height as min-height */
    padding: 0;
	background: #5a98d2;
	background: #2f4f72;
    border:solid 0px #2f4f72; 
}

.ui-tabs-nav span img {
	width:8px;
	height:8px;
}

.ui-tabs-nav .ui-tabs-selected a span {
    padding-bottom: 0px;
}


.ui-tabs-nav .ui-tabs-selected a span,
.ui-tabs-nav a:hover span,
.ui-tabs-nav a:focus span,
.ui-tabs-nav a:active span {
    width: 8px; /* IE 6 treats width as min-width */
    height: 20px; /* IE 6 treats height as min-height */
    background:#ff7e00;
    background:#ffb53a;
     background:#ff7e00;
    border-bottom:0;
    padding: 0;
    border:solid 0px #2f4f72;
}

.ui-tabs-disabled {
    opacity: .2;
    filter: alpha(opacity=20);
}
.ui-tabs-panel {
    padding:0;
	border:0px solid #2f4f72;
	width:451px;
	font:normal 13px Arial, Helvetica, sans-serif;
	line-height:1.4em;
	margin:-7px 0 0 0;
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
}

.ui-tabs-panel p {
	margin:0 0 16px 0;
}

.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;
}

.content-text ul {
	list-style-type: none;
	position: relative;
	padding-left: 0px;
	margin:0;
}

.content-text ul li {
	list-style-type: none;
	position: relative;
	padding-left: 0px;
	background: transparent url(/images/site/blank.gif) left top no-repeat;
}
