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

/*
----------------------------------------------------------------------------- 
jQuery TABS - Options Tabs
-----------------------------------------------------------------------------*/

/* Skin */

#optionsTabs ul {
	margin-bottom: 20px;
	display: block;
	overflow: hidden;
	width: 100%;
	}

.tabs-nav {
	background: #eee;
	background: -moz-linear-gradient(top, #F9F9F9 0%, #F5F5F5 2%, #EEEEEE 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#EEE));
	list-style: none;
	margin: 0;
	-moz-border-radius: 2px 2px 0 0;
	-webkit-border-radius: 2px 2px 0 0;
	border-radius: 2px 2px 0 0;
	-moz-box-shadow: inset 0px -1px 2px rgba(0,0,0,0.07);
	-webkit-box-shadow: inset 0px -1px 2px rgba(0,0,0,0.07);
	box-shadow: inset 0px -1px 2px rgba(0,0,0,0.07);
	padding: 25px 0 0 0;
}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
	display: block;
	clear: both;
	content: " ";
}
.tabs-nav li {
	float: left;
	margin: 0 3px 0 10px;
}
.tabs-nav a {
	display: block;
	position: relative;
	top: 0;
	z-index: 2;
	padding: 6px 10px 0;
	height: 20px;
	color: #666;
	font: normal 12px/18px Arial, Helvetica, sans-serif;
	text-align: center;
	text-decoration: none;
	text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
	white-space: nowrap;
}
.tabs-nav .tabs-selected a {
	background: #fff;
	padding-top: 7px;
	color: #000;
	font-weight: bold;
	border: 1px solid #ddd;
	border-bottom: 1px solid #fff;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	-moz-box-shadow:0 -1px 1px rgba(0,0,0,0.07);
	-webkit-box-shadow:0 -1px 1px rgba(0,0,0,0.07);
	box-shadow:0 -1px 1px rgba(0,0,0,0.07);
}
.tabs-nav .tabs-selected a:hover {
	color: #000;
	cursor: default;
	}
.tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
	color: #444;
	outline: 0;
}
.tabs-nav .tabs-disabled a:hover, .tabs-nav .tabs-disabled a:focus, .tabs-nav .tabs-disabled a:active {
	color: #444;
}
.tabs-nav .tabs-disabled a:link, .tabs-nav .tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
	cursor: pointer;
}
.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 {
	background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
	padding: 0;
	}

