main .splash {
	height: 500px;
	position: relative;
	background-color: #777;
}

main .splash > ul
, main .splash > ul > li {
	height: 100%;
	
	-webkit-box-shadow: inset 0px -15px 15px -7px rgba(0, 0, 0, 0.15625);
	-moz-box-shadow: inset 0px -15px 15px -7px rgba(0, 0, 0, 0.15625);
	box-shadow: inset 0px -15px 15px -7px rgba(0, 0, 0, 0.15625);
}

main .splash > ul > li {
	background: #777 no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
}

main .splash > ul > li.active {
	z-index: 7;

	-webkit-transition: opacity 300ms ease-in-out;
	-moz-transition: opacity 300ms ease-in-out;
	-ms-transition: opacity 300ms ease-in-out;
	-o-transition: opacity 300ms ease-in-out;
	transition: opacity 300ms ease-in-out;
}

main .splash > ul > li.old { z-index: 8; }

main .splash .wrapper {
	max-width: 1000px;
	margin: 0px auto;
	text-align: right;
	line-height: 500px;
	padding: 0px 20px;
}

main .splash .content {
	position: relative;
	display: inline-block;
	line-height: normal;
	vertical-align: middle;
	
	color: #275135;
}

main .splash .content h1 {
	font-weight: 600;
	font-size: 65px;
	color: #fff;
	margin-bottom: 20px;
	
	-webkit-text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6), 0px 0px 30px rgba(0, 0, 0, 0.5);
	-moz-text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6), 0px 0px 30px rgba(0, 0, 0, 0.5);
	text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6), 0px 0px 30px rgba(0, 0, 0, 0.5);
}

main .splash .content h3 {
	font-weight: normal;
	font-size: 30px;
	color: #fff;
	margin-bottom: 20px;
	
	-webkit-text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6), 0px 0px 30px rgba(0, 0, 0, 1);
	-moz-text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6), 0px 0px 30px rgba(0, 0, 0, 1);
	text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6), 0px 0px 30px rgba(0, 0, 0, 1);
}

main .splash .content a {
	display: inline-block;
	
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight: bold;
	font-size: 30px;
	color: #4c5052;
	
	background-color: #badbed;
	padding: 10px 35px;
	
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	
	-webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.75);
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.75);
	
	-webkit-transition: background-color 200ms ease-in-out, margin 75ms ease-in-out, -webkit-box-shadow 75ms ease-in-out;
	-moz-transition: background-color 200ms ease-in-out, margin 75ms ease-in-out, -moz-box-shadow 75ms ease-in-out;
	-ms-transition: background-color 200ms ease-in-out, margin 75ms ease-in-out, box-shadow 75ms ease-in-out;
	-o-transition: background-color 200ms ease-in-out, margin 75ms ease-in-out, box-shadow 75ms ease-in-out;
	transition: background-color 200ms ease-in-out, margin 75ms ease-in-out, box-shadow 75ms ease-in-out;
	
	margin: 0px 3px 3px 0px;
}

