/*
	Theme Name: Agentevo Custom
	Description: Agentevo Custom Genesis Child Theme
	Author: AgentEvolution
	Author URI: http://agentevolution.com

	Template: genesis
*/

/* Fonts
------------------------------------------------------------

See child_add_google_fonts() inside functions/themes/default.php

Do not use @import

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

/* iphone font fix */
html {
    -webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
select,
input,
textarea {
	color: #333;
	font-family: 'Lato', arial, sans-serif;
	font-size: 14px;
	font-weight: normal;
	line-height: 1;
	margin: 0;
	padding: 0;
	text-decoration: none;
}

p, input, textarea, li {
	line-height: 150%;
}

.widget_text p {
	padding-bottom: 10px;
}

h1,
h2,
h2 a,
h2 a:visited,
h3,
h4,
h4 a,
h4 a:visited,
h5,
h6 {
	font-family: 'Crimson Text', serif;
	color: #333;
}

.author-box,
.sticky,
.taxonomy-description,
.wp-caption {
	background-color: #f5f5f5;
	border: 1px solid #ddd;
}

.breadcrumb {
	border: 7px solid #fff;;
	background: #fff;
	background: #e4e4e4; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U0ZTRlNCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjMmMyYzIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #e4e4e4 0%, #c2c2c2 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e4e4e4), color-stop(100%,#c2c2c2)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #e4e4e4 0%,#c2c2c2 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #e4e4e4 0%,#c2c2c2 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #e4e4e4 0%,#c2c2c2 100%); /* IE10+ */
	background: linear-gradient(to bottom, #e4e4e4 0%,#c2c2c2 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4e4e4', endColorstr='#c2c2c2',GradientType=0 ); /* IE6-8 */
	-moz-box-shadow: 0px 0px 5px 1px #cacaca inset, 0px 0px 5px 0px #7e7e7e;
  	-webkit-box-shadow: 0px 0px 5px 1px #cacaca inset, 0px 0px 5px 0px #7e7e7e;
  	box-shadow: 0px 0px 5px 1px #cacaca inset, 0px 0px 5px 0px #7e7e7e;
}

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
}

.sidebar .widget input,
.sidebar .widget textarea {
	background-color: #fff;
}

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

ol li {
	list-style-type: decimal;
}

.pull-left {
	float: left;
}

.pull-right {
	float: right;
}

.clearfix:before,
.cf:before,
.clearfix:after,
.cf:after,
.wrap:before,
.wrap:after {
  content:"";
  display:table;
}

.clearfix:after,
.cf:after,
.wrap:after {
  clear:both;
}

iframe {
	max-width: 100%;
	display: block;
}

/* apply a natural box layout model */
.site-title a,
nav.nav-primary ul.menu-primary,
.site-inner,
.slider,
.slider .carousel,
.slider .carousel-caption,
.slider #text-13,
.welcome,
.communities .type-page,
.communities .type-page a img,
.home-bottom,
.home-bottom-left,
.home-bottom-left a img,
.sidebar,
.footer-widgets .footer-widgets-1,
.footer-widgets .footer-widgets-2,
#ae-quick-search,
#ae-quick-search input,
.sidebar .btn,
.footer-widgets-1 { 
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
	box-sizing: border-box; 
}


/* Hyperlinks
------------------------------------------------------------ */

a,
a:visited {
	color: #bf0f3e;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a img {
	border: none;
}


/* Body
------------------------------------------------------------ */

body {
	background-color: #e9e9e9;
}


/* Wrap
------------------------------------------------------------ */

.site-header > .wrap,
nav.nav-primary > .wrap,
nav.nav-secondary > .wrap,
.site-inner > .wrap,
.welcome > .wrap,
.communities > .wrap,
.properties > .wrap,
.home-bottom > .wrap,
.footer-widgets > .wrap,
.site-footer > .wrap {
	max-width: 1140px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.home .site-inner > .wrap {
	max-width: none;
}


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

.site-header {
	overflow: hidden;
	width: 100%;
	background: #252525;
}

.site-header .wrap {
	position: relative;
}

.title-area {
	overflow: hidden;
	margin: 0 auto;
	float: left;
}

.site-title a {
	text-decoration: none;
	overflow: hidden;
	width: 460px;
	height: 135px;
	padding: 40px 0 20px 15px;
	display: block;
	float: left;
	font-family: 'Crimson Text', serif;
	font-size: 40px;
	color: #f4f4f4;
	text-align: center;
	text-transform: uppercase;
	line-height: 1;
}

.site-title a span {
	font-size: 24px;
	display: block;
	text-transform: capitalize;
}

.site-title a:hover {
	text-decoration: none;
}

.description {
	display: none;
}

.site-header .widget-area {
	width: 170px;
	margin-right: 120px;
	margin-top: 15px;
	float: right;
}

.site-header #text-6 {
	font-size: 23px;
	text-align: center;
	margin-bottom: 10px;
	display: block;
	font-family: 'Crimson Text', serif;
	color: #f4f4f4;
	font-weight: 600;
	line-height: 1.3;
}

.site-header #text-6 a {
	color: #f4f4f4;
}

.site-header .agent-social-icons {
	font-size: 13px;
	text-align: center;
}

.site-header .agent-social-icons a {
	color: #f4f4f4;
	text-decoration: none;
}

.site-header .agent-social-icons a:hover {
	color: #999;
}

.site-header .icon-youtube:before {
  content: "\f504" !important;
}


/*.pagination Constants
------------------------------------------------------------ */

li:hover ul ul,
li.sfHover ul ul {
	left: -9999px;
}

li:hover,
li.sfHover {
	position: static;
}

.site-header ul.nav li a.sf-with-ul,
.site-header ul.menu li a.sf-with-ul,
nav.nav-primary li a.sf-with-ul,
nav.nav-secondary li a.sf-with-ul {

}

li a .sf-sub-indicator {
	display: none;
}


/* Primary.pagination
------------------------------------------------------------ */

nav.nav-primary,
nav.nav-secondary {
	clear: both;
	overflow: hidden;
	width: 100%;
}

