/*
Theme Name: Your Web Layout
Theme URI: http: //yourweblayout.com/
Author: Design Services
Author URI: http: //yourweblayout.com/
Description: This site was built by Design Services. If you have any questions, please contact <a href="mailto: updates@yourweblayout.com">updates@yourweblayout.com</a>
Version: 1.2.0
License: GNU General Public License v2 or later
License URI: http: //www.gnu.org/licenses/gpl-2.0.html
Tags: responsive-layout

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Your Web Layout is based on Underscores http: //underscores.me/, (C) 2012-2014 Automattic, Inc.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS: 
----------------------------------------------------------------
1.0 Bootstrap
	1.1 Adjustments

2.0	Underscores
	2.1 Elements
	2.2 Accessibility
	2.3 Alignments
	2.4 Clearings

3.0 Your Web Layout
	3.1 Typography
	3.2 Background
	
	3.3 Header
	3.4 Navigation
	3.5 Contentog
	3.6 Sidebar
	3.7 Footer
	3.8 Custom
	3.9 WooCommerce
	3.9.5 Blog

4.0 Media Queries
	4.1 xs
	4.2 sm
	4.3 md
	4.4 lg
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Bootstrap
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.1 Adjustments
--------------------------------------------------------------*/
/* If they insist, disable responsiveness thusly
 * @link http: //getbootstrap.com/getting-started/#disable-responsive
 *
 * 1. Replace all col classes (col-lg, col-md, col-sm) with col-xs
 * 2. Remove all navbar collapsing and expanding behavior
 * 3. Uncomment css below to override container width
 */

/*
.container {
	width: 970 !important;
}
@media (min-width: 768px) {
	.container {
		width: 970px;
	}
}
@media (min-width: 992px) {
	.container {
		width: 970px;
	}
}
@media (min-width: 1200px) {
	.container {
		width: 970px;
	}
}
*/

/*--------------------------------------------------------------
2.0	Underscores
--------------------------------------------------------------*/

/*--------------------------------------------------------------
2.1 Elements
--------------------------------------------------------------*/
img {
	height: auto; /* Make sure images are scaled correctly */
	max-width: 100%; /* Adhere to container width */
}

/* Make sure elements fit their containers */
embed,
iframe,
object,
.wp-caption,
.widget select {
	max-width: 100%;
}

/* Required by WordPress theme check */
.sticky,
.bypostauthor,
.gallery-caption,
.wp-caption-text {
}

/*--------------------------------------------------------------
2.2 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text: hover,
.screen-reader-text: active,
.screen-reader-text: focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
2.3 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
2.4 Clearings
--------------------------------------------------------------*/
.clear: before,
.clear: after,
.entry-content: before,
.entry-content: after,
.comment-content: before,
.comment-content: after,
.site-header: before,
.site-header: after,
.site-content: before,
.site-content: after,
.site-footer: before,
.site-footer: after {
	content: "";
	display: table;
}

.clear: after,
.entry-content: after,
.comment-content: after,
.site-header: after,
.site-content: after,
.site-footer: after {
	clear: both;
}

/*--------------------------------------------------------------
3.0 Your Web Layout
--------------------------------------------------------------*/
/* this removes the anchor tags around images and text when printing a webpage */
@media print {
	a[href]:after {
		content: "";
	}
}
/*--------------------------------------------------------------
3.1 Typography
--------------------------------------------------------------*/
body {
	color: #152b37;
	font-family: 'Oxygen', sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
	color: #064273;
}
h1, 
h2, 
h3 {
	font-family: 'Raleway', sans-serif;
}
h1 {
	font-size: 30px;
	line-height: 39px;
}
h2 {
    color: #00a650;
	font-size: 33px;
    font-weight: bold;
	line-height: 38px;
    text-transform: uppercase;
}
h2 a {
	color: #00a650;
	font-size: 33px;
    font-weight: bold;
	line-height: 38px;
    text-transform: uppercase;
}
h3,
.panel-title {
    color: #064273;
	font-size: 24px;
    font-weight: bold;
	line-height: 30px;
}
h4 {
	font-size: 20px;
	line-height: 26px;
}
p {
	margin-bottom: 20px;
}
a {
	color: #064273;
    font-weight: bold;
}

