/*
	Theme Name: Winfield Theme
	Theme URI: http://wpcanada.ca/our-themes/winfield/
	Description: Winfield is a mobile responsive and HTML5 child theme created for the Genesis Framework
	Author: WPCanada
	Author URI: http://wpcanada.ca/
 
	Version: 3.0.0
 
	Tags: black, white, blue, one-column, two-columns, fixed-width, custom-menu, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
 
	Template: genesis
	Template Version: 2.0.1
 
	License: GPL-2.0+
	License URI: http://www.opensource.org/licenses/gpl-license.php 
*/


/* Table of Contents

	01 Defaults
	02 Titles
		- Font Family
		- Font Size
		- Font Weight
		- Font Color
	03 Code / Pre / Gist
	04 Layout
		- Structure
		- CSS Grid
		- Header
		- Main Content
		- Post Info & Meta
		- Column Classes
		- Content Boxes
		- Gradient Buttons
		- Miscellaneous
		- Tables
	05 Menus
		- Site Header Menu
	06 Headings
	07 Lists
	08 Post Navigation
		- Single Post Navigation
	09 Comments
	10 Sidebars
	11 Footer Widgets
	12 Site Footer
	13 Forms & Buttons
		- Genesis eNews Extended
		- Social Buttons
	14 Images & Captions
	15 Home Page
		- Home Slider
		- Home Welcome
		- Home Middle
	16 Widget Page
	17 Genesis Widgetized Not Found & 404
	18 Media Queries
		- max-width: 1024px
		- max-width: 768px
		- max-width: 480px

*/


/*
01 Defaults
---------------------------------------------------------------------------------------------------- */

*,
input[type="search"] {
	-webkit-box-sizing:	border-box;
	-moz-box-sizing:	border-box;
	box-sizing:		border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
input, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	font-size: 62.5%; /* 10px browser default */
}

body {
	background: rgba(255, 255, 255, .75);
	color: #444;
	font-family: 'Roboto Slab', serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.625;
}

a {
	color: #2a8ec8;
	text-decoration: none;
}

a:hover {
	color: #444;
}

::-moz-selection {
	background-color: #2a8ec8;
	color: #fff;
}

::selection {
	background-color: #2a8ec8;
	color: #fff;
}

a img {
	border: none;
}

cite {
	font-style: normal;
}


/*
02 Titles
------------------------------------------------------------------------------------------------------- */

/* 02a Font Family ----------- */

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title a,
.site-title {
	font-family: 'Roboto Slab', serif;
	letter-spacing: 1px;
	letter-spacing: 0.1rem;
}

/* 02b Font Size ----------- */

h1,
.entry-title,
.entry-title a {
	font-size: 30px;
	font-size: 3rem;
}

h2 {
	font-size: 28px;
	font-size: 2.8rem;
}

h3 {
	font-size: 24px;
	font-size: 2.4rem;
}

h4,
.after-post-block h4,
.archive-title,
.winfield-home-page #genesis-responsive-slider h2,
.winfield-home-page #genesis-responsive-slider h2 a,
.winfield-widget-page .content h2,
.winfield-widget-page .content h2 a,
.home-middle h2,
.home-middle h2 a,
.taxonomy-description h1 {
	font-size: 20px;
	font-size: 2rem;
}

h5 {
	font-size: 18px;
	font-size: 1.8rem;
}

h6,
.author-box h1,
.comment-respond h3,
.entry-comments h3,
.sidebar h2 a,
.widget-title {
	font-size: 16px;
	font-size: 1.6rem;
}

.author-box h1,
.comment-respond h3,
.entry-comments h3,
.widget-title {
	text-transform: uppercase;
}

/* 02c Font Weight ----------- */

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title a {
	font-weight: 400;
}

/* 02d Font Color ----------- */

h1.entry-title a,
h2 a,
h2 a:visited,
h4.widgettitle a {
	color: #444;
}

h1.entry-title a:hover,
h2 a:hover {
	color: #2a8ec8;
}

h1.entry-title a,
h2 a,
h2 a:visited,
.widgettitle a {
	text-decoration: none;
}


/*
03 Code / Pre / Gist
------------------------------------------------------------------------------------------------------- */

code,
pre,
.gist {
	font-size: 15px;
	font-size: 1.5rem;
}

code {
	font-family: Consolas, Monaco, Lucida Console;
	overflow: auto;
	padding: 0;
}

pre {
	background-color: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 3px;
	display: block;
	font-family: Consolas, Monaco, Lucida Console;
	margin: 0 0 30px;
	margin: 0 0 3rem;
	overflow: auto;
	padding: 20px;
	padding: 2rem;
}

.gist {
	margin-bottom: 30px;
	margin-bottom: 3rem;

}

.gist .line-data {
	color: #444;
}

.gist .gist-file .gist-data {
	background-color: #f5f5f5 !important;
}

.gist table {
	margin-bottom: 0;
}


/*
04 Layout
---------------------------------------------------------------------------------------------------- */

/* 04a - Structure ----------- */

.site-container {
	background-color: #fff;
	border-top: 10px solid #2a8ec8;
	clear: both;
	margin: 0 auto;
	max-width: 1180px;
	overflow: hidden;
	padding: 0;
}

.site-inner {
	clear: both;
	margin: 20px auto;
	overflow: hidden;
	padding: 20px 40px;
}

/* 04b - CSS Grid ----------- */

.sidebar-secondary {
	width: 14.545454545%;
}

.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3,
.sidebar-primary {
	width: 30.909090909%;
}

.content-sidebar-sidebar .sidebar-primary,
.sidebar-content-sidebar .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary {
	width: 37.777777777%;
}

.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content,
.sidebar-sidebar-content .content {
	width: 57.777777777%;
}

.content-sidebar .content,
.sidebar-content .content {
	width: 65.454545454%;
}

.content-sidebar-sidebar .content-sidebar-wrap,
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	width: 81.818181818%;
}