nav.nav-primary {
	border-top: 3px solid #545454;
	border-bottom: 3px solid #545454;
	background: #e4e4e4; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U0ZTRlNCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjMmMyYzIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #e4e4e4 0%, #c2c2c2 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e4e4e4), color-stop(100%,#c2c2c2)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #e4e4e4 0%,#c2c2c2 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #e4e4e4 0%,#c2c2c2 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #e4e4e4 0%,#c2c2c2 100%); /* IE10+ */
	background: linear-gradient(to bottom, #e4e4e4 0%,#c2c2c2 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4e4e4', endColorstr='#c2c2c2',GradientType=0 ); /* IE6-8 */
	-moz-box-shadow: 0 2px 3px 0 #ffffff inset;
  	-webkit-box-shadow: 0 2px 3px 0 #ffffff inset;
  	box-shadow: 0 2px 3px 0 #ffffff inset;
}

nav.nav-primary > .wrap {
	width: 100%;
	max-width: none;
	border-top: 1px solid #333333;
	border-bottom: 1px solid #333333;
}

nav.nav-secondary {
	border-bottom: 1px solid #000;
	background: #e4e4e4; /* Old browsers */
}

nav.nav-primary ul.menu-primary,
nav.nav-secondary ul {
	width: 100%;
	max-width: 1270px;
	padding-left: 65px;
	margin: 0 auto;
}

nav.nav-primary li,
nav.nav-secondary li {
	float: left;
	list-style-type: none;
}

nav.nav-primary li a,
nav.nav-secondary li a {
	display: block;
	font-size: 24px;
	color: #545454;
	text-shadow: 1px 1px #dedede;
	font-family: 'Crimson Text', serif;
	font-weight: 600;
	text-transform: capitalize;
	padding: 14px 16px 13px 17px;
	position: relative;
	text-decoration: none;
}

nav.nav-primary .menu-primary > li > a {
	border-right: 1px solid #f6f6f6;
}

nav.nav-primary .menu-primary > li {
	border-right: 1px solid #bababa;
}

nav.nav-primary li:hover,
nav.nav-primary li a:hover,
nav.nav-primary li a:active,
nav.nav-primary .current_page_item a,
nav.nav-primary .current-cat a,
nav.nav-primary .current-menu-item a {
	background-color: #e1e1e1;
}

nav.nav-secondary li a:hover,
nav.nav-secondary li a:active,
nav.nav-secondary .current_page_item a,
nav.nav-secondary .current-cat a,
nav.nav-secondary .current-menu-item a {
	background-color: #8f9199;
}

nav.nav-primary li li a,
nav.nav-primary li li a:link,
nav.nav-primary li li a:visited,
nav.nav-secondary li li a,
nav.nav-secondary li li a:link,
nav.nav-secondary li li a:visited {
	background-color: #e1e1e1;
	border-top: 1px solid #bababa;
	font-size: 16px;
	padding: 10px 15px;
	position: relative;
	text-transform: none;
	width: 200px;
}

nav.nav-primary li li a:hover,
nav.nav-primary li li a:active,
nav.nav-secondary li li a:hover,
nav.nav-secondary li li a:active {
	background-color: #c4c4c4;
}

nav.nav-primary li ul,
nav.nav-secondary li ul {
	height: auto;
	left: -9999px;
	position: absolute;
	width: 230px;
	z-index: 9999;
	border: 1px solid #bababa;
	border-top: none;
}

nav.nav-primary li ul a,
nav.nav-secondary li ul a {
	width: 140px;
}

nav.nav-primary li ul ul,
nav.nav-secondary li ul ul {
	margin: -33px 0 0 159px;
}

nav.nav-primary li:hover>ul,
nav.nav-primary li.sfHover ul,
nav.nav-secondary li:hover>ul,
nav.nav-secondary li.sfHover ul {
	left: auto;
}


/* Secondary.pagination
------------------------------------------------------------ */

nav.nav-secondary {
	min-height: 52px;
}

nav.nav-secondary li a {
	font-size: 20px;
	text-transform: capitalize;
}


/* Inner
------------------------------------------------------------ */

.site-inner {
	margin: 20px auto;
	width: 100%;
}

.home .site-inner {
	margin: 0 auto;
	max-width: none;
	padding: 0;
}

.home .site-inner > .wrap {
	width: 100%;
}


/* Home page
------------------------------------------------------------ */

.slider,
.welcome {
	margin-bottom: 30px;
}

.slider .widgettitle,
.welcome .widgettitle,
.properties .widgettitle,
.communities .widgettitle,
.home-bottom-left .widgettitle {
	margin-bottom: 10px;
	color: #333;
	font-size: 38px;
	font-weight: 600;
	text-shadow: 1px 1px white;
}


/* Slider
 ================================== */

.slider {
	padding: 15px 0 30px;
	background: #ededed; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: #292828; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzI5MjgyOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwODA2MDUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #292828 0%, #080605 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#292828), color-stop(100%,#080605)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #292828 0%,#080605 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #292828 0%,#080605 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #292828 0%,#080605 100%); /* IE10+ */
	background: linear-gradient(to bottom, #292828 0%,#080605 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#292828', endColorstr='#080605',GradientType=0 ); /* IE6-8 */
}

.slider > .wrap {
	max-width: 1140px;
	margin: 0 auto;
	position: relative;	
}

.slider .carousel {
	display: block;
	overflow: hidden;
}

.slider .carousel-caption {
	height: 100%;
	padding-top: 0;
	background: rgb(236, 236, 236); /* The Fallback */
	background: rgba(236, 236, 236,0.80);
	overflow: hidden;
	width: 31.3157894%; /* 357/1140 */
	max-width: 357px;
	-moz-box-shadow: inset 0 0 20px 0 #717171;
  	-webkit-box-shadow: inset 0 0 20px 0 #717171;
  	box-shadow: inset 0 0 20px 0 #717171;
	right: 0 !important;
	border: 1px solid #aaaaaa;
}

.slider .carousel-caption h2 {
	margin-bottom: 0;
}

.slider .carousel-caption h2 a {
	margin-top: 15px;
	padding-bottom: 5px;
	text-align: center;
	font-size: 48px;
	font-weight: 600;
	color: #545454;
	text-shadow: 1px 1px 1px #dedede;
}

.slider .carousel-caption p,
.slider .carousel-caption a {
	font-size: 16px;
	line-height: 1.3;
	text-align: center;
	text-shadow: 1px 1px 1px #dedede;
}

.slider .carousel-caption p {
	padding: 0 30px 15px;
	color: #454545;
}

.slider .carousel-caption a {
	color: #bf0f3e;
}

.slider .more-link:before {	
	content: '\005B';
	color: #bf0f3e;
	text-shadow: none;
}

.slider .more-link:after {
	content: '\005D';
	color: #bf0f3e;
	text-shadow: none;
}

.slider a img {
	width: 100%;
}


/* Communities
 ================================== */

.communities > .wrap {
	max-width: 1166.25px;
}

.communities .featuredpost h4 {
	margin-left: 11px;
}

.communities .featuredpost {
	float: left;
	clear: none;
	margin-bottom: 0;
	width: 100%;
}

.communities .type-page {
	border: 0;
	width: 17.7491961%; /* 207/1166.25 */
	float: left;
	margin-left: 1.1254019%; /* 13.125/1166.25 */
	margin-right: 1.1254019%; /* 13.125/1166.25 */
	margin-bottom: 15px;
}

.communities .type-page a img {
	width: 100%;
	max-height: 136px;
	padding: 6px;
	margin-bottom: 5px;
	box-shadow: 0px 0px 5px 0 #7e7e7e;
	background-color: #fff;
}

.communities .featuredpage h2 a,
.communities .type-page h2 a {
	display: block;
	text-align: center;
	margin-top: 0px;
	font-family: 'Lato', arial, sans-serif;
	font-size: 18px;
	color: #333333;
	height: 40px;
	overflow: hidden;
}


/* Home Bottom
--------------------------------------------------- */

.home-bottom {
	padding-top: 20px;
}

.home-bottom > .wrap {
	max-width: 1150px;
	padding-right: 5px;
}


/* Home Bottom Left
 ================================== */

.home-bottom-left {
	width: 64.9122807%; /* 745/1140px; */
}

.home-bottom-left .featuredpost .post {
	padding: 10px 0 5px 5px;
}

.home-bottom-left a img {
	width: 133px;
	height: 135px;
	padding: 5px;
	margin: 0 0 5px 0;
	box-shadow: 0px 0px 5px 0 #7e7e7e;
	background-color: #fff;
}

/* fix ie8 image collapse */
.ie8 .home-bottom-left a img {
	max-width: none;
}

.home-bottom-left .widgettitle {
	text-align: left;
	margin-bottom: 0;
	margin-left: 3px;
}

.home-bottom-left p {
	font-size: 16px;
	line-height: 1.45;
	padding-right: 50px;
}

.home-bottom-left .post h2 a {
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 5px;
	margin-top: 5px;
	display: block;
}

.home-bottom-left .more-from-category {
	text-align: right;
	padding-right: 0;
}

.home-bottom-left .more-from-category a {
	display: inline-block;
	font-size: 24px;
	color: #333333;
	font-family: 'Crimson Text', serif;
}


/* Home Bottom Right
 ================================== */

.home-bottom-right .widget .btn {
	margin: 0 auto;
	float: none;
	display: block;
	width: 186px;
	height: 39px;
	line-height: 1;
}


/* Breadcrumb
------------------------------------------------------------ */

.breadcrumb {
	font-size: 13px;
	line-height: 20px;
	margin: 0 0 30px;
	padding: 5px 10px;
}


/* Taxonomy Description
------------------------------------------------------------ */

.taxonomy-description {
	margin: 0 0 30px;
	padding: 10px;
}


/* Content-Sidebar Wrap
------------------------------------------------------------ */

.content-sidebar-wrap {
	float: left;
	width: 100%;
}


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

.content {
	float: left;
	width: 64.9122807%; /* 740/1140px; */
}

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

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

blockquote {
	font-style: italic;
	margin: 0;
	padding: 0;
	line-height: 150%;
}

.content blockquote {
	margin: 5px 15px 20px;
	padding: 15px 20px 0;
}

.post {
	margin: 0 0 40px;
}

.entry-content {
	overflow: hidden;
	line-height: 150%;
}

.entry-content p {
	padding: 0 0 15px;
}

.entry-content iframe {
	margin-bottom: 30px;
}

p.subscribe-to-comments {
	padding: 20px 0 10px;
}

.clear {
	clear: both;
}

.clear-line {
	border-bottom: 1px solid #ddd;
	clear: both;
	margin: 0 0 15px;
}


/* Column Classes
------------------------------------------------------------ */

.five-sixths,
.four-fifths,
.four-sixths,
.one-fifth,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fifths,
.three-fourths,
.three-sixths,
.two-fifths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin: 0 0 20px;
	padding-left: 3%;
}

.one-half,
.three-sixths,
.two-fourths {
	width: 48%;
}

.one-third,
.two-sixths {
	width: 31%;
}

.four-sixths,
.two-thirds {
	width: 65%;
}

.one-fourth {
	width: 22.5%;
}

.three-fourths {
	width: 73.5%;
}

.one-fifth {
	width: 17.4%;
}

.two-fifths {
	width: 37.8%;
}

.three-fifths {
	width: 58.2%;
}

.four-fifths {
	width: 78.6%;
}

.one-sixth {
	width: 14%;
}

.five-sixths {
	width: 82%;
}

.first {
	clear: both;
	padding-left: 0;
}


/* Featured Post Grid
------------------------------------------------------------ */

.genesis-grid-even {
	float: right;
	padding: 0 0 15px;
	width: 48%;
}

.genesis-grid-odd {
	clear: both;
	float: left;
	padding: 0 0 15px;
	width: 48%;
}

.genesis-grid-even,
.genesis-grid-odd {
	margin: 0 0 20px;
}


/* =Headlines
------------------------------------------------------------ */

h1,h2,h3,h4,h5,h6 {
	margin: 0 0 5px;
}

h1,
h2,
h2 a {
	font-size: 32px;
}

.taxonomy-description h1,
.sidebar h2,
.widget-area h2 a {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
	color: #545454;
}

h2 a:hover {
	text-decoration: none;
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 16px;
}

.widget-area .widgettitle {
	font-size: 30px;
	color: #545454;
	text-shadow: 1px 1px 1px #efefef;
	margin-bottom: 15px;
	text-transform: capitalize;
	text-align: center;
	line-height: .9;
}

.widget-area h4 a {
	text-decoration: none;
}

.footer-widgets .widgettitle {
	text-transform: capitalize;
}

h5 {
	font-size: 14px;
}

h6 {
	font-size: 12px;
}

.entry-title {
	margin-bottom: 15px;
}


/* Ordered / Unordered Lists
------------------------------------------------------------ */

.entry-content ol,
.entry-content ul {
	margin: 0;
	padding: 0 0 15px;
}

.entry-content ol {
	margin: 0;
}

.archive-page ul li,
.entry-content ul li {
	list-style-type: square;
	margin: 0 0 0 30px;
	padding: 0;
}

.entry-content ol li {
	margin: 0 0 0 35px;
}

.archive-page ul ul,
.entry-content ol ol,
.entry-content ul ul {
	padding: 0;
}


/* =Post Info
------------------------------------------------------------ */

.entry-header .entry-meta {
	margin: 10px 0;
}


/* =Post Icons
------------------------------------------------------------ */

.categories {
	background: url(../../../../images/icon-categories.png) no-repeat top left;
	padding: 2px 0 2px 22px;
}
.post-comments {
	background: url(../../../../images/icon-comments.png) no-repeat top left;
	margin: 0 0 0 10px;
	padding: 2px 0 2px 22px;
}
.tags {
	background: url(../../../../images/icon-tags.png) no-repeat top left;
	margin: 0 0 0 10px;
	padding: 2px 0 2px 20px;
}
.time {
	background: url(../../../../images/icon-time.png) no-repeat top left;
	padding: 2px 0 2px 21px;
}


/* Post Meta
------------------------------------------------------------ */

.entry-footer .entry-meta {
	border-top: 3px solid #DDD;
	clear: both;
	font-size: 12px;
	margin-top: 12px;
	margin-bottom: 20px;
	padding: 10px 0 0;
	width: 100%;
}

.single-testimonial .entry-header .entry-meta,
.single-testimonial .entry-footer .entry-meta {
	display: none;
}


/* =AE Postmeta
------------------------------------------------------------ */

#ae-postmeta {
	clear: both;
	margin: 15px auto;
	width: 195px;
}