a:hover, 
a:focus {
	color: #189dd0;
    font-weight: bold;
    text-decoration: none;
}

/*this hides the dotted border that appears on menu items when active */
a:focus {
	outline: none;
}

ul {
	padding-left: 20px;
    margin-bottom: 20px;
}

hr {
    height: 2px;
    background-image: linear-gradient(to right, rgba(102, 218, 248, 0), rgba(102, 218, 248, 0.75), rgba(102, 218, 248, 0));
}

/*--------------------------------------------------------------
3.2 Background
--------------------------------------------------------------*/
body {
	background: #fff;
}
.site-header {
	background: #66daf8;
	position: relative;
	z-index: 2;
}
#site-navigation {
	background: #fff;
    -webkit-box-shadow: inset 0px 3px 4px 0px rgba(0,0,0,0.19);
    -moz-box-shadow: inset 0px 3px 4px 0px rgba(0,0,0,0.19);
    box-shadow: inset 0px 3px 4px 0px rgba(0,0,0,0.19);
}
.site-content > .container {
	background: #fff;
}
.site-footer {
	background: #66daf8;
}
.attribution {
    background: #bdeffc;
}

/* sm */
@media (min-width: 768px) {
	
}

/* md */
@media (min-width: 992px) {
	
}

/* lg */
@media (min-width: 1200px) {
	
}

/*--------------------------------------------------------------
3.3 Header
--------------------------------------------------------------*/
#logo,
#text-logo {
	text-align: center;
}
#logo {
	margin-bottom: 10px;
	margin-top: 10px;
}
#contact-info {
	margin-top: 20px;
}
#contact-info a,
#contact-info p	{
	color: #064273;
}
#contact-info .fa-phone,
#contact-info .fa-envelope {
	color: #064273;
	margin-right: 5px;
}
#text-logo {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 33px;
    font-weight: bold;
    line-height: 38px;
    margin-bottom: 20px;
    margin-top: 32px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 1);
    text-transform: uppercase;
}

/* Adds border and lines up search input and search button (need both rules below) 
.search-form input.search-submit {
	border: 2px solid #064273;
	border-radius: 0;
	color: #fff;
	font-family: FontAwesome;
	font-size: 16px;
	line-height: 25px;
	padding: 2px 10px 4px 10px;
}
input[type="search"] {
	border: 2px solid #064273;
	font-size: 16px;
	line-height: 29px;
	padding: 1px 0 1px 5px;
}*/

/* sm */
@media (min-width: 768px) {
    #text-logo {
        margin-top: 35px;
        text-align: left;
    }
}

/* md */
@media (min-width: 992px) {
    #text-logo {
        font-size: 30px;
        margin-top: 55px;
    }
}

/* lg */
@media (min-width: 1200px) {
    #text-logo {
        font-size: 33px;
        margin-top: 60px;
    }
}

/*--------------------------------------------------------------
3.4 Navigation
--------------------------------------------------------------*/
/* Primary nav */
.navbar {
	border: none;
	border-radius: 0;
	min-height: 30px;
}
.navbar-default {
	margin-bottom: 0;
}
.navbar-default .navbar-nav {
	margin-left: -15px;
}
.navbar-default .navbar-nav > li > a {
	color: #064273;
    font-size: 14px;
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
	padding: 10px 15px;
    text-transform: uppercase;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .open > a, 
.navbar-default .navbar-nav > .open > a:hover, 
.navbar-default .navbar-nav > .open > a:focus {
	background-color: transparent;
	color: #189dd0;
}
.navbar-nav .sub-arrow, 
.navbar-nav .collapsible .sub-arrow {
	margin-left: 1px;
}

/* Secondary nav */
#secondary-nav .nav > li > a,
#secondary-nav .nav > li > a:hover,
#secondary-nav .nav > li > a:focus,
#secondary-nav .nav > li.active > a,
#secondary-nav .nav > li.active > a:hover,
#secondary-nav .nav > li.active > a:focus {
	background: transparent;
}
#secondary-nav .nav > li > a {
	color: #064273;
}
#secondary-nav .nav > li > a:hover,
#secondary-nav .nav > li > a:focus,
#secondary-nav .nav > li.active > a,
#secondary-nav .nav > li.active > a:hover,
#secondary-nav .nav > li.active > a:focus {
	color: #189dd0;
}
.nav-pills > li {
	float: none;
}