main .splash .content a:hover { background-color: #daecf6; }

main .splash .content a:active {
	margin: 3px 0px 0px 3px;
	
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

main .splash > nav {
	position: absolute;
	z-index: 9;
	
	bottom: 45px;
	left: 50%;
	
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	
	font-size: 0px;
}

main .splash > nav div { text-align: center; }

main .splash > nav a {
	display: inline-block;
	width: 28px;
	height: 28px;
	
	background-color: rgba(255, 255, 255, 0.5);
	
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	
	-webkit-transition: background-color 200ms ease-in-out, -webkit-box-shadow 200ms ease-in-out;
	-moz-transition: background-color 200ms ease-in-out, -moz-box-shadow 200ms ease-in-out;
	-ms-transition: background-color 200ms ease-in-out, box-shadow 200ms ease-in-out;
	-o-transition: background-color 200ms ease-in-out, box-shadow 200ms ease-in-out;
	transition: background-color 200ms ease-in-out, box-shadow 200ms ease-in-out;
	
	-webkit-box-shadow: 0px 0px 15px 7px rgba(0, 0, 0, 0.125);
	-moz-box-shadow: 0px 0px 15px 7px rgba(0, 0, 0, 0.125);
	box-shadow: 0px 0px 15px 7px rgba(0, 0, 0, 0.125);
}

main .splash > nav a:hover {
	-webkit-box-shadow: 0px 0px 15px 7px rgba(255, 255, 255, 0.125);
	-moz-box-shadow: 0px 0px 15px 7px rgba(255, 255, 255, 0.125);
	box-shadow: 0px 0px 15px 7px rgba(255, 255, 255, 0.125);
}

main .splash > nav .active { background-color: rgba(255, 255, 255, 0.9); }

main .splash > nav a ~ a { margin-left: 15px; }

main .icons {
	background-color: #badbed;
	padding: 25px 0px;
	-webkit-box-shadow: 0px 7px 15px rgba(0, 0, 0, 0.15625);
	-moz-box-shadow: 0px 7px 15px rgba(0, 0, 0, 0.15625);
	box-shadow: 0px 7px 15px rgba(0, 0, 0, 0.15625);
	
	text-align: center;
}

main .icons nav {
	max-width: 1000px;
	margin: 0px auto;
	text-align: justify;
	text-justify: distribute;
	font-size: 0px;
}

main .icons nav::after {
	content: '';
	display: inline-block;
	width: 100%;
}

main .icons a {
	position: relative;
	display: inline-block;
	padding-top: 74px;
	min-width: 125px;
	
	text-align: center;
	font-family: 'Open Sans Condensed', 'Source Sans Pro', sans-serif;
	font-weight: 300;
	font-size: 30px;
	color: #404040;
	
	-webkit-transition: color 150ms ease-in-out, -webkit-text-shadow 150ms ease-in-out;
	-moz-transition: color 150ms ease-in-out, -moz-text-shadow 150ms ease-in-out;
	-ms-transition: color 150ms ease-in-out, text-shadow 150ms ease-in-out;
	-o-transition: color 150ms ease-in-out, text-shadow 150ms ease-in-out;
	transition: color 150ms ease-in-out, text-shadow 150ms ease-in-out;
	
	margin: 0px 20px;
}

main .icons a:hover {
	color: #fff;
	
	-webkit-text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3333), 0px 0px 10px rgba(0, 0, 0, 0.1666);
	-moz-text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3333), 0px 0px 10px rgba(0, 0, 0, 0.1666);
	text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3333), 0px 0px 10px rgba(0, 0, 0, 0.1666);
}

main .icons a::before
, main .icons a::after {
	content: '';
	
	position: absolute;
	top: 0px;
	left: 50%;
	margin-left: -31px;
	
	display: inline-block;
	width: 63px;
	height: 62px;
	
	background: url('img/splash_icons.png') no-repeat;
	-webkit-background-size: 400%;
	-moz-background-size: 400%;
	-ms-background-size: 400%;
	-o-background-size: 400%;
	background-size: 400%;
	
	-webkit-transition: opacity 200ms ease-in-out;
	-moz-transition: opacity 200ms ease-in-out;
	-ms-transition: opacity 200ms ease-in-out;
	-o-transition: opacity 200ms ease-in-out;
	transition: opacity 200ms ease-in-out;
}

main .icons a::before {
	opacity: 1.0;
	z-index: 1;
}
main .icons a::after {
	opacity: 0.0;
	z-index: 2;
}

main .icons a:hover::before
, main .icons a:active::before { opacity: 0.0; }

main .icons a:hover::after
, main .icons a:active::after { opacity: 1.0; }

main .icons .online::before { background-position: 0px 0px; }
main .icons .online::after { background-position: 0px -63px; }

main .icons .loan::before { background-position: -63px 0px; }
main .icons .loan::after { background-position: -63px -62px; }

main .icons .banking::before { background-position: -125px 0px; }
main .icons .banking::after { background-position: -125px -62px; }

main .icons .locations::before { background-position: -188px 0px; }
main .icons .locations::after { background-position: -188px -62px; }

main .icons span {
	display: inline-block;
	width: 1px;
	height: 100px;
	
	background-color: #404040;
}

main .blurb {
	padding: 160px 0px;
	background-color: #fff;
	font-weight: 300;
	font-size: 32px;
	color: #333333;
}

