/* 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;
    }
    .tabs-cat_nav {
        display: none;
    }
}

/* Skin */
.tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0 0 0 4px;
}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.tabs-nav li {
    float: left;
    margin: 0 0 0 3px;
    min-width: 84px; /* be nice to Opera */
}
.tabs-nav a, .tabs-nav a span {
    display: block;
    padding: 0 10px;
    background: url(tab.png) no-repeat;
}
.tabs-nav a {
    position: relative;
    top: 1px;
    z-index: 2;
    padding-left: 0;
    color: #27537a;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
}
.tabs-nav .tabs-selected a {
    color: #000;
}
.tabs-nav .tabs-selected a, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
    background-position: 100% -150px;
	background-color: none;
    outline: 0; /* prevent dotted border in Firefox */
}
.tabs-nav a, .tabs-nav .tabs-disabled a:hover, .tabs-nav .tabs-disabled a:focus, .tabs-nav .tabs-disabled a:active {
    background-position: 100% -100px;
	background-color: none;
}
.tabs-nav a span {
    width: 64px; /* IE 6 treats width as min-width */
    min-width: 64px;
    height: 18px; /* IE 6 treats height as min-height */
    min-height: 18px;
    padding-top: 6px;
	padding-bottom: 4px;
    padding-right: 0;
}
*>.tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
.tabs-nav .tabs-selected a span {
    padding-top: 7px;
}
.tabs-nav .tabs-selected a span, .tabs-nav a:hover span, .tabs-nav a:focus span, .tabs-nav a:active span {
    background-position: 0 -50px;
	background-color: none;
}
.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 {
    background-position: 0 0;
	background-color: none;
}
.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;
	background-color: none;
}
.tabs-nav .tabs-disabled {
    opacity: .4;
}

/*
Tabs - additional IE specific 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: 19px; /* for some reason the height is 1px to less with opacity... */
    min-height: 19px; /* ...in both IE 6 and 7 */
}


/* Skin */
.tabs-cat_nav {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1px;
}
.tabs-cat_nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.tabs-cat_nav li {
    float: left;
    margin: 0 0 0 2px;
    min-width: 40px; /* be nice to Opera */
}
.tabs-cat_nav a, .tabs-cat_nav a span {
    display: block;
    padding: 0 5px;
    background: url(cat_tab.png) no-repeat;
}
.tabs-cat_nav a {
    position: relative;
    top: 1px;
    z-index: 2;
    padding-left: 0;
    color: #60370B;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
}
.tabs-cat_nav .tabs-cat_selected a {
    color: #333;
}
.tabs-cat_nav .tabs-cat_selected a, .tabs-cat_nav a:hover, .tabs-cat_nav a:focus, .tabs-cat_nav a:active {
    background-position: 100% -150px;
	background-color: none;
    outline: 0; /* prevent dotted border in Firefox */
}
.tabs-cat_nav a, .tabs-cat_nav .tabs-cat_disabled a:hover, .tabs-cat_nav .tabs-cat_disabled a:focus, .tabs-cat_nav .tabs-cat_disabled a:active {
    background-position: 100% -100px;
	background-color: none;
}
.tabs-cat_nav a span {
    width: 40px; /* IE 6 treats width as min-width */
    min-width: 40px;
    height: 18px; /* IE 6 treats height as min-height */
    min-height: 18px;
    padding-top: 6px;
	padding-bottom: 2px;
    padding-right: 0;
}
*>.tabs-cat_nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
.tabs-cat_nav .tabs-cat_selected a span {
    padding-top: 7px;
}
.tabs-cat_nav .tabs-cat_selected a span {
    background-position: 0 -50px;
	background-color: none;
}
.tabs-cat_nav a:hover span, .tabs-cat_nav a:focus span, .tabs-cat_nav a:active span {
    color: #60370B;
	text-decoration: none;
    background-position: 0 -50px;
	background-color: none;
}
.tabs-cat_nav a span, .tabs-cat_nav .tabs-cat_disabled a:hover span, .tabs-cat_nav .tabs-cat_disabled a:focus span, .tabs-cat_nav .tabs-cat_disabled a:active span {
    background-position: 0 0;
	background-color: none;
}
.tabs-cat_nav .tabs-cat_selected a:link, .tabs-cat_nav .tabs-cat_selected a:visited, .tabs-cat_nav .tabs-cat_disabled a:link, .tabs-cat_nav .tabs-cat_disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
.tabs-cat_nav a:hover, .tabs-cat_nav a:focus, .tabs-cat_nav a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
	background-color: none;
}
.tabs-cat_nav .tabs-cat_disabled {
    opacity: .4;
}

