.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: 0.5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}
/* ==========================================================================
   Rules
   ========================================================================== */
hr { display: block; height: 1px; border: 0; border-top: 1px solid #cad2d7; padding: 0; margin: 3em 0;  }
hr.dash { display: block; height: 1px; border: 0; border-top: 1px dashed #cad2d7; margin: 2em 0; padding: 0; }
hr.dots { display: block; height: 1px; border: 0; border-top: 1px dotted #cad2d7; margin: 2em 0; padding: 0; }



/* ==========================================================================
   Buttons
   ========================================================================== */
a.btn{
	border: none;
	font-weight: normal;
	font-size: 18px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding: .6em 1.2em;
	white-space: normal;
	display: inline-block;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
	margin-bottom: .5em;
	margin-top: .5em;
	background-color: #fd542d;
	text-align: center; 
}
a.btn:hover{
	background-color: #3c464c; 
}
a.small-btn{
	font-size: 14px;
	padding: .4em .9em;
}
a.xsmall-btn{
	font-size: 12px;
	padding: .2em .7em;
}



/* ==========================================================================
   Lead Text
   ========================================================================== */
.lead, blockquote{
	font-size: 24px;
	line-height: 32px;
}



/* ==========================================================================
   Highlight Text
   ========================================================================== */
.highlight{
	color: #fd542d; 	
}


/* ==========================================================================
   Message Boxes
   ========================================================================== */
.message{
	border-width: 1px;
	border-style: solid;
	display: block;
	padding: .5em 1em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	margin-bottom: 1em;
}
.message.success{
	border-color: #a2e29d;
	background: #e2f5e4;
	color: #333;
}
.message.info{
	border-color: #7bb8e2;
	background: #d2e4f1;
	color: #333;
}
.message.error{
	border-color: #fc604a;
	background: #ffd4ce;
	color: #333;
}
.message.notice{
	border-color: #fcc84a;
	background: #fffcce;
	color: #333;
}


/* ==========================================================================
   Tabs
   ========================================================================== */
ul.tab-nav {
	position: relative;
	width:100%;
	margin: 0 auto!important;
	top: 1px;
}
ul.tab-nav li {
	float:left;
	position:relative;
	display:block;
	text-align:center;
	margin-right: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-style: solid;
	border-width: 1px;
	border-bottom: none;
	padding: .5em 1em!important;
	text-transform: none;
} 
ul.tab-nav li:before{
	display: none;
}
ul.tab-nav li:hover {
	cursor:pointer;
}
ul.tab-nav li.active {
	z-index:50;
	border: none;
	border-style: solid;
	border-width: 1px;
	border-bottom: none;
}
.tab-content-block {
	clear:both;
	position:relative;
	width: 100%;
	border-style: solid;
	border-width: 1px;
}
.tab_content {
	padding: 0px .5em 0px .5em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
h3.v_nav {display: none;}

h3.v_nav{
	background: #ededed;
	text-transform: none;
	font-size: 16px;
}	


/* ==========================================================================
   Toggles
   ========================================================================== */
.toggle-btn { 
	text-decoration:none; 
	display:block;
}
.toggle-content{ 
	display:none;
}
.toggle-content.active{
	display: block;
}
ul.toggle li:first-child, ul.accordion li:first-child, ul.sc_accordion li:first-child{
	border-top-style: solid;
	border-top-width: 1px;
}
ul.toggle li {
	position:relative;
	overflow:hidden;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	padding-top: .25em;
	padding-bottom: .25em;
}
ul.toggle li a{
	padding-top: .45em;
	padding-right: 0;
	padding-bottom: .45em;
}
ul.toggle li:before{
	top: 13px;
}

ul.toggle{
	margin-bottom: 1.5em;
}



/* ==========================================================================
   Accordians
   ========================================================================== */
.sc_accordion-btn { 
	text-decoration:none; 
	display:block;
}
.sc_accordion-content{ 
	display:none;
}
.sc_accordion-content.active{
	display: block;
}
ul.sc_accordion li {
	position:relative;
	overflow:hidden;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	padding-top: .25em!important;
	padding-bottom: .25em!important;
}
ul.sc_accordion li a{
	padding-top: .45em;
	padding-right: 0;
	padding-bottom: .45em;
}
ul.sc_accordion li:before{
	top: 13px!important;
}
ul.sc_accordion{
	margin-bottom: 1.5em;
}



/* ==========================================================================
   Mosaic Styles
   ========================================================================== */
.mosaic-block {
	position:relative;
	overflow:hidden;
	background:#ffffff url(https://oeconline.org/wp-content/plugins/kause-shortcodes-plugin/css/img/progress.gif) no-repeat center center;
	margin: 1em 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.widget .mosaic-block {
	margin-top: .25em;
	margin-bottom: .25em;
}
.mosaic-block img{
	margin: 0;
	border: none;
}
.mosaic-backdrop {
	display:none;
	top:0;
	height:100%;
	width:100%;
	background:#fff;
}
	
.mosaic-overlay {
	display:none;
	z-index:5;
	position:absolute;
	width:100%;
	height:100%;
	background:#111;
}		
.fade .mosaic-overlay {
	background:url(https://oeconline.org/wp-content/plugins/kause-shortcodes-plugin/css/img/hover-magnify.png) no-repeat center center;
	background-color: rgba(0, 0, 0, .5);
	opacity:0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=00)";
	filter:alpha(opacity=00);
	display:none;
}
.fade .mosaic-overlay.link{
	background:url(//oeconline.org/wp-content/plugins/kause-shortcodes-plugin/css/img/hover-gotopost.png) no-repeat center center;
	background-color: rgba(0, 0, 0, .5);
	opacity:0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=00)";
	filter:alpha(opacity=00);
	display:none;
}
@media (min--moz-device-pixel-ratio: 1.5),
	(-o-min-device-pixel-ratio: 3/2),
	(-webkit-min-device-pixel-ratio: 1.5),
	(min-device-pixel-ratio: 1.5),
	(min-resolution: 1.5dppx) {
	/* on retina, use image that's scaled by 2 */
.fade .mosaic-overlay {
	background:url(https://oeconline.org/wp-content/plugins/kause-shortcodes-plugin/css/img/hover-magnify@2x.png) no-repeat center center;
	background-size: 18px 18px;
}
}/*
 * jQuery FlexSlider v2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */

 
/* Browser Resets */
.flex-container a:active,
.flexslider a:active, .flexslider-quote a:active,
.flex-container a:focus, .flexslider-quote a:focus,
.flexslider a:focus  {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;} 

/* FlexSlider Necessary Styles
*********************************/ 
.flexslider, .flexslider-quote {margin: 0; padding: 0;}
.flexslider-quote blockquote{
	margin-top: 0;
}
.flexslider .slides > li, .flexslider-quote .slides > li {display: none; -webkit-backface-visibility: hidden; padding-left: 0;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {width: 100%; display: block; margin-top: 0; }
.flexslider_single .slides img {max-width: 100%; display: block; margin-top: 0; width: auto; }
.flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .slides element */
.slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;} 
html[xmlns] .slides {display: block;} 
* html .slides {height: 1%;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {display: block;}


/* FlexSlider Default Theme
*********************************/
.flexslider, .flexslider-quote {margin: 0 0 20px;  position: relative;  zoom: 1;}
.flexslider-quote {margin: 0 0 20px;  position: relative;  zoom: 1;}
.flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}
.loading .flex-viewport {max-height: 300px;}
.flexslider .slides {zoom: 1;}
.flexslider-quote, .sc_flexslider-quote{
	text-align: center;
}
.flexslider .slides li{
	padding-top: 0;
}
.flexslider li:before, .flexslider-quote li:before{
	display: none;
}
.flexslider ul, .flexslider ol, .flexslider-quote ul, .flexslider-quote ol{
	margin-left: 0;
}
.flexslider-quote cite{
	margin-bottom: 2em;
}
.sc_flexslider-quote cite{
	margin-top: -20px;
}
.carousel li {margin-right: 5px}


/* Direction Nav */
.flex-direction-nav {*height: 0; height: 0;}
ul.flex-direction-nav li{
	position: static;
}
.flexslider-quote .flex-direction-nav, .sc_flexslider-quote .flex-direction-nav{
	display: none!important;
}
.sc_flexslider-quote .flex-control-nav{
	bottom: -20px;
}
.flex-direction-nav a { 
	margin: -20px 0 0; 
	display: block;
	position: absolute; 
	top: 50%; 
	z-index: 10; 
	cursor: pointer;  
	opacity: .6; 
	-webkit-transition: all .3s ease;
	background-color: rgba(0, 0, 0, .2);
	-webkit-border-radius: 100px;
	border-radius: 100px;
	color: #fff;
	font: 24px 'bulletsregular';
	padding: .2em .5em;
}
.flex-direction-nav .flex-next { 
	right: 8px;
	padding: 0.5em 0.5em 0.25em 0.8em;
}
.flex-direction-nav .flex-prev {
	left: 8px;
	padding: 0.5em 0.6em 0.25em 0.7em; 
}
.flexslider:hover .flex-next {right: 8px;}
.flexslider:hover .flex-prev { left: 8px;}
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {opacity: 1;}
.flex-direction-nav .flex-disabled {opacity: .3!important; filter:alpha(opacity=30); cursor: default;}

/* Control Nav */
.flex-control-nav {width: 100%; position: absolute; bottom: 0px; text-align: center;}
.flexslider-quote .flex-control-nav {width: 100%; position: absolute; bottom: -40px; text-align: center;}
.flex-control-nav li {margin: 0 2px; display: inline-block; zoom: 1; *display: inline;}
.flex-control-paging li a {width: 14px; height: 14px; display: block; cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; }
.flex-control-paging li a:hover {  }
.flex-control-paging li a.flex-active { cursor: default; }

.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.flex-control-thumbs img:hover {opacity: 1;}
.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {opacity: 1; left: 8px;}
  .flex-direction-nav .flex-next {opacity: 1; right: 8px;  }
}/************************************
STYLE.CSS (FRONT END)									 

UTILITY CLASSES

*************************************/

/************************************
UTILITY CLASSES
*************************************/

	.float_right {
		float: right;	
	}

	.hidden {
		display: none;	
	}
	

/*! normalize.css v1.0.1 | MIT License | git.io/normalize */
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary{display:block}
audio,canvas,video{display:inline-block;*display:inline;*zoom:1}
audio:not([controls]){display:none;height:0}
[hidden]{display:none}
html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}
html,button,input,select,textarea{font-family:sans-serif}
body{margin:0}
a:focus{outline:thin dotted}
a:active,a:hover{outline:0}
h1{font-size:2em;margin:.67em 0}
h2{font-size:1.5em;margin:.83em 0}
h3{font-size:1.17em;margin:1em 0}
h4{font-size:1em;margin:1.33em 0}
h5{font-size:.83em;margin:1.67em 0}
h6{font-size:.75em;margin:2.33em 0}
abbr[title]{border-bottom:1px dotted}
b,strong{font-weight:bold}
blockquote{margin:1em 40px}
dfn{font-style:italic}
mark{background:#ff0;color:#000}
p,pre{margin:1em 0}
code,kbd,pre,samp{font-family:monospace,serif;_font-family:'courier new',monospace;font-size:1em}
pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}
q{quotes:none}
q:before,q:after{content:'';content:none}
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}
dl,menu,ol,ul{margin:1em 0}
dd{margin:0 0 0 40px}
menu,ol,ul{padding:0 0 0 40px}
nav ul,nav ol{list-style:none;list-style-image:none}
img{border:0;-ms-interpolation-mode:bicubic}
svg:not(:root){overflow:hidden}
figure{margin:0}
form{margin:0}
fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}
legend{border:0;padding:0;white-space:normal;*margin-left:-7px}
button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}
button,input{line-height:normal}
button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;*overflow:visible}
button[disabled],input[disabled]{cursor:default}
input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*height:13px;*width:13px}
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}/*
Theme Name: Kause
Description: A Multi-Purpose WordPress Theme
Theme URI: http://themeforest.net/
Author: ThemeCanon
Author URI: http://themecanon.com
    Version: 1.0.44
Tags: Light, dark, one-column, right-sidebar, responsive-layout
License:
License URI:
*/



/* ==========================================================================
   TABLE OF CONTENTS
   
   01. Theme Base Settings
   02. Theme Specific Typography
   03. Logo
   04. Main Navigation Styles
   05. Main Container General Layout Styles
   06. Typography
   07. Block Elements
   08. Lists
   09. Paging and Comments
   10. Graphs
   11. Buttons
   12. Tables
   13. Forms
   14. Mosaic Styles
   15. Columns
   16. Pricing Table
   17. Message Boxes
   18. Tabs
   19. Toggles
   20. Isotope styles
   21. Widget Footer Styles
   22. Footer Styles
   23. Author's custom styles
	   24. Media Queries 768
	   25. Media Queries 600
	   26. Media Queries 480
	   27. Media Queries 1140
   28. Fonts
   29. Helper classes
   30. Print styles
 	31. Misc. MB
   
   ========================================================================== */




/* ==========================================================================
   01. Theme Base Settings
   ========================================================================== */
   
