/* GENERAL FORMAT */
.cbtabs { 
	display:block;
	list-style-type:none;
	padding:0;
	font-weight:700;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
.cbtabs li { 
	position:relative;
	display:inline-block;
	text-decoration:none;
	position:relative;
	z-index:1;
	border-radius:0;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	cursor:pointer;
}

/* STANDARD TABS */
.cbtabs { 
	margin:0;
}
.cbtabs li {
	padding: 5px 0 10px;
	color: #808080;
	margin: 0 10px 10px 0;
	font-size: 17px;
}
.cbtabs li:hover {
	color:#ff00a0;
}

/* GENERAL */ 

.cbtabs li.selected {
	color: #1e376d;
	border-bottom: 3px solid #1e376d;
}

.cbcontent { 
	display: none;
	width: 100%;
	margin: 0;
	padding: 20px 0;
}
.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;
}

}