/*
	Theme Name: Genesis Sample
	Description: This is the sample theme created for the Genesis Framework.
	Author: StudioPress
	Author URI: http://www.studiopress.com/
 
	Version: 1.9
 
	Tags: black, orange, white, one-column, two-columns, three-columns, fixed-width, custom-menu, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
 
	Template: genesis
	Template Version: 1.9
 
	License: GPL-2.0+
	License URI: http://www.opensource.org/licenses/gpl-license.php 
*/
 

/* Table of Contents

	01 Import Fonts
	02 Defaults
	03 Typography
		- Font Color
		- Font Family
		- Font Size
		- Font Miscellaneous
	04 Layout
		- Structure
		- 1152px CSS Grid
		- Header
		- Main Content
		- Post Info & Meta
		- Column Classes
		- Miscellaneous
	05 Menus
		- Primary Navigation Extras
	06 Headings
	07 Lists
	08 Post Navigation
	09 Comments
	10 Sidebars
	11 Footer
		- Footer Widgets
	12 Forms & Buttons
		- Gravity Forms
	13 Images & Captions
	14 Media Queries
		- max-width: 1024px
		- max-width: 768px
		- max-width: 480px

*/


/*
01 Import Fonts
---------------------------------------------------------------------------------------------------- */

/* @import url(http://fonts.googleapis.com/css?family=Lato:400,700); */


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

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

.custom .format_text input, #commentform input, #commentform textarea {
width:auto;
}

html {
	font-size: 100%; /* 16px browser default */
}

body {
	background-color: #fff;
	line-height: 1;
}

body,
input,
select,
textarea,
.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3 {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

a,
a:visited,
button,
input[type="button"],
input[type="submit"],
.btn {
	-moz-transition: all 0.1s ease-in-out;
	-webkit-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

::-moz-selection {
	background-color: #1e1e1e;
	color: #fff;
}

::selection {
	background-color: #1e1e1e;
	color: #fff;
}

a img {
	border: none;
}


/*
03 Typography
-------------------------------------------------------------------------------------------------------

	This section covers font colors, families, size, styles and weight.

	This style sheet uses rem values with a pixel fallback.
	The rem values are calculated per the examples below:

	12 / 16 =		0.75rem
	14 / 16 =		0.875rem
	16 / 16 =		1rem	
	18 / 16 =		1.125rem
	20 / 16 =		1.25rem
	24 / 16 =		1.5rem
	30 / 16 =		1.875rem
	36 / 16 =		2.25rem
	42 / 16 =		2.625rem
	48 / 16 =		3rem
	
	Further reading on the use and compatibility of rems:
	
	http://caniuse.com/rem
	http://snook.ca/archives/html_and_css/font-size-with-rem
	
*/

/* 03a - Font Color ----------- */

a:hover,
body,
h2 a,
h2 a:visited,
h4.widgettitle a,
input,
.author,
.date,
.genesis-nav-menu a,
.genesis-nav-menu li li a,
.genesis-nav-menu li li a:link,
.genesis-nav-menu li li a:visited,
.post-comments,
#title a,
#title a:hover {
	color: #1e1e1e;
}

a,
h2 a:hover,
.genesis-nav-menu li a:hover,
.genesis-nav-menu li:hover a,
.genesis-nav-menu li li a:hover,
.genesis-nav-menu .current-menu-item a {
	color: #ff2a00;
}

.post-info,
.post-meta,
#description {
	color: #636363;
}

blockquote::before,
blockquote p,
input,
select,
textarea {
	color: #999;
}

button,
input[type="button"],
input[type="submit"],
.btn,
.genesis-nav-menu .highlight-menu-item a,
.genesis-nav-menu .highlight-menu-item a:hover,
.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
	color: #fff;
}

/* 03b - Font Family ----------- */

body,
input,
textarea,
.author-box h1 {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title a,
#title {
/*	font-family: 'Lato', sans-serif; */
}

/* 03c - Font Size ----------- */

#title {
	font-size: 42px;
	font-size: 2.625rem;
}

h1,
.entry-title,
.entry-title a {
	font-size: 36px;
	font-size: 2.25rem;
}