main .blurb > div {
	padding: 0px 20px;
	margin: 0px auto;
	max-width: 1000px;
}

main .blurb .title {
	font-weight: 100;
	font-size: 76px;
	color: #333333;
	text-align: center;
	margin-bottom: 35px;
}

main .parallax {
	font-size: 0px;
	background-color: #d5d5d5;
	position: relative;
	overflow: hidden;
}

main .parallax::before {
	content: '';
	display: block;
	padding-bottom: 475px;
}

main .parallax > .img {
	width: 100%;
	height: auto;
	position: absolute;
	z-index: 1;
	top: 0px;
	left: 0px;

	background: no-repeat center center;
	
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	
	-webkit-transform-origin: center;
	-moz-transform-origin: center;
	-ms-transform-origin: center;
	-o-transform-origin: center;
	transform-origin: center;
}

main .parallax > .img::before {
	content: '';
	display: block;
	padding-bottom: 594px;
}

main .parallax > .content {
	position: absolute;
	z-index: 2;
	
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	
	line-height: 475px;
	text-align: center;
	
	-webkit-box-shadow: inset 0px 15px 15px -7px rgba(0, 0, 0, 0.125), inset 0px -15px 15px -7px rgba(0, 0, 0, 0.125);
	-moz-box-shadow: inset 0px 15px 15px -7px rgba(0, 0, 0, 0.125), inset 0px -15px 15px -7px rgba(0, 0, 0, 0.125);
	box-shadow: inset 0px 15px 15px -7px rgba(0, 0, 0, 0.125), inset 0px -15px 15px -7px rgba(0, 0, 0, 0.125);
}

main .parallax > .content > div {
	display: inline-block;
	line-height: normal;
	vertical-align: middle;
	max-width: 1000px;
}

main .parallax h1
, main .parallax h2 {
	-webkit-transition: font-size 200ms ease-in-out;
	-moz-transition: font-size 200ms ease-in-out;
	-ms-transition: font-size 200ms ease-in-out;
	-o-transition: font-size 200ms ease-in-out;
	transition: font-size 200ms ease-in-out;
}

main .parallax h1 {	
	font-weight: 600;
	font-size: 110px;
	color: #275135;
}

main .parallax h2 {
	font-weight: 600;
	font-size: 66px;
	color: #275135;
}

main .community > div {
	max-width: 1000px;
	margin: 0px auto;
	padding: 100px 20px;
	background-color: #fff;
	text-align: center;
}

main .community > div > h1 {
	font-weight: 600;
	font-size: 60px;
	color: #275135;
	margin-bottom: 20px;
}

main .community > div > h2 {
	font-weight: 300;
	font-size: 32px;
	color: #275135;
	margin-bottom: 80px;
}

main .stories { position: relative; }

