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

/* Skin */

.ui_tabs li.ui-tabs-selected {
	background: url(/images/sub_nav/list_tab_on_right.gif) top right no-repeat;
}
.ui_tabs li.ui-tabs-selected span {
	background: url(/images/sub_nav/list_tab_on_left.gif) top left no-repeat;
}

.ui_tabs li {
	background: url(/images/sub_nav/list_tab_off_right.gif) top right no-repeat;
}
.ui_tabs li span {
	background: url(/images/sub_nav/list_tab_off_left.gif) top left no-repeat;
}

.ui-tabs-nav {
	/* float: left; */
	height: 26px;
	list-style: none;
	margin: 20px 0 0 0;
	padding: 0;
	/* width: 220px; */
}
* html .ui-tabs-nav {
	margin-bottom: -1px;
}
.ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
	clear: both;
	content: " ";
	display: block;
}
.ui-tabs-nav li {
	float: left;
	margin: 0 5px 0 0;
	min-width: 105px;
}
.ui-tabs-nav a, .ui-tabs-nav a span {
	display: block;
	height: 26px;
	padding: 0;
}
.ui-tabs-nav a span {
	padding-left: 25px;
	/* width: 75px; */
}
.ui-tabs-nav a {
	font-weight: bold;
	line-height: 1.2;
	margin: 0; /* position: relative makes opacity fail for disabled tab in IE */
	outline: 0; /* prevent dotted border in Firefox */
	text-decoration: none;
	white-space: nowrap; /* required in IE 6 */
}

.ui-tabs-nav a, .ui-tabs-nav a:hover, .ui-tabs-nav a:visited {
	color: #fff;
	cursor: pointer;
	text-decoration: none;
}
.ui-tabs-nav .ui-tabs-selected a, .ui-tabs-nav .ui-tabs-selected a:hover, .ui-tabs-nav .ui-tabs-selected a:visited {
	color: #1E2D6B;
	cursor: pointer;
	margin-top: 0;
	position: relative;
	text-decoration: none;
	z-index: 2;
}

.ui-tabs-nav a span {
	height: 20px; /* IE 6 treats height as min-height */
	min-height: 20px;
	padding-right: 10px;
	padding-top: 6px;
}
.ui-tabs-selected a span {
	border-bottom: 1px solid #fff;
}
.ui-tabs-disabled {
	opacity: .4;
	filter: alpha(opacity=40);
}

/* Something in the CSS below causes listing titles to disappear in IE6
.ui-tabs-panel {
	border-top: 1px solid #93A3C1;
	float: left;
	margin:0;
	padding:10px 20px;
	width: 460px;
	position:relative;
}
*/
li.list_view a {
	background: url(/images/sub_nav/icon_list.gif) 0.7em 0.7em no-repeat;
}
li.map_view a {
	background: url(/images/sub_nav/icon_map.gif) 0.7em 0.7em no-repeat;
}

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




