/*
	Theme Name: KOE
	Description: KOE child theme for the Genesis Framework.
	Author: Kat Westcott
	Author URI: http://katwestcott.com/
	Version: 1.0

	Template: genesis
	Template Version: 2.1.2
*/

/*
HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* Baseline Normalize
	normalize.css v2.1.2 | MIT License | git.io/normalize
--------------------------------------------- */

article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}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}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}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}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}

/* Box Sizing
--------------------------------------------- */

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

/* Float Clearing
--------------------------------------------- */

.archive-pagination:before,
.clearfix:before,
.entry:before,
.entry-pagination:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.wrap:before,
.language-bar:before {
	content: " ";
	display: table;
}

.archive-pagination:after,
.clearfix:after,
.entry:after,
.entry-pagination:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.wrap:after,
.language-bar:after {
	clear: both;
	content: " ";
	display: table;
}


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

/* Typographical Elements
--------------------------------------------- */

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

body {
	background: #843da5;
	background-image: url(images/koebg-1.png), url(images/koebg-2.png);
	background-repeat: repeat-x, repeat;
	color: #585A5E; /* #686868; */
	font-family: "fira-sans", Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1.625;
}

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition:    all 0.1s ease-in-out;
	-ms-transition:     all 0.1s ease-in-out;
	-o-transition:      all 0.1s ease-in-out;
	transition:         all 0.1s ease-in-out;
}

::-moz-selection {
	background-color: #333;
	color: #fff;
}

::selection {
	background-color: #333;
	color: #fff;
}

a {
	color: #666;
	text-decoration: none;
}

a img {
	margin-bottom: -4px;
	margin-bottom: -0.4rem;
}

a:hover {
	color: #333;
}

p {
	margin: 0 0 24px;
	margin: 0 0 2.4rem;
	padding: 0;
}

strong {
	font-weight: 700;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

blockquote {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	color: #8e8ba5;
	font-style: italic;
	margin: 30px;
	padding: 30px;
	text-align: center;
}
blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code {
	background-color: #333;
	color: #ddd;
}
cite {
	font-style: normal;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #333;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 16px;
	margin: 0 0 1.6rem;
}

h1 {
	font-size: 36px;
	font-size: 3.6rem;
}

h2 {
	font-size: 30px;
	font-size: 3rem;
}

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

h4 {
	font-size: 20px;
	font-size: 2rem;
}

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

h6 {
	font-size: 16px;
	font-size: 1.6rem;
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
	width: auto; /* IE8 */
}

/* Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	color: #999;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 12px 16px;
	padding: 1.2rem 1.6rem;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}
::-moz-placeholder {
	color: #999;
	opacity: 1;
}
::-webkit-input-placeholder {
	color: #999;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.entry-content .button {
	background-color: #3f3f85;
	border: none;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	padding: 12px 30px;
	text-transform: uppercase;
	width: auto;
}

button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover,
.entry-content .button:hover {
	background-color: rgba(95, 108, 179, 1);
}

.entry-content .button:hover {
	color: #fff;
}

.button {
	display: inline-block;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

/* 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;
}


/*
Structure and Layout
---------------------------------------------------------------------------------------------------- */

/* Site Containers
--------------------------------------------- */

.site-inner,
.wrap {
	margin: 0 auto;
	max-width: 1140px;
}

.site-inner {
	clear: both;
}

/* Column Widths and Positions
--------------------------------------------- */

/* Wrapping div for .content and .sidebar-primary */

.content-sidebar-sidebar .content-sidebar-wrap,
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	width: 920px;
}

.content-sidebar-sidebar .content-sidebar-wrap {
	float: left;
}

.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	float: right;
}

/* Content */

.content {
	float: right;
	width: 790px;
	margin-right: 5px;
	padding-left: 35px;
	border-left: 1px solid #7778b0;
}

.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: 520px;
}

.full-width-content .content {
	width: 100%;
}

/* Primary Sidebar */

.sidebar-primary {
	float: right;
	width: 290px;
	margin-top: 38px;
	padding-bottom: 20px;
}

.sidebar-content .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary {
	float: left;
}

/* Secondary Sidebar */

.sidebar-secondary {
	float: left;
	width: 180px;
}

.content-sidebar-sidebar .sidebar-secondary {
	float: right;
}

/* Column Classes
	Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css
--------------------------------------------- */

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


/*
Common Classes
---------------------------------------------------------------------------------------------------- */

/* WordPress
--------------------------------------------- */

.avatar {
	float: left;
}

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

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

.search-form input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}
img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 2.4rem;
}

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

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

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

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

.wp-caption-text {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
}
.widget_calendar table {
	width: 100%;
}

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

/* Genesis
--------------------------------------------- */

.breadcrumb {
	margin-bottom: 20px;
	margin-bottom: 2rem;
}

.archive-description,
.author-box {
	background-color: #fff;
	margin-bottom: 40px;
	margin-bottom: 4rem;
}

.archive-description {
	padding: 40px 40px 24px;
	padding: 4rem 4rem 2.4rem;
}

.author-box {
	padding: 40px;
	padding: 4rem;
}

.author-box-title {
	color: #333;
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 4px;
	margin-bottom: 0.4rem;
}

.author-box a {
	border-bottom: 1px solid #ddd;
}

.author-box p {
	margin-bottom: 0;
}

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

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

.entry-title {
	font-size: 36px;
	font-size: 3.6rem;
	line-height: 1;
}

.entry-title a,
.sidebar .widget-title a {
	color: #333;
}

.entry-title a:hover {
	color: #666;
}

.widget-title {
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
	font-family: "ff-dax-web-pro-condensed", arial, sans-serif;
}
.wf-active .widget-title {
	font-size: 18px;
	font-size: 1.8rem;
}

.sidebar .widget-title a {
	border: none;
}

.archive-title {
	font-size: 20px;
	font-size: 2rem;
	margin-bottom: 24px;
	margin-bottom: 2.4rem;
}


/*
Widgets
---------------------------------------------------------------------------------------------------- */

/* Featured Content
--------------------------------------------- */

.featured-content .entry {
	border-bottom: 2px solid #f5f5f5;
	margin-bottom: 20px;
	margin-bottom: 2rem;
	padding: 0 0 24px;
	padding: 0 0 2.4rem;
}

.featured-content .entry-title {
	border: none;
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1.2;
}

.featured-content .entry-title a {
	border: none;
}


/*
Plugins
---------------------------------------------------------------------------------------------------- */

/* Gravity Forms
--------------------------------------------- */

div.gform_wrapper input[type="email"],
div.gform_wrapper input[type="text"],
div.gform_wrapper textarea,
div.gform_wrapper .ginput_complex label {
	font-size: 16px;
	padding: 12px 16px;
}

