/* 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;
    }
}
#tabcontainer {
	float:left;
	height:450px;
	overflow:auto;
	position:relative;
	width:940px;
}
/* Skin */
.ui-tabs-nav, .ui-tabs-panel {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 12px;
}

ul.ui-tabs-nav {
	height: 390px;
	width: 150px;
	top: 0px;
	float: left;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	text-align: right;
	position: absolute;
	left: -150px;
}
.ui-tabs-nav {
	list-style: none;
	padding: 0;
}
.ui-tabs-nav li {
	float: left;
	margin: 0px;
}
.ui-tabs-nav a, .ui-tabs-nav a span {
	display: block;
	font-size: 18px;
	color: #999999;
	padding: 0px;
}
.ui-tabs-nav a {
	margin: 1px 0 0; /* position: relative makes opacity fail for disabled tab in IE */
	padding-left: 0;
	color: #A9BCDA;
	font-weight: normal;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap; /* required in IE 6 */
	outline: 0; /* prevent dotted border in Firefox */
}
.ui-tabs-nav .ui-tabs-selected a {
	top: 1px;
	z-index: 2;
	margin-top: 0px;
	color: #000;
}
.ui-tabs-nav a span {
	width: 150px; /* IE 6 treats width as min-width */
	min-width: 150px; /* IE 6 treats height as min-height */
	min-height: 30px;
	padding-top: 5px;
}
*>.ui-tabs-nav a span { /* hide from IE 6 */
	width: 150px;
}
.ui-tabs-nav .ui-tabs-selected a span, .ui-tabs-nav a:hover span, .ui-tabs-nav a:focus span, .ui-tabs-nav a:active span {
	color: #000000;
}

.ui-tabs-nav .ui-tabs-selected a:link { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
	cursor: text;
	border-bottom-color: #5D5C1B;
	border-bottom-style: solid;
	border-bottom-width: 3px;
}
.ui-tabs-nav a:hover { /* @ Opera, we need to be explicit again here now... */
	cursor: pointer;
	color: #000000;
}
.ui-tabs-disabled {
    opacity: .4;
    filter: alpha(opacity=40);
}
.ui-tabs-panel {
	overflow: auto;
	background-color: #FFFFFF;
	margin: 0px;
	padding: 0px;
}
.ui-tabs-loading em {
    padding: 0 0 0 20px;
    background: url(jquery_lightbox/images/loading.gif) no-repeat 0 50%;
}

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