@media projection, screen {
	.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: "Trebuchet MS", Trebuchet, Verdana, Helvetica, Arial, sans-serif;
	font-size: 12px;
}
.ui-tabs-nav {
	height: 31px;
	list-style: none;
	border-bottom: 7px solid #ff0202;
	margin: 0;
}
.ui-tabs-nav li {
	background: url(../images/tab_inactive_right.gif) 100% 0 no-repeat;
	margin-right: 1px;
	float: left;
	position: relative;
}
.ui-tabs-nav li a {
	background: url(../images/tab_inactive_left.gif) no-repeat;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #8d8d8d;
	font-weight: bold;
	text-decoration: none;
	line-height: 31px;
	padding: 0px 10px 0 10px;
	outline: none;
	display: block;
}
.ui-tabs-nav li a:hover {
	color: #000;
}
.ui-tabs-nav li#right{
    float: right;
}

.ui-tabs-nav .ui-tabs-selected {
	background: url(../images/tab_selected_right.gif) 100% 0 no-repeat;
}
.ui-tabs-nav .ui-tabs-selected a {
	background: url(../images/tab_selected_left.gif) no-repeat;
	color: #fff;
	text-decoration: none;
	cursor: default;
}
.ui-tabs-nav .ui-tabs-selected a:hover {color: #000;}
/*.ui-tabs-panel {
    display: block;
}*/
/*.ui-tabs-hide{
    clear: both;
}*/
.ui-tabs-loading em {
    padding: 0 0 0 15px;
}
.ui-tabs-nodata{
	font-family: "Trebuchet MS", Trebuchet, Verdana, Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #000000;
	text-align: center;
	padding: 15px;
}

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