/*
	Theme Name: AIDS Lifecycle
	Description: A custom theme developed by Milo Digital.
	Author: Milo Digital
	Theme URL: http://milodigital.com
	Author URI: http://milodigital.com
	Version: 1.1
	License: GPL-2.0+
	License URI: http://www.opensource.org/licenses/gpl-license.php
	Template: genesis
*/

/* AFTER MAKING CHANGES, UPDATE "CHILD_THEME_VERSION" CONSTANT IN functions.php FILE */

/*
- Normalize
- Clear Floats
	- Box Sizing
- Defaults
	- Typography
	- Headings
	- Objects
	- Tables
- Forms
	- Search Form
	- Footer Widget Form
- Accessibilty
	- Screen Reader Text
	- Skip Links
- WordPress
	- Defaults
	- Gallery
	- Avatar
- Structure and Layout
	- Site Containers
	- Site Header
	- Content
	- Columns
	- Widgets
	- Colors	
- Titles
	- Site Header
	- Widgets
	- Author Box
	- Archive Description
- Navigation
	- Primary Navigation
	- Secondary Navigation
	- Menu Toggle
- Content Areas
	- Entries
	- Entry Meta
	- Comments
	- Pagination
- Custom Templates
	- Events	
- Sidebars
	- Primary Sidebar
	- Secondary Sidebar
- Widgets
	- Header Widget Area
- Common Classes
	- Archive/Author Box
	- Breadcrumbs
- Common Plugins
	- Jetpack
	- Fancybox
	- Genesis eNews Extended
	- Slick Slider
	- Gravity Forms
	- Ultimate Posts Widget
- Footer
	- Widgets
- Media Queries
	- Retina (2x)
	- 768
	- 1200
	- 1600
*/

/*=================================
=            Normalize            =
=================================*/

/* normalize.css v3.0.2 | MIT License | git.io/normalize */

html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}




/*====================================
=            Clear Floats            =
====================================*/

.author-box:before,
.clearfix:before,
.entry:before,
.entry-content:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.pagination:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.wrap:before {
	content: " ";
	display: table;
}

.author-box:after,
.clearfix:after,
.entry:after,
.entry-content:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.pagination:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.wrap:after {
	clear: both;
	content: " ";
	display: table;
}

/*----------  Box Sizing  ----------*/

html,
input[type="search"]{
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}


/*================================
=            Defaults            =
================================*/

/*----------  Typography  ----------*/

html {
    font-size: 62.5%; /* Set the default browser size to 10px */
}

body > div {
    font-size: 1.6rem; /* Chrome fix for REM values */
}

body {
	background-color: #fafafa;
	color: #444;
	font-family: 'Work Sans', sans-serif;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.611;
	margin: 0;
	-webkit-font-smoothing: antialiased;
}

body.nav-visible {
	/*overflow: hidden;*/
}

a {	
	color: #003c6f;
	text-decoration: none;
}

a:hover,
a:focus {
	color: #999; /* was #61b5ed*/
	outline:none;
	
}

p {
	margin: 0 0 1.3em 0;
	padding: 0;
	font-size:15px;
	line-height:1.4;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

.entry-content ol,
.entry-content ul,
.footer-widgets ol,
.footer-widgets ul {
	margin-bottom: 28px;
	margin-left: 40px;
}

.entry-content ol > li,
.footer-widgets ol > li {
	list-style-type: decimal;
}

.entry-content ul > li,
.footer-widgets ul > li {
	list-style-type: disc;
}

.entry-content ol ol,
.entry-content ul ul,
.footer-widgets ol ol,
.footer-widgets ul ul {
	margin-bottom: 0;
}

hr {
	border: 0;
	border-collapse: collapse;
	border-top: 1px solid #eee;
	clear: both;
	margin: 1em 0;
}

b,
strong {
	font-weight: 700;
}

blockquote,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	border-left: 3px solid #000;
	color: #000;
	margin: 1.3em 0;
	padding-left: 10px;
}

small,
cite {
	font-size: 0.75em;
}

/*----------  Headings  ----------*/

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #003c6f;
	/*font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;*/
	font-family: 'Roboto Slab', serif;
	font-weight: 700;
	margin: 1.414em 0 0.5em;
}

h1 {
	font-size: 32px;
	font-size: 3.2rem;
}

h2 {
	font-size: 26px;
	font-size: 2.6rem;
	line-height: 1.15em;
}

h3 {
	/*font-size: 22px;
	font-size: 2.2rem;
	line-height: 1.13em;*/
	font-size: 20px;
	font-size: 2.0rem;
	line-height: 22px;	
}

h4,
h5,
h6 {
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1.1em;
}

/*----------  Objects  ----------*/

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

video {
  width: 100%    !important;
  height: auto   !important;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0;
	height: 0;
	overflow: hidden;
}

.video-container iframe,  
.video-container object,  
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}





.entry-content img, 
.entry-content iframe, 
.entry-content object, 
.entry-content embed {
        max-width: 100%;
}

img {
	height: auto;
}

.featured-content img,
.gallery img {
	width: auto;
	margin:10px;
}

.wp-caption {
	margin: 0;
}



/*----------  Tables  ----------*/

table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 2;
	margin-bottom: 40px;
	width: 100%;
}

tbody {
	border-bottom: 1px solid #ddd;
}

td,
th {
	text-align: left;
}

td {
	border-top: 1px solid #ddd;
	padding: 6px 0;
}

th {
	font-weight: 400;
}


/*=============================
=            Forms            =
=============================*/

input,
select,
textarea {
	background-color: #fff;
	border-radius: 0;
	border: 1px solid #ddd;
	color: #333;
	padding: 10px;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

input:focus::-webkit-input-placeholder{
    color: transparent!important;
}
input:focus::-moz-placeholder{
    color: transparent!important;
}
input:focus:-moz-placeholder{
    color: transparent!important;
}



input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

input:not( [type="checkbox" ] ),
input:not( [type="image"] ),
input:not( [type="radio"] ) {
	-webkit-appearance: none; /* Remove iOS styles */
}

::-moz-placeholder {
	color: #333;
	font-weight: 300;
	opacity: 1;
}


/*  Styled Select for Events   */
.select-style {
	margin-bottom:20px;
    border: none;
    width: 150px;
    overflow: hidden;
    background: #fff url("assets/img/dropdown-arrow.png") no-repeat 90% 50%;
}

.select-style select {
    padding: 5px 8px 5px 0;	
    width: 130%;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
}

.select-style select:focus {
    outline: none;
}




::-webkit-input-placeholder {
	color: #333;
	font-weight: 300;
}


input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
	/*border: 3px solid currentColor;*/
	cursor: pointer;
	font-family: 'Work Sans', sans-serif;
	font-weight: 700;
	padding: 16px 24px;
	text-transform: uppercase;
	width: auto;
	color: #fff;
	background:#003c6f;	

	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;	

/*	-webkit-box-shadow: 1px 1px 2px rgba(50, 50, 50, 0.5);
	-moz-box-shadow:    1px 1px 2px rgba(50, 50, 50, 0.5);
	box-shadow:         1px 1px 2px rgba(50, 50, 50, 0.5);*/
}


input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover,
input:focus[type="button"],
input:focus[type="reset"],
input:focus[type="submit"],
.button:focus {
	color: #fff;
	border-bottom: none;
	background:#00498a;
}

.button:disabled { color: rgba(255, 255, 255, 0.5)}

.button {
	display: inline-block;
}

