/* GENERAL FORMAT */
.cbtabs, .cbtabs_r, .cbtabs_m, .cbtabs_b { 
	display:block;
	list-style-type:none;
	padding:0;
	font-size:14px;
	font-weight:400;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
.cbtabs li, .cbtabs_r li, .cbtabs_m 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;
	text-align:right;
}
.cbtabs li { 
	padding:5px 6px 12px;
	background:#ffffff;
	//color:#d94844;
	border-bottom:solid 3px #ffffff;
	margin:6px;
}

/* RIGHT TABS */
.cbtabs_r { 
	padding-bottom:20px;
}
.cbtabs_r li { 
	padding:7px 0;
	margin:0;
	margin-right:12px;
	font-size:15px;
	font-weight:500;
	text-transform:uppercase;
}

/* MEDIA TABS */
.cbtabs_m { 
	margin-bottom:25px;
}
.cbtabs_m li { 
	padding:7px 14px;
	background:#ffffff;
	margin:0 10px 10px 0;
	//margin-top:-1px;
	//margin-right:-4px;
	border:1px solid #002d74;
	border-radius:0;
}

/* BUTTON TABS */
.cbtabs_b li { 
	position:relative;
	display:inline-block;
	min-width:125px;
	padding:8px 12px;
	margin-right:-4px;
	border:1px solid #aaaaaa;
	border-radius:0;
	background-color:#ffffff;
	color:#333333;
	font-size:10px;
	font-weight:500;
	letter-spacing:1px;
	text-align:center;
	text-transform:uppercase;
	cursor:pointer;
}
.cbtabs_b li:first-child { 
	border-radius:3px 0 0 3px;
}
.cbtabs_b li:last-child { 
	border-radius:0 3px 3px 0;
}

/* GENERAL */ 
.cbtabs li.selected { 
	border-bottom:3px solid #ed6e45;
}
.cbtabs_r li.selected { 
	border-bottom:4px solid #383a94;
	//color:#ffffff;
}
.cbtabs_m li.selected { 
	background:#002d74;
	border:1px solid #002d74;
	color:#ffffff;
}
.cbtabs_b li.selected { 
	background-color:#eb2524;
	border:1px solid #eb2524;
	color:#ffffff;
}

.cbcontent { 
	display:none;
	width:100%;
	height:100%;
	margin:0;
	color:#858a8d;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	overflow-x:hidden;
	overflow-y:auto;
	-webkit-overflow-scrolling:touch;
}
.cbwrapper_r .cbcontent { 
	padding:20px 0 0;
}
.cbwrapper_m { 
	height:100%;
}
.cbwrapper_m .cbcontent { 
	padding:88px 20px 20px;
}

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


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

.cbtabs { 
	text-align:center;
}

}