/*
	Theme Name: Gene Doucette Child Theme
	Theme URL: http://www.authorbytes.com
	Author: Peter Martin
	Author URI: http://www.authorbytes.com
	Version: 1.0
	
	Template: genesis

	The CSS, XHTML and design is released under GPL:
	http://www.opensource.org/licenses/gpl-license.php
*/


/* Table of Contents

	- HTML5 Reset
		- Baseline Normalize
		- Box Sizing
		- Float Clearing
	- Defaults
		- Typographical Elements
		- Headings
		- Objects
		- Forms
		- Tables
	- Structure and Layout
		- Site Containers
		- Column Widths and Positions
		- Column Classes
	- Common Classes
		- WordPress
		- Genesis
		- Titles
	- Widgets
		- Featured Content
	- Plugins
		- Genesis eNews Extended
		- Genesis Latest Tweets
		- Gravity Forms
		- Jetpack
	- Site Header
		- Title Area
		- Widget Area
	- Site Navigation
		- Header Navigation
		- Primary Navigation
		- Secondary Navigation
	- Content Area
		- Entries
		- Pagination
		- Comments
	- Sidebars
	- Footer Widgets
	- Site Footer
	- Media Queries
		- max-width: 1139px
		- max-width: 1023px
		- max-width: 767px

*/

/*
Imports
---------------------------------------------------------------------------------------------------- */

@font-face {
	font-family: 'Icon';
	src:url('fonts/Icon.eot');
	src:url('fonts/Icon.eot?#iefix') format('embedded-opentype'),
		url('fonts/Icon.woff') format('woff'),
		url('fonts/Icon.ttf') format('truetype'),
		url('fonts/Icon.svg#Icon') format('svg');
	font-weight: normal;
	font-style: normal;
}



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

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

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

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

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

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

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

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


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

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

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

body {
	color: #20201b;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.625;
	height:100%;
	position:relative;
	background: #e4eef8;
	

}

body.home {
	background:#46525a;
}

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

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

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

a {
	color: #058581;
}

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

a:hover {
	color: #058581;
}

a:active {
	color: #058581;
}

#fancybox-title-over a {
	color: #fff;
} 

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

strong {
	font-weight: 700;
}

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

blockquote,
blockquote::before {
	color: #058581;
}

blockquote {
	margin: 20px 40px 24px;
	margin: 2rem 4rem 2.4rem;
}

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

.entry-content code {
	background-color: #333;
	color: #ddd;
}

cite {
	font-style: normal;
}

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

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

h1 {
	font-size: 25px;
	font-size: 2.5rem;
	width:100%;
  	font-weight:700;
	padding: 0px 0px 0px 0px;
	padding: 0rem 0rem 0rem 0rem;
	margin:0px !important;
	float:left;
	color:#058581;
	font-family: 'Roboto Condensed', sans-serif;
}

h2 {
	font-size: 22px;
	font-size: 2.2rem;
	font-weight:400;
}

h2 a {
	font-size: 22px;
	font-size: 2.2rem;
	color:#058581;
	font-weight:400;
	
}

h2.entry-title a {
	font-size: 24px;
	font-size: 2.4rem;
	color:#058581;
	font-weight:700;
	
}

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

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

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

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

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

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

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

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

input,
select,
textarea {
	background-color: #fff;
	border-radius: 0px !important;
	color: #999;
	font-size: 16px;
	font-size: 1.6rem;
	padding: 5px;
	padding: 0.5rem;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

::-moz-placeholder {
	color: #999;
	opacity: 1;
}

::-webkit-input-placeholder {
	color: #999;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.entry-content .button {
	background-color: #058581;
	border: none;
	color: #fff;
	cursor: pointer;
	padding: 5px 10px;
	padding: 0.5rem 1rem;
	text-transform: uppercase;
	width: auto;
	border-radius:none;
}

button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover,
.entry-content .button:hover {
	background-color: #362989;
}

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

.button {
	border-radius: 3px;
	display: inline-block;
}

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

/* Tables
--------------------------------------------- */

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

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

th,
td {
	text-align: left;
}

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

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


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

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

.site-container {
	width: 100%;
	float:left;
	position:relative;
	
	
	}
	
.home-site-container {
	width: 100%;
	float:left;
	position:relative;
	
	
	}

.site-inner,
.wrap {
	
	margin: 0 auto;
	min-height:100%;
	
}

.site-inner {
	width:1100px;
	margin:0px auto;
	position:relative;
	background:#c1cdd8;
}

.home-site-container .site-inner {
	width:100%;
	margin:0px auto;
	position:relative;
	
}

.site-inner-full {
	clear: both;
	padding: 40px 0 0 0;
	padding: 4rem 0 0 0;
	width:1100px;
	margin:0px auto;
	}
	
hr {
	clear:both;
	color:#d9d9ec;
	border:1px solid;
}

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

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

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

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

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

/* Content */

.content {
	width: 75%;
	min-height:850px;
	float:left;
	position:relative;
	margin: 0px 0px 0px 0px;
	padding:50px 0px 60px 50px;
	position:relative;
	z-index:95;
	background:#e4eef8;
}


body.blog .content, body.single .content {
	width: 72%;
	min-height:850px;
	float:left;
	position:relative;
	padding:60px 60px 25px 40px;
	position:relative;
	z-index:95;
	border-left: 0px;
	/*-moz-box-shadow: inset 3px 3px 6px #666;
	-webkit-box-shadow: inset 3px 3px 6px #666;
	box-shadow: inset 3px 3px 6px #666;*/
}


.content-home {
	float: left;
	margin: 0px 0px 0px 0px;
	width: 100%;
	
	
}

.content-full {
	float: left;
	margin: 0px 0px 0px 0px;
	width: 100%;
	min-height:450px;
	background-color:#fff;
	padding-top:40px;
	
}

.content-article-container {
	float: left;
	margin-right:0;
	margin-bottom:25px;
	width: 65%;
	min-height:400px;
	
}

.content-blog {
	float: left;
	margin: 0px 0px 0px 0px;
	width: 65%;
	color:#fff;
	
}

.content .entry {
	padding-bottom:10px !important;
	padding-bottom:1.0px !important;
	margin-bottom:10px;
	margin-bottom:1.0rem;
	padding-right:30px;
	width:100%;
  	float:right;
	
}

.content-blog .entry, .content-article .entry {
	padding-bottom:10px !important;
	padding-bottom:1.0px !important;
	margin-bottom:10px;
	margin-bottom:1.0rem;
	border-bottom: 1px solid #ccc;
	width:100%;
  	float:right;
	
}

.sidebar-blog {
	color: #000;
	width:28%;
	position:absolute;
	right:0px;
	padding:30px 2% 20px 2%;
	font-size:14px;
	font-size:1.4rem;
	font-family: 'Roboto', sans-serif;
	min-height:100%;
	background:#c1cdd8;
}


.sidebar-blog a {
	color: #000;
	}
	
.sidebar-blog h4 {
	padding:0px 0 0px 3px; !important;
	margin-top:10px !important;
	text-transform:capitalize !important;
	background: #058581;
	font-size:15px;
	color:#fff;
	font-weight:normal;
	clear:both;
	}
	
.sidebar-blog h2 {
	margin-bottom:10px;
	line-height:15px;
}
	
.sidebar-blog h2 a {
	font-size:15px;
	
}

.sidebar-blog .entry {
	padding-bottom:0px;
}

.sidebar-blog ul {
	padding: 0 0 0 18px;
	font-size:15px;
	color: #000;
}

.sidebar-blog .widget {
	padding: 0 0 2px 0;
}

.sidebar-blog #book_widget {
	margin-bottom:0px;
}