.button.orange	 			{ background: #f8971d }
.button.red  				{ background: #ee3524 }
.button.blue  				{ background: #56a0d3 }
.button.navy 				{ background: #003c6f }
.button.lightgray 			{ background: #BEC0C2 }
.button.darkgray			{ background: #414042 }
.button.black				{ background: #000000 }

.button.orange:hover		{ background: #ff9a1f }
.button.red:hover  			{ background: #ff3826 }
.button.blue:hover  		{ background: #61b5ed }
.button.navy:hover 			{ background: #00498a }
.button.lightgray:hover 	{ background: #5a595c }
.button.darkgray:hover		{ background: #5a595c }
.button.black:hover			{ background: #999999 }


.button.white			{ 
	background: #f8f8f8; 
	color: #414042; 
	-webkit-box-shadow: 1px 1px 1px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    1px 1px 1px rgba(50, 50, 50, 0.75);
	box-shadow:         1px 1px 1px rgba(50, 50, 50, 0.75);
}
.button.white:hover		{ background: #fff; color: #222222;  }



/*
select { color: white; background:black }
option:not(:checked) { color: black; background:white  }  */


/*----------  Search Form  ----------*/

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

.search-form {
	overflow: hidden;
}

.site-header .search-form {
	float: right;
}




.entry-content .search-form,
.site-header .search-form {
	width: 50%;
}


.entry-header .default-featured-img { display:none}


.genesis-nav-menu .search input[type="submit"],
.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* ## Add Search Form to Primary Menu
--------------------------------------------- */

.search-form {
	overflow: hidden;
	position: relative;
}


.custom-search {
/*	display:inline-block;*/	
/*	float: right;*/
	/*position: relative;*/
	text-align: right;	
	width: 180px;
	background:#efefef;
	border:none;
	/*margin: 0 20px;*/
	margin-left: auto !important;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.custom-search .search-form {
	display: flex;
	align-items: center;
}

.custom-search .search-form::after {
	content: "";
	display: table;
	clear: both;
}

.custom-search input[type="search"] {
	width: 150px;
	padding-right: 0;
	padding-top:17px;
	padding-bottom:17px;	
	background:#efefef;
	border:none;
	order: 2;
}

.custom-search input[type="submit"] {
	background: transparent;
	border: none;
	box-shadow: none;
	clip: inherit;
	color: #323234;
	display: inline-block;
	padding-right: 0;
	padding-left: 0;
	vertical-align:middle;
	text-indent: -9999px;
	width: 30px;
	height: 29px;
	background: url(assets/img/icon-search.png) center center no-repeat;
	order: 1;
}




.custom-search input[type="submit"]:hover {
	color: #f15123;
}

.site-header .custom-search {
	float: right;
	margin-top: 12px;
}

.entry-content .search-form {
	width: 50%;
}

.genesis-nav-menu .search input[type="submit"],
.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}


	/* ## Move Between Menus based on Width
	--------------------------------------------- */
	@media screen and (max-width: 1199px) {
		.custom-search { width: 100%; padding:0 20px}		
		.slidervideo img {display:flex; width:225px; margin:0 auto}
	}	



/*=====================================
=            Accessibility            =
=====================================*/

/*----------  Screen Reader Text  ----------*/

.screen-reader-text,
.screen-reader-text span,
.screen-reader-shortcut {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus,
.genesis-nav-menu .search input[type="submit"]:focus,
.widget_search input[type="submit"]:focus  {
	clip: auto !important;
	height: auto;
	width: auto;
	display: block;
	font-size: 1em;
	font-weight: bold;
	padding: 15px 23px 14px;
	color: #333;
	background: #fff;
	z-index: 100000; /* Above WP toolbar. */
	text-decoration: none;
	box-shadow: 0 0 5px 0 rgba(0,0,0,.7);
}

.more-link {
	text-transform: uppercase;
	color: #bec0c2;
	margin-left:0px;
	font-size:12px !important;
}
.more-link:hover {
	color: #5a595c;
	border-bottom: 1px solid;
}

/*----------  Skip Links  ----------*/

.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link li {
	height: 0;
	width: 0;
	list-style: none;
}

.genesis-skip-link a {
	border-bottom: 0;
}

.genesis-skip-link a:hover {
	background: #999; /*was f5f5f5*/
}

/* Display outline on focus */
:focus {
	outline:none;
}


/*=================================
=            WordPress            =
=================================*/

/*----------  Defaults  ----------*/

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 20px;
}

img.alignnone,
.alignnone {
	margin-bottom: 12px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 20px 20px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 20px 20px;
}

.wp-caption-text {
	font-size: 14px;
	font-size: 1.4rem;
	font-style: italic;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}


.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 28px;
}

#wpadminbar {
	position: fixed !important;
}
iframe #wpadminbar {display:none !important; }

/*----------  Gallery  ----------*/

.gallery {
	overflow: hidden;
    }

.gallery h4 { margin-top:16px}

.gallery-grid {
/*    display: -ms-flexbox;
    display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;*/	
}	
.gallery-grid a {    
	width: 20%; 
	height: auto;
    position: relative;
    float: left;
    margin: 0 0 0 0;
    padding: 0 0 20% 0;
    overflow:hidden;
	}
.gallery-grid a img {
    max-width: none;
    width: 100%;
    position: absolute;
    top: 0; left: 0;
}





.gallery-item {
	float: left;
	margin: 0 0 28px;
	text-align: center;
}

.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-3 .gallery-item {
	width: 33%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item {
	width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
	width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
	width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	width: 11.1111%;
}

.gallery img {
	height: auto;

}

.gallery img:hover,
.gallery img:focus {

}

/*----------  Avatar  ----------*/

.avatar {
	float: right;
}

.alignleft .avatar {
	margin-left: 24px;
}

.alignright .avatar {
	margin-left: 24px;
}


/*=================================
=            Structure            =
=================================*/

/*----------  Site Containers  ----------*/

.site-container {
	max-width: 1650px;
	margin: 0 auto;
	background: #f8f8f8;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.15);
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.15);
}

.site-inner,
.wrap {
	margin: 0 auto;
	max-width: 1200px;
	width: 100%;
}

.site-footer > .wrap { 
	border-bottom:1px solid #cccccc;
}

.site-inner {
	clear: both;
	margin-top: 40px;
	padding: 20px 10px;
}

.full-width-content:not(.page-search) .site-inner {
	margin: 0;
	padding: 0;
	max-width: none;
	background-color: #ffffff;
}

.full-width-content:not(.page-search) .site-inner .fl-row {
	box-shadow: none;
}

/*----------  Site Header  ----------*/
/*#genesis-nav-primary {z-index: 9999 !important;}
*/
.site-header {
	background: #fff;
	overflow: hidden;
	margin: 0 auto;
	/*position: fixed;*/
	top: 0;
	width: 100%;
	/*z-index: 9999 !important;*/
}

.site-title a {
	width:150px;
	height:350px;
	border-bottom:none;
}
.site-title img {display:block;}

.admin-bar .site-header {
	top: 32px;
}

.site-header > .wrap,
.site-footer > .wrap {
	padding: 20px;
	max-width: 100%;
    width: 100%;
}

.site-header .widget_nav_menu .genesis-nav-menu > .menu-item > a,
footer .widget_nav_menu .genesis-nav-menu > .menu-item > a {
	padding: 0 0 0 15px;
	
}

.title-area {
	float: left;
	/*max-width: 70%;
	width:100%*/
}

.header-widget-area {
/*		   display: -webkit-flex;
	   display: flex;
	   -webkit-flex-direction: column;
	   flex-direction: column;
	   -webkit-align-items: flex-end;
	   align-items: flex-end;	*/
 }

.fixed,
.sticky {
	position:fixed;
	width:100%;	
	z-index:2000;
}




/*----------  Widgets  ----------*/

.widget {
	word-wrap: break-word;
	display: inline;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: 0;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

/*----------  Colors  ----------*/

.orange a 			{ color: #f8971d }
.red a 				{ color: #ee3524 }
.blue a 			{ color: #56a0d3 }
.navy a				{ color: #003c6f }
.lightgray a		{ color: #BEC0C2 }
.darkgray a			{ color: #414042 }


.menu-primary li.red 		{ background-color: #ee3524 }
.menu-primary li.orange 	{ background-color: #f8971d }
.menu-primary li.blue 		{ background-color: #56a0d3 }
.menu-primary li.navy 		{ background-color: #003c6f }
.menu-primary lightgray 	{ background-color: #BEC0C2 }
.menu-primary li.darkgray 	{ background-color: #414042 }


.menu-primary li.red a,
.menu-primary li.orange a,
.menu-primary li.blue a,
.menu-primary li.navy a,
.menu-primary li.lightgray a,
.menu-primary li.darkgray a { color:#fff}

#menu-secondary-menu .red { background-color: #ee3524}
#menu-secondary-menu .orange  { background-color: #f8971d}
#menu-secondary-menu .blue { background-color: #56a0d3}
#menu-secondary-menu .navy { background-color: #003c6f}

#menu-secondary-menu .red:hover { background-color: #ff3826}
#menu-secondary-menu .orange:hover { background-color: #ff9a1f}
#menu-secondary-menu .blue:hover { background-color: #61b5ed}
#menu-secondary-menu .navy:hover { background-color: #003c6f}

#menu-secondary-menu a { color:#fff; padding:10px;} 

#menu-secondary-menu li { margin-left:5px;}

.menu-primary li.red:hover 			{ background-color: #ff3826 }
.menu-primary li.orange:hover 		{ background-color: #ff9a1f }
.menu-primary li.blue:hover 		{ background-color: #61b5ed }
.menu-primary li.navy:hover 		{ background-color: #00498a }
.menu-primary lightgray:hover 		{ background-color: #BEC0C2 }
.menu-primary li.darkgray:hover 	{ background-color: #5a595c }


/*==============================
=            Titles            =
==============================*/

/*----------  Site Header  ----------*/

.site-title {
	font-family: 'Work Sans', sans-serif;
	font-size: 20px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.2;
	margin: 0;
	
}

.site-description {
	/*display: none;*/
	font-size: 1em;
	letter-spacing: 1px;
	color:#56a0d3;
	text-transform:uppercase;
	font-weight:700;
}

/*----------  Widgets  ----------*/

.widget-title,
.footer-widgets .widget-title,
.sidebar .entry-title {
	font-size: 22px;
	font-size: 2.2rem;
	margin-top: 0;
}

	/*----------  Promo Widgets  ----------*/
	/*[id^=acf_widget] .widget-wrap { padding:0 !important}
	
	.widgetpadding { padding: 0 20px 20px 20px; }*/
	.widgetpadding h4 {margin-top: 0;}
	.widgetpadding p { }
	.promo .button { background: #56a0d3; padding: 4px 12px;/*padding: 4px 10px; text-align:center; font-weight:300; font-size:.8em; margin-top:1em*/}
	.promo .button:hover {background: #61b5ed}
	
	.footer-widgets .widget-title {
		margin-top: 0;
		margin-bottom:0;
		font-family: 'Work Sans', sans-serif;
	}

	/*----------  Gallery Widgets  ----------*/
	.gallery .slide img { width:100%; height:auto  }
	.gallery .slick-slide { display:block !important; height: auto !important}

/*----------  Author Box  ----------*/

.author-box-title {
	font-size: 18px;
	font-size: 1.8rem;
	margin-top: 0;
}

/*----------  Archive Description  ----------*/

.archive-title {
	margin: 0;
}


/*==================================
=            Navigation            =
==================================*/
.menu-primary { z-index:9999 !important}
.genesis-nav-menu {
	clear: both;
	line-height: normal;
	font-family: 'Roboto Slab', serif;
}

.genesis-nav-menu .menu-item {
	display: block; /*set to block for responsive menu */
	position: relative;
	text-align: right;
	z-index:1000;
}

.genesis-nav-menu a {
	display: block;
	padding: 20px 10px;
	text-align: left;
}

#menu-secondary-menu .menu-item,
#menu-secondary-menu-1 .menu-item
 {
    display: table-cell;
    position: relative;
    text-align: right;
	float:right
}


.genesis-nav-menu .menu-item.menu-item-has-children > a {
	padding-right: 50px;
}

.genesis-nav-menu > .menu-item > a {
	padding: 20px;
}

/* Sub Menu */

.genesis-nav-menu .sub-menu {
	display: none;
}

.genesis-nav-menu .sub-menu a {
	/*font-size: .8em;*/
	border-bottom: 1px solid #e5e5e5;
/*	margin-left:10px;
	margin-right:10px;*/
	padding-left: 40px;
	word-wrap: break-word;
}

.genesis-nav-menu .sub-menu .sub-menu a {
	padding-left: 60px;
}

	.genesis-nav-menu a:hover {	
	/*border-bottom: none;*/
	}

/*----------  Primary Navigation  ----------*/

.nav-primary,
.nav-primary .genesis-nav-menu {
	width: 100%;	
}

.nav-primary {
	background: #f8f8f8;
	display: none;
	height: 100%;
	overflow-y: auto;
	/*padding-top: 45px;*/
	/*position: fixed;*/
	z-index: 1;
	font-size: 16px;
	font-weight:700;	
}

.nav-primary > .wrap {
	padding: 0;
	max-width: 100%;
    width: 100%;
}


.admin-bar .nav-primary {
	/*padding-top: 111px;*/
}

.nav-primary a { color:#111}

/*----------  Secondary Navigation  ----------*/

.nav-secondary {
	border-bottom: none;
	font-size: .8em;
	display: block; /*set to none for responsive menu*/
	 -webkit-box-ordinal-group: 2; -moz-box-ordinal-group: 2; -ms-flex-order: 2; -webkit-order: 2; order:  2;  
	
}
.nav-secondary:after,
.nav-secondary .wrap:after {clear:none;}

.menu-secondary.genesis-nav-menu { clear:none;}



/*----------  Menu Toggle  ----------*/

.menu-toggle {
	font-family: 'Roboto Slab', serif;
	background: #222222;
	border: 0;
	color: #fff;
	/*float: left;*/
	font-weight: bold;
	font-size:16px;
    position: relative;
    display: inline-block;	
	padding: 12px 50px;
	text-align: left;
	text-transform: none;
	width:100%;

	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;	
	
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;	
}

.menu-toggle:before{ 
	content: "\f333";
	font: normal 40px/1 'dashicons';
	position: absolute;
	top: 5px;
	left:10px;
}

.menu-toggle:focus,
.menu-toggle:active,
.menu-toggle:hover,
.sub-menu-toggle:focus,
.sub-menu-toggle:active,
.sub-menu-toggle:hover {
	/*background: transparent;*/
	color: #fff;
	outline:none;
}

.sub-menu-toggle {
	background: transparent;
	border: 0;
	padding: 20px;
	position: absolute;
    right: 0;
    top: 0;
}


.sub-menu-toggle:before {
	color: #fff;
    content: "\f347";
    display: block;
    font-family: "dashicons";
    font-size: inherit;
    line-height: inherit;
}

.sub-menu-toggle.activated {
	transform: rotate(180deg);
}

/*=====================================
=            Content Areas            =
=====================================*/

/*----------  Entries  ----------*/

.content .entry .entry-title {
	font-family: 'Work Sans', sans-serif;
	margin-top: 0;
	font-size:2.0rem;
	font-size:20px;
	margin-bottom:6px;
}

.entry-title a { color:#444;}

.entry {
	text-rendering: optimizeLegibility;
	text
}

.entry-content code {
	background-color: #ddd;
}

/*----------  Entry Meta  ----------*/

p.entry-meta {
	color: #999;
}

/*----------  Comments  ----------*/

.comment-header {
	margin-bottom: 20px;
	overflow: hidden;
}

.comment-author {
	margin: 0;
}

.comment .avatar {
	float: left;
	margin: 0 10px 0 0;
}

.says,
.comment-meta,
.comment-edit-link {
	font-size: .8em;
	font-style: italic;
	margin: 0;
}

.comment-reply {
	clear: both;
}

li.pingback,
li.comment > article {
	margin-bottom: 40px;
}

ul.children {
	margin-left: 10px;
}

.comment-reply-title > small,
.logged-in-as {
	font-family: 'Work Sans', sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-style: italic;
	font-weight: normal;
}

/*----------  Pagination  ----------*/

.pagination {
	overflow: hidden;
	padding: 40px 0;
}

.pagination ul {
	text-align: center;
}

.pagination li {
	display: inline-block;
	/*border: 1px solid #003c6f;
	background-color: #003c6f;*/
    color: #003c6f;
    cursor: pointer;
    font-size: 12px;
    width: auto;
}

.pagination li:hover {  border-bottom: 1px solid #003c6f}

.pagination li.active {
    background: #fff none repeat scroll 0 0;
    font-weight: bold;
	border-bottom: none;
	padding-bottom:1px;
}
.pagination li.active a {   color: #444;}


.pagination a {
    color: #003c6f;
    display: block;
    height: 30px;
    line-height: 28px;
    min-width: 30px;
    padding: 0 5px;
    text-align: center;
}

.pagination .pagination-next,
.pagination .pagination-previous {
	display: inline-block;
	width: auto;
}

/*----------  jPages  ----------*/


.holder {
	margin: 15px 0;
}

.holder a {
	cursor: pointer;
	margin: 0 2px 10px;
	padding:0 5px;
	line-height:30px;
	color: #003C6F;
		background-color: #fff;
		width: auto;
		min-width:30px;
		height:30px;
		display:inline-block;
		text-align:center;
	border: 0px solid #003C6F;

}

.holder a:hover {
	background-color: #fff;
	color: #999; /*was 444*/
	text-decoration: underline
}


.holder a.jp-current, a.jp-current:hover { 
	color: #444;
	background:#fff;
	font-weight: bold;
}

.holder a.jp-disabled, a.jp-disabled:hover {
	color: #bbb;
	text-decoration:none; 
}

.holder a.jp-current, a.jp-current:hover,
.holder a.jp-disabled, a.jp-disabled:hover {
	cursor: default; 

}

.holder span { margin: 0 5px; }





/*================================
=         Custom Templates       =
================================*/

/*----------  Events  ----------*/

.eventdetails {
	line-height: 1.2em;
}

.eventdetails .sectionheader {
	margin-top: 15px;
	margin-bottom: 15px;
	font-size: 16px;
	font-family: 'Work Sans', sans-serif;
	color: #000000;
}

.eventlist > .row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}

.eventlist .eventcontainer {
	padding: 0 10px 5px 10px;
}

.eventdetails .icon {
	-ms-flex: 0 0 10%;
	flex: 0 0 10%;
	max-width: 10%; /*https://github.com/philipwalton/flexbugs/issues/3*/
	background-image: url(assets/img/icon-special-event.png);
	background-position: center top;
	background-size: contain;
	background-repeat: no-repeat;
}

@media screen and (min-width: 560px) {
	.eventdetails .icon {
		-ms-flex: 0 0 5%;
		flex: 0 0 5%;
		max-width: 5%;
	}
}

.eventdetails .icon-event-ride {
	background-image: url(assets/img/icon-training-ride.png);
}

.eventdetails .icon-workshop {
	background-image: url(assets/img/icon-workshop.png);
}

.eventdetails .eventtitle {
	-ms-flex: 0 0 90%;
	flex: 0 0 90%;
	max-width: 90%;
}

@media screen and (min-width: 1080px) {
	.eventdetails .eventtitle {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
}

.eventdetails .eventtitle,
.eventdetails .eventtitle a {
	color: #003c6f;
}

.eventdetails .eventcat {
	-ms-flex: 0 0 80%;
	flex: 0 0 80%;
	max-width: 80%;
	color: #b0b4b8;
	margin-left: 10%;
}

@media screen and (min-width: 560px) {
	.eventdetails .eventcat {
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
		margin-left: 5%;
		padding: 10px 10px 20px 10px;
	}
}

@media screen and (min-width: 1080px) {
	.eventdetails .eventcat {
		-ms-flex: 0 0 15%;
		flex: 0 0 15%;
		max-width: 15%;
		margin-left: 0;
		padding-top: 0;
	}
}

.eventdetails .btn {
	color: #fff;
	text-transform: uppercase;
	margin: 0;
	padding: 5px;
	width: 100%;
	max-width: 90px;
	display: table;
	text-align: center;
	background: #003c6f;
}

.eventdetails .eventdatetime {
	-ms-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%;
	margin-left: 10%;
	padding: 10px;
}

@media screen and (min-width: 560px) {
	.eventdetails .eventdatetime {
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
		margin-left: 0;
		padding: 10px 10px 20px 10px;
	}
}

@media screen and (min-width: 1080px) {
	.eventdetails .eventdatetime {
		-ms-flex: 0 0 15%;
		flex: 0 0 15%;
		max-width: 15%;
		padding: 0 10px 5px 10px;
	}
}

.eventdetails .eventtime {
	color: #bec0c2;
	font-size: 0.8em;
	line-height: 1.3em;
}

.eventdetails .eventurl {
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
	margin-left: calc(10px + 10%);
	padding: 10px 10px 20px 0;
}

@media screen and (min-width: 560px) {
	.eventdetails .eventurl {
		margin-left: 0;
	}
}

@media screen and (min-width: 1080px) {
	.eventdetails .eventurl {
		-ms-flex: 0 0 10%;
		flex: 0 0 10%;
		max-width: 10%;
		padding: 0 10px 5px 10px;
	}
}

/*----------  Event List  ----------*/

.eventlist .eventtitle {
	font-size:16px;
	color: #444444; 
	vertical-align: top;
}
.eventlist .event_address { font-size:.8em;  color:#bec0c2; line-height:1.3em; margin-bottom:10px; margin-top:3px; }
.eventlist .address1 {}
.eventlist .address2 {}
.eventlist .city {}

.eventlist .eventdetails { float:right; color:#bec0c2; }
.eventlist .event_date { float:left; margin-right:20px}
.eventlist .event_date .time { font-size:.8em}
.eventlist .rsvp {float:left; }

/*----------  Fundraisers  ----------*/

.fundraisers { line-height:1.2em; font-size:0.9em }
.sectionblock .fundraisers  {font-size: 1em}
.row {width: 100%; display:table; clear:both; margin-bottom:20px;}

.fundraisers .counter {
    color: #56a0d3;
    float: left;
    margin-right: 10px;
    text-align: right;
    width: auto;
	min-width:20px;
}
.fundraisers .name { float:left; font-weight:700;}
.fundraisers .location { display:block; color:#b0b0b0; font-weight:300}
.fundraisers .amount { float:right; color:#56a0d3;}

.viewall { text-transform:uppercase}

/*----------  Sponsors  ----------*/
.clientwebsite { margin-bottom:20px; display:block}

.sponsors {text-align: center}
.sponsors.thumbnail { text-align:center;}
.sponsors.medium { text-align:center;}
.sponsors.large { text-align:center;}
.sponsors.large img { max-width:500px; width: 100%;}

/*================================
=            Sidebars            =
================================*/

/*.sidebar {
	display: none;
}
*/


/*===============================
=            Widgets            =
===============================*/

/*----------  Header Widget Area  ----------*/

.header-widget-area {
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-top: 6px;
    width: auto !important;
	min-width:50%;
}
/*----------  Sidebar Widgets  ----------*/

.sidebar .widget {
	margin-bottom: 20px;
}

/*======================================
=            Common Classes            =
======================================*/

/*----------  Archive/Author Box  ----------*/

.archive-description,
.author-box {
/*	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
    padding: 40px 0 40px;
*/}

.author-box {
	font-size: .8em;
	margin: 20px 0 40px;
}

.archive-description {
	margin: 0 0 40px;
}

.archive-description p:last-child,
.author-box p:last-child {
	margin-bottom: 0;
}

.author-box .avatar {
	margin: 0 0 24px 24px;
	max-width: 70px;
}

/*----------  Breadcrumbs  ----------*/

.breadcrumb {
	font-size: .8em;
	font-style: italic;
	margin-bottom: 20px;
}


/*======================================
=            Common Plugins            =
======================================*/

/*----------  Jetpack  ----------*/

#wpstats {
	display: none;
}

/*----------  Fancybox  ----------*/
a#fancybox-close:hover { border-bottom:none}

/*----------  Genesis eNews Widget  ----------*/

.enews input {
	margin-bottom: 20px;
}

/*----------  Slick Slider ----------*/

/* Slider */
.slick-slider
{
    position: relative;

    display: block;

    -moz-box-sizing: border-box;
         box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.slick-slider img {display:block}
.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 300px;
    min-height: 1px;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;		
}

.home .slick-slide {height: 450px;}

[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
	max-width:205px;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
/*	padding-left:100px;
	padding-right:100px;*/
}
.slick-loading .slick-slide
{translateY(-50%)
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}





/* Slider */
.slick-loading .slick-list
{
    background: #fff url('assets/img/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal; 

    src: url('assets/fonts/slick.eot');
    src: url('assets/fonts/slick.eot?#iefix') format('embedded-opentype'), 
		 url('assets/fonts/slick.woff') format('woff'), 
		 url('assets/fonts/slick.ttf') format('truetype'), 
		 url('assets/fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
	
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: none;

    width: 60px;
    height: 60px;
    padding: 0;
    margin-top: -10px\9; /*lte IE 8*/
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
   /*font-family: 'slick';*/
   font-family:'dashicons';
    font-size: 60px;
    line-height: 1;

    opacity: .5;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: 5px;
	z-index:10
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '\f341';
}
[dir='rtl'] .slick-prev:before
{
    content: '\f345';
}

.slick-next
{
    right: 5px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '\f345';
}
[dir='rtl'] .slick-next:before
{
    content: '\f341';
}

/* Dots */
.slick-slider
{
    /*margin-bottom: 30px;*/
}

.slick-dots
{
    position: absolute;
    bottom: 0px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}
ul.slick-dots {	margin-left:0; margin-bottom:0;}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 1px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;

	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;		
	
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 14px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .5;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: 1;
}


.videolabel { display:block; text-align:center}


/*	.ctablock 		{flex: 1 0px; max-width:450px; }
	.topleft 		{ align-self: flex-start }
	.centerleft 	{ align-self: center;}
	.bottomleft 	{align-self: flex-end; display:inline-block}

	.topright 		{ align-self: flex-start }
	.centerright 	{ align-self: center;}
	.bottomright 	{align-self: flex-end }	
	
	.textshadow 	{text-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);}*/
	


	/*.topleft .slidervideo 		{ -webkit-align-self: flex-end; -ms-flex-item-align: end; align-self: flex-end;  margin-left:auto;  -webkit-box-ordinal-group: 2; -moz-box-ordinal-group: 2; -ms-flex-order: 2; -webkit-order: 2; order:  2;   }*/

.ctablock {  
/*	position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
	width: 50%*/

	/*display: table-cell;*/
}


.centerright { text-align: right}

.slidervideo { 
	position: relative;  
	
	text-align:right;
	max-width: 225px;
	width: 225px;
	/*min-height:200px;*/
	background: rgba(0,0,0,0.75); 
	color: #fff; 
	padding:10px;   
	display: inline-block;
}

.slidervideo img {
	width: 100% !important;
	height: auto !important;
}

.slider_column_wrapper {display:table-cell; text-align: left; width: 50%; }
.slider_column_wrapper.video {text-align:right; vertical-align: bottom; }




.slider_column_wrapper:nth-of-type(2n).cta { text-align: right}


.topleft .cta { vertical-align: top}
.topright .cta { vertical-align: top}

.centerleft .cta { vertical-align: middle}
.centerright .cta { vertical-align: middle}

.bottomleft .cta { vertical-align: bottom}
.bottomright .cta { vertical-align: bottom}

.flexgroup {
 	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
	height: 370px;
}

.flexgroup .cta,
.flexgroup .video {display:block}  

.topleft .cta { vertical-align: bottom; text-align: left; order: 1}
.topright .cta { vertical-align: bottom; text-align: right; order: 2}

.centerleft .cta { vertical-align: bottom; text-align: left; order: 1; -webkit-align-self: center; -ms-flex-item-align: center; align-self: center;}
.centerright .cta { vertical-align: bottom; text-align: right; order: 2;-webkit-align-self: center; -ms-flex-item-align: center; align-self: center;}

.bottomleft .cta { vertical-align: bottom; text-align: left; order: 1}
.bottomright .cta { vertical-align: bottom; text-align: right; order: 2}



.topleft .video { vertical-align: bottom; text-align: right; order: 2; -webkit-align-self: flex-end; -ms-flex-item-align: end; align-self: flex-end;}
.topright .video { vertical-align: bottom; text-align: left; order: 1; -webkit-align-self: flex-end; -ms-flex-item-align: end; align-self: flex-end;}

.centerleft .video { vertical-align: bottom; text-align: right; order: 2; -webkit-align-self: flex-end; -ms-flex-item-align: end; align-self: flex-end;}
.centerright .video { vertical-align: bottom; text-align: left; order: 1; -webkit-align-self: flex-end; -ms-flex-item-align: end; align-self: flex-end;}

.bottomleft .video { vertical-align: bottom; text-align: right; order: 2; -webkit-align-self: flex-end; -ms-flex-item-align: end; align-self: flex-end;}
.bottomright .video { vertical-align: bottom; text-align: left; order: 1; -webkit-align-self: flex-end; -ms-flex-item-align: end; align-self: flex-end;}


@media screen and (max-width: 767px) {
	.topleft .video { vertical-align: bottom; text-align: right; order: 2}
	.topright .video { vertical-align: bottom; text-align: right; order: 2}

	.centerleft .video { vertical-align: bottom; text-align: right; order: 2}
	.centerright .video { vertical-align: bottom; text-align: right; order: 2}

	.bottomleft .video { vertical-align: bottom; text-align: right; order: 2}
	.bottomright .video { vertical-align: bottom; text-align: right; order: 2}
	
}



/*.topright .slider_column_wrapper:nth-of-type(1n) {float: right;  text-align: right;}
.topleft .slider_column_wrapper:nth-of-type(1n) {float: left;  text-align: left;}


.centerright .slider_column_wrapper:nth-of-type(1n) {float: right; text-align: right;}
.centerleft .slider_column_wrapper:nth-of-type(1n) {text-align: left; vertical-align: middle}

.bottomright .slider_column_wrapper:nth-of-type(1n) { text-align: right; vertical-align: bottom}
.bottomleft .slider_column_wrapper:nth-of-type(1n) { text-align: left; vertical-align: bottom}


.topright .slider_column_wrapper:nth-of-type(2n) {text-align: left;vertical-align: top}
.topleft .slider_column_wrapper:nth-of-type(2n) {float: right; text-align: right; vertical-align: bottom}

.centerright .slider_column_wrapper:nth-of-type(2n) {text-align: left;vertical-align: bottom; }
.centerleft .slider_column_wrapper:nth-of-type(2n) {text-align: right;vertical-align: bottom; }

.bottomright .slider_column_wrapper:nth-of-type(2n) {text-align: left;vertical-align: bottom; }
.bottomleft .slider_column_wrapper:nth-of-type(2n) { text-align: right;vertical-align: bottom; }*/


.slidervideo #play {
    background: rgba(0, 0, 0, 0) url("assets/img/play.png") no-repeat scroll center center;
    height: 45px;
    left: 50%;
    margin: -25px 0 0 -15px;
    position: absolute;
    top: 50%;
    width: 40px;
    z-index: 9999;
	  pointer-events: none;

}




.slidervideo a { color:#fff;}
.slidervideo span { padding-top: 5px; display:block; font-size:11px; text-transform:uppercase; font-weight:700; line-height:1.25em}
.slick-slide { display:flex !important}

.slidecontents{
  padding: 40px 100px;
  /*display: table;*/
  height:100%; 
  width: 100%;
  max-width: 100%;
}



.slidecontents h2 { margin-top:0; margin-bottom:12px;}
.slidecontents p { line-height: 1.3em;  margin-bottom:20px;}

.slidecontents h2,
.slidecontents p {
	text-shadow: 2px 2px 5px rgba(0, 0, 0, .75);

	}

/*.slidecontents .button { background:gray; color:white; padding:12px; border-bottom:0; text-align:center }
.slidecontents .button:hover { background:black; color:white; }*/


/*---------- Gravity Forms ----------*/
.gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type="text"], 
.gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container select {
    margin-bottom: 0 !important;
}
.gform_wrapper textarea {
    margin-top: 0.75em !important;
}

.gform_button.button { 
	background-color: #000 !important; 
	color: #fff !important; 
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.site-container .gform_wrapper li.gfield.gfield_error, 
.site-container .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning{
    background-color: none !important;
	background:none !important;
    border-bottom: none !important;
    border-top: none !important;
    margin-bottom: none !important;
    padding: 0;
}
.gform_wrapper div.validation_error { display:none !important}

.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description, 
.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container, 
.gform_wrapper li.gfield.gfield_error.gfield_contains_required fieldset legend.gfield_label, 
.gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
    margin-left: 0 !important;
}

.gform_wrapper .gfield_description + .gform_wrapper .gfield_description.validation_message, .gform_wrapper .ginput_container + .gfield_description.validation_message {
    margin-top: 0 !important;
}

.site-container .gform_wrapper .gfield_description.validation_message, .site-container .gform_wrapper .top_label .gfield_description.validation_message {
    padding: 0 !important;
}


/*---------- Ultimate Posts Widget ----------*/
.site-container .upw-posts .entry-image {
    float: left;
    margin-bottom: 10px;
    margin-right: 20px;
	width:33%;
	max-width:250px;
}
.site-container .upw-posts article {
    border-bottom: none;
	margin-bottom: 0;
}

.site-container .upw-posts .entry-title { margin-bottom: 0;}
.site-container .upw-posts .entry-meta { margin-bottom:.5em; margin-top:.25em;}

@media screen and (max-width: 480px) {

	.upw-posts .entry-image,
	embed, iframe, img, object, video, .wp-caption {
	width:100%;
	max-width:100%;
	}
	.upw-posts .entry-image img{
	width:100%; height:auto;	
	}
	
	.footer-widgets-1 img {
		max-width: 25%;
		width: 25%;
		float: none;
		margin: 0 auto;
		display: block;		
	}
	
	.site-container .upw-posts .entry-image {
	  float:none;
	  margin-bottom:10px;
	  margin-right:0;
	  max-width:100%;
	  width:100%;
	}
	
}


/*==============================
=            Footer            =
==============================*/
.footerwrap { background: #fff; border-top:1px solid #ccc; /*font-size:12px;*/
}

.footerwrap p, .copyright {
	font-size: 14px;
}

.site-footer {
	clear: both;
	overflow: hidden;
	padding: 20px;
	max-width: 100%;
	margin:0 auto;
	display:none;
}

.site-footer .title-area {
    padding-top: 0;
}

.widget_nav_menu .genesis-nav-menu {font-family: 'Work Sans', sans-serif; text-transform:uppercase; font-weight:700}

.site-header .simple-social-icons {margin:2px !important}
.site-header .simple-social-icons ul li,
.site-footer .simple-social-icons ul li {margin: 0 0 4px 5px !important}
.simple-social-icons ul li a { vertical-align: top; display: list-item !important;}

.site-footer .wrap { }

.site-footer p {
	margin-bottom: 0;
}

.copyright { text-align:center; padding: 20px 20px 0;  }
.copyright .genesis-nav-menu { clear:none; display:inline-block; font-family: 'Work Sans', sans-serif; }
.copyright .genesis-nav-menu a { padding: 0 10px 0 6px; font-size:1em; font-weight:700}
.copyright .genesis-nav-menu .menu-item { display:inline-flex}

/*----------  Widgets  ----------*/

.footer-widgets {
	clear: both;
	overflow: hidden;
	padding: 20px;
}

.footer-widgets .widget {
	margin-bottom: 40px;
}


/*=====================================
=            Media Queries            =
=====================================*/

/*----------  Retina (2x)  ----------*/

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {

}


/*----------  992  ----------*/
@media only screen and (min-width : 992px) {

	
/* Column Classes
 *
 * Width: 1200px
 * Gutter: 20px
 * Link: http://www.billerickson.net/column-class-generator/
--------------------------------------------- */

.five-sixths,
.four-sixths,
.four-fifths,
.one-fifth,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-fifths,
.three-sixths,
.two-fourths,
.two-fifths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 1.66666666667%;
}
 
.one-half,
.three-sixths,
.two-fourths {
	width: 49.1666666667%;
}
 
.one-third,
.two-sixths {
	width: 32.2222222222%;
}
 
.four-sixths,
.two-thirds {
	width: 66.1111111111%;
}
 
.one-fourth {
	width: 23.75%;
}
 
.three-fourths {
	width: 74.5833333333%;
}
 
.one-fifth {
	width: 18.6666666667%;
}
 
.two-fifths {
	width: 39%;
}
 
.three-fifths {
	width: 59.3333333333%;
}
 
.four-fifths {
	width: 79.6666666667%;
}
 
.one-sixth {
	width: 15.2777777778%;
}
 
.five-sixths {
	width: 83.0555555556%;
}
 
.first {
	clear: both;
	margin-left: 0;
}
	
	



}



/*----------  768  ----------*/

@media screen and (min-width: 768px) {

/* Column Classes
 *
 * Width: 1000px
 * Gutter: 20px
--------------------------------------------- */

/*	.five-sixths,
	.four-sixths,
	.four-fifths,
	.one-fifth,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-fifths,
	.three-sixths,
	.two-fourths,
	.two-fifths,
	.two-sixths,
	.two-thirds {
		float: left;
		margin-left: 2%;
	}
	 
	.one-half,
	.three-sixths,
	.two-fourths {
		width: 49%;
	}
	 
	.one-third,
	.two-sixths {
		width: 32%;
	}
	 
	.four-sixths,
	.two-thirds {
		width: 66%;
	}
	 
	.one-fourth {
		width: 23.5%;
	}
	 
	.three-fourths {
		width: 74.5%;
	}
	 
	.one-fifth {
		width: 18.4%;
	}
	 
	.two-fifths {
		width: 38.8%;
	}
	 
	.three-fifths {
		width: 59.2%;
	}
	 
	.four-fifths {
		width: 79.6%;
	}
	 
	.one-sixth {
		width: 15%;
	}
	 
	.five-sixths {
		width: 83%;
	}
	 
	.first {
		clear: both;
		margin-left: 0;
	}*/



	/* Site Header */
	.title-area {display: flex;}
	.site-title {
	float: left;
	}

	.site-description {
		float:left;
		margin-bottom:5px;
		align-self: flex-end;
	}
	.site-footer .site-description { padding-bottom:8px;}

	
	/* Typography */
	body,
	body > div,
	.author-box {
		font-size: 15px;
		font-size: 1.5rem;
	}
	.entry-title { color: #003c6f; margin-bottom:0}
	
/*	h1,
	.entry-title {
		font-size: 40px;
		font-size: 4rem;
		line-height: 1.25em;
	}*/

	h2 {
		font-size: 32px;
		font-size: 3.2rem;
		line-height: 1.25em;
	}

	h3 {
		font-size: 24px;
		font-size: 2.4rem;
		line-height: 1.25em;
	}

	h4,
	h5,
	h6 {
		font-size: 18px;
		font-size: 1.8rem;
		line-height: 1.1em;
	}

	blockquote {
		font-size: 1.3em;
		padding-left: 40px;
	}

	/* Structure */
	.site-inner,
	.site-footer {
		padding: 20px 0;
	}

	.footer-widgets,
	.site-header > .wrap {
	}

	/* Media */
	.author-box .avatar {
		max-width: 100%;
	}

	/* Comments */
	.comment .avatar {
		margin-right: 24px;
	}

	ul.children {
		margin-left: 40px;
	}

	/* Pagination */
	.pagination .pagination-next,
	.pagination .pagination-previous {
		display: inline-block;
		width: auto;
	}

/*	.pagination .pagination-next {
		float: right;
	}

	.pagination .pagination-previous {
		float: left;
	}
*/	
	/* Footer Widgets */
	.footer-widgets-1,
	.footer-widgets-2 {
		float: left;
	}

	.footer-widgets-1 {
		margin-left: 0;
	}

	.footer-widgets-2 {
		margin-left: 2.5%;
	}

	.footer-widgets-1 {width: 35%;}
	.footer-widgets-2 {width: 62.5%;}
}

.footer-widgets-1 .widgettitle  { font-size:12px; color:#000}
.footer-widgets-2 .textwidget { max-width:500px;}

/*----------  1200  ----------*/

@media screen and (min-width: 1200px) {

	.nav-primary,
	.nav-primary .genesis-nav-menu {
		width: 100%;	
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;	
		flex-wrap:wrap;	
	}
	
	.is-sticky #menu-primary-navigation	{
		Box-Shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.05);
		transition: all 0.5s ease;
		background-color:#F8F8F8;
	}

	#menu-primary-navigation {
		display: flex;
		flex-flow: row nowrap;
		justify-content: center;
	}

	#menu-primary-navigation > .menu-item {
		width: 100%;
	}

	/* Structure */

	.site-inner {
		
	}


	.site-header > .wrap {
		/*padding: 20px 0;*/
	}
	
	.title-area {
		float: left;
		max-width: 70%;
		width: auto;
	}	

	.header-widget-area {
/*	   display: -webkit-flex;
	   display: flex;
	   -webkit-flex-direction: column;
	   flex-direction: column;
	   -webkit-align-items: flex-end;
	   align-items: flex-end;		*/
	}

	#menu-primary-navigation > li.menu-item {
		width: 13.28%;
	}
	#menu-primary-navigation > li > a {
		text-align: center;
	}
	#menu-primary-navigation > li.custom-search {
		width: 20.32%;
	}

	.menu-item-has-children > a:after  {
		content: "\f347";
		font-family: "dashicons";
		padding-left: 8px;
		font-size: 16px;
		display: inline-block;
		vertical-align: middle;
	}
	


	/*----------  Columns  ----------*/

/*	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		float: left;
		margin-left: 2.564102564102564%;
	}

	.one-half,
	.three-sixths,
	.two-fourths {
		width: 48.717948717948715%;
	}

	.one-third,
	.two-sixths {
		width: 31.623931623931625%;
	}

	.four-sixths,
	.two-thirds {
		width: 65.81196581196582%;
	}

	.one-fourth {
		width: 23.076923076923077%;
	}

	.three-fourths {
		width: 74.35897435897436%;
	}

	.one-sixth {
		width: 14.52991452991453%;
	}

	.five-sixths {
		width: 82.90598290598291%;
	}

	.first {
		clear: both;
		margin-left: 0;
	}*/




	/* Typography */

	h1{
		font-size: 32px;
		font-size: 3.2rem;
		line-height: 1.05em;
	}
	

	h2 {
		font-size: 28px;
		font-size: 2.8rem;
		line-height: 1.25em;
	}

	h4.entry-title, h2.entry-title, h3.widgettitle {
		font-size: 20px;
		font-size: 2.0rem;
		line-height: 1.25em;
	}

	h3 {
		font-size: 20px;
		font-size: 2.00rem;
	}

	h4,
	h5,
	h6 {
		font-size: 20px;
		font-size: 2rem;
		line-height: 1.25em;
	}

	.site-title {
		font-size: 30px;
		font-size: 3rem;
	}

	/* Navigation */

	.genesis-nav-menu {
		clear: both;
		line-height: 1;
		text-align: left;
		display: inline;
	}

	.genesis-nav-menu .menu-item {
		position: relative;
		text-align: left;
	}

	.genesis-nav-menu a {
		border-bottom: 0;
		display: block;
		padding: 20px;
	}

	.genesis-nav-menu > .menu-item > a {
		padding: 20px;
		white-space:nowrap;		
	}


	/* Sub Menu */

	.genesis-nav-menu .sub-menu {
		display: none;
		left: 0;
		margin-left: 0;
		position: absolute;
		width: 300px;
		z-index: 99;
		line-height:1.2em;
		-webkit-box-shadow: 0px 1px 20px 0px rgba(0,0,0,0.15);
		-moz-box-shadow: 0px 1px 20px 0px rgba(0,0,0,0.15);
		box-shadow: 0px 1px 20px 0px rgba(0,0,0,0.15); 	
		background: #fff;	
	}
.genesis-nav-menu .sub-menu li { padding:0 20px;}
.genesis-nav-menu .sub-menu li .sub-menu  { margin-left:180px;}

	.genesis-nav-menu .sub-menu a {
		/*background: #fff;*/
		/*border: 1px solid #ddd;*/
		border-top: 0;
		padding: 20px;
		word-wrap: break-word;
	}
	
.menu li.red .sub-menu a,
.menu li.orange .sub-menu a,
.menu li.blue .sub-menu a,
.menu li.navy .sub-menu a,
.menu li.lightgray .sub-menu a,
.menu li.darkgray .sub-menu a	{ 
	padding:20px 0;
	background-color: #fff;
	color: #999999;

}

	.menu li.red .sub-menu a:hover 			{ color: #ee3524; }
	.menu li.orange .sub-menu a:hover 		{ color: #f8971d; }
	.menu li.blue .sub-menu a:hover 		{ color: #56a0d3; }
	.menu li.navy .sub-menu a:hover 		{ color: #003c6f; }
	.menu li.lightgray .sub-menu a:hover	{ color: #BEC0C2; }
	.menu li.darkgray .sub-menu a:hover		{ color: #414042; }
	
	#menu-footer-menu a {color: #222}
	#menu-footer-menu a:hover {color: #000}
	
	#menu-footer-menu li:after { content: " \00b7"; }
	#menu-footer-menu li:last-child:after { content: ""; }

	.genesis-nav-menu .sub-menu > .menu-item:first-child {

	}

	.genesis-nav-menu .sub-menu .sub-menu {
		margin: -1px 0 0 198px;
		top: 0;
	}

	.genesis-nav-menu .sub-menu .sub-menu a {
		padding: 20px;
	}

	.genesis-nav-menu .sub-menu a,
	.genesis-nav-menu .sub-menu .menu-item {
		display: block;
	}

	.genesis-nav-menu .menu-item-has-children:hover > .sub-menu {
		display: block;
		left: auto;
	}

	/* Genesis Navigation */

	.nav-primary,
	.nav-primary .genesis-nav-menu {
		width: 100%;
	}

	.nav-primary,
	.admin-bar .nav-primary {
		display: block;
		height: auto;
		overflow: visible;
		padding: 0;
/*		position: static;*/

	}


	.nav-secondary > .wrap {
		padding: 0 0 0 40px;
	}


	/* Secondary Navigation */

	.nav-secondary {
		display: block;
	}
	.nav-secondary .genesis-nav-menu {float:right
	}
	.nav-secondary .genesis-nav-menu a { padding:10px;}

	/* Mobile Navigation */

	.menu-toggle,
	.sub-menu-toggle {
		display: none;
	}

	.genesis-nav-menu .menu-item.menu-item-has-children > a {
		padding: 20px;
	}

	/* Layout Wrappers */

	.content-sidebar-sidebar .content-sidebar-wrap,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-sidebar-content .content-sidebar-wrap {
		width: 1200px;
	}

	.content-sidebar-wrap::after {
		content: '';
		display: table;
		clear: both;
	}

	.content-sidebar-sidebar .content-sidebar-wrap {
		float: left;
	}

	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-sidebar-content .content-sidebar-wrap {
		float: right;
	}

	.content {
		float: right;
		width: 850px;
	}
	
	.sidebar-content-sidebar .content-sidebar-wrap .content {
	width: 500px;		
}

	.content-sidebar .content,
	.content-sidebar-sidebar .content,
	.sidebar-content-sidebar .content {
		float: left;
	}

	.content-sidebar-sidebar .content,
	.sidebar-content-sidebar .content,
	.sidebar-sidebar-content .content {
		width: 500px;
	}

	.full-width-content .content {
		width: 100%;
	}

	/* Primary Sidebar */

	.sidebar-primary {
		float: right;
		width: 330px;
	}

	.sidebar-content .sidebar-primary,
	.sidebar-sidebar-content .sidebar-primary {
		float: left;
	}

	/* Secondary Sidebar */

	.sidebar-secondary {
		float: left;
		width: 330px;
	}

	.content-sidebar-sidebar .sidebar-secondary {
		float: right;
	}

	/* Widget Areas */

	.sidebar,
	.header-widget-area {
		/*display: flex;*/
	}

.header-widget-area {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-align-items: flex-end;
	align-items: flex-end;	
	margin-top: 6px;
   -webkit-justify-content: flex-end;
   justify-content: flex-end;
 }	
	

	.footer-widgets {
		font-size:.8em;
	}

	/* Slick Nav */	
	.slick-prev,
	.slick-next
	{ display:block;
	}

}

/*----------  1600  ----------*/

@media only screen and ( max-width: 1600px ) {


}



.rpwe-li { list-style:none !important}



/*----------  TEMPORARY - Add to correct section when done  ----------*/

.sidenav { margin-bottom:20px;}

.thissection { 
	text-transform:uppercase; 
	font-size:14px; 
	font-weight:700;
	padding:10px 20px ;
	border-bottom: 1px solid #e5e5e5;
	color: #EE3524;
}

.thissection a {
	color: #EE3524;
}

#accordionbox, 
.sectionblock, aside .widget-wrap
 {
	width:100%;
	float:left;
    background: #fff; 
    padding: 20px; 
    margin-bottom: 20px;

	-webkit-box-shadow: 0 1px 1px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 1px 1px 0px rgba(0,0,0,0.1);
	box-shadow: 0 1px 1px 0px rgba(0,0,0,0.1);	
}

aside #accordionbox { padding:0}


.blog .content,
.single .content {
		float:right;
    background: #fff; 
    padding: 20px; 
    margin-bottom: 20px;
	-webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.25);
	box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.25);	
	}



.site-inner .widget-wrap {
    background: #fff; 
	margin-bottom: 20px;	
}


.sectionblock h3 { margin-top:0}
/*.sectionblock p:last-of-type {margin-bottom: 0}*/

/*Accordion*/
#accordionbox {
	width: 100%;
    background: #fff; 	
	margin-bottom:20px;
}

#accordion ul {
	width: 100%;
	display:block;
}

#accordion ul li {border-bottom: 1px solid #e5e5e5; padding:10px 20px}
#accordion ul ul li {border-bottom: none; padding:0}



/*links*/

#accordion a { color: #999999;}
#accordion a:hover, #accordion .current-menu-item a {color: #414042; 	border-bottom: 0;}
#accordion .current-menu-item a {color: #ee3524;}


#accordion ul ul li a {
	text-decoration: none;
	font-size: 11px;
	line-height: 27px;
	display: block;
	padding: 0 15px;
	/*transition for smooth hover animation*/
	transition: all 0.15s;
}
/*submenus*/
#accordion .sub-menu a {color: #999999;}
#accordion ul ul li a:hover {
	color: #414042;
}
/*hide the non active LIs by default*/
#accordion ul ul {
	display: none;
}
#accordion li.current-menu-item ul {
	display: block;
}








/*Accordion Side Nav*/
#accordionbox .wpb_category_n_menu_accordion * {
  -webkit-font-smoothing: antialiased;
}
#accordionbox .wpb_category_n_menu_accordion ul li {
  list-style: none;
  display: block;
  position: relative;
  border-bottom:1px solid #e5e5e5;
}

#accordionbox .wpb_category_n_menu_accordion ul li:last-of-type {
	border-bottom: none
}
#accordionbox .wpb_category_n_menu_accordion ul {
  padding: 0!important;
  margin: 0!important;
  font-family: 'Roboto Slab', serif;
  font-size:16px;
}

#accordionbox .wpb_category_n_menu_accordion ul > li {
  margin: 0 20px!important;
  padding: 0!important;
}

#accordionbox .wpb_category_n_menu_accordion ul > li.current-menu-parent {
	margin: 0 !important;
	padding: 0 20px !important;
}

/*#accordionbox .wpb_category_n_menu_accordion ul > li:last-child {
  padding-bottom: 22px!important;
}
*/


#accordionbox .wpb_category_n_menu_accordion ul > li li {
  margin: 0!important;
  background: #fff !important;
  border-bottom:none;
  font-family: 'Work Sans', sans-serif;
}
#accordionbox .wpb_category_n_menu_accordion ul > li li a {
  color: #999999!important;
}
#accordionbox .wpb_category_n_menu_accordion a {
  display: block;
  outline: none;
  text-decoration: none;
}
#accordionbox .wpb_category_n_menu_accordion ul li > a > span.wpb-submenu-indicator {
  float: right;
  font-size: 20px;
  line-height: 22px;
  font-weight: bolder;
  -o-transition: transform .3s linear;
  -moz-transition: transform .3s linear;
  -webkit-transition: transform .3s linear;
  -ms-transition: transform .3s linear;
  text-indent:-9999px;
  background:url(assets/img/triangle.png) no-repeat center center;
  height:20px;
  width:10px;

}



#accordionbox .wpb_category_n_menu_accordion li.wpb-submenu-indicator-minus > a > span.wpb-submenu-indicator {
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}


#accordionbox .wpb_category_n_menu_accordion li > a:hover > span.wpb-submenu-indicator {
  color: #414042;
}
#accordionbox .wpb_category_n_menu_accordion > ul > li > a:hover {
  background-color: #fff !important;
  color: #414042 !important;
}
#accordionbox .wpb_category_n_menu_accordion > ul > li li > a {
  border-left: solid 0px transparent;
  -o-transition: border .2s linear;
  -moz-transition: border .2s linear;
  -webkit-transition: border .2s linear;
  transition: border .2s linear;
}
#accordionbox .wpb_category_n_menu_accordion > ul > li li:hover > a
/*#accordionbox .wpb_category_n_menu_accordion > ul > li li.current-cat > a,*/
 {
  border-left-color: #414956;
   color: #000 !important;
}

#accordionbox .wpb_category_n_menu_accordion li.wpb-submenu-indicator-minus > a {}

#accordionbox .wpb_category_n_menu_accordion li a {
  font-size: 14px;
  line-height: 18px;
  padding: 14px 22px;
  font-weight: 700;
  -o-transition: color .2s linear,background .2s linear;
  -moz-transition: color .2s linear,background .2s linear;
  -webkit-transition: color .2s linear,background .2s linear;
  transition: color .2s linear,background .2s linear;
}
#accordionbox .wpb_category_n_menu_accordion li li a {
font-weight:300;
}
#accordionbox .wpb_category_n_menu_accordion > ul > li > a {
  font-size: 16px;
  line-height: 20px;
  padding: 14px 0;
  background: #fff;
  color: #999999 !important;

}


.blog #accordionbox .wpb_category_n_menu_accordion > ul > li.current-page-ancestor > a,
.single #accordionbox .wpb_category_n_menu_accordion > ul > li.menu-item-780 > a,
#accordionbox .wpb_category_n_menu_accordion > ul > li.current-menu-item > a {
	  color: #ee3524 !important;
}

#accordionbox .wpb_category_n_menu_accordion > ul > li:not(:last-child) > a {
  border-bottom: 1px solid #fff!important;
}
#accordionbox .wpb_category_n_menu_accordion > ul > li:last-child > a {
  border-bottom: 0;
}
#accordionbox .wpb_category_n_menu_accordion > ul > li > ul > li > a,
#accordionbox .wpb_category_n_menu_accordion > ul > li > ul > li > ul > li > a {
  border-bottom: 0;
}
#accordionbox .sub-menu { display:none}
#accordionbox .current-menu-item .sub-menu { display:block}



/* Padding Left */

#accordionbox .wpb_category_n_menu_accordion > ul > li > ul > li > a {
  padding-top:0;
  padding-bottom:0;
}

#accordionbox .wpb_category_n_menu_accordion > ul > li > ul > li > a:last-of-type { padding:0 0 5px 0;
}

#accordionbox .wpb_category_n_menu_accordion > ul > li > ul > li:last-of-type > a:last-of-type { padding:0 0 10px 0;
}

#accordionbox .wpb_category_n_menu_accordion > ul > li > ul > li > ul > li > a {
  padding: 2px 0 2px 35px;
}

#accordionbox .sub-menu .sub-menu {
	margin-bottom: 10px !important;
}


/* ==========================================================================
   RTL style
   ========================================================================== */


body.rtl #accordionbox .wpb_category_n_menu_accordion ul li > a > span.wpb-submenu-indicator {
  float: left;
}
body.rtl #accordionbox .wpb_category_n_menu_accordion > ul > li > ul > li > a {
  padding-left: 14px;
  padding-right: 30px;
}
body.rtl #accordionbox .wpb_category_n_menu_accordion > ul > li > ul > li > ul > li > a {
  padding-left: 14px;
  padding-right: 45px;
}
body.rtl #accordionbox .wpb_category_n_menu_accordion > ul > li li > a { 
  border-right: solid 6px transparent;
  border-left: 0;
}
body.rtl #accordionbox .wpb_category_n_menu_accordion > ul > li li:hover > a,
body.rtl #accordionbox .wpb_category_n_menu_accordion > ul > li li.current-cat > a,
body.rtl #accordionbox .wpb_category_n_menu_accordion li.wpb-submenu-indicator-minus > a {
  border-right-color: #414956;
}
body.rtl #accordionbox .wpb_category_n_menu_accordion ul li .wpb-wmca-cat-count {
  left: 40px;
  right: inherit;
}

#accordionbox button {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;	

	-webkit-box-shadow: none;
	-moz-box-shadow:    none;
	box-shadow:         none;
	
	}