/* sm */
@media (min-width: 768px) {
	.navbar-default .navbar-nav > li > a {
        font-size: 13px;
		padding: 10px 10px;
	}
	.nav-pills > li {
		/*float: left;*/
	}
	
	/* next 2 rules center main navigation 
	.navbar .navbar-nav {
		display: inline-block;
		float: none;
	}	
	.navbar .navbar-collapse {
		text-align: center;
	}*/
}

/* md */
@media (min-width: 992px) {
	.navbar-default .navbar-nav > li > a {
        font-size: 14px;
		padding: 10px 20px;
	}
	
	/*makes header menu float right*/
	.navbar-default .navbar-nav {
		float: right;
	}
	.navbar-default .navbar-nav > li:last-child a {
		padding-right: 0;
	}
	
	/*makes footer menu float right
	#secondary-nav .nav-pills {
		float: right;
	}*/	
}

/* use below to change the navbar collapse breakpoint for sites with a lot of items in the navigation
@media (max-width: 992px) {
	.navbar-header {
		float: none;
	}
	.navbar-left,
	.navbar-right {
		float: none !important;
	}
	.navbar-toggle {
		display: block;
	}
	.navbar-collapse {
		border-top: 1px solid transparent;
		box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
	}
	.navbar-fixed-top {
		border-width: 0 0 1px;
		top: 0;
	}
	.navbar-collapse.collapse {
		display: none!important;
	}
	.navbar-nav {
		float: none!important;
		margin-top: 7.5px;
	}
	.navbar-nav > li {
		float: none;
	}
	.navbar-nav > li > a {
		padding-bottom: 10px;
		padding-top: 10px;
	}
	.collapse.in{
		display: block !important;
		overflow-y: auto !important;
	}
	.dropdown-menu {
		box-shadow: none;
		border: none;
		float: none;
		position: relative;
	}
}*/

/* lg */
@media (min-width: 1200px) {
	.navbar-default .navbar-nav > li > a {
		padding: 10px 30px;
	}
}

/*-------------------------------------------------------------
		Hamburger Menu 
--------------------------------------------------------------*/
/*edit to length you need to remove vertical scroll on mobile view*/
.navbar-collapse {
	max-height: 600px;
}

/*styles for "Main Menu" text*/
.navbar-default .navbar-brand,
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
	color: #064273;
    display: none !important;
}
.navbar-default .navbar-brand:hover {
	text-decoration: underline;
}
.navbar-default .navbar-brand:focus {
	text-decoration: none;
}

/*styles for hamburger toggle */
.navbar-toggle {
	background-color: transparent;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
	float: right;
	margin-bottom: 8px;
	margin-right: 15px;
	margin-top: 8px;
	padding: 9px 10px;
	position: relative;
}
.navbar-default .navbar-toggle {
	background-color: #fff;
	border-color: #064273;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
	background-color: #064273;
	border-color: #fff;
}
.navbar-toggle .icon-bar {
	border-radius: 1px;
	display: block;
	height: 2px;
	width: 22px;
}
.navbar-default .navbar-toggle .icon-bar {
	background-color: #064273;
}
.navbar-default .navbar-toggle:hover .icon-bar, 
.navbar-default .navbar-toggle:focus .icon-bar {
	background-color: #fff;
}