blockquote::before {
	font-size: 32px;
	font-size: 2rem;
}

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

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

h4,
.archive-title,
.taxonomy-description h1,
.widgettitle {
	font-size: 20px;
	font-size: 1.25rem;
}

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

h6,
.author-box h1,
.sidebar h2 a {
	font-size: 16px;
	font-size: 1rem;
}

input,
select,
textarea,
.genesis-nav-menu,
.post-info,
.post-meta,
.wp-caption,
#footer p {
	font-size: 14px;
	font-size: 0.875rem;
}


/* 03d - Font Miscellaneous ----------- */

blockquote p {
	font-style: italic;
}

cite {
	font-style: normal;
}

button,
input[type="button"],
input[type="submit"],
h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.entry-title a,
.genesis-nav-menu,
.post-comments,
.post-info .author,
.post-info .date,
.wp-caption,
#footer p,
#title {
	font-weight: 700;
}

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

h2 a,
h2 a:visited,
.genesis-nav-menu a,
.navigation li a,
.widgettitle a,
#title a {
	text-decoration: none;
}


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

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

#wrap {
	margin: 0 auto;
	max-width: 1152px;
}

#inner {
	clear: both;
	overflow: hidden;
	padding-top: 40px;
	padding-top: 2.5rem;
}

/* 04b - 1152px CSS Grid ----------- */

#sidebar-alt {
	width: 15.277777777%; /* 176px / 1152px */
}

.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3,
.sidebar,
#header .widget-area {
	width: 30.555555555%; /* 352px / 1152px */
}

.content-sidebar-sidebar .sidebar,
.sidebar-content-sidebar .sidebar,
.sidebar-sidebar-content .sidebar {
	width: 37.931034482%; /* 352px / 928px */
}

.content-sidebar-sidebar #content,
.sidebar-content-sidebar #content,
.sidebar-sidebar-content #content {
	width: 56.896551724%; /* 528px / 928px */
}

.content-sidebar #content,
.sidebar-content #content,
#title-area {
	width: 65.277777777%; /* 752px / 1152px */
}

.content-sidebar-sidebar #content-sidebar-wrap,
.sidebar-content-sidebar #content-sidebar-wrap,
.sidebar-sidebar-content #content-sidebar-wrap {
	width: 80.555555555%; /* 928px / 1152px */
}

.content-sidebar #content-sidebar-wrap,
.full-width-content #content,
.full-width-content #content-sidebar-wrap,
.sidebar-content #content-sidebar-wrap {
	width: 100%; /* 1152px / 1152px */
}

.footer-widgets-1,
.footer-widgets-2,
.sidebar-content #sidebar,
.sidebar-sidebar-content #sidebar,
#content,
#content-sidebar-wrap,
#footer .gototop,
#sidebar-alt,
#title-area {
	float: left;
}

.content-sidebar-sidebar #sidebar-alt,
.footer-widgets-3,
.sidebar,
.sidebar-content #content,
.sidebar-content-sidebar #content-sidebar-wrap,
.sidebar-sidebar-content #content,
.sidebar-sidebar-content #content-sidebar-wrap,
#footer .creds,
#header .widget-area {
	float: right;
}

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

#header {
	border-bottom: 2px solid #1e1e1e;
	min-height: 120px;
	overflow: hidden;
	padding-bottom: 32px;
	padding-bottom: 2rem;
}

#title {
	line-height: 1;
	margin: 40px 0 8px;
	margin: 2.5rem 0 0.5rem;
}

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

#description {
	line-height: 1.25;
}

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

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

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

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

#content {
	padding-bottom: 40px;
	padding-bottom: 2.5rem;
}

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

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

.page .entry {
	margin: 0;
}

.entry-content {
	overflow: hidden;
}

.entry-content,
.entry-content p {
	line-height: 1.625;
}

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

blockquote {
	padding: 24px 64px;
	padding: 1.5rem 4rem;
}

blockquote::before {
	content: "“";
	display: block;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
}

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

.post-info,
.post-meta {
	clear: both;
	line-height: 1.5;
}

