/* Tabs */
					
/* 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;
    }
}

/* IE */
.tabs-nav { /* auto clear */
    display: inline-block;
}
.tabs-nav .tabs-disabled a {
    filter: alpha(opacity=40);
}
 /* END IE */

/* Skin */

.tabs-nav {
	padding-left:10px;
	list-style: none;
	border-bottom: 1px solid #B2B2B2;
	height:17px;
	float:left;
	width:708px;
}

	.tabs-nav li {

		display: inline;
	}
	
		.tabs-nav li a {
			position: relative;
			display: block;
			float: left;
			height: 18px;
			overflow: hidden;
			color: #999;
			font-size: 10px;
		}
		
		
	
		.tabs-nav li.tabs-selected a {
			color: #fff;
		}
		
			.tabs-nav a span {
				display: block;
			}

.tabs-nav a {
    display: block;
    position: relative;
    z-index: 2;
	text-decoration: none;
	font-weight: bold;
	margin-right: 2px;
	padding: 0 0 0 8px;
	background: url(../images/teaser_search_tab_1.gif) no-repeat;

}

.tabs-nav a:hover {
	background: url(../images/teaser_search_tab_1_hov.gif) no-repeat;

}

.tabs-nav a span {
	padding: 2px 8px 2px 0;
	background: url(../images/teaser_search_tab_2.gif) top right no-repeat;
}

.tabs-nav a:hover span {
	background: url(../images/teaser_search_tab_2_hov.gif) top right no-repeat;
	color:#0E71A0;
}


.tabs-nav .tabs-selected a {
	background: url(../images/teaser_search_tab_1_act.gif) no-repeat;
}

.tabs-nav .tabs-selected a:hover {background: url(../images/teaser_search_tab_1_act.gif) no-repeat;}

.tabs-nav .tabs-selected a:hover span{
	background: url(../images/teaser_search_tab_2_act.gif) top right no-repeat;
	color: #a0cee3;
}

.tabs-nav .tabs-selected a span {
	background: url(../images/teaser_search_tab_2_act.gif) top right no-repeat;
}

.tabs-nav .tabs-selected a, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
    outline: 0; /* @ Firefox, switch off dotted border */
}

.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... */
    
}

.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 {
	clear: both;
    background: #0e71a0; /* declare background color for container to avoid distorted fonts in IE while fading */
}
