/*
Theme Name: ANCS Sixteen
Theme URI: http://atlncs.org/
Description: A WordPress theme for the ANCS site
Version: 1.0
Author: Biscuit Studios
Author URI: http://biscuitstudios.com/
Tags: custom header, responsive, custom-menu, translation-ready
*/

/*-------------------------------------------------------------------------*/

/* COLORS & FONTS */

/*-------------------------------------------------------------------------*/

/* blue = #385988 */
/* light blue = #3971AA*/
/* green = #7AAB65 */
/* aqua = #3EA8B8 */
/* orange = #CF7046 */

/* black font = #4A4A4A */
/* gray font = #525252 */
/* light blue font = #3498DB */

/* font-family: 'Roboto', Helvetica, Arial, sans-serif; (300, 500, 700) */
/* font-family: 'Roboto Condensed', sans-serif; (300) */
/* font-family: 'Patua One', cursive; (300) */

/*-------------------------------------------------------------------------*/

/* GLOBAL ELEMENTS */

/*-------------------------------------------------------------------------*/

html {
    position: relative;
    min-height: 100%;
}
body {
	background-color: #FFF;
	font: 300 16px/180% 'Roboto', Helvetica, Arial, sans-serif;
	color: #525252;
}
header, a, img, li{
    transition: all 0.3s ease;
}
a {
	color: #3498DB;
	border-bottom: none;
	text-decoration: none;
}
a:hover {
	color: #222;
	border-bottom: 1px solid #222;
	text-decoration: none;
}
a:active,
a:focus {
	color: #222;
	border-bottom: 1px solid #222;
	text-decoration: none;
}
a.no-border {
	border-bottom: none;
}
a:hover.no-border {
	border-bottom: none;
	filter: alpha(opacity=60);
    opacity: 0.6;
}
p {
	margin: 0 0 24px 0;
}
ul, ol {
	margin: 0 0 24px 0;
}
li {
	line-height: 156%;
	margin: 0 0 8px 0;
}
ol {
	list-style-type: decimal;
}
ol li {
	line-height: 156%;
	margin: 0 0 8px 6px;
    padding-left: 6px;
}
ol ol {
	list-style: disc;
}
ol ol ol {
	list-style: lower-roman;
}
ol ol ol ol {
	list-style: lower-alpha;
}
strong, b {
    font-weight: 700;
}
em, i {
	font-style: italic;
}
address {
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 300;
	line-height: 120%;
}
blockquote {
	clear: both;
	color: #525252;
	background-color: #f4f4f4;
	font-size: 22px;
	text-shadow: 0 2px 3px rgba(255, 255, 255, 0.50);
	border-left: none;
	padding: 20px 30px;
	margin: 0 0 24px 0;
	overflow: hidden;
}
hr {
	clear: both;
	background-color: #E2E2E2;
	border: 0;
	height: 1px;
	margin: 40px 0;
}
embed,
object,
iframe,
video {
	max-width: 100%;
	margin-bottom: 24px;
}
img, a img {
	border: none;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
.lowercase {
	text-transform: lowercase;
}
.uppercase {
	text-transform: uppercase;
}
.blue {
	color: #385988 !important;
}
.light-blue {
	color: #3971AA !important;
}
.green {
	color: #7AAB65 !important;
}
.aqua {
	color: #3EA8B8 !important;
}
.orange {
	color: #CF7046 !important;
}

/*-------------------------------------------------------------------------*/

/* STRUCTURE */

/*-------------------------------------------------------------------------*/

.content-wrapper {
	padding-top: 0;
}
@media (max-width: 992px) {
	.content-wrapper {
		padding-top: 0;
	}
}
#content {
	clear: both;
	background-color: #FFFFFF;
}
.container-wrapper {
	padding-top: 60px;
    padding-bottom: 80px;
}
footer {
    clear: both;
    background: #385988 url(images/bg_footer.jpg) no-repeat 100% 100%;
    background-size: cover;
    width: 100%;
}

#signup-content {
    padding: 220px 60px 120px 60px;
}

/*-------------------------------------------------------------------------*/

/* HEADER */

/*-------------------------------------------------------------------------*/

.navbar-fixed-top {
    background-color: transparent;
    background-image: linear-gradient(-180deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.20) 50%, rgba(0,0,0,0.00) 100%);
	border: none;
    transition: all 0.3s ease;
}
.navbar-fixed-top a {
	border-bottom: none;
}
.navbar-fixed-top a:hover {
	border-bottom: none;
}
.navbar-default {
	background-color: transparent;
	border: none;
}
.navbar {
	border-radius: 0;
	margin-bottom: 0;
	border: none;
}
.navbar-fixed-top .logo h1 {
	font-size: 24px;
	line-height: 100%;
	margin: 0;
}
.navbar-fixed-top .logo > a {
    display: block;
	height: 161px;
	margin: 25px 0 35px 15px;
    z-index: 1001;
}
.navbar-fixed-top .logo > a img {
    max-height: 100%;
}

/* --- SMALL NAV BAR --- */

.navbar-fixed-top.small {
    background: #385988 url(images/bg_nav.png) no-repeat 100% 100%;
    background-size: cover;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.35);
}
.navbar-fixed-top.small .logo h1 {
	line-height: 30px;
	margin: 0;
}
.navbar-fixed-top.small .logo > a {
	height: 100px;
	margin: 15px 0 15px 15px;
}

@media (max-width: 992px) {
    .navbar-fixed-top,
    .navbar-fixed-top.small {
		position: relative !important;
        background-color: #385988;
        background-image: none;
        background: #385988 url(images/bg_nav.png) no-repeat 100% 100%;
        background-size: cover;
        box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.35);
		height: auto !important;
	}
    .navbar-fixed-top .logo > a,
    .navbar-fixed-top.small .logo a {
        height: 100px;
    	margin: 10px 0 10px 0;
	}
	.navbar-fixed-top .mobile-menu-toggle {
		display: block;
	}
}

/* --- MOBILE TOGGLE ICON --- */

.mobile-menu-toggle {
	height: 100%;
	display: none;
	cursor: pointer;
}
.mobile-menu-toggle span {
	display: block;
	background-color: transparent;
	border: none;
	float: right;
	font-size: 32px;
	line-height: 100%;
	text-align: center;
	border-radius: 4px;
	margin: 41px 0 0 20px;
}
.mobile-menu-toggle span.btn-mobile {
	margin-top: 33px;
}
.mobile-menu-toggle .glyphicon {
	/* icon in toggle */
	color: #FFF;
}

/*-------------------------------------------------------------------------*/

/* MAIN MENU */

/*-------------------------------------------------------------------------*/

/* --- MENU BASICS --- */

.sf-menu,
.sf-menu * {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}
.sf-menu li {
	position: relative;
	line-height: 100%;
    transition: all 0.3s;
}
.sf-menu > li {
	float: left;
}
.sf-menu a {
	display: block;
	position: relative;
}
.sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	right: 0;
	z-index: 1000;
}

/* --- MAIN MENU STYLES --- */

.sf-menu {
	float: right;
	margin: 5px 5px 0 0;
}
.sf-menu ul {
	background-color: #FFF;
	min-width: 200px;
}
.sf-menu li {
	font-family: 'Roboto Condensed', sans-serif;
    white-space: nowrap;
	margin: 0 3px;
}
.sf-menu li:hover,
.sf-menu li.sfHover {
	background-color: #FFF;
	border-radius: 4px;
	box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.35);
	transition: all 0.3s ease;
}
.sf-menu li.menu-item-has-children:hover {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.sf-menu li:hover > a,
.sf-menu li.sfHover > a {
	color: #385988;
	text-decoration: none;
}
.sf-menu .current-menu-item > a,
.sf-menu .current-menu-ancestor > a,
.sf-menu .current_page_item > a,
.sf-menu .current_page_ancestor > a {
	color: #424242;
	background-color: #F8F8F8;
	text-decoration: none;
}
.sf-menu li a {
	color: #FFF;
    background: rgba(255,255,255,0.20);
    box-shadow: 0px 2px 12px 0px rgba(0,0,0,0.20);
    border-radius: 4px;
    font-size: 18px;
	font-weight: 300;
    line-height: 100%;
	text-decoration: none;
	padding: 10px 12px;
}
.sf-menu li a:after {
	margin-right: 4px;
}

/* --- SECONDARY MENU STYLES --- */

.secondary-menu .sf-menu {
	margin: 25px 30px 0 0;
}
.secondary-menu .sf-menu li:hover,
.secondary-menu .sf-menu li.sfHover {
	background-color: #FFF;
	border-radius: 4px;
	box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.35);
	transition: all 0.3s ease;
}
.secondary-menu .sf-menu li.menu-item-has-children:hover {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.secondary-menu .sf-menu li:hover > a,
.secondary-menu .sf-menu li.sfHover > a {
	color: #385988;
	text-decoration: none;
}
.secondary-menu .sf-menu .current-menu-item > a,
.secondary-menu .sf-menu .current-menu-ancestor > a,
.secondary-menu .sf-menu .current_page_item > a,
.secondary-menu .sf-menu .current_page_ancestor > a {
	color: #424242;
	background-color: #F8F8F8;
	text-decoration: none;
}
.secondary-menu .sf-menu li a {
	color: #EEE;
    background: transparent;
    box-shadow: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
	text-decoration: none;
    text-transform: uppercase;
	padding: 10px 6px;
    cursor: pointer;
}
.secondary-menu .sf-menu li a:after {
	margin-right: 4px;
}
.secondary-menu .sf-menu li.nav-green {
    color: #FFF;
    background: #7AAB65;
    box-shadow: none;
    border-radius: 4px;
    font-weight: 300;
}
.secondary-menu .sf-menu li.nav-green a:hover {
    color: #FFF;
}
.secondary-menu li.nav-text {
    color: #EEE;
    background: transparent;
    box-shadow: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
	text-decoration: none;
    text-transform: uppercase;
    padding: 10px 6px;
}
.secondary-menu li.nav-text:hover {
	background-color: transparent;
	border-radius: 0;
	box-shadow: none;
	transition: all 0.3s ease;
}
.secondary-menu li.nav-icon a {
    margin: -3px 0 0 0;
    padding: 10px 0;
    cursor: pointer;
}
.secondary-menu li.nav-icon:hover {
	color: #FFF;
    background-color: transparent;
    box-shadow: none;
    opacity: 0.6;
}

/* --- MEGAMENUS --- */

.sf-menu .cs-mega-menu {
	position: inherit;
}
.sf-menu .cs-mega-menu > ul {
    left: 0;
	box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.35);
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
    width: 100%;
}
.sf-menu .cs-mega-menu > ul > li {
    float: left;
    margin: 15px 0;
	padding: 0;
}
.sf-menu .cs-mega-menu ul li:hover {
	transition: all 0.3s ease;
	box-shadow: none;
}
.sf-menu .cs-mega-menu > ul > li .cs-title {
	color: #222;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    background: transparent;
    box-shadow: none;
    border-radius: none;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0 5px;
	padding: 6px 12px;
	border: none;
	white-space: normal;
}
.sf-menu .cs-mega-menu > ul > li .cs-title:hover {
	color: inherit;
}
.sf-menu .cs-mega-menu > ul > li .cs-title:after {
	display: none;
}
.sf-menu .cs-mega-menu > ul > li ul {
    background-color: transparent;
    clear: both;
	display: block !important;
	position: relative !important;
	left: 0 !important;
	filter: alpha(opacity=100);
    opacity: 1 !important;
	width: 100%;
	box-shadow: none;
}
.sf-menu ul li ul li .cs-link,
.sf-menu ul li ul li .glink {
    color: #6A6A6A;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: 300;
    background: transparent;
    box-shadow: none;
    border-radius: none;
	border-radius: 4px;
	line-height: 110%;
	text-decoration: none;
	text-transform: none;
    margin: 0 5px;
	padding: 6px 10px;
	white-space: normal;
}
.sf-menu ul li ul li .cs-link:hover,
.sf-menu ul li ul li .glink:hover {
	color: #FFF;
	background-color: #3971AA;
	border: none;
	text-decoration: none;
    box-shadow: none;
}
/*.sf-menu > ul > li > .cs-link {
	display: block;
	position: relative;
	padding-left: 10px;
	padding-right: 10px;
	color: #333;
}
.sf-menu > ul > li > .cs-link:hover {
	color: #B47423;
	text-decoration: none;
}
.sf-menu > ul > li:last-child > .cs-link {
	padding-right: 0;
}
.sf-menu > ul > li > ul {
	border-top: 2px solid #B47423;
	margin-top: -2px;
}*/
.sf-menu > ul > li > ul > li:first-child > .cs-link {
	border-top: none;
}
.sf-menu .cs-mega-menu p {
	display: block;
	font-size: 11px;
	line-height: 150%;
	margin: 5px 8px 16px 8px;
	white-space: normal;
}
.sf-menu .cs-mega-menu p a {
	position: inherit;
	display: inline;
	color: #B47423;
	font-size: 11px;
	font-weight: 600;
	line-height: 150%;
	text-transform: uppercase;
	white-space: nowrap;
	padding: 0;
}
.sf-menu .cs-mega-menu p a:hover {
	text-decoration: underline;
}
.sf-menu .cs-mega-menu .cs-image {
	border-radius: 4px;
	margin: 0 0 -5px 0;
	padding: 12px 10px;
}
.sf-menu .cs-mega-menu a .cs-image {
	border-radius: 4px;
	margin: 0 0 -5px 0;
	padding: 0;
}

