﻿@import url('../icons/css/fontello.css');

/**********************************
    General
***********************************/
.cbcontent hr {border:none;border-top: rgba(0, 0, 0, 0.18) 1px solid;margin-top: 2em;margin-bottom: 2em;}
.cbcontent img {max-width:100%;}
.cbcontent figure {margin:0}

/* Normal styles for italics, etc */
.cbcontent i {
	font-style:italic;
}
.cbcontent b, .cbcontent em {
	font-weight:bold;
}
.cbcontent ul, .cbcontent ol {
	margin: 1em 0;
	/*-moz-padding-start: 40px;
	-webkit-padding-start: 40px;
	-ms-padding-start: 40px; !* IE does not supported it so -ms- prefix is redundant *!
	padding-start: 40px;*/
}
.cbcontent ul {
	list-style-type: disc;
}
.cbcontent ol {
	list-style-type:decimal;
}

/* FIX: Preventing Chrome from wrapping text with span-style (when editing) (removed, was doing odd resizing of content) */


/**********************************
    Grid
***********************************/
.cbcontent .container {
    margin: 0 auto;
    max-width: 980px;
    width: 90%;
}
@media (min-width:600px) {
	.cbcontent {
		width:98%;
		margin:0 auto;
	}
}
@media (min-width: 40rem) {
	.cbcontent .column {
        float: left;
        padding-left: 1.32rem; /* 1rem */
        padding-right: 1.32rem;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
	.cbcontent .column.full { width: 100%; }
	.cbcontent .column.two-third { width: 66.7%; }
	.cbcontent .column.two-fourth { width: 75%; }
	.cbcontent .column.two-fifth { width: 80%; }
	.cbcontent .column.two-sixth { width: 83.3%; }
	.cbcontent .column.half { width: 50%; }
	.cbcontent .column.half.centered { margin-left:25%; }
	.cbcontent .column.third { width: 33.3%; }
	.cbcontent .column.fourth { width: 25%; }
	.cbcontent .column.fifth { width: 20%; }
	.cbcontent .column.sixth { width: 16.6%; }
	.cbcontent .column.flow-opposite { float: right; }
}
.cbcontent .clearfix:before, .cbcontent .clearfix:after {content: " ";display: table;}
.cbcontent .clearfix:after {clear: both;}
.cbcontent .clearfix {*zoom: 1;}


/**********************************
    Elements
***********************************/

.cbcontent .center {text-align:center}
.cbcontent .right {text-align:right}
.cbcontent .left {text-align:left}

.cbcontent img.circle {border-radius:500px;margin-top:0;}
.cbcontent img.bordered {border: #ccc 1px solid;}

.cbcontent .embed-responsive {position: relative;display:block;height:0;padding:0;overflow:hidden;}
.cbcontent .embed-responsive.embed-responsive-16by9 {padding-bottom: 56.25%;}
.cbcontent .embed-responsive.embed-responsive-4by3 {padding-bottom: 75%;}
.cbcontent .embed-responsive iframe {position: absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0;}

.cbcontent .column > img,
.cbcontent .column > figure,
.cbcontent .column > .embed-responsive {
    margin-top: 1em;margin-bottom: 1em;
}

.cbcontent .list {position:relative;margin:1.5em 0;}
.cbcontent .list > i {position:absolute;left:-3px;top:-13px;font-size:2em;}
.cbcontent .list > h2, .cbcontent .list > h3 {margin: 0 0 0 50px}
.cbcontent .list > p {margin: 0 0 0 50px}

.cbcontent .quote {position:relative;margin:1.5em 0;}
.cbcontent .quote > i {position: absolute;top: -10px; left: -7px;font-size: 2em;color:rgba(51,51,51,0.44);}
.cbcontent .quote > small {margin-left:50px;opacity: 0.7;font-size: 1em;}
.cbcontent .quote > p {margin-left:50px;font-size: 1.5em;}

.cbcontent .btn {
    padding: 10px 30px;
    font-size: 1.3em;
    line-height: 2em;
    border-radius: 6px;

	color:#fff;
	background-color:#83271B;
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


.cbcontent .social {line-height:1;margin-bottom:1.5em}
.cbcontent .social a > i {text-decoration:none;color:#333;font-size:1.2em;margin:0 5px 0 0;-webkit-transition: all 0.1s ease-in-out;transition: all 0.1s ease-in-out;}


/**********************************
    Header Image with Caption
***********************************/
.cbcontent figure.hdr {
	position: relative;
	width: 100%;
	overflow:hidden;
    background-color: #000;
}
.cbcontent figure.hdr img {
	position: relative;
	display: block;
	width: 100%;
	opacity: 0.8;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
.cbcontent figure.hdr:hover img {
	opacity: 0.5;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.cbcontent figure.hdr figcaption {
   	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60%;
	padding: 0 2.5em;
	color: #fff;
	font-size: 1.55em;
	text-align: center;
	box-sizing: border-box;
	z-index:1;
}
/* Text */
.cbcontent figure.hdr h2 {
	font-weight: 300;
	text-transform: uppercase;
}
.cbcontent figure.hdr h2 span {
	font-weight: 800;
}
.cbcontent figure.hdr p {
	letter-spacing: 1px;
	font-size: 68.5%;
	text-transform: uppercase;
}
.cbcontent figure.hdr h2, .cbcontent figure.hdr p {
	margin: 0;
	z-index:10000;
}
/* Cosmetic */
.cbcontent figure.hdr div {
	height: 100%;
	z-index:0;
}
.cbcontent figure.hdr div::before,
.cbcontent figure.hdr div::after {
	position: absolute;
	content: '';
}
/* One */
.cbcontent figure.one div::before {
	top: 50px;
	right: 30px;
	bottom: 50px;
	left: 30px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.cbcontent figure.one div::after {
	top: 30px;
	right: 50px;
	bottom: 30px;
	left: 50px;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
}
/* Two */
.cbcontent figure.two div::before {
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.cbcontent figure.two div::after {
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
}
/* Three */
.cbcontent figure.three figcaption {
	height: 70%;
}
.cbcontent figure.three p {
	margin: 1em 0 0;
	padding: 2em;
	border: 1px solid #fff;
}
/* Four */
.cbcontent figure.four figcaption {
	height: 60%;
	text-align: left;
}
.cbcontent figure.four p {
	position: absolute;
	right: 50px;
	bottom: 50px;
	left: 50px;
	padding: 2em;
	border: 7px solid #fff;
}
/* Five */
.cbcontent figure.five figcaption {
	height: 100%;
	text-align: right;
}
.cbcontent figure.five h2 {
    position: absolute;
    left: 50px;
	right: 50px;
	top: 10%;
	border-bottom: 5px solid #fff;
}
.cbcontent figure.five p {
	position: absolute;
	right: 50px;
	bottom: 10%;
}
/* Six */
.cbcontent figure.six figcaption {
	height: 70%;
}
.cbcontent figure.six h2 {
    padding-bottom: 3%;
	border-bottom: 1px solid #fff;
}
.cbcontent figure.six p {
	padding-top: 6%;
}
/* Seven */
.cbcontent figure.seven figcaption {
	height: 90%;
	text-align:left;
}
.cbcontent figure.seven h2 {
	border-bottom: 3px solid #fff;
}
.cbcontent figure.seven p {
    padding-top: 1em;
}
/* Eight */
.cbcontent figure.eight figcaption {
	height: 100%;
	text-align: right;
}
.cbcontent figure.eight h2 {
	position: absolute;
	left: 50%;
	right: 50px;
	bottom: 10%;
}
.cbcontent figure.eight p {
    position: absolute;
    left: 50px;
	right: 50%;
	top: 10%;
	padding-right:0.5em;
	border-right: 1px solid #fff;
}
.cbcontent .slogan {
	position:absolute;
	right:12px;
	top:34px;
	font-size:28px;
	font-family: 'Lato', sans-serif;
	text-align:right;
	line-height:1.2;
	color: #a01720;
}
@media (max-width: 950px) {
	.cbcontent .slogan {
		position:static;
		text-align:center;
	}
	.cbcontent .slogan br {
		display:none;
	}
}
.cbcontent .lato {
	font-family: 'Lato', sans-serif;
	color: #a01720;
}
/*
.cbcontent .alconia {
	font-family: 'Aclonica', sans-serif;
	color: #a01720;
}
*/
.imprima, .imprima p {
	font-family: 'Imprima', sans-serif !important;
	font-size:16px;
}

.navbar-nav a {
	font-family: 'Lato', serif !important; /*Switched 'Crimson Text" out for 'Lato', 8/7/16*/
	letter-spacing:.06em;
}