.content-sidebar .content-sidebar-wrap,
.full-width-content .content,
.full-width-content .content-sidebar-wrap,
.sidebar-content .content-sidebar-wrap {
	width: 100%;
}

.footer-widgets-1,
.footer-widgets-2,
.home-left,
.home-center,
.sidebar-content .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary,
.content,
.content-sidebar-wrap,
.sidebar-secondary,
.title-area {
	float: left;
}

.content-sidebar-sidebar .sidebar-secondary,
.footer-widgets-3,
.home-right,
.sidebar-primary,
.sidebar-content .content,
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content,
.sidebar-sidebar-content .content-sidebar-wrap,
.site-header .widget-area {
	float: right;
}

/* 04c - Header ----------- */

.title-area {
	float: left;
	padding: 0;
	width: 460px;
}

.site-header {
	min-height: 200px;
	overflow: hidden;
}

.site-title {
	font-family: 'Roboto', sans-serif;
	font-size: 42px;
	font-size: 4.2rem;
	line-height: 1.2;
	margin: 40px 20px 8px;
	margin: 4rem 2rem 0.8rem;
}

.site-title a,
.site-title a:hover {
	color: #444;
	text-decoration: none;
}

.header-image .site-title {
	margin: 0;
}

.site-description {
	color: #444;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1;
	margin: 0 20px 0;
	margin: 0 2rem 0;
}

.header-full-width .site-title,
.header-full-width .site-title a,
.header-full-width .title-area {
	width: 100%;
}

.header-image .site-title,
.header-image .site-title a,
.header-image .title-area {
	display: block;
	float: left;
	min-height: 200px;
	overflow: hidden;
	text-indent: -9999px;
	width: 50%;
}

.header-image .site-description {
	display: block;
	overflow: hidden;
}

.site-header .widget-area {
	float: right;
	text-align: right;
	width: 500px;
}

/* 04d - Main Content ----------- */

.content {
	padding-bottom: 40px;
	padding-bottom: 4rem;
}

.entry,
.page .post.entry {
	margin-bottom: 80px;
	margin-bottom: 8rem;
}

.single .entry {
	margin-bottom: 48px;
	margin-bottom: 4.8rem;
}

.page .entry {
	margin: 0;
}

.entry-content p {
	margin-bottom: 26px;
	margin-bottom: 2.6rem;
}

blockquote {
	padding: 24px 64px;
	padding: 2.4rem 6.4rem;
}

blockquote::before {
	content: "\201C";
	display: block;
	font-size: 32px;
	font-size: 3.2rem;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
}

blockquote::before,
blockquote p {
	color: #999;
}

blockquote p {
	font-style: italic;
}

/* 04e - Post Info & Meta ----------- */

.entry-header .entry-meta,
.entry-footer .entry-meta {
	clear: both;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-size: 1.4rem;
}

.entry-header .entry-meta {
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}

.entry-header .entry-meta,
.entry-header .entry-meta a,
.entry-footer .entry-meta,
.entry-footer .entry-meta a {
	color: #999;
}

.entry-header .entry-meta a,
.entry-footer .entry-meta a {
	text-decoration: none;
}

.entry-header .entry-meta a:hover,
.entry-footer .entry-meta a:hover {
	color: #444;
}

.entry-comments-link::before {
	color: #999;
	content: "\2014";
	margin: 0 6px 0 2px;
	margin: 0 0.6rem 0 0.2rem;
}

.entry-footer .entry-meta {
	border: 1px solid #ddd;
	padding: 24px;
	padding: 2.4rem;
}

.entry-categories,
.entry-tags {
	display: block;
}

/* 04f - Column Classes ----------- */

.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;
}

/* 04g - Content Boxes ----------- */

.content-box-blue,
.content-box-dark,
.content-box-gray,
.content-box-green,
.content-box-purple,
.content-box-red,
.content-box-yellow {
	border-radius: 3px;
	font-family: 'Roboto', sans-serif;
	margin: 0 0 25px;
	margin: 0 0 2.5rem;
	overflow: hidden;
	padding: 20px;
	padding: 2rem;
}

.content-box-blue {
	background-color: #d8ecf7;
	border: 1px solid #afcde3;
}

.content-box-dark {
	background-color: #555;
	border: 1px solid #000;
	color: #fff;
}

.content-box-gray {
	background-color: #e2e2e2;
	border: 1px solid #bdbdbd;
}

.content-box-green {
	background-color: #d9edc2;
	border: 1px solid #b2ce96;
}

.content-box-purple {
	background-color: #e2e2f9;
	border: 1px solid #bebde9;
}

.content-box-red {
	background-color: #f9dbdb;
	border: 1px solid #e9b3b3;
}

.content-box-yellow {
	background-color: #fef5c4;
	border: 1px solid #fadf98;
}

/* 04h - Gradient Buttons ----------- */

a.button-black,
a.button-blue-green,
a.button-dark-blue,
a.button-dark-orange,
a.button-green,
a.button-grey,
a.button-light-blue,
a.button-light-orange,
a.button-middle-blue,
a.button-pink,
a.button-red {
	border-radius: 3px;
	box-shadow: 0 1px 1px #999;
	color: #fff !important;
	display: inline-block;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	margin: 0 20px 20px 0;
	margin: 0 2rem 2rem 0;
	padding: 10px 15px;
	padding: 1rem 1.5rem;
	text-align: center;
	width: 130px;
}