/* --- MEGA COLUMNS --- */
/* --- adjust column widths depending on the theme's needs --- */

.sf-menu .cs-col-2 > ul {
	width: 480px;
}
.sf-menu .cs-col-3 > ul {
	width: 680px;
}
.sf-menu .cs-col-4 > ul {
	width: 650px;
}
.sf-menu .cs-col-5 > ul {
	width: 500px;
}
.sf-menu .cs-col-6 > ul {
	width: 600px;
}
.sf-menu .cs-right > ul {
	left: auto !important;
	right: 0;
}

/* --- unused label and description styles --- */
/*
.sf-menu .cs-label {
  position: relative;
  top: -5px;
  left: 3px;
  padding: 1px 4px;
  font-size: 9px;
  text-transform: uppercase;
}
.sf-menu .cs-column-title {
	cursor: inherit;
}
.sf-menu .cs-content {
	display: block;
	font-size: 11px;
	padding-top: 5px;
	opacity: 0.7;
}
.sf-menu .cs-full-content {
	margin: 10px;
}
/*
.sf-menu .current-menu-ancestor > .cs-link,
.sf-menu .current-menu-item > .cs-link {
	color: #930;
}
*/

/* --- MOBILE MENU --- */

.mobile-menu {
	clear: both;
	display: none;
    background-color: transparent;
	padding: 0 17px;
}
.mobile-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mobile-menu ul li {
	border-bottom: 1px solid #304d75;
	margin: 0;
}
.mobile-menu ul li:first-child {
	border-top: 1px solid #304d75;
}
.mobile-menu ul li span {
	float: right;
	margin-top: 6px;
	margin-right: 20px;
	font-weight: 300;
	font-size: 15px;
	line-height: 1;
}
.mobile-menu ul li a,
.small .mobile-menu ul li a {
	display: block;
	color: #D2D2D2;
	padding: 12px;
	font-size: 16px;
	font-weight: 300;
    line-height: 150%;
	text-decoration: none;
	transition: all 0.4s ease-in-out;
}
.mobile-menu ul li a:hover {
	text-decoration: none;
}
.mobile-menu ul li a.active {
	color: #FFF;
}
.mobile-menu ul li a.active span {
	color: #FFF;
}
.mobile-menu ul .sub-menu {
	display: none;
}
.mobile-menu ul .sub-menu li {
	border-top: 1px solid #304d75;
	border-bottom: 0;
}
.mobile-menu ul .sub-menu li a {
    padding-left: 32px;
    text-transform: none;
    font-size: 14px;
    font-weight: 300;
}
.mobile-menu ul .sub-menu li li a {
    padding-left: 52px;
    text-transform: none;
    font-size: 14px;
    font-weight: 300;
}

/*-------------------------------------------------------------------------*/

/* QUICK LINKS */

/*-------------------------------------------------------------------------*/

/*.quick-links {
	position: absolute;
	color: #FFF;
	font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
	top: 17px;
	right: 35px;
	z-index: 1000;
}
.quick-links a {
	color: #FFF;
    margin: 0;
    padding: 8px;
}
.quick-links a:hover {
    color: #FFF;
    background: rgba(255,255,255,0.50);
    box-shadow: none;
    border-radius: 4px;
}
.quick-links a.btn-green {
    font-weight: 300;
    line-height: 120%;
    margin-top: -2px;
    padding: 8px;
}
.quick-links a.nav-icon {
    padding: 0;
}
.quick-links a.nav-icon img {
    position: relative;
    margin: -4px 0 0 5px;
    padding: 0;
    vertical-align: middle;
}
.quick-links a.nav-icon:hover {
	background: transparent;
    opacity: 0.7;
}*/

/*-------------------------------------------------------------------------*/

/* HEADER SEARCH ICON */

/*-------------------------------------------------------------------------*/

a.searchlink {
	font-size: 20px;
    margin: 0 0 0 5px;
    padding: 0;
    vertical-align: middle;
    cursor: pointer;
}
a.searchlink:hover {
	background: transparent;
    opacity: 0.7;
}

/*-------------------------------------------------------------------------*/

/* MODAL SEARCH */

/*-------------------------------------------------------------------------*/

.modalsearch-form {
    position: relative;
	height: 160px;
	margin: 0 auto;
	width: 100%;
}
.modalsearch-input {
	width: 100%;
	height: 100%;
	padding: 0 10% 0 10px;
	font-weight: 700;
	border: none;
    border-radius: 4px;
	background: #3971AA;
    background: rgba(255, 255, 255, 0.20);
	font-size: 5em;
    color: #FFF;
}
.modalsearch-input::-ms-clear { /* remove cross in IE */
    display: none;
}
/* placeholder */
.modalsearch-input::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.60);
}
.modalsearch-input:-moz-placeholder {
	color: rgba(255, 255, 255, 0.60);
}
.modalsearch-input::-moz-placeholder {
	color: rgba(255, 255, 255, 0.60);
}
.modalsearch-input:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.60);
}
/* hide placeholder when active in Chrome */
.gn-search:focus::-webkit-input-placeholder {
	color: transparent;
}
.modalsearch-input:focus,
.modalsearch-submit:focus {
	outline: none;
}
.modalsearch-submit {
	position: absolute;
	width: 60px;
	height: 60px;
	text-indent: 100px;
	overflow: hidden;
	right: 15px;
	top: 15px;
	background: transparent url(images/magnifier.svg) no-repeat center center;
	background-size: 100%;
	border: none;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.modalsearch-submit:hover {
    opacity: 1.0;
}

@media (max-width: 992px) {
    .modalsearch-form {
    	height: 80px;
    	margin: 17px auto;
        overflow: hidden;
    }
    .modalsearch-input {
    	padding: 20px 10% 20px 12px;
    	font-weight: 400;
    	background: #304d75;
    	font-size: 24px;
    }
    .modalsearch-submit {
    	width: 30px;
    	height: 30px;
    	right: 15px;
    	top: 20px;
    }
}

/*-------------------------------------------------------------------------*/

/* SECTION MENUS */

/*-------------------------------------------------------------------------*/

.section-menu {
    position: fixed;
    bottom: 0;
    background-color: #FFF;
    border-top: 1px solid #E5E5E5;
	padding-top: 36px;
	padding-bottom: 10px;
    width: 100%;
    z-index: 9000;
}
.section-menu ul {
	list-style: none;
    text-align: center;
	margin: 0 auto;
	padding: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.section-menu li {
	float: left;
    font-size: 12px;
    text-align: center;
    line-height: 100%;
    text-transform: uppercase;
    margin: 0 2px 26px 2px !important;
    white-space: nowrap;
}
.section-menu li a {
	color: #FFF;
    font: 700 13px/100% 'Open Sans', Helvetica, Arial, sans-serif;
    border: none;
    border-radius: 4px;
	background-color: #385988;
	text-decoration: none;
    padding: 10px 10px;
	white-space: nowrap;
}
.section-menu li a:hover {
	color: #FFF;
	background-color: #222;
}
.section-menu span {
	float: left;
	color: #4A4A4A;
	font-size: 14px;
    font-weight: 700;
	text-transform: uppercase;
	padding: 14px 10px 13px 0;
}

/*-------------------------------------------------------------------------*/

/* HEADING TAGS */

/*-------------------------------------------------------------------------*/

h1 {
	/* page title */
	clear: both;
    color: #4A4A4A;
    font-family: 'Patua One', cursive;
    font-size: 52px;
	font-weight: normal;
	line-height: 100%;
	margin: 0 0 30px 0;
	padding: 0;
}
@media (max-width: 767px) {
	h1 {
		font-size: 42px;
	}
}
h2 {
	/* post titles */
	clear: both;
    color: #4A4A4A;
    font-family: 'Patua One', cursive;
    font-size: 40px;
	font-weight: normal;
	line-height: 120%;
	margin: 0 0 24px 0;
	padding: 0;
}
@media (max-width: 767px) {
	h2 {
		font-size: 36px;
	}
}
h3 {
	/* paragraph title  - with no spacing below */
	clear: both;
    color: #4A4A4A;
    font-size: 28px;
	font-weight: 300;
	line-height: 130%;
	margin: 0 0 24px 0;
	padding: 0;
}
h4 {
	/* paragraph title - with spacing below */
	clear: both;
    color: #4A4A4A;
    font-size: 28px;
	font-weight: 300;
	line-height: 130%;
	margin: 0;
	padding: 0;
}
@media (max-width: 767px) {
	h3, h4 {
		font-size: 24px;
	}
}
h5 {
	/* smaller title  - with no spacing below */
	clear: both;
    color: #4A4A4A;
	font-size: 22px;
	font-weight: 300;
	line-height: 160%;
	margin: 0 0 24px 0;
	padding: 0;
}
h6 {
	/* smaller title  - with no spacing below */
	cclear: both;
    color: #4A4A4A;
	font-size: 22px;
	font-weight: 300;
	line-height: 160%;
	margin: 0;
	padding: 0;
}
h1 a, h2 a, h3 a, h4 a {
	color: #4A4A4A;
	border-bottom: none;
}
h1 a:hover, h2 a:hover {
	color: #4A4A4A;
	border-bottom: 1px solid #d2d2d2;
}

/*-------------------------------------------------------------------------*/

/* HEADER IMAGE  */

/*-------------------------------------------------------------------------*/

#header-image {
	clear: both;
	background-color: #000 !important;
	text-align: center;
	width: 100%;
	height: 380px;
}
#header-image:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em; /* Adjusts for spacing */
}
.entry-header {
	display: inline-block;
	vertical-align: middle;
	max-width: 1170px;
}
.entry-header h1,
.entry-header span {
	color: #FFF;
	font-size: 52px;
	font-weight: 300;
	line-height: 100%;
	margin: 0;
	padding: 20px 15px 0 15px;
}
.entry-header a,
.entry-header a:hover {
	border-bottom: 0;
}
#header-image img {
	filter: alpha(opacity=60);
	opacity: 0.6;
}
@media (max-width: 992px) {
	#header-image {
		height: 280px;
	}
	.entry-header h1,
	.entry-header span {
		font-size: 40px;
	}
}

/*-------------------------------------------------------------------------*/

/* SECTION BACKGROUNDS  */

/*-------------------------------------------------------------------------*/

