@charset "utf-8";
/* CSS Document */

/* 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 0 0 0;
    padding: 0 0 10px 0;
	width:100%;
	margin-bottom:0px;
}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.tabs-nav li {
    float: left;
    margin:0;
	padding:0;
}

.tabs-nav ul {
    margin:0;
	padding:0;
}

.tabs-nav a, .tabs-nav a:active, .tabs-nav a:visited {
    font-size: 12px;
    font-weight: normal;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */
	width:auto;
	height:20px;
	line-height:20px;
	margin-right:5px;
	width:50px;
	display:block;
}

.tabs-nav a:hover {
    font-weight:normal;
}

.tabs-nav .tabs-selected a {
    font-weight:normal;
	/*background:#EBEBEB;*/
	background:#8391A3;
	color:white;
}

.tabs-container {
    border: 0px solid #D6D6D6;
    padding:0px;
}
.tabs-loading em {
    padding: 0 0 0 20px;
    background: url(loading.gif) no-repeat 0 50%;
}

