#SideTabsContainer { position: relative; }


/* 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;
	position: absolute;
	top: 25px;
	width: 150px;
  z-index: 10;
}
.tabs-nav li { overflow: hidden; }
.tabs-nav a, .tabs-nav a span {
	display: block;
	line-height: 25px;
}
.tabs-nav a {
	background-image: url(/Masters/Scorpia/Images/Ux/SideTab_BG.jpg);
	background-repeat: repeat-x;
	border: solid 1px #D9D9D9;
	border-width: 0 1px 1px 1px;
	color: #000;
	display: block;
	height: 25px;
	line-height: 25px;
	padding-left: 10px;
}
.tabs-nav .tabs-selected a {
	background-image: none;
	border-right: solid 1px #fff;
	color: #000;
}
.tabs-nav .tabs-selected a, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
	background-position: left bottom;
	outline-offset: -5px;
	text-decoration: none;
}
.tabs-nav a, .tabs-nav .tabs-disabled a:hover, .tabs-nav .tabs-disabled a:focus, .tabs-nav .tabs-disabled a:active {
  background-position: left top;
}
.tabs-nav a span {}
*>.tabs-nav a span { /* hide from IE 6 */ }
.tabs-nav .tabs-selected a span { }
.tabs-nav .tabs-selected a span, .tabs-nav a:hover span, .tabs-nav a:focus span, .tabs-nav a:active span { }
.tabs-nav a span, .tabs-nav .tabs-disabled a:hover span, .tabs-nav .tabs-disabled a:focus span, .tabs-nav .tabs-disabled a:active span { }
.tabs-nav .tabs-selected a:link, .tabs-nav .tabs-selected a:visited, .tabs-nav .tabs-disabled a:link, .tabs-nav .tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
  cursor: pointer;
}
.tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}
.tabs-nav .tabs-disabled { opacity: .4; }
.tabs-container {
  background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
	border-left: solid 1px #D8D8D8;
	bottom: 0;
	left: 149px;
/*	min-height: 300px; */
	padding-left: 11px;
	position: relative;
	width: 420px;
	top: 0;
	z-index: 0;
}

.tabs-container span.SideTabContent-Title { background-color: #fff; color: #036; display: block; font-size: 11pt; font-weight: bold; line-height: 25px; padding-bottom: 11px; }

@media print { .tabs-container { left: 0; border-left: none; }}
.tabs-loading em {
	padding: 0 0 0 20px;
	background: url(loading.gif) no-repeat 0 50%;
}


.tabs-nav li.firstTab a { border-top: solid 1px #D9D9D9; -moz-border-radius: 5px 0 0 0; -webkit-border-top-left-radius: 5px; }
.tabs-nav li.lastTab a { -moz-border-radius: 0 0 0 5px; -webkit-border-bottom-left-radius: 5px; }