#ae-postmeta .socialite {
	float: left;
	margin-right: 10px;
}

.related-posts {
	margin-bottom: 15px;
}

.related-posts li {
	margin-bottom: 5px;
	list-style: none;
}


/* Author Box
------------------------------------------------------------ */

.author-box {
	margin: 0 0 40px;
	overflow: hidden;
	padding: 10px;
}


/* =Sticky Posts
------------------------------------------------------------ */

.sticky {
	margin: 0 0 40px;
	padding: 20px;
}


/* =Archive Page
------------------------------------------------------------ */

.archive-page {
	float: left;
	padding: 20px 0;
	width: 45%;
}


/* =Images
------------------------------------------------------------ */

img {
	height: auto;
	max-width: 100%;
	overflow: hidden;
}

.archive .post-image,
.page-template-page_blog-php .post-image {
/*	padding: 4px;
	background: #fff;
	border: 1px solid #ddd;*/
}

.author-box .avatar {
	background-color: #fff;
	float: left;
	margin: 0 10px 0 0;
}

.post-image {
	margin: 0 10px 10px 0;
	background: #fff;
	padding: 4px;
	border: 1px solid #ddd;
}

.comment-list li .avatar {
	background-color: #fff;
	float: right;
	margin: 0 5px 0 10px;
	padding: 4px;
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 10px;
}