div.gform_wrapper .ginput_complex label {
	padding: 0;
}

div.gform_wrapper li,
div.gform_wrapper form li {
	margin: 16px 0 0;
	margin: 1.6rem 0 0;
}

div.gform_wrapper .gform_footer input[type="submit"] {
	font-size: 14px;
	font-size: 1.4rem;
}

div.gform_wrapper .top_label .gfield_label {
	font-weight: 400;
}

/* ---------- social media feather ------ */
.social-feather .social-feather-label {
	margin-top: 30px;
	margin-bottom: 3px;
	font-size: 14px;
}
.is-mobile .social-feather a {
	margin-right: 15px !important;
	margin-bottom: 15px !important;
}

/* ------------------- WPR Menu mobile nav plugin --------------------- */
#wprmenu_bar .menu_title {
	padding-right: 10px;
}
div#wprmenu_menu .wprmenu_icon_par {
	position: absolute;
	right: 0;
	left: auto;
}
div#wprmenu_menu .wprmenu_icon_par:hover {
	color: #bbbbbb;
}
div#wprmenu_menu.wprmenu_levels a.wprmenu_parent_item {
	margin-right: 0; /* 44px; */
	margin-left: 0;
}
 div#wprmenu_menu ul li.nolink {
	display: block;
	font-size: 14px;
	margin: 0;
	padding: 0;
}
div#wprmenu_menu .nolink-menu-item-title {
	display: inline-block;
	padding: 13px 0 13px 13px;
	color: #888;
}
div#wprmenu_menu ul li a:hover {  /*   new   */
  color: #bbbbbb;
}
div#wprmenu_menu.wprmenu_levels ul li ul li {
	padding-right: 0;
	padding-left: 22px;  /*  new   */
}
div#wprmenu_menu.wprmenu_levels ul li ul li.wprmenu_parent_item_li a.wprmenu_parent_item {
	margin-left: 22px;  /*   44px;   */
}
div#wprmenu_menu.wprmenu_levels ul li ul li ul li {
	margin-left: 0;
	padding-left: 44px;   /*   new   */
}

/* ---------- Contact Form 7 ------------- */
.wpcf7-form p {
	font-weight: 400;
}
.wpcf7-form-control-wrap {
	display: block;
	margin: 0.5em 0 0;
	width: 95%;
}
.wpcf7-form-control-wrap textarea {
	height: 10em;
}
.wpcf7 .required {
	color: #790000;
	margin-left: 0.25em;
}


/*
Site Header
---------------------------------------------------------------------------------------------------- */

.site-header {
	background-color: #fff;
}

.site-header .wrap {
	padding: 40px 0;
	padding: 4rem 0;
}


/* Title Area
--------------------------------------------- */

.title-area {
	float: left;
	font-weight: 700;
	padding: 16px 0;
	padding: 1.6rem 0;
	width: 320px;
}

.header-image .title-area {
	padding: 0;
}

.site-title {
	font-size: 28px;
	font-size: 2.8rem;
	line-height: 1;
	margin: 0 0 8px;
	margin: 0 0 0.8rem;
	text-transform: uppercase;
}

.site-title a,
.site-title a:hover {
	color: #333;
}

.site-description {
	color: #999;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1;
	margin-bottom: 0;
}

/* Full width header, no widgets */

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

.header-image .site-description,
.header-image .site-title a {
	display: block;
	text-indent: -9999px;
}

/* Logo, hide text */

.header-image .site-header .wrap {
	background: url(images/logo.png) no-repeat left;
	padding: 0;
}

.header-image .site-title a {
	float: left;
	min-height: 164px;
	width: 100%;
}

/* Widget Area
--------------------------------------------- */

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

.header-image .site-header .widget-area {
	padding: 40px 0;
	padding: 4rem 0;
}

.site-header .search-form {
	float: right;
	margin-top: 24px;
	margin-top: 2.4rem;
}


/*
Site Navigation
---------------------------------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	color: #999;
	line-height: 26px;
	width: 100%;
	text-align: center;
	padding-top: 1px;
}

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

.genesis-nav-menu a {
	border: none;
	color: #999;
	display: block;
	padding: 28px 24px;
	padding: 2.8rem 2.4rem;
	position: relative;
}

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

.genesis-nav-menu .sub-menu .current-menu-item > a {
	color: #999;
}

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

.genesis-nav-menu .sub-menu {
	left: -9999px;
	opacity: 0;
	position: absolute;
	-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: 200px;
	z-index: 100;
}

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

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

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

.genesis-nav-menu .menu-item:hover > .sub-menu {
	left: auto;
	opacity: 1;
}
.genesis-nav-menu li.menu-item.nolink:hover > .sub-menu {
	margin: 10px 0 0 -15px;
}
.genesis-nav-menu .menu-item:last-child:hover > .sub-menu,
.genesis-nav-menu li.menu-item.nolink:last-child:hover > .sub-menu {
	margin-left: -65px;
}
.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: 28px 0;
	padding: 2.8rem 0;
	text-transform: uppercase;
}
.genesis-nav-menu > .right > a {
	display: inline;
	padding: 0;
}
.genesis-nav-menu > .rss > a {
	margin-left: 48px;
	margin-left: 4.8rem;
}
.genesis-nav-menu > .search {
	padding: 14px 0 0;
	padding: 1.4rem 0 0;
}

/* Site Header Navigation
--------------------------------------------- */

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

/* Primary Navigation
--------------------------------------------- */

.nav-primary {
	background-color: #333;
}
.nav-primary a:hover,
.nav-primary .current-menu-item > a {
	color: #fff;
}
.nav-primary .sub-menu a:hover {
	color: #333;
}

/* Secondary Navigation
--------------------------------------------- */

.nav-secondary {
	background-color: #fff;
}


/*
Content Area
---------------------------------------------------------------------------------------------------- */

/* Entries
--------------------------------------------- */

.entry {
	background-color: #fff;
	margin-bottom: 40px;
	margin-bottom: 4rem;
	padding: 40px 40px 24px 20px;
	padding: 4rem 4rem 2.4rem 2rem;
}

.entry-content a {
	border-bottom: 1px solid #ddd;
	color: #4c3abd;
}

.entry-content a:hover {
	color: #333;
}

.entry-content .attachment a,
.entry-content .gallery a {
	border: none;
}

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

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

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

.entry-content ul li {
	list-style-type: disc;
	margin-bottom: 1rem;
}

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

.entry-content .search-form {
	width: 50%;
}

.entry-meta {
	color: #999;
	font-size: 14px;
	font-size: 1.4rem;
}

.entry-meta a {
	border-bottom: 1px solid #ddd;
}

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