main .stories nav {
	position: absolute;
	bottom: 20px;
	left: 50%;
	z-index: 9;
	
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

main .stories nav a {
	display: inline-block;
	width: 28px;
	height: 28px;
	background-color: rgba(255, 255, 255, 0.5);
	
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	
	-webkit-transition: background-color 200ms ease-in-out, -webkit-box-shadow 200ms ease-in-out;
	-moz-transition: background-color 200ms ease-in-out, -moz-box-shadow 200ms ease-in-out;
	-ms-transition: background-color 200ms ease-in-out, box-shadow 200ms ease-in-out;
	-o-transition: background-color 200ms ease-in-out, box-shadow 200ms ease-in-out;
	transition: background-color 200ms ease-in-out, box-shadow 200ms ease-in-out;
	
	-webkit-box-shadow: 0px 0px 15px 7px rgba(0, 0, 0, 0.125);
	-moz-box-shadow: 0px 0px 15px 7px rgba(0, 0, 0, 0.125);
	box-shadow: 0px 0px 15px 7px rgba(0, 0, 0, 0.125);
}

main .stories > nav a ~ a { margin-left: 15px; }

main .stories nav a:hover {
	-webkit-box-shadow: 0px 0px 15px 7px rgba(255, 255, 255, 0.125);
	-moz-box-shadow: 0px 0px 15px 7px rgba(255, 255, 255, 0.125);
	box-shadow: 0px 0px 15px 7px rgba(255, 255, 255, 0.125);
}

main .stories nav a.active { background-color: rgba(255, 255, 255, 0.9); }

main .stories ul {
	position: relative;
	height: 500px;
	overflow: hidden;
}

main .stories li {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
}

main .stories li.old { z-index: 8 !important; }

main .stories li.active {
	z-index: 7;
	
	-webkit-transition: opacity 300ms ease-in-out;
	-moz-transition: opacity 300ms ease-in-out;
	-ms-transition: opacity 300ms ease-in-out;
	-o-transition: opacity 300ms ease-in-out;
	transition: opacity 300ms ease-in-out;
}

main .stories li > div { display: table-row; }
main .stories li > div > div {
	display: table-cell;
	text-align: left;
	height: 500px;
}

main .stories .img {
	background: #777 no-repeat center center;
	
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	
	position: relative;
}

main .stories .excerpt {
	background-color: #275135;
	font-weight: 300;
	font-size: 23px;
	color: #fff;
	width: 40%;
	line-height: 24px;
	padding: 60px 40px;
}

main .stories .excerpt > a {
	border: 1px solid #fff;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	padding: 10px 30px;
	display: inline-block;
	margin-top: 60px;
	line-height: normal;
	
	-webkit-transition: color 200ms ease-in-out, background-color 200ms ease-in-out, border-color 200ms ease-in-out;
	-moz-transition: color 200ms ease-in-out, background-color 200ms ease-in-out, border-color 200ms ease-in-out;
	-ms-transition: color 200ms ease-in-out, background-color 200ms ease-in-out, border-color 200ms ease-in-out;
	-o-transition: color 200ms ease-in-out, background-color 200ms ease-in-out, border-color 200ms ease-in-out;
	transition: color 200ms ease-in-out, background-color 200ms ease-in-out, border-color 200ms ease-in-out;
}

main .stories .excerpt > a:hover {
	color: #275135;
	background-color: #badbed;
	border-color: #badbed;
}

main .stories .excerpt > a:active { padding: 11px 30px 9px 30px; }

main .stories .img h1 {
	position: absolute;
	top: 30px;
	left: 0px;
	background-color: rgba(39, 81, 53, 0.75);
	
	line-height: 60px;
	padding: 0px 5px 0px 10px;
	
	font-weight: 400;
	font-size: 24px;
	color: #fff;
}

main .stories .img h1::after {
	content: '';
	position: absolute;
	right: -25px;
	
  width: 0px;
  height: 0px;
  
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 25px solid rgba(39, 81, 53, 0.75);
}

main .menu {
	font-size: 0px;
	margin-bottom: 4px;
}

main .menu::after {
	content: '';
	display: block;
	clear: both;
}

main .menu > div {
	display: inline-block;
	width: calc(50% - 2px);
	height: 515px;
	
	background: no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	
	text-align: right;
	padding: 100px 80px;
}

main .menu > div:first-child { float: left; }
main .menu > div:last-child { float: right; }

main .menu > div div {
	display: inline-block;
	width: 80%;
}

main .menu h1 {
	font-weight: 600;
	font-size: 75px;
	color: #275135;
	margin-bottom: 50px;
}

main .menu .white h1 {
	color: #fff;
	
	-webkit-text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.7);
	-moz-text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.7);
	text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.7);
}

main .menu a {
	display: inline-block;
	font-weight: bold;
	font-size: 38px;
	color: #4c5052;
	
	background-color: #badbed;
	padding: 15px 30px;
	
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	
	-webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
	
	-webkit-transition: background-color 200ms ease-in-out, margin 75ms ease-in-out, -webkit-box-shadow 75ms ease-in-out;
	-moz-transition: background-color 200ms ease-in-out, margin 75ms ease-in-out, -moz-box-shadow 75ms ease-in-out;
	-ms-transition: background-color 200ms ease-in-out, margin 75ms ease-in-out, box-shadow 75ms ease-in-out;
	-o-transition: background-color 200ms ease-in-out, margin 75ms ease-in-out, box-shadow 75ms ease-in-out;
	transition: background-color 200ms ease-in-out, margin 75ms ease-in-out, box-shadow 75ms ease-in-out;
	
	margin: 0px 3px 3px 0px;
}

