/* IMPORTS */


/**
 * 1.0 Global
 * ----------------------------------------------------------------------------- */
 
/* INNER BOX PADDING FOR RESPONSIVE COLUMNS */
* {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */	
}


/* BASIC SETUP */
body {
	font-size:14px;
}


/* TYPOGRAPHY */

/* Headings */
h1, h2, h3, h4, h5, h6, p {
	margin:0 0 12px;
	padding:0;
}
h1, h1 a {
}
h2, h2 a {
}
h3 {
}
h4 {
}
h5 {
}
h6 {
}

/* Text elements */
p {
}
p, li {
}
strong, .bold { font-weight:700; }
em { font-style:italic; }
p:last-child { margin-bottom: 0 !important; }
p a { text-decoration: underline !important; }
a,
a:focus {
	outline:none;
}
a:hover {
}
a[href^="tel:"] {
}
ul, ol {
	margin: 0 0 1.5em 3em;
}
ul {
	list-style: disc;
}
ol {
	list-style: decimal;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}
blockquote p:before { content: open-quote; }
blockquote p:after { content: close-quote; }
blockquote {
}



/* TABLES */
table { width:100%; }
tr { height:40; }
th { vertical-align:middle; text-align:right; padding:0 10; }
td { padding:6px; }
table.lined td { border-bottom:1px dotted #ddd; }	



/* FORMS */




/* TAGS */
.overlay { position:relative; }
.overlay > div { position:relative; z-index:9; }
.overlay::after {
	position:absolute;
	top:0; left:0;
	width:100%;
	height:100%;
	content:'';
	background-color:rgba(0,0,0,.4);
}
.green-span span {
    color: #6ABF4B;
}
.icon-red path {
    fill: rgba(196, 22, 28, 1);
}
.icon-white path {
    fill: rgba(255, 255, 255, 1);
}
.gray-radial {
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.07) 0%, rgba(227, 143, 146, 0.07) 69.89%, rgba(90, 90, 90, 0.07) 100%) !important; 
}



/**
 * 2.0 Layout
 * ----------------------------------------------------------------------------- */

.flex-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flex-container.justify {
	-webkit-box-pack:justify;
	    -ms-flex-pack:justify;
	        justify-content:space-between;
}
.flex-container.justify-left {
	-webkit-box-pack:start;
	    -ms-flex-pack:start;
	        justify-content:flex-start;
}
.flex-container.justify-center {
	-webkit-box-pack:center;
	    -ms-flex-pack:center;
	        justify-content:center;
}
.flex-container.justify-right {
	-webkit-box-pack:end;
	    -ms-flex-pack:end;
	        justify-content:flex-end;
}
.flex-container.align-top {
	-webkit-box-align:start;
	    -ms-flex-align:start;
	        align-items:flex-start;
}
.flex-container.align-center {
	-webkit-box-align:center;
	    -ms-flex-align:center;
	        align-items:center;
}
.flex-container.align-bottom {
	-webkit-box-align:end;
		-ms-flex-align:end;
			align-items:flex-end;
}
.flex-container.wrap {
	-ms-flex-wrap:wrap;
	    flex-wrap:wrap;
}
.flex-container.column {
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	    -ms-flex-direction:column;
	        flex-direction:column;
}
.grid {
	max-width:1200px;
	margin:auto;
}
.jet-checkboxes-list {
	padding-left: 14px;
	border-left: solid 1px #5a5a5a;
}


/**
 * 3.0 Header
 * ----------------------------------------------------------------------------- */

header {
    padding: 1em;
    position: fixed;
    width: 100%;
	background-color: #ffd700;
    top: 50px;
}
header img {
    width: 100px;
}
header .navbar.navbar-default {
	border: none !important;
	background-color: transparent;
	margin: 0;
}
.subhead {
    height: 50px;
    position: fixed;
    width: 100%;
	padding: 1em;
	background-color: black;
}
.subhead a {
	color: #FFF;
	font-weight: 700;
	margin-left: 20px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.subhead a img {
    width: 16px;
    margin: 0 6px;
}

/**
 * 4.0 Content
 * ----------------------------------------------------------------------------- */

.page-wrapper {
	max-width: 1400px;
	margin: auto;
	padding: 14em 2em 10em 2em;
}
.page-wrapper img {
    max-width: 50% !important;
}

.media {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    margin-top: 50px;
}
.media .media-left {
    width: 165px;
}
.media .media-body {
    width: 85%;
}
.media .media-left img {
	max-width: 100% !important;
}



/**
 * 5.0 Footer
 * ----------------------------------------------------------------------------- */
footer {
	padding: 1em;
}