.content-sidebar .content,
.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content {
	
}

.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content,
.sidebar-sidebar-content .content {
	width: 520px;
}

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

/* Primary Sidebar */

.sidebar-primary {
	display: inline;
	font-size: 14px;
	font-size: 1.4rem;
	height:100%;
	padding-top: 10px;
	padding-top: 1rem;
}

.sidebar-content .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary {
	
}

/* Secondary Sidebar */

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

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

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

.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 2.564102564102564%;
}

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

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

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

.one-fourth {
	width: 23.076923076923077%;
}

.three-fourths {
	width: 74.35897435897436%;
}

.one-sixth {
	width: 14.52991452991453%;
}

.five-sixths {
	width: 82.90598290598291%;
}

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


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

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

.avatar {
	float: left;
}

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

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

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

.sticky {
}

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

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

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

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

img.alignleft,
.wp-caption.alignleft {
	margin: 0 10px 10px 0;
	margin: 0 1rem 1rem 0;
}

img.alignright,
.wp-caption.alignright {
	margin: 0 0 10px 10px;
	margin: 0 0 1rem 1rem;
}

.wp-caption-text {
	font-size: 14px;
	font-size: 1.4rem;
	text-align: center;
}

.gallery-caption {
}

.widget_calendar table {
	width: 100%;
}

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

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

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

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

.archive-description {
	/*padding: 40px 40px 24px;
	padding: 4rem 4rem 2.4rem;*/
	border-bottom: 1px solid #ccc;
}

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

.author-box-title {
	color: #333;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 4px;
	margin-bottom: 0.4rem;
}

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

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

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

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

.entry-title {
	font-size: 22px;
	font-size: 2.2rem;
	line-height: 1;
	margin-bottom:20px !important;
	float:left;
	width:100%;
	text-transform:uppercase;

	
}

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

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

.widget-title, .sidebar h4 {
font-size: 17px;
font-size: 1.7rem;
margin-bottom: 10px;
margin-bottom: 1rem;
color: #058581;
}

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

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

.content-sidebar-wrap {
	
}

.home-site-container .content-sidebar-wrap {
	width:100%;
	margin:0px auto;
}


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

.sidebar {
	display: inline;
	font-size: 14px;
	font-size: 1.4rem;
	height:100%;
	padding-top: 10px;
	padding-top: 1rem;
	color:#fff;
	
}

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

.sidebar li {
	list-style-type: none;
	margin-bottom: 8px;
	margin-bottom: 0.8rem;
	padding-bottom: 8px;
	padding-bottom: 0.8rem;
	word-wrap: break-word;
}

.widget ul > li:last-child {
	border-width: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.sidebar .widget, .sidebar-blog .widget  {
	
}

.sidebar .search-form {
	width: 100%;
}

.sidebar .Social_Widget {
	float:left;
	padding-left:30px !important;
}

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

.featured-content .entry {
	padding: 0 0 24px;
	padding: 0 0 2.4rem;
}

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

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


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

/* Genesis eNews Extended
--------------------------------------------- */

.enews-widget {
	color: #999;
}

.enews-widget .widget-title {
	color: #fff;
}

.enews-widget input {
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
}

.enews-widget input:focus {
	border: 1px solid #ddd;
}

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

.enews-widget input:hover[type="submit"] {
	background-color: #fff;
	color: #333;
}

/* Genesis Latest Tweets
--------------------------------------------- */

.latest-tweets ul li {
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
}

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

div.gform_wrapper input[type="email"],
div.gform_wrapper input[type="text"],
div.gform_wrapper textarea,
div.gform_wrapper .ginput_complex label {
	font-size: 14px;
	font-size: 1.4rem;
	color:#000;
	/*padding: 16px;
	padding: 1.6rem;*/
}

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

div.gform_wrapper li,
div.gform_wrapper form li {
	margin: 10px 0 0;
	margin: 1.0rem 0 0;
}

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

/* Jetpack
--------------------------------------------- */

img#wpstats {
	display: none;
}


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

.site-header {
	width:100%;
	margin:0px auto;
	position:relative;
	z-index:95;
	background: url(images/doucette-heading-back.jpg) no-repeat center top #050202;

}

.home-site-container .site-header {
	width:100%;
	margin:0px auto;
	position:relative;
	z-index:95; 
	background: url(images/doucette-heading-back.jpg) no-repeat center top #050202;
}

.site-header .wrap {
	padding: 10px 0 0 0;
	padding: 1rem 0 0 0;
	width:1100px;
	min-height:180px;
	margin: 0px auto;
	position:relative;
	background: url(images/doucette-heading-portrait.png) no-repeat right bottom;
	
	
}



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

.title-area {
	float: left;
	font-family: 'Roboto', sans-serif;
	color:#b6b7ba;
	font-weight: 400;
	padding: 16px 0 16px 0;
	padding: 1.6rem 0 1.6rem 0;
	
}

.header-image .title-area {
	padding: 0;
	margin:80px 0% 30px 2%;
	background: url(images/heading.png) no-repeat left top;
	width: 60% !important;
	float:left;
	min-height:65px;
	background-size:contain;

}

.header-image .site-header .widget-area {
	width: 60%;
	position:absolute;
	right:10px;
	bottom:10px;
	z-index: 99;
	color:#fff;
}

.header-image .site-header .widget-area h4 {
	color:#fff;
	font-weight:400;
}

.header-image .site-header .widget-area a,
.header-image .site-header .widget-area a:hover {
	color: #fff;
	text-decoration:none;
}

.site-title {
	font-size: 60px;
	font-size: 6rem;
	line-height: 0.75;
	margin: 0px;
	margin: 0rem;
	padding-right:0;
	padding-right:0;
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	color:#b6b7ba;
	font-weight: 300 !important;
	width: 100% !important;
	float:left;
	
}

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

.site-description {
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1.25;
	margin-bottom: 0;
	font-family: 'Roboto Condensed', sans-serif;
	float:left;
	margin-left: -9999px;
}

/* Full width header, no widgets */

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

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

/* Logo, hide text */

.header-image .site-header .wrap {
	padding: 0;
	
}

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


/*
header widget form
_____________________________________*/