.white-bg {
	background-color: #FFF;
	padding-top: 80px;
	padding-bottom: 80px;
}
.white-bg-top {
	background-color: #FFF;
	padding-top: 80px;
	padding-bottom: 0;
}
.white-bg-bottom {
	background-color: #FFF;
	padding-top: 0;
	padding-bottom: 80px;
}
.white-bg .video-wrapper,
.white-bg-top .video-wrapper,
.white-bg-bottom .video-wrapper  {
	background-color: #F6F6F6;
	border-radius: 4px;
	padding: 8px;
}
.gray-bg {
	background-color: #F2F2F2;
	padding-top: 80px;
	padding-bottom: 80px;
}
.gray-bg-top {
	background-color: #F2F2F2;
	padding-top: 80px;
	padding-bottom: 0;
}
.gray-bg-bottom {
	background-color: #F2F2F2;
	padding-top: 0;
	padding-bottom: 80px;
}
.gray-bg .video-wrapper,
.gray-bg-top .video-wrapper,
.gray-bg-bottom .video-wrapper {
	background-color: #FFF;
	border-radius: 4px;
	padding: 8px;
}
.blue-bg,
.light-blue-bg,
.green-bg,
.aqua-bg,
.orange-bg {
	color: #FFF;
    font-weight: 300;
    padding-top: 80px;
	padding-bottom: 80px;
}
.blue-bg a,
.light-blue-bg a,
.green-bg a,
.aqua-bg a,
.orange-bg a {
	color: #FFF;
    border-bottom: 1px solid #FFF;
}
.blue-bg {
	background-color: #385988;
}
.light-blue-bg {
	background-color: #3971AA;
}
.green-bg {
	background-color: #7AAB65;
}
.aqua-bg {
	background-color: #3EA8B8;
}
.orange-bg {
	background-color: #CF7046;
}
.blue-bg h1, .blue-bg h2, .blue-bg h3, .blue-bg h4, .blue-bg h5, .blue-bg h6,
.blue-bg h1 a, .blue-bg h2 a, .blue-bg h3 a, .blue-bg h4 a, .blue-bg h5 a, .blue-bg h6 a,
.light-blue-bg h1, .light-blue-bg h2, .light-blue-bg h3, .light-blue-bg h4, .light-blue-bg h5, .light-blue-bg h6,
.light-blue-bg h1 a, .light-blue-bg h2 a, .light-blue-bg h3 a, .light-blue-bg h4 a, .light-blue-bg h5 a, .light-blue-bg h6 a,
.green-bg h1, .green-bg h2, .green-bg h3, .green-bg h4, .green-bg h5, .green-bg h6,
.green-bg h1 a, .green-bg h2 a, .green-bg h3 a, .green-bg h4 a, .green-bg h5 a, .green-bg h6 a,
.aqua-bg h1, .aqua-bg h2, .aqua-bg h3, .aqua-bg h4, .aqua-bg h5, .aqua-bg h6,
.aqua-bg h1 a, .aqua-bg h2 a, .aqua-bg h3 a, .aqua-bg h4 a, .aqua-bg h5 a, .aqua-bg h6 a,
.orange-bg h1, .orange-bg h2, .orange-bg h3, .orange-bg h4, .orange-bg h5, .orange-bg h6,
.orange-bg h1 a, .orange-bg h2 a, .orange-bg h3 a, .orange-bg h4 a, .orange-bg h5 a, .orange-bg h6 a {
	color: #FFF;
}
.blue-bg .video-wrapper,
.light-blue-bg .video-wrapper,
.green-bg .video-wrapper,
.aqua-bg .video-wrapper,
.orange-bg .video-wrapper {
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 4px;
	padding: 8px;
}

/*-------------------------------------------------------------------------*/

/* CALLOUTS  */

/*-------------------------------------------------------------------------*/

.callout {
	text-align: center;
}
.callout p {
	font-size: 30px;
	line-height: 150%;
}
@media (max-width: 767px) {
	.callout p {
		font-size: 24px;
	}
}

/*-------------------------------------------------------------------------*/

/* QUOTE  */

/*-------------------------------------------------------------------------*/

.quote {
    background: url(images/icon_blockquote.png) no-repeat center -10px / 58px 58px;
    font-size: 16px;
    text-align: center;
	border-top: 1px solid #D5D5D5;
	border-bottom: 1px solid #D5D5D5;
	margin-top: 0;
	padding-top: 70px;
	padding-bottom: 70px;
	overflow: visible !important;
}
.quote p {
	font-size: 22px;
    font-weight: 300;
    line-height: 160%;
	margin-bottom: 6px;
}
.quote span {
    font-size: 16px;
}

/*-------------------------------------------------------------------------*/

/* FULL WIDTH IMAGE WITH TEXT */

/*-------------------------------------------------------------------------*/

.full-width-text {
    position: relative;
}
.full-width-text h1,
.full-width-text h2,
.full-width-text h3,
.full-width-text h4,
.full-width-text h5,
.full-width-text h6 {
	color: #FFF;
	border-bottom: none;
    margin-bottom: 8px;
}
.full-width-text .details-bg {
    position: absolute;
    background: rgba(0, 0, 0, 0.50);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.full-width-text .details {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #FFF;
    font-size: 36px;
	font-weight: 300;
	line-height: 140%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: hidden;
    max-width: 1080px;
}

/*-------------------------------------------------------------------------*/

/* MAIN COLUMN */

/*-------------------------------------------------------------------------*/

/* --- ONE COLUMN --- */

/*.one-column { }*/

/* --- TWO COLUMN LIST --- */

#two-column-list .one-column {
	padding-bottom: 30px;
}
#two-column-list p {
	margin: 0 0 36px 0;
}

/* --- ADD SPACE TO COLUMNS ABOVE --- */

.copy-left {
	padding-right: 40px;
}
.copy-right {
	padding-left: 40px;
}
@media (max-width: 992px) {
	.copy-left,
    .copy-right {
		padding-left: 0;
		padding-right: 0;
	}
}
.copy ul, .copy ol {
	margin: 0;
}
.copy-block-left,
.copy-block-right {
    padding-left: 80px;
    padding-right: 80px;
}
@media (max-width: 992px) {
    .copy-block-left,
    .copy-block-right {
		padding-left: 30px;
		padding-right: 30px;
	}
}
.copy-image-left,
.copy-image-right {
    /*margin-top: 40px;
    margin-bottom: 40px;*/
    min-height: 320px;
}

/* --- 2 COLUMN CONTENT LIKE BLOG --- */

.entry-content {
	padding-right: 70px;
}
/*
.entry-content .post-line {
	padding-top: 40px;
}
*/
@media (max-width: 992px) {
	.entry-content {
		padding-right: 0;
	}
}

/* --- BOOTSTRAP VIDEO IFRAMES --- */

.embed-responsive {
	margin-bottom: 24px;
}
.wp-video {
	margin-bottom: 24px;
}

/* --- FIXES ANCHORS FALLING BEHIND STICKY NAV BAR --- */

/*
#content a.anchor {
	position: relative;
	top: -140px;
	display: block;
}
*/

/*-------------------------------------------------------------------------*/

/* FAQS */

/*-------------------------------------------------------------------------*/

.faq h4 {
    margin-top: 60px;
    margin-bottom: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #E2E2E2;
}
.faqs-accordion .accordion-toggle:after,
.faqs-accordion .accordion-toggle:after {
    /* symbol for "opening" panels */
    font-family: 'Glyphicons Halflings';
    font-size: 12px;
    content: "\e259";
    text-transform: uppercase;
    position: relative;
    float: right;
    color: #929292;
}
.faqs-accordion.active .accordion-toggle:after,
.faqs-accordion.active .accordion-toggle:after {
    /* symbol for "collapsed" panels */
    content: "\e014";
}
.faq-question {
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #E2E2E2;
}
.faq-question a {
    border-bottom: none;
    font-size: 20px;
    padding-top: 8px;
    cursor: pointer;
}
.faq-question p a {
    font-size: 17px;
}

/*-------------------------------------------------------------------------*/

/* TESTIMONIALS */

/*-------------------------------------------------------------------------*/

.testimonials {
	background-color: #F2F2F2;
    font-size: 14px;
    font-weight: 300;
	text-align: center;
	padding-right: 0;
	padding-left: 0;
}
.testimonial-callout {
    position: relative;
    background-image: url(images/bg_grow_fund.png);
    background-repeat: no-repeat;
    background-position: center center;
    height: 420px;
}
.testimonial-callout .details {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #FFF;
    font-size: 22px;
	font-weight: 300;
	line-height: 140%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: hidden;
    width: 100%;
}
.testimonial-callout h2 {
    font-size: 42px;
}
.testimonial-callout p {
    margin-bottom: 12px;
}
.testimonial-carousel {
    padding: 48px 70px 0 70px;
}
@media (max-width: 767px) {
    .testimonial-carousel {
        padding: 48px 70px 60px 70px;
    }
}
.testimonials-image {
    margin: 0 auto 18px auto;
    width: 100px;
    height: 100px;
}
.testimonials-image img {
    border-radius: 50%;
    filter: alpha(opacity=100);
	opacity: 1.0;
}
p.testimonials-title {
    font-size: 22px;
    line-height: 120%;
    margin-bottom: 2px;
}
p.testimonials-job {
    font-size: 13px;
    margin-bottom: 12px;
    text-transform: uppercase;
    margin-left: -5px;
    margin-right: -5px;
}
.testimonials-excerpt p {
    color: #66665D;
    font-size: 13px;
    line-height: 160%;
    margin-bottom: 0;
}

/* --- OWL CAROUSEL - CORE CSS --- */

.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	/* position relative and z-index fix webkit rendering fonts issue */
	position: relative;
	z-index: 1;
}
.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	/* fix for flashing background */
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.owl-carousel.owl-loaded {
	display: block;
}
.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}
.owl-carousel.owl-hidden {
	opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
	display: none;
}
.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.owl-carousel .owl-item img {
	display: block;
	width: 100%;
	-webkit-transform-style: preserve-3d;
}
.owl-carousel .item img:hover {
	opacity: 0.80 !important;
	transition: all 0.3s ease !important;
}
.owl-carousel.owl-text-select-on .owl-item {
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}
.owl-carousel .owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}
.owl-carousel.owl-rtl {
	direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
	float: right;
}
/* No Js */
.no-js .owl-carousel {
	display: block;
}

/* --- OWL CAROUSEL - AGNES THEME --- */

.owl-theme .owl-controls {
	margin-top: 10px;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}
.owl-nav {
	display: none;
}
/*
.owl-theme .owl-controls .owl-nav [class*=owl-] {
	color:#fff;
	font-size:14px;
	margin:5px;
	padding:4px 7px;
	background:#d6d6d6;
	display:inline-block;
	cursor:pointer;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
}
.owl-theme .owl-controls .owl-nav [class*=owl-]:hover {
	background:#869791;
	color:#fff;
	text-decoration:none;
}
.owl-theme .owl-controls .owl-nav .disabled {
	opacity:.5;
	cursor:default;
}
*/
.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
	*display: inline;
}
.owl-theme .owl-dots .owl-dot span {
	width: 16px;
	height: 16px;
	margin: 0 3px;
	background: #E2E2E2;
	display: block;
	-webkit-backface-visibility:visible;
	-webkit-transition:opacity 200ms ease;
	-moz-transition:opacity 200ms ease;
	-ms-transition:opacity 200ms ease;
	-o-transition:opacity 200ms ease;
	transition:opacity 200ms ease;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: #4A4A4A;
}

/*-------------------------------------------------------------------------*/

/* MISC */

/*-------------------------------------------------------------------------*/

/* --- ADD SPACE TO PARTNER LOGOS --- */

.partner-logo {
	margin: 0 20px 60px 20px;
	max-height: 160px;
	vertical-align: middle;
}

/*-------------------------------------------------------------------------*/

/* BLOG & POST LISTING PAGES */

/*-------------------------------------------------------------------------*/

/* --- POSTS --- */

h3.post-title {
	clear: both;
	font-size: 27px;
	font-weight: 300;
	margin: 0 0 8px 0;
	padding: 0;
}
@media (max-width: 767px) {
    h3.post-title {
    	font-size: 22px;
    }
}
h3.post-title a {
	color: #4A4A4A;
}
h3.post-title a:hover {
	color: #4A4A4A;
}
.post-listings h6 {
	font-size: 20px;
	margin: -12px 0 12px 0;
}
.post-listings .video-wrapper {
	background-color: #F2F2F2;
	border-radius: 4px;
	margin-bottom: 24px;
	padding: 8px;
}
.post-line {
	clear: both;
	text-align: left;
	border-bottom: 1px solid #E2E2E2;
	margin: 0 0 40px 0;
	padding: 40px 0 0 0;
}
.post-listing-info {
	color: #727272;
	font-size: 13px;
	text-transform: uppercase;
	line-height: 160%;
	margin: 0 0 16px 0;
}
.post-listing-info a {
	color: #727272;
    border-bottom: 1px solid #E2E2E2;
	text-decoration: none;
}
.post-listing-info a:hover {
	color: #727272;
    border-bottom: 1px solid #727272;
}
.post-listing-image {
	margin: 0 0 20px 0;
}
.post-excerpt p {
	margin: 0;
}

