/* 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, .ui-tabs-panel {
	font-family: Arial, Helvetica, sans-serif;
}

.ui-tabs-nav:after {  clearing without presentational markup, IE gets extra treatment
    display: block;
    clear: both;
    content: " ";
}

.ui-tabs-nav li {
    list-style-type: none !important;
    float: left;
    margin-right: 2px;
    border: solid 1px #E0E0E0;
    border-bottom: none;
    background: url(tab1.png) no-repeat;
}




.ui-tabs-nav a {
			color:#27537A;
			display:block;
			font-size:95%;
			font-weight:bold;
			line-height:1.2;
			min-height:16px;
			min-width:60px;
			outline-color:-moz-use-text-color;
			outline-style:none;
			outline-width:0;
			padding:5px;
			text-align:center;
			text-decoration:none;
			white-space:nowrap;
	}


.ui-tabs-nav a:hover, .ui-tabs-nav a:focus, .ui-tabs-nav a:active {
	background-color: white; 
	color: #AA1733;
}

.ui-tabs-nav .ui-tabs-selected a, .ui-tabs-nav .ui-tabs-selected a:hover, .ui-tabs-nav .ui-tabs-selected a:focus, .ui-tabs-nav .ui-tabs-selected a:active {
    position: relative;
    top: 0px;
    z-index: 2;
    margin-top: 0px;
    color: black;
    background-color: white;
}

.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;
}

.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-disabled {
    opacity: .4;
    filter: alpha(opacity=40);
}

.ui-tabs-panel {
	background: #fff;
	border: solid 1px #E0E0E0;
	margin-bottom: 15px; 	
}

.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 a {
    width: 60px; /* IE 6 treats width as min-width */
    height: 16px;   
}

* 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;
}

