/*----------------------------------------------------------------------------- 
=GENERAL  
-----------------------------------------------------------------------------*/
/* Box Model Hack */
* {
     -moz-box-sizing: border-box; /* Firexfox */
     -webkit-box-sizing: border-box; /* Safari/Chrome/iOS/Android */
     box-sizing: border-box; /* IE */
}

.clear {
	clear: both;
}

body {
	background-image: url('../images/NEWlogolong.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
	color: 000000;
	font-family: 'Arvo', serif;
	line-height: 1.7;
	font-size: 100%;
}

/*----------------------------------------------------------------------------- 
=NAVBAR  
-----------------------------------------------------------------------------*/
nav {
	height: 40px;
	width: 100%;
	background: #313131;
	font-size: 14px;
	font-family: 'Arvo', serif;
	position: relative;
}

nav ul {
	padding: 0;
	margin: 0 auto;
	width: 600px;
	height: 40px;
}

nav li {
	display: inline;
	float: left;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clearfix {
	*zoom: 1;
}

nav a {
	color: white;
	display: inline-block;
	width: 75px;
	text-align: center;
	text-decoration: none;
	line-height: 40px;
}

nav li a {
	border-right: 1px solid white;
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}

nav ul li a:hover {
	color: #232323;
	transition: color 0.4s ease-in;
	text-shadow: 0 0 2px white;
}

nav ul li:last-child a {
	border-right: 0;
}

nav a#pull {
	display: none;
}

nav a img {
	vertical-align: middle;
}

nav ul li a img {
	max-height: 32px;
	vertical-align: middle;
}

@media screen and (max-width: 600px) {
	nav {
		height: auto;
	}

	nav ul {
		width: 100%;
		display: block;
		height: auto;
	}

	nav li {
		width: 50%;
		float: left;
		position: relative;
	}

	nav li a {
		border-bottom: 1px solid white;
		border-right: 1px solid white;
	}

	nav a {
		text-align: left;
		width: 100%;
		text-indent: 25px;
	}
}

@media only screen and (max-width: 480px){
	nav {
		border-bottom: 0;
	}

	nav ul {
		display: none;
		height: auto;
	}

	nav a#pull {
		display: block;
		background-color: #313131;
		width: 100%;
		position: relative;
	}

	nav a #pull:after {
		content: "";
		background: url('../images/nav-icon.png') no-repeat;
		width: 30px;
		height: 30px;
		display: inline-block;
		position: absolute;
		right: 15px;
		top: 10px;
	}
}

@media only screen and (max-width: 320px) {
	nav li {
		display: block;
		float: none;
		width: 100%;
	}

	nav li a {
		border-bottom: 1px solid white;
	}
}

/*----------------------------------------------------------------------------- 
=MAINBODY  
-----------------------------------------------------------------------------*/

.body1 {
	padding-top: 40px;
	padding-bottom: 40px;
}

.body1copy {
	float: left;
	max-width: 80%;
	padding-left: 15px;
	margin-left: 10%;
	margin-right: 10%;
}

.body1copy p a {
	text-decoration: none;
	color: #232323;
}

.body1copy p a:hover {
	color: #3F87C6;
	transition: color 0.4s ease-in;
	text-decoration: none;
	text-shadow: 0 0 2px white;	
}

.body1copy p {
	font-size: 18px;
}

/*----------------------------------------------------------------------------- 
=FOOTER  
-----------------------------------------------------------------------------*/

footer .foot1 ul {
	text-align: center;
	list-style: none;
	padding-left: 0;
}

footer .foot1 ul li p {
	color: #232323;
	font-size: 14px;
}

footer .foot1 ul li p a {
	text-decoration: none;
	color: #232323;
}

footer .foot1 ul li p a:hover {
	color: #3F87C6;
	transition: color 0.4s ease-in;
	text-decoration: none;
	text-shadow: 0 0 2px white;	
}

footer .foot2 {
	padding-top: 30px;
	padding-bottom: 30px;
}

footer .foot2 img {
	border-radius: 5%;
	width: 100%;
}

footer .foot2 .image1 {
	float: left;
	width: 20%;
	margin-left: 10%;
	margin-right: 10%;
}

footer .foot2 .image2 {
	float: left;
	width: 20%;
	margin-right: 10%;
}

footer .foot2 .image3 {
	float: left;
	width: 20%;
	margin-right: 10%;
}

footer .foot2 .image1:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	transition: 0.2s ease-in;
}

footer .foot2 .image2:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	transition: 0.2s ease-in;
}

footer .foot2 .image3:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	transition: 0.2s ease-in;
}


