body{
    background-color: #00264c;
    font-family: 'Varela Round', sans-serif;
    font-size: 13px;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Typography / Helper Classes */
a{
    color: #fff;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 700; /* All headings are a thick font weight */
    margin: 1% 0;
    color: #fff;
}
h1{
    font-size: 3.2em;
}
h2{
    font-size: 2.8em;
}
h3{
    font-size: 2.4em;
}
h4{
    font-size: 2em;
}
h5{
    font-size: 1.7em;
}
h6{
    font-size: 1.5em;
}
.balloon-holder{
    position: absolute;
    top: 0;
    left: 50%; /* This is for centering horizontally */
}
h2.title-balloon{
    color: #fff;
    font-size: 1em;
    background: #e62b2e;
    text-align: center;
    padding: 6px 18px;
    position: relative;
    left: -50%; /* This is for centering horizontally */
    margin-top: 0;
}
h2.title-balloon:after{
    content: "";
    display: block;
    width: 27px;
    height: 13px;
    background: url(../img/red-arrow.png) no-repeat center center;
    left: 50%;
    margin-left: -13px;
    position: absolute;
    top: 29px;
}
img{
    display: block;
    border: 0;
}
.tleft{
    text-align: left;
}
.tcenter{
    text-align: center;
}
.tright{
    text-align: right;
}
.left{
    float: left;
}
.right{
    float: right;
}
.alignleft{
    margin-right:15px;
}
.alignright{
    margin-left:15px;
}
.full{
    width: 100%;
}
.half{
    width: 50%;
}
.third{
    width: 33%;
}
.two-thirds{
    width: 66%;
}
.quarter{
    width: 25%;
}
.three-quarters{
    width: 75%;
}
.inline-block{
    display: inline-block;
    vertical-align: top;
}
.clear{
    clear: both;
}
.clearfix:after{
    content: "";
    clear: both;
    display: block;
}
.yellow{
    color: #f7bd48;
}
.red{
    color: #e62b2e;
    font-weight: bold;
}
.teal{
    color: #c7f6ff;
}
.teal-bg{
    background: #70c7c8;
    position: relative;
}
.teal-bg .container{
    position: relative;
    padding-top: 65px;
    padding-bottom: 20px;
}
.teal-bg .container:after{
    clear: both;
    content: "";
    display: block;
}
.white-bg{
    background: #fff;
    color: #086e82;
    position: relative;
}
.yellow-bg{
    background: #f7bd48;
}
.button{
    background: #f7bd48;
    color: #086e82;
    text-align: center;
    display: inline-block;
    margin: 10px 0;
    text-decoration: none;
    padding: 12px 9px;
    font-weight: bold;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.button:hover, .button.rounded:hover{
    background: #1f4e6a;
    color: #fff;
}
.button.blue{
    background: #70c7c8;
    color: #fff;
    padding: 4px 9px;
}
.button.blue:hover{
    background: #f7bd48;
    color: #1f4e6a;
}
#bottom .button.blue{
    color: #fff;
}
#bottom .button.blue:hover{
    color: #1f4e6a;
}
.button.rounded{ 
    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    border-radius: 11px;
    background: #f7bd48;
    color: #086e82;
    text-decoration: none;
    padding: 12px 9px;
    text-align: center;
    display: inline-block;
    margin: 10px 0;
}
.teal-bg .button{
    width: 60%;
}
blockquote{
    position: relative;
    z-index: 1;
    font-size: 1.7em;
    font-weight: bold;
}
blockquote:before{
    content: "";
    background: url(../img/quote-left.png) no-repeat;
    width: 45px;
    height: 35px;
    display: block;
    left: -34px;
    position: absolute;
    top: -20px;
    z-index: -1;
}
blockquote:after{
    content: "";
    background: url(../img/quote-right.png) no-repeat;
    width: 45px;
    height: 35px;
    display: block;
    position: absolute;
    right: -43px;
    bottom: -18px;
    width: 56px;
    z-index: -1;
}
.back-to-top{
    background-image: url(../img/back-to-top.jpg);
    background-repeat: no-repeat;
    height: 33px;
    width: 33px;
    text-indent: -9999px; /* Hides text from human view */
    position:fixed;
    bottom:75px;
    right:40px;
    display:none;
}
.back-to-top:hover{
    background-image: url(../img/back-to-top-rollover.jpg);
    text-decoration:none;
}

/* Responsive Bits */
/* Check the media query section, to see the other responsive bits, 
that are only applied within said media query */
.mobile{
    display: none; /* Applying this hides element on everything except "mobile" */
}
/* Responsive iframes/google maps */
.embed-container { 
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; 
    overflow: hidden; 
    max-width: 100%; 
    height: auto; } 
.embed-container iframe, .embed-container object, .embed-container embed { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}

/* Structure / Template Specific */
.container{
    max-width: 1020px;
    margin: auto;
    padding: 0 20px;
}