.header-image .site-header .widget-area .gform_widget {
	position:relative;
	float:right;
	width: 100%;
	margin-bottom:10px;
	margin-top:2px;
}

.header-image .site-header .widget-area .gform_widget h4 {
	font-size:13px;
	color:#fff;
	line-height:1;
	font-weight:300;
	display:inline;
	float:left;
	text-align:right;
	width:100%;
	padding:10px 10px 0px 0px;
}

.header-image .site-header .widget-area .gform_widget .gform_wrapper h3.gform_title {
	padding: 0 0 0px 0;
	margin: 0 0 0px 0 !important;
	color:#333;
	font-size:16px;
	font-size: 1.6rem;
	line-height:1.45;
	font-weight:300;
	font-family: 'Lato', sans-serif;
}

.header-image .site-header .widget-area .gform_widget .gform_wrapper {
	float:right;
	display:inline;
	width:65%;
	margin:0px 0px;
}

.header-image .site-header .widget-area .gform_widget .gform_wrapper .top_label .gfield_label {
	display:none;
}

.header-image .site-header .widget-area .gform_widget .gform_wrapper .gform_body {
	width:100%;
	float:right;
}

.header-image .site-header .widget-area .gform_wrapper ul.gform_fields {
	width:100%;
}

.header-image .site-header .widget-area .gform_widget .gform_wrapper .gform_body li {
	margin:0px !important;
}

.header-image .site-header .widget-area .gform_widget .gform_wrapper .top_label input.medium {
	width:100%;
	border-radius:0px;
	background-color:#fff;
}

.header-image .site-header .widget-area .gform_widget .gform_wrapper .ginput_container {
	width:100%;
	display:inline;
	float:left;
	margin:0px;
}

.header-image .site-header .widget-area .gform_wrapper .gform_footer.left_label, .header-image .site-header .widget-area .gform_wrapper .gform_footer.right_label {
	
}

.header-image .site-header .widget-area .gform_widget .gform_wrapper .gform_footer {
	width:auto;
	display:inline;
	float:right;
	margin:10px 0px 0px 0px !important;
	padding:0px;
	clear:none;
}

.header-image .site-header .widget-area .gform_widget .gform_wrapper .gform_footer {
	padding:0px !important;
}


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

.widget-area {
	word-wrap: break-word;
}

.site-header .widget-area {
	float: right;
	text-align: right;
	width: 40%;
	margin:0 0px 0px 0;
}

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

	
}

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

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




.site-header .Social_Widget {
	display:inline;
	float:right;
}




.site-header .heading-button {
	margin-top: 5px;
	margin-bottom:5px;
	margin-left:15px;
   text-decoration: none;
   cursor: default;
  border: none;
  float:right;
  padding: 2px 10px;
  padding: 0.2rem 1rem;
  text-transform: uppercase;
  box-shadow: none;
  font-size:13px;
  border-radius:3px;
  border-width: 0px;
  background: #f3eee7;
  color:#3366cc;
  float:right;
  display:inline;
}

.site-header a.heading-button {
	color:#3366cc !important;
}


.site-header a.heading-button:hover {
	color:#fff !important;
	background-color:#000;
}


/* Responsive Menu
--------------------------------------------- */

#responsive-menu-icon {
	cursor: pointer;
	display: none;
	margin-bottom: 15px;
	margin-bottom: 1.5rem;
}

#responsive-menu-icon::before {
	-webkit-font-smoothing: antialiased;
	color: #fff;
	content: "\e00e";
	font-family: 'Icon';
	font-size: 25px;
	font-size: 2.5rem;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	line-height: 1;
	margin: 0 auto;
	speak: none;
	text-transform: none;
}



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

.genesis-nav-menu {
	width:100%;
	margin:0px auto;
	padding-left:25px;
	text-align:left;
}

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

.genesis-nav-menu a {
	border: none;
	display: block;
	padding: 7px 25px;
	padding: 0.7rem 2.5rem;
	position: relative;
	font-size:16px;
	font-size:1.6rem;
	font-weight:400 !important;
	color:#fff;
	text-decoration:none;
	text-transform:uppercase;
	font-family: 'Roboto', sans-serif;
	line-height:1.65;
}

.genesis-nav-menu .contact a {
	border-right:none;
}

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

.genesis-nav-menu .sub-menu .current-menu-item > a {
	color: #006ea5  !important;
}

.genesis-nav-menu > .menu-item > a {
	
}

.genesis-nav-menu .sub-menu {
	left: -9999px;
	opacity: 0;
	position: absolute;
	-webkit-transition: opacity .4s ease-in-out;
	-moz-transition:    opacity .4s ease-in-out;
	-ms-transition:     opacity .4s ease-in-out;
	-o-transition:      opacity .4s ease-in-out;
	transition:         opacity .4s ease-in-out;
	width: 200px;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: #058581;
	border: 1px solid #eee;
	border-top: none;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 5px 10px;
	padding: 0.5rem 1rem;
	position: relative;
	width: 200px;
}

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

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

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

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

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

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

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

.genesis-nav-menu > .rss > a {
	margin-left: 48px;
	margin-left: 4.8rem;
}

.genesis-nav-menu > .search {
	padding: 14px 0 0;
	padding: 1.4rem 0 0;
}

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

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

.site-header .sub-menu .sub-menu {
	margin-top: -55px;
}

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

.nav-primary {
	width:100%;
	margin:0px auto 0px auto;
	clear:both;
	z-index: 99;
    position:relative;
	background: #46525a;
	-moz-box-shadow: 0px 3px 30px #333;
	-webkit-box-shadow: 0px 3px 30px #333;
	box-shadow: 0px 3px 30px #333;
    
   
}

.nav-primary a:hover,
.nav-primary .current-menu-item > a {
	color: #058581;
}

.nav-primary .sub-menu a:hover {
	color: #333;
}

.nav-primary .wrap {
	width:1100px;
	margin:0px auto;
	
}

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

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






.mailing-list {
	margin-top: 5px;
	margin-bottom:5px;
	margin-left:15px;
   text-decoration: none;
   cursor: default;
  border: none;
  float:right;
  padding: 2px 10px;
  padding: 0.2rem 1rem;
  text-transform: uppercase;
  box-shadow: none;
  font-size:13px;
  border-radius:3px;
  border-width: 0px;
  background: #6e8893;
  color:#fff;
  float:right;
  display:inline;
}

.mailing-list a {
	padding:0px;
}

a.mailing-list {
	color:#3366cc !important;
}


a.mailing-list:hover {
	color:#fff !important;
	background-color:#000;
}








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

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

.entry {
	border-radius: 3px;
	margin-bottom: 0px;
	margin-bottom: 0rem;
	padding: 0px 0px 24px;
	padding: 0rem 0rem 2.4rem;
	clear:both;
}

.entry-content a {
	color: #058581;
	text-decoration:underline !important;
}

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

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

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

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

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

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

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

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

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

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

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