.post-info {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.post-comments {
	background: url(images/post-comments.png) no-repeat center left;
	margin-left: 16px;
	margin-left: 1rem;
	padding-left: 20px;
	padding-left: 1.25rem;
}

.post-meta {
	border-top: 1px solid #ccc;
	padding-top: 24px;
	padding-top: 1.5rem;
}

.categories,
.tags {
	display: block;
}

/* 04f - 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-left: 4.166666666%; /* 48px / 1152px */
}

.one-half,
.three-sixths,
.two-fourths {
	width: 47.9166666666%; /* 552px / 1152px */
}

.one-third,
.two-sixths {
	width: 30.555555555%; /* 352px / 1152px */
}

.four-sixths,
.two-thirds {
	width: 65.277777777%; /* 752px / 1152px */
}

.one-fourth {
	width: 21.875%; /* 252px / 1152px */
}

.three-fourths {
	width: 73.958333333%; /* 852px / 1152px */
}

.one-fifth {
	width: 16.666666666%; /* 192px / 1152px */
}

.two-fifths {
	width: 37.5%; /* 432px / 1152px */
}

.three-fifths {
	width: 58.333333333%; /* 672px / 1152px */
}

.four-fifths {
	width: 79.166666666%; /* 912px / 1152px */
}

.one-sixth {
	width: 13.194444444%; /* 152px / 1152px */
}

.five-sixths {
	width: 82.638888888%; /* 952px / 1152px */
}

.first {
	margin-left: 0;
}

/* 04g - Miscellaneous ----------- */

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

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

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

.alignleft,
.archive-page {
	float: left;
}

.alignright {
	float: right;
}

.archive-page {
	width: 50%;
}

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

.author-box,
.author-box h1,
.taxonomy-description {
	line-height: 1.5;
}

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


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

.genesis-nav-menu {
	clear: both;
	overflow: hidden;
}

#header .genesis-nav-menu {
	float: right;
	margin-top: 48px;
	margin-top: 3rem;
	width: auto;
}

.genesis-nav-menu.menu-primary,
.genesis-nav-menu.menu-secondary {
	border-bottom: 1px solid #ccc;
}

.genesis-nav-menu ul {
	float: left;
	width: 100%;
}

.genesis-nav-menu li {
	display: inline-block;
	float: left;
	list-style-type: none;
	text-align: left;
}

.genesis-nav-menu a {
	display: block;
	padding: 24px 20px;
	padding: 1.5rem 1.25rem;
	position: relative;
}

.genesis-nav-menu li.highlight-menu-item {
	margin-left: 20px;
	margin-left: 1.25rem;
}

.genesis-nav-menu .highlight-menu-item a {
	background-color: #1e1e1e;
}

.genesis-nav-menu .highlight-menu-item a:hover {
	background-color: #ff2a00;
}

.genesis-nav-menu li li a,
.genesis-nav-menu li li a:link,
.genesis-nav-menu li li a:visited {
	background-color: #fff;
	border: 1px solid #ccc;
	border-top: none;
	padding: 20px;
	padding: 1.25rem;
	position: relative;
	width: 170px;
}

.genesis-nav-menu li ul {
	left: -9999px;
	position: absolute;
	width: 212px;
	z-index: 99;
}

.genesis-nav-menu li ul ul {
	margin: -55px 0 0 211px;
}

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

.genesis-nav-menu li:hover,
.genesis-nav-menu li.sfHover {
	position: static;
}

ul.genesis-nav-menu li:hover>ul,
ul.genesis-nav-menu li.sfHover ul,
#header .genesis-nav-menu li:hover>ul,
#header .genesis-nav-menu li.sfHover ul {
	left: auto;
}

.genesis-nav-menu li a .sf-sub-indicator,
.genesis-nav-menu li li a .sf-sub-indicator,
.genesis-nav-menu li li li a .sf-sub-indicator {
	position: absolute;
	text-indent: -9999px;
}

#wpadminbar li:hover ul ul {
	left: 0;
}

/* 05a - Primary Navigation Extras ----------- */

.genesis-nav-menu li.right {
	float: right;
	padding: 24px 20px;
	padding: 1.5rem 1.25rem;
}

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

.genesis-nav-menu li.search {
	padding: 6px 0 0;
	padding: 0.375rem 0 0;
}

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

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


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

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