img.alignnone {
	display: inline;
	margin: 0 0 10px;
}

img.alignleft {
	display: inline;
	margin: 0 10px 10px 0;
	padding: 5px;
	margin: 0 10px 5px 5px;
	box-shadow: 0px 0px 5px 0 #7e7e7e;
	background-color: #fff;
}

.sidebar img.alignleft {
	width: 60px;
	height: 60px;
	padding: 5px;
	margin: 0 10px 5px 5px;
	box-shadow: 0px 0px 5px 0 #7e7e7e;
	background-color: #fff;
}

.ie8 .sidebar img.alignleft {
	max-width: none;
}

img.alignright {
	display: inline;
	margin: 0 0 10px 10px;
}

.alignleft {
	float: left;
	margin: 0 10px 0 0;
}

.alignright {
	float: right;
	margin: 0 0 0 10px;
}

.wp-caption {
	padding: 5px;
	text-align: center;
}

p.wp-caption-text {
	font-size: 12px;
	line-height: 16px;
	padding: 5px 0;
}

.wp-smiley,
.wp-wink {
	border: none;
	float: none;
}

.gallery-caption {
}

/* == image borders == */
.featured-listings .listing-wrap .listing-image-link,
.content .business-wrap img {
	border: 1px solid #DDD;
	padding: 4px;
	background: #fff;
}


/* Post.pagination
------------------------------------------------------------ */

.pagination {
	overflow: hidden;
	padding: 20px 0;
	width: 100%;
}

.pagination li {
	display: inline;
}

.pagination li a,
.pagination li.disabled,
.pagination li a:hover,
.pagination li.active a {
	border: 1px solid #ddd;
	padding: 5px 8px;
}

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


/* Primary / Secondary Sidebars
------------------------------------------------------------ */

.sidebar {
	display: inline;
	float: right;
	font-size: 14px;
	line-height: 20px;
	width: 31.4035087%; /* 358/1140 */
	max-width: 358px;
	padding: 0;
}

.sidebar p {
	font-size: 14px;
	color: #545454;
	text-shadow: none;
	line-height: 1.3;
}

#text-8 p,
#text-13 p {
	text-align: center;
}

.sidebar-secondary {
	float: left;
	width: 15.625%; /* 150/960 */
}

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

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

.sidebar .widget {
	margin: 0 0 25px;
	padding: 7px;
	background: #fff;
	-moz-box-shadow: 0px 0px 5px 0px #7e7e7e;
  	-webkit-box-shadow: 0px 0px 5px 0px #7e7e7e;
  	box-shadow: 0px 0px 5px 0px #7e7e7e;
}

