/* 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 {
	margin-left: 12px;
	list-style: none;
	height: 31px;
	width: 100%;
}

.tabs-nav:after {
	content: " ";
	display: block;
	height: 0;
	clear: both;
}

.tabs-nav li {
    margin-right: 1px;
    float: left;
	background: url('../images/bg_reiter1.gif') top left repeat-x;
}
.tabs-nav a {
	font-size: 13px;
	font-family: Arial, sans-serif;
	font-weight: bold;
	text-decoration: none;
	color: #F7CCCC;
}

.tabs-nav div {
	display: block;
	line-height:100%;
	padding: 11px 10px 7px 10px;
	background: url('../images/bg_reiter1.gif') top left repeat-x;
	z-index: 2;
}

.tabs-nav .mouseOver {
	background: url('../images/bg_reiter2.gif') top left repeat-x;
}

.tabs-nav a:hover {
	color: #FFF;
}

.tabs-nav div.active a {
color: #FFF;
}

.tabs-nav div.active, .tabs-nav div.active:hover  {
	padding: 7px 10px 11px 10px;
	background: #FD1112 url('../images/bg_reiter3.gif') top left repeat-x;	
	border-left: 1px solid #FFF;
}

.tabs-nav a.active, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
    outline: 0; /* @ Firefox, switch off dotted border */
}

.tabs-nav .tabs-disabled a:hover, .tabs-nav .tabs-disabled a:focus, .tabs-nav .tabs-disabled a:active {
}

.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 {
}

.tabs-container {
    /* declare background color for container to avoid distorted fonts in IE while fading */
}

/* Uncomment this if you want a little spinner to be shown next to the tab title while an Ajax tab gets loaded
.tabs-loading span {
    padding: 0 0 0 20px;
    background: url(loading.gif) no-repeat 0 50%;
}*/