body { font-size: 1em; line-height: 1.4; padding: 2em 1em 4em; overflow-y: scroll;}
::-moz-selection { background: #b3d4fc; text-shadow: none; }
::selection { background: #b3d4fc; text-shadow: none; }
.chromeframe { margin: 0.2em 0; background: #ccc; color: #000; padding: 0.2em 0;}
img { vertical-align: middle; border: none; }
a{ text-decoration: none; }
ol, ul{ margin: 0; padding: 0; }
body {-webkit-font-smoothing: antialiased; font-smooth: always; -moz-osx-font-smoothing: grayscale; font: 16px/25px Georgia, "Times New Roman", Times, serif; }
.outter-wrapper{  width: 1440px; margin: 0 auto; padding: 0em;}
.wrapper { width: 1140px; margin: 0 auto; padding: 1.5em; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.boxedPage .sticky-header-wrapper .outter-wrapper{
	width: 100%;
}
dd{ margin: 0; }




/* ==========================================================================
   02. Theme Specific Typography
   ========================================================================== */

/* UPPER CASE CLASSES */
h3.title, 
.feature-heading p.heading, 
.main ul.meta li, 
h1, h2, h3, .coms h4,
.text-seperator h5,
cite,
aside ul li, ul.link-list li, 
ul.statistics li,
.corner-date,
.gf_progressbar_title{
	text-transform: uppercase;
}

















/* ==========================================================================
   03. Logos
   ========================================================================== */  
.logo{
	max-width: 99px; /* Update width to suite your own logo size */
	padding-top: 1em;
}




/* ==========================================================================
   04. Main Navigation Styles
   ========================================================================== */
.logo{
	display: inline-block;
	float: left;
}   
.logo img, .logo-foot img{
	max-width: 100%;
}
.logo-text{
	font-size: 28px;
	display: inline-block;
	float: left;
	margin-top: .75em;
	margin-bottom: .75em;
}
.header-container .wrapper{
	padding-top: 0em;
	padding-bottom: 0em;
}   
.header-container nav{
	float: right;
}
.header-container .nav li{
	float: left;
	position: relative;
	margin: 0 .4em;
}
.header-container ul.nav > li > a{
	padding-top: 1.3em;
	padding-bottom: 1.3em;
	display: inline-block;
}
#nav ul li:last-child {
	padding-bottom: 1em;
}

.nav a{
	white-space: nowrap;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
	padding: 0.3em 1em 0.5em;
	font-size: 18px;
}

.nav-parent a{
	-webkit-transition: all 0ms ease-in-out;
	-moz-transition: all 0ms ease-in-out;
	-ms-transition: all 0ms ease-in-out;
	-o-transition: all 0ms ease-in-out;
	transition: all 0ms ease-in-out;
}
.nav ul li{
	list-style-type: none;
}
#menu-icon {
	display: none;
	font-size: 18px;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}
#menu-icon span{
	width: 25px;
	height: 20px;
	display: inline-block;
	padding-right: 10px;
	position: relative;
	top: -1px;
}
#menu-icon span img{
	max-width: 100%;	
}
nav #nav{
	margin-top: 0px;

}
#nav ul {
	position: absolute;
	display: none;
	min-width: 122px;
	z-index: 10000;
	margin-top: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-border-radius: 0px 0px 3px 3px;
	border-radius: 0px 0px 3px 3px;
}
#nav ul li {
	float: none;
	margin: 0;
	padding-left: 10px;
	padding: 0.2em;
	position: relative;
}
#nav ul li a{
	padding-left: .9em;
	padding-top: .2em;
	font-size: 17px;
}
#nav li:hover > ul, #nav li.nav-parent.hover ul {
	display: block;
} 
#nav ul li:hover ul {
	display: block!important;
}

#nav li:hover ul ul{
	display: none!important;
	position: absolute;
	left: 100%;
	top: 0;
	-webkit-border-radius: 0px 0px 3px 0px;
	border-radius: 0px 0px 3px 0px;
}
/*
#nav li:hover ul ul:before{
	border:7px solid;
	content:"";
	display: block;
	position: absolute;
	border-color:transparent #242931 transparent transparent;
	left:-14px;
	top:12px; 
}
*/
#nav li:hover ul ul:before{
	content:"";
	width: 10px;
	height: 10px;
	display: block;
	position: absolute;
	left:-5px;
	top:12px; /* you can adjust */
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
#nav ul li:hover ul {
	display: block!important;
}
.boxedPage .sticky-header-wrapper{
	position: relative;
	margin: 0 auto;
	max-width: 1440px;
}
.donate.donate_btn, .donate.donate_btn:hover{
	-webkit-border-radius: 4px 4px 4px 4px!important;
	border-radius: 4px 4px 4px 4px!important;
}
.donate.donate_btn a:hover{
 	-webkit-border-radius: 4px 4px 4px 4px!important;
 	border-radius: 4px 4px 4px 4px!important;
 }
 .header-container #nav li.fa a{
 	padding-left: .6em;
 }
 .header-container .nav li li:before{
 	padding-left: .5em;
 }
 .header-container .nav li.fa{
 	display: block;
 	line-height: 1.4
 }





/* ==========================================================================
   05. Main Container General Layout Styles
   ========================================================================== */  