.author-box h1 {
	margin: 0
}

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

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


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

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

.entry-content ol li,
.entry-content ul li {
	line-height: 1.625;
}

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

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

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

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


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

.navigation li {
	display: inline;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
	background-color: #1e1e1e;
	border-radius: 3px;
	cursor: pointer;
	padding: 12px;
	padding: 0.75rem;
}

.navigation li a:hover,
.navigation li.active a {
	background-color: #ff2a00;
}


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

#comments,
#respond {
	line-height: 1.5;
	overflow: hidden;
}

.ping-list,
#comments {
	margin-bottom: 48px;
	margin-bottom: 3rem;
}

#author,
#email,
#url {
	width: 50%;
}

.commentmetadata,
#author,
#email,
#url {
	margin-bottom: 12px;
	margin-bottom: 0.75rem;
}

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

label {
	margin-left: 12px;
	margin-left: 0.75rem;
}

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

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

.comment-header {
	overflow: hidden;
}

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

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

.bypostauthor {
}

#comments .navigation {
	margin-top: 32px;
	margin-top: 2rem;
}


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

.sidebar {
	display: inline;
	line-height: 1.5;
}

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

.sidebar .widget {
	border-bottom: 1px solid #ccc;
	margin-bottom: 32px;
	margin-bottom: 2rem;
	padding-bottom: 32px;
	padding-bottom: 2rem;
	overflow: hidden;
}

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


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

#footer {
	clear: both;
}

#footer .wrap {
	border-top: 2px solid #1e1e1e;
	overflow: hidden;
	padding: 48px 0;
	padding: 3rem 0;
}

#footer .creds {
	text-align: right;
}

#footer .creds,
#footer .gototop {
	margin: 8px 0;
	margin: 0.5rem 0;
}

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

.footer-widgets {
	border-top: 2px solid #1e1e1e;
	clear: both;
	line-height: 1.5;
	overflow: hidden;
	padding: 32px 0 16px;
	padding: 2rem 0 1rem;
}

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

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

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

.footer-widgets-1 {
	margin-right: 4.166666666%; /* 48px / 1152px */
}


/*
12 Forms & Buttons
---------------------------------------------------------------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 3px;
	box-shadow: 0 0 5px #ddd inset;
	padding: 16px;
	padding: 1rem;
	width: 100%;
}

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

button,
input[type="button"],
input[type="submit"],
.btn {
	background-color: #1e1e1e;
	border: none;
	box-shadow: none;
	cursor: pointer;
	padding: 16px 24px;
	padding: 1rem 1.5rem;
	width: auto;
}

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

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

/* 12a - Gravity Forms ----------- */

#content div.gform_wrapper input,
#content div.gform_wrapper select,
#content div.gform_wrapper textarea,
#content div.gform_wrapper .ginput_complex label {
	font-size: 16px;
	font-size: 1rem;
	padding: 16px;
	padding: 1rem;
}

#content div.gform_wrapper input[type="submit"] {
	padding: 16px 24px;
	padding: 1rem 1.5rem;
}

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

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

/*
13 Images & Captions
---------------------------------------------------------------------------------------------------- */

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

img {
	height: auto;
}

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

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

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

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

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

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

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

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

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

.gallery-caption {
}


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

/*
Custom CSS
---------------------------------------------------------------------------------------------------- */ 

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title a,
#title {
	font-family: 'PT Sans', sans-serif;
	font-weight: normal;
	color: #202020;
}

html {
	font-size: 14px;
}
body {
	color: #3c260e;
}
body, input, textarea, .author-box h1 {
	font-family: 'PT Sans', sans-serif;
}
body, .sidebar {
	line-height: 18px;	
}

#wrap {
	width: auto;
	max-width: none;
	min-width: 1210px;
	padding: 25px 0 0;
	background: #fff url(images/header-bg2.jpg) repeat-x center top;
}
.home #wrap {
	background: #fff url(images/header-bg.jpg) repeat-x center top;	
}