.sidebar .widget .widget-wrap {
	background: #e4e4e4; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U0ZTRlNCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjMmMyYzIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #e4e4e4 0%, #c2c2c2 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e4e4e4), color-stop(100%,#c2c2c2)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #e4e4e4 0%,#c2c2c2 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #e4e4e4 0%,#c2c2c2 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #e4e4e4 0%,#c2c2c2 100%); /* IE10+ */
	background: linear-gradient(to bottom, #e4e4e4 0%,#c2c2c2 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4e4e4', endColorstr='#c2c2c2',GradientType=0 ); /* IE6-8 */
	text-shadow: 1px 1px #fff;
	padding: 5px 20px 10px;
	display: block;
	overflow: hidden;
	-moz-box-shadow: 0px 0px 5px 1px #cacaca inset;
  	-webkit-box-shadow: 0px 0px 5px 1px #cacaca inset;
  	box-shadow: 0px 0px 5px 1px #cacaca inset;
}

.sidebar a {
	text-shadow: none;
}

.widget-area .textwidget {

}

.widget-area ol,
.widget-area ul {
	margin: 10px 0 0 25px;
}

.widget-area ol ol,
.widget-area ul ul {
	margin: 0 0 0 15px;
}

.widget-area ul li {
	list-style-type: square;
	word-wrap: break-word;
}


/* Tag Cloud
------------------------------------------------------------ */

.widget_tag_cloud div div {
	padding: 5px 10px 0;
}


/* Dropdowns
------------------------------------------------------------ */

#cat,
.widget_archive select {
	display: inline;
	font-size: 12px;
	margin: 10px 10px 0;
	padding: 3px;
	width: 278px;
}

.sidebar-secondary #cat,
.sidebar-secondary .widget_archive select {
	width: 128px;
}


/* Featured Page / Post
------------------------------------------------------------ */

.featuredpage,
.featuredpost {
	clear: both;
	margin: 0 0 15px;
	overflow: hidden;
}

.featuredpage .page,
.featuredpost .post {
	margin: 0 0 5px;
	overflow: hidden;
}

.sidebar .post {
	margin-bottom: 25px;
}

.more-from-category {
}


/* User Profile
------------------------------------------------------------ */

.user-profile {
	overflow: hidden;
}

.user-profile p {
	padding: 10px 10px 0;
}

.user-profile .posts_link {
	padding: 0 10px;
}


/* Buttons
------------------------------------------------------------ */

/* Base Button Styling */
div.gform_footer input.button,
input[type="submit"],
input[type="button"],
.enews #subbutton,
.reply a,
.reply a:visited,
.searchsubmit,
#submit,
.btn {
	display: inline-block;
	*display: inline;
	padding: 0 14px 1px;
	margin-bottom: 0;
	*margin-left: .3em;
	font-family: 'Crimson Text', serif;
	font-size: 30px;c
	color: #f4f4f4;
	text-shadow: 1px 1px 1px #920c2f;
	line-height: 1.1;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border: 1px solid #920c2f;
	-webkit-box-shadow: 0 1px 1px 0 #ff3c70 inset;
	-moz-box-shadow: 0 1px 1px 0 #ff3c70 inset;
	box-shadow: 0 1px 1px 0 #ff3c70 inset;
}

.btn-nil {
	color: #333 !important;
	background-color: #f5f5f5;
	*background-color: #e6e6e6;
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
	background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
	background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
	background-repeat: repeat-x;
	border: 1px solid #bbbbbb;
	*border: 0;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	border-color: #e6e6e6 #e6e6e6 #bfbfbf;
	border-bottom-color: #a2a2a2;
	filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
	filter: progid:dximagetransform.microsoft.gradient(enabled=false);
	*zoom: 1;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-nil:hover {
	color: #333333;
	text-decoration: none;
	background-color: #e6e6e6;
	*background-color: #d9d9d9;
	/* Buttons in IE7 don't get borders, so darken on hover */
	background-position: 0 -15px;
	-webkit-transition: background-position 0.1s linear;
	-moz-transition: background-position 0.1s linear;
	-o-transition: background-position 0.1s linear;
	transition: background-position 0.1s linear;
}

.btn-nil:focus {
	outline: thin dotted #333;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

.btn-large {
	padding: 9px 14px;
	font-size: 16px;
	line-height: normal;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.btn-small {
	padding: 3px 9px;
	font-size: 12px;
	line-height: 18px;
}

.btn-mini {
	padding: 2px 6px;
	font-size: 11px;
	line-height: 17px;
}

.btn-block {
	display: block;
	width: 100%;
	padding-right: 0;
	padding-left: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.btn-block + .btn-block {
	margin-top: 5px;
}

div.gform_footer input.button,
input[type="submit"],
input[type="button"],
.enews #subbutton,
.reply a,
.reply a:visited,
.searchsubmit,
#submit,
.btn-primary,
.btn-primary:visited {
	color: #fff;
	background: #d11245; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2QxMTI0NSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNiZjBmM2UiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #d11245 0%, #bf0f3e 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d11245), color-stop(100%,#bf0f3e)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #d11245 0%,#bf0f3e 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #d11245 0%,#bf0f3e 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #d11245 0%,#bf0f3e 100%); /* IE10+ */
	background: linear-gradient(to bottom, #d11245 0%,#bf0f3e 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d11245', endColorstr='#bf0f3e',GradientType=0 ); /* IE6-8 */
}

.ie9 div.gform_footer input.button,
.ie9 input[type="submit"],
.ie9 input[type="button"],
.ie9 .enews #subbutton,
.ie9 .reply a,
.ie9 .reply a:visited,
.ie9 .searchsubmit,
.ie9 #submit,
.ie9 .btn {
	filter: none !important;
}


input.btn-alt,
.btn-alt,
.btn-alt:visited {
	color: #ffffff;
	text-shadow: -1px -1px #1E6D2D;
	background: #76ca86; /* Old browsers */
	background: -moz-linear-gradient(top, #76ca86 0%, #2b7e3b 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#76ca86), color-stop(100%,#2b7e3b)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #76ca86 0%,#2b7e3b 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #76ca86 0%,#2b7e3b 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #76ca86 0%,#2b7e3b 100%); /* IE10+ */
	background: linear-gradient(to bottom, #76ca86 0%,#2b7e3b 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#76ca86', endColorstr='#2b7e3b',GradientType=0 ); /* IE6-9 */
}

input.btn-alt,
.btn-alt {
	box-shadow: 0 0 2px #a1ddad inset;
	border: 1px solid #2d803d;
}

div.gform_footer input.button:hover,
input[type="submit"]:hover,
.enews #subbutton:hover,
.reply a:hover,
.searchsubmit:hover,
#submit:hover,
.btn-alt:hover,
.btn-primary:hover {
	text-decoration: none;
	background: #bf0f3e; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2JmMGYzZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkMTEyNDUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #bf0f3e 0%, #d11245 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#bf0f3e), color-stop(100%,#d11245)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #bf0f3e 0%,#d11245 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #bf0f3e 0%,#d11245 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #bf0f3e 0%,#d11245 100%); /* IE10+ */
	background: linear-gradient(to bottom, #bf0f3e 0%,#d11245 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bf0f3e', endColorstr='#d11245',GradientType=0 ); /* IE6-8 */
}

.btn-login,
.btn-register {
	width: 35%;
	text-align: center;
	margin-top: 5px;
}

.gform_wrapper .gform_footer input.button, 
.gform_wrapper .gform_footer input[type="submit"] {
	font-size: 30px !important;
}

.ie9 .gform_wrapper .gform_footer input.button, 
.ie9 .gform_wrapper .gform_footer input[type="submit"],
.ie8 input[type="submit"] {
	padding-left: 15px !important;
	padding-right: 15px !important;
}

.sidebar #text-13 .btn {
	width: 186px;
	margin: 0 auto;
	display: block;
}


/* =Testimonials Widget
------------------------------------------------------------ */

.widget_woothemes_testimonials blockquote {
	margin-bottom: 10px;
	font-style: normal !important;
}

.widget_woothemes_testimonials cite {
	font-style: normal !important;
	text-align: right;
	display: block;
	margin: 10px 0;
}

.sidebar blockquote {
	padding: 0 !important;
	margin: 0 0 20px !important;
	display: block;
	overflow: hidden;
}

.sidebar blockquote p {
	font-style: normal;
	padding-left: 0;
	padding-right: 0;
}

blockquote cite {
	font-style: normal;
	margin: 15px 0 0 0;
	display: block;
	padding-left: 20px;
}

blockquote cite a,
blockquote cite a:visited {
	margin-left: 10px;
	display: block;
}

blockquote cite:before {
	content:"\2014";
}

.sfststreadmore {
	float: right;
	display: block;
	overflow: hidden;
	margin-bottom: 5px;
	color: #bf0f3e;
}

.sfststreadmore a,
.sfstsreadmore a:visited {
	text-shadow: none;
}

.sfststreadmore:before {	
	content: '\005B';
	color: #bf0f3e;
	text-shadow: none;
}

.sfststreadmore:after {
	content: '\005D';
	color: #bf0f3e;
	text-shadow: none;
}

.widget_woothemes_testimonials .author,
.widget_woothemes_testimonials .excerpt {
	margin-bottom: 10px;
	display: block;
}

.widget_woothemes_testimonials .excerpt {
	margin-top: 10px;
}

.widget_woothemes_testimonials img {
	margin: 0 8px 8px 0;
}

.widget_woothemes_testimonials .first {
	clear: none;
}


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

.site-header .searchform {
	float: right;
	padding: 30px 0 0;
}

.sidebar .searchform {
	padding: 5px 0 0 10px;
}

nav.nav-primary .searchform {
	float: right;
}

.s {
	font-size: 12px;
	margin: 5px 2px 0 0;
	padding: 4px 5px;
	width: 195px;
}

.sidebar .gform_footer {
	padding: 0 !important;
}

.sidebar .gform_wrapper {
	margin-bottom: 0 !important;
}

.entry-content .gform_wrapper ul li {
	padding: 0;
	margin: 0;
}


/* =eNews and Update Widget
------------------------------------------------------------ */

.enews p {

}

.enews #subscribe {

}

.enews #subbox {
	font-size: 12px;
	margin: 5px 5px 10px 0;
	padding: 4px 5px;
	width: 90%;
}

.widget .enews #subbutton {
	display: block;
}


/* Latest Tweets Widget
------------------------------------------------------------ */

.latest-tweets ul li {
	margin-bottom: 15px;
}


/* =Communities Template / Masonry Defaults
------------------------------------------------------------ */

.masonry-item {
	width: 280px;
	margin: 10px;
	float: left;
	padding: 9px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #ddd;
}

.masonry-item a img {
	width: 100%;
	height: auto;
	margin-bottom: 12px;
}

.masonry-item h2 a {
	text-decoration: none;
	font-size: 24px;
	line-height: 100%;
}


/* Calendar Widget
------------------------------------------------------------ */

#wp-calendar {
	width: 100%;
}

#wp-calendar caption {
	font-size: 12px;
	font-style: italic;
	padding: 2px 5px 0 0;
	text-align: right;
}

#wp-calendar thead {
	background-color: #f5f5f5;
	font-weight: bold;
	margin: 10px 0 0;
}

#wp-calendar td {
	background-color: #f5f5f5;
	padding: 2px;
	text-align: center;
}


/* =Search Panel
------------------------------------------------------------ */

#ae-search-panel {
	width: 100%;
	padding: 12px 0 15px;
	margin: 0 auto;
	background: #ededed; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: #292828; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzI5MjgyOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwODA2MDUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #292828 0%, #080605 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#292828), color-stop(100%,#080605)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #292828 0%,#080605 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #292828 0%,#080605 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #292828 0%,#080605 100%); /* IE10+ */
	background: linear-gradient(to bottom, #292828 0%,#080605 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#292828', endColorstr='#080605',GradientType=0 ); /* IE6-8 */
}

#ae-search-panel > .wrap {
	max-width: 1140px;
	margin: 0 auto;
}