.entry-footer .entry-meta {
	border-top: 2px solid #f5f5f5;
	margin: 0 -40px;
	margin: 0 -4rem;
	padding: 32px 40px 8px;
	padding: 3.2rem 4rem 0.8rem;
}

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

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

/* Pagination
--------------------------------------------- */

.archive-pagination,
.entry-pagination {
	font-size: 14px;
	font-size: 1.4rem;
	margin: 40px 0;
	margin: 4rem 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #333;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	padding: 8px 12px;
	padding: 0.8rem 1.2rem;
}

.archive-pagination li a:hover,
.archive-pagination li.active a {
	background-color: #f15123;
}

.entry-pagination a {
	border-bottom: 1px solid #ddd;
}

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

.comment-respond,
.entry-comments,
.entry-pings {
	background-color: #fff;
	margin-bottom: 40px;
	margin-bottom: 4rem;
}

.entry-comments {
	padding: 40px;
	padding: 4rem;
}

.comment-respond,
.entry-pings {
	padding: 40px 40px 16px;
	padding: 4rem 4rem 1.6rem;
}

.comment-respond a,
.entry-comments a {
	border-bottom: 1px solid #ddd;
}

.comment-content {
	clear: both;
}

.entry-comments .comment-author {
	margin-bottom: 0;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%
}

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

.comment-list li,
.ping-list li {
	list-style-type: none;
}

.comment-list li {
	margin-top: 24px;
	margin-top: 2.4rem;
	padding: 32px;
	padding: 3.2rem;
}

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

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

.comment .avatar {
	margin: 0 16px 24px 0;
	margin: 0 1.6rem 2.4rem 0;
}

.entry-pings .reply {
	display: none;
}

.form-allowed-tags {
	background-color: #f5f5f5;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 24px;
	padding: 2.4rem;
}


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

.sidebar {
	color: #999;
}

.sidebar a {
	border-bottom: 1px solid #ddd;
}

.sidebar p:last-child {
	margin-bottom: 0;
}

.sidebar li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.6rem;
	word-wrap: break-word;
}

.sidebar ul > li:last-child {
	margin-bottom: 0;
}

.sidebar .widget {
	padding: 0 0 0 5px;
	padding: 0 0 0 .5rem;
}

.sidebar .widget-title {
	margin-bottom: 20px;
	border-bottom: 1px solid #bd8ccf;
	position: relative;
	left: -45px;
	padding-left: 45px;
	color: #3c3198;
}

.sidebar-primary .sidebar-social a {
	margin: 0 5px 15px 0;
	margin-top: 0;
	margin-bottom: 15px;
	height: 36px;
	width: 36px;
	background: url(/wp-content/uploads/KOE_socialsprite.png) no-repeat;
	display: inline-block;
	line-height: .8;
}
.sidebar-primary .sidebar-social a:hover {
	opacity: .8;
}
.sidebar-primary .sidebar-social a.twitter {
	background-position: -36px 0;
}
.sidebar-primary .sidebar-social a.youtube {
	background-position: -72px 0;
}
.sidebar-primary .sidebar-social a.email {
	background-position: -108px 0;
}

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

.footer-widgets {
	background-color: #2b283b;
	border-top: 10px solid #7f43a8;
	color: #fff;
	clear: both;
	padding: 35px 0 0 60px;
	padding: 3.5rem 0 0 6rem;
}
.is-phone .footer-widgets {
	padding-left: 30px;
	padding-bottom: 0;
}

.footer-widgets-1 {
	float: left;
}
.footer-widgets-3 {
	width: 350px;
}
.footer-widgets-2 {
	width: 360px;
	float: left;
}

.footer-widgets-3 {
	float: right;
}

.footer-widgets a {
	border-bottom: 1px solid #666;
	color: #d2d2d4;
}

.footer-widgets a:hover {
	color: #ddd;
}

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

.footer-widgets .widget-title {
	color: #fff;
}

.footer-widgets li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.6rem;
	padding-right: 55px;
	padding-right: 5.5rem;
	word-wrap: break-word;
	float: left;
	font-size: 12px;
	font-size: 1.2rem;
	font-family: arial, verdana, sans-serif;
}
.is-phone .footer-widgets li {
	float: none;
}
.footer-widgets li:last-child {
	padding-right: 0;
}
.footer-widgets li a {
	display: block;
	text-decoration: none;
	border-bottom: none;
}
.is-mobile .footer-widgets li a {
	padding: 3px 0;
}
.is-mobile .footer-widgets li.footer-home-link a:first-child {
	margin-top: -5px;
	margin-bottom: -5px;
}
.footer-widgets li a:hover {
	text-decoration: underline;
}
.footer-widgets li a b {
	color: #fff;
}
.footer-widgets .search-form input:focus {
	border: 1px solid #ddd;
}
.footer-widgets li .footer-social a {
	margin: 25px 7px 0 0;
	height: 36px;
	width: 36px;
	background: url(/wp-content/uploads/KOE_socialsprite.png) no-repeat;
	display: inline-block;
	opacity: .8;
	line-height: .7;
}
.footer-widgets li .footer-social a:hover {
	opacity: 1;
}
.footer-widgets li .footer-social a.twitter {
	background-position: -36px 0;
}
.footer-widgets li .footer-social a.youtube {
	background-position: -72px 0;
}
.footer-widgets li .footer-social a.email {
	background-position: -108px 0;
}
.is-mobile .footer-widgets li a[href^=tel] {
	padding: 0;
	margin: -15px 0 !important;
}
/*
Site Footer
---------------------------------------------------------------------------------------------------- */

.site-footer {
	background-color: #2b283b;
	color: #fff;
	font-size: 11px;
	font-size: 1.1rem;
	padding: 0;
}
.site-footer a {
	border-bottom: none;
	text-decoration: none;
	color: #fff;
	font-family: arial, verdana, sans-serif;
}
.site-footer a:hover {
	text-decoration: underline;
}
.site-footer p {
	margin-bottom: 0;
	font-family: arial, verdana, sans-serif;
}
.site-footer .wrap {
	padding: 0 45px;
	padding: 0 4.5rem;
}
.is-phone .site-footer .wrap {
	padding-left: 30px;
	padding-bottom: 25px;
}
.site-footer .language-bar {
	background-color: transparent;
	overflow: visible;
}
.site-footer .language-bar p.location-msg {
	display: none;
}
.site-footer .language-bar ul {
	position: static;
}
.site-footer .language-bar li.language-bar-title {
	text-indent: -9999px;
}
.site-footer .language-bar ul ul {
	display: block;
}
.site-footer .language-bar ul ul,
.site-footer .language-bar ul ul li {
	float: left;
	width: auto;
	background-color: transparent;
	margin-bottom: 10px;
}
.site-footer .language-bar ul ul li:last-child {
	padding-bottom: 2px;
}
.site-footer .language-bar ul ul li a {
	display: block;
	color: #7082AC;
	font-family: arial, verdana, sans-serif;
	font-size: 13px;
}
.site-footer .language-bar ul ul li a:hover {
	text-decoration: none;
}