#header {
	position: relative;
	margin: 0 auto;
	width: 1208px;
	min-height: 0;
	padding: 0 0 10px;
	border: none;
}
#header #title {
	margin: 0;
}
#header #title a {
	display: inline-block;
	width: 501px;
	height: 61px;
	overflow: hidden;
	text-indent: -9999px;
}
#header .header-widget-area {
	position: absolute;
	right: 0;
	top: 5px;
	width: auto;
}
#header .header-widget-area .widget {
	float: left;
	width: auto;
}
#header .header-widget-area a {
	display: inline-block;
	height: 33px;
	width: 124px;
	margin: 0 9px 0 0;
	background: transparent url(images/header-buttons.png) no-repeat;
	text-indent: -9999px;
	overflow: hidden;
}
#header .header-widget-area a.membership {
	width: 156px;
	background-position: -136px 0;
}
#header .header-widget-area form {
	margin: 0;
}
#header .header-widget-area input[type="text"] {
	width: 145px;
	height: 27px;
	margin: 3px 0;
	padding: 0 3px;
	border-radius: 3px;
	border: none;
	box-shadow: none;
	vertical-align: middle;
	background: #63513e;
	color: #fff;
}
#header .header-widget-area input[type="submit"] {
	position: static;
	float: left;
	width: 33px;
	margin: 3px 6px 3px 8px;
	padding: 0;
	height: 27px;
	overflow: hidden;
	text-indent: -9999px;
	border: none;
	border-radius: 0;
	box-shadow: none;
	background: transparent url(images/search.png) no-repeat;
}

/* http://www.knucklemuscle.com/WP/center-menu-in-genesis-theme/ */
#nav {
	position: relative;
	z-index: 200;
	border-top: 1px solid #55422e;
	border-bottom: 1px solid #55422e;
	text-align: center;
}
#nav .wrap {
	width: 1208px;
	margin: 0 auto 3px;
	display: table;
	white-space: nowrap;
}
#nav ul.menu {
	list-style:none;
	display:table-row;
	white-space:nowrap;
}
#nav ul.menu > li {
	display: table-cell;
	padding: 14px 0;
	margin: 0 0 0 45px;	/* 43px ie8 */
}
#nav ul.menu > li.current-menu-item {
	border-bottom: 2px solid #bfb492;	
}
#nav ul.menu > li:first-child {
	margin: 0;
}
#nav ul a {
	display: block;
	padding: 0 3px;
	font-family: 'PT Sans', sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	color: #ededed;
}
#nav ul.sub-menu {
	width: 185px;
	margin: 10px 0 0;
	text-align:left;
	white-space: normal;
	background: transparent url(images/blank.png);
}
#nav ul.sub-menu li {
	display: block;
	float: none;
	line-height: 28px;
	padding: 0;
}
#nav ul.sub-menu a {
	width: auto;
	padding: 0 15px;
	border: none;
	font-style: italic;
	background: transparent url(images/submenu-bg.png);
	color: #3c260e;
}
#nav ul.sub-menu a:hover {
	background: transparent url(images/submenu-hi-bg.png);
}

#inner {
	padding: 20px 0 0;
}
body #content-sidebar-wrap {
	float: none !important;
	width: 1208px !important;
	margin: 0 auto !important;
}

#home_slider {
	position: relative;
}
#home_slider img {
	margin: 0;
}
#home_slider .cycle-nav span.prev,
#home_slider .cycle-nav span.next {
  position: absolute;
  display: inline-block;
  height: 100%;
  top: 120px;
  z-index: 200;
}
#home_slider .cycle-nav span.prev {
  left: 35px;
}
#home_slider .cycle-nav span.next {
  right: 35px;
}
#home_slider .cycle-nav a {
  display: inline-block;
  height: 82px;
  width: 84px;
  background: transparent url(images/slider-buttons.png) no-repeat;
}
#home_slider .cycle-nav a.next {
  background-position: -90px center;
}
#home_slider .cycle-slideshow > span {	/* ie8 needs this */
	width: 100%;
}