#ae-search-panel h3 {
	width: auto;
	font-size: 30px;
	margin-top: 10px;
	padding-bottom: 12px;
	color: #F4F4F4;
}

#ae-search-panel form {
	margin: 0 auto;
	padding-left: 1%;
}

#ae-search-panel input {
	padding: 0 5px;
	height: 28px;
	line-height: 28px;
}

#ae-search-panel input.ae-search-button {
	height: 40px;
	line-height: 40px;
	font-size: 24px;
	text-transform: uppercase;
	font-weight: normal;
	width: 175px;
	float: right;
	margin-top: -5px;
	margin-right: 2.5%; 
}

#ae-search-panel input,
#ae-search-panel select {
	display: block;
	float: left;
	margin-bottom: 0;
	margin-right: 3%; 
	font-size: 11px;
}

#ae-search-panel select {
	width: 25%;
	height: 28px;
	padding: 3px;
	line-height: 26px;
	border: 1px solid #545454;
}

.firefox #ae-search-panel select {
	padding-top: 4px;
	color: #666666;
}

#ae-search-panel #search_neighborhood,
#ae-search-panel #search_price_min,
#ae-search-panel #search_price_max {
	border: 1px solid #545454;
	color: #666666;
}

#ae-search-panel #search_neighborhood {
	width: 20%; 
}

#ae-search-panel #search_price_min,
#ae-search-panel #search_price_max {
	width: 10%; 
}

#ae-links { 
	clear: both; 
	max-width: 1140px; 
}