.main-container{
	padding: 0;
}
.main-content.full{
	width: 100%;
	float: none;
}
.main-content img, .right-aside img{
	max-width: 100%;
	border: none;
	height: auto;
	margin: 0 0 1em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
a img{
	position: relative;
}
.right-aside{
	border-left-style: solid;
	border-left-width: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 2em;
}

.left-aside{
	clear: right;
}
a, a *{
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}
p a{
	text-decoration: underline;
}
/* Featured Block*/
.outter-wrapper{
	position: relative;
}
.outter-wrapper.feature{
	box-shadow: none;
	position: relative;
	z-index: 10;
}
.outter-wrapper.feature .wrapper{
	padding-bottom: 0;
	padding-top: 0;
}
.outter-wrapper:after{
	-webkit-box-shadow:  2px 0px 3px -2px rgba(0, 0, 0, .2);
	box-shadow:  2px 0px 3px -2px rgba(0, 0, 0, .2);
	position: absolute;
	right: 0px;
	height: 100%;
	display: block;
	content: "";
	width: 5px;
	top: 0;
}
.outter-wrapper:before{
	-webkit-box-shadow:  -2px 0px 3px -2px rgba(0, 0, 0, .2);
	box-shadow:  -2px 0px 3px -2px rgba(0, 0, 0, .2);
	position: absolute;
	left: 0px;
	height: 100%;
	display: block;
	content: "";
	width: 5px;
	top: 0;
}
.feature.map iframe{
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+ */
	filter: gray; /* IE6-9 */
	-webkit-filter: grayscale(99%); /* Chrome 19+ & Safari 6+ */
	-webkit-transition: all .6s ease;  /* Fade to color for Chrome and Safari */
	 /*-webkit-backface-visibility: hidden;  Fix for transition flickering */
}
.feature.map .gmnoprint{
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
	    -webkit-filter: grayscale(0%);
}

.feature .flexslider, .feature .flexslider-quote{
	margin-bottom: 0;
}
.feature .flex-control-nav.flex-control-paging{
	display: none;
}
.feature img{
	margin: 0;
	width: 100%;
	height: auto;
}
.feature iframe{
	margin: 0;
	width: 100%;
}
.feature-boxed .flexslider{
	padding-top: 2em;
}

.fullwidthbanner-container{
	width:100% !important;
	position:relative;
	padding:0;
	overflow:hidden!important;
	border: none!important;
}
.fullwidthbanner .caption{
	visibility: hidden;
	position: absolute;
	top: 0;
}
.fullwidthbanner > ul > li{
	position: absolute;
}
.feature-heading{
	position: absolute;
	top: 28%;
	max-width: 400px;
}
.feature-heading p{
	font-size: 2.5em;
	line-height: 100%;
	margin-top: 20px;
}
.feature-heading p.heading {
    font-size: 20px!important;
    line-height: 100%!important;
    margin-bottom: 0!important;
}

/* Block Customs */
.pb_block.pb_block_last{
	padding-bottom: 2.5em;
}
.pb_block.pb_img.pb_block_last{
	padding-bottom: 0;
}
.pb_featured_posts .recentwork, .pb_widgets{
	padding-bottom: 2em;
}
.pb_people .main.wrapper{
	padding-bottom: 0;
}
.construction_msg{
	text-align: center;
	margin-top: 25%;
}



/* ==========================================================================
   06. Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6, p{
	word-wrap: break-word;
} 
p{
	margin-bottom: 1.5em;
}  
h1, h2, h3, h4, h5, h6{ 
	font-weight: normal;
	line-height: 120%;
	letter-spacing: 0px;
	margin: 25px 0 .5em;
}
h1.super{
	font-size: 100px;
	margin-bottom: -30px;
}
h1, .text-seperator h5{
	font-size: 36px;
}
h2{
	font-size: 32px;
	margin-top: 15px;
}
h3, .coms h4{
	font-size: 26px;
}
h4{
	font-size: 22px;
}
h5{
	font-size: 18px;
}
h6{
	font-size: 16px;
	letter-spacing: 0px;
	position: relative;
}
h3.title{
	font-size: 16px;
	margin-top: 0;
}
blockquote h6{
	top: -1.4em;
}

ul.meta{
	margin-bottom: 12px;
}
ul.meta li:before{
	display: none;
}
.main ul.meta li{
	border-top-style: solid;
	border-top-width: 1px;
	padding: .7em 0;
	font-size: 14px;
}
h6.date{
	margin-top: 0;
}
h6.tags a:before{
	 font-family: 'bulletsregular';
	 content: "p";
}
h1, h2, h3, .coms h4{
}
.more, ol > li:before, .feature-link{
	font-weight: normal;
}
strong, b{
	font-weight: strong;
}
.meta strong{
	font-weight: normal;
}
em{ 
	font-style: italic;
}
.lead, blockquote{
	font-size: 20px;
	line-height: 26px;
}
blockquote, caption, .wp-caption-text{
	font-style: italic;
}
caption, .wp-caption-text{
	font-size: 14px;
	padding-left: .5em;
	border-left-style: solid;
	border-left-width: 2px;
	margin-top: -.5em;
	display: inline-block;	
}
.wp-caption{
	margin-top: 1.5em;
}
.wp-caption.alignleft{
	padding-right: .75em;
}
.wp-caption.alignright{
	padding-left: .75em;
}
p.wp-caption-text{
	margin-bottom: .5em;
}
.lead{
	margin-top: 0;
}
.highlight{
	position: relative;
	margin-right: .2em;
	margin-left: .2em;
	display: inline-block;
	border-radius: 50px;
	padding: 0 .2em;
}
.main-container a{
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
	cursor: pointer;
}


/*editbymb 13112013*/
h4.fittext {
	letter-spacing: -2px;
	margin: -10px 0 0;
}
h3.fittext{
	margin-top: .7em;
	padding-bottom: .25em;
}
.widget.kause_fact p{
	padding-top: .5em;
	border-top-style: solid;
	border-top-width: 1px;
}
.fittext{
	line-height: 100%;
	white-space: nowrap;
}




/* ==========================================================================
   07. Block Elements
   ========================================================================== */
hr { display: block; height: 1px; border: 0; border-top-style: solid; border-top-width: 1px; padding: 0; margin: 2.5em 0; }
hr.dash { display: block; height: 1px; border: 0; border-top-style: dashed; border-top-width: 1px; margin: 2.5em 0; padding: 0; }
hr.dots { display: block; height: 1px; border: 0; border-top-style: dotted; border-top-width: 1px; margin: 2.5em 0; padding: 0; }
.feature hr{
	border-width: 30px;
	margin-top: 0;
	margin-bottom: 0;
}
.text-seperator{
	display: block; height: 1px; border: 0; border-top-style: solid; border-top-width: 1px; padding: 0; margin: 3em 0; text-align: left;
}
.text-seperator h5{
	position: relative;
	top: -18px;
	display: inline-block;
	padding-left: 0em;
	padding-right: .5em;
	margin: 0;
	letter-spacing: 0;
}
.text-seperator a{
	position: relative;
	top: -16px;
	display: inline-block;
	padding-left: 0em;
	padding-right: .5em;
	margin: 0;
	letter-spacing: 0;
}
pre{
	font-family: Consolas,Menlo,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New,monospace,serif;
	margin-bottom:10px;
	overflow:auto;
	width:auto;
	padding: 0 1em;
	background-color:#fff;
	background: #ffffff;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iI2VmZWZlZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
	background: -moz-linear-gradient(top,  #ffffff 0%, #ffffff 51%, #efefef 51%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(51%,#ffffff), color-stop(51%,#efefef));
	background: -webkit-linear-gradient(top,  #ffffff 0%,#ffffff 51%,#efefef 51%);
	background: -o-linear-gradient(top,  #ffffff 0%,#ffffff 51%,#efefef 51%);
	background: -ms-linear-gradient(top,  #ffffff 0%,#ffffff 51%,#efefef 51%);
	background: linear-gradient(to bottom,  #ffffff 0%,#ffffff 51%,#efefef 51%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#efefef',GradientType=0 );
	background-size: 100% 60px;
	line-height: 30px;
}
iframe{
	margin-top: 0em;
	margin-bottom: 1em;
	width: 100%;
	border: none;
}
.fluid-width-video-wrapper{
	margin-bottom: 2em;
	background-color: #ffffff;
	margin-top: 0em;
}
.fluid-width-video-wrapper iframe{
	width: 100%;
	padding: 0;
	margin: 0;
}
.thumb-gallery .fluid-width-video-wrapper{
	margin-bottom: 0;
}
blockquote.right, blockquote.left{
	margin: 0 3% 3%;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}
blockquote.right{
	border-left-style: solid; 
	border-left-width: 2px;
	padding-left: 1.3em;
}
blockquote{
	margin-right: 0;
	margin-left: 0;
}
cite{
	display: block;
	font-style: normal;
	font-size: 16px;
	margin-top: 1em;
	margin-bottom: 1em;
}
.tweet, .post-type-quote, .post-type-tweet{
	padding-left: 2.2em;
	position: relative;
	font-size: 28px;
	line-height: 36px;
	overflow: hidden;
}
.format-quote{
	padding-top: 1.5em;
}
.post-type-quote{
	padding-left: 0;
	margin-top: 0;
}
.post-type-tweet{
	margin-top: 0;
}
.post-type-tweet, .post-type-quote, blockquote.post-type-tweet blockquote, blockquote.post-type-quote blockquote {
	font-size: 28px;
	line-height: 36px;
	font-style: normal;
}
aside .tweet p, .twitter_theme_design .tweet{
	font-size: 17px;
	line-height: 24px;
	padding-left: 0;
	text-transform: none;
	font-style: italic;
}
.tweet:before, aside .tweet .meta:before, .twitter_theme_design .tweet .meta:before, .post-type-tweet:before{
	content: "L";
	font-family: 'socialicoregular';
	font-size: 70px;
	position: absolute;
	left: 0;
	top: 10px;
	font-style: normal;
}
aside .tweet:before, .twitter_theme_design .tweet:before{
	display: none;
}
aside .tweet .meta, .twitter_theme_design .tweet .meta{
	margin-top: 1.8em;
	position: relative;
	padding-left: 32px;
}
aside .tweet .meta:before, .twitter_theme_design .tweet .meta:before{
	font-size: 32px;
	top: 2px;
}
aside ul.tweets li.tweet:first-child{
		border: none;
}
aside ul.tweets li.tweet{
	padding-top: 0!important;
}
aside ul li:before, ul.link-list li:before, .statistics li:before{
	display: none;
}
aside ul li, ul.link-list li, ul.statistics li{
	border-top-style: solid;
	border-top-width: 1px;
	padding: .7em 0!important;
	font-size: 14px;
}
.recentwork .mosaic-block{
	margin-bottom: .5em;
	margin-top: .5em;
}
.recentwork{
	margin-bottom: 1em;
}

.twitter-timeline{
	background: #fff;
	border: 1px dotted #333;
}
.right-aside hr:last-child{
	display: none;
}



/* ==========================================================================
   08. Paralax Block Styles
   ========================================================================== */
.outter-wrapper.feature.parallax-block .wrapper{
	max-width: 850px;
	padding-top: 1.5em;
	padding-bottom: 2.5em;
}
.parallax-block .fluid-width-video-wrapper{
	border: 5px solid #ffffff;
	margin: 2.5em 0;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.parallax-block h4, .callout-block h4{
	font-size: 28px;
}
.parallax-block h5, .callout-block h5{
	font-size: 22px;	
}
.callout-block h4{
	margin: 1.33em 0 !important;
}
.callout-block.pb_block.pb_block_last{
	padding-bottom: 0;
}
.pb_img .align_center{
	text-align: center;
}
.pb_img .align_right{
	text-align: right;
}
.pb_img img{
	max-width: 100%;
}



/* ==========================================================================
   10. Social Block Styles
   ========================================================================== */
.social-block{
	padding-top: 1em;
	padding-bottom: 1em;
} 
.social-thumbs{
	overflow: hidden;
	height: 172px;
	margin: 2em 0;
}

.social-thumbs li:before{
	display: none;
}
.social-thumbs li{
	display:  inline-block;
	padding: .3em;
	opacity: 1;
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}
/*
.social-thumbs li:hover{
	-moz-transform: scale(1.1) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
	-webkit-transform: scale(1.1) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
	-o-transform: scale(1.1) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
	-ms-transform: scale(1.1) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
	transform: scale(1.1) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
}
*/



/* ==========================================================================
  10. Lists
   ========================================================================== */   
.main ul, .main ol{
	margin-bottom: 12px;
}
.main ul li > ul, .main ol li > ol{
	margin-bottom: 0;
	margin-left: -5px;
}
.main ul li.parent{
	padding-bottom: 0;
}   
.main ul li, .more, .feature-link, .comment-reply-link, .comment-edit-link, #cancel-comment-reply-link{
	list-style-type: none;
	line-height: 20px;
	padding-top: 5px;
	padding-bottom: 8px;
	position: relative;
	padding-left: 22px;
}
.more, .feature-link{
	text-decoration: none;
}
.feature-link{
	padding-left: 0;
}
.main ul li{
	padding-left: 18px;
}
.more:before,  .feature-link:after, .comment-reply-link:before, .comment-edit-link:before, #cancel-comment-reply-link:before{
	content: "g";
	font-family: 'bulletsregular';
	font-size: 16px;
	top: 7px;
	position: absolute;
}
.more:before, .comment-reply-link:before, .comment-edit-link:before, #cancel-comment-reply-link:before{
	left: 3px;	
}
.feature-link:after{
 	right: -22px;
 }
.main ul li:before{
	content: "s";
	font-family: 'bulletsregular';
	font-size: 14px;
	left: 4px;
	top: 5px;
	position: absolute;
	text-transform: lowercase;
}
.main ol{
	margin-left: 22px;
}
ol {
    counter-reset:li; /* Initiate a counter */
    margin-left:0; /* Remove the default left margin */
    padding-left:0; /* Remove the default left padding */
}
ol > li {
    position:relative; /* Create a positioning context */
    list-style:none; 
	margin: 0 0 0 1em;
	padding-top: 3px;
	padding-bottom: 5px;
	padding-left: 0px;
}
ol > li:before {
    content:counter(li) "."; /* Use the counter as content */
    counter-increment:li; /* Increment the counter by 1 */
    position:absolute;
    top:-2px;
    left:-1.5em;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    width:1.5em;
    margin-right:8px;
    padding:4px;
    text-align:center;
}
li ol,li ul {margin-top:6px;}
ol ol li:last-child {margin-bottom:0;}

ul.archive li{
	display: inline-block;
	min-width: 40%;
}
.statistics li em{
	font-size: 22px;
	padding-right: .4em;
}
.statistics li span{
	font-size: 18px;
	padding-left: .2em;
}


/* ============= Sitemap ===============*/  
ul.sitemap{
	display: table;
	width: 100%;
}
ul.sitemap li{
	display: table-cell;
	padding-left: 0;
	padding: 1px;
}
ul.sitemap li a{
	display: block;
	padding: 1em;
}
ul.sitemap li:before{
	display: none;
}
ul.sitemap li ul{
	margin-left: 1em;
}
ul.sitemap li ul li{
	display: block;
	padding-left: 18px;
	padding-bottom: 1em;
}
ul.sitemap li ul li:before{
	content: "s";
	font-family: 'bulletsregular';
	font-size: 16px;
	left: 3px;
	top: 6px;
	position: absolute;
	display: block;
}
ul.sitemap li ul li a{
	background: transparent!important;
	padding: .2em;
}




/* ==========================================================================
   09. Timeline Styles
   ========================================================================== */
.timeline-container{
	width:100%;
	margin:0px auto;
	overflow: auto;
	position: relative;
}
.vert-line{
	height:100%;
	position: absolute;
	left:50%; 
	width:2px;
	margin-left:-1px; 
	bottom:10px;
	z-index:100;
}
.vert-line:before, .vert-line:after{
	content: "";
	display: block;
	position: absolute;
	border-radius: 30px;
	width: 10px;
	height: 10px;
	left: -4px;
}
.vert-line:before{
	top: 11px;
}
.vert-line:after{
	top: 100%;
}
ul.timeline{
	width: 100%; 
	position: relative;
	list-style:none;
	overflow: hidden; 
	padding: 20px 0px;
	margin: 0px ;
}
ul.timeline > li{
	width:48.5%;
	position: relative;
	margin:0px 0px 30px;
	padding: 0;
	-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
	border-style: solid;
	border-width: 1px; 
	border-radius: 3px;
	display: none;
}
.milestone-container{
	padding: 0 1.5em 1.75em;
}
ul.timeline > li:before{
	border:6px solid;
	content:"";
	display: block;
	position: absolute;
}

/*editbymb 27102013*/

/*ul.timeline > li:nth-child(even){
	float:right;
	clear:right;
}
ul.timeline > li:nth-child(odd){
	float:left;
	clear:left;
}*/

ul.timeline > li.tl_right{
	float:right;
	clear:right;
}
ul.timeline > li.tl_left{
	float:left;
	clear:left;
}

ul.timeline > li .gallery {
	margin-bottom: 10px;	
}


ul.timeline > li.tl_right:before{
	border-bottom-color: #fff!important;
	border-top-color: #fff!important;
	border-left-color: #fff!important;
	left:-12px;
	top:30px; /* you can adjust */
}
ul.timeline > li.tl_left:before{
	border-bottom-color: #fff!important;
	border-top-color: #fff!important;
	border-right-color: #fff!important;
	right:-12px;
	left: 100%;
	top:30px; /* you can adjust */
}
ul.timeline .mosaic-block{
	-webkit-border-radius: 3px 3px 0px 0px;
	border-radius: 3px 3px 0px 0px;
	margin-bottom: 0;
}
ul.timeline .mosaic-block img{
	margin-bottom: 0;
}
ul.timeline img{
	margin-bottom: .5em;
}
.time-date{
	float: right;
	margin-top: .2em;
}
ul.timeline hr{
	margin: 1.5em 0;
}
.timeline_load_more {
	border-style: solid;
	border-width: 1px;	
	text-align: center;
	cursor: pointer;
}
.timeline_load_more:hover{
		
}
.timeline_load_more h4{
	margin-top: .5em;
	margin-bottom: .5em;
}
.timeline_load_img {
	text-align: center;
	display: none;	
}



/* ==========================================================================
  09. Paging and Comments
   ========================================================================== */ 
ul.pagination .left a, ul.pagination .right a, ul.paging a span{
	color: #fff;
	font-family: 'bulletsregular';
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #e8e8e8;
	padding: .3em .5em .2em;
}


ul.pagination, ul.page-numbers{
	text-align: center;
}
ul.pagination li:before, ul.paging li:before, ul.page-numbers li:before{
	display: none;
}
ul.pagination li, ul.paging li, ul.page-numbers li{
	padding-left: 0;
	display: inline;
	font-size: 20px;
	padding: .3em;
	cursor: pointer;
}
ul.pagination li a.active{
	/* see theme colours */
}
ul.pagination .left a, ul.pagination .right a, ul.paging a span, ul.page-numbers li a.next, ul.page-numbers li a.prev, ul.paging span{
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding: .3em .5em .2em;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
	font-family: 'bulletsregular';
}
ul.paging span.inactive{
	text-transform: uppercase;
	opacity: .5;
	cursor: auto;
}
ul.paging .right span.inactive{
	text-transform: none;
}
ul.pagination .right a, ul.paging .right span, ul.page-numbers li a.next{
	padding-right: .4em;
	padding-left: .6em;
}
ul.paging{
	margin-top: 30px;
}
ul.paging a{
	font-size: 18px;
}
ul.page-numbers li a.next{
	float: right;
}
ul.page-numbers li a.prev{
	float: left;
}
.link-pages p{ /* FIX- need to update with p */
	background: none repeat scroll 0 0 #FFFFFF;
	border: 1px solid #DDE1E5;
	border-radius: 3px 3px 3px 3px;
	margin-bottom: 0;
	margin-top: 2em;
	padding: 0.3em;
	text-align: center;
	word-spacing: 12px;	
}
#comments_pagination{
	word-spacing: 12px;
	margin-top: 2em;
	padding: 0.3em;
}







/* ============= Comments ===============*/
ul.comments li{
	padding-left: 0;
}
ul.comments li div{
	line-height: 20px;
	padding: 0em;
}
ul.comments li div{
	padding: 1em 2%;
}
ul.comments ul li div{
	padding-left: 4%;
}
ul.comments ul ul li div{
	padding-left: 6%;
}
ul.comments ul ul ul li div{
	padding-left: 8%;
}
ul.comments ul ul ul ul li div{
	padding-left: 10%;
}
ul.comments ul ul ul ul ul li div{
	padding-left: 12%;
}
ul.comments ul ul ul ul ul ul li div{
	padding-left: 14%;
}
ul.comments ul{
	margin-bottom: 0;
}
ul.comments li > ul{
	margin: 0;
}
ul.comments .odd{ }
 
ul.comments li:before{
	display: none;
}
ul.comments h5, ul.comments h6{
	display: inline;
	font-size: 18px;
	letter-spacing: 0;
}
ul.comments h6{
	font-size: 14px;
	margin-left: 1em;
}
ul.comments li p{
	margin-top: .5em;
	margin-bottom: .5em;
}
#comments_pagination{
	text-align: center;
}
#comments_pagination .page-numbers{
	border-radius: 3px;
	background: transparent;
}

#comments_pagination .prev.page-numbers, #comments_pagination .next.page-numbers{
	display: none;
}
.comment-reply-link, .comment-edit-link, #cancel-comment-reply-link{
	float: right;
}




/* ==========================================================================
   10. Graphs
   ========================================================================== */
ol.graphs{
	margin: 0 0 2em;
}
ol.graphs > li:before{
	display: none;
}
ol.graphs > li{
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin-bottom: .4em;
	padding: 0;
	margin-left: 0;
}
ol.graphs > li div{
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding: .2em 2%;
}
ol.graphs > li span{
	float: right;
}
.per-10{
	width: 6%;
}
.per-20{
	width: 16%;
}
.per-30{
	width: 26%;
}
.per-40{
	width: 36%;
}
.per-50{
	width: 46%;
}
.per-60{
	width: 56%;
}
.per-70{
	width: 66%;
} 
.per-80{
	width: 76%;
}
.per-90{
	width: 86%;
}
.per-100{
	width: 96%;
}





/* ==========================================================================
   11. Buttons
   ========================================================================== */
.btn, input[type=button], input[type=submit]{
	border: none;
	font-weight: normal;
	font-size: 18px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding: .4em 1.8em;
	white-space: normal;
	text-align: center;
	display: inline-block;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
	margin-bottom: .5em;
	margin-top: .5em;
	text-decoration: none;
}
input[type=button], input[type=submit]{
	padding: .6em 1.8em;
}
.widget input[type=button], .widget input[type=submit]{
	padding: .2em 1em;
}
a.btn:hover{
	color: #fff;
}
a.small-btn, input[type=button].small-btn, input[type=submit].small-btn, .widget input[type=submit]{
	font-size: 14px;
	padding: .4em 1.2em;
}
a.xsmall-btn, input[type=button].xsmall-btn, input[type=submit].xsmall-btn{
	font-size: 12px;
	padding: .2em 1em;
}
a.btn [class^="icon-"],
a.btn [class*=" icon-"]{
	padding-right: 5px;
	padding-left: 5px;
}
.white-btn{
	border-style: solid!important;
	border-width: 1px!important;
}
.button{
	text-decoration: none;
}



/* ==========================================================================
   12. Tables
   ========================================================================== */