.entry-footer .entry-meta {
	margin: 0 -40px;
	margin: 0 -4rem;
	padding: 10px 40px 8px;
	padding: 1rem 4rem 0.8rem;
}

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

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

.post-teaser-block {
	border-bottom:1px solid #333;
}

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

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

.archive-pagination li {
	display: inline;
}

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

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

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

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

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

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

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

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

.comment-content {
	clear: both;
}

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

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

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

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

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

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

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

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

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

.bypostauthor {
}

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


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

.sidebar {
	color: #000;
	width:25%;
	float:right;
	display: inline-block;
	position:relative;
	right:0px;
	padding:25px 3% 0px 3%;
	font-size:14px;
	font-size:1.4rem;
	font-family: 'Roboto', sans-serif;
	background:#c1cdd8;

}


.sidebar a {
	
}

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

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

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

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

.sidebar .enews-widget {
	background-color: #333;
}

.sidebar .gform_widget {
	margin:0% 2% 0px 11% !important;
	float:left;
	width:90%;
}

.sidebar .gform_wrapper .top_label .gfield_label {
	margin:0px !important;
}

.sidebar .widget_pbtw_wrapper {
	margin-left: 0%;
}

.sidebar .widget_pbtw_wrapper h4  {
	font-size:20px;
}

.sidebar .widget_pbtw_wrapper ul li  {
	font-size:16px;
	font-weight:bold;
	margin-bottom:30px;
	float:left;
	width:100%;
}

.sidebar .widget_pbtw_wrapper ul li ul {
	margin-top:10px;
}

.sidebar .widget_pbtw_wrapper ul li ul li  {
	font-size:14px;
	font-weight:normal;
	margin-bottom:10px;
	margin-left:10px;
}



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

.footer-widgets {
	background:url(images/footer-background.jpg) repeat-x top #881518;
	color: #fdd65e;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 0;
	clear:both;
}

.footer-widgets-1,
.footer-widgets-3 {
	width: 100%;
}

.footer-widgets-2 {
	width: 180px;
	margin-top:10px;
}

.footer-widgets-1 {
	
}

.footer-widgets-1,
.footer-widgets-2 {
	float: left;
}

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

.footer-widgets a {
	color: #999;
}

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

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

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

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

.footer-widgets .search-form input:focus {
	border: 1px solid #ddd;
}



.footer-widgets h4 { 
	float:left;
	color: #058581 !important;
	font-weight: normal;
	text-transform: none !important;
	font-style:italic;
	font-family: 'Roboto Condensed', sans-serif;
	font-size:25px;
	margin:0px 10px 0px 100px;
	padding:0px;
	
}

.footer-widgets .gform_heading {
	float:left;
	width:190px !important;
	display:inline;
	margin-right:10px;
}

.footer-widgets .gform_body {
	float:left;
	display:inline;
	width:250px !important;
	margin-top:0px !important;
	padding-top:0px;
}

.footer-widgets .gform_description {
	font-size:17px;
	padding-top:5px !important;
	float:left;
}

.footer-widgets .gform_footer {
	float:right;
	display:inline;
	width:95px !important;
	clear:none !important;
	margin:0px !important;
}

.footer-widgets .gform_wrapper .gform_footer.left_label {
	padding: 7px 0px 0px 0px !important;
}

.footer-widgets .gfield_label {
	width:45px !important;
	margin-right:5px !important;
	
}

.footer-widgets .gfield_required {
	color:#fff !important;
	
}


.footer-widgets .ginput_container .medium {
	width:200px !important;
	
}





.footer-widgets .gform_wrapper li, .footer-widgets .gform_wrapper form li {
	margin:8px 0 0;
	margin:0.8rem 0 0;
}


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

.site-footer {
	color: #fff;
	font-size: 11px;
	font-size: 1.1rem;
	padding: 10px 0px 20px 0px;
	margin:0px auto;
	text-align: center;
	width:100%;
	z-index:99;
	position:relative;
	float:left;
	background: #46525a;
	
	
}

.home .site-footer {
	color: #fff;
	font-size: 11px;
	font-size: 1.1rem;
	padding: 10px 0px 20px 0px;
	margin:0px auto;
	text-align: center;
	width:100%;
	z-index:99;
	position:relative;
	float:left;
	background: #46525a;
	
}

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

.site-footer p {
	margin-bottom: 0;
}








/*
Pods styles
---------------------------------------------------------------------------------------------------- */

.entry-content {
	clear: both;	
}


.booktitle {
	font-size: 30px;
	font-size: 3.0rem;
	width:100%;
  	float:right;
	font-weight:400;
	padding: 0px 0px 0px 0px;
	padding: 0rem 0rem 0rem 0rem;
	margin:0px !important;
	color:#058581;
	font-style:italic;
	font-family: 'Roboto Condensed', sans-serif;
	}
	
.subtitle {
	font-size: 18px;
	font-size: 1.8rem;
	font-style:italic;
	font-weight:400;
	padding: 0px 0px 10px 0px;
	padding: 0rem 0rem 1rem 0rem;
   	margin:0px !important;
	width:100%;
  	float:left;
	color:#058581;
	font-family: 'Roboto Condensed', sans-serif;
	}
	
.book-page h1 {
	font-size: 20px;
	font-size: 2.0rem;
	font-weight:400;
	margin:0px 0px 15px 0px !important;
	color:#000;
	display:inline;
	width:50%;
	width:100%;
  	float:right;
	font-style:normal;
	font-family: 'Roboto Condensed', sans-serif;
}


#sibling-pages {
	display:inline;
	text-align:right;
	float:right;
	width:100%;
	position:absolute;
	top:20px;
	right:20px;
	font-family: 'Roboto', sans-serif;
}



ul.sibling-pages li {
	display:inline;
	list-style-type:circle;
	margin: 0 1px 0 0 !important;
	padding: 0 5px 0 0 !important;
	border-right-style: solid;
	border-right-width: 1px;
	font-size:17px;
	font-weight:700;
	
}

ul.sibling-pages li:last-child {
	border-right: none;
}

ul.sibling-pages li a {
	text-decoration: underline;
	color:#333;
}

ul.sibling-pages li a:hover, ul.sibling-pages li a:active, ul.sibling-pages li.current_page_item a {
	color:#000 !important;
}



#book_widget {
	float:left;
	margin:20px 0% 0px 0%;
	width:100%;
	color:#050202;
	font-family: 'Roboto Condensed', sans-serif;
}



#book_widget #book_cover{
	margin-bottom:20px;
}

#book_widget #book_cover img {
	-moz-box-shadow: 2px 2px 6px #333;
	-webkit-box-shadow: 2px 2px 6px #333;
	box-shadow: 2px 2px 6px #333;
	width:100%;
	height:auto;
}

#book_widget #buy_the_book {
	color: #050202;
	font-size: 17px;
	line-height: 1.25;
	margin-bottom:15px;
	padding-left:15px;
	float:left;

	
}