/* -----------------------------------  MWD additions ------------------ */
.site-container {
	width: 1140px;
	margin: 0 auto 60px;
	border-right: 1px solid #2e1f57;
	border-left: 1px solid #2e1f57;
}
.site-header .wrap {
	margin: 0;
	padding: 0;
	height: 220px;
	width: 1140px;
	background-repeat: no-repeat;
	background-position: bottom right;
}
.is-mobile .site-container,
.is-mobile .site-header .wrap {
	width: 100%;
}
.site-header .title-area {
	position: absolute;
	left: -9999px;
}
.language-bar {
	height: 45px;
	background-color: #22202e;
	position: relative;
}
.language-bar p.location-msg {
	float: left;
	color: #fff;
	padding: 10px 0 0 35px;
	margin-bottom: 0;
	font-size: 18px;
}
.language-bar ul {
	top: 15px;
	right: 2%;
	position: absolute;
}
.is-phone .language-bar ul {
	right: auto;
	left: 10%;
}
.language-bar ul li {
	list-style-type: none;
	text-align: left;
	color: #bfbfbf;
	font-size: 15px;
	padding: 0 0 10px;
}
.language-bar ul li.language-bar-title {
	cursor: pointer;
	font-size: 13px;
}
.language-bar ul li.language-bar-title:after {
	content: '\25BC';  /* downward triangle */
	font-size: 10px;
}
.language-bar-title-logo {
	height: 10px;
	width: auto;
	display: inline-block;
	padding-right: 10px;
}
.is-mobile .language-bar-title-logo {
	height: 11px;
}
.language-bar ul ul {
	display: none;
	position: absolute;
	left: 0;
	top: 30px;
	z-index: 1001;
	padding: 2px 0 10px;
	width: 191px;
}
.is-phone .language-bar ul ul {
	left: -10px;
}
.language-bar ul:hover ul {
	display: block;
}
.language-bar ul ul li {
	padding: 1px 15px 2px;
	width: auto;
	background-color: #22202e;
}
.language-bar ul ul li:last-child {
	padding-bottom: 12px;
}
.is-mobile .language-bar ul ul li {
	padding-top: 10px;
	padding-bottom: 10px;
}
.language-bar ul ul li a {
	font-size: 14px;
	color: #fff;
	display: block;
}
.language-bar ul ul li:hover {
	background-color: #3E3E84;
}
.language-bar p {
	margin-bottom: 0;
	float: right;
}
.site-inner {
	max-width: 1140px;
	background-color: #fbfcfb;
	padding-left: 40px;
}
.sidebar-primary ul.children,
.sidebar-primary ul.sub-menu {
	margin-top: 3px;
	margin-left: 15px;
}
.sidebar-primary li,
.sidebar-primary a {
	line-height: 1.25;
	font-size: 14px;
	font-size: 1.4rem;
	border-bottom: none;
}
.sidebar-primary a[href="#"] {
	color: #999;
	outline: none;
}
.sidebar-primary a[href="#"]:hover {
	text-decoration: none;
	border-bottom: none;
}
.sidebar-primary a {
	color: #3F5687;
}
.sidebar-primary a:hover {
	border-bottom: 1px dotted #666;
}
.is-mobile .sidebar-primary li,
.is-mobile .sidebar-primary a {
	line-height: 1.65;
	font-size: 15px;
	font-size: 1.5rem;
}

	/* jquery accordion on sidebar nav    DO NOT delete this!!!  currently not in use*/
/* .sidebar-primary a.plus-sign,
.sidebar-primary a.minus-sign {
	display: inline-block;
	height: 9px;
	width: 9px;
	background: url(/wp-content/uploads/KOE_tiny-plus-minus-sprite.png) no-repeat;
	margin-left: 5px;
	outline: none;
}
.sidebar-primary a.minus-sign {
	background-position: -10px 0;
} */

/* ---------------- Header ---------------- */
.header-page-title {
	margin-top: 30px;
	margin-left: 11.4035%;
}
.header-page-title h2,
.header-page-title h3 {
	color: #fff;
	font-family: "myriad-pro-condensed", sans-serif;
	font-weight: 700;
	text-shadow: 2px 2px 5px #2a2f30;
	text-transform: uppercase;
	line-height: 1;
}
.header-page-title h2 {
	font-size: 70px;
	margin-bottom: 0;
}
.header-page-title h3 {
	font-size: 30px;
	margin-bottom: 0;
}
.header-page-title h3 > .reg {
	display: inline-block;
	font-size: 35px;
	line-height: 1;
	max-height: 25px;
	padding-top: 0px;
	text-shadow: 2px 2px 5px #2a2f30;
	vertical-align: top;
	font-weight: 400;
}
/* -------------- Nav ------------------- */
.nav-primary {
	background-color: #3f3f85;
}

/* ----------------- shortcodes ---------------------- */
.display-cat-posts-shortcode .postwrap {
	margin-bottom: 25px;
}
.display-cat-posts-shortcode h2.entry-title,
.display-cat-posts-shortcode h2.entry-title  a {
	font-size: 20px;
	margin-bottom: 10px;
}
.display-cat-posts-shortcode a.thumbnail {
	display: inline-block;
	margin-right: 15px;
}
.display-cat-posts-shortcode a.thumbnail:hover {
	opacity: .85;
}
.display-cat-posts-shortcode h2.entry-title  a,
.entry-content .display-cat-posts-shortcode a {
	border-bottom: none;
}

.genesis-nav-menu > .menu-item > a,
.genesis-nav-menu > li.menu-item.nolink {
	color: #fff;
	padding: 10px 15px;
	padding: 1rem 1.5rem;
	text-transform: uppercase;
	font-size: 13px;
	font-size: 1.3rem;
	font-family: "ff-dax-web-pro-condensed", arial, sans-serif;
	letter-spacing: -.01em;
}
.genesis-nav-menu > li.menu-item.nolink > a {
	text-transform: none;
}
.genesis-nav-menu > li.menu-item.nolink > span {
	cursor: default;
}
.wf-active .genesis-nav-menu > .menu-item >a,
.wf-active .genesis-nav-menu > li.menu-item{
	font-size: 17px;
	font-size: 1.7rem;
	letter-spacing: 0;
}
.genesis-nav-menu > li.menu-item.nolink:hover {
	cursor: pointer;
}
.nav-primary li.current-menu-item > a,
.genesis-nav-menu > .menu-item >a:hover {
	background: -moz-linear-gradient(top, rgba(115, 128, 216, 0) 0%, rgba(115, 128, 216, 0.4) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(115, 128, 216, 0)), color-stop(100%, rgba(115, 128, 216, 0.4))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(115, 128, 216, 0) 0%, rgba(115, 128, 216, 0.4) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(115, 128, 216, 0) 0%, rgba(115, 128, 216, 0.4) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(115, 128, 216, 0) 0%, rgba(115, 128, 216, 0.4) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(115, 128, 216, 0) 0%, rgba(115, 128, 216, 0.4) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#007380d8', endColorstr='#667380d8', GradientType=0); /* IE6-9 */
}

