/*COLORS
374E70 blue
863933 red
light blue rgb(84, 120, 172)
*/
*{
	font-family: "Open Sans";
}
/*RESETS*/
html {
	box-sizing: border-box;
	font-family: "Open Sans";
}
*, *:before, *:after {
	box-sizing: inherit;
}
html, body {
	margin: 0;
	padding: 0;
}
body {
	font-family: "Open Sans";
	font-size: 16px; /*Base font here*/
	color: #374E70;
}
img {
	border: none;
	display: block;
}
/*LAYOUT CLASSES*/
.cf {
	clear: both;
}
.cf:after {
	content: "";
	display: table;
	clear: both;
}
.contain {
	max-width: 1400px;/*Container width here*/
	margin-right: auto;
	margin-left: auto;
}
.contain_content {
	margin-left: auto;
	width: calc(100% - 310px);
	position: relative;
}
.contain:after, .contain_content:after {
	content: "";
	display: table;
	clear: both;
}
ul.navList {
	padding: 0;
	margin: 0;
	list-style: none;
}
ul.navList li a {
	text-decoration: none;
}
#menu_btn, #login_btn {
    display: none;
	text-align: center;
    padding: 1rem;
    color: #374E70;
    float: right;
	font-size: 1rem;
	place-items: center;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1.1;
}
#menu_btn img, #login_btn img{
	width: 25px;
	margin-bottom: 0.5rem;
}

#loginCancel {
			background-color: #666;
			display: none;
			padding: 0.5em;
			text-align: center;
			cursor: pointer;
		}
.flex{
	display: flex;
	flex-wrap: wrap;
}
.flex_col{
	display: flex;
	flex-direction: column;
}
.flex_even > *{
	flex-grow: 1;
	flex-basis: 0;
}
	@keyframes fadein {
	from { opacity: 0.2;}
    to   { opacity: 1;}
}
@keyframes popin{
	from {  opacity: 0;
			transform: scale(0.75);}
    to   { opacity: 1;}
}
#routing{
		
		float: left;
	}
	.content_img{
		max-width: 450px; 
		border-radius: 50%;
		animation: popin 1s;
		padding: 2em;
		width: 100%;
	}
	.flex_vcenter_text{
		display: flex;
		align-items: center;
		text-align: center;
	}
	.flex_vcenter{
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
.flex_rreverse{
	flex-direction: row-reverse
}
.inside {
	padding: 1em 1em;
}
       .vh{  
            border: 0;
              clip: rect(0 0 0 0);
              height: 1px;
              margin: -1px;
              overflow: hidden;
              padding: 0;
              position: absolute;
              width: 1px;
        }
/*#mainContent h2{
	color: #374D6F;
	
	
	
}*/
#mainContent.product_page h1 {
	text-align: center;
	font-family: "Open Sans";
    font-size: 4em;
    font-weight: normal;
}
#mainContent.product_page h2 {
    color: #374D6F;
    font-family: "Open Sans";
    font-size: 2.5rem;
    text-align: center;
    font-weight: normal;
}
h2+p,h3+p,h2+ul,h3+ul{
	margin-top: 0;
}
/*FUNCTION STYLES*/
.stick {
	position: sticky;
	top: 5px;

}

.spinit {
	animation:spin 20s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 
	100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } 
}
										


/*LAYOUT STYLES*/




body {
}
	header {
		position: absolute;
		width: 100%;
		z-index: 50;
		top: 0;
	}
		#logo {
			
    /* padding: 0.5em; */
    /* background-color: #FFF; */
    margin-left: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 800;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    /* min-height: 120px;*/
		}
			/*#logo img{
				width: 33%;
				height: auto;
				max-width: 240px;
				display: block;
			}*/
			#logo img{
				width: 100%;
				height: auto;
				max-width: 426px;
				display: block;
			}
			
.mobile_logo{
	display: none;
	clear: both;
	width: 100%;
	background-color: #FFF;
	padding: 0.75em 1em;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.25);
}
.mobile_logo img{
	width: 100%;
	max-width: 280px;
	height: auto;
	/*margin: auto;*/
	display: block;
}

@media (min-width: 1181px){
	header{
		position: absolute !important;
	}
	#logo{
		display: flex !important;
	}
	.mobile_logo,
	#menu_btn,
	#login_btn{
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
	}
	#topNav{
		position: absolute !important;
		float: right !important;
	}
	#topNav .menuBar{
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
}

/* Tablet and mobile: show mobile logo, hide desktop logo */
@media (max-width: 1180px){
	header{
		position: relative;
	}
	.mobile_logo{
		display: block !important;
		padding: 0.75em 170px 0.75em 1em;
		min-height: 82px;
		display: flex !important;
		align-items: center;
	}
	#logo{
		display: none !important;
	}
	#menu_btn, #login_btn{
		display: flex !important;
		position: absolute;
		top: 10px;
		width: 72px;
		padding: 0.5rem 0.25rem;
		float: none;
		z-index: 1300;
		font-size: 0.8rem;
		visibility: visible !important;
		opacity: 1 !important;
	}
	#login_btn{
		right: 86px;
	}
	#menu_btn{
		right: 10px;
	}
	#topNav{
		position: relative;
		top: 0;
		float: none;
		clear: both;
		text-align: left;
		z-index: 1100;
	}
	/* #topNav .menuBar{ */
		/* display: none !important; */
	/* } */
	#routing{
		float: none;
		display: block;
		margin: 0;
		padding: 0.5em 1em;
	}
}
/* Small mobile: slightly smaller logo */
@media (max-width: 600px){
	.mobile_logo img{
		max-width: 170px;
	}
	.mobile_logo{
		padding-right: 130px;
		min-height: 74px;
	}
	#menu_btn, #login_btn{
		width: 56px;
		font-size: 0.72rem;
		top: 8px;
		padding: 0.35rem 0.2rem;
	}
	#login_btn{
		right: 66px;
	}
	#menu_btn{
		right: 8px;
	}
}

	#topNav {
			background-color: #374E70;
			text-align: right;
			float: right;
			color: #FFF;
			width: 100%;
			position: absolute;
		}
			#topNav a {
				padding: 0 0.5em;
				color: #FFF;
				display: inline-block;
				text-decoration: none;
			}