/* Drop down menu */
.dropdown-menu {
	background-color: #fff;
	/*background-color: rgba(0, 0, 0, 0.75); adds transparent bg to drop-down navigation*/
	background-clip: padding-box;
	border: 0;
	border-radius: 4px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	display: none;
	font-size: 16px;
	left: 0;
	list-style: none;
	margin: 2px 0 0;
	min-width: 160px;
	padding: 5px 0;
	position: absolute;
	top: 100%;
	z-index: 1000;
}
.dropdown-menu > li {
	
}
.dropdown-menu > li > a {
	clear: both;
	color: #fff;
	display: block;
	font-weight: normal;
	line-height: 1.25em;
	padding: 3px 20px;
	white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
	background-color: #064273;
	color: #fff;
	text-decoration: underline;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
	background-color: #064273;
	color: #fff;
	outline: 0;
	text-decoration: none;
}

.navbar-default .navbar-nav .open .dropdown-menu > li > a,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus/*,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a, 
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, 
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus*/ {
	background-color: transparent;
	color: #fff;
}

/*This allows you to set the background color for the active sub-menu item when you mouse off it to click on it's sub-menu item*/
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
	background-color: #064273;
	border-color: #064273;
}
.site-header .caret {
	display: none;
}

/* sm */
@media (min-width: 768px) {
	
}

/* md */
@media (min-width: 992px) {
	
}

/* lg */
@media (min-width: 1200px) {
	
}

/*--------------------------------------------------------------
3.5 Content
--------------------------------------------------------------*/
.entry-header {

}
.home .entry-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
	text-align: center;
}
.home-text {
    font-size: 24px;
    line-height: 34px;
    padding: 30px 0;
}

.entry-content {
	padding-bottom: 25px;
}
.entry-content li {
	margin-bottom: 5px;
}
.entry-footer {

}
.site-content > .container {
    margin-top: 40px;
}
.home .site-content > .container {
    margin-top: 0;
}
.home .ai1ec-allday-badge,
.home .ai1ec-subscribe-container {
    display: none;
}

.rcp_registration_total,
.rcp_separator,
.rcp_price,
.rcp_level_duration,
.rcp_subscription_level_2,
.rcp_lost_password {
    display: none;
}

.panel-title {
    padding: 5px 0;
}

/* sm */
@media (min-width: 768px) {
	
}

/* md */
@media (min-width: 992px) {
	
}

/* lg */
@media (min-width: 1200px) {
	
}

/*--------------------------------------------------------------
3.6 Sidebar
--------------------------------------------------------------*/
.widget-area {

}
.widget-title {
    font-size: 25px;
}
#right-sidebar {
    
}

/*--------------------------------------------------------------
3.7 Footer
--------------------------------------------------------------*/
.footer-logo,
.footer-menu {
	text-align: center;
}
.site-footer {
    padding: 30px 0 60px 0;
}

.attribution {
    -webkit-box-shadow: inset 0px 3px 6px 0px rgba(0,0,0,0.19);
    -moz-box-shadow: inset 0px 3px 6px 0px rgba(0,0,0,0.19);
    box-shadow: inset 0px 3px 6px 0px rgba(0,0,0,0.19);
    padding: 10px 0;
    text-align: center;
}
.attribution p,
.attribution a {
	font-size: 13px;
}
.attribution a {
	color: #66daf8;
}
.attribution p {
	color: #064273;
	margin-bottom: 0;
}
#footer-navigation {
	/*display: none;*/
}
.footer-menu ul {
    list-style-type: none;
}
.footer-menu {
    font-size: 15px;
    font-weight: bold;
    line-height: 27px;
    text-transform: uppercase;
}
.footer-left {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
}
.footer-logo {
    margin-bottom: 40px;
}

/* sm */
@media (min-width: 768px) {
    .footer-menu {
        font-size: 13px;
        text-align: left;
    }
    .footer-left {
        text-align: left;
    }
}

/* md */
@media (min-width: 992px) {
	
	/* Sticky footer - @link http: //mystrd.at/modern-clean-css-sticky-footer/ */
	html {
		min-height: 100%;
		position: relative;
	}
	body {
		margin: 0 0 194px; /* = .site-footer height */
	}
	.site-footer {
		bottom: 0;
		height: 174px; /* = body margin-bottom */
		left: 0;
		position: absolute; /* replace with position: fixed; to keep footer fixed to bottom of browser - see footer file too! */
		width: 100%;
	}
    .footer-menu {
        font-size: 15px;
    }
}