.genesis-nav-menu .sub-menu li {
	background-color: #5f6cb3;
	background-color: rgba(95,108,179,.92);
	padding: 0 15px;
	padding: 0 1.5rem;
	border: none;
	border-bottom: 1px solid #a4afec;
}
.genesis-nav-menu .sub-menu li.current-menu-item,
.genesis-nav-menu .sub-menu li:hover {
	background-color: #7f89cc;
	background-color: rgba(127, 137, 204, .92);
}
.genesis-nav-menu .sub-menu a {
	color: #fff;
	background-color: transparent;
	font-family: "ff-dax-web-pro-condensed", arial, helvetica, sans-serif;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 1rem 0;
	position: relative;
	width: 200px;
	border: none;
}
.wf-active .genesis-nav-menu .sub-menu a {
	font-size: 16px;
	font-size: 1.6rem;
}
.genesis-nav-menu .sub-menu li.current-menu-item > a,
.genesis-nav-menu .sub-menu li.current-menu-item > a:hover,
.genesis-nav-menu .sub-menu a:hover {
	color: #fff;
}
.nav-primary li.current-menu-item > a,
.genesis-nav-menu .sub-menu li.current-menu-item > a,
.genesis-nav-menu .sub-menu li.current-menu-item > a:hover {
	cursor: default;
}

/* -------------------------- content area -------------------- */
.entry,
.sidebar .widget {
	background-color: transparent;
}
.entry-title {
	font-family: "ff-dax-web-pro-condensed", arial, sans-serif;
}

/* --------------------- home -------------------------- */
.home .site-header .wrap {
	height: auto;
}
.home .content {
	padding-left: 0;
	border-left: none;
	min-height: 0;
	margin-right: 0;
}
.home #home-slider {
	height: auto;
	max-height: 352px;
	overflow: hidden;
	position: relative;
}
.home .slider-overlay {
	position: absolute;
	width: 100%;
	height: auto;
	padding: 20px 0 0 14.035%;
	z-index: 1000;
	left: 0;
	top: 0;
	text-align: center;
}
.home .slider-overlay-wrap {
	position: relative;
	height: 100%;
	width: 100%;
}
.is-phone .home .slider-overlay {
	width: 100%;
	height: auto;
	background-position: -9999px 0;
	padding-top: 10px;
	padding-left: 0;
}
.home .overlay-book-wrap {
	position: absolute;
	top: -24px;
	left: -40px;
}
.home .slider-overlay h3 {
	color: #fff;
	font-family: "myriad-pro-condensed", sans-serif;
	font-size: 85px;
	font-weight: 700;
	height: 60px;
	height: 6rem;
	line-height: .8;
	text-transform: uppercase;
	text-shadow: 2px 2px 5px #2A2F30;
}
.home .slider-overlay h3 > .reg {
	font-size: 55px;
	vertical-align: top;
	display: inline-block;
	padding-top: 4px;
	text-shadow: 2px 2px 5px #2A2F30;
}
.home .slider-overlay-wrap > p {
	font-family: "Century Gothic", arial, sans-serif;
	color: #F8F5EF;
	font-size: 15px;
	font-weight: 300;
	text-shadow: 2px 2px 5px #2A2F30;
}
.home .slider-overlay-wrap > p > b {
	color: #fff;
	font-weight: 700;
}
#home-slider .cycle-slideshow,
#home-slider .cycle-slideshow li,
#home-slider .cycle-slideshow img {
	line-height: .5;
}
#home-slider .cycle-slideshow li img {
	display: none;
}
#home-slider .cycle-slideshow li img:first-child {
	display: block;
}
.home .site-inner {
	padding: 35px 60px 0;
}
.is-tablet .home .site-inner {
	padding-left: 15px;
	padding-right: 15px;
}
.home #teaching-revealed-widget {
	position: relative;
	top: 0;
	left: 1px;
	float: left;
}
.home #teaching-revealed-widget span,
.home #teaching-revealed-widget a {
	font-family: "ff-dax-web-pro-condensed", arial, sans-serif;
	font-weight: bold;
}
.home #teaching-revealed-widget span {
	color: #23143e;
	padding-right: 15px;
}
.home #teaching-revealed-widget a {
	color: #fff;
	background-color: #e49f72;
	padding: 0 7px;
	display: inline-block;
}
.home #teaching-revealed-widget a:hover {
	background-color: rgba(228,159,114,.8);
}
.home .toprow {
	margin-top: 10px;
	position: relative;
}
.home .topleftposts {
	float: left;
	margin-bottom: 30px;
	margin-bottom: 3rem;
}
.home .topleftpost-wrap {
	float: left;
	position: relative;
}
.home .topleftpost-wrap .post-content {
	border-right: none;
	margin-right: 0;
	padding-right: 15px;
	padding-right: 1.5rem;
	line-height: 1;
}
.home .topleftpost-wrap .post-content a {
	display: block;
	line-height: normal;
	max-width: 150px;
}
.home .topleftpost-wrap p.title {
	position: absolute;
	bottom: 4px;
	left: 0;
	margin: 0;
	background-color: rgba(33,14,41,.8);
	width: 150px;
}
.home .topleftpost-wrap p.title:hover {
	background-color: rgba(33,14,41,.6);
}
.home .topleftpost-wrap p.title a {
	font-family: "myriad-pro-condensed", sans-serif;
	font-size: 17px;
	color: #fff;
	display: block;
	padding: 4px 0 4px 7px;
}
.home .topleftpost-wrap img {
	margin-bottom: 0;
}
.home .topleftpost-wrap a:hover img {
	opacity: .8;
}
.home .topcenterlinks {
	float: left;
	width: 167px;
}
.home .topcenterlinks li {
	list-style-type: none;
	background-color: #585db7;
/* SW**
	padding: 3px 0; */
	padding: 1px 0;
	margin-bottom: 4px;
	overflow: hidden;
	line-height: 1.2;
}
.home .topcenterlinks li:hover {
	background-color: rgba(88,93,183,.9);
}
.home .topcenterlinks a {
	font-family: "myriad-pro-condensed", sans-serif;
	font-size: 17px;
	color: #fff;
	display: block;
	padding: 6px 7px 7px;
	white-space: nowrap;
}
.is-phone .home .topcenterlinks a {
	padding: 5px 7px 6px;
}
.home .toprightvideo {
	float: none;
	position: absolute;
	left: auto;
	right: 1px;
	top: auto;
	bottom: 26px;
}
.is-tablet .home .toprightvideo {
	left: auto;
	right: 0;
}
.is-tablet .home .toprightvideo iframe {
	width: 299px;
	height: 169px;
}
.home .home-banners {
/*	max-width: 900px; */
	margin: 0 auto;
	text-align: center;
}
.home .home-banners-wrap {
	display: table;
/*	table-layout: fixed;  messes up desktop Firefox */
	margin-bottom: 30px;
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}
.home .home-banners-wrap .bannerwrap {
	display: table-cell;
	text-align: left;
	vertical-align: top;
	line-height: 0;
}
.home .home-banners-wrap.home-banners-wrap-680  {
	margin-bottom: 0;
}
.home .home-banners-wrap-680 .bannerwrap {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 30px;
}
.home .home-banners-wrap-500 {
	margin: 0 auto 30px;
	 width: 100%;
}
.home .home-banners-wrap-330 .bannerwrap,
.home .home-banners-wrap-500 .bannerwrap {
	display: inline-block;
	margin-bottom: 10px;
}
.home .home-banners-wrap-330 .bannerwrap:nth-child(odd),
.home .home-banners-wrap-500 .bannerwrap:nth-child(odd) {
	margin-right: 10px;
}
.home .home-banners-wrap img,
.home .home-banners-wrap.home-banners-wrap-680 a img,
.home .home-banners-wrap.home-banners-wrap-680 a:first-child img {
	max-width: 100%;
	width: auto;
	height: auto;
	display: inline-block;
	margin-left: 15px;
}
.home .home-banners-wrap img {
	margin-bottom: 0;
}
.home .home-banners-wrap-330 .bannerwrap img {
	margin-left: 0;
}
.home .home-banners-wrap-680.home-banners-wrap {
	display: block;
	text-align: center;
}
.home .home-banners-wrap a {
	display: inline-block;
	text-align: center;
	max-width: 100%;
	line-height: .7;
}
.home .home-banners-wrap-680 img {
	max-width: auto;
	max-height: 150px;
}
.home .home-banners-wrap-500 img {
	max-width: auto;
	max-height: 90px;
}
.home .home-banners-wrap-330 img {
	max-width: auto;
	max-height: 70px;
}
.is-tablet .home .home-banners-wrap a img  {
	width: 98%;
	margin-left: 10px;
}