#nav{
	
	background-color: #374E70;
}
#olb{
	
}
	#main {
		margin: 0 auto;
		position: relative;
		
	}
.content_page{
	min-height: 50vh;
}
		aside {
			width: 250px;
			left: 30px;
			top: 250px;
			position: absolute;
			z-index: 20;
			background-color: #FFF;
			height: calc(100% - 150px);
			padding: 0.75em;
			box-shadow: 2px 2px 10px rgba(0,0,0,0.25);
			
		}

			#olb {
				padding: 0.5em;
				background-color: #FFF;
			}
				#olb a{
					color: #000;
					display: block;
					text-decoration: none;
				}
				#olb a:hover{
					text-decoration: underline;
				}	
				#olb h1 {
					margin: 0;
					color: #000;
					font-family: "Open Sans";
					font-weight: 300;
					font-size: 2rem;
				}
				#olb h1 .fa{
					font-size: 1.5rem;
					line-height: 2rem;
					color: #863933
				}
				#LOGINID{
					float: left;
					width: 120px;
					background-color: #FFFFFF;
					border: solid 1px #BBBBBB;
					color: #000000;
					font-size: 14px;
					font-weight: 400;
					padding-left: 5px;
					padding-right: 5px;
					border-radius: 3px;
					padding: 0.5em;
				}
				#LOGIN_BTN{

					float: left;
					background-color: #374E70;
					border: solid 1px;
					border-color: #004890;
					color: #FFFFFF;
					font-weight: 700;
                    border-radius: 3px;
                    padding: 0.5em;
                    margin: 0 0.5em;
				}
			.aside_nav {
				width: 100%;
				background-color: #FFF;
				overflow-y: auto;
				overflow-x: visible;
				max-height: calc(100vh - 100px);
			}
				.aside_nav .fa {
					font-size: 1.5em;
					width: 2em;
				}

.aside_nav ul li a {
	padding: 0.75em 0.5em;
	display: block;
	color: #863933;
}
	#mainContent {
		background-color: #FFF;
		
	}
		.color_stripe{
			background-color: #374E70;
		}
		.color_stripe_alt{
			background-color: #863933;
		}
		#banner {
		}
.frontPageContent{
	
	display: flex;
	
}
.frontPageContent > div{
	
}
			#frontPageLeft {
				float: left;
				width: 60%;
			}
				#news a{
					display: block;
					color: #374E70;
					text-decoration: none;
					padding: 0.5em;
					line-height: 1.25em;
				}
				#news .fa{
					font-size: 1.25em;
					padding: 0.5em;
				}
		#news img{
			float: left;
			padding-right: 0.5rem;
		}
			#frontPageRight {
				width: 40%;
				padding: 0 0em; 
				background-color: #863933;
				box-shadow:  inset 0 0 50px rgba(0,0,0,0.5);
				position: relative;
			}
				#frontPageRight table {
					width: 100%;
					color: #FFF;
					text-align: center;
					padding: 1em 1.5em ;
					font-family: "Open Sans";
					font-weight: lighter;
					position: absolute;
					height: 100%
				}
				#frontPageRight table td {
					font-size: 1.25em;
				}
#news_page{
	
	min-height: 100vh;
}
footer {
	background-color: #374E70;
	color: #FFF;
	position: relative;
}
#logos {
	display: flex;
	padding: 2em 0;
}
#logos > * {
	padding: 0 1em;
	flex-grow: 1;
}
#logos img {
	max-height: 100px;
	padding: 0 10px;
}
.blurb {
	min-height: 200px;
	background-color: #670406;
	color: #FFF;
	padding: 3em 1em;
	background: linear-gradient(90deg,  rgba(84, 120, 172, 1.0),  rgba(84, 120, 172, 0.0)  ), url(../images/banner25.jpg);
	background-attachment: scroll;
	background-size: cover;
	font-size: 1.25em;
	position: relative;
	background-position: center;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
}
.blurb a.button {
    display: inline-block;
    padding: 0.5em;
    border: 2px #FFF solid;
    text-decoration: none;
    border-radius: 10px;
	display: inline-block;
}
.blurb a.button img{
	float: right;
    margin-left: 0.5rem;
    width: 23px;
}
.blurb a{
	color: #FFF;
}
#olb .content_btn, .content_btn{
	color: #FFF;
	background-color: #863933;
	border-radius: 10px;
	margin: 5px 0;
	padding: 10px;
	text-decoration: none;
}
#olb .content_btn, .content_btn_alt{
	color: #FFF;
	background-color: #374E70;
	border-radius: 10px;
	margin: 5px 0;
	padding: 10px;
	text-decoration: none;
}
/* .content_btn img{
	float: right;
	width: 30px;
} */
.long_btn{
    margin: 5px auto;
    text-align: center;
    display: block;
    width: 100%;
}