#book_widget #buy_the_book h2 {
	color: #058581;
	font-size: 20px;
	margin-top: 15px;
	margin-bottom:0px;
	font-weight:600;
	float:left;
	width:100%;
	font-family: 'Roboto Condensed', sans-serif;
}

#book_widget #buy_the_book h2 a {
	color: #050202;
	font-size: 17px;
	margin-top: 10px;
	margin-bottom:10px;
}

.sidebar h2 a {
	color: #4f929a;
	font-size: 20px;
	margin-top: 10px;
	margin-bottom:10px;
	font-weight:bold;
	margin-left:10px;
}

.bookstores {
	margin-top: 5px;
	width:100%;
	float:left;
}

.bookstores .bookstore {
	height: auto;
	width: 100%;
	float: left;
	clear:both;
	margin-bottom: 3px;
	margin-top: 0;
	margin-left: 0px;
	font-size: 16px;
	font-weight: 400;
	color: #050202;
	text-transform: capitalize;
	
}

.bookstores .bookstore a {
	text-decoration:underline;
	color:#050202 !important;
	
}

.bookstores .bookstore a:hover {
	color:#058581 !important;
}


#book_widget #buy_the_book #additionalinfo {
	clear:both;
	width:100%;
	padding:10px 0;
	float:left;
}

#book_widget #buy_the_book #additionalinfo p {
	margin-bottom:10px !important;
}

#book_widget #buy_the_book #additionalinfo a {
	text-decoration:underline;
	color:#fff !important;
	
}

#book_widget #buy_the_book #additionalinfo a:hover {
	color:#e9dbc7 !important;
}

#book_covers_list .cover {
	float: left;
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 20px;
	width:150px;
	height:220px;
}

#book_covers_list .cover img {
	-moz-box-shadow: 3px 3px 8px #424242;
	-webkit-box-shadow: 3px 3px 8px #424242;
	box-shadow: 3px 3px 8px #424242;
	width:150px;
	height:220px;
}

#media_downloads_list {
	/*width: 450px;*/
}

#media_downloads_list .book {
	float: left;
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 10px;
}

#media_downloads_list .book img {
	padding:0px !important;
	-moz-box-shadow: 3px 3px 4px #424242;
	-webkit-box-shadow: 3px 3px 4px #424242;
	box-shadow: 3px 3px 4px #424242;
	width:180px;
	height:270px;
}

#book_cover_imageflow img {
	cursor: pointer !important;
}

#book_cover_imageflow_navigation {
	padding: 0 0 0 0 !important;
}

#book_cover_imageflow_caption {
	display: none;
}

.eme_events_list li {
	list-style-type: none !important;
	margin-left: 0 !important;
}



#bookstores .bookstore a:hover {
	color: #000;
}

#book_buy_list {
	
}

#book_buy_list .book {
	display: inline-block;
	float:left;
	width: 250px;
	margin: 0 20px 30px 0;
}

#book_buy_list .cover {
	float: left;
	width: 94px;
	padding: 0 5px 0 0;
}

#book_buy_list .cover img {
	-moz-box-shadow: 3px 3px 4px #424242;
	-webkit-box-shadow: 3px 3px 4px #424242;
	box-shadow: 3px 3px 4px #424242;
	margin-left:0px !important;
	padding-left: 0px !important;
	border:1px solid #ccc;
}

#book_buy_list .bookstores {
	float: right;
	width:135px;
}

#book_buy_list .bookstores h2 {
	font-size:15px;
	font-weight:bold;
	line-height:15px;
}

#book_buy_list .bookstores a {
	font-size:13px !important;
}



.ngg-gallery-thumbnail img {
	padding:0px !important;
	border:0px !important;
	margin: 8px 8px 8px 0px !important;
	-moz-box-shadow: 3px 3px 4px #000;
	-webkit-box-shadow: 3px 3px 4px #000;
	box-shadow: 3px 3px 4px #000;
}









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




.home-site-container .site-inner img {
	height: auto;
	width: auto; /* IE8 */
}

.home-site-container .entry-content {
	clear:none !important;
}

.featured-slides-row {
	clear:both;
	width:100%;
	float:left;
	background: #000000;
	
}





.featured-slides-container {
	padding: 0;
	color:#fff;
	width:1100px;
	margin:0px auto;
	}
	
.featured-slides {
	width:100%;
	float:left;
	
	}
	

.featured-slides h4{
	font-size: 18px;
	font-size: 1.8rem;
	margin-bottom:10px !important;
	color:#fff;
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
	
}





	

.featured-bottom-row-container {
	width:100%;
	float:left;
	position:relative;
	background: url(images/doucette-home-bottom-back.jpg) repeat-x top #343434;

}


.featured-bottom-row {
	width:1100px;
	margin:0px auto;
	position:relative;
	
}

.featured-bottom {
	clear:both;
	width:100%;
	float:left;
	
	
	
}



#quotearea {
	width:50%;
	margin:0px auto 0px auto;
}



#quoterotator {
	color: #333;
	font-size:40px;
	line-height:50px;
	font-weight: normal 400;
	
}

#quoteauthor {
	display: block;
	text-align:left;
	color: #333;
	font-size:18px;
	font-size:1.8rem;
	margin-top:8px;
	line-height:20px;
}

#quoteauthor::before {
	content: "– ";
}







.featured-bottom-left-column {
	width:33%;
	float: left;
	margin:25px 0px 25px 0;
	padding: 0px 20px 0px 30px;
	color:#fff;
	}	


.featured-bottom-left-column h4 {
	font-size: 24px;
	font-size: 2.4rem;
	margin-bottom:10px !important;
	color:#fff;
	font-weight: 500;
	font-family: 'Roboto Condensed', sans-serif;
}



.featured-bottom-left-column h4 a {
	color: #fff;
	
}

.featured-bottom-left-column h2 {
	padding: 0;
	color: #fff;
	font-size:17px;
	margin: 0 0 5px 0;
}

	
.featured-bottom-left-column h2 a {
	color: #fff;
	font-size:16px;
	padding:15px 0 0 0;
	text-decoration: underline;
}

.featured-bottom-left-column h3 {
	ont-size:20px;
	margin:0px;
	padding:0px;
}




.featured-bottom-left-column p {
	padding: 0 0 0px 0;
	margin: 0 0 12px 0 !important;
	color:#fff;
	font-size:16px;
	font-size: 1.6rem;
	line-height:1.5;
	font-weight:400;
	font-family: 'Roboto', sans-serif;
	
	}
	
.featured-bottom-left-column a {
	color: #fff;
	text-decoration: underline;
	font-family: 'Roboto', sans-serif;
}

.featured-bottom-left-column a:hover {
	color:#c1cdd8;
}




