/* @override http://localhost:9507/css/jquery.tabs.css */

/* 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... */
    .tabs-hide {
        display: none;
    }
}

/* Hide useless elements in print layouts... */
@media print {
    .tabs-nav {
        display: none;
    }
}

/* Skin */
.tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0 0 0 16px;
	background: url(../tabs_line.gif) repeat-x 0 -21px;
}

.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.tabs-nav {
	_zoom:1;
}
.tabs-nav li {
    float: left;
	margin: 0 2px 0 0;
	padding: 0;
	background: url(../tabs_right.gif) no-repeat right top;
	font-weight: bold;

}

#main .tabs-nav a {
	display: block;
		background: url(../tabs_left.gif) no-repeat left top;
	padding: 6px 15px 4px;
	color: #fff;
}

.tabs-nav li.tabs-selected {
		background: url(../tabs_right.gif) no-repeat right -50px;
}
#main .tabs-nav li.tabs-selected a {
		background: url(../tabs_left.gif) no-repeat left -50px;
	color: #333;
	cursor: text;
	padding-bottom: 5px;
}
.tabs-nav .tabs-disabled {
    opacity: .4;
}
.tabs-container {
    border: 1px solid #666;
    padding: 16px;
    background: #fff;
	border-top-style: none;
}
.tabs-loading em {
    padding: 0 0 0 20px;
    background: url(../loading.gif) no-repeat 0 50%;
}

/* IE Bug fixes */

.tabs-nav { /* auto clear */
    *display: inline-block;
}
.tabs-nav .tabs-disabled {
    *position: relative; /* fixes opacity */
    *filter: alpha(opacity=40);
}
.tabs-nav .tabs-disabled a span {
    *height: 23px; /* for some reason the height is 1px to less with opacity... */
    *min-height: 23px; /* ...in both IE 6 and 7 */
}