#content-sidebar-wrap .home-1,
#content-sidebar-wrap .home-2 {
	clear: both;
}
#content-sidebar-wrap .home-1 .widget {
	float: left;
	margin: 0 0 0 10px;
	font-size: 13px;
}
#content-sidebar-wrap .home-1 .widget:first-child {
	width: 450px;
	margin: 0;
	font-size: 14px;
}
#content-sidebar-wrap .home-1 .widget:first-child + .widget {
	width: 150px;
}
#content-sidebar-wrap .home-1 .widget:first-child + .widget + .widget + .widget {
	float: right;
}
#content-sidebar-wrap .home-1 .widget h4,
#content-sidebar-wrap .home-2 .widget h4 {
	margin: 0 0 5px;
	padding: 10px 0 0;
	font-size: 17px;
	font-weight: bold;
	color: #3c260e;
}
img.alignleft {
	margin: 0 21px 17px 0;
}
#content-sidebar-wrap .home-2 {
	border-top: 2px solid #3c260e;
}
#content-sidebar-wrap .home-2 .widget {
	float: left;
	padding: 6px 0 30px;
}
#content-sidebar-wrap .home-2 .widget:first-child {
	width: 398px;
	margin: 0 43px 0 0;
}
#content-sidebar-wrap .home-2 .widget:first-child p {
	clear: both;
	font-size: 13px;
}
#content-sidebar-wrap .home-2 .widget:first-child img.alignleft {
	margin: 0 8px 15px 0;
}
#content-sidebar-wrap .home-2 .widget:first-child p + p img.alignleft {
	margin-bottom: 0;
}
#content-sidebar-wrap .home-2 .widget:first-child + .widget {
	width: 636px;	/* IE8 needs this :( */
}
#content-sidebar-wrap .home-2 .widget:first-child + .widget img.alignleft {
	max-width: 111px;
	margin: 0 48px 0 0;
}
#content-sidebar-wrap a.social,
#content-sidebar-wrap a.social:visited {
	display: inline-block;
	height: 28px;
	margin: 3px 0 3px 28px;
	padding: 0 0 0 38px;
	background: url(images/social-media.png) no-repeat;
	font-size: 16px;
	text-decoration: none;
	line-height: 28px;
	color: #3c260e;
}
.home #content-sidebar-wrap a.social, .home #content-sidebar-wrap a.social:visited {
	margin-left: 10px;
}
#content-sidebar-wrap a.social.twitter {
	margin-top: 10px;
}
.home #content-sidebar-wrap a.social.twitter {
	margin-top: 0;
}
#content-sidebar-wrap a.social.facebook {
	background-position: 0 -34px;
}
#content-sidebar-wrap a.social.google {
	background-position: 0 -69px;
}
#content-sidebar-wrap a.social.yelp {
	background-position: 0 -103px;
}
#content-sidebar-wrap a.social.youtube {
	background-position: 0 -139px;
}
#content-sidebar-wrap a.social.trip-advisor {
	background-position: 0 -175px;
}
#content-sidebar-wrap a.social.rss {
	background-position: 0 -209px;
}
#content-sidebar-wrap .badge.widget {
	clear: both;
	padding: 30px 0;
	border-top: 2px solid #3c260e;
	line-height: 66px;
}
#content-sidebar-wrap .badge.widget .widget-wrap {
	text-align: justify;
}
#content-sidebar-wrap .badge.widget a {	/* badges */
	display: inline-block;
	width: 66px;
	height: 66px;
	background: url(images/badges.png) no-repeat;
	vertical-align: middle;
}
#content-sidebar-wrap .badge.widget a.yelp {
	width: 170px;
	height: 36px;
	background-position: -103px center;
}
#content-sidebar-wrap .badge.widget a.american-alliance {
	width: 65px;
	height: 65px;
	background-position: -320px center;
}
#content-sidebar-wrap .badge.widget a.blue-star {
	width: 139px;
	height: 57px;
	background-position: -422px center;
}
#content-sidebar-wrap .badge.widget a.trip-advisor {
	width: 53px;
	height: 53px;
	background-position: -604px center;
}
#content-sidebar-wrap .badge.widget a.road-scholar {
	width: 155px;
	height: 33px;
	background-position: -690px center;
}
#content-sidebar-wrap .badge.widget a.american-association {
	width: 65px;
	height: 65px;
	background-position: -879px center;
}
#content-sidebar-wrap .badge.widget a.smithsonian {
	width: 238px;
	height: 50px;
	background-position: -964px center;
}
#content-sidebar-wrap .badge.widget a.do-not-remove {
	background: transparent;
	width: 100%;
	height: 1px;
}