/* --- POSTMETADATA IN LISTINGS --- */

.postmetadata {
	color: #929292;
	font-size: 14px;
	margin: 0;
	padding: 0;
}
.postmetadata a {
	color: #929292;
	border-bottom: none;
}
.postmetadata a:hover {
	color: #BE3734;
	border-bottom: 1px solid #BE3734;
}
.postmetadata p {
	margin: 0 0 12px 0;
}

/* --- BLOG DATES --- */

.blog-listings .blog-month {
	margin-top: 6px;
}
.blog-month,
.blog-year {
	color: #525252;
	font-size: 13px;
	font-weight: 300;
	text-align: center;
	line-height: 100%;
	text-transform: uppercase;
}
.blog-day {
	color: #4A4A4A;
	font-size: 28px;
	font-weight: 300;
	line-height: 100%;
	text-align: center;
	margin: 0;
}
@media (max-width: 767px) {
    .blog-listings {
    	margin-bottom: 8px;
        padding-left: 15px;
    }
    .blog-month,
    .blog-year,
    .blog-day {
    	float: left;
        font-size: 16px;
        font-weight: 300;
        line-height: 100%;
        text-align: left;
        margin: 0 4px 0 0 !important;
        padding: 0;
    }
}

/* --- POST AUTHOR BOX --- */

.post-author {
	clear: both;
	border-bottom: 1px solid #E2E2E2;
	margin: 0 0 40px 0;
	padding-bottom: 32px;
	overflow: hidden;
}
.post-author-single {
	clear: both;
	background: #FFF;
	border: 1px solid #E2E2E2;
	border-radius: 4px;
	margin: 0 0 24px 0;
	padding: 20px;
	overflow: hidden;
}
.post-author-image {
	padding-right: 20px;
}
.post-author-image img {
	border: 8px solid #f2f2f2;
	text-align: left;
	vertical-align: middle;
	margin-botton: 0;
}
.post-author .post-author-image img {
	margin-bottom: 18px;
}
.post-author-info h1 {
    line-height: 100%;
    margin-top: -20px;
	margin-bottom: 6px;
}
.post-author-info h1 span {
	font-size: 15px;
    text-transform: uppercase;
}
.post-author-info h4 {
	clear: none;
	font-size: 22px;
	margin: 10px 0 6px 0;
}
.post-author-info p {
	font-size: 15px;
	line-height: 160%;
	margin-bottom: 8px;
}
.post-author-info a img {
	margin-right: 3px;
	max-height: 28px;
}
@media (max-width: 767px) {
	.post-author-info h1 {
		font-size: 36px;
	}
}

.featured-image {
    float: right;
    max-height: 360px;
    margin-left: 30px;
    padding-bottom: 40px;
}
@media (max-width: 767px) {
	.featured-image {
        float: none;
        max-width: 100%;
        margin: 0 auto 24px auto;
	}
}

/*-------------------------------------------------------------------------*/

/* MASONRY */

/*-------------------------------------------------------------------------*/

/* --- MASONRY FOR RECOMMENDED READING --- */

.masonry-wrapper {
	background-color: #F2F2F2;
	padding-top: 60px;
	padding-bottom: 20px;
}
/*.home.masonry-wrapper {
	padding-bottom: 60px;
}*/
.masonry-wrapper a {
	border-bottom: none;
}
.masonry-wrapper header {
    padding-left: 8px;
}
.masonry-wrapper h5 {
    margin-left: 23px;
}
.masonry-grid {
	padding-bottom: 30px;
    min-height: 100px; /* for the no post message */
    overflow: hidden;
}
.masonry-entry {
	/* width: 47%; 2 columns */
    width: 33%; /* 3 columns */
    /* width: 23.596%;  4 columns */
	background-color: transparent;
    padding: 8px;
	display: inline-block;
    vertical-align: top;
	box-sizing: border-box;
}
@media (max-width: 992px) {
	.masonry-entry {
	    width: 33%;
	}
}
@media (max-width: 767px) {
	.masonry-entry {
		width: 100%;
        left: 0 !important;
	}
}
.masonry-details {
    background: #FFFFFF;
    box-shadow: 0px 2px 9px 0px rgba(0,0,0,0.15);
    border-radius: 4px;
	padding: 15px;
	overflow: hidden;
}
.masonry-thumbnail img {
    margin-bottom: 14px;
}
.masonry-title p {
	color: #4A4A4A;
	font-size: 20px;
	font-weight: 400;
	line-height: 120%;
	margin-bottom: 6px;
}
.masonry-title p a {
	color: #4A4A4A;
}
.masonry-title p a:hover {
	color: #BE3734;
	text-decoration: underline;
}
.masonry-excerpt {
	border-bottom: 1px solid #E2E2E2;
    margin-bottom: 16px;
    padding-bottom: 4px;
}
.masonry-excerpt p {
	font-size: 14px;
	line-height: 160%;
	margin-bottom: 8px;
}
.masonry-excerpt p.read-more {
    font-size: 12px;
    font-weight: 400;
	line-height: 180%;
    text-transform: uppercase;
}
.masonry-excerpt .btn {
	margin-bottom: 0;
}
.masonry-avatar img {
    margin-top: -2px;
}
.masonry-postmetadata {
	color: #929292;
    font-size: 12px;
    font-weight: 400;
	line-height: 140%;
    text-transform: uppercase;
}
.masonry-postmetadata a {
    color: #929292;
}
.masonry-postmetadata p {
	margin-bottom: 6px;
}

/* --- MASONRY FOR BULLETS --- */

.masonry-grid-list {
	overflow: hidden;
}
.masonry-grid-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.masonry-list li {
	/*width: 31.9658119%;*/
    width: 47%;
    /* width: 23.596%; 4 columns */
	background-color: #FFF;
	border: 8px solid #F2F2F2;
	border-radius: 6px;
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
    font-size: 15px;
    text-align: left;
	margin: 0;
	padding: 20px;
	overflow: hidden;
}
.masonry-list li img {
	margin: 0;
}
@media (max-width: 992px) {
	.masonry-list li {
		width: 47%;
	}
}
@media (max-width: 767px) {
	.masonry-list li {
		width: 100%;
		left: 0 !important;
	}
}
.masonry-list li p,
.masonry-list li .wp-video {
	margin-bottom: 0;
}

/* --- MASONRY FLEXIBLE CONTENT --- */

.masonry-well-match {
	overflow: hidden;
}
/*ul.masonry-flexible-list {
    list-style: none;
    padding: 0;
    margin: 0;
}*/
.masonry-well-match div {
	background-color: #FFF;
	border: 8px solid #F2F2F2;
	border-radius: 4px;
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
    font-size: 15px;
    text-align: left;
	margin: 0;
    line-height: 160%;
	padding: 30px 20px 20px 20px;
	overflow: hidden;
}
div.masonry-list-12 {
	width: 100%;
    left: 0 !important;
}
div.masonry-list-6 {
	width: 49.5%;
}
div.masonry-list-4 {
    width: 32.5%;
}
@media (max-width: 992px) {
	div.masonry-list-4 {
		width: 49.5%;
	}
}
@media (max-width: 767px) {
	div.masonry-list-6,
    div.masonry-list-4 {
		width: 100%;
		left: 0 !important;
	}
}

/*-------------------------------------------------------------------------*/

/* BIO / STAFF */

/*-------------------------------------------------------------------------*/

/* --- MAKE 5 COLUMNS --- */

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}
.col-xs-5ths {
    width: 20%;
    float: left;
}
@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}

/* --- BIO BOXES --- */

.well-item {
    background: #FFFFFF;
    box-shadow: 0px 2px 9px 0px rgba(0,0,0,0.15);
    border-radius: 4px;
}
.well-item a {
    cursor: pointer;
}
.bio-listing-image {
    margin: 0 auto 24px auto;
    max-width: 100%;
    max-height: 100%;
}
.bio-listing-image img {
    border-radius: 50%;
    filter: alpha(opacity=100);
	opacity: 1.0;
}
p.bio-listing-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    text-align: center;
    margin-bottom: 0;
}
p.bio-listing-job {
    font-size: 13px;
    line-height: 140%;
    text-align: center;
    margin-bottom: 0;
}

/* --- MODAL FULLSCREEN --- */

.modal-fullscreen {
    background: #385988;
    color: #FFF;
}
.modal-fullscreen .modal-dialog {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100%;
}
.modal-fullscreen .modal-content {
    background: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #FFF;
    height: 100%;
    overflow: auto;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-body,
.modal-fullscreen .modal-footer {
    color: #FFF;
    margin: 0 auto;
    max-width: 1080px;
    width: 92%;
}
.modal-fullscreen .modal-header a,
.modal-fullscreen .modal-body a,
.modal-fullscreen .modal-footer a {
    color: #FFF;
	border-bottom: 1px solid #FFF;
}
.modal-fullscreen .modal-header {
    border-bottom: none;
}
.modal-fullscreen .close {
    float: right;
    color: #FFF;
    font-weight: 400;
    font-size: 32px;
    margin-top: 8px;
    opacity: 1.0;
}
.modal-fullscreen .modal-title {
    color: #FFF;
    font-size: 32px;
    line-height: 100%;
    margin: 8px 0 6px 0;
}
.modal-fullscreen .modal-title span {
    font-size: 18px;
}
.modal-fullscreen .modal-title span a {
    color: #FFF;
}
.modal-fullscreen .modal-icons {
    color: #FFF;
    font-size: 18px;
    margin-bottom: 24px;
}
.modal-fullscreen .modal-icons a {
    color: #FFF;
}
.modal-fullscreen .modal-icons a:hover {
    border-bottom: none;
    text-decoration: none;
}
.modal-fullscreen h1, .modal-fullscreen h2, .modal-fullscreen h3, .modal-fullscreen h4, .modal-fullscreen h5, .modal-fullscreen h6 {
	color: #FFF;
}
@media (max-width: 992px) {
	.modal-fullscreen .close {
        margin-top: 4px;
    }
}

/* --- SINGLE BIO PAGES --- */

.single-bio h1 {
	font-size: 40px;
    margin: 0 0 6px 0;
}
.single-bio h6 {
    margin: 0 0 8px 0;
}
.single-bio-icons {
    margin: 0 0 24px 0;
}

/*-------------------------------------------------------------------------*/

/* SIDEBAR */

/*-------------------------------------------------------------------------*/

.sidebar {
	color: #727272;
	font-size: 15px;
	line-height: 180%;
}
.sidebar .widget  {
	background: #FFFFFF;
	margin: 0 0 30px 0;
	padding: 0;
	overflow: hidden;
}
.sidebar .widget h3  {
	font-size: 22px;
	font-weight: 300;
	line-height: 140%;
	margin: 0 0 18px 12px;
	padding: 0;
}
.sidebar ol,
.sidebar ul {
	margin: 0 0 24px 0;
	/* padding-left: 24px; */
}

/* --- CATEOGORY WIDGET --- */

.sidebar .widget_categories ul,
.sidebar .widget_archive ul,
.sidebar .widget_recent_entries ul {
	list-style: none;
	border-bottom: 1px solid #E2E2E2;
	margin: 0;
	padding: 0;
}
.sidebar .widget_categories ul li,
.sidebar .widget_archive ul li,
.sidebar .widget_recent_entries ul li {
    margin: 0;
}
.sidebar .widget_categories ul li a,
.sidebar .widget_archive ul li a,
.sidebar .widget_recent_entries ul li a {
	display: block;
	color: #3498DB;
	border-top: 1px solid #E2E2E2;
    border-bottom: none;
	font-size: 14px;
	font-weight: 300;
	line-height: 120%;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 10px 14px 12px;
}
.sidebar .widget_categories ul li a:hover,
.sidebar .widget_archive ul li a:hover,
.sidebar .widget_recent_entries ul li a:hover {
	color: #FFF;
	background-color: #3498DB;
	text-decoration: none;
}

/* --- SIDEBAR TAG CLOUD --- */

.sidebar .tagcloud {
    padding-left: 12px;
}
.sidebar .tagcloud a {
    border-bottom: 1px solid #E2E2E2;
    line-height: 140%;
}

/* --- SIDEBAR MENUS --- */

.sidebar ul.menu {
	list-style: none;
	border-bottom: 1px solid #d8d8d8;
	margin: 0;
	padding: 0;
}
.sidebar ul.menu li {
	margin: 0;
	padding: 0;
}
.sidebar ul.menu li a {
	display: block;
	color: #3498DB;
	border-top: 1px solid #d8d8d8;
	font-size: 12px;
	font-weight: 400;
	line-height: 120%;
	text-transform: uppercase;
	text-decoration: none;
	padding: 10px 10px 10px 12px;
}
.sidebar ul.menu li a:hover {
	color: #424242;
    border-bottom: none;
	background-color: #F2F2F2;
	text-decoration: none;
}
.sidebar ul.menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.sidebar ul.menu li li a {
	padding: 10px 10px 10px 32px;
}
.sidebar ul.menu .current-menu-item > a,
.sidebar ul.menu .current-menu-ancestor > a,
.sidebar ul.menu .current_page_item > a,
.sidebar ul.menu .current_page_ancestor > a {
	color: #424242;
	background-color: #F2F2F2;
	text-decoration: none;
}

/*-------------------------------------------------------------------------*/

/* HOMEPAGE */

/*-------------------------------------------------------------------------*/

/* --- FLEXSLIDER RESETS --- */

.flex-container a:hover,
.flex-slider a:hover,
.flex-container a:focus,
.flex-slider a:focus {
	outline: none;
}
.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
	margin: 0;
	padding: 0;
	list-style: none;
}
.flex-pauseplay span {
	text-transform: capitalize;
}

