@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;
    }
}

ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	border-bottom: 1px solid #B0E1A2;
	border-left: 1px solid #B0E1A2;
	width: 100%;
}

ul.tabs li {
	float: left;
	margin: 0;
	padding: 0;
	height: 28px;
	line-height: 28px;
	border: 1px solid #B0E1A2;
	border-left: none;
	margin-bottom: -1px;
	list-style-image: none;
	overflow: hidden;
	position: relative;
}
ul.tabs li a {
	text-decoration: none;
	display: block;
	padding: 0 20px;
	border: 1px solid #fff;
	outline: none;
    	white-space: nowrap; /* required in IE 6 */    
}
ul.tabs li a:hover {
	color: #206C16;
	background: none;
	outline: 0;
}	
html ul.tabs li.active, html ul.tabs li.active a:hover  {
	color: #206C16;
	background: #fff;
	border-bottom: 1px solid #fff;
	outline: 0;
}
.tab_container {
	border: 1px solid #B0E1A2;
	border-top: none;
	clear: both;

	margin-bottom:6px;
	background: #fff;
}
.tab_content {
	padding: 10px;
}