.main table{
	border-style: solid;
	border-width: 1px;	
	text-align: left;
	width: 100%;
}
.main table th{
	padding: .5em;
	border-style: solid;
	border-width: 1px;	
	vertical-align: top;	
}
.main table td{
	padding: .5em;
	border-style: solid;
	border-width: 1px;	
	vertical-align: top;	
}
.main table tr:nth-child(2n+1){ }




/* ==========================================================================
   13. Forms
   ========================================================================== */
form{
	margin-top: 2em;
}
.widget form{
	margin-top: 1em;
}
fieldset{
	padding: 1em;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border-style: solid;
	border-width: 1px;
	margin-bottom: 1em;
}
fieldset fieldset{
	
}
label{
	font-weight: normal!;
	padding-right: 1em;
	display: inline-block;
}
input[type=text],  input[type=email], input[type=password], textarea, input[type=tel],  input[type=range], input[type=url]{
 	border: none;
	padding: 14px 2%;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display: inline-block;
	outline: none;
	margin-bottom: 1em;
	resize: none;
	display: block;
	width: 100%;
	-webkit-appearance: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.widget input[type=text],  .widget input[type=email], .widget input[type=password], .widget textarea, .widget input[type=tel],  .widget input[type=range], .widget input[type=url]{
	margin-bottom: .35em;
}
.widget textarea{
	height: 90px;
}
input[type=text]:focus, textarea:focus, input[type=email]:focus, input[type=password]:focus{
 	background: #f9f9f9;
}
input.half{
	width: 48%;
	margin-right: 4%;
}
input.full, textarea.full{
	width: 100%;
}
input.third{
	width: 32%;
	margin-right: 2%;
}
input.field-last{
	padding: 14px 2%;
	margin-right: 0;
}
 
textarea{
	width: 100%;
	height: 140px;
	display: block;
	resize: none;
	outline: none;
}
select, input[type=radio], input[type=checkbox] {
	margin-bottom: 1em;
	margin-right: 6px;
}
.error[generated=true] {
	font-size: 14px;
}
form.quick-contact{
	margin-top: 1.5em;
}
form.quick-contact input[type=text],  form.quick-contact input[type=email], form.quick-contact input[type=password], form.quick-contact textarea, 
form.quick-contact input[type=tel],  form.quick-contact input[type=range], input[type=url]{
	margin-bottom: .4em;
}
form.quick-contact textarea{
	height: 80px;
}
legend{
	font-size: 16px;
}



/* ==========================================================================
   14. Mosaic Styles
   ========================================================================== */
.mosaic-block {
	position:relative;
	overflow:hidden;
	width:100%;
	background:#ffffff url(//oeconline.org/wp-content/themes/kause/img/progress.gif) no-repeat center center;
	margin: 0 0 2em;
	border: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.mosaic-block img{
	margin: 0;
	border: none;
	width: 100%;
	height: auto;
}
.mosaic-backdrop {
	display:none;
	top:0;
	height:100%;
	width:100%;
	background:#fff;
}	
.mosaic-overlay {
	display:none;
	z-index:5;
	position:absolute;
	width:100%;
	height:100%;
	background:#111;
}		
.fade .mosaic-overlay {
	background:url(//oeconline.org/wp-content/themes/kause/img/hover-magnify.png) no-repeat center center;
	background-color: rgba(0, 0, 0, .3);
	opacity:0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=00)";
	filter:alpha(opacity=00);
	display:none;
	-webkit-backface-visibility: hidden;
}
@media (min--moz-device-pixel-ratio: 1.5),
	(-o-min-device-pixel-ratio: 3/2),
	(-webkit-min-device-pixel-ratio: 1.5),
	(min-device-pixel-ratio: 1.5),
	(min-resolution: 1.5dppx) {
	/* on retina, use image that's scaled by 2 */
.fade .mosaic-overlay {
	background:url(https://oeconline.org/wp-content/themes/kause/img/hover-magnify@2x.png) no-repeat center center;
	background-size: 49px 49px;
	background-color: rgba(0, 0, 0, .5);
}
}
.fade .mosaic-overlay.link {
	background:url(//oeconline.org/wp-content/themes/kause/img/hover-gotopost.png) no-repeat center center;
	background-color: rgba(0, 0, 0, .3);
	opacity:0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=00)";
	filter:alpha(opacity=00);
	display:none;
	-webkit-backface-visibility: hidden;
}
@media (min--moz-device-pixel-ratio: 1.5),
	(-o-min-device-pixel-ratio: 3/2),
	(-webkit-min-device-pixel-ratio: 1.5),
	(min-device-pixel-ratio: 1.5),
	(min-resolution: 1.5dppx) {
	/* on retina, use image that's scaled by 2 */
.fade .mosaic-overlay.link {
	background:url(https://oeconline.org/wp-content/themes/kause/img/hover-gotopost@2x.png) no-repeat center center;
	background-size: 49px 49px;
	background-color: rgba(0, 0, 0, .5);
}
}
.fade .mosaic-overlay.play {
    background:url(//oeconline.org/wp-content/themes/kause/img/hover-play.png) no-repeat center center;
    background-color: rgba(0, 0, 0, .3);
    opacity:0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=00)";
    filter:alpha(opacity=00);
    display:none;
    -webkit-backface-visibility: hidden;
}
@media (min--moz-device-pixel-ratio: 1.5),
	(-o-min-device-pixel-ratio: 3/2),
	(-webkit-min-device-pixel-ratio: 1.5),
	(min-device-pixel-ratio: 1.5),
	(min-resolution: 1.5dppx) {
	/* on retina, use image that's scaled by 2 */
.fade .mosaic-overlay.play  {
	background:url(https://oeconline.org/wp-content/themes/kause/img/hover-play@2x.png) no-repeat center center;
	background-size: 49px 49px;
	background-color: rgba(0, 0, 0, .5);
}
}


.fourth .mosaic-block{
	margin-bottom: .5em;
}
.corner-date{
	position: absolute;
	bottom: 0px;
	left: 0px;
	color: #fff;
	background-color: #222222;
	background-color: rgba(0, 0, 0, .5);
	padding: .4em .7em;
	font-size: 12px;
}




/* ==========================================================================
   15. Columns
   ========================================================================== */
.full{
	width: 100%;
	float: none;
} 
.half{
	width: 48%;
	margin-right: 4%;
	float: left;
}
.third{
	width: 30%;
	margin-right: 5%;
	float: left;
}
.fourth{
	width: 22%;
	margin-right: 4%;
	float: left;
}
.fifth{
	width: 18%;
	margin-right: 2.5%;
	float: left;
}
.two-thirds{
	width: 65%;
	margin-right: 5%;
	float: left;
}
.three-fourths{
	width: 74%;
	margin-right: 4%;
	float: left;
}
.two-fifths{
	width: 36%;
	margin-right: 3%;
	float: left;
}
.three-fifths{
	width: 61%;
	margin-right: 2%;
	float: left;
}
.four-fifths{
	width: 78%;
	margin-right: 4%;
	float: left;
}
.left, .alignleft{
	float: left;
}
.right, .alignright{
	float: right;
}
.column-example div{
	min-height: 1em;
	background: #efefef;
	margin-bottom: 1em;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
	text-align: center;
}
.column-example div:hover{
	background: #ff6666;
}
.thumb-gallery .third{
	width: 33.33%;
	margin-right: 0%;
	border: 2px solid #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
}
.thumb-gallery .third.mosaic-block{
	margin-bottom: 0;
}
.right-aside .mosaic-block, .widget-footer .mosaic-block{
	margin-bottom: .5em;
}
.boxed{
	background: #F7F7F7;
	margin-bottom: 2em;
}
.boxed img{
	margin-top: 0;
	margin-bottom: 0;
}
.boxed .inner-box{
	padding: .75em;
	padding-top: 0;
}
.boxed .inner-box .quote:before{
	content: "“";
	font-size: 42px;
	font-style: normal;
	padding-right: 4px;
	position: relative;
	top: 18px;
	
}
.boxed .inner-box .quote{
	position: relative;
	top: -8px;
}


/* ==========================================================================
   16. Pricing and Team
   ========================================================================== */
.price{
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-top: 1em;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
	-webkit-box-shadow:  0px 0px 0px 0px rgba(0, 0, 0, 0);
	box-shadow:  0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.price:hover, .price-feature{
	-webkit-box-shadow:  0px 0px 6px 0px rgba(0, 0, 0, .2);
	box-shadow:  0px 0px 6px 0px rgba(0, 0, 0, .2);
}
.price-detail{
	padding: 1.5em;
	padding-top: .5em;
}
.price h3{
	margin: 0;
	padding: 1em;
}
.price h3 span{
	display: block;
	font-size: 48px;
	margin-top: 15px;
}
.price h3 span span{
	display: inline-block;
	font-size: 14px;
	margin-top: 0;
	line-height: 16px;
}
.price-detail li:before{
	display: none;
}
.price-detail ul li{
	border-top-style: solid;
	border-top-width: 1px;
	padding-top: .5em;
	padding-bottom: .5em;
	padding-left: 0;
}
.price-detail ul li:last-child{
	border-bottom-style: solid;
	border-bottom-width: 1px;
}
.price-feature{
	position: relative;
	top: -1em;
	padding-bottom: 2em;
}


/* Price alt */
.price-table{
	display: table;
	width: 100%;
	margin-bottom: 1em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-top: 1em;
	margin-bottom: 2em;
	width: 100%;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
	-webkit-box-shadow:  0px 0px 0px 0px rgba(0, 0, 0, 0);
	box-shadow:  0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.price-row{
	display: table-row;
}
.price-table:hover, .price-table-feature{
	-webkit-box-shadow:  0px 0px 6px 0px rgba(0, 0, 0, .2);
	box-shadow:  0px 0px 6px 0px rgba(0, 0, 0, .2);
}
.price-cell{
	display: table-cell;
	vertical-align: top;
	border-right-style: dashed;
	border-right-width: 1px;
	text-align: center;
	padding: 8px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative!important;
}
.price-cell.feature{
	min-width: 120px;
	max-width: 120px;
}
.price-cell .inwrap{
	position: relative;
}
.price-cell .inwrap:after{
	content: "+";
	position: absolute;
	right: -29px;
	bottom: 50%;
	display: block;
	font: bold 28px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}
.price-cell.last{
	border: none;
	padding-right: 20px!important;
	vertical-align: middle;
	min-width: 160px;
}
.price-cell.last .btn{
	margin-bottom: 0;
}
.price-cell h3 span{
	display: block;
	font-size: 48px;
	margin-top: 15px;
}
.price-cell h3 span span{
	font-size: 18px;
	display: inline;
}
.pb_pricing .price-cell ul li:before{
	position: relative;
	left: -5px;
	top: 0;
}


.boxed ul.social-link{
	border-top-width: 1px;
	border-top-style: solid;
	padding-top: .5em;
	margin-top: 1em;
}
.boxed ul.social-link li{
	display: inline-block;
	padding: .7em 0 .3em;
}
.boxed ul.social-link li:last-child{
	padding-right: 0;
}
.boxed ul.social-link a{
	 font-size: 18px;
	 -webkit-transition: all 250ms ease-in-out;
	 -moz-transition: all 250ms ease-in-out;
	 -ms-transition: all 250ms ease-in-out;
	 -o-transition: all 250ms ease-in-out;
	 transition: all 250ms ease-in-out;
	 opacity: 1;
	 padding-right: 5px;
	 text-transform: lowercase;
}
.boxed h4{
	font-size: 18px;
	margin-bottom: 0;
}
.boxed h5{
	margin-top: 5px;
	font-size: 16px;
}


/* People */
.cpt_people{
	margin-bottom: 2em;
}
.cpt_people .social-link{
	border-top-style: solid;
	border-top-width: 1px;
}
.cpt_people .social-link li{
	border: none!important;
	display: inline-block;
	padding-right: .65em!important;
}
.meta_tagline{
	text-transform: none!important;
}
.corp-head{
	float: left;
	margin-right: 1.5em;
	max-width: 280px;
}
.personColumn img{
	width: 100%;
}


/* ==========================================================================
   17. Message Boxes
   ========================================================================== */
.message, div.wpcf7-validation-errors, .woocommerce-message, .woocommerce-error, .woocommerce-info, .col2-set.addresses .address{
	border-width: 1px;
	border-style: solid;
	display: block;
	padding: .5em 1em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	margin-bottom: 1em;
}
.message.success{
	border-color: #a2e29d;
	background: #e2f5e4;
}
.message.info, .woocommerce-info{
	border-color: #7bb8e2;
	background: #d2e4f1;
}
.message.error, .woocommerce-error{
	border-color: #fc604a;
	background: #ffd4ce;
}
.message.notice, div.wpcf7-validation-errors{
	border-color: #fcc84a;
	background: #fffcce;
}
.message.promo{
	padding: 1.2em 2em;
	border: none;
	font-size: 28px;
	line-height: 120%;
	text-align: center;
	margin-bottom: 0;
}
.message.promo h2{
	font-size: 28px;
	
}
.message.promo *{
	margin-top: .5em;
	margin-bottom: .5em;
}
span.wpcf7-not-valid-tip{
	background: none;
	border: none;
	position: relative;
	left: 0;
	top: -10px;
}
div.wpcf7-validation-errors{
	font-size: 13px;
	line-height: 18px;
	font-style: italic;
}




/* Gravity Forms */
ul.gform_fields li.gfield,  .main ul.gform_fields li{
	padding-left: 0;
}
.gfield:before, ul.gform_fields li:before{
	display: none;
}
ul.gform_fields li.gfield ul{
	margin-bottom: 0;
}
ul.gform_fields li.gfield ul li{
	display: inline-block;
	padding-bottom: 0;
}
.validation_error, .validation_message, .gform_wrapper .gfield_error .gfield_label{
	color: #ff6666;
}
.validation_error{
	font-size: 18px;	
}
.gfield_error input[type="text"], .gfield_error input[type="email"], .gfield_error input[type="password"], 
.gfield_error textarea, .gfield_error input[type="tel"], .gfield_error input[type="range"], .gfield_error input[type="url"]{
	border: 1px solid #fc604a;
}

.gform_validation_container, .gform_wrapper .gform_validation_container, body .gform_wrapper li.gform_validation_container, body .gform_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container, body .gform_wrapper ul.gform_fields li.gfield.gform_validation_container {
    display: none !important;
    left: -9000px;
    position: absolute !important;
}
.gfield_description.validation_message{
	margin-top: -.4em;
}
.charleft.ginput_counter{
	float: right;
}
.gf_progressbar_title{
	font-size: 12px;
}
.gf_progressbar{
	border-width: 1px;
	border-style: solid;
	display: block;
	padding: 2px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	margin-bottom: 1em;
}
.gf_progressbar_percentage{
	display: block;
	padding: 0em 1em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	font-size: 14px;
}
.ui-datepicker{
	background: #fff;
	-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,.2);
	box-shadow: 0 0 4px 0 rgba(0,0,0,.2);
	padding: .5em 1em 1em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 3px;
}
.ui-datepicker-calendar, .ui-datepicker-calendar td{
	border: 1px solid #f1f1f1;
	text-align: center;
}
.ui-datepicker-calendar td{
	padding: 0px 5px;
}




/* ==========================================================================
   18. Tabs
   ========================================================================== */
ul.tab-nav {
	position: relative;
	width:100%;
	margin: 0 auto!important;
	top: 1px;
}
ul.tab-nav li {
	float:left;
	position:relative;
	display:block;
	text-align:center;
	margin-right: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-style: solid;
	border-width: 1px;
	border-bottom: none;
	padding: .5em 1em!important;
	text-transform: none;
} 
ul.tab-nav li:before{
	display: none;
}
ul.tab-nav li:hover {
	cursor:pointer;
}
ul.tab-nav li.active {
	z-index:50;
	border: none;
	border-style: solid;
	border-width: 1px;
	border-bottom: none;
}
.tab-content-block {
	clear:both;
	position:relative;
	width: 100%;
	border-style: solid;
	border-width: 1px;
}
.tab_content {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: .75em;
}
h3.v_nav {display: none;}

h3.v_nav{
	background: #ededed;
	text-transform: none;
	font-size: 16px;
}	


/* ==========================================================================
   19. Toggles
   ========================================================================== */
.toggle-btn { 
	text-decoration:none; 
	display:block;
}
.toggle-content{ 
	display:none;
}
.toggle-content.active{
	display: block;
}
ul.toggle li:first-child, ul.accordion li:first-child{
	border-top-style: solid;
	border-top-width: 1px;
}
ul.toggle li {
	position:relative;
	overflow:hidden;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	padding-top: .75em;
	padding-right: 0;
	padding-bottom: .75em;
}
ul.toggle li:before{
	top: 13px;
}

ul.toggle{
	margin-bottom: 1.5em;
}
ul.toggle li a{
	padding-top: 0;
	padding-bottom: 0;
}

/* =======  ACCORDION =========== */
.accordion-btn { 
	text-decoration:none; 
	display:block;
}
.accordion-content{ 
	display:none;
}
.accordion-content.active{
	display: block;
}
ul.accordion li {
	position:relative;
	overflow:hidden;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	padding-top: .75em;
	padding-right: 0;
	padding-bottom: .75em;
	text-transform: none;
	font-size: 16px;
}
aside ul.accordion li{
	border-top: none;
}
ul.accordion li:before{
	top: 15px;
}
ul.accordion{
	margin-bottom: 1.5em;
}
.widget-footer ul.accordion li{
	font-size: 14px;
}			
			
			
			
/* ==========================================================================
   20. Isotope styles
   ========================================================================== */

/*editbymb 12102013*/

/*moved to isotope.css*/

/* ==========================================================================
   21. Widget Footer Styles
   ========================================================================== */
   
.widget-footer {
	padding-bottom: 2.5em;
	padding-top: 1em;
	font-size: 14px;
}
.widget-footer img{
	max-width: 100%;
}
.widget-footer ul.tweets li{
	padding-left: 0;
}
.widget-footer .tweet{
	font-size: 14px;
	line-height: 22px;
	padding-left: 0;
	font-style: italic;
}
.widget-footer .tweet:before{
	display: none;
}
.widget-footer .tweet > p:before{
	content: "L";
	font-family: 'socialicoregular';
	font-size: 36px;
	position: relative;
	left: 0;
	top: 6px;
	padding-right: 5px;
	font-style: normal;
}
.widget-footer .tweet > p{
	margin-top: 0;
}
.widget-footer .tweet .meta{
	display: none;
}
.widget-footer .fourth.widget{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-right: 2%;
}
.widget-footer .fourth.widget.last{
	border: none;
}
.widget-footer input[type="text"], .widget-footer input[type="email"], .widget-footer input[type="password"]{
	margin-bottom: .5em;
}







/* ==========================================================================
   22. Footer Styles
   ========================================================================== */			
footer{
	font-size: 14px;
	padding: 0 1em;
}
footer.feature{
	padding-top: 1em;
	padding-bottom: 1em;
}
.logo-foot{
	display: inline-block;
	padding-right: 5px;
}
ul.social-link li:before{
	display: none;
}
footer ul.social-link li{
	display: inline-block;
	padding: .5em .4em .3em;
}
footer ul.social-link li:last-child{
	padding-right: 0;
}
footer ul.social-link a em:before{
	 font-size: 24px;
	 -webkit-transition: all 250ms ease-in-out;
	 -moz-transition: all 250ms ease-in-out;
	 -ms-transition: all 250ms ease-in-out;
	 -o-transition: all 250ms ease-in-out;
	 transition: all 250ms ease-in-out;
	 text-transform: uppercase;
}
.foot.left{
	padding-top: .7em;
}
#scrollUp {
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  background: #111;
  background-color: rgba(0, 0, 0, .7);
  border-radius: 3px;
  font-size: 11px;
  font-family: "FontAwesome"!important;
}




/* ==========================================================================
   24. Flags
   ========================================================================== */
   
 a.flag{
	padding-left: 25px!important;
	background-size: 18px ;
	background-repeat: no-repeat;
	background-position: 0 8px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
li.flag{
	background-repeat: no-repeat;
}
ul.sitemap li.flag{
	background-image: none!important;
}
a.header-container .nav li .flag{
	background-position: 0 25px;
}
a.header-container .nav li li .flag{
	background-position: 5px 5px;
	padding-left: 30px!important;
}

#nav li.flag ul{
	margin-left: -40px;
}
#nav li.flag a{
	padding-left: 0;
}
#nav li.flag{
	padding-left: 25px!important;
	background-size: 18px ;
	background-repeat: no-repeat;
	background-position: 0 28px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#nav li.flag li.flag, #nav li li.flag{
	background-position: 15px 12px;
	padding-left: 40px!important;
}

li.flag.af{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/AF.png); }
li.flag.ax{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/AX.png); }
li.flag.al{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/AL.png); }
li.flag.dz{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/DZ.png); } 
li.flag.as{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/AS.png); } 
li.flag.ad{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/AD.png); }
li.flag.ao{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/AO.png); }
li.flag.ai{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/AI.png); }
li.flag.aq{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/AQ.png); }
li.flag.ag{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/AG.png); }
li.flag.ar{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/AR.png); }
li.flag.am{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/AM.png); }
li.flag.aw{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/AW.png); }
li.flag.au{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/AU.png); }
li.flag.at{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/AT.png); }
li.flag.az{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/AZ.png); }
li.flag.bs{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BS.png); }
li.flag.bh{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BH.png); } 
li.flag.bd{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BD.png); }
li.flag.bb{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BB.png); }
li.flag.by{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BY.png); }
li.flag.be{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BE.png); }
li.flag.bz{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BZ.png); }           
li.flag.bj{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BJ.png); }  
li.flag.bm{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BM.png); }
li.flag.bt{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BT.png); }     
li.flag.bo{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BO.png); }
li.flag.bq{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BQ.png); }
li.flag.ba{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BA.png); }
li.flag.bw{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BW.png); }       
li.flag.bv{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BV.png); }
li.flag.br{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BR.png); }
li.flag.io{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/IO.png); }
li.flag.bn{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BN.png); }
li.flag.bg{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BG.png); }
li.flag.bf{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BF.png); }
li.flag.bi{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BI.png); }
li.flag.kh{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/KH.png); }
li.flag.cm{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CM.png); }
li.flag.ca{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CA.png); }
li.flag.cv{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CV.png); }             
li.flag.ky{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/KY.png); }
li.flag.cf{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CF.png); }
li.flag.td{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/TD.png); }
li.flag.cl{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CL.png); }
li.flag.cn{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CN.png); }        
li.flag.cx{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CX.png); }
li.flag.cc{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CC.png); }
li.flag.co{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CO.png); }
li.flag.km{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/KM.png); }
li.flag.cg{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CG.png); }
li.flag.cd{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CD.png); }
li.flag.ck{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CK.png); }
li.flag.cr{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CR.png); }
li.flag.ci{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CI.png); }
li.flag.hr{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/HR.png); }
li.flag.cu{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CU.png); }
li.flag.cw{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CW.png); }
li.flag.cy{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CY.png); }
li.flag.cz{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CZ.png); }
li.flag.dk{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/DK.png); } 
li.flag.dj{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/DJ.png); }
li.flag.dm{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/DM.png); }
li.flag.do{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/DO.png); }
li.flag.ec{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/EC.png); }
li.flag.eg{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/EG.png); }
li.flag.sv{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SV.png); }
li.flag.gq{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GQ.png); }
li.flag.er{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/ER.png); }
li.flag.ee{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/EE.png); }
li.flag.et{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/ET.png); }
li.flag.fk{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/FK.png); }
li.flag.fo{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/FO.png); }
li.flag.fj{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/FJ.png); }
li.flag.fi{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/FI.png); }
li.flag.fr{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/FR.png); }
li.flag.gf{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GF.png); }
li.flag.pf{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/PF.png); }
li.flag.tf{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/TF.png); } 
li.flag.ga{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GA.png); }
li.flag.gm{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GM.png); }
li.flag.ge{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GE.png); }
li.flag.de{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/DE.png); }
li.flag.gh{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GH.png); }
li.flag.gi{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GI.png); }
li.flag.gr{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GR.png); }
li.flag.gl{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GL.png); }
li.flag.gd{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GD.png); }
li.flag.gp{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GP.png); }
li.flag.gu{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GU.png); }                          
li.flag.gt{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GT.png); }
li.flag.gg{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GG.png); }
li.flag.gn{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GN.png); }
li.flag.gw{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GW.png); }
li.flag.gy{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GY.png); }
li.flag.ht{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/HT.png); }
li.flag.hm{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/HM.png); }
li.flag.va{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/VA.png); }
li.flag.hn{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/HN.png); }
li.flag.hk{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/HK.png); }
li.flag.hu{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/HU.png); }
li.flag.is{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/IS.png); }
li.flag.in{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/IN.png); }
li.flag.id{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/ID.png); }
li.flag.ir{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/IR.png); }
li.flag.iq{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/IQ.png); }
li.flag.ie{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/IE.png); }
li.flag.im{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/IM.png); }
li.flag.il{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/IL.png); }
li.flag.it{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/IT.png); }
li.flag.jm{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/JM.png); }
li.flag.jp{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/JP.png); }
li.flag.je{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/JE.png); }
li.flag.jo{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/JO.png); }
li.flag.kz{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/KZ.png); }
li.flag.ke{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/KE.png); }
li.flag.ki{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/KI.png); }
li.flag.kp{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/KP.png); }
li.flag.kr{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/KR.png); }
li.flag.kw{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/KW.png); }
li.flag.kg{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/KG.png); }
li.flag.la{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/LA.png); }
li.flag.lv{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/LV.png); }
li.flag.lb{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/LB.png); }
li.flag.ls{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/LS.png); }
li.flag.lr{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/LR.png); }
li.flag.ly{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/LY.png); }
li.flag.li{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/LI.png); }
li.flag.lt{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/LT.png); }
li.flag.lu{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/LU.png); }
li.flag.mo{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MO.png); }
li.flag.mk{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MK.png); }
li.flag.mg{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MG.png); }
li.flag.mw{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MW.png); }
li.flag.my{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MY.png); }
li.flag.mv{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MV.png); }
li.flag.ml{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/ML.png); }
li.flag.mt{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MT.png); }
li.flag.mh{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MH.png); }
li.flag.mq{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MQ.png); }
li.flag.mr{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MR.png); }
li.flag.mu{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MU.png); }
li.flag.yt{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/YT.png); }
li.flag.mx{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MX.png); }
li.flag.fm{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/FM.png); }
li.flag.md{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MD.png); }
li.flag.mc{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MC.png); }
li.flag.mn{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MN.png); }
li.flag.me{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/ME.png); }
li.flag.ms{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MS.png); }
li.flag.ma{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MA.png); }
li.flag.mz{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MZ.png); }
li.flag.mm{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MM.png); }
li.flag.na{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/NA.png); }
li.flag.nr{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/NR.png); }
li.flag.np{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/NP.png); }
li.flag.nl{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/NL.png); }
li.flag.nc{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/NC.png); }
li.flag.nz{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/NZ.png); }
li.flag.ni{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/NI.png); }
li.flag.ne{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/NE.png); }
li.flag.ng{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/NG.png); }
li.flag.nu{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/NU.png); }
li.flag.nf{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/NF.png); }
li.flag.mp{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MP.png); }
li.flag.no{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/NO.png); }
li.flag.om{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/OM.png); }
li.flag.pk{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/PK.png); }
li.flag.pw{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/PW.png); } 
li.flag.ps{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/PS.png); } 
li.flag.pa{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/PA.png); }
li.flag.pg{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/PG.png); } 
li.flag.py{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/PY.png); } 
li.flag.pe{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/PE.png); }
li.flag.ph{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/PH.png); } 
li.flag.pn{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/PN.png); } 
li.flag.pl{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/PL.png); }
li.flag.pt{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/PT.png); } 
li.flag.pr{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/PR.png); } 
li.flag.qa{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/QA.png); }
li.flag.re{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/RE.png); }
li.flag.ro{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/RO.png); }
li.flag.ru{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/RU.png); }
li.flag.rw{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/RW.png); }       
li.flag.bl{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/BL.png); }   
li.flag.sh{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SH.png); }
li.flag.kn{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/KN.png); }   
li.flag.lc{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/LC.png); }
li.flag.mf{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/MF.png); }
li.flag.pm{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/PM.png); }
li.flag.vc{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/VC.png); }
li.flag.ws{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/WS.png); }
li.flag.sm{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SM.png); }
li.flag.st{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/ST.png); }
li.flag.sa{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SA.png); }
li.flag.sn{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SN.png); }
li.flag.rs{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/RS.png); }
li.flag.sc{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SC.png); }
li.flag.sl{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SL.png); }
li.flag.sg{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SG.png); }
li.flag.sx{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SX.png); }
li.flag.sk{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SK.png); }   
li.flag.si{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SI.png); }
li.flag.sb{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SB.png); }
li.flag.so{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SO.png); }
li.flag.za{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/ZA.png); }   
li.flag.gs{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GS.png); }
li.flag.ss{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SS.png); }
li.flag.es{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/ES.png); }
li.flag.lk{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/LK.png); }
li.flag.sd{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SD.png); } 
li.flag.sr{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SR.png); }
li.flag.sj{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SJ.png); }
li.flag.sz{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SZ.png); }
li.flag.se{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SE.png); }
li.flag.ch{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/CH.png); }
li.flag.sy{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/SY.png); }
li.flag.tw{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/TW.png); }
li.flag.tj{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/TJ.png); }
li.flag.tz{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/TZ.png); }
li.flag.th{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/TH.png); }
li.flag.tl{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/TL.png); }
li.flag.tg{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/TG.png); }
li.flag.tk{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/TK.png); }
li.flag.to{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/TO.png); }
li.flag.tt{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/TT.png); }
li.flag.tn{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/TN.png); }
li.flag.tr{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/TR.png); }
li.flag.tm{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/TM.png); }
li.flag.tc{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/TC.png); }
li.flag.tv{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/TV.png); }
li.flag.ug{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/UG.png); }
li.flag.ua{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/UA.png); }
li.flag.ae{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/AE.png); }
li.flag.gb{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/GB.png); }
li.flag.us{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/US.png); }
li.flag.um{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/UM.png); }  
li.flag.uy{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/UY.png); } 
li.flag.uz{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/UZ.png); }
li.flag.vu{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/VU.png); }
li.flag.ve{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/VE.png); }
li.flag.vn{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/VN.png); }
li.flag.vg{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/VG.png); }
li.flag.vi{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/VI.png); }
li.flag.wf{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/WF.png); }
li.flag.eh{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/EH.png); }  
li.flag.ye{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/YE.png); }
li.flag.zm{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/ZM.png); }
li.flag.zw{ background-image: url(https://oeconline.org/wp-content/themes/kause/img/flags/ZW.png); }




/* ==========================================================================
   25. Author's custom styles
   ========================================================================== */
/* Icon Font Examples for Preview only */
.icon{
	width: 75px;
	display: inline-block;
}

/* Icon Font Examples */
.icon-thirds li{
	padding-left: 0!important;
	display: inline-block;
	width: 32%;
	font-size: 14px;
}
.icon-thirds li:before{
	display: none;
}
.icon-thirds li:hover .fa{
	-moz-transform: scale(2) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
	-webkit-transform: scale(2) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
	-o-transform: scale(2) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
	-ms-transform: scale(2) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
	transform: scale(2) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
}
.icon-thirds li i:before{
	padding-right: 10px;
	font-size: 16px;
}

/* Addthis Examples for Preview only */
.addthis_toolbox.addthis_default_style{
	text-align: center;
	margin-top: 1.5em;
}
.addthis_toolbox.addthis_default_style a{
	float: none;
}
.twitter-share-button, #___plusone_0{
	width: 80px!important;
}
.fb_edge_widget_with_comment{
	margin-left: 2em;
}


/* Facebook */
#fb-root {
	display: none;
}
.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
	width: 100%!important;
}