#ae-links a { 
	font-size: 12px; 
	margin-right: 20px;  
	font-family: 'Lato', arial, sans-serif;
}

#ae-login-register a { 
	padding-right: 20px;  
}

#ae-links #ae-login-register { 	
	float: left; 
}

#ae-links #ae-advanced { 
	float: right;
	margin-right: 32px;	
	margin-top: 7px;
}


/* Social Icon Sprite
------------------------------------------------------------ */

.agent-social-icons a {
	font-size: 32px;
	margin-left: 12px;
}

.agent-social-icons a:first-child {
	margin-left: 0;
}

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

.footer-widgets {
	overflow: hidden;
	width: 100%;
	padding: 30px 0  10px;
	background-color: #252525;
	border-top: 5px solid #000;
}

.footer-widgets,
.footer-widgets .widgettitle,
.footer-widgets p,
.footer-widgets span,
.footer-widgets a {
	color: #fff;
	line-height: 1.25;
}

.footer-widgets .widgettitle {
	font-family: 'Crimson Text', serif;
	text-shadow: 1px 1px 1px #000;
	font-size: 30px;
	font-weight: 600;
	text-align: left;
}

.footer-widgets .footer-widgets-2 .agent-phone,
.footer-widgets .footer-widgets-2 p.agent-address {
	font-family: 'Crimson Text', serif;
	font-size: 24px;
	text-shadow: 1px 1px 1px #000;
	font-weight: 600;
	line-height: 1;
}

.footer-widgets .footer-widgets-1 {
	width: 68.4210526%; /* 780/1140 */
	float: left;
}

.footer-widgets-1 .agent-photo {
	max-width: 146px;
	height: auto;
	float: left;
	margin: 5px 20px 10px 0;
}

.footer-widgets .footer-widgets-2 {
	width: 31.5789473%; /* 360/1140 */
	float: left;
	text-align: center;
}

.footer-widgets-2 .agent-social-icons {
	margin: 45px auto 0;
}

.footer-widgets-2 .agent-social-icons a {
	text-decoration: none;
}

.footer-widgets-2 .agent-social-icons a:hover {
	color: #999 !important;
}

.footer-widgets-2 .icon-youtube:before {
  content: "\f504" !important;
}

.footer-widgets .widget {
	background: none;
	border: none;
	padding: 0;
}

.footer-widgets .textwidget {
	padding: 0;
}

.footer-widgets .widget_tag_cloud div div {
	padding: 0;
}


/* =Footer
------------------------------------------------------------ */

.site-footer {
	overflow: hidden;
	width: 100%;
	height: 70px;
	line-height: 70px;
	background-color: #252525;
	border-bottom: 5px solid #000;
}

.site-footer .wrap {
	background: url(../../../../images/logo-realtor.png) no-repeat 70.614035% center; /* 140/805 */
}

.site-footer,
.site-footer p,
.site-footer span,
.site-footer a {
	color: #636363;
	font-size: 12px;
}

.site-footer .footer-right a {
	padding: 0 5px;
}


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

.entry-comments,
#respond {
	margin: 0 0 15px;
	overflow: hidden;
}

#author,
#comment,
#email,
#url {
	margin: 10px 5px 0 0;
	padding: 5px;
	width: 250px;
}

#comment {
	height: 150px;
	margin: 10px 0;
	width: 98%;
}

.ping-list {
	margin: 0 0 40px;
}

.comment-list ol,
.ping-list ol {
	padding: 10px;
}

.comment-list li,
.ping-list li {
	font-weight: bold;
	list-style-type: none;
	margin: 15px 0 5px;
	padding: 10px 5px 10px 10px;
}

.comment-list li ul li {
	background: #eaeaea;
	list-style-type: none;
	margin-left: 10px;
	margin-right: -6px;
}

.comment-content p {
	font-size: 0.875em;
	line-height: 1.5em;
	padding: 0 0 20px;
}

.comment-list cite,
.ping-list cite {
	font-style: normal;
}

.commentmetadata {
	font-size: 0.75em;
	margin: 5px 0;
}

.reply {
	font-size: 0.875em;
	font-weight: 300;
	line-height: 1.5em;
}

.nocomments {
	text-align: center;
}

.entry-comments .pagination {
	display: block;
}

.bypostauthor {
}

.thread-alt,
.thread-even {
	background-color: #f7f7f7;
}

.alt,
.depth-1,
.even {
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border: 1px solid #ccc;
}


/* Responsive Design
------------------------------------------------------------ */

@media (max-width: 1290px) {

	.site-header > .wrap,
	.slider > .wrap,
	.welcome > .wrap,
	#ae-search-panel > .wrap,
	.site-inner > .wrap,
	.communities > .wrap,
	.properties > .wrap,
	.home-bottom > .wrap,
	.footer-widgets > .wrap,
	.site-footer > .wrap {
		width: 96%;
	}
	
	.home .site-inner > .wrap {
		width: 100%;
	}

	.site-header .widget-area {
		margin-right: 20px;
	}
	
	nav.nav-primary ul.menu-primary {
		padding-left: 0;
		width: 98%;
		max-width: 1140px;
	}
	
	nav.nav-primary li a, 
	nav.nav-secondary li a {
		font-size: 21px;
		padding-left: 14px;
		padding-right: 14px;
	}
	
	.slider {
		padding: 20px 0;
	}

	.slider #text-13 {
		padding-left: 25px;
		padding-right: 25px;
	}

}


@media (max-width: 1050px) {

	nav.nav-primary li a, 
	nav.nav-secondary li a {
		font-size: 18px;
		padding-left: 13px;
		padding-right: 13px;
	}
	
	.slider .carousel-caption {
		width: 40%;
	}
	
}