/* --- FLEXSLIDER BASE STYLES --- */

.flexslider {
	margin: 0;
	padding: 0;
}
.flexslider .slides > li {
	display: none;
	-webkit-backface-visibility: hidden;
}
.flexslider .slides img {
	width: 100%;
	display: block;
}
.flexslider .slides:after {
	content: "\0020";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
html[xmlns] .flexslider .slides {
	display: block;
}
* html .flexslider .slides {
	height: 1%;
}
.no-js .flexslider .slides > li:first-child {
	display: block;
}

/* --- FLEXSLIDER THEME --- */

.flexslider {
	position: relative;
	background: #000;
	text-align: center;
	margin: 0;
	padding: 0;
	zoom: 1;
}
.flexslider .slides {
	zoom: 1;
}
.flexslider .slides img {
	height: auto;
}
.flex-viewport {
	max-height: 2000px;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.flexslider.loading {
	height: 720px;
	background: #000 url(/wp-content/themes/ancs-sixteen/images/ajax-loader.gif) no-repeat center center;
}

/* --- FLEXSLIDER TEXT --- */

.flexslider .slide {
	text-align: center;
	width: 100%;
	height: 720px;
}
.flexslider .slide:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}
.flexslider .details {
	display: inline-block;
	background: rgba(0, 0, 0, 0.40);
	text-align: center;
	line-height: 120%;
    text-shadow: 0px 2px 12px rgba(0, 0, 0, 0.50);
	margin: 0 auto;
    padding-top: 260px;
	padding-right: 30px;
	padding-left: 30px;
	vertical-align: middle;
    width: 100%;
	height: 100%;
}
.flexslider h2 {
	color: #FFF;
	font-size: 64px;
	font-weight: 300;
	line-height: 110%;
	margin: 0 0 2px 0;
}
.flexslider h3 {
	color: #FFF;
    font-size: 32px;
	font-weight: 300;
    font-style: italic;
	line-height: 140%;
	margin: 0 0 10px 0;
}
.flexslider p {
	margin: 0;
}
@media (max-width: 992px) {
    .flexslider.loading,
    .flexslider .slide {
		height: 580px;
	}
    .flexslider .details {
        padding-top: 100px;
    }
}
@media (max-width: 767px) {
	.flexslider.loading,
    .flexslider .slide {
		height: 500px;
	}
	.flexslider .details {
        padding-right: 15px;
		padding-left: 15px;
	}
	.flexslider h2 {
		font-size: 36px;
	}
	.flexslider h3 {
		font-size: 20px;
	}
}

/* --- FLEXSLIDER BUTTON --- */

.flexslider .btn {
    margin-top: 30px;
}
.flexslider .btn-white {
	font-size: 16px;
    padding: 12px 24px;
}
@media (max-width: 767px) {
	.flexslider .btn-white {
		font-size: 14px;
		letter-spacing: normal;
	}
}

/* --- FLEXSLIDER CONTROL NAV --- */

.flex-control-nav {
	width: 100%;
	position: absolute;
	bottom: 20px;
	text-align: center;
}
.flex-control-nav li {
	margin: 0;
	display: inline-block;
	zoom: 1;
	*display: inline;
}
.flex-control-paging li a {
	width: 16px;
	height: 16px;
	display: block;
	background: #FFF;
	background: rgba(255, 255, 255, 1.0);
    border-bottom: none;
	cursor: pointer;
	text-indent: -9999px;
	box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
	border-radius: 20px;
}
.flex-control-paging li a:hover {
	background: #3498DB;
}
.flex-control-paging li a.flex-active {
	background: #3498DB;
	cursor: default;
}

.home h2 {
	line-height: 110%;
    margin: 0 0 12px 0;
}

/* --- HOMEPAGE EMERGENCY MESSAGE --- */

.homepage-message {
	text-align: center;
	padding-top: 50px;
	padding-bottom: 40px;
}
.homepage-message.alert {
	margin-bottom: 0;
}
.homepage-message h6 {
	color: #8a6d3b;
}

/* --- HOMEPAGE ABOUT --- */

.homepage-about {
	background-color: #CF7046;
    background: #CF7046 url(images/bg_leaf.jpg) no-repeat 25% 100%;
    background-size: cover;
    color: #FFF;
    font-size: 20px;
	text-align: center;
	padding-top: 90px;
	padding-bottom: 90px;
}
.homepage-about h2 {
    color: #FFF;
    font-size: 48px;
	line-height: 120%;
	margin: 0 0 12px 0;
}
@media (max-width: 992px) {
	.homepage-about h2 {
		font-size: 40px;
	}
}

/* --- HOMEPAGE NEWS --- */

.homepage-news {
	background-color: #F2F2F2;
    font-size: 20px;
    text-align: center;
	padding-top: 70px;
	padding-bottom: 70px;
}
.homepage-news h2 {
    font-size: 48px;
	line-height: 120%;
	margin: 0;
}

/* --- HOMEPAGE NEWS BOXES --- */

.homepage-news .well {
    background: #FFF;
    box-shadow: 0px 2px 9px 0px rgba(0,0,0,0.15);
    border-radius: 4px;
    font-size: 14px;
    line-height: 150%;
}
.homepage-news-image {
    position: relative;
    margin-bottom: 24px;
	height: 300px;
}
p.homepage-news-title {
    color: #4A4A4A;
    font-family: 'Patua One', cursive;
    font-size: 23px;
    font-weight: normal;
    line-height: 130%;
    margin-bottom: 8px;
}
.homepage-news-title a {
    color: #4A4A4A;
}
p.homepage-news-excerpt {
    margin-bottom: 18px;
}
p.homepage-news-link {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* --- HOMEPAGE EVENTS --- */

.homepage-events .well {
    background: #FFF;
    box-shadow: 0px 2px 9px 0px rgba(0,0,0,0.15);
    border-radius: 4px;
    font-size: 14px;
    line-height: 150%;
}
.homepage-events-date {
    color: #FFF;
    background-color: #385988;
    border-radius: 50%;
    line-height: 120%;
    margin: 8px auto 18px auto;
    padding: 12px 7px 7px 7px;
    width: 56px;
    height: 56px;
}
.homepage-events-date span.month {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
}
.homepage-events-date span.day {
    font-size: 17px;
    font-weight: 400;
}
p.homepage-events-title {
    color: #4A4A4A;
    font-family: 'Patua One', cursive;
    font-size: 19px;
    font-weight: normal;
    line-height: 140%;
    margin-bottom: 0;
}
.homepage-events-title a {
    color: #4A4A4A;
}
hr.homepage-events-hr {
	clear: both;
	background-color: #E5E5E5;
	border: 0;
	height: 1px;
	margin: 14px auto;
    padding-top: 3px;
    width: 50%;
}
p.homepage-events-excerpt {
    margin-bottom: 18px;
}
p.homepage-events-link {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* --- HOMEPAGE VIDEO --- */

.home .embed-responsive {
    margin-bottom: 0;
}

/* --- HOMEPAGE PARTNERS --- */

.homepage-partners {
	background-color: #FFF;
    text-align: center;
    padding-top: 100px;
	padding-bottom: 100px;
}
.homepage-partners-title {
	margin-bottom: 30px;
}
.homepage-partners-title h2 {
	margin-bottom: 6px;
}
.homepage-partners-title h5 {
	font-size: 20px;
	margin-bottom: 42px;
}
.homepage-partners .owl-controls {
	display: none;
}

/* --- HOMEPAGE STATS --- */

.homepage-stats-bg {
	background-color: #FFF;
    padding-top: 100px;
	padding-bottom: 100px;
}
.homepage-stats-button {
    color: #385988;
    font-size: 15px;
	font-weight: 400;
	line-height: 110%;
	text-align: center;
	text-transform: uppercase;
    margin-bottom: 20px;
}
.homepage-stats-button a {
    color: #385988;
}
.homepage-stats-button .circle-stats {
    position: relative;
    background-color: #FFF;
    background-color: rgba(255, 255, 255, 0.7);
	width: 240px;
	height: 240px;
	border-radius: 50%;
    margin: 0 auto;
    padding: 60px 30px 0 30px;
    transition: all 0.3s ease;
}
.homepage-stats-button a .circle-stats:hover {
	background-color: rgba(255, 255, 255, 1.0);
}
p.homepage-stats-number {
    color: #385988;
    font-family: 'Patua One', cursive;
    font-size: 72px;
    line-height: 100%;
    text-transform: none;
    margin-bottom: 4px;
}

/*-------------------------------------------------------------------------*/

/* FOOTER */

/*-------------------------------------------------------------------------*/

/* --- FOOTER AREA --- */

#colophon {
    margin: 0;
	padding: 0 0 80px 0;
}
#colophon a {
	border-bottom: none;
}
#colophon a:hover {
	border-bottom: none;
}

/* --- FOOTER SUBSCRIBE --- */

.footer-subscribe {
    background: #385988;
    background: rgba(56, 89, 136, 0.7);
    color: #FFF;
    font-size: 18px;
    text-align: center;
    line-height: 160%;
	padding-top: 60px;
	padding-bottom: 50px;
}
.footer-subscribe h2 {
    color: #FFF;
    font-size: 52px;
    margin-bottom: 6px;
}

/* --- SOCIAL --- */

.footer-links-social {
	text-align: center;
    margin-bottom: 28px;
}
.footer-links-social img {
	margin: 0 6px 0 0;
}
.footer-links-social img:hover,
.footer-links-social a:hover,
.footer-links-social a:active {
	filter: alpha(opacity=60);
    opacity: 0.6;
    text-decoration: underline;
    border-bottom: none;
}

/* --- FOOTER LINKS --- */

.footer-links {
	padding-top: 80px;
	padding-bottom: 40px;
}
.footer-links-brand {
    margin-bottom: 40px;
}
.footer-links-logo {
	display: block;
	margin-bottom: 16px;
	padding: 0;
	width: 160px;
}
.footer-links-logo img {
	max-height: 100%;
}
@media (max-width: 992px) {
	.footer-links-logo {
		margin-left: auto;
		margin-right: auto;
	}
}

/* --- FOOTER NAV --- */

.footer-links-list-area {
	 margin-bottom: 40px;
}
.footer-links-list h6 {
	color: #FFF;
	font-size: 16px;
    font-weight: 300;
	text-transform: uppercase;
    margin: 0 0 6px 0;
}
ul.footer-menu {
    list-style: none;
	margin: 0 0 30px 0;
	padding: 0;
}
ul.footer-menu li {
    margin: 0;
}
ul.footer-menu li a {
	color: #FFF;
	font-size: 14px;
    font-weight: 300;
	text-decoration: none;
	line-height: 200%;
}
.footer-menu li a:hover {
	text-decoration: underline;
}
@media (max-width: 992px) {
    .footer-links-list h6,
    ul.footer-menu li {
		 text-align: center;
	}
}