.featured-bottom-middle-column {
	width:33%;
	float: left;
	margin:25px 0px 25px 0;
	padding: 0px 20px 0px 20px;
	color:#fff;
	
	border-left: 2px solid #9697a3;
	border-right: 2px solid #9697a3;
	}	


.featured-bottom-middle-column h4 {
	font-size: 24px;
	font-size: 2.4rem;
	margin-bottom:10px !important;
	color:#fff;
	font-weight: 500;
	font-family: 'Roboto Condensed', sans-serif;
}



.featured-bottom-middle-column h4 a {
	color: #fff;
	
}

.featured-bottom-middle-column h2 {
	padding: 0;
	color: #fff;
	font-size:17px;
	margin: 0 0 5px 0;
}

	
.featured-bottom-middle-column h2 a {
	color: #fff;
	font-size:16px;
	padding:15px 0 0 0;
	text-decoration: underline;
}

.featured-bottom-middle-column h3 {
	padding: 0;
	font-size:20px;
	margin:0px;
	padding:0px;
}




.featured-bottom-middle-column p {
	padding: 0 0 0px 0;
	margin: 0 0 12px 0 !important;
	color:#fff;
	font-size:16px;
	font-size: 1.6rem;
	line-height:1.5;
	font-weight:400;
	font-family: 'Roboto', sans-serif;
	
	}
	
.featured-bottom-middle-column a {
	color: #fff;
	text-decoration: underline;
	font-family: 'Roboto', sans-serif;
}

.featured-bottom-middle-column a:hover {
	color:#c1cdd8;
}

.featured-content .entry-title a:hover {
	color:#c1cdd8;
}



	


.featured-bottom-right-column {
	width:33%;
	float: left;
	margin:25px 0px 25px 0;
	padding: 0px 20px 0px 30px;
	color:#fff;
	}	


.featured-bottom-right-column h4 {
	font-size: 24px;
	font-size: 2.4rem;
	margin-bottom:10px !important;
	color:#fff;
	font-weight: 500;
	font-family: 'Roboto Condensed', sans-serif;
}



.featured-bottom-right-column h4 a {
	color: #fff;
	
}

.featured-bottom-right-column h2 {
	padding: 0;
	color: #fff;
	font-size:17px;
	margin: 0 0 5px 0;
}

	
.featured-bottom-right-column h2 a {
	color: #fff;
	font-size:16px;
	padding:15px 0 0 0;
	text-decoration: underline;
}

.featured-bottom-right-column h3 {
	padding: 0;
	font-size:20px;
	margin:0px;
	padding:0px;
}




.featured-bottom-right-column p {
	padding: 0 0 0px 0;
	margin: 0 0 12px 0 !important;
	color:#fff;
	font-size:16px;
	font-size: 1.6rem;
	line-height:1.5;
	font-weight:400;
	font-family: 'Roboto', sans-serif;
	
	}
	
.featured-bottom-right-column a {
	color: #fff;
	text-decoration: underline;
	font-family: 'Roboto', sans-serif;
}

.featured-bottom-right-column a:hover {
	color:#c1cdd8;
}



.featured-bottom-right-column .featured-content .entry {
	border-bottom:none;
	margin-bottom:0px !important;
	padding-bottom:0px !important;
}

.featured-bottom-right-column .entry-title {
	margin-bottom:5px !important;
}

.featured-bottom-right-column .featured-content .entry a:hover {
	color:#000;
}




/*
Carousel
_______________________________*/

.featured-carousel-row {
	clear:both;
	width:100%;
	margin:0px auto;
	float:left;
	background: url(images/doucette-home-carousel-back.jpg) repeat-x top #262626;

}





.featured-carousel-container {
	padding: 0;
	color:#fff;
	width:1100px;
	margin:0px auto;
	}
	

	



.featured-carousel {
	width:100%;
	float:left;
	}
	



.featured-carousel {
	float:left;
	width:100%;
	margin-top:5px;
	color:#fff;
	position:relative;
	z-index:70;
	}
	
.featured-carousel h4 {
	font-size: 24px;
	font-size: 2.4rem;
	margin-bottom:15px !important;
	color:#fff;
	padding-left:30px;
	font-weight: 500;
	font-family: 'Roboto Condensed', sans-serif;
}
	
.featured-carousel p {
	padding: 0 0 0px 0;
	margin: 0 0 12px 0 !important;
	color:#fff;
	font-size:14px;
	font-size: 1.4rem;
	line-height:1.45;
	font-weight:300;
	font-family: 'Roboto', sans-serif;
	
	}
	
.featured-book-carousel a {
	padding: 0 0 0px 0;
	margin:0px !important;
	color: #fff;
	text-decoration: underline;
	
}

	
.featured-book-carousel img {
	padding: 0 0 0px 0 !important;
	margin:0px !important;
	height: auto;
	width: auto;
	}






.collection-featured-books {
	clear: both;	
	
}
	
	
.collection {
	clear: both;
	width: 100%;
}




.collection-books {
	position: relative;0
	padding:0px 8% 0px 8%;
	
}

.collection-books .caroufredsel_wrapper {
	width:90% !important;
	margin:0px 5% !important;
	padding: 5px 0px !important;
}

.collection-books .book {
	float: left;
	display:inline-block;
	margin:0px 5px;
	padding: 25px 0px 15px 0px;
	
}

.collection-books .book img {
	height: 176px;
	margin:0px auto;
	-moz-box-shadow: 2px 2px 8px #000;
	-webkit-box-shadow: 2px 2px 8px #000;
	box-shadow: 2px 2px 8px #000;
}

a.prev, a.next {
	background: url(images/carouselButtons.png) no-repeat transparent;
	width: 50px;
	height: 53px;
	display: block;
	position: absolute;
	top: 65px;
}

a.prev {
	left: 30px;
	background-position: 0 0; 
}

a.prev:hover {
	background-position: 0 0px;
}

a.prev.disabled {
	background-position: 0 0px !important;
}

a.next {
	right: 30px;
	background-position: -50px 0;
}

a.next:hover {
	background-position: -50px 0;
}

a.next.disabled {
	background-position: -50px 0 !important;
}

a.prev.disabled, a.next.disabled {
	cursor: default;
}

a.prev span, a.next span {
	display: none;
}

.slick-slider {
 width:90% !important;
	margin:0px 5% !important;
	padding: 5px 0px !important;
}



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

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

	.header-image .site-header .wrap {
	
	}

}

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

	.site-container {
		
	}

.home-site-header .site-header, .site-header {
    
}
	
	.site-inner,
	.wrap {
		
	}

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

	.content,
	.site-header .widget-area {
		
	}

	.sidebar-content-sidebar .content,
	.sidebar-sidebar-content .content,
	.content-sidebar-sidebar .content {
		width: 70%;
	}
	
/* 
Footer Widgets (max-width: 1139px)
---------------------------------------------------------------------------------------------------- */

	.title-area {
		
	}
	
.sidebar-primary,
	.sidebar-secondary {
		
	}
	

