/*tab box */

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

ul.tabs {
	border-bottom: 2px solid #2e7382;
	margin: 0 0 20px 0;
	list-style-type: none;
	padding: 0;	
	height:28px;
}

ul.tabs li a:hover {
	color: #FFF;
}

#tab-box {
	float: left;
	padding-left: 0px;
	width: 600px;
	margin-top: 0px;
}
.tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}

.tabs-nav li {
	float: left;
	margin: 0 1px 0 0;
	background: url(../images/tabright.png) top right repeat-x;
	padding-right: 5px;
	height: 28px;
	font: bold 12px Georgia, "Times New Roman", Times, serif;
	color: #e1e1e1;
}

.tabs-nav li.tabs-selected {
	background: url(../images/tabright.png) bottom right repeat-x !important;
	height: 28px;
	margin-bottom: -1px;
}

.tabs-nav a, .tabs-nav a span {
    display: block;
	padding-left: 5px;
	padding-right: 0;
	font: bold 12px Georgia, "Times New Roman", Times, serif;
}

.tabs-nav a {
	background: url(../images/tableft.png) repeat-x top left !important;
	padding-top: 6px;
	padding-right: 7px;
	color: #e1e1e1;
	text-align: center;
}
.tabs-nav .tabs-selected a {
  	color: #FFF;
  	background-position: bottom left !important;
	padding-top: 6px;
	height: 22px;
}

.tabs-selected a {
	position: relative;
}

.tab-content, .tab-content ul {
	margin: 0;
	font: normal 12px "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 16px;
	list-style-type: square;
}

.tab-content ul li {
	margin-bottom: 10px;
	font-size: 12px;
	line-height: 16px;
}