#footer,
#lower_footer {
	font-size: 13px;
	background: #3c260e;
	color: #fff;
}	
#footer {
	padding: 50px 0 40px;
	border-top: 2px solid #9e9387;
}
#footer .wrap {
	padding: 0;
	border: none;
}
#footer > .wrap {
	width: 1208px;
	margin: 0 auto;
}
#footer p {
	font-size: 12px;
	font-weight: normal;
}
#footer-widgets {
	padding: 0;
	border: none;
}
#footer-widgets div.footer-widgets-1 {
	width: 260px;
	margin: 0 65px 0 0;
}
#footer-widgets h4.widget-title,
#footer-widgets h4.widget-title a,
#footer-widgets h4.widget-title a:visited,
#footer-widgets .featuredpost h2 a,
#footer-widgets .featuredpost h2 a:visited,
#footer-widgets h2.recent_posts_with_excerpts a,
#footer-widgets h2.recent_posts_with_excerpts a:visited {
	color: #fff;	
	font-size: 17px;
}
#footer-widgets h4.widget-title {
	margin: 0 0 24px;
	font-weight: normal;
}
#footer-widgets .featuredpost .post.entry {
	margin: 0 0 30px;
}
#footer-widgets .recent_with_excerpt li {
	padding: 0 0 10px;
}
#footer-widgets .featuredpost h2,
#footer-widgets h2.recent_posts_with_excerpts {
	margin: 0;
}
#footer-widgets .featuredpost a > img,
#footer-widgets .recent_with_excerpt a > img {
	float: left;
	margin: 0 14px 0 0;
	max-width: none;
}
#footer-widgets .recent_with_excerpt blockquote {
	padding: 0;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
}
#footer-widgets .recent_with_excerpt blockquote::before {
	content: "";
	display: none;
}
#footer-widgets .recent_with_excerpt blockquote p {
	font-size: 12px;
	font-style: normal;
	color: #fff;
}
#footer-widgets .recent_with_excerpt p.alignright {
	display: none;
}
#footer-widgets div.footer-widgets-2 {
	width: 225px;
	margin: 0 20px 0 0;
}
#footer-widgets .footer-widgets-2 h4.widget-title {
	margin: 0 0 12px;
}
#footer-widgets .footer-widgets-2 p {
	margin: 0 0 7px;
	font-size: 16px;
	font-style: italic;
}
#footer-widgets .footer-widgets-2 p a,
#footer-widgets .footer-widgets-2 p a:visited {
	padding: 0 0 0 15px;
	text-decoration: none;
	background: url(images/quicklink-bg.png) no-repeat left center;
	color: #fff;
}
#footer-widgets div.footer-widgets-3 {
	float: left;
	width: 275px;
}
#footer-widgets .footer-widgets-3 p.testimonial {
	position: relative;
	padding: 12px 15px;
	background: #bfb492;
	border: 2px solid #6d5c4a;
	border-radius: 6px;
	font-size: 16px;
	font-style: italic;
	font-weight: bold;
	line-height: 18px;
}
#footer-widgets .footer-widgets-3 img.tail {
	position: absolute;
	bottom: -18px;
	right: 45px;
}
#footer-widgets .footer-widgets-3 p.name,
#footer-widgets .footer-widgets-3 p.title {
	text-align: center;
	line-height: 18px;
}
#footer-widgets .footer-widgets-3 p.name {
	margin: 23px 0 6px;
	font-size: 26px;
}
#footer-widgets div.footer-widgets-4 {
	float: right;
	width: 265px;
}
#footer-widgets div.gform_wrapper form li {
	margin: 5px 0 0;
}
#footer-widgets .gform_wrapper .top_label input.medium,
#footer-widgets .gform_wrapper .top_label textarea.textarea {
	width: 100%;
	padding: 5px 8px;
	font-size: 14px;
	font-style: italic;
}
#footer-widgets .gform_wrapper .top_label textarea.textarea {
	height: 65px;
	overflow: auto;	/* IE needs this :( */
}
#footer-widgets .gform_wrapper .gform_footer {
	margin: 0px;
	padding: 10px 0;
	text-align: right;
}
#footer-widgets input[type="submit"] {
	background: #bfb492;
	width: 60px;
	height: 30px;
	padding: 0;
	font-size: 14px;
	font-weight: normal;
	line-height: 30px;
}
#lower_footer {
	padding: 20px 0 30px;
	border-top: 1px solid #9e9387;
}
#lower_footer > .wrap {
	width: 1208px;
	margin: 0 auto;
}
#lower_footer #gwfoot-footer-one-area,
#lower_footer #gwfoot-footer-two-area {
	width: 48%;
	margin: 0;
	padding: 0;
}
#lower_footer #gwfoot-footer-one-area {
	float: left;
}
body #lower_footer #gwfoot-footer-two-area {
	float: right;
	text-align: right;
}
#lower_footer #gwfoot-footer-two-area a,
#lower_footer #gwfoot-footer-two-area a:visited {
	text-decoration: none;
	color: #fff;
}