.footer-widgets-1,
.footer-widgets-3 {
	width: 700px;
}

.footer-widgets-2 {
	width: 150px;
	margin-top:10px;
}

.footer-widgets-1 {
	
}

.footer-widgets-1,
.footer-widgets-2 {
	float: left;
}

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

.footer-widgets a {
	color: #999;
}

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

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

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

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

.footer-widgets .search-form input:focus {
	border: 1px solid #ddd;
}



.footer-widgets h4 { 
	float:left;
	color: #058581 !important;
	font-weight: normal;
	text-transform: none !important;
	font-style:italic;
	font-family: 'Roboto Condensed', sans-serif;
	font-size:25px;
	margin:0px 10px 0px 50px;
	padding:0px;
	
}

.footer-widgets .gform_heading {
	float:left;
	width:190px !important;
	display:inline;
	margin-right:10px;
}

.footer-widgets .gform_body {
	float:left;
	display:inline;
	width:250px !important;
	margin-top:0px !important;
	padding-top:0px;
}

.footer-widgets .gform_description {
	font-size:17px;
	padding-top:5px !important;
	float:left;
}

.footer-widgets .gform_footer {
	float:right;
	display:inline;
	width:95px !important;
	clear:none !important;
	margin:0px !important;
}

.footer-widgets .gform_wrapper .gform_footer.left_label {
	padding: 7px 0px 0px 0px !important;
}

.footer-widgets .gfield_label {
	width:45px !important;
	margin-right:5px !important;
	
}

.footer-widgets .gfield_required {
	color:#fff !important;
	
}


.footer-widgets .ginput_container .medium {
	width:200px !important;
	
}





.footer-widgets .gform_wrapper li, .footer-widgets .gform_wrapper form li {
	margin:8px 0 0;
	margin:0.8rem 0 0;
}



}



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

	.site-container {
		max-width: 100%;
		
	}
	
	.home-site-container {
		max-width: 100%;
		float:left;
	}
	

	
	.site-inner {
		width:100%;
	margin:0px;
	float:left;
	}
	
	.site-inner-full {
		width:100%;
	}
	
.site-header {
	width:100%;
	margin:0px auto;
	float:left;
   
}

	
.home-site-container .site-header {
	width:100%;
	margin:0px auto;
	float:left;
    
}

.header-image .title-area {
	
}
	


.header-image .site-header .widget-area {
	
}

	.site-header .wrap {
		width: 100%;
    position:relative;
	}

	
.site-title {
	font-size: 60px;
	font-size: 6rem;
	
}

.site-description {
	font-size:14px;
	font-size:1.4rem;
	line-height:1.25;
}

.nav-primary {
	
}

.gform_widget {
margin-bottom: 10px;
}

	
	
.content-full {
	float: left;
	margin: 0px;
	width: 100%;
	padding:40px 40px;
}


.featured-full-content {
	width:100%;
	float:left;
}

.nav-primary {
	width:100%;
	padding-top:0px;
    position:relative;
	
}

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

#responsive-menu-icon {
		display: block;
		width:20px;
		margin:10px auto 10px auto;
	}
	
.responsive-menu {
display: none;
}

.genesis-nav-menu {
	padding-left:0px;
	text-align:left;
}

	
.genesis-nav-menu .menu-item {
		width:100%;
		border-right:none !important;
		border-bottom: 1px solid #fff;
		border-right:none;
		padding-bottom:4px;
		padding-top:4px;
		line-height:1.5;
		display:block;
}
	

.genesis-nav-menu a,
	.genesis-nav-menu > .first > a,
	.genesis-nav-menu > .last > a {
		
		padding: 0px 8px 0;
		
	}

.genesis-nav-menu {
	
}
	
	.genesis-nav-menu a,
	.genesis-nav-menu > .first > a,
	.genesis-nav-menu > .last > a {
		
		
	}
	
	.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover {

}

.genesis-nav-menu .sub-menu .current-menu-item > a {

}

.genesis-nav-menu .sub-menu {
	right:50%;
}

.genesis-nav-menu .sub-menu .menu-item {
	padding: 0px !important;
	
}

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

.sidebar .widget, .sidebar-blog .widget  {
		margin: 0px 2% 0px 2% !important;
		width:96%;
		
	}

.featured-slides-row {
	width:100% !important;
	float:left;
}

.featured-slides-container {
	width:100% !important;
	float:left;
}

.featured-top-row {
	width:100% !important;
	
}
	
.featured-sign-up-container {
	width:100%;
	}


.featured-bottom-row {
	width:100% !important;
	
}

.featured-carousel-container {
	width:100%;
}



.site-footer {
	width:100%;
	float:left;
}

.home-site-container .site-footer {
	width:100%;
}
	
.site-footer .wrap {
	width:100%;
	
}
	
	
	
}

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

	body {
		
	}
	
	
	
	.site-container {
		
	}
	
	.content {
		
	}
	
	.content-full {
	margin: 0px;
	
}
	
	.sidebar-primary,
	.sidebar-secondary, .sidebar {
		/*padding-left:2% !important;
		padding-right:3% !important;*/
	}
	

	.content-sidebar-sidebar .content,
	.content-sidebar-sidebar .content-sidebar-wrap,
	.sidebar-content-sidebar .content,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-sidebar-content .content,
	.sidebar-sidebar-content .content-sidebar-wrap,
	.site-header .widget-area,
	.site-inner,
	.title-area,
	.wrap {
		width: 100%;
	}
	
	

	.site-header .wrap {
		/*padding: 20px 0;
		padding: 2rem 0;*/
	}

	.header-image .site-header .wrap {
		
	}
	
	.header-image .title-area {
	
	

}

	.site-inner {
		
	}
	
	.home-site-container .site-inner {
		padding: 0px !important;
	}
	
	

	.archive-description,
	.author-box,
	.comment-respond,
	.entry-comments,
	.entry-footer .entry-meta,
	.sidebar .widget {
		padding: 0px;
	}
	
	.site-header {
		
	}
	
	.site-header .wrap {
		
	}
	
	.header-image .site-header .widget-area {
	
	
}

	
	.comment-respond {
		padding-left:5% !important;
	}
	
	.entry {
	/*padding: 0px 20px 0px 20px;*/
	}
	
	.booktitle {
	padding-left:0px !important;
	}
	
	.subtitle {
	padding-left:0px !important;
	}

	.genesis-nav-menu li,
	.site-header ul.genesis-nav-menu,
	.site-header .search-form {
		/*float: none;*/
	}

	.genesis-nav-menu,
	.site-description,
	.site-header .title-area,
	.site-header .search-form,
	.site-title {
		
	}

	.genesis-nav-menu a,
	.genesis-nav-menu > .first > a,
	.genesis-nav-menu > .last > a {
		
		
	}

	.site-header .search-form {
		margin: 16px auto ;
		margin: 1.6rem auto;
	}

	.genesis-nav-menu li.right {
		display: none;
	}

	.entry-footer .entry-meta {
		margin: 0;
		padding-top: 12px;
		padding-top: 1.2rem;
	}

	.sidebar .widget.enews-widget {
		padding: 40px;
		padding: 4rem;
	}

	.site-footer {
		
	}

	.footer-widgets {
		/*padding: 40px 5% 16px;*/
	}

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

