@charset "UTF-8";
/* CSS Document */

/* ----------- NORMALIZER ----------- */
* {
	-webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
  	margin: 0;
	padding: 0;
}


/* ----------- Reset Styles ----------- */

html {
	color: #4A4A4A;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

p {
	color: #4A4A4A;
	font-size: 16px;
	line-height: 1.5em;
}

a {
	color: #307FE2;
	text-decoration: none;
	-webkit-transition: all 0.1s ease-in 0s;
	-moz-transition: all 0.1s ease-in 0s;
	transition: all 0.1s ease-in 0s;
}
	
	a:visited {
		color: #307FE2;
	}

	a:hover {
		color: #0A4BB8;
		text-decoration: underline;
	}

	a:active {
		color: #0A4BB8;
		text-decoration: underline;
	}

body {
	margin-top: 77px !important;
}


/* ----------- Primary Navigation Styles ----------- */

.navbar-slim {
	background-color: #fff;
	height: 77px;
	left: 0;
	padding: 0 15px;
	position: fixed;
	top: 0;
	width: 100%;
	transition: .2s;
	z-index: 10;
}

	/* Logo */

	.logo-container {
		height: 41px;
		margin: 18px auto;
		width: 140px;
		transition: .2s;
	}

	.logo {
		display: block;
		height: 41px;
		width: 140px;
		transition: .2s;
	}

	.logo-img {
		height: 41px;
		width: auto;
		transition: .2s;
	}


	/* Subnav */

	.subnav {
		background-color: #307FE2;
		border: 16px solid #fff;
		border-radius: 0px;
		box-shadow: 0px 0px 6px rgba(34, 34, 34, .6);
		color: #fff;
		display: none;
		left: 50%;
		list-style: none;
		margin-left: -185px;
		padding: 24px 0;
		position: absolute;
		width: 370px;
	}

		.subnav:before {
			content: "";
			border-left: 15px solid transparent;
			border-right: 15px solid transparent;
			border-bottom: 15px solid #fff;
			height: 0;
			left: 46%;
			position: absolute;
			top: -30px;
			width: 0;
		}


	/* Small Nav */

	.small .navbar-slim {
		box-shadow: 0 0 4px 0 rgba(0,0,0,0.19);
		height: 50px;
	}

	.small .logo-container {
		height: 28px;
		width: 96px;
		margin: 11px auto;
	}

	.small .logo {
		height: 28px;
	}

	.small .logo-img {
		height: 28px;
	}


/* ----------- Global Styles ----------- */


.flex-center {
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: center;
	position: relative;
}

.flex-stretch {
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	position: relative;
}

.flex-stretch-top {
	align-items: flex-start;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	position: relative;
}

.flex-left {
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	position: relative;
}

.flex-right {
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	position: relative;
}

.inner-wrapper {
	margin: 0 auto;
	max-width: 1170px;
	padding: 0 15px;
}

.inner-wrapper-wide {
	margin: 0 auto;
	width: 94%;
}

.margin-bottom-8 {
	margin-bottom: 8px;
}

/* ----------- Media Queries ----------- */

@media screen and (max-width: 992px) {
	.inner-wrapper {
		max-width: 970px;
	}
}

@media screen and (max-width: 899px) {
	.inner-wrapper-wide {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.inner-wrapper {
		max-width: 750px;
	}
}