/* --- COPYRIGHT --- */

.footer-links-copyright {
	color: #FFF;
	font-size: 13px;
	line-height: 200%;
    text-align: center;
    margin-top: 50px;
}
.footer-links-copyright a {
	color: #FFF;
	text-decoration: none;
}
.footer-links-copyright a:hover {
	color: #FFF;
	text-decoration: underline;
}

/*-------------------------------------------------------------------------*/

/* MODAL LOGIN PLUGIN */

/*-------------------------------------------------------------------------*/

.login-popup .close-btn {
    top: 6px !important;
    right: 6px !important;
}
.login-popup h2 {
	color: #385988 !important;
	font-size: 32px !important;
	margin-top: 10px !important;
}
#login-box input {
    font-size: 14px !important;
    margin-top: 5px !important;
    height: 40px !important;
}
#login-box #forgetmenot, #login-box #additional-settings {
	display: none !important;
}
#login-box #form .submit .button {
	background: #385988 !important;
}

/*-------------------------------------------------------------------------*/

/* MAPPRESS PLUGIN */

/*-------------------------------------------------------------------------*/

.gm-style .gm-style-iw {
    font-weight: 300;
    font-size: 13px;
    line-height: 140%;
    overflow: hidden;
}
.mapp-directions {
    margin: 0;
    padding: 30px;
}
.mapp-dir-print {
    margin: 0 12px;
}
/*-------------------------------------------------------------------------*/

/* IMAGES */

/*-------------------------------------------------------------------------*/

.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
img.alignleft {
	margin: 6px 24px 12px 0;
}
img.alignleft.icon {
	margin: 0 12px 0 0;
}
img.alignright {
	margin: 6px 0 12px 24px;
}
img.aligncenter {
	margin: 12px auto 24px auto;
}
@media (max-width: 580px) {
	.alignleft {
		display: block;
		clear: both;
		float: none;
		margin: 0 0 20px 0 !important;
	}
	.alignright {
		display: block;
		clear: both;
		float: none;
		margin: 0 0 20px 0 !important;
	}

}

.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: normal;
	font-size: 12px;
	line-height: 110%;
	text-align: center;
	color: #525252;
	padding-top: 16px;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/*-------------------------------------------------------------------------*/

/* GALLERIES */

/*-------------------------------------------------------------------------*/

.gallery {
	clear: both;
	margin: 0 auto 24px auto;
	padding: 0;
}
.gallery .col-xs-6,
.gallery .col-sm-3,
.gallery .col-md-3 {
	padding-right: 7px;
	padding-left: 7px;
	margin-bottom: 14px;
}
.gallery .gallery-icon {
	width: 100%;
}
.gallery .gallery-caption {
	/*font-size: 13px;
	text-align: center;
	line-height: 15px;
	color: #727272;
	display: block;
	margin: 0;
	padding: 5px 0 0 0;*/
    display: none;
}

/*-------------------------------------------------------------------------*/

/* COMMENTS */

/*-------------------------------------------------------------------------*/

hr.hr-comments {
	clear: both;
	background-color: #E2E2E2;
	border: 0;
	height: 1px;
	margin: 35px 0 50px 0;
}
#comments h3.comments-title {
	margin: 0 0 60px 0;
}
#comments ul {
	list-style: none;
	margin: 0 0 30px 0;
}
#trackbacks {
	margin: 30px 0 0 40px;
}
ol#commentslist {
	margin: 0;
	list-style: none;
	padding: none;
	padding: 0;
}
#commentslist .children li {
	padding: 15px 0 0 30px;
	background: transparent url(images/comment_marker.gif) no-repeat 0px 40px;
	border-left: 1px solid #e3e3e3;
}
.comment {
	position: relative;
	margin: 0;
	padding: 0 0 20px 0;
}
.comment .avatar {
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 35px;
	width:75px;
	height:75px;
}
#commentForm label,
#comments #respond label {
	text-align: left !important;;
	padding-left: 12px;
}
.comment h5 {
	margin: 0 0 0 100px;
	padding: 0;
}
.comment .date {
	margin: -5px 0 10px 100px;
	display: block;
	color: #a5a5a2;
	font-style: italic;
	font-size: 13px;
	font-weight: 300;
}
.comment p {
	margin: 0 0 10px 100px;
}
.comment-reply-link,
.comment-reply-login {
	margin: 0 0 0 100px;
}
.comment-reply {
	display: inline-block !important;
	padding: 0 0 0 10px;
}
#comment-add {
	position: absolute;
	top: -5px;
	right: 0;
}
.moderation {
	margin: 0px;
	padding: 0 0 10px 25px;
}
#trackbacks ul {
	margin: -5px 0 15px 0;
}
#trackbacks ul li {
	padding: 5px 0 5px 20px;
}

/* Comment Form */

#commentForm {
	position: relative;
	margin: 30px 0;
	padding-bottom: 30px;
}
#comments h3 {
	margin: 10px 0 12px 0;
}
#comments #respond {
	position: relative;
	margin: 0 0 0 100px;
	padding: 0 0 40px 0;
}
#respond .form-allowed-tags {
	display: none;
}
#respond form {
	margin: 0;
	padding: 0;
	position: relative;
}
.cancel-comment-reply {
	float: right;
	margin: 5px 90px 0 0;
}
#cancel-comment-reply-link {
	margin-left: 20px !important;

}

/*-------------------------------------------------------------------------*/

/* MULTI-POST NAVIGATION */

/*-------------------------------------------------------------------------*/

.pagenavi-wrapper {
    background-color: #F2F2F2;
    padding-top: 0;
    padding-bottom: 40px;
}
.wp-pagenavi {
	clear: both;
    /*border-top: 5px solid #FFF;
	border-bottom: 5px solid #FFF;*/
    font-size: 15px;
	margin: 0 0 0 12px;
	padding: 0;
	text-align: left;
}
.wp-pagenavi a, .wp-pagenavi a:link {
	padding: 6px 9px 5px 9px;
	font-weight: 300;
	color: #525252;
	line-height: 20px;
	text-decoration: none;
	background-color: #FFF;
	border: 1px solid #E8E8E8;
	border-bottom: none;
	border-radius: 4px;
}
.wp-pagenavi a:visited {
	text-decoration: none;
	color: #525252;
	/* background-color: #FFF; */
	/* border: 1px solid #FFF; */
	border-radius: 4px;
}
.wp-pagenavi a:hover {
	color: #FFF;
	background-color: #3498DB;
	border: 1px solid #3498DB;
	border-radius: 4px;
}
.wp-pagenavi a:active {
	text-decoration: none;
	color: #525252;
	/* background-color: #FFF; */
	/* border: 1px solid #FFF; */
	border-radius: 4px;
}
.wp-pagenavi span {
	font-weight: 300;
	/* background-color: #FFF; */
	/* border: 1px solid #FFF; */
	border-radius: 4px;
}
.wp-pagenavi span.pages {
	padding: 6px 9px 5px 0;
	color: #525252;
	font-weight: 300;
	/* border: 1px solid #FFF; */
	border-radius: 4px;
}
.wp-pagenavi span.current {
	padding: 6px 9px 5px 9px;
	font-weight: 300;
	color: #FFF;
	background-color: #3498DB;
	/* border: 1px solid #FFF !important; */
	border-radius: 4px;
}
.wp-pagenavi span.extend {
	padding: 6px 2px 5px 2px;
	font-weight: 300;
	color: #525252;
	/* background-color: #FFF; */
	/* border: 1px solid #FFF; */
	border-radius: 4px;
}

/*-------------------------------------------------------------------------*/

/* TABLES */

/*-------------------------------------------------------------------------*/

