/* GENERAL FORMAT */
.cbtabs { 
	display:block;
	list-style-type:none;
	padding:0;
	margin:0;
	font-size:20px;
	font-weight:700;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
.cbtabs li { 
	position:relative;
	display:inline-block;
	z-index:1;
	margin:0 8px 10px 0;
	padding:10px 16px;
	border:1px solid #00294a;
	background-color:transparent;
	color:#00294a;
	border-radius:2px;
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	font-family:inherit;
	font-size:18px;
	font-weight:500;
	text-align:center;
	transition:all 0.4s;
	cursor:pointer;
}
.cbtabs li:hover { 
	background-color:#004781;
	color:#ffffff;
}

/* GENERAL */ 
.cbtabs li.selected { 
	background-color:#00294a;
	color:#ffffff;
}

.cbcontent { 
	display:none;
	width:100%;
	//overflow-y:auto;
	margin:0;
	//background:#ffffff;
	//padding:20px 0;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
.cbheader { 
	float:left;
	margin:20px 0;
	color:#323228;
	letter-spacing:1px;	
}


@media print {
.cbcontent { 
	display:block !important;
}
}


/* MEDIA QUERIES - 520PX */
@media screen and (max-width: 520px) { 

.cbtabs { 
	font-size:17px;
}

}