/* GENERAL FORMAT */
.cbtabs { 
	display:block;
	list-style-type:none;
	padding:0;
	font-size:14px;
	font-weight:700;
	letter-spacing:2px;
	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;
	margin-bottom:30px;
}
.cbtabs li { 
	width:100%;
	max-width:190px;
	padding:8px 0;
	margin-bottom:5px;
	color:#8f8f8f;
	border-bottom:1px solid transparent;
	text-transform:uppercase;
}
.cbtabs li:after { 
	display:none;
	content:'/';
	padding:0 15px;
}
.cbtabs li:last-child:after { 
	content:'';
	padding:0;
}
.cbtabs li:hover { 
	color:#1a1a1a;
}


/* SMALLER TABS */
.cbtabs_m { 
	display:block;
	/* margin:0; */
	padding:0;
	list-style-type:none;
	/* white-space:nowrap; */
}
.cbtabs_m li { 
	float:left;
	display:block;
	margin-right:-1px;
	margin-top:-1px;
	padding:10px 15px;
	border-radius:0;
	background-color:#f3f3f3;
	border-bottom:1px solid #0033a0;
	color:#26337b;
	font-family:inherit;
	font-size:13px;
	font-weight:700;
	letter-spacing:1px;
	text-align:center;
	text-transform:uppercase;
	transition:all 0.5s;
	cursor:pointer;
}


/* GENERAL */ 

.cbtabs li.selected { 
	border-bottom:1px solid #26337b;
	color:#26337b;
}
.cbtabs_m li.selected { 
	background-color:#0033a0;
	color:#ffffff;
}

.cbcontent, .cbcontent_m { 
	display:none;
	width:100%;
	//overflow-y:auto;
	margin:0;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
.cbcontent { 
	padding:0;
	//font-size:15px;
	font-weight:300;
	text-align:left;
	color:#26337b;
}
.cbcontent_m { 
	margin-top:-1px;
	padding:20px 0;
	//background-color:#ffffff;
	border-top:1px solid #0033a0;
	color:#26337b;
	font-size:15px;
	text-align:left;
}
.cbheader { 
	float:left;
	margin:20px 0;
	color:#323228;
	letter-spacing:1px;	
}

.lcollapse { 
	display:none;
	height:50px;
	margin:0 0 0 10px;
	background:#d0d0d0;
	font-size:20px;
	font-weight:700;
	line-height:50px;
	color:#ffffff;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	cursor:pointer;
}
.lcolleft { 
	float:left;
}
.lcolright { 
	float:right;
	height:32px;
	width:32px;
	margin:8px 0 0 0;
	background: transparent url(../images/mobile_menu.png) no-repeat center center;
}

@media print {
.cbcontent, .cbcontent_m { 
	display:block !important;
}
}


/* MEDIA QUERIES - 710PX */
@media screen and (max-width: 710px) { 

.cbtabs li { 
	width:auto;
	margin-right:-1px;
	padding:10px 15px;
}

}


/* MEDIA QUERIES - 603PX */
@media screen and (max-width: 603px) { 

.cbtabs li { 
	padding:12px;
	font-size:12px;
}

.cbtabs_m li { 
	//clear:both;
	//display:block;
	padding:12px;
	font-size:12px;
}

}