.tabs-cat_nav { /* auto clear */
    display: inline-block;
}
.tabs-cat_nav .tabs-cat_disabled {
    position: relative; /* fixes opacity */
    filter: alpha(opacity=40);
}
.tabs-cat_nav .tabs-cat_disabled a span {
    _height: 19px; /* for some reason the height is 1px to less with opacity... */
    min-height: 19px; /* ...in both IE 6 and 7 */
}

/* Skin */
.tabs-map_nav {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1px;
}
.tabs-map_nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.tabs-map_nav li {
    float: left;
    margin: 0 0 0 2px;
    min-width: 32px; /* be nice to Opera */
}
.tabs-map_nav a, .tabs-map_nav a span {
    display: block;
    padding: 0 7px;
    background: url(map_tab.png) no-repeat;
}
.tabs-map_nav a {
    position: relative;
    top: 1px;
    z-index: 2;
    padding-left: 0;
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
}
.tabs-map_nav .tabs-map_selected a {
    color: #555;
}
.tabs-map_nav .tabs-map_selected a, .tabs-map_nav a:hover, .tabs-map_nav a:focus, .tabs-map_nav a:active {
    background-position: 100% -150px;
	background-color: none;
    outline: 0; /* prevent dotted border in Firefox */
}
.tabs-map_nav a, .tabs-map_nav .tabs-map_disabled a:hover, .tabs-map_nav .tabs-map_disabled a:focus, .tabs-map_nav .tabs-map_disabled a:active {
    background-position: 100% -100px;
	background-color: none;
}
.tabs-map_nav a span {
    width: 40px; /* IE 6 treats width as min-width */
    min-width: 40px;
    height: 18px; /* IE 6 treats height as min-height */
    min-height: 18px;
    padding-top: 6px;
	padding-bottom: 2px;
    padding-right: 0;
}
*>.tabs-map_nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
.tabs-map_nav .tabs-map_selected a span {
    padding-top: 7px;
}
.tabs-map_nav .tabs-map_selected a span {
    background-position: 0 -50px;
	background-color: none;
}
}
.tabs-map_nav a:hover span, .tabs-map_nav a:focus span, .tabs-map_nav a:active span {
	color :#608837;
    background-position: 0 -50px;
	background-color: none;
}
.tabs-map_nav a span, .tabs-map_nav .tabs-map_disabled a:hover span, .tabs-map_nav .tabs-map_disabled a:focus span, .tabs-map_nav .tabs-map_disabled a:active span {
    background-position: 0 0;
	background-color: none;
}
.tabs-map_nav .tabs-map_selected a:link, .tabs-map_nav .tabs-map_selected a:visited, .tabs-map_nav .tabs-map_disabled a:link, .tabs-map_nav .tabs-map_disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
.tabs-map_nav a:hover, .tabs-map_nav a:focus, .tabs-map_nav a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
	background-color: none;
}
.tabs-map_nav .tabs-map_disabled {
    opacity: .4;
}

.tabs-map_nav { /* auto clear */
    display: inline-block;
}
.tabs-map_nav .tabs-map_disabled {
    position: relative; /* fixes opacity */
    filter: alpha(opacity=40);
}
.tabs-map_nav .tabs-map_disabled a span {
    _height: 19px; /* for some reason the height is 1px to less with opacity... */
    min-height: 19px; /* ...in both IE 6 and 7 */
}


.tabs-container {
	width: 680px;
	height: 400px;
	overflow: scroll;
	overflow-x: hidden;
    border: 1px solid #97a5b0;
    padding: 2px;
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
}
*>.tabs-container {
	width: 676px;
	height: 400px;
}
.tabs-loading em {
    padding: 0 0 0 20px;
    background: url(loading.gif) no-repeat 0 50%;
}
.tabs-cat_tabs {
	width: 680px;
	min-height: 85px;
	_height: 85px;
    border: 1px solid #97a5b0;
    padding: 2px;
    background: #fff;
}
*>.tabs-cat_tabs {
	width: 676px;
}
.tabs-map_tabs {
	clear: both;
	width: 550px;	/* width: 385px; */
	height: 75px;
    border: 1px solid #C6D6AD;
    padding: 2px;
    background: #fff;
}
*>.tabs-map_tabs {
	min-height: 75px;
	height: auto;
}