@media (max-width: 979px) {

	nav.nav-primary > ul.menu-primary {
		text-align: center;
	}
	
	nav.nav-primary li, 
	nav.nav-secondary li {
		float: none;
		display: inline-block;
		border-right: none !important;
	}

	nav.nav-primary li a, 
	nav.nav-secondary li a {
		border-right: none !important;
	}
	
	.slider {
		padding: 15px 0;
		margin-bottom: 20px;
	}
	
	.slider .carousel-caption h2 a {
		font-size: 36px;
		line-height: 1;
		padding: 0;
	}
	
	.slider .carousel-caption p, 
	.slider .carousel-caption a {
		font-size: 14px;
	}
	
	.slider .carousel-caption p {
		padding-left: 18px;
		padding-right: 18px;
	}
	
	.communities .featuredpage h2 a, 
	.communities .type-page h2 a {
		font-size: 16px;
	}
	
	#ae-search-panel .wrap {
		position: relative;
	}
	
	#ae-search-panel select {
		width: 28%;
	}
	
	#ae-search-panel #search_neighborhood {
		width: 23%; 
	}
	
	#ae-search-panel #search_price_min,
	#ae-search-panel #search_price_max {
		width: 17%; 
	}

	
	#ae-search-panel input.ae-search-button {
		position: absolute;
		right: 0;
		bottom: 0;
	}
	
	#ae-links {
		padding-top: 30px;
	}
	
}


@media (min-width: 768px) and (max-width: 978px) {

	.sidebar .widget-wrap {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
	
	.sidebar img.alignleft {
		margin: 0 !important;
	}
	
}


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

	body {
		width: 100%;
		margin: 0 auto;
	}
	
	.site-header .title-area {
		padding: 0;
	}

	.site-header .site-title a {
		float: none;
		margin: 25px auto;
		padding: 0;
		height: auto;
		width: auto;
	}

	.site-header .widget-area { 
		margin: 0;
		padding-bottom: 0;
	}
	
	nav.nav-primary li a, 
	nav.nav-secondary li a {
		font-size: 18px;
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.slider .carousel-caption {
		display: block !important;
		position: static;
		float: left;
		width: 100%;
		max-width: 100%;
	}
	
	.slider .carousel-caption h2 a {
		color: #333;
	}
	
	.communities .type-page {
		width: 30%;
		margin-left: 1.6666666%;
		margin-right: 1.6666666%;
	}

	.archive-page,
	.content-sidebar .content,
	.content-sidebar-sidebar .content,
	.footer-widgets .widget-area,
	.full-width-content .content,
	.sidebar,
	.sidebar-content .content,
	.sidebar-content-sidebar .content,
	.sidebar-sidebar-content .content,
	.content-sidebar-wrap,
	.footer-widgets .wrap,
	.footer-widgets .widget-area,
	.site-header,
	.site-header .widget-area,
	.footer-widgets .widget-area.footer-widgets-1,
	.sidebar-secondary,
	.title-area,
	.site-container,
	.sidebar {
		width: 100%;
	}
	
	.sidebar {
		max-width: 100%;
	}

	.description,
	.site-title,
	.title-area,
	.site-header .widget-area {
		float: none;
		text-align: center;
	}

	.site-header .searchform {
		float: none;
		padding: 0;
		text-align: center;
	}

	.site-header .s {
		margin: 0 2px 0 0;
	}

	.site-header .menu {
		float: none;
		text-align: center;
	}

	.site-header .menu li {
		display: inline-block;
		float: none;
	}

	.site-header .menu li li a,
	.site-header .menu li li a:link,
	.site-header .menu li li a:visited {
		text-align: left;
	}

	.menu li.right {
		display: none;
	}

	.menu li ul ul {
		margin: -35px 0 0 158px;
	}

	#ae-search-panel select {
		width: 47%;
		margin-bottom: 15px;
	}
	
	#ae-search-panel #search_neighborhood {
		width: 47%; 
		margin-bottom: 15px;
	}
	
	#ae-search-panel #search_price_min,
	#ae-search-panel #search_price_max {
		width: 25%; 
	}
	
	#ae-search-panel input.ae-search-button {
		bottom: 30px;
		right: 20px;
		margin: 0;
	}
	
	#ae-links {
		padding-top: 15px;
	}

	nav.nav-primary {
	    background-repeat: repeat;
	}

	nav.nav-primary .wrap {
		text-align: center;
		width: 100%;
	}

	nav.nav-secondary .wrap {
		text-align: center;
		width: 100%;
	}

	.menu li {
		float: none;
		display: inline-block;
	}

	.sidebar .menu li {
		float: none;
		display: inline;
	}

	.menu a {
		padding: 12px 18px;
		text-align: left;
	}

	.breadcrumb,
	.pagination,
	.sidebar .widget,
	.taxonomy-description {
		margin: 0 0px 20px;
	}

	.page .page,
	.post,
	.listing,
	.aeprofiles,
	.testimonial,
	.entry-comments,
	#respond {
		/*padding: 0 20px;*/
	}

	.featuredpage .page img,
	.featuredpost .post img {
		margin: 0 0 10px;
	}

	.author-box {
		margin: 0 20px 40px;
	}

	.post-image {
	}

	.s {
		width: 60%;
	}

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

	.footer-widgets > .wrap {
		width: 96%;
	}
	
	.footer-widgets-2 .agent-social-icons {
		margin-top: 5px;
	}

	.site-footer {
		height: auto;
		line-height: 2;
		padding-bottom: 15px;
	}
	
	.site-footer .wrap {
		background-position: center bottom;
		padding-bottom: 70px;

	}
	
	.site-footer .footer-left,
	.site-footer .footer-right {
		width: 100%;
		text-align: center;
	}

	.site-footer .footer-left {
		margin-bottom: 12px;
	}

}


@media (max-width: 480px) {
	
	.site-header .site-title a {
		font-size: 32px;
	}
	
	.communities .type-page {
		width: 40%;
		margin-left: 5%;
		margin-right: 5%;
	}
	
	#ae-search-panel h3 {
		text-align: center;
		margin-top: 0;
	}

	#ae-search-panel select,
	#ae-search-panel #search_neighborhood {
		width: 80%; 
		margin: 0 10% 15px;
	}
	
	#ae-search-panel #search_price_min,
	#ae-search-panel #search_price_max {
		width: 40%; 
		margin: 0 0 15px 10%;
		clear: left;
	}
	
	#ae-search-panel input.ae-search-button {
		position: static;
		margin: 0 auto;
		float: none;
		clear: both;
	}
	
	#ae-links #ae-login-register {
		width: 100%;
	}
	
	#ae-links a {
		width: 100%;
		text-align: center;
		float: left;
	}
	
	.home-bottom-left .post h2 a {
		font-size: 20px;
	}
	
	.post p {
		font-size: 14px;
	}

}


@media (max-width: 380px) {
	
	.slider .widgettitle, 
	.welcome .widgettitle, 
	.properties .widgettitle, 
	.communities .widgettitle, 
	.home-bottom-left .widgettitle {
		font-size: 30px;
	}

}