/* lg */
@media (min-width: 1200px) {
	
}

/*--------------------------------------------------------------
3.8 Custom
--------------------------------------------------------------*/
.leaderboard-image img {
	margin-bottom: 20px;
	width: 100%;
}
.edit-link {
	display: none;
}
iframe {
	border: 0;
}

.leaderboard-image {
	margin-bottom: 10px;
	/*margin-bottom: -125px;
	top: -125px;*/
}

.icon-section {
    font-size: 16px;
    text-align: center;
}
.icon-section img,
.icon-section h2 {
    display: block;
    margin:0 auto;
    text-align: center;
}
.icon-section p {
    margin-bottom: 30px;
}
.icon-section img {
    box-shadow: 0px 1px 4px 0px rgba(20, 44, 29, 0.75);
    margin-bottom: 20px;
}
.icon-section h2 {
    margin-top: 30px;
}

.news-list ul {
    padding-left: 0;
    list-style-type: none;
}
.news-list li {
    margin-bottom: 30px;
}

.proposals-list li {
    color: #064273;
    font-size: 14px;
    font-weight: bold;
    list-style-type: none;
    margin-bottom: 15px;
    padding-left: 1.28571429em;
    text-indent: -1.28571429em;
}
.proposals-list li:before {
    content: "\25B6 \ "; /* caret */
}

.stay-informed {
    border-top: 1px solid #66daf8;
    color: #064273;
    font-size: 14px;
    font-weight: bold;
    margin: 30px 0;
    line-height: 18px;
}
.calendar-bg {
    background: rgba(189,239,252,1);
background: -webkit-linear-gradient(rgba(189,239,252,1) 0%, rgba(189,239,252,1) 24%, rgba(186,238,252,1) 51%, rgba(173,235,251,1) 76%, rgba(159,233,251,1) 100%);
background: -o-linear-gradient(rgba(189,239,252,1) 0%, rgba(189,239,252,1) 24%, rgba(186,238,252,1) 51%, rgba(173,235,251,1) 76%, rgba(159,233,251,1) 100%);
background: linear-gradient(rgba(189,239,252,1) 0%, rgba(189,239,252,1) 24%, rgba(186,238,252,1) 51%, rgba(173,235,251,1) 76%, rgba(159,233,251,1) 100%);
    border: 1px solid #66daf8;
    border-radius: 15px;
    padding: 10px 10px 40px 10px;
}
#ai1ec-container,
.ai1ec-agenda-widget-view .ai1ec-date,
.ai1ec-agenda-view .ai1ec-date,
.ai1ec-calendar-toolbar{
    background: transparent;
    border: none;
}
.home .ai1ec-btn-toolbar,
.home .ai1ec-btn-group > .ai1ec-btn:first-child{
    /*display: none;*/
}

.home .ai1ec-fa-minus-circle,
.home .ai1ec-btn-group .ai1ec-actions,
.home .ai1ec-views-dropdown,
.home .ai1ec-fa-plus-circle,
.home #ai1ec-print-button,
.home #ai1ec-agenda-collapse-all,
.home #ai1ec-agenda-expand-all,
.home #ai1ec-container .ai1ec-read-more {
    display: none !important;
}

.rcp_lost_password {
    display: none;
}

.metaslider {
	/*box-shadow: 0 1px 10px #111;*/
	margin-bottom: 10px;
	/*margin-bottom: -125px;
	top: -125px;*/
}
.theme-default .nivo-caption a {
    border-bottom: none !important;
}

.home .calendar-bg {
    display: block;
    margin: 0 auto !important;
}