/*#accordionbox .wpb_category_n_menu_accordion ul  li.current-menu-ancestor > ul {display: block!important;}
#accordionbox .wpb_category_n_menu_accordion ul  li.current-menu-parent > ul {display: block!important;}
#accordionbox .wpb_category_n_menu_accordion > ul li.current-menu-item >ul {display:block!important;}*/

@media screen and (max-width: 1200px) {





	.slick-dots
	{
		text-align: left;
		padding-left:15px;
	}	
.slick-dots li { height:26px}
		.genesis-nav-menu .sub-menu {
			display: none;
			padding:20px;
			background-color: #fff;
			color: #999999;
			-webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.25);
			-moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.25);
			box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.25); 
		}
		.menu li .sub-menu a 					{ color: #999  }
		.menu li.red .sub-menu a:hover 			{ color: #ee3524; }
		.menu li.orange .sub-menu a:hover 		{ color: #f8971d; }
		.menu li.blue .sub-menu a:hover 		{ color: #56a0d3; }
		.menu li.navy .sub-menu a:hover 		{ color: #003c6f; }
		.menu li.lightgray .sub-menu a:hover	{ color: #BEC0C2; }
		.menu li.darkgray .sub-menu a:hover		{ color: #414042; }	

		.custom-search { margin: 0; display: block}
		.custom-search input { padding-left:0}

	.site-footer .genesis-nav-menu .menu-item {
		display: table-cell;
		position: relative;
		text-align: right;
		float:right;
		font-family: 'Work Sans', sans-serif;
	}
}



@media screen and (max-width: 767px) {

	.slider_column_wrapper {width:100%; display: block;}
	
	.slider_column_wrapper.video {margin-top:20px}
	.gallery-grid a {    
	width: 50%; 
    padding: 0 0 50% 0;
	}

	
	.ctablock p { font-size:.9em; line-height:1.2em }
	.slidecontents h2 {}
	
	.slidecontents {
    padding: 20px;
	}
	.slidecontents .slick-dots { width:50%; text-align: left; padding-left:40px;}
	
	
.ctablock {    
    top: 20px;
    transform: none;
	width: 100%;
}	
	
	
	

	/*.slidecontents .ctablock { max-width: 100%;}*/
	
	/*.slidecontents .slidervideo { max-width:160px; }*/
	/*.slidecontents .slick-prev,
	.slidecontents .slick-next { display:none !important}	*/
}



.search .sectionblock .one-third { width: auto !important}

.has-post-video { margin-bottom:24px;}


.search-results .entry-content { border-bottom: 1px solid #e5e5e5; margin-bottom:20px;}

.search-results .one-third .first { margin-right:20px;}

.post .one-third img {width:100%}

@media screen and (max-width: 767px) {
	.featured-video-plus.fvp-center { margin-bottom: 10px; }
}

.single .featured-video-plus.fvp-center,
.single .attachment-post-image { margin-bottom: 10px; }


.search-results .fvp-onload {
    display: block !important;
    height: auto !important;
    opacity: 0;
    visibility: visible !important;
    width: 270px !important;
}

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    text-decoration: none;
/*    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;*/
    display: none;
/*    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;*/
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

.navwrap { width:100%}





@media screen and (max-width: 414px) {
    .site-header > .wrap {
        /* reduce padding to 10px */
        padding: 10px;
    }
    #menu-secondary-menu .menu-item {
        /* Override inherited font-size of 1.6rem */
        font-size: 1.2rem;
        display: inline-block;
    }
    #menu-secondary-menu a {
        padding: 5px;
    }
    #menu-secondary-menu li {
        margin-left: 3px;
    }
}

@media screen and (max-width: 320px) {
    .site-header > .wrap {
        /* reduce padding to 10px */
        padding: 10px;
    }
    .site-header .simple-social-icons {
        /* Current margin is: 2px important!;
    Set margin to 0 */
        margin: 0px;
    }
    .simple-social-icons ul {
        /* Override margin:0; */
        margin-right: 10px;
    }
}

.fl-row {
    background: #fff;
    margin-bottom: 20px;
    -webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.1);
    box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.1);
}