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

/* Some normalizing stuff */

/** Prevent iOS text size adjust after orientation change, without disabling user zoom. */

html {
  -ms-text-size-adjust: 100%; 
  -webkit-text-size-adjust: 100%;
}

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * Remove the gray background color from active links in IE 10.
 */

a {
  background-color: transparent;
}

/*default image settings */
img {
	border: 0;
	max-width:100%;
	height:auto;
}

/* The following makes padding and borders not be added to width site wide */
* {
  box-sizing: border-box;
}
/* End normalizing stuff */


body {
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	color:#000;
	margin:0 0 0 0;
	position:relative;
    background:#c5c5c5;
}
p { 
	line-height: 1.6em;
}
a {
	color:#1c2754;
}
a:visited {
	color:#1c2754;
}
a:active {
	color:#1c2754;
}
a:hover {
	color:#600;
}

h1 {
	font-size:2em;
	font-weight:bold;
    color:#046393;
    border-bottom:3px solid #046393;
    padding:5px 0;
    margin:0 0 30px 0;
}
h1.pagetitle {
    background:#aeafb2;
    text-align: center;
    font-size:3em;
    padding:30px 0 5px 0;
    margin:0 0 0px 0;
    border-bottom:6px solid #046393;
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
}
h2 {
	font-size:1.5em;
	font-weight:bold;
}
h3 {
	font-size: 1.2em;
	font-weight:bold;
    background:#254863;
    color:#fff;
    padding:15px;
    margin:0px 0px 10px 0px;
    text-align: center;
}


header {
	width:100%;
	margin:0px auto;
    background:url("../images/headerBG.jpg") top no-repeat #1a6fae;
    background-size: 100% 100%;
    height:250px;
    position: relative;
}
.headerlogo {
    text-align: left;
    width:50%;
    float:left;
    padding:40px 0 0 5%;
}
.headerlogo img {
    max-height: 70px;
    width:auto;
}
.headercontact {
    text-align: right;
    width:50%;
    float:left;
    padding:40px 5% 0 0;
}
.headercontact a {
    text-decoration: none;
    color: #fff;
    font-size:2em;
    font-family: Times, "Times New Roman", "serif";
    line-height: 1em;
}
.headercontact a span {
    font-size:.7em;
    display:block;
}
.headercontact img {
    max-height: 70px;
    width:auto;
}
nav {
	color:#000;
	text-align: center;
    position: absolute;
    bottom:0px;
    width:100%;
}

section {
	width:100%;
	position: relative;
}
.contain{
	width:100%;
	max-width:1080px;
	margin:0 auto;
	position: relative;
}
.content {
	background: #fff;
	padding:4%;
}

.fullpage {
	width:100%;
	margin:0;
}

.col-half {
	width: 50%;
	float: left;
}
.col-third {
	width: 33%;
	float: left;
}
.col-fourth {
	width: 25%;
	float: left;
}
.col-twothirds {
	width: 66%;
	float: left;
}
.col-threefourths {
	width: 75%;
	float: left;
}

.pad-left {
	padding-left: 5%;
}
.pad-right {
	padding-right: 5%;
}
.pad-top {
	padding-top: 5%;
}
.pad-bottom {
	padding-bottom: 5%;
}
.pad-all {
	padding: 5%;
}

.mar-left {
	margin-left: 5%;
}
.mar-right {
	margin-right: 5%;
}
.mar-top {
	margin-top: 5%;
}
.mar-bottom {
	margin-bottom: 5%;
}
.mar-all {
	margin:5%;
}

.hilite {
    background:#d7d9da;
    border-radius:8px;
    padding:20px 5%;
}

.tease {
    margin:20px 0;
}
.tease img {
    display:block;
    border:1px solid #000;
    border-radius:5px 5px 0 0;
}
.tease p {
    margin:10px;
}

.pageimg {
	border:6px solid #888;
	box-shadow: 3px 3px 4px #555;
}
.imgright {
	float:right;
	margin-left:10px;
}
.imgleft {
	float:left;
	margin-right:10px;
}
.list {
	margin:30px 0 10px 30px;
	padding:0px;
	font-size:1.1em;
}

.list li{
    display: list-item;
    list-style: none;
	background:url(../images/bullet.png) 0px 4px no-repeat;
	padding:1px 0px 5px 40px;
	margin: 8px 0 12px 0;
}	
hr {
	border: 0;
    height: 1px;
	margin:40px 0;
    background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
    background-image:    -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
    background-image:     -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
    background-image:      -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
}

.clear {
	clear:both;
}
.clearafter:after {
	visibility: hidden;
	display: block;
	content: "";
	clear: both;
	height: 0;
}

.ctr {
	text-align:center;
}


.c2a, .c2a:visited, .c2a:active {
    display:inline-block;
	background:#046393;
	padding:20px 10%;
	border-radius:5px;
	color:#fff;
	text-decoration: none;
	font-size:1.4em;
    text-transform: uppercase;
    margin:30px auto;
}
.c2a:hover {
	color:#fff;
	background:#254863;
}

address {
	font-size:1.4em;
	font-style:normal;
	margin:40px 0;
    text-align: center;
}

.formstyle fieldset {
	width:100%;
	border:none;	
	border-radius: 5px;
	margin:20px auto 0 auto;
	background:#cccccc;
}
.formstyle legend {
	font-size:22px;
	font-weight:bold;
	color:#000;
	margin:0 0 20px 0;
}
.formstyle div {
	margin:10px;
	text-align:left;
}
.formstyle label {
	font-size:16px;
	font-weight:bold;
	float:left;
	margin:12px 1% 0 0;
	width:25%;
}
.formstyle .submit {
	text-align:center;
}