/* Hides Nivo Slider caption on cell phones */
.metaslider .theme-default .nivoSlider > .nivo-caption {
	background-color: transparent;
	bottom: 25px;
    color: #fff;
	display: none !important;
    font-size: 48px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
	left: 0;
    line-height: 50px;
	opacity: 1.0;
	padding: 5px 10px;
	position: absolute;
	text-align: center;
    text-shadow: 0px 6px 6px rgba(20, 44, 29, 0.8);
	width: 100%;
}
.metaslider .theme-default .nivoSlider > .nivo-caption h2 {
    color: #fff;
    font-size: 72px;
    font-weight: 600;
    line-height: 74px;
    text-shadow: 0px 6px 6px rgba(20, 44, 29, 0.8);
    text-transform: none;
}
.metaslider .theme-default .nivoSlider > .nivo-caption span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    text-shadow: 0px 3px 3.96px rgba(20, 44, 29, 0.5);
}
.topbutton {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 5px;
    bottom: 45px;
    z-index: 1;
    display: none;
}

.calendar-bg {
    max-width: 392px;
}


.mc-field-group input {
    background: rgba(255,255,255,1);
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(244,252,254,1) 51%, rgba(218,246,253,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(51%, rgba(244,252,254,1)), color-stop(100%, rgba(218,246,253,1)));
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(244,252,254,1) 51%, rgba(218,246,253,1) 100%);
background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(244,252,254,1) 51%, rgba(218,246,253,1) 100%);
background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(244,252,254,1) 51%, rgba(218,246,253,1) 100%);
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(244,252,254,1) 51%, rgba(218,246,253,1) 100%);
    border: 1px solid #66daf8;
    margin-bottom: 10px;
    outline: none;
    width: 150px;
}
#mc-embedded-subscribe {
    margin: 1.5em 0 1em 5%;
}
#mc-embedded-subscribe .button {
    background: rgba(190,239,252,1);
background: -moz-linear-gradient(top, rgba(190,239,252,1) 0%, rgba(183,237,252,1) 51%, rgba(161,232,251,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(190,239,252,1)), color-stop(51%, rgba(183,237,252,1)), color-stop(100%, rgba(161,232,251,1)));
background: -webkit-linear-gradient(top, rgba(190,239,252,1) 0%, rgba(183,237,252,1) 51%, rgba(161,232,251,1) 100%);
background: -o-linear-gradient(top, rgba(190,239,252,1) 0%, rgba(183,237,252,1) 51%, rgba(161,232,251,1) 100%);
background: -ms-linear-gradient(top, rgba(190,239,252,1) 0%, rgba(183,237,252,1) 51%, rgba(161,232,251,1) 100%);
background: linear-gradient(to bottom, rgba(190,239,252,1) 0%, rgba(183,237,252,1) 51%, rgba(161,232,251,1) 100%);
}

.newsletter-blurb {
    margin-bottom: 15px;
}

/* sm */
@media (min-width: 768px) {	
	/* Display Nivo Slider caption on sm/md/lg devices */
	.metaslider .theme-default .nivoSlider > .nivo-caption {
		display: block !important;
	}
    .metaslider .theme-default .nivoSlider > .nivo-caption {
        font-size: 36px;
        line-height: 38px;
    }
    .metaslider .theme-default .nivoSlider > .nivo-caption h2 {
        font-size: 48px;
        line-height: 52px;
    }
    .icon-section {
        text-align: left;
    }
    .topbutton {
        bottom: 25px;
    }
    .icon-section h2 {
        margin-top: 0;
    }
}

/* md */
@media (min-width: 992px) {
     .metaslider .theme-default .nivoSlider > .nivo-caption {
		display: block !important;
	}
    .metaslider .theme-default .nivoSlider > .nivo-caption {
        font-size: 40px;
        line-height: 42px;
    }
    .metaslider .theme-default .nivoSlider > .nivo-caption h2 {
        font-size: 54px;
        line-height: 58px;
    }
    .calendar-bg {
        min-height: 382px;
        max-width: none;
    }
    .news-list {
        height: 375px;
        overflow-y: scroll;
    }
    .ai1ec-calendar-title, .ai1ec-calendar-title-short {
        font-size: 10px;
    }
}