.table-responsive {
    border: none;
}
.table {
    font-size: 14px;
}
.dataTable {
    font-size: 13px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.dataTable th {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}
.table-no-border > tbody > tr > td,
.table-no-border > tbody > tr > th,
.table-no-border > tfoot > tr > td,
.table-no-border > tfoot > tr > th,
.table-no-border > thead > tr > td,
.table-no-border > thead > tr > th {
    padding: 20px 12px;
    text-align: center;
    border-top: none;
    vertical-align: middle;
}
.table-bubbles > thead > tr > th,
.table-bubbles > tbody > tr > th,
.table-bubbles > tfoot > tr > th,
.table-bubbles > thead > tr > td,
.table-bubbles > tbody > tr > td,
.table-bubbles > tfoot > tr > td {
    background-clip: padding-box;
    background-color: #F2F2F2;
    border: 3px solid #FFF;
    border-radius: 0;
    line-height: 160%;
    text-align: center !important;
	padding: 14px;
    vertical-align: middle;
}
.table > tbody > tr > td.table-center {
    text-align: center !important;
}
.table > tbody > tr > td.cell-blue {
	background-color: #385988;
    color: #FFF;
}
.table > tbody > tr > td.cell-light-blue {
	background-color: #3971AA;
    color: #FFF;
}
.table > tbody > tr > td.cell-green {
	background-color: #add29d;
    color: #4A4A4A;
}
.table > tbody > tr > td.cell-dark-green {
	background-color: #7AAB65;
    color: #4A4A4A;
}
.table > tbody > tr > td.cell-aqua {
	background-color: #3EA8B8;
    color: #FFF;
}
.table > tbody > tr > td.cell-orange {
	background-color: #CF7046;
    color: #FFF;
}
.table > tbody > tr > td.cell-yellow {
	background-color: #FFFFCC;
    color: #4A4A4A;
}

.table > tbody > tr > td.cell-blue a,
.table > tbody > tr > td.cell-light-blue a,
.table > tbody > tr > td.cell-green a,
.table > tbody > tr > td.cell-dark-green a,
.table > tbody > tr > td.cell-aqua a,
.table > tbody > tr > td.cell-orange a,
.table > tbody > tr > td.cell-yellow a {
    color: #FFF;
    text-decoration: underline;
}

.table > tbody > tr > td.cell-green a,
.table > tbody > tr > td.cell-dark-green a,
.table > tbody > tr > td.cell-yellow a {
    color: #4A4A4A;
    text-decoration: underline;
}

/* --- SINGLE GRAVITY VIEW --- */

.gv-search-horizontal input[type="text"] {
	width: 100%;
}

/* .gv-table-view-content th {
    font-size: 13px;
    font-weight: 400;
    text-align: left;
    text-transform: uppercase;
    line-height: 120%;
    width: 100%;
    vertical-align: text-bottom;
    padding: 8px 0;
} */
.gv-table-view-content th {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    line-height: 120%;
    width: 100%;
    /* vertical-align: text-bottom; */
    padding: 28px 0 4px 0;
}
.gv-table-view-content td {
    display: block;
    line-height: 120%;
    padding: 0;
    vertical-align: text-bottom;
}
.gv-table-view-content table.gfield_list th,
.gv-table-view-content table.gfield_list td {
    display: contents;
}
.gv-table-view-content .gv-section th {
    font-size: 18px;
    text-transform: none;
    margin: 40px 0 0 0;
}

/*-------------------------------------------------------------------------*/

/* TOOLTIPS */

/*-------------------------------------------------------------------------*/

.tooltip {
	font-size: 13px;
    z-index: 2000;
}
.tooltip.top {
	/* margin-top: -16px; */
}
.tooltip-inner {
	max-width: 320px;
	padding: 8px 12px;
	color: #525252;
	text-align: left;
	background-color: #FFF;
	border: 1px solid #E2E2E2;
	border-radius: 4px;
}
.tooltip.top .tooltip-arrow {
	border-top-color: transparent;
}

/*-------------------------------------------------------------------------*/

/* BUTTONS */

/*-------------------------------------------------------------------------*/

.btn {
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
	margin-top: 4px;
	white-space: normal;
}
.btn-lg {
    font-size: 16px;
}
.btn-sm {
    font-size: 12px;
}

/* --- BLUE --- */

.btn-primary,
.btn-blue {
	color: #FFF;
	background-color: #3498DB;
	border: none;
    border-bottom: none !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-blue:hover,
.btn-blue:focus,
.btn-blue:active,
.btn-blue.active {
	color: #FFF;
	background-color: #222;
	border: none;
    border-bottom: none !important;
}
.btn-primary:active,
.btn-primary.active,
.btn-blue:active,
.btn-blue.active {
	background-image: none;
}

/* --- BLACK --- */

.btn-black {
	color: #FFF;
	background-color: #424242;
	border: none;
    border-bottom: none !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black:active,
.btn-black.active {
	color: #FFF;
	background-color: #3498DB;
	border: none;
    border-bottom: none !important;
}
.btn-black:active,
.btn-black.active {
	background-image: none;
}

/* --- GRAY --- */

.btn-gray {
	color: #FFF;
    font-weight: bold;
	background-color: #F2F2F2;
	border: none;
    border-bottom: none !important;
}
.btn-gray:hover,
.btn-gray:focus,
.btn-gray:active,
.btn-gray.active{
	color: #FFF;
	background-color: #4A4A4A;
	border: none;
    border-bottom: none !important;
}
.btn-gray:active,
.btn-gray.active {
	background-image: none;
}

/* --- WHITE --- */

.btn-white {
	color: #FFF;
	background-color: #FFF;
    background: rgba(255,255,255,0.35);
	border: none;
    border-bottom: none !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active {
	color: #FFF;
	background-color: #3498DB;
	border: none;
    border-bottom: none !important;
}
.btn-white:active,
.btn-white.active {
	background-image: none;
}

/* --- GREEN --- */

.btn-green {
	color: #FFF;
    font-weight: bold;
	background-color: #7AAB65;
	border: none;
    border-bottom: none !important;
}
.btn-green:hover,
.btn-green:focus,
.btn-green:active,
.btn-green.active{
	color: #FFF;
	background-color: #4A4A4A;
	border: none;
    border-bottom: none !important;
}
.btn-green:active,
.btn-green.active {
	background-image: none;
}

/* --- BUTTON CLEAR BLUE --- */

.btn-clear-blue {
	color: #3498DB;
	background-color: transparent;
	border: 2px solid #3498DB;
	text-shadow: none;
    overflow: hidden;
}
.btn-clear-blue:hover,
.btn-clear-blue:focus,
.btn-clear-blue:active,
.btn-clear-blue.active {
	color: #FFF;
	background-color: #3498DB;
	border: 2px solid #3498DB;
}
btn-clear-blue:active,
.btn-clear-blue.active {
	background-image: none;
}

/* --- BUTTON CLEAR WHITE --- */

.btn-clear-white {
	color: #FFF;
	background-color: transparent;
	border: 2px solid #FFF;
	text-shadow: none;
    overflow: hidden;
}
.btn-clear-white:hover,
.btn-clear-white:focus,
.btn-clear-white:active,
.btn-clear-white.active {
	color: #FFF;
	background-color: #222;
	border: 2px solid #222;
}
btn-clear-white:active,
.btn-clear-white.active {
	background-image: none;
}

/* --- BUTTON CLEAR BLACK --- */

.btn-clear-black {
	color: #4A4A4A;
	background-color: transparent;
	border: 2px solid #4A4A4A;
	text-shadow: none;
    overflow: hidden;
}
.btn-clear-black:hover,
.btn-clear-black:focus,
.btn-clear-black:active,
.btn-clear-black.active {
	color: #FFF;
	background-color: #222;
	border: 2px solid #222;
}
btn-clear-black:active,
.btn-clear-black.active {
	background-image: none;
}

/*-------------------------------------------------------------------------*/

/* EVENTS CALENDAR */

/*-------------------------------------------------------------------------*/

/* --- LEGEND --- */

.tribe-events-calendar h3 a {
    color: #3498DB;
    border-bottom: none;
}
.tribe-events-calendar .cat_middle-events a {
	color: #C05B18;
}
.tribe-events-calendar .cat_elementary-events a {
	color: #849905;
}
.tribe-events-legend {
	color: #777;
	font-size: 13px;
	font-style: italic;
    font-weight: 400;
	margin-top: 20px;
}
span#tribe-events-legend-middle {
	background-color: #C05B18;
	margin: 0 7px 0 0;
}
span#tribe-events-legend-elementary {
	background-color: #849905;
	margin: 0 7px 0 0;
}
span#tribe-events-legend-schoolwide {
	background: #3498DB;
	margin: 0 7px 0 0;
}

/* --- OVERALL --- */

.tribe-events-page-template {
	background-color: #F2F2F2;
}

.events-calendar {
    padding-top: 30px;
}
#tribe-events .tribe-events-button,
#tribe-events .tribe-events-button:hover,
#tribe_events_filters_wrapper input[type=submit],
.tribe-events-button, .tribe-events-button.tribe-active:hover,
.tribe-events-button.tribe-inactive, .tribe-events-button:hover,
.tribe-events-calendar td.tribe-events-present div[id*=tribe-events-daynum-],
.tribe-events-calendar td.tribe-events-present div[id*=tribe-events-daynum-]>a {
    background-color: #3498DB;
}
#tribe-events .tribe-events-button:hover,
.tribe-events-button, .tribe-events-button.tribe-active:hover,
.tribe-events-button.tribe-inactive, .tribe-events-button:hover {
    background-color: #222;
}

/* --- CALENDAR PAGE --- */

.tribe-events-tooltip {
    border-radius: 4px;
}
.tribe-events-calendar .tribe-events-tooltip h3.entry-title {
    color: #4A4A4A;
    font-size: 20px;
    line-height: 110%;
    margin-bottom: 4px;
}
.tribe-events-calendar .tribe-events-tooltip p {
    margin-bottom: 12px;
}
.tribe-events-calendar .tribe-events-tooltip .tribe-event-duration {
    font-weight: 700;
    margin-bottom: 12px;
}

/* --- LIST PAGE --- */

.events-list .tribe-events-loop,
.single-tribe_organizer .tribe-events-loop,
.single-tribe_venue .tribe-events-loop,
.tribe-events-day .tribe-events-loop {
    max-width: 100%;
    margin: 0 auto;
}
#tribe-events .tribe-events-content p,
.tribe-events-after-html p,
.tribe-events-before-html p {
	margin: 0 0 24px 0;
	line-height: 180%;
}
.tribe-events-list-separator-month {
	font-size: 18px;
	font-weight: 300;
	text-transform: uppercase;
}
.tribe-events-loop .tribe-events-event-meta,
.tribe-events-list .time-details,
.tribe-events-list .tribe-events-venue-details {
    line-height: 160%;
}

/* --- SINGLE EVENT PAGE --- */

.tribe-events-schedule h2 {
    font-size: 28px;
    font-weight: 300;
}
.tribe-events-single-section dd {
	margin-bottom: 12px;
}
.tribe-events-event-meta .tribe-events-gmap,
.tribe-events-event-meta-desc .tribe-events-gmap {
	white-space: normal;
	display: inline;
}
@media (max-width: 767px) {
	.tribe-events-event-meta .tribe-events-meta-group {
		margin-bottom: 24px;
	}
}
.single-tribe_events .tribe-events-event-meta {
	background: #f6f6f6;
	border: 1px solid #E2E2E2;
	margin: 30px 0;
}

.tribe-events-schedule {
    margin: 1em 0 0 0;
}
.single-tribe_events #tribe-events-footer {
    display: none;
}

/* --- SIDEBAR EVENTS WIDGET --- */

/*.tribe-mini-calendar-event {
	border-bottom: none;
}

.tribe-mini-calendar-event .list-date {
	display: none;
}
.tribe-mini-calendar-event h2.entry-title {
	font-size: 16px;
	font-weight: 300;
	line-height: 120%;
	margin: 0 0 2px 0;
	padding: 0;
}
.tribe-mini-calendar-event h2.entry-title a {
	color: #4A4A4A;
}
.tribe-mini-calendar-event h2.entry-title a:hover {
	color: #3498DB;
}
.tribe-mini-calendar-event .duration,
.tribe-mini-calendar-event .location {
	font-size: 13px;
	font-weight: 300;
	line-height: 180%;
}*/

/*-------------------------------------------------------------------------*/

/* CUSTOMIZED GRAVITY FORM STYLES */

/*-------------------------------------------------------------------------*/

select,
textarea,
input[type="text"],
input[type="password"],
input[type="checkbox"],
input[type="radio"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
/*input[type="search"],*/
input[type="tel"],
input[type="color"],
.uneditable-input {
	color: #525252;
	font-size: 18px;
	background-color: #F8F8F8;
    border: 1px solid #ccc;
	border-radius: 4px;
	padding: 8px;
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="checkbox"]:focus,
input[type="radio"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
/*input[type="search"]:focus,*/
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
	background-color: #E2E2E2;
	outline: 5px auto -webkit-focus-ring-color;
	padding: 8px;
}

.gform_wrapper {
	margin: 0 !important;
}
.gform_wrapper ul li.gfield {
    margin-top: 24px !important;
    padding-top: 0;
}
.gform_wrapper .top_label .gfield_label {
	font-size: 18px !important;
	margin: 20px 0 4px 0 !important;
	font-weight: 400 !important
}
.gform_wrapper .gfield_checkbox li label, .gform_wrapper .gfield_radio li label {
	font-weight: 300 !important;
}

/* --- LARGE FORM TEXT --- */

.gform_wrapper .gsection {
	border-bottom: 1px solid #E2E2E2 !important;
	margin: 35px 0 4px 0 !important;
}
.gform_wrapper h3.gform_title {
	color: #4A4A4A !important;
	font-size: 32px !important;
	font-weight: 300 !important;
	line-height: 140% !important;
	margin: 0 !important;
	padding: 0 !important;
}
.gform_wrapper h2.gsection_title {
	font-size: 26px !important;
	font-weight: 300 !important;
	padding: 30px 0 6px 0 !important;
}
.gform_wrapper .gsection .gfield_label {
	font-size: 22px !important;
	font-weight: normal !important;
}
.gform_wrapper .gfield_checkbox li input,
.gform_wrapper .gfield_checkbox li input[type=checkbox],
.gform_wrapper .gfield_radio li input[type=radio] {
    font-size: 16px !important;
    margin-right: 7px !important;
    vertical-align: text-top !important;
}
.gform_wrapper .gfield_checkbox li label,
.gform_wrapper .gfield_radio li label {
    font-size: 16px !important;
    vertical-align: text-top !important;
    max-width: 90% !important;
}
.gform_wrapper ul.gfield_checkbox li,
.gform_wrapper ul.gfield_radio li {
    margin: 0 0 12px 0 !important;
}

/* --- SMALL FORM TEXT --- */

.gform_wrapper .ginput_complex label {
	color: #888 !important;
	font-size: 11px !important;
	font-style: italic !important;
	margin: 0 0 3px 0 !important;
}
.gform_wrapper .ginput_complex .ginput_left {
	clear: left;
}
.gform_wrapper .description_above .gfield_description {
	color: #888 !important;
	font-size: 13px !important;
	font-style: italic !important;
	line-height: 140% !important;
	margin: 0 !important;
	padding: 0 0 6px 0 !important;
}
.gform_wrapper em {
	color: #999 !important;
	font-style: italic !important;
}
.gform_wrapper span.gform_description {
    font-weight: 300 !important;
 }
.gform_wrapper .gfield_description, .gform_wrapper .instruction {
	color: #494949 !important;
	font-size: 11px !important;
	font-style: italic !important;
	font-size: 12px !important;
	font-weight: 300 !important;
	margin: 0 !important;
	padding: 0 0 6px 0 !important;
}

/* --- DROP DOWNS --- */

.gform_wrapper .gform_body .gform_fields .gfield select {

	height: 42px;
}
.gform_wrapper.gf_browser_chrome .ginput_complex .ginput_right select,
.gform_wrapper.gf_browser_chrome .ginput_complex select {
    text-indent: 2px;
    line-height: 1.5em;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}
.gform_wrapper table.gfield_list tr td.gfield_list_icons img {
    width: 20px!important;
}
@media (max-width: 767px) {
    .gform_wrapper table.gfield_list tr td.gfield_list_icons img {
        width: 30px!important;
    }
}

/* --- ENHANCED DROP DOWNS --- */

.gform_wrapper .gform_body .chosen-container .chosen-single {
	color: #727272;
	font-size: 20px;
	border: 1px solid #ccc;
	padding: 6px 0 0 8px;
	height: 38px;
}
.gform_wrapper .gform_body li.active-result {
	font-size: 16px;
	padding: 8px;
}
.gform_wrapper .gform_body .chosen-container-single .chosen-single div b {
	background-position-y: 10px !important;
}

/* --- ERRORS, MESSAGES --- */

.gform_wrapper .gfield_required {
	color: #930 !important;
}
.gform_wrapper .gfield_error {
	background-color: #F0E1D9 !important;
	border: 1px dotted #C89797 !important;
}
.gform_wrapper .gfield_error .gfield_label {
	color: #930 !important;
}
.gform_wrapper .validation_error {
	color: #930 !important;
	font-family: inherit !important;
}
.gform_wrapper .validation_message {
	color: #930 !important;
	font-family: inherit !important;
}
#gforms_confirmation_message {
	background-color: transparent !important;
	font-size: 18px !important;
	color: #525252 !important;
	text-align: left !important;
	border: none !important;
	margin: 10px 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
}
.gform_wrapper .gform_footer {
	margin: 0 !important;
}

