/*----- Tabs -----*/
.tabs {
    width:100%;
    display:inline-block;
}
 
    /*----- Tab Links -----*/
div.tab-links {
	display:block;
}

div.tab-link {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	background-color:rgba(255,255,255,0.50);
	text-align:center;
}
	.tab-link a {
		font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
		color:#999;
		font-style: oblique;
		text-decoration:none;
		font-size:14px;
		line-height:50px
	}
	
	.tab-link.active {
		background-color: rgba(137,60,0,0.8);
	}
	
	.tab-link.active a {
		color: #FC0;
	}
	
	    /*----- Content of Tabs -----*/

div.tab-content {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	float:left;
	width:100%;
	background-color: rgba(137,60,0,0.80);
}
	.tab {
		display:none
	}
		.tab.active {
			display: block;
		}