a.button-black {
	background-color: #444;
	background: -moz-linear-gradient(top, #444, #000);
	background: -ms-linear-gradient(top, #444, #000);
	background: -webkit-linear-gradient(top, #444, #000);
	border: 1px solid #000;
	text-decoration: none;
}

a.button-black:hover {
	background: -moz-linear-gradient(top, #000, #444);
	background: -ms-linear-gradient(top, #000, #444);
	background: -webkit-linear-gradient(top, #000, #444);
	text-decoration: none;
}

a.button-blue-green {
	background-color: #2c4762;
	background: -moz-linear-gradient(top, #3a5876, #2c4762);
	background: -ms-linear-gradient(top, #3a5876, #2c4762);
	background: -webkit-linear-gradient(top, #3a5876, #2c4762);
	border: 1px solid #2c4762;
	text-decoration: none;
}

a.button-blue-green:hover {
	background: -moz-linear-gradient(top, #2c4762, #3a5876);
	background: -ms-linear-gradient(top, #2c4762, #3a5876);
	background: -webkit-linear-gradient(top, #2c4762, #3a5876);
	text-decoration: none;
}

a.button-dark-blue {
	background-color: #2b4170;
	background: -moz-linear-gradient(top, #3b5998, #2b4170);
	background: -ms-linear-gradient(top, #3b5998, #2b4170);
	background: -webkit-linear-gradient(top, #3b5998, #2b4170);
	border: 1px solid #2b4170;
	text-decoration: none;
}

a.button-dark-blue:hover {
	background: -moz-linear-gradient(top, #2b4170, #3b5998);
	background: -ms-linear-gradient(top, #2b4170, #3b5998);
	background: -webkit-linear-gradient(top, #2b4170, #3b5998);
	text-decoration: none;
}

a.button-dark-orange {
	background-color: #c33219;
	background: -moz-linear-gradient(top, #e64522, #c33219);
	background: -ms-linear-gradient(top, #e64522, #c33219);
	background: -webkit-linear-gradient(top, #e64522, #c33219);
	border: 1px solid #c33219;
	text-decoration: none;
}

a.button-dark-orange:hover {
	background: -moz-linear-gradient(top, #c33219, #e64522);
	background: -ms-linear-gradient(top, #c33219, #e64522);
	background: -webkit-linear-gradient(top, #c33219, #e64522);
	text-decoration: none;
}

a.button-green {
	background-color: #5bb75b;
	background: -moz-linear-gradient(top, #5bb75b, #62c462);
	background: -ms-linear-gradient(top, #5bb75b, #62c462);
	background: -webkit-linear-gradient(top, #5bb75b, #62c462);
	border: 1px solid #62c462;
	text-decoration: none;
}

a.button-green:hover {
	background: -moz-linear-gradient(top, #62c462, #5bb75b);
	background: -ms-linear-gradient(top, #62c462, #5bb75b);
	background: -webkit-linear-gradient(top, #62c462, #5bb75b);
	text-decoration: none;
}

a.button-grey {
	background-color: #f5f5f5;
	background: -moz-linear-gradient(top, #f5f5f5, #e3e3e3);
	background: -ms-linear-gradient(top, #f5f5f5, #e3e3e3);
	background: -webkit-linear-gradient(top, #f5f5f5, #e3e3e3);
	border: 1px solid #e3e3e3;
	color: #444 !important;
	text-decoration: none;
}

a.button-grey:hover {
	background: -moz-linear-gradient(top, #e3e3e3, #f5f5f5);
	background: -ms-linear-gradient(top, #e3e3e3, #f5f5f5);
	background: -webkit-linear-gradient(top, #e3e3e3, #f5f5f5);
	text-decoration: none;
}

a.button-light-blue {
	background-color: #0081ce;
	background: -moz-linear-gradient(top, #00aced, #0081ce);
	background: -ms-linear-gradient(top, #00aced, #0081ce);
	background: -webkit-linear-gradient(top, #00aced, #0081ce);
	border: 1px solid #0081ce;
	text-decoration: none;
}

a.button-light-blue:hover {
	background: -moz-linear-gradient(top, #0081ce, #00aced);
	background: -ms-linear-gradient(top, #0081ce, #00aced);
	background: -webkit-linear-gradient(top, #0081ce, #00aced);
	text-decoration: none;
}

a.button-light-orange {
	background-color: #e2733d;
	background: -moz-linear-gradient(top, #e88845, #e2733d);
	background: -ms-linear-gradient(top, #e88845, #e2733d);
	background: -webkit-linear-gradient(top, #e88845, #e2733d);
	border: 1px solid #e2733d;
	text-decoration: none;
}

a.button-light-orange:hover {
	background: -moz-linear-gradient(top, #e2733d, #e88845);
	background: -ms-linear-gradient(top, #e2733d, #e88845);
	background: -webkit-linear-gradient(top, #e2733d, #e88845);
	text-decoration: none;
}

a.button-middle-blue {
	background-color: #0073b2;
	background: -moz-linear-gradient(top, #009cda, #0073b2);
	background: -ms-linear-gradient(top, #009cda, #0073b2);
	background: -webkit-linear-gradient(top, #009cda, #0073b2);
	border: 1px solid #0073b2;
	text-decoration: none;
}

a.button-middle-blue:hover {
	background: -moz-linear-gradient(top, #0073b2, #009cda);
	background: -ms-linear-gradient(top, #0073b2, #009cda);
	background: -webkit-linear-gradient(top, #0073b2, #009cda);
	text-decoration: none;
}

a.button-pink {
	background-color: #c93764;
	background: -moz-linear-gradient(top, #ea4c89, #c93764);
	background: -ms-linear-gradient(top, #ea4c89, #c93764);
	background: -webkit-linear-gradient(top, #ea4c89, #c93764);
	border: 1px solid #c93764;
	text-decoration: none;
}

a.button-pink:hover {
	background: -moz-linear-gradient(top, #c93764, #ea4c89);
	background: -ms-linear-gradient(top, #c93764, #ea4c89);
	background: -webkit-linear-gradient(top, #c93764, #ea4c89);
	text-decoration: none;
}

a.button-red {
	background-color: #a0171c;
	background: -moz-linear-gradient(top, #cb2027, #a0171c);
	background: -ms-linear-gradient(top, #cb2027, #a0171c);
	background: -webkit-linear-gradient(top, #cb2027, #a0171c);
	border: 1px solid #a0171c;
	text-decoration: none;
}

a.button-red:hover {
	background: -moz-linear-gradient(top, #a0171c, #cb2027);
	background: -ms-linear-gradient(top, #a0171c, #cb2027);
	background: -webkit-linear-gradient(top, #a0171c, #cb2027);
	text-decoration: none;
}

/* 04i - Miscellaneous ----------- */

p.pages,
.clear,
.clear-line,
.first {
	clear: both;
}

.clear-line {
	border-bottom: 1px solid #ddd;
	margin-bottom: 26px;
	margin-bottom: 2.6rem;
}

.alignleft {
	float: left;
}

.alignright {
	float: right;
}

.author-box,
.sticky {
	margin-bottom: 80px;
	margin-bottom: 8rem;
}

.author-box,
.breadcrumb,
.sticky,
.taxonomy-description {
	background-color: #f5f5f5;
	margin-bottom: 48px;
	margin-bottom: 4.8rem;
	overflow: hidden;
	padding: 32px;
	padding: 3.2rem;
}

.author-box,
.taxonomy-description {
	border-radius: 3px;
}

.breadcrumb {
	background-color: #2a8ec8;
	border-top: 5px solid #1d61aa;
	border-bottom: 2px solid #1d61aa;
	color: #fff;
	margin-top: 10px;
	margin-top: 1rem;
}

.breadcrumb a,
.breadcrumb a:visited {
	color: #fff;
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

.after-post-block,
.after-post-block .wrap,
.featuredpage .page,
.featuredpost .post,
.home-middle {
	overflow: hidden;
}

.after-post-block {
	background-color: #f5f5f5;
	border-radius: 3px;
	margin-top: 32px;
	margin-top: 3.2rem;
	padding: 16px;
	padding: 1.6rem;
	text-align: center;
}

.after-post-block .wrap {
	background-color: #f5f5f5;
	padding: 32px;
	padding: 3.2rem;
}

.after-post-block p {
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
}

.featured-content .entry {
	margin-bottom: 12px;
	margin-bottom: 1.2rem;
	padding: 0;
}

.featured-content .entry-title {
	font-size: 18px;
	font-size: 1.8rem;
}

/* 04j - Tables ----------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 2;
	margin-bottom: 40px;
	margin-bottom: 4rem;
	width: 100%;
}

tbody {
	border-bottom: 1px solid #ddd;
}

th,
td {
	text-align: left;
}

th {
	font-weight: bold;
	text-transform: uppercase;
}

td {
	border-top: 1px solid #ddd;
	padding: 6px 0;
	padding: 0.6rem 0;
}


/*
05 Menus
---------------------------------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.5;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: inline-block;
	text-align: left;
}

.genesis-nav-menu a {
	border: none;
	color: #fff;
	display: block;
	padding: 20px;
	padding: 2rem;
	position: relative;
}

.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a {
	background-color: #2a8ec8;
}

.genesis-nav-menu .sub-menu a:hover,
.genesis-nav-menu .sub-menu .current-menu-item > a {
	background-color: #fff;
	color: #2a8ec8;
}

.genesis-nav-menu > .menu-item > a {
	text-transform: uppercase;
}

.genesis-nav-menu .sub-menu {
	left: -9999px;
	opacity: 0;
	position: absolute;
	width: 200px;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: #fff;
	border: 1px solid #eee;
	border-top: 0;
	color: #444;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 16px 20px;
	padding: 1.6rem 2rem;
	position: relative;
	width: 200px;
}

.genesis-nav-menu .sub-menu a:hover,
.genesis-nav-menu .sub-menu .current-menu-item > a {
	color: #2a8ec8;
}

.genesis-nav-menu .sub-menu .sub-menu {
	margin: -54px 0 0 199px;
	margin: -5.4rem 0 0 19.9rem;
}

.genesis-nav-menu .menu-item:hover {
	position: static;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	left: auto;
	opacity: 1;
}

.genesis-nav-menu > .first > a {
	padding-left: 0;
}

.genesis-nav-menu > .last > a {
	padding-right: 0;
}

.genesis-nav-menu > .right {
	display: inline-block;
	float: right;
	list-style-type: none;
	padding: 20px;
	padding: 2rem;
	text-transform: uppercase;
}

.genesis-nav-menu > .right > a {
	display: inline;
	padding: 0;
}

.genesis-nav-menu > .rss > a {
	background: url(images/rss.png) no-repeat center left;
	margin-left: 20px;
	margin-left: 2rem;
	padding-left: 20px;
	padding-left: 2rem;
}

.genesis-nav-menu > .rss > a:hover,
.genesis-nav-menu > .twitter > a:hover {
	color: #fff;
	text-decoration: underline;
}

.genesis-nav-menu > .twitter > a {
	background: url(images/twitter-nav.png) no-repeat center left;
	padding-left: 24px;
	padding-left: 2.4rem;
}

.genesis-nav-menu > .search {
	padding: 5px 24px 0 0;
	padding: 0.5rem 2.4rem 0 0;
}

.nav-primary,
.nav-secondary {
	background-color: #333;
	margin: 10px auto 0;
	margin: 1rem auto 0;
}

/* 05a - Site Header Menu  ----------- */

.site-header .genesis-nav-menu a {
	color: #444;
	display: block;
	padding: 10px;
	padding: 1rem;
	position: relative;
}

.site-header .genesis-nav-menu a:hover,
.site-header .genesis-nav-menu .current-menu-item > a {
background-color: transparent;
	color: #2a8ec8;
}

.site-header .sub-menu {
	border-top: 1px solid #eee;
}

.site-header .sub-menu .sub-menu {
	margin-top: -43px;
	margin-top: -4.3rem;
}

.site-header .sub-menu a:hover,
.site-header .sub-menu .current-menu-item > a {
	background-color: #fff;
	color: #2a8ec8;

}


/*
06 Headings
---------------------------------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title a {
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
}

.author-box h1 {
	margin: 0
}

.featuredpost h2 {
	margin-bottom: 8px;
	margin-bottom: 0.8rem;
}

.home-middle .featuredpost h2 {
	margin: 8px 0;
	margin: 0.8rem 0;
}

.home-middle .featuredpost .widgettitle {
	margin-bottom: 20px;
	margin-bottom: 2rem;
}

.taxonomy-description h1 {
	margin-bottom: 4px;
	margin-bottom: 0.4rem;
}

.archive-title {
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}

.sidebar h4.widgettitle {
	background-color: #f5f5f5;
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f5f5f5), to(#e3e3e3));
	background: -webkit-linear-gradient(top, #f5f5f5, #e3e3e3);
	background:    -moz-linear-gradient(top, #f5f5f5, #e3e3e3);
	background:     -ms-linear-gradient(top, #f5f5f5, #e3e3e3);
	background:      -o-linear-gradient(top, #f5f5f5, #e3e3e3);
	border-bottom: 1px solid #bbb;
	border-left: 3px solid #2a8ec8;
	padding: 10px 0 10px 10px;
	padding: 1rem 0 1rem 1rem;
}

.content .post h1,
.content .post h2 {
	margin-bottom: 0;

}


/*
07 Lists
---------------------------------------------------------------------------------------------------- */

.entry-content ol,
.entry-content ul {
	margin-bottom: 26px;
	margin-bottom: 2.6rem;
}

.entry-content ol li,
.entry-content ul li {
	margin-left: 40px;
	margin-left: 4rem;
}

.entry-content ol li {
	list-style-type: decimal;
}

.entry-content ul li {
	list-style-type: square;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}


/*
08 Post Navigation
---------------------------------------------------------------------------------------------------- */

.pagination li {
	display: inline;
}

.pagination li a,
.pagination li a:hover,
.pagination li.active a,
.pagination li.disabled {
	background-color: #333;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	padding: 10px 15px;
	padding: 1rem 1.5rem;
}

.pagination li a {
	font-family: 'Roboto', sans-serif;
	text-decoration: none;
}

.pagination li a:hover,
.pagination li.active a {
	background-color: #2a8ec8;
}

/* 08a - Single Post Navigation ----------- */

.post-nav {
	margin: 30px 0;
	margin: 3rem 0;
	overflow: auto;
	padding: 5px 0;
	padding: 0.5rem 0;
}

.post-nav span.next,
.post-nav span.prev {
	border-bottom: 1px solid #ddd;
	display: block;
	margin-bottom: 5px;
	margin-bottom: 0.5rem;
}

.post-nav a {
	text-decoration: none;
}

.post-nav a:hover {
	text-decoration: underline;
}

.post-nav a:active {
}

.next-post-nav {
	float: left;
	width: 50%;
}

.prev-post-nav {
	float: right;
	text-align: right;
	width: 50%;
}

.post-nav a,
.post-nav span.next,
.post-nav span.prev {
	font-size: 13px;
	font-size: 1.3rem;
}


/*
09 Comments
---------------------------------------------------------------------------------------------------- */

.entry-comments,
#respond {
	overflow: hidden;
}

.entry-comments,
.entry-pings {
	margin-bottom: 48px;
	margin-bottom: 4.8rem;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
	width: 50%
}

#comment {
	margin: 12px 0;
	margin: 1.2rem 0;
}

.comment-respond label {
	display: block;
	margin-right: 12px;
	margin-right: 1.2rem;
}

.comment-list li,
.ping-list li {
	list-style-type: none;
	margin-top: 24px;
	margin-top: 2.4rem;
	padding: 32px;
	padding: 3.2rem;
}

.comment-list li ul li {
	margin-right: -32px;
	margin-right: -3.2rem;
}

.comment-header {
	overflow: hidden;
}

.comment {
	background-color: #f5f5f5;
	border: 2px solid #fff;
	border-right: none;
}

.comment-content p {
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}

.bypostauthor {
}

.entry-comments .pagination {
	margin-top: 32px;
	margin-top: 3.2rem;
}

p.subscribe-to-comments {
	padding: 24px 0 16px;
	padding: 2.4rem 0 1.6rem;
}

p.comment-notes {
	margin-bottom: 10px;
	margin-bottom: 1rem;
}

.form-allowed-tags {
	background-color: #f5f5f5;
	border-radius: 3px;
	font-family: Consolas, Monaco, Lucida Console;
	font-size: 14px;
	font-size: 1.4rem;
	margin-bottom: 20px;
	margin-bottom: 2rem;
	padding: 24px;
	padding: 2.4rem;
}


/*
10 Sidebars
---------------------------------------------------------------------------------------------------- */

.sidebar {
	display: inline;

}

.sidebar p {
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
}

.sidebar .widget {
	margin-bottom: 32px;
	margin-bottom: 3.2rem;
	overflow: hidden;
	padding-bottom: 32px;
	padding-bottom: 3.2rem;
}

.sidebar.widget-area ul li {
	background: url(images/icon-right.png) no-repeat 2px 9px;
	list-style-type: none;
	margin: 0 0 5px;
	margin: 0 0 0.5rem;
	padding: 0 0 3px 20px;
	padding: 0 0 0.3rem 2rem;
	word-wrap: break-word;
}

.sidebar .tagcloud a {
	font-family: 'Roboto', sans-serif;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}


/*
11 Footer Widgets
---------------------------------------------------------------------------------------------------- */

.footer-widgets {
	clear: both;
	overflow: hidden;
	width: 100%;
}

.footer-widgets .wrap {
	background-color: #222;
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#3f3f3f), to(#222222));
	background-image: -webkit-linear-gradient(top, #3f3f3f, #222222); 
	background-image:    -moz-linear-gradient(top, #3f3f3f, #222222);
	background-image:     -ms-linear-gradient(top, #3f3f3f, #222222);
	background-image:      -o-linear-gradient(top, #3f3f3f, #222222);
	border-top: 2px solid #000;
	clear: both;
	margin: 0 auto;
	max-width: 1180px;
	overflow: hidden;
	padding: 40px;
	padding: 4rem;
}

.footer-widgets p {
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
}

.footer-widgets,
.footer-widgets p,
.footer-widgets a,
.footer-widgets a:visited {
	color: #fff;
}

.footer-widgets a:hover {
	text-decoration: underline;
}

.footer-widgets .widget {
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}

.footer-widgets .widget-area ul li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.6rem;
	word-wrap: break-word;
}

.footer-widgets-1 {
	margin-right: 3.389830508%;
}


/*
12 Site Footer
---------------------------------------------------------------------------------------------------- */

.site-footer {
	clear: both;
	overflow: hidden;
	text-align: center;
	width: 100%;
}

.site-footer .wrap {
	background-color: #ccc;
	margin: 0 auto;
	max-width: 1180px;
	overflow: hidden;
	padding: 40px;
	padding: 4rem;
}

.site-footer a {
	text-decoration: none;
}

.site-footer p {
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: 400;
}


/*
13 Forms & Buttons
---------------------------------------------------------------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 3px;
	color: #999;
	font-size: 15px;
	font-size: 1.5rem;
	padding: 16px;
	padding: 1.6rem;
	width: 100%;
}

.search-form {
	overflow: hidden;
	width: 100%;
}

.search-form input[type="search"] {
	background: #fff url(images/search-box.png) no-repeat center left;
	padding: 16px 0 18px 37px;
	padding: 1.6rem 0 1.8rem 3.7rem;
}

.site-header .search-form {
	float: right;
	margin-top: 56px;
	margin-top: 5.6rem;
	width: 100%;
}

.nav-primary .search-form {
	margin: -2px 10px 0 0;
	margin: -0.2rem 1rem 0 0;
}

button,
input[type="button"],
input[type="submit"],
.btn {
	background-color: #333;
	border: none;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	padding: 16px 24px;
	padding: 1.6rem 2.4rem;
	width: auto;
}

button:hover,
input:hover[type="button"],
input:hover[type="submit"],
.btn:hover {
	background-color: #2a8ec8;
}

.search-form input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* 13a - Genesis eNews Extended ----------- */

.enews #subbox,
.enews #subbox1,
.enews #subbox2 {
	margin: 0 0 15px;
	margin: 0 0 1.5rem;
}

.sidebar-primary .enews input[type="submit"] {
	background-color: #333;
	color: #fff;
	margin: 0;
	width: 100%;
}

.sidebar-primary .enews input:hover[type="submit"] {
	background-color: #2a8ec8;
	color: #fff;
}

.enews #subbox,
.enews #subbox1,
.enews #subbox2 {
	background: #fff url(images/enews-subbox.png) no-repeat center left;
	padding: 16px 0 18px 37px;
	padding: 1.6rem 0 1.8rem 3.7rem;
}

.enews #subbox1,
.enews #subbox2 {
	background: #fff url(images/enews-subbox-name.png) no-repeat center left;
}

.footer-widgets .enews input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* 13b - Social Buttons ----------- */

a.social-buttons {
	background-color: #333;
	border-right: 1px solid #fff;
	border-radius: 3px;
	color: #fff;
	float: left;
	font-family: 'Roboto', sans-serif;
	font-size: 10px;
	font-size: 1rem;
	margin-bottom: 10px;
	margin-bottom: 1rem;
	overflow: hidden;
	padding: 8px 0;
	padding: 0.8rem 0;
	text-align: center;
	width: 25%;
}

a.social-buttons.last {
	border: none;
}

a.social-buttons:hover {
	background-color: #2a8ec8;
}


/*
14 Images & Captions
---------------------------------------------------------------------------------------------------- */

embed,
img,
object,
video {
	max-width: 100%;
}

img {
	height: auto;
}

.alignleft .avatar {
	margin-right: 24px;
	margin-right: 2.4rem;
}

.alignright .avatar {
	margin-left: 24px;
	margin-left: 2.4rem;
}

.author-box .avatar {
	float: left;
	margin-right: 24px;
	margin-right: 2.4rem
}

.comment-list li .avatar {
	float: left;
	margin: 0 16px 24px 0;
	margin: 0 1.6rem 2.4rem 0;
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 2.4rem;
}

img.alignnone {
	display: inline;
	margin-bottom: 12px;
	margin-bottom: 1.2rem;
}

img.alignleft,
.post-image,
.wp-caption.alignleft {
	display: inline;
	margin: 0 24px 24px 0;
	margin: 0 2.4rem 2.4rem 0;
}

img.alignright,
.wp-caption.alignright {
	display: inline;
	margin: 0 0 24px 24px;
	margin: 0 0 2.4rem 2.4rem;
}

.wp-caption {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-size: 1.4rem;
}

.wp-caption {
	font-weight: 400;
}

.wp-caption {
	text-align: center;
}

p.wp-caption-text {
	margin-top: 12px;
	margin-top: 1.2rem;
}

.gallery-caption {
}

.featuredpage img,
.featuredpost img {
	border: 1px solid #ddd;
	margin-bottom: 20px;
	margin-bottom: 2rem;
	padding: 4px;
	padding: 0.4rem;
}

.featuredpage .alignleft img,
.featuredpost .alignleft img {
	margin-bottom: 0;
	margin-right: 20px;
	margin-right: 2rem;
}

.featuredpage .alignright img,
.featuredpost .alignright img {
	margin-bottom: 0;
	margin-left: 20px;
	margin-left: 2rem;
}


/*
15 Home Page
---------------------------------------------------------------------------------------------------- */

/* 15a - Home Slider ----------- */

.home-slider {
	clear: both;
	margin: 0 0 40px;
	margin: 0 0 4rem;
	overflow: hidden;
}

.winfield-home-page #genesis-responsive-slider {
	border: 0;
	margin: 0 auto;
	width: auto;
}

.winfield-home-page #genesis-responsive-slider img {
	border: 0;
	margin: 0 auto;
	max-width: 100%;
	padding: 0;
}

.winfield-home-page .slide-excerpt {
	background-color: #1b1b1b;
	margin: 0;
	padding: 0px 3px;
	padding: 0 0.3rem;
}

.winfield-home-page #genesis-responsive-slider .flex-direction-nav li .next,
.winfield-home-page #genesis-responsive-slider .flex-direction-nav li .prev {
	bottom: 15px;
	left: auto;
	top: auto;
}

.winfield-home-page #genesis-responsive-slider .flex-direction-nav li .prev {
	right: 72px !important;
}

.winfield-home-page #genesis-responsive-slider .flex-direction-nav li .next {
	right: 20px !important;
}

html > body.winfield-home-page .slide-excerpt-border {
	border: none;
	padding: 0;
}

.winfield-home-page #genesis-responsive-slider a,
.winfield-home-page #genesis-responsive-slider h2,
.winfield-home-page #genesis-responsive-slider h2 a,
.winfield-home-page #genesis-responsive-slider p {
	color: #fff;
	text-decoration: none;
}

.winfield-home-page #genesis-responsive-slider p {
	font-size: 14px;
	font-size: 1.4rem;
}

.winfield-home-page #genesis-responsive-slider h2 a:hover,
.winfield-home-page #genesis-responsive-slider a:hover {
	text-decoration: underline;
}

/* 15b - Home Welcome ----------- */

.home-welcome {
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
}

.welcome-wrap {
	clear: both;
	color: #777;
	font-family: Georgia,Times,'Times New Roman',serif;
	font-size: 24px;
	font-size: 2.4rem;
	overflow: hidden;
	padding: 30px;
	padding: 3rem;
	text-align: center;
}

.home-welcome h4.widgettitle {
	color: #777;
	font-family: Georgia,Times,'Times New Roman',serif;
	font-size: 32px;
	font-size: 3.2rem;
}

.home-welcome p {
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
}

/* 15c - Home Middle ----------- */

.home-middle {
	clear: both;
	margin: 0 auto -120px;
	margin: 0 auto -12rem;
	max-width: 1180px;
	overflow: hidden;
	padding: 40px;
	padding: 4rem;
}

.home-middle .widget {
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}

.home-left,
.home-center,
.home-right {
	width: 30.909090909%;
}

.home-left,
.home-center {
	float: left;
}

.home-right {
	float: right;
}

.home-left {
	margin-right: 3.389830508%;
}


/*
16 Widget Page
---------------------------------------------------------------------------------------------------- */

.winfield-widget-page .content .widget {
	border-bottom: 1px solid #ddd;
	margin-bottom: 40px;
	margin-bottom: 4rem;
	padding-bottom: 40px;
	padding-bottom: 4rem;
}

.winfield-widget-page .content .widget p {
	margin-bottom: 26px;
	margin-bottom: 2.6rem;
}

.winfield-widget-page .content ol,
.winfield-widget-page .content ul {
	margin-bottom: 26px;
	margin-bottom: 2.6rem;
}

.winfield-widget-page .content ol li,
.winfield-widget-page .content ul li {
	margin-left: 40px;
	margin-left: 4rem;
}

.winfield-widget-page .content ul li {
	list-style-type: circle;
}

.winfield-widget-page .content .entry-content ol li {
	list-style-type: decimal;
}

.winfield-widget-page .content  ol ol,
.winfield-widget-page .content  ul ul {
	margin-bottom: 0;
}

.winfield-widget-page .post.entry {
	margin-bottom: 0;
}


/*
17 Genesis Widgetized Not Found & 404
---------------------------------------------------------------------------------------------------- */

.error404 .content .widget-area,
.search-no-results .content .widget-area {
	border-bottom: 1px solid #ddd;
	margin-bottom: 40px;
	margin-bottom: 4rem;
	padding-bottom: 40px;
	padding-bottom: 4rem;
}

.error404 .content .widget-area p,
.search-no-results .content .widget-area p {
	margin-bottom: 26px;
	margin-bottom: 2.6rem;
}

.error404 .content ol,
.error404 .content ul,
.search-no-results .content ol,
.search-no-results .content ul {
	margin-bottom: 26px;
	margin-bottom: 2.6rem;
}

.error404 .content ol li,
.error404 .content ul li,
.search-no-results .content ol li,
.search-no-results .content ul li{
	margin-left: 40px;
	margin-left: 4rem;
}

.error404 .content ul li,
.search-no-results .content ul li {
	list-style-type: circle;
}

.error404 .content .entry-content ol li,
.search-no-results .content .entry-content ol li {
	list-style-type: decimal;
}

.error404 .content  ol ol,
.error404 .content  ul ul,
.search-no-results .content  ol ol,
.search-no-results .content  ul ul {
	margin-bottom: 0;
}


/*
18 Media Queries
---------------------------------------------------------------------------------------------------- */

/* Desktops, laptops and iPads (landscape) ----------- */

@media only screen and (max-width: 1024px) {

	.footer-widgets,
	.site-container,
	.site-footer {
		margin: 0 auto;
		max-width: 960px;
	}

	.winfield-home-page .slide-excerpt,
	.flex-direction-nav,
	.genesis-nav-menu > .right,
	.site-header .search-form {
		display: none;
	}
}

/* iPads (portrait) ----------- */

@media only screen and (max-width: 768px) {

	.site-container {
		margin: 0 auto;
		padding: 5%;
	}

	.gwat-columns.one-half,
	.gwat-columns.one-third {
		float: none !important;
		width: 100% !important;
	}

	.footer-widgets-1,
	.footer-widgets-2,
	.footer-widgets-3,
	.home-center,
	.home-left,
	.home-right,
	.site-footer .wrap,
	.site-header .widget-area,
	.site-inner,
	.title-area,
	.site-container .sidebar-primary,
	.site-container .content,
	.site-container .content-sidebar-wrap,
	.site-container .sidebar-secondary {
		width: 100%;
	}

	.site-description,
	.site-title,
	.title-area {
		text-align: center;
	}

	.site-description,
	.site-title {
		margin: 16px 0;
		margin: 1.6rem 0;
	}

	.site-footer .wrap {
		margin: 0 auto;
		padding: 24px;
		padding: 2.4rem;
	}

	.site-footer .wrap {
		background-color: #fff;
	}

	.footer-widgets-1 {
		margin: 0;
	}

 /* Menu Icon properties */

	#header-menu-icon,
	#primary-menu-icon,
	#secondary-menu-icon {
		border-bottom: 1px solid #ddd;
		border-top: 1px solid #ddd;
		cursor: pointer;
		display: block;
		padding: 24px 24px;
		padding: 2.4rem 2.4rem;
		text-align: center;
	}

	#header-menu-icon::before {
		content: "HEADER NAV \25BC";
	}

	#primary-menu-icon::before {
		content: 'NAVIGATION \25BC';
	}

	#secondary-menu-icon::before {
		content: 'SECONDARY NAV \25BC';
	}

	#header-menu-icon::before,
	#primary-menu-icon::before,
	#secondary-menu-icon::before {
		color: #999;
		font-weight: bold;
		letter-spacing: 1px;
	}

	#header-menu-icon:hover::before {
		content: "HEADER NAV \25BC";
	}

	#primary-menu-icon:hover::before {
		content: 'NAVIGATION \25BC';
	}

	#secondary-menu-icon:hover::before {
		content: 'SECONDARY NAV \25BC';
	}

	#header-menu-icon:hover::before,
	#primary-menu-icon:hover::before,
	#secondary-menu-icon:hover::before {
		color: #444;
	}

	#header-menu-icon:active::before {
		content: "HEADER NAV \25BC";
	}

	#primary-menu-icon:active::before {
		content: 'NAVIGATION \25BC';
	}

	#secondary-menu-icon:active::before {
		content: 'SECONDARY NAV \25BC';
	}

	#header-menu-icon:active::before,
	#primary-menu-icon:active::before,
	#secondary-menu-icon:active::before {
		color: #2a8ec8;
	}

	/* Hide Menus until toggled via script */

	#menu-header-navigation,
	.menu-primary,
	.menu-secondary {
		display: none;
	}

	/* Menu misc properties */

	.nav-header,
	.nav-primary,
	.nav-secondary {
		clear: both;
		color: #999;
		font-family: 'Roboto', sans-serif;
		line-height: 1.5;
		width: 100%;
		z-index: 9999;
	}

	.nav-header .menu-item,
	.nav-primary .menu-item,
	.nav-secondary .menu-item {
		display: block;
		text-align: left;
	}

	.nav-header a,
	.nav-primary a,
	.nav-secondary a {
		background-color: #f0f0f0;
		border-bottom: 1px solid #ccc;
		color: #222;
		display: block;
		padding: 20px 24px;
		padding: 2rem 2.4rem;
		position: relative;
	}

	.nav-header a:hover,
	.nav-header .current-menu-item > a,
	.nav-header .sub-menu .current-menu-item > a:hover,
	.nav-primary a:hover,
	.nav-primary .current-menu-item > a,
	.nav-primary .sub-menu .current-menu-item > a:hover,
	.nav-secondary a:hover,
	.nav-secondary .current-menu-item > a,
	.nav-secondary .sub-menu .current-menu-item > a:hover {
		background-color: #ddd;
		color: #2a8ec8;
	}

	.nav-header .sub-menu .current-menu-item > a,
	.nav-primary .sub-menu .current-menu-item > a,
	.nav-secondary .sub-menu .current-menu-item > a {
		color: #2a8ec8;
	}

	.nav-header > .menu-item > a,
	.nav-primary > .menu-item > a,
	.nav-secondary > .menu-item > a {
		text-transform: uppercase;
	}

	.nav-header .sub-menu,
	.nav-primary .sub-menu,
	.nav-secondary .sub-menu {
		left: 0px;
		opacity: 1;
		position: relative;
		-webkit-transition: opacity .4s ease-in-out;
		-moz-transition:    opacity .4s ease-in-out;
		-ms-transition:     opacity .4s ease-in-out;
		-o-transition:      opacity .4s ease-in-out;
		transition:         opacity .4s ease-in-out;
		width: 100%;
		z-index: 99;
	}

	.nav-header .sub-menu a,
	.nav-primary .sub-menu a,
	.nav-secondary .sub-menu a {
		background-color: #fff;
		border-bottom: 1px solid #ccc;
		font-size: 14px;
		font-size: 1.4rem;
		padding: 18px 30px;
		padding: 1.8rem 3rem;
		position: relative;
		width: 100%;
	}

	.nav-header .sub-menu a::before,
	.nav-primary .sub-menu a::before,
	.nav-secondary .sub-menu a::before {
		content: "- ";
		font-size: 14px;
		font-size: 1.4rem;
	}

	.nav-header .sub-menu a:hover,
	.nav-primary .sub-menu a:hover,
	.nav-secondary .sub-menu a:hover {
		background-color: #f7f7f7;
	}

	.nav-header .sub-menu li li a,
	.nav-primary .sub-menu li li a
	.nav-secondary .sub-menu li li a {
		padding: 18px 40px;
		padding: 1.8rem 4rem;
	}

	.nav-header .sub-menu .sub-menu,
	.nav-primary .sub-menu .sub-menu,
	.nav-secondary .sub-menu .sub-menu {
		margin: 0;
	}

	.nav-header .menu-item:hover,
	.nav-primary .menu-item:hover,
	.nav-secondary .menu-item:hover {
		position: static;
	}

	.nav-header .menu-item:hover > .sub-menu,
	.nav-primary .menu-item:hover > .sub-menu,
	.nav-secondary .menu-item:hover > .sub-menu {
		left: auto;
		opacity: 1;
	}

}

/* iPhones (portrait and landscape) ----------- */

@media only screen and (max-width: 480px) {


	#genesis-responsive-slider {
		display: none;
	}

	.five-sixths,
	.four-fifths,
	.four-sixths,
	.one-fifth,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fifths,
	.three-fourths,
	.three-sixths,
	.two-fifths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		margin: 0;
		width: 100%;
	}

}