/* 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;
	background: -webkit-gradient(linear, left top, left bottom, from(#fdedd2),color-stop(0.49, #ffb862), color-stop(0.5, #ffa539),to(#fe8910));
	border-top:1px solid #ff9a3f;
	padding:0 0 0 7px;
}
.ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.ui-tabs-nav li {
    float: left;
	font-size:10px;
	padding-top:3px;
	border-collapse:collapse;
	width:33%;
}


.ui-tabs-nav li.tab_01{
	border-right:1px solid #fd8c27;
}
.ui-tabs-nav li.tab_02{
	border-right:1px solid #fd8c27;
}
.ui-tabs-nav li.tab_03{

}

.ui-tabs-nav a{
	color:#fff;
	text-shadow:1px 1px 1px #a77108;
	padding:4px 0;
	border-bottom:none;
	display:block;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
	
}
.ui-tabs-nav li.ui-tabs-selected{
	border:none;
	background: -webkit-gradient(linear, left top, left bottom, from(#fdedd2),color-stop(0.49, #ffb862), color-stop(0.5, #ffa539),to(#fe8910));
	margin-left:-2px;
	padding-right:3px
}

.ui-tabs-nav li.ui-tabs-selected a {
    z-index: 2;
    margin-top: 0;
    color: #ff871a;
	border-top:solid 1px #fb9b43;
	border-right:solid 1px #da6800;
	border-left:solid 1px #fb9b43;
	-webkit-border-top-left-radius:5px;
	-webkit-border-top-right-radius:5px;
	text-shadow:1px 1px 1px #ffe9b9;
	padding:4px 0 5px;
	border-bottom:none;
	background:-webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(0.3, #f6f6f6), color-stop(0.7, #ffffff), to(#ffffff));
	

}
.ui-tabs-nav a span {
    height: 18px; /* IE 6 treats height as min-height */
    min-height: 18px;
    padding-top: 6px;
    padding-right: 0;
}
*>.ui-tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
.ui-tabs-nav .ui-tabs-selected a span {
    padding-bottom: 1px;
}


.ui-tabs-disabled {
    opacity: .4;
    filter: alpha(opacity=40);
}
.ui-tabs-panel {
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
}


/* 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;
}