/* Top/Header */
#top{
    position: relative;
}
.nav-logo-holder{
    background: #70c7c8 url(../img/header-bg.jpg) no-repeat center;
    border-bottom: 13px solid #b32017;
}
.nav-logo-holder .container{
    position: relative;
}
.nav-logo-holder .container:after{
    clear: both;
    display: block;
    content: "";
}
.pre-logo{
    font-size: 1.1em;
    line-height: 20px;
    background: #00264c;
    color: #fff;
}
.pre-logo ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.pre-logo li{
    display: inline-block;
    vertical-align: middle;
}
.pre-logo .address li:after{
    content: "|";
    margin-right: 5px;
    padding-left: 5px;
}
.pre-logo .address li:last-child:after{
    content: "";
    margin-right: 0;
    padding-right: 0;
}
.social li{
    margin-left: 5px;
}
.top-bar .social li{
    display: inline-block;
}
.logo{
    font-size: 8em;
    color: #fff;
    font-weight: 600;
    display: table-cell;
    vertical-align: top;
}
.logo img{
    margin-top: 7%;
    margin-bottom: 7%;
}
.logo a{
    text-decoration: none;
    color: #fff;
}
.main-navigation{
    list-style-type: none;
    margin: 0;
    padding: 0;
    line-height: 30px;
    padding: 22px 0 0 0;
    display: table-cell;
    vertical-align: middle;
}
.main-navigation ul{
    margin: 0;
}
.main-navigation li{
    display: inline-block;
    vertical-align: top;
    margin-left: 20px;
    position: relative; /* This is used for dropdown */
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;

}
.main-navigation li:last-child{
    margin-right: 0;
}
.main-navigation a{
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    display: block;
}
.main-navigation a:hover{
    color: #1f4e6a;
}
.main-navigation li ul{ /* Dropdown menu UL/wrapper styling */
    display: none;
    position: absolute;
    z-index: 999; /* Makes sure the dropdown is always on top */
    padding: 0;
    top: 30px;
    left: 0;
    text-align: left;
    min-width: 100%;
    white-space: nowrap;
    line-height: 48px;
}
.main-navigation li:hover ul{
    display: block;
}
.main-navigation li li{ /* Dropdown menu item styling */
    display: block;
    margin: 0;
    background: #f7bd48; 
    width: 100%;
    color: #fff;
}
.main-navigation li li a{ /* Dropdown menu item a styling */
    padding-left: 20px;
    padding-right: 20px;
    color: #1f4e6a;
}
.main-navigation li li:hover{
    background: #1f4e6a;
}
.main-navigation li li:hover a{
    color: #fff;
}
.header img{
    width: 100%;
    display: block;
    max-width: 1920px;
    margin: auto;
}

/* Main Content Area */
.welcome-holder{
    background: #f7bd48 url(../img/shapes-pattern.png) repeat;
    position: relative;
    min-height: 231px;
}
.welcome-box{
    max-width: 830px;
    background: #70c7c8;
    margin: auto; 
    position: relative;
    top: -100px; /* Offsets the Welcome box */
    z-index: 105;
}
.welcome-box h1{
    margin-top: 0;
    width: 100%;
    background: #00264c;
}
.welcome-box h2{
    margin-top: 0;
    font-size: 1.1em;
    color: #1f4e6a;
    font-weight: normal;
}
.welcome-content{
    padding: 3% 7%;
    font-size: 1.2em;
}
.contact-wrapper {
	width:100%;
	text-align:center;
	margin-top:20px;
}

.contact {
	max-width:350px;
	display:inline-block;
	margin:0 15px;
}

.contact h5 {
	color:#00264c;
	line-height:.1em;
}
.contact h5 a {
	color:#00264c;
	text-decoration:none;
}
.pagetitle{
    background: url("../img/shapes-pattern.png") repeat #f7bd48;
}
.pagetitle h1{
    margin: 0;
    padding: 10px 0;
}
.main-content{
    background: url(../img/content-bg.jpg) no-repeat;
    background-attachment: fixed;
    position: relative;
}
.home .main-content{
    background-image: none;
}
.main-content .container{
    position: relative;
    padding-top: 35px;
    padding-bottom: 35px;
}
.home .main-content .container{
    padding-top: 75px;
}
.main-content p:first-of-type{
    margin-top: 0;
}
.main-content .block{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 20px;
}
.main-content .block h2{
    font-size: 1.5em;
    color: #f7bd48;
    border-bottom: 1px solid #70c7c8;
    display: inline-block;
    padding-bottom: 4px;
    margin-bottom: 12px;
}
.main-content .block p{
    margin-top: 0;
}
.main-content .col img{
    display: block;
    width: 100%;
    max-width: 360px;
}
#white-call-to-action{
    padding: 2.5% 0;
    font-size: 1.5em;
}
#white-call-to-action a{
    color: #e62b2e;
    font-weight: bold;
    text-decoration: none;
}
#white-call-to-action a:hover{
    text-decoration: underline;
}