.home .home-banners-wrap a:first-child img {
	margin-left: 0;
}
.home .home-banners-wrap a:hover img {
	opacity: .85;
}
.home .miniposts {
	margin-bottom: 15px;
	overflow: hidden;
}
.home .minipost-wrap {
	float: left;
	width: 265px;
	line-height: 1.6;
	padding: 0 20px 0 0;
}
.home .minipost-wrap h2 {
	font-size: 20px;
	color: #4925B6;
	text-align: center;
	padding-right: 25px;
	margin-right: 10px;
	font-family: "ff-dax-web-pro-condensed",verdana, sans-serif;
}
.home .minipost-wrap li,
.home .minipost-wrap p {
	font-family: "fira-sans", arial, helvetica, sans-serif;
	font-size: 14px;
	font-size: 1.4rem;
	color: #090808;
}
.home .minipost-wrap p {
	margin-bottom: 12px;
	margin-bottom: 1.2rem;
}
.home .minipost-wrap li {
	list-style-type: none;
	background: url(/wp-content/uploads/KOE-purple-arrow-bullet.png ) 0 5px no-repeat;
	padding-left: 20px;
	padding-left: 2rem;
}
.is-mobile .home .minipost-wrap li {
	background-position: 0 9px;
}
.home .minipost-wrap li a {
	display: inline-block;
	font-family: "fira-sans", arial, helvetica, sans-serif;
	font-size: 14px;
	font-size: 1.4rem;
	color: #8A30BE;
	font-weight: bold;
	padding-top: 2px;
	padding-bottom: 2px;
}
.is-mobile .home .minipost-wrap li a {
	padding-top: 3px;
	padding-bottom: 3px;
	font-size: 15px;
	font-size: 1.5rem;
}
.home .minipost-wrap li a:hover {
	text-decoration: underline;
}
.home .miniposts .post-content {
	border-right: 1px solid #c9cac8;
	padding-right: 20px;
	padding-right: 2rem;
	margin-right: 10px;
	margin-right: 1rem;
}
.home .minipost-wrap:last-child {
	padding-right: 0;
	width: 215px;
	float: left;
}
.home .minipost-wrap:last-child .post-content {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}
.minipost-bottompost-divider {
	width: 50%;
	height: 4px;
	margin: 30px 0 20px;
	background: -moz-linear-gradient(left,  rgba(128,98,206,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(128,98,206,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left,  rgba(128,98,206,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left,  rgba(128,98,206,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left,  rgba(128,98,206,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
	background: linear-gradient(to right,  rgba(128,98,206,1) 0%,rgba(255,255,255,0) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8062ce', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */
}

.home-bottomposts {
	margin-bottom: 25px;
	position: relative;
}
.is-mobile .home-bottomposts-arrow-link-right {
	display: none;
}
.home-bottomposts-arrow-link-right {
	position: absolute;
	top: 0;
	right: 0;
}
.home-bottomposts-arrow-link-right a {
	display: inline-block;
	width: 60px;
	height: 125px;
	background: url(/wp-content/uploads/KOE_newsposts-arrow.jpg ) no-repeat top right;
}
.home-bottomposts-arrow-link-right a:hover {
	opacity: .75;
}
.home-bottomposts-wrap {
	float: left;
	margin-right: 12px;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
	width: 125px;
	height: 125px;
}
.is-tablet .home-bottomposts-wrap {
	margin-right: 12px;
}
.home-bottomposts-wrap:last-child {
	margin-right: 0;
}
/* .home-bottomposts-thumb-wrap {
	height: 125px;
	width: 125px;
	line-height: .7;
	position: absolute;
	z-index: 2;
	display: none;
} */
.home-bottomposts-thumb {
	height: 125px;
	width: 125px;
	position: absolute;
	z-index: 1;
	display: block;
}
.home-bottomposts-thumb-scrim {
	height: 125px;
	width: 125px;
	position: absolute;
	z-index: 2;
	display: block;
/*	background-color: rgba(33, 14, 41, .4); */
	background-color: transparent;
}
.home-bottomposts-wrap:hover .home-bottomposts-thumb-scrim {
/*	background-color: rgba(33, 14, 41, .0); */
	background-color: rgba(255, 255, 255, .15);
}
.home-bottomposts-link {
	bottom: 0;
	left: 0;
	margin: 0;
	position: absolute;
	height: 125px;
	width: 125px;
	min-height: 125px;
	min-width: 125px;
	z-index: 50;
	display: inline-block;
}
/* .home-bottomposts-link:hover {
	background-color: rgba(33, 14, 41, 0);
	cursor: pointer;
} */
.home-bottomposts-title {
	position: absolute;
/*	top: 50%;
	left: 50%; */
	/*  vertical & horiz center text */
/*	transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%); */
	bottom: 0;
	left: 0;
	color: #fff;
	font-family: "myriad-pro-condensed",sans-serif;
	font-size: 16px;
	padding: 0 10px;
	line-height: 1.65; /* 1.2; */
	width: 125px;
	text-align: left; /* center; */
	z-index: 3;
	overflow: hidden;
	white-space: nowrap;
	background-color: rgba(33, 14, 41, .7);
}
.home-bottomposts-wrap:hover .home-bottomposts-title {
	background-color: rgba(33, 14, 41, .4);
}
/* ---------- Event Calendar page ------------------ */
.events-archive .breadcrumb {
	display: none;
}

/* ------------------ donate page ---------------- */
table.donation-wrap {
	width: 75%;
	margin: 0 auto;
	border: none;
	padding: 0;
	line-height: 1;
}
table.donation-wrap tbody {
	border: none;
}
table.donation-wrap td {
	border: none;
	padding: 0;
}
table.donation-wrap table {
	border: none;
	padding: 0;
	margin-bottom: 0;
	line-height: 2;
}
input.donation-amount {
	padding: 8px 10px;
	margin-bottom: 10px;
	border-radius: 0;
	box-shadow: none;
	border: none;
	width: 175px;
}
input.donation-submit {
	padding: 0;
	max-width: 150px;
	max-height: 38px;
	border-radius: 0;
	box-shadow: none;
	border: none;
	position: relative;
	bottom: -1px;
}

/* ----------- purchase buttons ------------- */
.buy-form td {
	vertical-align: middle;
	padding: 12px 0;
}
.buy-form td:last-child {
	padding-left: 10px;
}
.buy-form p {
	margin-bottom: 0;
}

/* --------- event pages --------------- */
#tribe-events-content a, .tribe-events-adv-list-widget .tribe-events-widget-link a, .tribe-events-adv-list-widget .tribe-events-widget-link a:hover, .tribe-events-back a, .tribe-events-back a:hover, .tribe-events-event-meta a, .tribe-events-list-widget .tribe-events-widget-link a, .tribe-events-list-widget .tribe-events-widget-link a:hover, ul.tribe-events-sub-nav a, ul.tribe-events-sub-nav a:hover {
	border-bottom: none;
}
.single-tribe_events .tribe-events-event-meta {
	word-wrap: break-word;
}

/*
div.site-container {
	position: relative;
}
nav.nav-primary {
	position: relative;
	z-index: 500;
}
div.site-inner {
	position: relative;
	z-index: 1;
}
*/



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

/*
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	only screen and (-moz-min-device-pixel-ratio: 1.5),
	only screen and (-o-min-device-pixel-ratio: 3/2),
	only screen and (min-device-pixel-ratio: 1.5) {

	.header-image .site-header .wrap {
		background: url(images/logo@2x.png) no-repeat left;
		background-size: 320px 164px;
	}

} */


/* ------------------- tablet & phone adjustments ------------------ */

@media only screen and (max-width: 1139px) {
	.footer-widgets li {
		padding-right: 3rem;
	}
	.genesis-nav-menu {
		margin-left: -45px;
	}
	.is-mobile .genesis-nav-menu {
		margin-left: 0;
	}
	.content {
		padding-right: 90px;
	}
	.home .site-inner {
		padding-right: 20px;
		padding-left: 20px;
	}
	.home .toprightvideo {
		left: 680px;
	}
	.home .home-banners {
		margin: 0 80px 0 0;
	}
	.is-tablet .home .home-banners {
		margin-right: 0;
	}
	.home .home-banners-wrap {
		width: 100%
	}
	.home .content {
		padding-right: 0;
	}
}

@media only screen and (max-width: 1024px) {
	.content {
		padding-right: 200px;
	}
	.home .content,
	.is-tablet .content {
		padding-right: 0;
	}
	.is-tablet .home .home-banners-wrap-500,
	.is-tablet .home .home-banners-wrap-330 {
		border-collapse: separate;
		border-spacing: 5px 5px;
		width: 100%; /* 102%; */
		margin-left: -1%;
	}
}

@media only screen and (max-device-width: 1024px) {
	.overlay-book-wrap img {
		height: 310px;
		width: auto;
	}
	.home .title-wrap {
		padding-left: 6%;
	}
	.is-tablet .content {
		width: 675px;
	}
	.is-tablet .home .content {
		width: 100%;
	}
	.home .minipost-wrap {
		padding-right: 5px;
		width: 255px;
	}
}

@media only screen and (max-width: 900px) {
	.content {
		padding-right: 325px;
	}
	.home .content,
	.is-tablet .content {
		padding-right: 0;
	}
}

@media only screen and (max-width: 800px) {
	.content {
		padding-right: 0;
	}
	.site-container,
	.site-header .wrap,
	.site-inner,
	.home .site-inner {
		padding: 0;
		width: auto;
		max-width: 100%;
	}
	.home .content-sidebar-wrap {
		max-width: 685px;
		margin: 0 auto;
	}
	.home .overlay-book-wrap,
	.home .home-overlay-title-detail,
	.home-bottomposts-arrow-link-right,
	.home .minipost-bottompost-divider{
		display: none;
	}
	.home .title-wrap,
	.home .slider-overlay {
		padding-left: 0;
	}
	.home .toprow {
		margin: 20px auto 0;
		padding-bottom: 285px; /*  SW   320px; */
	}
	.home #teaching-revealed-widget {
		top: 10px;
		width: 97%;
		margin: 0 auto;
		float: none;
		text-align: center;
	}
	.home .toprightvideo,
	.is-tablet .home .toprightvideo {
		left: 0;
		top: 168px;
	}
	.home .toprightvideo > div {
		text-align: center;
	}
	.home .toprightvideo iframe,
	.is-tablet .home .toprightvideo iframe {
		width: 481px;
		height: 272px;
	}
	.home .home-banners {
		margin-right: 0;
	}
	.home .home-banners-wrap {
		margin-bottom: 30px;
		table-layout: fixed;
	}
	.home .home-banners-wrap-500,
	.home .home-banners-wrap-330 {
		border-collapse: separate;
		border-spacing: 5px;
		margin: 0 auto 30px;
	}
	.home .home-banners-wrap-680.home-banners-wrap {
		width: 100%;
	}
	.is-tablet .home .home-banners-wrap a img  {
		margin-left: 0;
	}
	.home .miniposts {
		padding-top: 30px;
	}
	.home .minipost-wrap,
	.home .minipost-wrap:last-child {
		float: none;
		width: 100%;
		max-width: 490px;
		margin: 0 auto 20px;
		padding: 0 0 20px 0;
		border-bottom: 1px solid #999;
	}
	.home .minipost1 {
		padding-top: 20px;
		border-top: 1px solid #999;
	}
	.home .miniposts .post-content {
		border-right: none;
	}
	.content,
	.full-width-content .content {
		width: 97%;
		float: none;
		border-left: none;
		padding-left: 0;
		margin: 0 auto;
	}
	.is-tablet .content {
		width: 95%;
		margin: 0 auto;
	}
	.entry {
		padding: 40px 40px 24px 40px;
		padding: 4rem 4rem 2.4rem 4rem;
	}
	.footer-address {
		display: none;
	}
}

@media only screen and (max-width: 700px) {
	.home .slider-overlay h3 {
		font-size: 70px;
		height: 50px;
		text-align: center;
	}
	.home .content-sidebar-wrap {
		max-width: 465px;
		margin: 0 auto;
	}
	.home .toprow {
		padding-bottom: 45px;
	}
	.home .topleftposts {
		margin-bottom: 10px;
	}
	.home .topleftpost-wrap p.title {
		width: 140px;
	}
	.home .topleftpost-wrap img {
		width: 140px;
		height: 140px;
	}
	.home .topleftpost-wrap .post-content {
		padding-right: 10px;
	}
	.home .topcenterlinks {
		clear: left;
		width: 140px;
		padding-top: 20px;
	}
	.home .topcenterlinks a {
		padding-left: 5px;
		padding-right: 5px;
	}
	.home .toprightvideo {
		left: 150px;
		top: 165px;
	}
	.home .toprightvideo > div {
		text-align: left;
	}
	.home .toprightvideo iframe {
		width: 289px;
		height: 164px;
	}
	.home .home-banners-wrap {
		display: block;
	}
	.home .home-banners-wrap .bannerwrap {
		display: block;
		text-align: center;
	}
	.home .home-banners-wrap a {
		display: block;
	}
	.home .home-banners-wrap img {
		margin: 0 0 5px;
	}
}

@media only screen and (max-width: 530px) {
	.header-page-title {
		margin-left: 0;
		margin-top: 30px;
		text-align: center;
	}
	.header-page-title-wrap {
		display: inline-block;
		text-align: left;
	}
	.home .slider-overlay h3 {
		font-size: 50px;
		height: 25px;
		text-align: center;
	}
	.entry {
		padding: 20px 20px 20px 20px;
	}
	.home .content-sidebar-wrap {
		max-width: 95%;
		margin: 0 auto;
	}
	.home .toprow {
		padding-bottom: 200px;
	}
	.home .topleftpost-wrap {
		margin-bottom: 15px;
	}
	.home .topleftpost-3 .post-content {
		padding-right: 0;
	}
	.home .topcenterlinks {
		clear: none;
		float: left;
		left: 165px;
		padding-top: 0;
		position: absolute;
		left: 0;
		top: 181px;  /*  172px  */
		width: 140px;  /* 150px; */
	}
	.home .toprightvideo {
		left: 150px;
		top: 161px;
	}
	.home .miniposts .post-content {
		padding-right: 0;
		margin-right: 0;
	}
	.home .minipost-wrap,
	.home .minipost-wrap:last-child {
		width: 85%;
		margin: 0 auto 40px;
	}
}

@media only screen and (max-width: 470px) {
	.header-page-title h2 {
		font-size: 45px;
	}
	.home .slider-overlay h3 {
		font-size: 35px;
		height: 25px;
		text-align: center;
	}
	.home .toprow {
		padding-bottom: 30px; /* SW 230px; */
		max-width: 305px;
		margin: 20px auto 0;
	}
	.is-phone .home .toprow {
		padding-bottom: 230px;
	}
	.home .topleftpost-1 .post-content,
	.home .topleftpost-3 .post-content {
		padding-right: 5px;
	}
	.home .topleftpost-2 .post-content {
		padding-right: 0;
	}
	.home .toprightvideo {
		left: 0;
		top: 350px;
	}
	.home .topcenterlinks {
		top: 161px;
		left: 145px;
	}
	.home .minipost-wrap {
		width: 90%;
	}

	.home .toprightvideo {
		position: static;
	}
}

@media only screen and (max-width: 400px) {
	img.alignright,
	img.alignleft {
		float: none;
		display: block;
		margin: 0 auto 20px;
	}
}

@media only screen and (orientation: landscape) {
	.is-phone .home .slider-overlay {
		padding-top: 40px;
	}
}

/* -------------- language bar larger flags added Aug 4 2017 --------------- */
.language-bar ul {
	top: 15px;
	right: 2%;
	position: absolute;
}
li.language-bar-title {
	position: relative;
	top: -2px;
}
.language-bar-title-logo {
	height: 25px;
	width: auto;
}
.language-bar-current-site {
	display: none;
	position: relative;
	top: -8px;
}
.site-footer .language-bar li.language-bar-title {
	display: block;
	text-indent: 0; /* -9999px; */
}
li.language-bar-title ul {
	left: 0;
	right: auto;
}
/* .language-bar ul li.language-bar-title::after {
	content: '\25BC';
	font-size: 10px;
	position: relative;
	right: -3px;
	top: -8px;
}  */
.language-bar ul li.language-bar-title:after {
	content: '';
/*	font-size: 10px; */
}
.is-mobile .language-bar-title-logo {
	height: 20px;
}
.site-footer .language-bar-title-logo,
.site-footer p.location-msg {
	display: none;
}
@media only screen and (max-width: 800px) {
	.language-bar {
		height: 60px;
		position: relative;
		padding-left: 3%;
		padding-right: 3%;
	}
	.language-bar p.location-msg {
		padding-top: 0;
		padding-left: 0;
	}
	.language-bar .textwidget > ul {
		position: absolute;
		left: 3%;
		top: 33px;
	}
	.language-bar ul ul {
		top: 26px;
	}
}
@media only screen and (max-width: 530px) {
	.language-bar-current-site,
	.language-bar ul li.language-bar-title:after {
		display: none;
	}
}
@media only screen and (max-width: 470px) {
	.language-bar-title-logo {
		height: 15px;
	}
}