/* lg */
@media (min-width: 1200px) {
	.metaslider .theme-default .nivoSlider > .nivo-caption {
        font-size: 48px;
        line-height: 50px;
    }
    .metaslider .theme-default .nivoSlider > .nivo-caption h2 {
        font-size: 72px;
        line-height: 74px;
    }
    .calendar-bg {
        min-height: 376px;
    }
    .ai1ec-calendar-title, .ai1ec-calendar-title-short {
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
 Borders
--------------------------------------------------------------*/
/* centers paw image vertically and horizontally in front of the yellow border - next 2 rules 
.entry-title::after {
	background: rgba(0, 0, 0, 0) url(images/paw-divider-detail.jpg) no-repeat scroll center 0;
	bottom: -21px;
	content: " ";
	display: inline-block;
	height: 41px;
	left: 50%;
	position: absolute;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 44px;
}
.entry-title {
	border-bottom: 5px solid #e8bd4b;
	line-height: 40px;
	padding-bottom: 25px;
	position: relative;
	text-align: center;
}*/

/* code to center heading and wrap with double or triple stacked lines 
h1 {
	color:	#051125;
	font-family:	Helvetica, Arial, sans-serif;
	font-weight:	400;
}
.line {
	overflow: hidden;
	text-align: center;
}
.line:before {
	margin-left: -50%;
	right: 0.5em;
}
.line:after {
	margin-right: -50%;
	left: 0.5em;
}
.single-line:before,
.single-line:after {
	background-color: #19b9db;
	content: "";
	display: inline-block;
	height: 4px;
	position: relative;
	vertical-align: middle;
	width: 50%;
}
.double-line:before,
.double-line:after {
	border-top: 4px solid #19b9db;
	border-bottom: 4px solid #117f96;
	content: "";
	display: inline-block;
	position: relative;
	vertical-align: middle;
	width: 50%;
}
.triple-line:before,
.triple-line:after {
	background-color:	#094551;
	border-top: 4px solid #19b9db;
	border-bottom: 4px solid #117f96;
	content: "";
	display: inline-block;
	height: 4px;
	position: relative;
	vertical-align: middle;
	width: 50%;
}*/

/*--------------------------------------------------------------
3.9.5 Blog
--------------------------------------------------------------*/
.entry-meta {
	margin-bottom: 20px;
}
.updated {
	display: none;
	}
.attachment-post-thumbnail {
	border: 0 solid #000;
	float: left;
	margin-bottom: 15px;
	margin-right: 20px;
	max-width: 265px;
}
.archive article,
.search article {
	clear: both;
	content: "";
	display: table;
}
a.moretag {
	display: block;
	margin-top: 20px;
	text-decoration: underline;
}
.entry-footer {
	font-size: 13px;
	font-style: italic;
}
.nav-links {
	display: block;
}
.nav-next,
.nav-previous {
	background: #064273;
	border-radius: 3px;
	margin: 10px 0 20px;
	padding: 5px 10px;
}
.nav-next {
	float: right;
}
.nav-previous {
	float: left;
}
.nav-next a,
.nav-previous a {
	color: #fff;
}
.search-form {
	margin-bottom: 20px;
	margin-top: 20px;
}

/* Alternate search bar for blog(need both rules below) */
.search-form input.search-submit {
	background-color: transparent;
	border: 0 solid #064273;
	border-radius: 0;
	color: #064273;
	font-family: FontAwesome;
	font-size: 16px;
	line-height: 25px;
	padding: 2px 10px 4px 10px;
}
input[type="search"] {
	border: 1px solid #064273;
	font-size: 16px;
	line-height: 29px;
	padding: 1px 0 1px 5px;
}

/* This places the "Leave a Reply" & "Comments" headings go below next/prev post instead of next to it */
#reply-title,
#comments {
	clear: both;
}

/* This places the label for the reply field of the comment box above the box instead of next to it */
.comment-form-comment label {
	display: block;
}


/* sm */
@media (min-width: 768px) {
	
}

/* md */
@media (min-width: 992px) {
	
}

/* lg */
@media (min-width: 1200px) {
	
}


/*-------------------------------------------------------
Ninja Form 3.0.5
--------------------------------------------------------*/
.nf-form-title {
	display: none;
}
.nf-form-fields-required {
	/*display:none;*/
	margin-bottom: 15px;
}
.field-wrap .nf-field-label label {
	font-weight: 300;
}

.field-wrap input[type="submit"], 
.field-wrap input[type="button"], 
.field-wrap button {
	background: #064273;
	border: 0;
	border-radius: 3px;
	color: #fff;
	padding: 3px 15px;
}

.field-wrap:hover input[type="submit"], 
.field-wrap:hover input[type="button"], 
.field-wrap:hover button {
	background: #ffba00;
	color: #000;
}
.textarea-wrap textarea {
	max-height: 130px;
}

/* makes the forma have two columns
nf-field {
	display: inline;
	float: left;
	margin-left: 2%;
	width: 48%;
}*/

/*--------------------------------------------------------------
TablePress
---------------------------------------------------------------*/
.entry-content .tablepress {
	border: 1px solid #ddd;
	margin-bottom: 50px;
}
.entry-content .tablepress thead th {
	color: #fff;
	font-weight: 300;
}
.entry-content .tablepress thead th:nth-child(1) {
	background-color: #189dd0;
}
.entry-content .tablepress thead th:nth-child(2) {
	background-color: #17779c;
}
.entry-content .tablepress thead th:nth-child(3) {
	background-color: #189dd0;
}
.entry-content .tablepress thead th:nth-child(4) {
	background-color: #17779c;
}
.entry-content .tablepress thead th:nth-child(5) {
	background-color: #189dd0;
}
.entry-content .tablepress thead th:nth-child(6) {
	background-color: #17779c;
}
.entry-content .tablepress tbody td, 
.entry-content .tablepress tfoot th {
	border-top: 0px solid #ddd;
	font-size: 14px;
}
.entry-content .tablepress tbody td + td {
	border-left: 1px solid #ddd;
}
.entry-content .tablepress caption {
	display: none;
}
.tablepress .even {
    background-color: #86c3db;
    border-bottom: 1px solid #ddd;
}
.tablepress .odd {
    border-bottom: 1px solid #ddd;
}

/*--------------------------------------------------------------
MailChimp
---------------------------------------------------------------*/

/* MailChimp 

#mc_embed_signup {
	border-radius: 10px;
	margin-top: 40px;
	padding: 10px;
	text-align: center;
}
#mc_embed_signup h2 {
	color: #fff;
	margin-bottom: 20px;
	margin-top: 0;
	text-shadow: 1px 1px 4px #000;
}
#mc_embed_signup input#mce-EMAIL {
	border: 0;
	color: #999;
	font-size: 15px;
	padding-left: 10px;
}
#mc_embed_signup input#mc-embedded-subscribe {
	background: #263e4f;
	border: 0;
	color: #fff;
	font-size: 15px;
	padding: 1px 9px 2px;
}*/

/* sm */
@media (min-width: 768px) {
	
}

/* md */
@media (min-width: 992px) {
	
}

/* lg */
@media (min-width: 1200px) {
	
}

/*--------------------------------------------------------------
thickbox NextCellent gallery
---------------------------------------------------------------
#TB_caption {
	float: none !important;
}
#TB_next {
	float: right;
}
.tb-close-icon {
	background-color: #FFF;
	border-radius: 50px;
	border: 1px solid #CCC;
}
#TB_closeWindowButton {
	top: 0;
}
*/

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

/*--------------------------------------------------------------
4.1 xs
--------------------------------------------------------------*/
/* Extra Small - phones */

/*--------------------------------------------------------------
4.2 sm
--------------------------------------------------------------*/
@media (min-width: 768px) {

}

/*--------------------------------------------------------------
4.3 md
--------------------------------------------------------------*/
@media (min-width: 992px) {
	
}

/*--------------------------------------------------------------
4.4 lg
--------------------------------------------------------------*/
@media (min-width: 1200px) {

/* this makes the header fixed on desktop only add to 992 or 1200 media query
.site-header {
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1030;
}
body {
	padding-top: 184px;
}
*/

/* this makes the home sections link to services page without going underneath the fixed header on desktop only 
h2: before {	
	content: "";
	display: block;	
	height: 184px; 
	margin-top: -184px;
	visibility: hidden; 
}*/

}