/* Footer */
#bottom{
    padding-top: 20px;
    margin-bottom: 20px;
    font-weight: 300;
    position: relative;
}
#bottom:after{
    clear: both;
    content: "";
    display: block;
}
#bottom h5{
    width: 50%;
    margin: auto auto 30px;
    text-align: center;
}
#bottom .block{
    float: left;
    vertical-align: top;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 20px;
}
#bottom .block.first{
    width: 420px;
}
#bottom .block.second{
    width: 180px;
}
#bottom .block.third{
    width: 225px;
}
#bottom .block h3{
    color: #f7bd48;
    font-size: 1.2em;
    font-weight: normal;
    margin-bottom: 18px;
}
#bottom p{
    margin-top: 0;
}
#bottom ul{
    color: #fff;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
#bottom ul li{
    position: relative;
    padding-bottom: 20px;
}
#bottom ul li:last-child{
    padding-bottom:0;
}
#bottom a{
    color: #7ecad6;
}
#bottom a:hover{
    color: #fff;
}
#bottom li:before{
    content: "•";
    color: #f7bd48;
    padding-right: 2px;
    font-size: 3em;
    left: -14px;
    padding-right: 2px;
    position: absolute;
    top: -18px;
}
#bottom ul.menu{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#bottom ul.menu li{
    padding-bottom: 0;
}
#bottom ul.menu li:before{
    content: "";
    padding-right: 0;
}
#bottom .social li{
    display: inline-block;
    vertical-align: top;
}
.copyright{
    font-size: .8em;
    color: #1f4e6a;
    padding: 15px 0;
}
.copyright a{
    color: #1f4e6a;
    text-decoration: none;
}
.copyright .left.half a:before{
    content: "|";
    padding-right: 5px;
    text-decoration: none;
}
.copyright a:hover{
    text-decoration: underline;
}
.copyright img{
    vertical-align: top;
}
.stack-set{
    display: inline-block;
}
.logo-small{
    margin-left: 5px;
    margin-right: 5px;
}

/* Media Queries / Responsive */
@media only screen and (max-width: 768px) {
    .desktop{
        display: none !important; /* Applying this hides element on "mobile" */
    }
    .mobile{
        display: block;
    }
    .half, .third, .two-thirds, .quarter, .three-quarters{
        width: 100%;
        text-align: center;
    }
    .main-content ul{
        text-align: left;
    }
    #bottom .block.first, #bottom .block.second, #bottom .block.third, #bottom .block.fourth{
        width: 100%;
        float: none;
    }
    .left, .right{
        float: none;
    }
    .main-content h1,.main-content h2,.main-content h3,.main-content h4,.main-content h5,.main-content h6{
        text-align: left;
    }
    .logo{
        text-align: center;
        display: block;
        margin: auto;
    }
    .logo img{
        margin-top: 45px;
		margin-bottom:5px;
        display: inline-block;
		max-width:100%;
    }
    .pre-logo{
        line-height: 52px;
    }
    .social{
        display: block;
        text-align: right;
    }
    #bottom{
        text-align: center;
    }
    #bottom h5{
        margin-bottom: 40px;
    }
    .main-content img{
        margin: auto auto 5% auto;
        max-width: 100%;
        height: auto;
    }
    /* Mobile Menu */
    #menu-btn{
        cursor: pointer;
        display: block;
        left: 20px;
        position: absolute;
        top: 10px;
        z-index: 999;
    }
    .sb-menu{
        padding: 0;
    }
    .top-bar{
        background: #774ba4;
        height: 75px;
    }
    .top-bar:after{
        clear: both;
        display: block;
        content: "";
    }
    nav li {
        position: relative;
    }
    nav li ul {
        display: none;
    }
    nav li:hover ul {
        display: block;
    }
    /* END Mobile Menu */
    .welcome-box{
        top: -40px;
    }
    .phone{
        background: #00264c;
        width: 100%;
        padding: 12px 0;
        font-size: 2em;
        font-weight: bold;
        text-align: center;
    }
    .main-content .block p{
        margin-bottom: 0;
    }
    .block .button{
        margin-bottom: 30px;
    }
    .teal-bg .button{
        width: 100%;
        display: block;
        margin: auto auto 10px;
        width: 60%;
    }
    .copyright{
        line-height: normal;
        padding: 20px 0;
    }
    .copyright .half{
        margin-bottom: 20px;
    }
    .copyright .half:last-child{
        margin: 0;
    }
    .stack-set{
        display: block;
        margin-bottom: 10px;
    }
    .copyright .stack-set a:first-child:before{
        content: "";
        padding: 0;
    }
    .right.half .stack-set{
        margin: 0;
    }
    .logo-small{
        margin-top: 5px;
        margin-bottom: 5px;
    }
    #white-call-to-action strong{
        display: block;
    }
    #bottom h5{
        width: 100%;
        margin: auto auto 30px;
        text-align: center;
    }
    .back-to-top{
        bottom: 10px;
        right: 10px;
    }
}
@media only screen and (max-width: 445px) {
    footer h2.title-balloon:after{
        top: 47px;
    }
}