.nope{
	margin: 0!;
}

/**********************************************
 MULTI POST
**********************************************/

	.multi_navigation_hint {
		float: right;
		font-style: italic;
		font-size: 12px;
	}

	.link-multipages {
		width: 50%;
		display: inline;
	}

	.link-multipages a:first-child i{
		margin-right: 10px;
	}

	.link-multipages a:last-child i{
		margin-left: 10px;
	}

	.multi_nav_control {
		border-top-style: solid;
		border-top-width: 1px;
		border-bottom-style: solid;
		border-bottom-width: 1px;
		margin-bottom: 20px;
		padding: 7px 0;
	}


/**********************************************
BLOCK: SUPPORTERS
**********************************************/

	.social-thumbs img {
		height: 77px;
		width: auto;
	}






/* ==========================================================================
   26. Fonts
   ========================================================================== */

@font-face {
    font-family: 'league_gothicregular';
    src: url(//oeconline.org/wp-content/themes/kause/fonts/leaguegothic-regular-webfont.eot);
    src: url(//oeconline.org/wp-content/themes/kause/fonts/leaguegothic-regular-webfont.eot?#iefix) format('embedded-opentype'),
         url(//oeconline.org/wp-content/themes/kause/fonts/leaguegothic-regular-webfont.woff) format('woff'),
         url(//oeconline.org/wp-content/themes/kause/fonts/leaguegothic-regular-webfont.ttf) format('truetype'),
         url(//oeconline.org/wp-content/themes/kause/fonts/leaguegothic-regular-webfont.svg#league_gothicregular) format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'bulletsregular';
    src: url(//oeconline.org/wp-content/themes/kause/fonts/bullets-webfont.eot);
    src: url(//oeconline.org/wp-content/themes/kause/fonts/bullets-webfont.eot?#iefix) format('embedded-opentype'),
         url(//oeconline.org/wp-content/themes/kause/fonts/bullets-webfont.woff) format('woff'),
         url(//oeconline.org/wp-content/themes/kause/fonts/bullets-webfont.ttf) format('truetype'),
         url(//oeconline.org/wp-content/themes/kause/fonts/bullets-webfont.svg#bulletsregular) format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'robotobold';
    src: url(//oeconline.org/wp-content/themes/kause/fonts/roboto-bold-webfont.eot);
    src: url(//oeconline.org/wp-content/themes/kause/fonts/roboto-bold-webfont.eot?#iefix) format('embedded-opentype'),
         url(//oeconline.org/wp-content/themes/kause/fonts/roboto-bold-webfont.woff) format('woff'),
         url(//oeconline.org/wp-content/themes/kause/fonts/roboto-bold-webfont.ttf) format('truetype'),
         url(//oeconline.org/wp-content/themes/kause/fonts/roboto-bold-webfont.svg#robotobold) format('svg');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'robotoregular';
    src: url(//oeconline.org/wp-content/themes/kause/fonts/roboto-regular-webfont.eot);
    src: url(//oeconline.org/wp-content/themes/kause/fonts/roboto-regular-webfont.eot?#iefix) format('embedded-opentype'),
         url(//oeconline.org/wp-content/themes/kause/fonts/roboto-regular-webfont.woff) format('woff'),
         url(//oeconline.org/wp-content/themes/kause/fonts/roboto-regular-webfont.ttf) format('truetype'),
         url(//oeconline.org/wp-content/themes/kause/fonts/roboto-regular-webfont.svg#robotoregular) format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'robotomedium';
    src: url(//oeconline.org/wp-content/themes/kause/fonts/Roboto-Medium-webfont.eot);
    src: url(//oeconline.org/wp-content/themes/kause/fonts/Roboto-Medium-webfont.eot?#iefix) format('embedded-opentype'),
         url(//oeconline.org/wp-content/themes/kause/fonts/Roboto-Medium-webfont.woff) format('woff'),
         url(//oeconline.org/wp-content/themes/kause/fonts/Roboto-Medium-webfont.ttf) format('truetype'),
         url(//oeconline.org/wp-content/themes/kause/fonts/Roboto-Medium-webfont.svg#robotomedium) format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'RobotoCondensed';
    src: url(//oeconline.org/wp-content/themes/kause/fonts/Roboto-Condensed-webfont.eot);
    src: url(//oeconline.org/wp-content/themes/kause/fonts/Roboto-Condensed-webfont.eot?#iefix) format('embedded-opentype'),
         url(//oeconline.org/wp-content/themes/kause/fonts/Roboto-Condensed-webfont.woff) format('woff'),
         url(//oeconline.org/wp-content/themes/kause/fonts/Roboto-Condensed-webfont.ttf) format('truetype'),
         url(//oeconline.org/wp-content/themes/kause/fonts/Roboto-Condensed-webfont.svg#RobotoCondensed) format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'roboto_condensedbold';
    src: url(//oeconline.org/wp-content/themes/kause/fonts/RobotoCondensed-Bold-webfont.eot);
    src: url(//oeconline.org/wp-content/themes/kause/fonts/RobotoCondensed-Bold-webfont.eot?#iefix) format('embedded-opentype'),
         url(//oeconline.org/wp-content/themes/kause/fonts/RobotoCondensed-Bold-webfont.woff) format('woff'),
         url(//oeconline.org/wp-content/themes/kause/fonts/RobotoCondensed-Bold-webfont.ttf) format('truetype'),
         url(//oeconline.org/wp-content/themes/kause/fonts/RobotoCondensed-Bold-webfont.svg#roboto_condensedbold) format('svg');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'socialicoregular';
    src: url(//oeconline.org/wp-content/themes/kause/fonts/socialico-webfont-webfont.eot);
    src: url(//oeconline.org/wp-content/themes/kause/fonts/socialico-webfont-webfont.eot?#iefix) format('embedded-opentype'),
         url(//oeconline.org/wp-content/themes/kause/fonts/socialico-webfont-webfont.woff) format('woff'),
         url(//oeconline.org/wp-content/themes/kause/fonts/socialico-webfont-webfont.ttf) format('truetype'),
         url(//oeconline.org/wp-content/themes/kause/fonts/socialico-webfont-webfont.svg#socialicoregular) format('svg');
    font-weight: normal;
    font-style: normal;

}





/* ==========================================================================
   27. Helper classes
   ========================================================================== */

.clearfix:before, .clearfix:after { content: " "; display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }
.last{ margin-right: 0!important; padding-right: 0!important;  }
.first{ margin-left: 0!important; padding-left: 0!important;}
.tableless, .tableless th, .tableless tr, .tableless td{
	background: none!important;
	border: none!important;
	padding: 0px!important;
}
.centered{ text-align: center!important; }
.top-margin-x6{ margin-top: 6em; }
.top-margin-x4{ margin-top: 4em; }
.vertical-spacer{ height: 200px; clear: both; }






/* ==========================================================================
   28. Print styles
   ========================================================================== */

@media print {
* { background: transparent !important; color: #000 !important; box-shadow:none !important; text-shadow: none !important;}
a, a:visited { text-decoration: underline; }
a[href]:after { content: " (" attr(href) ")";}
abbr[title]:after { content: " (" attr(title) ")"; }
.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
img { max-width: 100% !important; page-break-inside: avoid; }

@page { margin: 0.5cm; }
p, h2, h3 { orphans: 3; widows: 3; }
h2, h3 { page-break-after: avoid; }
}



/* ==========================================================================
 	29. Misc. MB
   ========================================================================== */

.wp-caption {
	margin: 0;
	border: none;
	max-width: 100%;
}

.wp-caption-text {
	margin-top: 0;
	border-left-style: solid;
	border-left-width: 2px;
	padding-left: 5px;
}

.sticky h2:before {
	content: "q";
	display: inline-block;
	font-family: 'bulletsregular';
	font-size: 26px;
	position: absolute;
	left: -20px;
	top: 1px;
}
.sticky h2{
	position: relative;
}
.gallery img{
	border: none!important;
}
.gallery-caption {
	position: relative;
}

.bypostauthor {
	position: relative;
}

.alignright {float:right; }
.alignleft {float:left; }
.aligncenter {display: block; margin-left: auto; margin-right: auto}
img.alignright {float:right; margin:0 0 1em 1em}
img.alignleft {float:left; margin:0 1em 1em 0}
img.aligncenter {display: block; margin-left: auto; margin-right: auto}


.size-auto, 
.size-full,
.size-large,
.size-medium,
.size-thumbnail,
.size-auto img, 
.size-full img,
.size-large img,
.size-medium img,
.size-thumbnail img {
	max-width: 100%;
	height: auto;
}




/* download block styles */

.download-table .fa {
	font-size: 60px;
	margin-top: 40px;
}

.download-table .price-cell.content {
	text-align: left;
	padding: 1em;	
}

.download-table .price-cell.content h3 {
	margin-top: 5px;	
	margin-bottom: 5px;
}


/* sermon block styles */
.pb_sermon .sermon_wrapper{
	border-bottom-style: solid;
	border-bottom-width: 1px;
	padding-bottom: 2em;
}
.sermon_wrapper {
	width: 100%;		
}
.sermon_image {
	float: left;
	max-width: 20%;
	margin-right: 1.5em;		

}
.sermon_description{
	max-width: 70%;
}
.sermon_title h1 {
	margin: 0;	
}
.sermon_meta {
	font-size: 12px;
	margin-bottom: 10px;
}
.sermon_meta a {	
}
.sermon_links { 
	float: right;
	border-style: solid;
	border-width: 1px;
	width: 25%;	
	text-align: center;
	border-radius: 3px;
}
.sermon_links ul{
	margin: 0;
	padding-top: .5em;
	padding-bottom: .5em;
}
.sermon_links ul li {
	display: inline-block;
	font-size: 46px;
	padding: .25em;
}
.sermon_links ul li:before {
	content: "";		
}


/* Events Block */ 
.tribe-events-tcblock{
	border-style: solid;
	border-width: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: 1em;
	margin-top: 1em;
	margin-bottom: 2em;
	position: relative;
}
.tribe-events-event-cost span{
	-webkit-border-radius: 50%;
	border-radius: 50%;
	text-align: center;
	min-width: 38px;
	min-height: 38px;
	font-size: 13px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	right: -10px;
	top: -10px;
	padding-top: .6em;
}
.tribe-events-tcblock .tribe-events-event-image{
	float: right;
	max-width: 33%;
	margin-left: 1em;
	margin-top: 1em;
	margin-bottom: 0;
}
 .tribe-events-tcblock .tribe-events-venue-details *{
 	display: inline-block;
 }
 .tribe-events-tcblock .tribe-events-address .adr{
 	font-style: normal;
 }
 .tribe-events-tcblock .tribe-events-read-more{
 	border: none;
 	font-weight: normal;
 	-webkit-border-radius: 3px;
 	-moz-border-radius: 3px;
 	border-radius: 3px;
 	font-size: 14px;
 	padding: .4em 1.2em;
 	white-space: normal;
 	text-align: center;
 	display: inline-block;
 	-webkit-transition: all 250ms ease-in-out;
 	-moz-transition: all 250ms ease-in-out;
 	-ms-transition: all 250ms ease-in-out;
 	-o-transition: all 250ms ease-in-out;
 	transition: all 250ms ease-in-out;
 	margin-bottom: .5em;
 	margin-top: .5em;
 	text-decoration: none;
 }
 
 .tribe-events-list-widget ol li:before{
 	content: ""!important;
 	font-family: 'FontAwesome'!important;
 	font-size: 12px;
 	left: 0px;
 	top: -2px;
 	position: absolute;
 	text-transform: lowercase;
 }
 
 
 /* Rev Slider Fix */
 
 .rev_slider ul li, .rev_slider > ul > li, .rev_slider > ul > li:before{
     position: absolute!important;
 }
 
 .tp-bullets.round div{
 	border-radius: 50%;
 }
 
 .tp-bullets.simplebullets.round .bullet{
 	width: 14px;
 	height: 14px;
 }
 
 .tp-button {
     background-image: none;
     border-radius: 3px;
     color: #fff !important;
     
     font-weight: normal;
     font-size: 18px;
     -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
     border-radius: 3px;
     padding: .4em 1.8em;
     white-space: normal;
     text-align: center;
     cursor: pointer;
     letter-spacing: 0px;
     line-height: 1!important;
     text-decoration: none;
     text-shadow: none!important;
 }
 
 
 .woocommerce .fancybox:hover::before{
     background: none;
 }
 
 .woocommerce .flex-control-nav li{
 	margin: 0px!important;
 }/* ==========================================================================
   20. Isotope styles
   ========================================================================== */
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
      -ms-transition-property: height, width;
       -o-transition-property: height, width;
          transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
      -ms-transition-property:     -ms-transform, opacity;
       -o-transition-property:         top, left, opacity;
          transition-property:         transform, opacity;
}


.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
     -moz-transition-duration: 0s;
      -ms-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
}

.isotope.infinite-scrolling {
  -webkit-transition: none;
     -moz-transition: none;
      -ms-transition: none;
       -o-transition: none;
          transition: none;
}

/*
 * jQuery FlexSlider v2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */

 
/* Browser Resets */
.flex-container a:active,
.flexslider a:active, .flexslider-quote a:active,
.flex-container a:focus, .flexslider-quote a:focus,
.flexslider a:focus  {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;} 

/* FlexSlider Necessary Styles
*********************************/ 
.flexslider, .flexslider-quote {margin: 0; padding: 0;}
.flexslider-quote blockquote{
	margin-top: 0;
}
.flexslider .slides > li, .flexslider-quote .slides > li {display: none; -webkit-backface-visibility: hidden; padding-left: 0;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides > li:first-child {display: block; -webkit-backface-visibility: visible;} 
.flexslider .slides img {width: 100%; display: block; margin-top: 0; height: auto; }
.flex-pauseplay span {text-transform: capitalize;}


/* Clearfix for the .slides element */
.slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;} 
html[xmlns] .slides {display: block;} 
* html .slides {height: 1%;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {display: block;}


/* FlexSlider Default Theme
*********************************/
.flexslider, .flexslider-quote {margin: 0 0 20px;  position: relative;  zoom: 1;}
.flexslider-quote {margin: 0 0 20px;  position: relative;  zoom: 1;}
.flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}
.loading .flex-viewport {max-height: 300px;}
.flexslider .slides {zoom: 1;}
.flexslider-quote, .sc_flexslider-quote{
	text-align: center;
}

.flexslider .slides li{
	padding-top: 0;
}
.flexslider li:before, .flexslider-quote li:before{
	display: none;
}
.flexslider ul, .flexslider ol, .flexslider-quote ul, .flexslider-quote ol{
	margin-left: 0;
}
.flexslider-quote cite{
	margin-bottom: 2em;
}
.sc_flexslider-quote cite{
	margin-bottom: 1.5em;
	margin-top: -15px;
}
.carousel li {margin-right: 5px}


/* Direction Nav */
.flex-direction-nav {*height: 0; height: 0;}
ul.flex-direction-nav li{
	position: static;
}
.flexslider-quote .flex-direction-nav, .sc_flexslider-quote .flex-direction-nav{
	display: none!important;
}
.sc_flexslider-quote .flex-control-nav{
	bottom: -20px;
}
.flex-direction-nav a { 
	margin: -20px 0 0; 
	display: block;
	position: absolute; 
	top: 45%; 
	z-index: 10; 
	cursor: pointer;  
	opacity: .6; 
	-webkit-transition: all .3s ease;
	background-color: rgba(0, 0, 0, .2);
	-webkit-border-radius: 100px;
	border-radius: 100px;
	color: #fff;
	font: 24px 'bulletsregular';
	padding: .2em .5em;
	-webkit-backface-visibility: hidden;
}
.flex-direction-nav .flex-next { 
	right: 8px;
	padding: 0.5em 0.5em 0.25em 0.8em;
	-webkit-backface-visibility: hidden;
}
.flex-direction-nav .flex-prev {
	left: 8px;
	padding: 0.5em 0.6em 0.25em 0.7em;
	-webkit-backface-visibility: hidden; 
}
.flexslider:hover .flex-next {right: 8px;}
.flexslider:hover .flex-prev { left: 8px;}
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {opacity: 1;}
.flex-direction-nav .flex-disabled {opacity: .3!important; filter:alpha(opacity=30); cursor: default;}

/* Control Nav */
.flex-control-nav {width: 100%; position: absolute; bottom: 30px; text-align: center; margin-bottom: 0px!important;}
.flexslider-quote .flex-control-nav {width: 100%; position: absolute; bottom: -40px; text-align: center;}
.flex-control-nav li {margin: 0 4px; display: inline-block; zoom: 1; *display: inline;}
.flex-control-paging li a {width: 12px; height: 12px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; }
.flex-control-paging li a:hover { background: #333; background: rgba(0,0,0,0.7); }
.flex-control-paging li a.flex-active { cursor: default; }

.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.flex-control-thumbs img:hover {opacity: 1;}
.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {opacity: 1; left: 8px;}
  .flex-direction-nav .flex-next {opacity: 1; right: 8px;  }
}/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(//oeconline.org/wp-content/themes/kause/fonts/fontawesome-webfont.eot?v=4.7.0);
  src: url(//oeconline.org/wp-content/themes/kause/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'), url(//oeconline.org/wp-content/themes/kause/fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'), url(//oeconline.org/wp-content/themes/kause/fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'), url(//oeconline.org/wp-content/themes/kause/fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'), url(//oeconline.org/wp-content/themes/kause/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
/* jQuery Countdown styles 1.6.3. modified by Theme Canon*/
.pb_countdown h1{
	text-align: center;	
}
.hasCountdown {
	font-weight: normal;
	font-style: normal;
	font-size: 50px;
	line-height: 140%;
	text-align: center;
}
.countdown_rtl {
	direction: rtl;
}
.countdown_holding span {}
.countdown_row {
	clear: both;
	width: 100%;
	padding: 0px 2px;
	text-align: center;
}
.countdown_show1 .countdown_section {
	width: 98%;
}
.countdown_show2 .countdown_section {
	width: 48%;
}
.countdown_show3 .countdown_section {
	width: 32.5%;
}
.countdown_show4 .countdown_section {
	width: 24.5%;
}
.countdown_show5 .countdown_section {
	width: 19.5%;
}
.countdown_show6 .countdown_section {
	width: 16.25%;
}
.countdown_show7 .countdown_section {
	width: 14%;
}
.countdown_section {
	display: block;
	float: left;
	font-size: 75%;
	text-align: center;
	line-height: 1.2em!important;
}
.countdown_amount {
	font-size: 200%;
}
.countdown_descr {
	display: block;
	width: 100%;
	font-size: 20px;
	line-height: 1.5em;
}
.countdown_row:before, .countdown_row:after { content: " "; display: table; }
.countdown_row:after { clear: both; }
.countdown_row { *zoom: 1; }
/* ==========================================================================
   01. Responsive Options
   ========================================================================== */
   
   
/* Responsive Boxed Version  
body{ padding-top: 0; }
.outter-wrapper{ max-width: 1440px; width: auto;}
.wrapper { max-width: 1140px; width: auto;}
.feature hr{ opacity: .4; }
*/



/* Responsive Full Width Version */
body{ padding: 0em; }
.outter-wrapper{ max-width: 100%; width: 100%;}
.wrapper { max-width: 1140px; width: auto;}




/* ==========================================================================
   02. Responsive Colors
   ========================================================================== */   
   
/* Responsive Nav - Dark Grey */
@media only screen and (max-width: 768px) { }




/* ==========================================================================
   03. Media Queries 768
   ========================================================================== */
@media only screen and (max-width: 768px) {
	body{
		padding: 0;	
	}
	.logo{
		padding-bottom: 1em;
		padding-top: .6em;	
	}
	.logo-text{
		margin-top: .4em;
		margin-bottom: .5em;
	}
	#nav{ 
		display: none;
	}
	#nav-wrap {
		position: relative;
		padding-bottom: .4em;
	}
	#nav li.nav-parent{
		padding-bottom: 0;
	}
	#menu-icon {
		display: inline-block;
		cursor: pointer;
		padding: 6px 10px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
		position: relative;
		top: 6px;
	}
	#menu-icon.active{
		-webkit-border-radius: 3px 3px 0px 0px;
		border-radius: 3px 3px 0px 0px;
	}
	nav #nav{
		margin-top: 0;
	}
	#nav {
		clear: both;
		position: absolute;
		top: 42px;
		min-width: 160px;
		z-index: 10000;
		padding: 5px;
		display: none; 
		right: 0px;
		-webkit-border-radius: 3px 0px 3px 3px;
		border-radius: 3px 0px 3px 3px;
	}
	#nav li {
		clear: both;
		float: none;
	}
	#nav a, #nav ul a {
		background-color: none;
		display: inline;
		padding: 0;
		border: none;
	}
	#nav ul {
		width: auto;
		position: static;
		display: block;
		border: none;
		background: inherit;
		-webkit-box-shadow:  none;
		box-shadow:  none;
	}
	#nav ul li a{
		padding-left: 0;
	}
	#nav li{
		padding: .2em 0!important;
	}
	#nav ul{
		padding: 0!important;
	}
	#nav li > ul li{
		padding-left: 12px!important;
	}
	#nav li > ul li:last-child{
		padding-bottom: 0!important;
	}
	#nav li:hover ul ul{
		display: block!important;
		position: relative;
		left: 0;
		background: transparent!important;
	}
	#nav li:hover ul ul:before{
		display: none;
	}
	.donate, #nav .donate a:hover{ 
		background: transparent!important;
	}
	#masthead{
		display: block;
		height: 100%;
	}
	.header-container header{
		padding: 10px 0 5px;
	} 
	.main-content, .right-aside{
		width: 100%;
		float: none;
		border: none;
		padding-left: 0;
		padding-right: 0;
	}
	.main-container{
		padding: 1px 0 30px;
	}
	.right-aside{
		border-top: 1px solid #cad2d7;
		margin-top: 25px; 
	}
	.third, .half, .fourth, .two-thirds, ol.icon-lists li, ul.flag-lists li, .three-fourths, .foot.left, .foot.right, input.half, input.full, .fifth, .two-fifths,
	.three-fifths, .four-fifths, input.third{
		width: 100%;
		margin-right: 0%;
		float: none;
	}
	.third, .half, .fourths, .two-third, .three-fourths{
		margin-bottom: 30px;
	}
	.right-aside .half, .widget-footer .half, .clearfix.gallery .half, .clearfix.gallery .fourth{
		width: 49%;
		margin-right: 2%;
		float: left;
	}
	.last-fold{
		margin-right: 0!important;	
	}
	blockquote.third, blockquote.half, blockquote.fourths, blockquote.two-third{
		width: 100%;
	}
	blockquote, blockquote.right, blockquote.left{
		margin: 0;
	}
	ul.archive li{
		min-width: 28%;
	}
	.foot.left, .foot.right{
		display: block;
		text-align: center;
		margin-bottom: 20px;
	}
	ul.social-link li{
		border: none;
	}
		
	h6.tags.right, h6.date.left{
		float: none!important;
	}
	ul.sitemap{
		display: inline;
		width: 100%;
	}
	ul.sitemap li{
		display: block;
		padding-left: 0;
		padding: 1px;
	}
	.widget-footer .widget{
		margin-bottom: 30px;
		padding-bottom: 30px;
		border-bottom-style: solid;
		border-bottom-width: 1px;
		border-right: none;
	}
	.widget-footer .widget.last{
		border: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}
	.price-feature{
		top: 0;
	}
	.icon-thirds li{
		width: 48%;
	}
	.tab-nav {display: none;}
	h3.v_nav {
		height:45px;
		line-height:45px;
		margin: 0;
		padding: 0;
		text-align:center;
		margin-top: 1px;
		display: block;
		cursor: pointer;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		 -khtml-user-select: none;
		   -moz-user-select: none;
			-ms-user-select: none;
				user-select: none;
		border-bottom-style: solid;
		border-bottom-width: 1px;		
		}
		.tab-content-block {
			clear:both;
			position:relative;
			width: 100%;
			background: #fff;
			border-style: solid;
			border-width: 1px;
		}
		h3.v_nav:first-child {
			margin-top: 0;
		}
		h3.v_active {
			background: #FBFBFB;
			z-index:50;
		}
		hr{
			margin: 1.75em 0;
		}
		ul.timeline{
			width: 98%;
			padding-left: 2%;
		}
		ul.timeline > li{
			width: 100%;
			float: none!important;
		}
		.vert-line{
			left: 1px;
		}
		ul.timeline > li:nth-child(2n+1):before{
			border-color:#fff #e2e2e2 #fff #fff!important;
			left: -14px;
			right: 100%;
		}
		.hasCountdown{
			font-size: 36px!important;
		}
		
		/* Price Alt */
		.price-cell{
			display: block;
			border-right: none;
			border-bottom-style: dashed;
			border-bottom-width: 1px;
		}
		.price-cell.feature{
			min-width: 100%;
		}
		.inwrap{
			min-height: none;
		}
		.inwrap:after{
			left: 0%;
			margin-left: -30px;
			bottom: -47px!important;
		}
		.pb_featured_posts .recentwork, .pb_widgets{
			padding-bottom: 0;
		}
		.main-container, .wrapper{
			padding-bottom: 0;
		}
		#nav li.flag{
			padding-left: 25px!important;
			background-size: 18px ;
			background-repeat: no-repeat;
			background-position: 0 8px;
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
		}
		#nav li.flag li.flag{
			background-position: 0px 8px;
			padding-left: 25px!important;
		}
		#nav li.flag ul{
			margin-left: -15px;
		}
		aside.right-aside{
			margin-bottom: 2em;
			padding-bottom: 1em;
		}
		aside.left-aside.fifth{
			padding-bottom: 0em;
		}
 }
 




/* ==========================================================================
   04. Media Queries 600
   ========================================================================== */
@media only screen and (max-width: 600px) { 

	.backstretch{
		opacity: 0.2;
	}
	.cta.two-third{
		width: 100%;
		margin-right: 0%;
		float: none;
	}
	.main table{ 
		border-left: 1px solid #cad2d7;
		border-right: 1px solid #cad2d7;
		border-top: none;
		border-bottom: none;
	}
	.feature-heading{
		display: none;
	}	
}



/* ==========================================================================
   05. Media Queries 480
   ========================================================================== */
@media only screen and (max-width: 480px) { 
	
	 input[type=text],  input[type=email], input[type=password], textarea, a.btn, input[type=button], input[type=submit]{
		padding: 10px 2%;
		width: 96%;
	}
	a.btn, input[type=button]{
		text-align: center;
	}
	a.small-btn{
		font-size: 14px;
		padding: .4em 2%;
	}
	a.xsmall-btn{
		font-size: 12px;
		padding: .2em 2%;
	}
	iframe{
		max-height: 320px;
	}
	#menu-icon{
		display: block!important;
		padding-left: 3%!important;
		padding-right: 3%!important;
		width: 94%!important;
		position: relative;
		top: -1px;
	}
	.header-container header{
		text-align: center;
	}
	.logo, .logo-text{
		float: none;
	}
	.header-container nav{
		float: none;
		
	}
	#nav{
		padding-left: 3%!important;
		padding-right: 3%!important;
		width: 94%!important;
		left: 0;
		top: 35px;
		-webkit-border-radius: 0px 0px 3px 3px;
		border-radius: 0px 0px 3px 3px;
	}
	.hide-480{
		display: none;
	}
	.thumb-gallery .third{
		width: 100%;
	}
	.icon-thirds li{
		width: 100%;
		float: none;
	}
	ul.timeline > li:before, .vert-line{
		display: none;
	}
	ul.timeline{
		width: 100%;
		padding-left: 0;
	}
	.hasCountdown{
		font-size: 48px!important;
	}
	.hasCountdown .countdown_section{
		float: none;
		width: 100%!important;
		margin-bottom: 1em;
	}
	#nav li.flag, #nav li.flag li.flag{
		padding-left: 0px!important;
		background-image: none;
	}
	#nav li.flag ul{
		margin-left: 0px;
	}
	
	.sermon_image {
		float: none;
		max-width: 100%;
		margin-right: 0;		
	
	}
	.sermon_description{
		max-width: 100%;
	}
	.sermon_links { 
		float: none;
		width: 100%;
		margin-bottom: 1em;	
	}
	#nav li > ul li{
		padding-left: 0px!important;
	}
}


 
/* ==========================================================================
   06. Media Queries 1140
   ========================================================================== */  
@media only screen and (max-width: 1140px) {
	.wrapper { width: 100%; }
}





/* ==========================================================================
   WOO-Commerece Styles
   ========================================================================== */  
@media only screen and (max-width: 768px) {
	.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2, .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals, .woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last, .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals{
		width: 100%;
		float: none;
		text-align: left;
	}
	
	

}
@media only screen and (max-width: 480px) {
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product, .woocommerce div.product div.images, .woocommerce #content div.product div.images, .woocommerce-page div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce div.product div.summary, .woocommerce #content div.product div.summary, .woocommerce-page div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce .related ul.products li.product, .woocommerce .related ul li.product, .woocommerce .upsells.products ul.products li.product, .woocommerce .upsells.products ul li.product, .woocommerce-page .related ul.products li.product, .woocommerce-page .related ul li.product, .woocommerce-page .upsells.products ul.products li.product, .woocommerce-page .upsells.products ul li.product, .related.products ul.products li, .upsells.products ul.products li{
		width: 100%!important;
		margin: 1em 0% 1em 0!important;
	}
	.shop_table.cart .product-thumbnail, .shop_table.cart .product-remove{
		display: none;
	}
	table.shop_table.cart td{
		padding-right: 3px;
		padding-left: 3px;
	}
	.woocommerce div.product .woocommerce-tabs ul.tabs li{
		width: 100%;
		text-align: center;
		padding-left: 0;
		-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
		margin-bottom: .3em;
	}
	.woocommerce div.product .woocommerce-tabs ul.tabs, .woocommerce div.product .woocommerce-tabs ul.tabs:before, .woocommerce #content div.product .woocommerce-tabs ul.tabs:before, .woocommerce-page div.product .woocommerce-tabs ul.tabs:before, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs:before {
		border-bottom-width: 0!important;
	}
	
	
	.woocommerce .cart-collaterals .cross-sells, .woocommerce-page .cart-collaterals .cross-sells, .woocommerce .related ul.products li.product{
		float: none!important;
		width: 100%!important;
	} 
	.woocommerce .star-rating, .woocommerce-page .star-rating{
		float: none!important;
	}
	.woocommerce table.cart td.actions .coupon, .woocommerce #content table.cart td.actions .coupon, .woocommerce-page table.cart td.actions .coupon, .woocommerce-page #content table.cart td.actions .coupon, .woocommerce table.cart td.actions .button.alt, .woocommerce #content table.cart td.actions .button.alt, .woocommerce-page table.cart td.actions .button.alt, .woocommerce-page #content table.cart td.actions .button.alt{
		float: none;
	}
	.woocommerce table.cart td.actions, .woocommerce #content table.cart td.actions, .woocommerce-page table.cart td.actions, .woocommerce-page #content table.cart td.actions{
		text-align: center;
	}
	input#coupon_code{
		-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
		float: none!important;
		width: 96%!important;
		display: inline;
	}
	
}


/* ==========================================================================
   Events Calender Styles
   ========================================================================== */

@media only screen and (max-width: 768px) { 
	.events-gridview #tribe-events-header, .single-tribe_events #tribe-events-header{
		position: relative;
		top: 0px;
	}
	
	.events-gridview .main #tribe-events-content ul.tribe-events-sub-nav li, .events-gridview .main #tribe-events-content ul.tribe-events-sub-nav, .single-tribe_events .main #tribe-events-content ul.tribe-events-sub-nav li, .single-tribe_events .main #tribe-events-content ul.tribe-events-sub-nav{
		text-align: left;
	}
	
	.single-tribe_events .tribe-events-meta-group, .single-tribe_events .tribe-events-venue-map,
	.tribe-events-event-image img{
		float: none;
		width: 100%;
	}
	
	#tribe-events-content.tribe-events-list, #tribe-events-content{
		margin-bottom: 0px;
	}
	
	#tribe-mobile-container{
	    display: block;
	}
	
	.tribe-events-calendar td .tribe-events-viewmore, 
	.tribe-events-calendar td div.type-tribe_events {
	    display: none!important;
	}
	
	
	
	#tribe-events-content .tribe-events-calendar td{
		height: auto;
		text-align: center;
	}
	
	.tribe-events-calendar .tribe-events-has-events:after {
	    border-radius: 50%;
	    content: "";
	    display: block;
	    height: 8px;
	    margin: 5px auto;
	    padding: 0;
	    width: 8px;
	}
}
   
   
@media only screen and (max-width: 480px) {   
   .tribe-bar-date-filter, .tribe-bar-search-filter, .tribe-bar-submit{
	   	width: 100%;
	   	float: none;
	   	padding-right: 0;
   }
   .tribe-bar-submit{
	   	position: relative;
	   	left: 0px;
	   	top: 0px;
   }
   .tribe-bar-filters-inner{
   	padding-right: 0;
   }
   .tribe-events-event-image{
   	float: none!important;
   	margin-left: 0!important;
   	max-width: 100%!important;
   }
   .tribe-events-event-image img{
   	width: 100%;
   }
   
}
 
 
  
   
/* ==========================================================================
   Gravity Forms
   ========================================================================== */   
@media only screen and (max-width: 768px) { 
 .charleft.ginput_counter{
 	float: none;
 } 
 }    
   /* ==========================================================================
   01. Responsive Options
   ========================================================================== */
   
   
/* Responsive Boxed Version  
body{ padding-top: 0; }
.outter-wrapper{ max-width: 1440px; width: auto;}
.wrapper { max-width: 1140px; width: auto;}
.feature hr{ opacity: .4; }
*/



/* Responsive Full Width Version */
body{ padding: 0em; }
.outter-wrapper{ max-width: 100%; width: 100%;}
.wrapper { max-width: 1140px; width: auto;}

/*! fancyBox v2.1.4 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url(//oeconline.org/wp-content/themes/kause/js/fancybox/source/fancybox_sprite.png);
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url(//oeconline.org/wp-content/themes/kause/js/fancybox/source/fancybox_loading.gif) center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url(//oeconline.org/wp-content/themes/kause/js/fancybox/source/blank.gif); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
	overflow: hidden;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url(//oeconline.org/wp-content/themes/kause/js/fancybox/source/fancybox_overlay.png);
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
	        border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}#fancybox-buttons {
	position: fixed;
	left: 0;
	width: 100%;
	z-index: 8050;
}

#fancybox-buttons.top {
	top: 10px;
}

#fancybox-buttons.bottom {
	bottom: 10px;
}

#fancybox-buttons ul {
	display: block;
	width: 166px;
	height: 30px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	border: 1px solid #111;
	border-radius: 3px;
	-webkit-box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
	   -moz-box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
	        box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
	background: rgb(50,50,50);
	background: -moz-linear-gradient(top, rgb(68,68,68) 0%, rgb(52,52,52) 50%, rgb(41,41,41) 50%, rgb(51,51,51) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(68,68,68)), color-stop(50%,rgb(52,52,52)), color-stop(50%,rgb(41,41,41)), color-stop(100%,rgb(51,51,51)));
	background: -webkit-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	background: -o-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	background: -ms-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	background: linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#222222',GradientType=0 );
}

#fancybox-buttons ul li {
	float: left;
	margin: 0;
	padding: 0;
}

#fancybox-buttons a {
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	background-image: url(//oeconline.org/wp-content/themes/kause/js/fancybox/source/helpers/fancybox_buttons.png);
	background-repeat: no-repeat;
	outline: none;
	opacity: 0.8;
}

#fancybox-buttons a:hover {
	opacity: 1;
}

#fancybox-buttons a.btnPrev {
	background-position: 5px 0;
}

#fancybox-buttons a.btnNext {
	background-position: -33px 0;
	border-right: 1px solid #3e3e3e;
}

#fancybox-buttons a.btnPlay {
	background-position: 0 -30px;
}

#fancybox-buttons a.btnPlayOn {
	background-position: -30px -30px;
}

#fancybox-buttons a.btnToggle {
	background-position: 3px -60px;
	border-left: 1px solid #111;
	border-right: 1px solid #3e3e3e;
	width: 35px
}

#fancybox-buttons a.btnToggleOn {
	background-position: -27px -60px;
}

#fancybox-buttons a.btnClose {
	border-left: 1px solid #111;
	width: 35px;
	background-position: -56px 0px;
}

#fancybox-buttons a.btnDisabled {
	opacity : 0.4;
	cursor: default;
}#fancybox-thumbs {
	position: fixed;
	left: 0;
	width: 100%;
	overflow: hidden;
	z-index: 8050;
}

#fancybox-thumbs.bottom {
	bottom: 2px;
}

#fancybox-thumbs.top {
	top: 2px;
}

#fancybox-thumbs ul {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}

#fancybox-thumbs ul li {
	float: left;
	padding: 1px;
	opacity: 0.5;
}

#fancybox-thumbs ul li.active {
	opacity: 0.75;
	padding: 0;
	border: 1px solid #fff;
}

#fancybox-thumbs ul li:hover {
	opacity: 1;
}

#fancybox-thumbs ul li a {
	display: block;
	position: relative;
	overflow: hidden;
	border: 1px solid #222;
	background: #111;
	outline: none;
}

#fancybox-thumbs ul li img {
	display: block;
	position: relative;
	border: 0;
	padding: 0;
}