main .menu a:hover { background-color: #daecf6; }

main .menu a:active {
	margin: 3px 0px 0px 3px;
	
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

#alerts {
	display: none;
	position: fixed;
	z-index: 101;
	width: 96%;
	left: 2%;
	bottom: 0px;
	
	background: #ab2429;
}

#alerts a:not(.alert-close) {
	display: block;
	color: #fff;
	font-weight: normal;
	text-decoration: none;
	
	padding: 20px;
	margin-right: 85px;
}

#alerts p {
	margin: 0px;
	padding: 0px;
}

#alerts .alert-close {
	display: block;
	
	position: absolute;
	z-index: 102;
	
	right: 0px;
	top: 0px;
	padding: 20px;
	
	color: #fff;
}

@media only screen and (max-width: 1200px) {
	main .menu > div {
		padding: 50px 40px;
		height: 450px;
	}
	
	main .menu h1 { font-size: 55px; }
}

@media only screen and (max-width: 1100px) {
	main .parallax h1 { font-size: 100px; }
	main .parallax h2 { font-size: 50px; }
	
	main .menu > div div { width: auto; }
}

@media only screen and (max-width: 1000px) {
	main .icons nav { text-align: center; }
	main .icons span { display: none; }
	main .icons a {
		width: 50%;
		margin: 0px;
		padding-bottom: 20px;
	}
	
	main .community > div { padding: 100px 0px; }
	
	main .community > div > h1
	, main .community > div > h2 { padding: 0px 20px; }
	
	main .stories ul { height: 900px; }
	main .stories nav {
		top: 450px;
		bottom: auto;
	}
	
	main .stories li > div
	, main .stories li > div > div {
		display: block;
		width: auto !important;
	}
	
	main .stories .img { height: 500px; }
	main .stories .excerpt {
		padding: 40px;
		height: 400px;
	}
}

@media only screen and (max-width: 900px) {
	main .parallax h1 { font-size: 75px; }
	main .parallax h2 { font-size: 33px; }
}

@media only screen and (max-width: 768px) {
	main .splash > nav {
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
		
		left: 0px;
	}
	main .splash > nav a {
		width: 35px;
		height: 35px;
	}
	
	main .splash > nav a ~ a { margin-left: 20px; }
	
	main .splash > nav div {
		text-align: left;
		padding-left: 40px;
	}
	
	main .blurb {
		padding: 50px 0px;
		font-size: 32px;
	}
	
	main .blurb .title {
		font-size: 50px;
		margin-bottom: 35px;
	}
	
	main .stories nav a {
		width: 35px;
		height: 35px;
  }
  
	main .stories .excerpt {
		font-size: 28px;
		line-height: normal;
	}
	
	main .menu { margin-bottom: 0px; }
	
	main .menu > div {
		float: none !important;
		display: block;
		width: auto;
		margin-bottom: 4px;
	}
	
	main .icons { padding: 50px 0px; }
	
	main .icons a {
		min-width: 125px;
		padding-top: 134px;
	}
	
	main .icons a::before
	, main .icons a::after {
		-webkit-background-size: auto;
		-moz-background-size: auto;
		-ms-background-size: auto;
		-o-background-size: auto;
		background-size: auto;
		
		margin-left: -63px;
		width: 125px;
		height: 124px;
	}
	
	main .icons .online::before { background-position: 0px 0px; }
	main .icons .online::after { background-position: 0px -124px; }
	
	main .icons .loan::before { background-position: -125px 0px; }
	main .icons .loan::after { background-position: -125px -124px; }
	
	main .icons .banking::before { background-position: -250px 0px; }
	main .icons .banking::after { background-position: -250px -124px; }
	
	main .icons .locations::before { background-position: -375px 0px; }
	main .icons .locations::after { background-position: -375px -124px; }
}

@media only screen and (max-width: 550px) {
	main .icons a {
		display: block;
		width: auto;
	}
	
	main .icons a ~ a { margin-top: 40px; }
}