.content-sidebar #content,
.content-sidebar #sidebar {
	margin-bottom: 20px;
}
#content h1, #content h2, #content h3, #content h4, #content h5 {
	margin: 0 0 10px;
}
#content h1 {
	font-size: 40px;
	color: #3c260e;	
}
#content h1.entry-title {
	margin: 0 0 20px;
	font-weight: bold;
}
#content h2 {
	font-size: 36px;
}
#content h3 {
	font-size: 24px;
}
#content h4 {
	font-size: 18px;
}
#content h5 {
	font-size: 16px;
}

#content-sidebar-wrap .entry-content {
	margin: 0 0 0 21px;
}
.home #content-sidebar-wrap .entry-content {
	margin: 0 auto;
}
#content-sidebar-wrap .entry-content p {
	margin: 0 0 21px 15px;
	line-height: 18px;
}

.content-sidebar #content {
	width: 800px;
	padding: 0 85px 0 0;
	border-right: 1px solid #e5e5e5;
}
#sidebar {
	position: relative;
	left: -1px;
	width: 296px;
	padding: 0 0 0 25px;
	border-left: 1px solid #e5e5e5;
}
#sidebar > .widget {
	margin: 0;
	padding: 0;
	border: none;
	font-size: 13px;
}
#sidebar > .widget:first-child {
	font-size: 14px;
}
#sidebar > .widget h4 {
	margin: 0 0 5px;
	padding: 0;
	font-size: 17px;
	font-weight: bold;
	color: #3c260e;
}
#sidebar > .widget p {
	margin: 0 40px 10px 5px;
}
#sidebar > .widget:first-child img.alignleft {
	display: none;
}
#sidebar > .widget:first-child + .widget + .widget + .widget + .widget {
	margin: 7px 0 0;
	padding: 22px 0 0;
	border-top: 1px solid #e5e5e5;
}

/*
Custom CSS - button hover - membership call to action button - added 5/11/2016
---------------------------------------------------------------------------------------------------- */ 

.button {
  background: #ff5100;
  background-image: -webkit-linear-gradient(top, #ff5100, #242119);
  background-image: -moz-linear-gradient(top, #ff5100, #242119);
  background-image: -ms-linear-gradient(top, #ff5100, #242119);
  background-image: -o-linear-gradient(top, #ff5100, #242119);
  background-image: linear-gradient(to bottom, #ff5100, #242119);
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  text-shadow: 2px 2px 9px #1f0505;
  font-family: Arial;
  color: #ffffff;
  font-size: 20px;
  padding: 25px 40px 25px 40px;
  text-decoration: none;
}


.button:hover {
  background: #faea3c;
  background-image: -webkit-linear-gradient(top, #faea3c, #f08008);
  background-image: -moz-linear-gradient(top, #faea3c, #f08008);
  background-image: -ms-linear-gradient(top, #faea3c, #f08008);
  background-image: -o-linear-gradient(top, #faea3c, #f08008);
  background-image: linear-gradient(to bottom, #faea3c, #f08008);
  text-decoration: none;
}

