/* 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 {
    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: " ";
}
#container ul {
	margin:10px 0px 0px 0px;
	padding:0px !important;
	list-style-type:none;
}
.tabs-nav li {
    float: left;
    margin:0px !important;
	padding:0px !important;
	background:none !important;
	
}
.tabs-nav li a{
	text-decoration:none !important;	
}
.tabs-nav li a:hover{
	text-decoration:none !important;	
}
.tabs-nav a, .tabs-nav a span {
    display: block;
    padding: 0px;
	margin:0px;
    background: url(../images/tab-normal.png) no-repeat top left;
	width:135px;
	line-height:70px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:15px;
	color:#333;
	text-decoration:none;
	font-weight: bold;
	outline:none;
}
.tabs-nav a {
    position: relative;
    top: 1px;
    z-index: 2;
    padding-left: 0;
    color: #27537a;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
	margin:0px 7px 0px 0px;
}
.tabs-nav .tabs-selected a {
    color: #000;
}

.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: 0px;
    padding-right: 0;
}
.tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
.tabs-nav .tabs-selected a span {
    padding-top: 0px;
}
.tabs-nav .tabs-selected a:hover span {
    padding-top: 0px;
}
.tabs-nav a:hover span {
	background:url(../images/tab-active.png) no-repeat top left;
	height:70px;
	width:135px;
}
.tabs-nav .tabs-selected a span {
	background:url(../images/tab-active.png) no-repeat top left;
	height:85px;
	width:135px;
}
.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 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#333333;
	text-decoration:none;
	margin:5px 0px 0px 0px;
    padding: 20px;
	*padding: 12px 20px 20px 20px;
	clear:both;
    background: #C5D1AA; /* declare background color for container to avoid distorted fonts in IE while fading */
}
.tabs-loading em {
    padding: 0 0 0 20px;
    background: url(../images/loading.gif) no-repeat 0 50%;
}
