@CHARSET "ISO-8859-1";

/* 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;
    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;
    margin: 0 0 0 1px;
    min-width: 64px; /* be nice to Opera */
}
.ui-tabs-nav a, .ui-tabs-nav a span {
    display: block;
    background:none;
}
	
.ui-tabs-nav a,.ui-tabs-nav a:link,.ui-tabs-nav a:visited, .ui-tabs-nav a:hover {
    position: relative;
    top: 1px;
    z-index: 2;
    color: #27537a;
    font-size: 10px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */
	}
	
.ui-tabs-nav .ui-tabs-selected a {
    /*color: #444488;*/
	/*color: #004f75;*/
	color:#CC0000;
}

.ui-tabs-nav .ui-tabs-selected a, .ui-tabs-nav a:hover, .ui-tabs-nav a:focus, .ui-tabs-nav a:active {
    background-position: 100% -150px;
    outline: 0; /* prevent dotted border in Firefox */
}

.ui-tabs-nav a, .ui-tabs-nav .ui-tabs-disabled a:hover, .ui-tabs-nav .ui-tabs-disabled a:focus, .ui-tabs-nav .ui-tabs-disabled a:active {
    background-position: 100% -100px;
    background-color:grey;
}
.ui-tabs-nav a span {
    width: 44px; /* IE 6 treats width as min-width */
    min-width: 44px;
    height: 18px; /* IE 6 treats height as min-height */
    min-height: 18px;
    padding-top: 0;
    padding-right: 0;
    /*color: #444488;*/
	color: #004f75;
}
*>.ui-tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
.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 {
    background-position: 0 -44px;
}
.ui-tabs-nav a span, .ui-tabs-nav .ui-tabs-disabled a:hover span, .ui-tabs-nav .ui-tabs-disabled a:focus span, .ui-tabs-nav .ui-tabs-disabled a:active span {
    background-position: 0 -44px;
}
.ui-tabs-nav .ui-tabs-selected a:link, .ui-tabs-nav .ui-tabs-selected a:visited, .ui-tabs-nav .ui-tabs-disabled a:link, .ui-tabs-nav .ui-tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
    text-decoration:none;
}
.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-nav .ui-tabs-disabled {
    opacity: .4;
}
.ui-tabs-container {
    padding: 1em 0px 0px 0px;
    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%;
}

/**** the following defines the DATA PANE for the selected tab ****/
.ui-tabs-panel {
	background:#FFFFFF none repeat scroll 0%;
	border:1px solid #777788;
	padding:3px;
	clear:both; /* needed for ie6 */
}

/**** the following defines a NON-SELECTED tab *****/
.ui-tabs-nav li a {
	background:#bcd7e7 none repeat scroll 0%;
	border-color:#777788 rgb(119, 119, 136) -moz-use-text-color;
	border-style:solid solid;
	border-width:1px 1px;
	margin-left:3px;
	padding:2px 0.5em 0px 0.5em;
	text-decoration:none;
}


/**** the following defines a NON-SELECTED tab with HOVER *****/
.ui-tabs-nav li a:hover  {
	color:white;
	background:#5b9abf none repeat scroll 0%;
	border-color:#222277;
	text-decoration:none;
}
.ui-tabs-nav li a:hover span {
	color:white;
}

/**** the following defines the SELECTED tab *****/
.ui-tabs-nav .ui-tabs-selected a, .ui-tabs-nav .ui-tabs-selected a:hover {
	background:white none repeat scroll 0%;
	border-bottom: 1px solid white;
/**** to show a red top, right, left border in Firefox on the SELECTED tab *****/
	border-top: 1px solid #cc0000;
	border-right: 1px solid #cc0000;
	border-left: 1px solid #cc0000;
	border-bottom: 1px solid #ffffff;

}
.ui-tabs-nav .ui-tabs-selected a span, .ui-tabs-nav .ui-tabs-selected a:hover  span{
    /*color: #27537a;*/
	color: #cc0000;
	cursor:pointer;
	
}