/* --- SUBMIT BUTTON COLOR --- */

.gform_wrapper input.button {
	color: #fff;
	background-color: #3498DB;
  	display: inline-block;
	margin-bottom: 24px !important;
	font-weight: normal;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	background-image: none;
	border: 1px solid transparent;
	white-space: nowrap;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.428571429;
	border-radius: 4px;
	user-select: none;
}
.gform_wrapper input.button:focus {
	outline: thin dotted #333;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
.gform_wrapper input.button:hover,
.gform_wrapper input.button:focus {
	color: #fff;
	background-color: #222;
	border-color: #222;
	text-decoration: none;
}
.gform_wrapper input.button.active,
.gform_wrapper input.button:active {
	outline: 0;
	background-image: none;
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* SPECIFIC TO AFTER SCHOOL PROGRAM FORM */
.gform_wrapper #gform_13 .top_label .gfield_label {
	font-weight: normal !important;
}
.gform_wrapper #gform_13 .top_label .gfield_label {
	font-weight: normal !important;
}
.gf_teacher_pairing {
	display: none;
}

/* --- HIDE BIG INVISIBLE RECAPTCHA BANNER --- */

.gf-recaptcha-div {
    display: none;
}

/*-------------------------------------------------------------------------*/

/* CUSTOMIZED BLOOMERANG STYLES */

/*-------------------------------------------------------------------------*/

.donation-form h3 {
    margin: 38px 0 24px 0;
}
.donation-form label,
.donation-form .label {
    color: #525252 !important;
    font-size: 16px;
    font-weight: 400;
    margin: 8px 0 0 0;
    padding-left: 0 !important;
}
.donation-form .field.radio,
.donation-form .field.checkbox {
    padding: 4px 0 0 20px;
}
.donation-form .field.radio input,
.donation-form .field.checkbox input {
    margin-left: -20px !important;
}
.donation-form #other-amount {
    width: 160px !important;
}
.donation-form input.btn-submit-donation {
	color: #fff;
	background-color: #3498DB;
  	display: inline-block;
	margin-bottom: 24px !important;
	font-weight: normal;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	background-image: none;
	border: 1px solid transparent;
	white-space: nowrap;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.428571429;
	border-radius: 4px;
	user-select: none;
}
.donation-form input.btn-submit-donation:hover,
.donation-form input.btn-submit-donation:focus {
	color: #fff;
	background-color: #222;
	border-color: #222;
	text-decoration: none;
}
.spreedly-wrapper.spreedly-modal-visible {
    top: 120px !important;
}
#spreedly-exp input[type=text],
#spreedly-exp input[type=number] {
    width: 33%;
}
#spreedly-modal-form .spreedly-field-exp,
#spreedly-name-parent input[type=text],
#spreedly-name-parent input[type=tel],
#spreedly-name-parent input[type=number],
.spreedly-field-number .spreedly-iframe-input,
.spreedly-field-verification_value .spreedly-iframe-input {
    margin: -10px 0 0 0;
}

/*-------------------------------------------------------------------------*/

/* CUSTOMIZED WOOCOMMERCE STYLES */

/*-------------------------------------------------------------------------*/

/* --- WOOCOMMERCE GENERAL --- */

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    background-color: #FFF;
    padding: 12px;
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    padding: 12px 16px;
}
.woocommerce #respond input#submit,
.woocommerce a.button, .woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    font-size: 15px;
    background-color: #3971AA;
    color: #FFF !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background-color: #222;
    color: #FFF;
}
.woocommerce #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled,
.woocommerce #respond input#submit.alt:disabled:hover,
.woocommerce #respond input#submit.alt:disabled[disabled],
.woocommerce #respond input#submit.alt:disabled[disabled]:hover,
.woocommerce a.button.alt.disabled,
.woocommerce a.button.alt.disabled:hover,
.woocommerce a.button.alt:disabled,
.woocommerce a.button.alt:disabled:hover,
.woocommerce a.button.alt:disabled[disabled],
.woocommerce a.button.alt:disabled[disabled]:hover,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt:disabled[disabled],
.woocommerce button.button.alt:disabled[disabled]:hover,
.woocommerce input.button.alt.disabled,
.woocommerce input.button.alt.disabled:hover,
.woocommerce input.button.alt:disabled,
.woocommerce input.button.alt:disabled:hover,
.woocommerce input.button.alt:disabled[disabled],
.woocommerce input.button.alt:disabled[disabled]:hover {
    background-color: #6789ac;
}

/* --- WOOCOMMERCE SHOP PAGE --- */

.woocommerce ul.products li.product .price {
    color: #3971AA;
    display: block;
    font-weight: 400;
    margin-bottom: .5em;
    font-size: 16px;
}
.woocommerce ul.products li.product .button {
    margin-top: 6px;
}

/* --- WOOCOMMERCE PRODUCT SINGLE PAGE --- */

.woocommerce .woocommerce-breadcrumb {
    font-size: 12px;
    color: #929292;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 105%;
    margin-bottom: 16px;
}
.woocommerce .woocommerce-breadcrumb a {
    border-bottom: none;
}
.woocommerce .woocommerce-breadcrumb a:hover {
    border-bottom: none;
    text-decoration: underline;
}
.woocommerce h1.product_title {
    font-size: 40px;
}
.woocommerce h2 {
    font-size: 32px;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: #4A4A4A;
    line-height: 200%;
    font-size: 22px;
}
.woocommerce .product_meta {
    display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    border-bottom: none;
}

/* --- SINGLE DONATION PAGES --- */

.variations td.label {
    /*hide label with variation buttons*/
    display: none;
}
.single.one-time-donation .woocommerce-tabs,
.single.monthly-donation .woocommerce-tabs {
    /*hide tabs on donate pages*/
    display: none;
}
.wc_ea_container a,
.wc_ea_container a:hover {
    /* variation uttons */
    border-bottom: none;
}
.single.one-time-donation a.reset_variations,
.single.monthly-donation a.reset_variations {
    color: #727272 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    border-bottom: none !important;
    text-transform: uppercase !important;
    display: block !important;
    clear: both  !important;
}
.wc_ea_button_wrapper {
    margin-bottom: 6px;
}

/* --- MY ACCOUNT PAGES --- */

.woocommerce-MyAccount-navigation {
    margin-bottom: 40px;
    padding: 0 40px 0 0;
}
@media (max-width: 992px) {
    .woocommerce-MyAccount-navigation {
        padding: 0;
    }
}
.woocommerce-MyAccount-navigation ul {
	list-style: none;
	border-bottom: 1px solid #d8d8d8;
	margin: 0 0 0 -12px;
	padding: 0;
}
.woocommerce-MyAccount-navigation ul li {
	margin: 0;
	padding: 0;
}
.woocommerce-MyAccount-navigation ul li a {
	display: block;
	color: #4A4A4A;
	border-top: 1px solid #d8d8d8;
    border-bottom: none;
	font-size: 15px;
	font-weight: 400;
	line-height: 120%;
	text-decoration: none;
	padding: 10px 10px 10px 12px;
}
.woocommerce-MyAccount-navigation ul li a:hover {
	color: #3971AA;
	background-color: #f4f4f4;
    border-bottom: none;
	text-decoration: none;
}
.woocommerce-MyAccount-navigation li.is-active {
	color: #222;
	background-color: #f4f4f4;
	text-decoration: none;
}

/* --- CHECKOUT CUSTOMER DETAILS --- */

.customer-details  {
    padding-right: 40px;
}
@media (max-width: 992px) {
    .customer-details  {
        padding-right: 15px;
    }
}
.customer-details h3 {
    padding-top: 20px;
    font-weight: 400;
}
.woocommerce-shipping-fields h3 {
    display: none;
}

/* --- WOOCOMMERCE CHECKOUT ORDER REVIEWS --- */

.order-review {
    background-color: #f7f6f7;
    font-size: 14px;
    padding: 30px 15px 0 15px;
}
@media (max-width: 992px) {
    .order-review {
        padding: 30px 0;
    }
}
.order-review h3 {
    font-weight: 400;
}
.woocommerce form .form-row {
    margin: 0 0 12px 0;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table {
    border-bottom: 4px solid rgba(0, 0, 0, 0.1);
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table thead th {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    padding: 6px 12px;
    vertical-align: middle;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody td {
    background-color: rgba(0, 0, 0, 0.025);
}
.woocommerce ul#shipping_method li label {
    font-size: 14px;
    text-indent: 0;
}
.woocommerce td.product-name dl.variation dd,
.woocommerce td.product-name dl.variation dt {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tr.order-total th,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tr.order-total td {
    font-size: 22px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.woocommerce-checkout-payment p.wc-terms-and-conditions,
.woocommerce-checkout-payment .checkbox-small {
    font-size: 14px;
    font-weight: normal;
    line-height: 160%;
    margin-bottom: 6px;
}

/* --- WOOCOMMERCE CREDIT CARD --- */

/*.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 {
    margin-bottom: 60px;
}*/
#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
    background: #f7f6f7;
}
#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
    background-color: #e7e6e7;
}
#add_payment_method #payment div.payment_box:before,
.woocommerce-cart #payment div.payment_box:before,
.woocommerce-checkout #payment div.payment_box:before {
    border: 1em solid #e2e2e2;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
}

/* --- WOOCOMMERCE THANK YOU PAGE --- */

.woocommerce .order_details {
    margin: 0 0 24px 0;
    list-style: none;
}
p.woocommerce-thankyou-order-received {
    margin-bottom: 12px;
}
ul.woocommerce-thankyou-order-details {
    background-color: #dff0d8;
    padding: 20px 20px 12px 20px;
}

/*-------------------------------------------------------------------------*/

/* PRINT STYLES */

/*-------------------------------------------------------------------------*/

@media print {
	html, body {
		height: auto;
	}
	body {
		background: white;
	    font-size: 10pt;
	    color: black;
	    line-height: 14pt;
	    margin: 0 auto;
	    padding: 0;
	}
	.container-fluid {
		width: 100%;
		border: none;
		background: none;
	}
	.container {
		width: 90%;
		border: none;
		background: none;
	}
	.container-wrapper {
    	padding-top: 0;
    	padding-bottom: 0;
	}
	#header-image {
		height: 80px;
	}
	#header-image img {
		display:none;
	}
	a {
	    color: black;
	    text-decoration: none;
	    border-bottom: none;
	}
	a[href]:after {
    	content: none !important;
	}
	#commentform {
		display:none
	}
	.wp-caption-text {
		font-size: 8pt;
	}
	.alignleft {
		float: left;
		margin: 0;
		padding: 6px 20px 12px 0;
		max-width: 220px;
	}
	.alignright {
		float: right;
		margin: 0;
		padding: 6px 0 12px 20px;
		max-width: 220px;
	}
	.aligncenter {
		float: none;
		margin: 0;
		padding: 12px 0 12px 0;
		max-width: 220px;
	}
	h1, h2, h3, h4, h5, h6 {
		clear: both;
		wrapper-break-after:avoid;
	    wrapper-break-inside:avoid
	}
	blockquote, table, pre {
		wrapper-break-inside:avoid
	}

	ul, ol, dl  {
		wrapper-break-before:avoid
	}
	.et_social_inline {
		display: none;
	}
	.postmetadata {
		display: none;
	}
	.print:last-child {
    	page-break-before: auto;
	}
}