@media only screen and (max-width: 860px) {
	
	.site-header .wrap {
	
	background: url(images/doucette-heading-portrait-cropped.png) no-repeat right bottom;
	
	
}

}

@media only screen and (max-width: 767px) {
	
	.genesis-nav-menu a {
	/*padding: 0px 10px 0 10px;
	padding: 0rem 1.0rem 0rem 1.0rem;
	font-size:14px !important;
	font-size:1.4rem !important;*/
}

.header-image .title-area {


}

.header-image .site-header .widget-area {
	bottom:0px;
}


	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		margin: 0;
		width: 100%;
	}
	
.site-inner {
		
	}
	
	.footer-widgets-1,
	.footer-widgets-3 {
	width: 100%;
}

.footer-widgets-2 {
	width: 100%;
	margin-top:10px;
	clear:both;
}

.featured-middle-row {
	width:100%;
}


.featured-bottom-row {
	width:100%;
}



.featured-slides {
	width:100%;
	margin: 0 !important;
	float: left;
	padding: 0;
	color:#fff;
	clear:both;
	}
	
.content {
	border-left:0px;
}

.featured-bottom-left-column {
	width: 96% !important;
    min-height:100px;
	margin-left: 2% !important;
	margin-right: 2% !important;
	padding-left: 2% !important;
	padding-right: 2% !important;
	margin-bottom: 0px;
	padding-bottom:10px;
	border-right:0px;
	
	
}

.featured-bottom-middle-column {
	width: 96% !important;
    min-height:100px;
	margin-left: 2% !important;
	margin-right: 2% !important;
	padding-left: 2% !important;
	padding-right: 2% !important;
	margin-bottom: 0px;
	padding-bottom:10px;
	border-right:none;
	border-left:none;
	
	
}

.featured-bottom-right-column {
	width: 96% !important;
    min-height:100px;
	margin-top:10px;
	margin-left: 2% !important;
	margin-right: 2% !important;
	padding-left: 2% !important;
	padding-right: 2% !important;
	border-left:none;
	
}

	

}


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

.site-container, .home-site-container {
	
	
}

.home-site-container .site-header, .site-header {
    

	
}
	
.header-image .site-header a {
	
	
}




.header-image .site-header .wrap {
	padding-top: 0px;
	padding-top:0rem;
	width:100%;
	background:none;
	min-height: 80px;
}



.site-header {
	min-height:none;
}

.home-site-container .site-header {
	
}

.header-image .title-area {
	margin:10px 1% 10px 1%;
	width: 98% !important;
	background-position:top;
	min-height:80px;
}

.site-title {
	font-size: 43px;
	font-size: 4.3rem;
	border-right: none !important;
	width:100% !important;
	height:50px;
	
}

.site-description {
	font-size:14px;
	font-size:1.4rem;
	line-height:1.25;
	clear:both;
	width:100% !important;
}


.header-image .site-header .widget-area {
	position:static;
	clear:both;
	width:98%;
	margin:0px 1%;
}

.gform_widget {
margin-bottom: 10px;
}




	
.nav-primary {
	
	width:100%;

}

.genesis-nav-menu {
	margin: 0px 0px 0px 0%;
	width:100%;
	float:right;
	padding-left:0px;
}
	
	
	.site-inner {
		
	}
	
	.content {
		width: 100%;
		margin-top:5px;
		margin-right:0px;
		margin-left:0px;
        padding-right:20px;
		min-height:0px !important;
		float:left;
		position:relative !important;
		border-right: 0px;
	}
	
	
	body.blog .content, body.single .content {
		width: 100%;
		margin-top:5px;
		margin-right:0px;
		margin-left:0px;
        padding-right:20px;
		min-height:0px !important;
		float:left;
		position:relative !important;
		border-right: 0px;
	}
	
	.content-full {
		margin: 0px 0px 25px 0px;
		width: 100%;
		min-height:0px !important;
		position:relative;
		bottom:0px;
		padding:10px 20px 20px 20px !important;
	
	}
	
.sidebar {
	min-height: 100px;
}

.sidebar-blog {
	min-height: 100px;
}
	
	.entry {
		padding: 0px !important;
	
	}
	
	.booktitle {
	padding-left:0% !important;
	width:100%;
	}
	
	.subtitle {
	padding-left:0% !important;
	width:100%;
	}
	
#sibling-pages {
		top:0px;
    right:10px;
	}
	
	.sidebar {
		padding-bottom:20px;
	border-right: none;
	margin-left:0px;
}
	
	.sidebar-primary,
	.sidebar-secondary, .sidebar {
		width:100%;
		position:relative !important;
		float:left !important;
		display: inline-block;
		
		
	}
	
	
	
	.footer-widgets-1,
	.footer-widgets-3 {
		width: 90%;
		padding-left: 15px;
}

	.footer-widgets-2 {
		width: 90%;
		margin-top: 0px;
		padding-right: 15px;
		clear:both;
}
	
	.sidebar-content .sidebar-primary {
		margin-left:0px;
		width:100%;
	}
	

	
	
	
	#book_widget {
		width:100% !important;
		margin:0px !important;
	}
	
	#book_widget #book_cover {
		margin: 0px 2% 0px 0px;
		float:left;
		width:48%;
	}
	
	#book_widget #book_cover img {
		height:auto;
		
}



	#book_widget #buy_the_book{
		float:left;
		margin-top:20px !important;
		margin-left:0px !important;
		padding-top:20px !important;
		padding-left:2%;
		width:50%;
}

	#book_widget #buy_the_book h2 {
		font-size: 18px !important;
		margin-bottom:0px !important;
		padding-bottom:0px !important;
		width:100%;
}

.featured-top-row {
	
}


.featured-slides-row {
	
	
}

.featured-bottom-row-container {
	
	
}

.featured-bottom-row {
	width:100%;
	padding:0px !important;
}



.featured-slides {
		
	}
	
.featured-bottom {
	width:100%;
	float:left;
	padding-left:0px !important;
	background: none !important;
}






	
#quotearea {
	width:90% !important;
	margin:0px auto 0px auto;
}

#quoterotator {
	font-size:30px !important;
	line-height:30px !important;
}

#quoteauthor {
	font-size:16px !important;
	font-size:1.6rem !important;
}
	
	
	


	
.content-blog {
	width:100%;
}
	
.sidebar-blog {
	width:100%;
	margin:0px 0 0px 0px;
	padding-left:20px;
	float:right;
}

.comment-respond {
		padding-left:0% !important;
	}
	
	
	#wpadminbar {
		position: fixed !important;
	}
}

*/