.ui-tabs-hide {
	display: none !important;
}

.ui-tabs-nav {
    display: none;
}

.ui-tabs-nav, .ui-tabs-panel {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size: 13px;
	color: #39c; 
}
.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;
	padding: 0;
	background: url(../images/ltgrey_back_lf.gif) left no-repeat; 
}
.ui-tabs-nav .ui-tabs-selected {
	margin: 0 11px 0 0;
	padding: 0;
	background: url(../images/grey_back_lf.gif) left no-repeat; 
}
.ui-tabs-nav a, .ui-tabs-nav a span {
    float: left; /* fixes dir=ltr problem and other quirks IE */
    padding: 0;
	text-transform: uppercase;
	font-weight: normal;
}
.ui-tabs-nav a {
    margin: 0; /* position: relative makes opacity fail for disabled tab in IE */
	padding: 3px 10px 3px 10px;
    text-decoration: none;
    white-space: nowrap; /* @ IE 6 */
    outline: 0; /* @ Firefox, prevent dotted border after click */    
	line-height: 21px;
	background: url(../images/ltgrey_back_rt.gif) right no-repeat; 
}
.ui-tabs-nav a:link, .ui-tabs-nav a:visited {
    color: #36c;
}
.ui-tabs-nav a:hover {
	text-decoration: underline;
}
.ui-tabs-selected a:hover {
	text-decoration: none;
}
.ui-tabs-nav .ui-tabs-selected a {
	background: url(../images/grey_back_rt.gif) right no-repeat; 
    position: relative;
    top: 0;
    z-index: 2;
	line-height: 21px;
    margin: 0;
	padding: 3px 10px 3px 10px;
/*	padding: 5px 10px 6px 10px;*/
	color: #333; 
	font-weight: 500;
}
.ui-tabs-nav a span {
    padding: 0;
	margin: 0;
}
.ui-tabs-nav .ui-tabs-selected a span {
    padding: 0;
	margin: 0;
}
.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,
.ui-tabs-nav .ui-tabs-unselect a:hover, .ui-tabs-nav .ui-tabs-unselect a:focus, .ui-tabs-nav .ui-tabs-unselect a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}
.ui-tabs-disabled {
    opacity: .4;
    filter: alpha(opacity=40);
}
.ui-tabs-nav .ui-tabs-disabled a:link, .ui-tabs-nav .ui-tabs-disabled a:visited {
    color: #999;
}
.ui-tabs-panel {
	border-top: solid #d5d5c9 2px;
	margin: 0;
    padding: 0;
    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  { /* auto clear @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
    display: inline-block;
}
