/* 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 - see ie.css  for bug fixes */

ul.tabs-nav 
{
 	padding: 0px 0px 0px 0px;
	margin: 0px 0px 20px 0px;
	overflow:auto;
	clear: both;
	font-family: Arial, Helvetica, sans-serif;
	border-bottom: 1px dotted #8cc63f;
}
ul.tabs-nav li
{
	float: left;
	display: inline;
	padding: 0px 5px 0px 0px;
	margin: 0px 0px 0px 0px;
}
ul.tabs-nav li A, #content ul.tabs-nav li A
{
	font-weight: bold;
	color: #00a94f;
	text-decoration: none;
	display:block;
	padding: 3px 7px 3px 14px;
	background-color: #fff;
	background: url(../images/arrows.gif) no-repeat 0px -35px;
}

#content ul.tabs-nav .tabs-selected A
{
    color: #2b4789;
	background: url(../images/arrows.gif) no-repeat 0px 7px;
}
#content .tabs-nav .tabs-selected a, #content .tabs-nav a:hover, #content .tabs-nav a:focus, #content .tabs-nav a:active
{
	 color: #2b4789;
}
.tabs-nav a, .tabs-nav .tabs-disabled a:hover, .tabs-nav .tabs-disabled a:focus, .tabs-nav .tabs-disabled a:active 
{
    background-color: green;
}

/* misc stuff */

.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 {
    opacity: .4;
}
.tabs-container 
{
    float: left; /*add by giant peach to fix ie7 bug */
}
.tabs-loading em {
    padding: 0 0 0 20px;
    background: url(../images/loading.html) no-repeat 0 50%;
}

