/* Tabs
----------------------------------*/

.ui-tabs .ui-tabs-hide { display: none !important; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { color: blue; }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; text-decoration: none; } 
.ui-tabs-nav li.ui-tabs-selected a { color: #000; }

/* 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 {
	width: 250px;
    list-style: none;
	position: absolute;
	top: 0;
	right: 15px;
}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    content: " ";
}
.tabs-nav li {
	border-bottom: 1px solid #ccc;
	padding: 5px 0;
	margin: 0 0 5px 0;
}
.tabs-nav a {
	display: block;
   margin: 0;
}
.tabs-nav a {
	background: url(../gfx/arrow-blue.gif) no-repeat 0 50%;
	padding: 0 0 0 10px;
  	font-size: 16px;
	color: #375D81;
	font-weight: normal;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */   
}

.tabs-nav .case_location {
	display: block;
	font-size: 12px;
	color: #555;
	display: block;
	padding: 0 0 0 10px;
}

.tabs-nav .tabs-selected a {
    color: #000;
}
.tabs-nav .tabs-selected a, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
	color: #000;
    outline: 0; /* prevent dotted border in Firefox */
	text-decoration: underline;
}
.tabs-nav a, .tabs-nav .tabs-disabled a:hover, .tabs-nav .tabs-disabled a:focus, .tabs-nav .tabs-disabled a:active {
    
}
.tabs-nav a span {
    height: 24px; /* IE 6 treats height as min-height */
    min-height: 24px;
	padding: 0 0 0 30px;
	background: url(../gfx/arrow-blue.gif) no-repeat 5% 50%;
}
*>.tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
.tabs-nav .tabs-selected a span {
    background: url(../gfx/arrow-white.gif) no-repeat 5% 50%;
}
.tabs-nav .tabs-selected a span, .tabs-nav a:hover span, .tabs-nav a:focus span, .tabs-nav a:active span {
    background: url(../gfx/arrow-white.gif) no-repeat 5% 50%;
}
.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: text;
}
.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 {
    width: 450px;
	position: relative;
}
.tabs-loading em {
    background: url(../gfx/loading.gif) no-repeat 0 50%;
}

