div.tabs-wrapper {
}
	/*	TABS > BUTTON	*/
	div.tabs-buttons {
		margin: 15px 0;
		background: none;
		display: flex; display: -webkit-flex; 
		flex-flow: row nowrap; -webkit-flex-flow: row nowrap;
		justify-content: center; -webkit-justify-content: center;
		width: 100%;
	}
		div.tabs-buttons .tabs-button {
			font-weight: bold;
			color: #051d49;
			text-transform: uppercase;
			font-size: 14px;
			line-height: 1.0;
			background: #e0e0e0;
			cursor: pointer;
			display: flex; display: -webkit-flex; 
			flex-flow: row wrap; -webkit-flex-flow: row wrap;
			margin: 0;
			margin-right: 7px;
			border-radius: 7px;
			text-align: center;
		}
			div.tabs-buttons .tabs-button.large {
				width: 150px;
				height: 46px;
				border-top: 4px solid #808080;
			}
		div.tabs-buttons .tabs-button-active {
			background: #cb8f23;
			color: #FFF !important;
			border-top: 4px solid #936f2e !important;
		}
		div.tabs-buttons .tabs-button:hover {
			text-decoration: none;
		}

/*	TABS > CONTENT	*/
div.tabs-wrapper div.tabs-content {
	display: none;
	padding: 0;
}
div.tabs-wrapper div.tabs-content-active {
	display: block !important;
}

/*	TABS > CONTENT > SECTION	*/
div.tabs-section {
}