.unoCme {
	display:none;
	visibility: hidden;
}

input {
	border:1px solid #000;
	color:#333;
	font-size:16px;
	font-family:tahoma,arial,sans-serif;
	border-radius: 5px;
	margin-top:8px;
	padding:10px;
	width:74%;
}
textarea {
	border:1px solid #000;
	color:#333;
	font-size:16px;
	font-family:tahoma,arial,sans-serif;
	border-radius: 5px;
	margin-top:8px;
	padding:10px;
	width:74%;
	height:120px;
}
select {
	border:1px solid #000;
	color:#333;
	font-size:16px;
	font-family:tahoma,arial,sans-serif;
	border-radius: 5px;
	margin-top:8px;
	padding:10px;
	width:auto;
	cursor:pointer;
}

.button{
	background-color: #2f2e2c;
	border:none;
	color:#fff;
	font-size:16px;
	cursor:pointer;
	width:auto;
	padding:2% 4%;
}
.button:hover{
	background-color: #b4282e;
	color:#fff;
	cursor:pointer;
	width:auto;
}

.google-maps {
	position: relative;
	padding-bottom: 55%; 
	height: 0;
	overflow: hidden;
}
.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}


footer {
	font-size:.8em;
	width:100%;
	margin:0 auto;
	padding:50px 10%;
    background:#1e435b;
    color:#719fbd;
}
footer a, footer a:visited, footer a:active {
    color:#719fbd;
}
footer a:hover {
    color:#ddd;
}
#credit {
	width:300px;
	float:right;
	text-align:right;
}

/* slider styles */
#slider-container {
	width: 100%;
	height: auto;
	padding: 0px;
	margin:0px;
	position: relative;
	overflow: hidden;
}
#slider {
	position: relative;
	margin: 0 auto;
	background: url(../images/loading.gif) no-repeat 50% 50%;
}

#slider img {
	width: 100%;
	height: auto;
}
#slider a {
	border: 0;
	display: block;
}
.nivo-controlNav {
	position: absolute;
	left: 10px;
	top: 345px;
}
.nivo-controlNav a {
	display: block;
	width: 22px;
	height: 22px;
	background: url(../images/bullets.png) no-repeat;
	text-indent: -9999px;
	border: 0;
	margin-right: 3px;
	float: left;
}
.nivo-controlNav a.active {
	background-position: 0 -22px;
}
.nivo-directionNav a {
	display: block;
	width: 30px;
	height: 30px;
	background: url(../images/arrows.png) no-repeat;
	text-indent: -9999px;
	border: 0;
}
a.nivo-nextNav {
	background-position: -30px 0;
	right: 5px;
}
a.nivo-prevNav {
	left: 5px;
}
.nivo-caption {
	text-shadow: none;
	font-family: Helvetica, Arial, sans-serif;
	background-color: #082334;
}
.nivo-caption a {
	color: #ffb02a;
	text-decoration: underline;
}
/* end slider styles */

a.backbutton {
	display:inline-block;
	background:#16475f;
	color:#fff;
	font-size:.9em;
	padding:5px 10px;
	border-radius:3px;
	text-decoration: none;
	float:right;
}
a.backbutton:hover {
	background:#2e81a9;
}
article {
	background: #a2a4a6;
	padding:30px 5%;
	margin:40px 0 0 0;
    border-radius: 5px;
}
article h2 {
	margin:0 0 0 0;
    width:70%;
    float:left;
}
.blogimg {
  	width: 25%;
	background-position: top left;
	background-size:cover;
	border:5px solid #fff;
	box-shadow: 0px 0px 5px #999;
	float:left;
	margin-right:2%;
}

.blogimg:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
article p {
	display: block;
	width:70%;
	float:left;
	margin:10px 0;
}

article a, article a:visited, article a:active {
	display:inline-block;
	float:right;
	background:#16475f;
	border-radius: 3px;
	font-size:1.2em;
	color:#fff;
	text-transform: uppercase;
	text-decoration: none;
	padding:10px 30px;
	margin-right:50px;
}
article a:hover {
	background:#0b81c6;
	color:#fff;
}
/* Pulse Grow */
@-webkit-keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.hvr-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.hvr-pulse-grow:hover, .hvr-pulse-grow:focus, .hvr-pulse-grow:active {
  -webkit-animation-name: hvr-pulse-grow;
  animation-name: hvr-pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

@media (max-width: 940px) {

    nav {
        color:#000;
        text-align: center;
        position: absolute;
        top:85%;
        width:100%;
    }
}
@media (max-width: 719px) {
	.col-half {
		width: 100%;
		float: none;
	}
	.col-third {
		width: 100%;
		float: none;
	}
	.col-fourth {
		width: 100%;
		float: none;
	}
	.col-twothirds {
		width: 100%;
		float: none;
	}
	.col-threefourths {
		width: 100%;
		float: none;
	}
	#credit {
		width:100%;
		float:none;
		text-align: center;
		padding:4%;
	}
    header {
        width:100%;
        margin:0px auto;
        background:url("../images/headerBG.jpg") top no-repeat #1a6fae;
        background-size: 100% 100%;
        height:auto;
        position: relative;
    }
    .headerlogo {
        text-align: center;
        width:100%;
        float:none;
        padding:20px 0 0 0;
    }
    .headerlogo img {
        max-height: 70px;
        width:auto;
    }
    .headercontact {
        text-align: center;
        width:100%;
        float:none;
        padding:20px 0 50px 0;
    }
    .headercontact img {
        max-height: 70px;
        width:auto;
    }
    nav {
        color:#000;
        text-align: center;
        position: relative;
        bottom:0px;
        width:100%;
    }



}
