/*
	Theme Name: Mainspring 2016 Theme
	Author: Bednar Multimedia
	Author URI: http://bednarmultimedia.com/

	Version: 1.2

	Template: genesis
	Template Version: 2.1.3

*/

/* Table of Contents
- Imports
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- Forms
	- Tables
- Structure and Layout
	- Site Containers
	- Column Widths and Positions
	- Column Classes
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
- Plugins
	- Genesis eNews Extended
	- Genesis Portfolio Pro
	- Genesis Responsive Slider
	- Genesis Simple Share
	- Jetpack
	- Ninja Forms
	- Simple Social Icons
	- WP Instagram Widget
- Sticky Message
- Site Header
	- Title Area
- Site Navigation
	- Navigation
	- Responsive Navigation
- Content Area
	- Welcome Message
	- Entries
	- Entry Meta
	- After Entry
	- Pagination
	- Comments
- Sidebar
- Footer Widgets
- Site Footer
- Media Queries
	- Retina Display
	- Min-width: 930px
	- Min-width: 1100px
*/


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

/* Baseline Normalize
--------------------------------------------- */
/* normalize.css v3.0.1 | MIT License | git.io/normalize */

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

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

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

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

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

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


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

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

body {
	background-attachment: fixed;
	background-color: #fff;
	background-position: top left;
	background-repeat: no-repeat;
	/* background-size:cover; */
	color: #000;
	font-family: Lato, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
	-webkit-font-smoothing: antialiased;
}

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

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

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

a {
	color: #126b97;
	text-decoration: none;
}

a:hover {
	color: #000;
}

p {
	margin: 0 0 30px;
	padding: 0;
}

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

li {
	list-style-type: none;
}

b,
blockquote,
strong {
	font-weight: 700;
}

blockquote,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 40px;
}

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

hr {
	border: 0;
	border-collapse: collapse;
	border-top: 1px solid #ddd;
	clear: both;
	margin: 40px 0;
}


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

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #000;
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 1;
	margin: 0 0 20px;
	text-transform: uppercase;
}

.entry-content h1 a,
.entry-content h2 a,
.entry-content h3 a,
.entry-content h4 a,
.entry-content h5 a,
.entry-content h6 a {
	border-width: 0;
}

h1 {
	font-size: 30px;
}

h2 {
	font-size: 24px;
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 18px;
}

.entry-content h4 {
	margin-bottom: 24px;
	margin-top: 40px;
}

h5 {
	font-size: 16px;
}

h6 {
	font-size: 14px;
}

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

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

img {
	height: auto;
}

.featured-content img,
.gallery img {
	width: auto;
}

/* Gallery
--------------------------------------------- */

.entry-content .gallery a,
.entry-content .gallery a:hover {
	border-width: 0;
}

.gallery {
	overflow: hidden;
}

.gallery-item {
	float: left;
	margin: 0 0 30px;
	padding: 0 3px;
	text-align: center;
	width: 100%;
}
.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-3 .gallery-item {
	width: 33%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item {
	width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
	width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
	width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
	clear: left;
}

.gallery img {
	/* border: 1px solid #ddd;
	padding: 4px; */
	height: auto;
}

.gallery img:hover {
	/* border: 1px solid #999; */
}

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

input,
select,
textarea {
	background-color: #f5f5f5;
	border: none;
	box-shadow: none;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	padding: 20px;
	width: 100%;
	-webkit-font-smoothing: antialiased;
}

.widget input {
	padding:10px;
	margin:0 0 5px 0;
}

input:focus,
textarea:focus {
	background-color: #eee;
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

::-moz-placeholder {
	color: #000;
	font-weight: 400;
	opacity: 1;
	-webkit-font-smoothing: antialiased;
}

::-webkit-input-placeholder {
	color: #000;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.entry-content .button,
.footer-widgets .button,
.sidebar .button {
	background-color: rgba(18,107,151,1);
	border-color: #126B97;
	border: 1px solid #126B97;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	font-family: Montserrat, sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	padding: 20px;
	text-align: center;
	text-transform: uppercase;
	white-space: normal;
	width: auto;
}

button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover,
.entry-content .button:hover,
.footer-widgets .button:hover,
.sidebar .button:hover {
	background-color:rgba(22,128,181,1);
	color:#fff;
}

button.small,
input[type="button"].small,
input[type="reset"].small,
input[type="submit"].small,
.button.small {
	padding: 8px 10px;
}

button:disabled,
button:disabled:hover,
input:disabled,
input:disabled:hover,
input[type="button"]:disabled,
input[type="button"]:disabled:hover,
input[type="reset"]:disabled,
input[type="reset"]:disabled:hover,
input[type="submit"]:disabled,
input[type="submit"]:disabled:hover {
	background-color: #f7f7f7;
	border-color: #ddd;
	color: #777;
	cursor: not-allowed;
}

.button {
	display: inline-block;
}

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

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

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

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

td,
th {
	text-align: left;
}

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

th {
	font-weight: 400;
}


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

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

.site-container {
	background-color: rgba(255,255,255,0.85);
	padding: 0 60px 60px;
	box-shadow: 0 0 5px #ddd;
	margin: 40px auto;
	max-width: 1120px;
	position:relative;
}

.site-inner {
	clear: both;
	/* margin-left: 10%;
	margin-right: 10%; */
	margin-left: 0;
	margin-right: 0;
}

.content {
	width: 62%; /* 600px */
	float:left;
}

.full-width-content .content {
	float: none;
	width: 100%;
	/* margin-left: auto;
	margin-right: auto; */
}

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

.full-width-content.ms-landing .content {
	padding-top: 60px;
	width: 100%;
}

.ms-landing .site-container {
	padding-bottom: 60px;
	max-width: 800px;
}

/* 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%;
	margin-bottom: 40px;
}

.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
---------------------------------------------------------------------------------------------------- */

/* Avatar
--------------------------------------------- */

.avatar {
	float: left;
}

.alignleft .avatar,
.author-box .avatar,
.comment .avatar {
	margin-right: 20px;
}

.alignright .avatar {
	margin-left: 20px;
}

.author-box .avatar {
	height: 80px;
	width: 80px;
}

.comment .avatar {
	height: 55px;
	margin-bottom: 20px;
	width: 55px;
}

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

.archive-description,
.author-box,
.breadcrumb {
	border-bottom: 1px solid #126B97;
	margin-bottom: 50px;
	padding-bottom: 30px;
}

.author-description ~ .author-box {
	margin-top: -60px;
}

.single .author-box {
	margin-bottom: 60px;
}

.breadcrumb {
	font-size: 14px;
	padding-bottom: 10px;
	margin-top:-30px;
	border-bottom:none;
	margin-bottom:20px;
}

.archive-description a,
.author-box a,
.breadcrumb a {
	border-bottom: 1px solid #126b97;
	color: #000;
	font-weight: 700;
	padding-bottom: 1px;
}

.archive-description a:hover,
.author-box a:hover,
.breadcrumb a:hover {
	border-bottom: 1px solid #126b97;
	color: #126b97;
}

.single .author-box {
	border-top: 1px solid #126B97;
	padding-top: 30px;
}

.author-box-title {
	font-family: Lato, sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0;
	margin-bottom: 4px;
	margin-top: 4px;
	text-transform: none;
}

.archive-description p:last-child,
.author-box p:last-child {
	margin-bottom: 0;
}

/* Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
}

.search-form input {
	-webkit-appearance: none;
}

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

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

.archive-title {
	font-size: 18px;
}

.entry-title {
	font-size: 24px;
}

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

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

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

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

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

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

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

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

img.alignnone,
.alignnone {
	margin: 0 0 20px 0;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 20px 20px 0;
}

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

.gallery-caption {
	margin: 0 0 10px;
}

.wp-caption-text {
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.wp-audio-shortcode,
.wp-playlist,
.wp-video {
	margin: 0 0 28px
}

a[rel~="attachment"],
a[rel~="attachment"]:hover,
.wp-audio-shortcode a,
.wp-audio-shortcode a:hover,
.wp-caption a,
.wp-caption a:hover,
.wp-playlist a,
.wp-playlist a:hover,
.wp-video a,
.wp-video a:hover {
	border-width: 0!important;
}


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

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

.widget:last-child {
	margin-bottom: 0;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: 0;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

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

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

.featured-content .aligncenter,
.featured-content .aligncenter:hover,
.featured-content .alignleft,
.featured-content .alignleft:hover,
.featured-content .alignnone,
.featured-content .alignnone:hover,
.featured-content .alignright,
.featured-content .alignright:hover {
	border-width: 0;
}

.featured-content img {
	margin-bottom: -10px;
}

.featured-content .entry,
.page.page-template-page_blog-php .featured-content .entry,
.single .featured-content .entry {
	border-bottom: 1px solid #126B97;
	margin-bottom: 25px;
	padding-bottom: 20px;
}

.featured-content .entry:last-child,
.page.page-template-page_blog-php .featured-content .entry:last-child,
.single .featured-content .entry:last-child {
	border-width: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.featured-content .entry-title,
.single .featured-content .entry-title {
	font-size: 16px;
	line-height: 1.2;
	text-align: left;
}
.widget.featured-content h2.entry-title {
	margin:0 0 12px;
}
.widget.featured-content .entry {
	padding:0 0 12px;
}
.featured-content .entry-title a,
.single .featured-content .entry-title a {
	border-bottom: none;
}
.sidebar .featured-content .alignleft,
.sidebar .featured-content .alignright,
.sidebar .post a.alignleft,
.sidebar .post a.alignright {
	max-width:30%;
	height:auto;
}
.sidebar .featured-content .entry-title,
.sidebar .post h2 {
    font-size: 14px;
	letter-spacing:normal;
	text-transform:none;
}
.home-sidebar .widget.featured-content .entry-title,
.home-sidebar .widget.post h2 {
	margin-top:10px;
}
.sidebar a.alignleft, 
.sidebar img.alignleft, 
.sidebar .wp-caption.alignleft,
.sidebar .post a.alignleft,
.sidebar .post img.alignleft {
    margin: 0 20px 20px 0;
}

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

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

.enews-widget input {
	font-size: 12px;
	margin-bottom: 10px;
	text-transform: uppercase;
	width: 100%;
}

/* Genesis Portfolio Pro
--------------------------------------------- */

.full-width-content.genesis-pro-portfolio .content {
	width: 100%;
}

.entry-content .portfolio-featured-image a,
.entry-content .portfolio-featured-image a:hover {
	border-width: 0;
}

/* Genesis Simple Share
--------------------------------------------- */

.content .share-after {
	margin-bottom: 20px;
}

.content a.count,
.content a.count:hover,
.content a.share,
.content a.share:hover {
	border: none;
	font-weight: 400;
}

.content .share-filled .share {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.content .share-filled .count {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.content .share-filled .facebook .count,
.content .share-filled .facebook .count:hover,
.content .share-filled .googlePlus .count,
.content .share-filled .googlePlus .count:hover,
.content .share-filled .linkedin .count,
.content .share-filled .linkedin .count:hover,
.content .share-filled .pinterest .count,
.content .share-filled .pinterest .count:hover,
.content .share-filled .stumbleupon .count,
.content .share-filled .stumbleupon .count:hover,
.content .share-filled .twitter .count,
.content .share-filled .twitter .count:hover {
	color: #126B97;
	border: 1px solid #126B97;
}

.content .share-filled .facebook .share,
.content .share-filled .facebook:hover .count,
.content .share-filled .googlePlus .share,
.content .share-filled .googlePlus:hover .count,
.content .share-filled .linkedin .share,
.content .share-filled .linkedin:hover .count,
.content .share-filled .pinterest .share,
.content .share-filled .pinterest:hover .count,
.content .share-filled .stumbleupon .share,
.content .share-filled .stumbleupon:hover .count,
.content .share-filled .twitter .share,
.content .share-filled .twitter:hover .count {
	background: #000 !important;
}

.content .share-filled .facebook:hover .count,
.content .share-filled .googlePlus:hover .count,
.content .share-filled .linkedin:hover .count,
.content .share-filled .pinterest:hover .count,
.content .share-filled .stumbleupon:hover .count,
.content .share-filled .twitter:hover .count {
	color: #fff;
}

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

#wpstats {
	display: none;
}

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

.ninja-forms-field[type="submit"] {
  width: 100% !important;
}

/* Simple Social Icons
--------------------------------------------

.sidebar .simple-social-icons {
	overflow: inherit;
}

.widget.simple-social-icons ul li {
	margin: 0 5px 10px !important;
}

.widget.simple-social-icons ul li a {
	border: 1px solid #126B97 !important;
	padding: 14px !important;
}

.widget.simple-social-icons ul li a:hover {
	border: 1px solid #999 !important;
}
- */

/* WP Instagram Widget
--------------------------------------------- */

.sidebar ul.instagram-pics {
	margin-bottom: -18px;
}

.sidebar .instagram-pics img {
	height: 100px;
	width: 100px;
}

.sidebar .instagram-pics li {
	display: inline-block;
	margin-right: 0;
	margin-bottom: 18px;
}

.sidebar .instagram-pics li:nth-child(2n+1) {
	margin-right: 18px;
}

.sidebar .instagram-pics a,
.sidebar .instagram-pics a:hover {
	border-bottom: none;
}


/* Sticky Message
---------------------------------------------------------------------------------------------------- */

.sticky-message {
	background-color: #fff;
	box-shadow: 0 0 5px #ddd;
	display: none;
	font-size: 15px;
	font-weight: 700;
	padding: 15px 10px;
	position: fixed;
	text-align: center;
	width: 100%;
	z-index: 999;
}

.sticky-message a {
	border-bottom: 1px solid #126b97;
	color: #000;
	font-weight: 700;
	padding-bottom: 1px;
}

.sticky-message a:hover {
	border-bottom: 1px solid #126b97;
	color: #126b97;
}

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


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

.site-header {
	margin:0 -60px 0 -60px;
	padding:20px 0;
	text-align: center;
	/* background-image:url(images/bg_hemlocks_1120x198.png);
	background-repeat:no-repeat;
	background-size:cover; */
}
.header-widget-area {
	position:absolute;
	right:20px;
	top:0;
}
.header-widget-area .button {
    background-color: #ffbb4f;
    border: none;
    border-radius: 0;
    color: #126b97;
    font-size: 14px;
	font-weight: 400;
    padding: 10px 20px;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}

.header-widget-area .button:hover {
    /* background-color: #126b97;
    color: #ffbb4f; */
	color:#fff;
	
}

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

.title-area {
	display: inline-block;
	height: 172px;
	margin-left: auto;
	margin-right: auto;
	width: 262px;
}

.site-title {
	background-size: 260px 160px;
	float: left;
	font-family: Montserrat,sans-serif;
	font-size: 20px;
    font-weight: 400;
	height: 170px;
	letter-spacing: 1px;
	line-height: 150px;
	margin-bottom: 0;
	text-align: center;
	text-transform: uppercase;
	width: 260px;
}

.site-title a,
.site-title a:hover {
	box-sizing: border-box;
	display: inline-block;
	line-height: normal;
	max-width: 260px;
	padding: 15px 15px 20px;
	vertical-align: middle;
	word-wrap: break-word;
}

.header-image .site-title > a {
	/* background-color: #fff !important; */
	background-position: center center !important;
	background-size: 260px 160px !important;
	float: left;
	height: 170px;
	width: 260px;
}
.site-description {
	margin:0;
}
.header-image .site-title,
.site-description {
	background-image: none;
	display: block;
	height: 0;
	text-indent: -9999px;
}


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

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

.genesis-nav-menu a {
	color: #fff;
	display: block;
	font-family: Montserrat, sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	padding: 18px 23px;
	text-transform: uppercase;
}
.genesis-nav-menu .orange a {
	background-color:#ffbb4f;
	color:#126b97;
}

.genesis-nav-menu a:hover {
	color: #fff;
	background-color:#1680b5;
}

.genesis-nav-menu .sub-menu {
	/* background-color: rgba(255, 255, 255, 0.05);
	left: auto;
	opacity: 1;
	position: relative; */
	-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;
	z-index: 99;
	background-color:#1C6A9B;
	box-shadow: 0 0 2px #ddd;
	left: -9999px;
	opacity: 0;
	position: absolute;
	text-align: center;
	width: 200px;
}

.genesis-nav-menu .sub-menu a {
	/* color: #000; */
	letter-spacing: 0;
	position: relative;
	text-transform: none;
	border: 1px solid #fff;
	border-top: 0;
	padding: 14px;
	color: #fff;
	text-align: center;
	width: 200px;
}
.genesis-nav-menu .sub-menu a:hover {
	color: #fff;
	background-color:#1680B5;
}

.genesis-nav-menu .menu-item:hover {
	position: relative;
}
/* 
.genesis-nav-menu .menu-item:hover {
	position: static;
}
*/
 
.genesis-nav-menu .menu-item:hover > .sub-menu {
	/* left: auto; */
	left: 50%;
	margin-left: -100px;
	opacity: 1;
}
.genesis-nav-menu .sub-menu:after,
.genesis-nav-menu .sub-menu:before {
	bottom: 100%;
	left: 50%;
	/* 
	border: solid transparent;
	content: " ";
	pointer-events: none; 
	*/
	height: 0;
	width: 0;
	position: absolute;
}

.genesis-nav-menu .sub-menu:after {
	border-bottom-color: #126B97;
	border-width: 10px;
	margin-left: -10px;
}

.genesis-nav-menu .sub-menu:before {
	border-bottom-color: #126B97;
	border-width: 11px;
	margin-left: -11px;
}

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

.genesis-nav-menu .sub-menu .sub-menu:after,
.genesis-nav-menu .sub-menu .sub-menu:before {
	display: none;
}
.genesis-nav-menu .menu-item:hover > .sub-menu > .menu-item:hover > .sub-menu {
	left: 199px;
	margin-left: 0px;
	opacity: 1;
}

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

.navigation-container {
	/* background-color: #fff;
	border-bottom: 1px solid #126B97;
	border-top: 1px solid #126B97; */
	margin:-115px -60px 98px -60px;
	min-height: 50px;
}

.nav-primary,
.nav-secondary {
	/* padding-left: 40px;
	padding-right: 40px; */
	padding:0;
	text-align:center;
	margin:0;
	width:37%;
}
.nav-primary {
	float:left;
	text-align:left;
	padding-right:30px;
	background-image:url(images/nav-indent-left.png);
	background-repeat:no-repeat;
	background-position:right center;
	background-size:30px 50px;
}

.nav-secondary {
	float:right;
	text-align:right;
	padding-left:30px;
	background-image:url(images/nav-indent-right.png);
	background-repeat:no-repeat;
	background-position:left center;
	background-size:30px 50px;
}
.nav-primary .wrap {
	background-color: #126B97;
	padding-left:60px;
}
.nav-secondary .wrap {
	background-color: #126B97;
	padding-right:60px;
}


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

/* Welcome Message
--------------------------------------------- */

.welcome-message {
	border-top: 1px solid #126B97;
	border-bottom: 1px solid #126B97;
	padding: 20px 0;
	margin: 40px 0 50px;
	font-size:20px;
	/* width:660px;
	float:left; */
	text-align:center;
	color:#146844;
}

.welcome-message .widget {
	margin-bottom: 40px;
}

.welcome-message p:last-child,
.welcome-message .widget:last-child {
	margin-bottom: 0;
}

.welcome-message .widget-title {
	text-align: left;
}

/* Home Sidebar
--------------------------------------------- */
.home-sidebar.sidebar {
	/* width:320px;
	float:right; */
	margin-top:30px;
	width:100%;
}
.home-sidebar.sidebar .widget {
	margin-bottom:30px;
}
.home-sidebar.sidebar h4.widget-title {
	display:block;
	font-size:14px;
}
.home-sidebar.sidebar .featured-content:before {
	content: " ";
	display: table;
}
.home-sidebar.sidebar .featured-content:after {
	clear: both;
	content: " ";
	display: table;
}
.home-sidebar.sidebar .featured-content article {
	width:31.3%;
	float:left;
	margin:0 2% 0 0;
}
.home-sidebar.sidebar .featured-content .widget-wrap article.post:nth-of-type(3n) {
	margin:0 0 0 0;
}
.home-sidebar.sidebar .featured-content .widget-wrap article.post:nth-of-type(3n+1) {
	clear:both;
}
/* Entries
--------------------------------------------- */

.entry,
.page.page-template-page_blog-php .entry {
	border-bottom: 1px solid #126B97;
	margin-bottom: 60px;
}

.page .entry,
.single .entry {
	border-bottom: 0;
	margin-bottom: 0;
}

.entry-content a {
	/* border-bottom: 1px solid #126b97; */
	color: #126b97;
	font-weight: 700;
	padding-bottom: 1px;
}
.entry-content a:hover {
	/* border-bottom: 1px solid #126b97; */
	color: #126b97;
	text-decoration:underline;
}
.entry-content .grid a:hover {
	text-decoration:none;
}
.entry-content ol,
.entry-content ul {
	margin-bottom: 30px;
	margin-left: 40px;
}

.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 code {
	background-color: #000;
	color: #ddd;
}

/* Entry Meta
--------------------------------------------- */

.entry-header {
	text-align: center;
}

p.entry-meta {
	font-family: Lato, sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
	margin-bottom: 0;
	text-transform: uppercase;
}

p.entry-meta,
.entry-meta a {
	color: #999;
}

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

.entry-header .entry-meta {
	margin-bottom: 30px;
	margin-top: -10px;
}

.entry-header .by {
	font-style: italic;
	text-transform: lowercase;
}

.entry-footer .entry-meta {
	font-weight: 400;
	margin-bottom: 60px;
}

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

/* After Entry
--------------------------------------------- */

.after-entry {
	border-bottom: 1px solid #126B97;
	margin-bottom: 60px;
	padding-bottom: 30px;
}

.after-entry .widget {
	margin-bottom: 40px;
}

.after-entry a {
	/* border-bottom: 1px solid #126b97; */
	color: #000;
	font-weight: 700;
	padding-bottom: 1px;
}

.after-entry a:hover {
	/* border-bottom: 1px solid #126b97; */
	color: #126b97;
}

.after-entry p:last-child,
.after-entry .widget:last-child {
	margin-bottom: 0;
}

.after-entry li {
	margin-bottom: 6px;
}

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

.pagination {
	clear: both;
	margin-top: 60px;
}

.pagination a {
	/* border-bottom: 1px solid #126b97; */
	color: #000;
	font-weight: 400;
	padding-bottom: 1px;
}

.pagination a:hover {
	/* border-bottom: 1px solid #126b97; */
	color: #126b97;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #fff;
	border: 1px solid #126B97;
	color: #000;
	cursor: pointer;
	display: inline-block;
	font-family: Montserrat, sans-serif;
	letter-spacing: 1px;
	font-size: 12px;
	padding: 8px 12px;
	text-transform: uppercase;
}

.archive-pagination li a:hover,
.archive-pagination .active a {
	background-color: #000;
	border: 1px solid #126B97;
	color: #fff;
}

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

.entry-comments .comment,
.entry-comments .comment-reply {
	margin-bottom: 40px;
}

.comment-respond a,
.entry-comments a {
	/* border-bottom: 1px solid #126b97; */
	color: #000;
	font-weight: 700;
	padding-bottom: 1px;
}

.comment-respond a:hover,
.entry-comments a:hover {
	/* border-bottom: 1px solid #126b97; */
	color: #126b97;
}

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

.comment-respond,
.entry-pings {
	padding-top: 60px;
}

.comment-respond label {
	font-weight: 700;
}

.entry-comments {
	padding-top: 20px;
}

.comment-header {
	font-size: 15px;
}

.comment-notes,
.entry-pings .reply {
	display: none;
}

.comment-form input[type="submit"] {
	width: 100%;
}

.entry-comments .comment {
	border-bottom: 1px solid #126B97;
}

p.comment-form-comment {
	margin-bottom: 20px;
}

p.form-submit,
.entry-comments .children .comment,
.entry-comments .comment-author {
	margin: 0;
}

.entry-comments .comment {
	clear: both;
}

.entry-comments .children .comment {
	border: none;
}

.comment-list li {
	list-style-type: none;
}
.comment-list ul.children {
	margin-left: 40px;
}

	

/* Sidebar
---------------------------------------------------------------------------------------------------- */

.sidebar {
	width: 32%; /* 300px */
	font-size: 14px;
	margin-top: 30px;
	float:right;
}

.sidebar-content .sidebar {
	float: left;
}
.sidebar a {
	/* border-bottom: 1px solid #126b97; */
	color: #000;
	font-weight: 700;
	padding-bottom: 1px;
}

.sidebar a:hover {
	/* border-bottom: 1px solid #126b97; */
	color: #126b97;
}

.sidebar p {
	margin-bottom: 20px;
}

.sidebar li {
	margin-bottom: 10px;
}

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

.sidebar .widget {
	background-color: #fff;
	border:1px solid #126B97;
	margin-bottom: 45px;
	padding: 20px 20px 30px;
}

.sidebar .widget-title {
	background-color: #fff;
	box-shadow: inset 0px 0px 30px 0px rgba(210,238,228,1);
	border:1px solid #126B97;
	color: #126B97;
	font-size: 12px;
	margin-bottom: 30px!important;
	margin-top: -57px;
	padding: 20px;
	text-align: center;
}

.sidebar .widget-title a {
	border-width: 0;
	color: #fff;
}
.sidebar div.ctct-form-embed div.ctct-form-defaults {
    font-size:14px!important;
    line-height: normal!important;
    margin: 0 0 24px 0;
}
.sidebar div.ctct-form-embed div.ctct-form-defaults p.ctct-form-text {
    font-size:14px!important;
    line-height: normal!important;
}
.sidebar #text-11 .widget-title {
	margin-bottom: 0!important;
}


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

.footer-widgets {
	border-top: 1px solid #126B97;
	clear: both;
	/* margin: 30px 10% 0; */
	margin: 30px 0 30px;
	padding-top: 60px;
	text-align:center;
}

.footer-widgets .widget {
	margin-bottom: 20px;
}
.footer-widgets .widget:last-child {
	margin-bottom: 0;
}

.footer-widgets h4 {
	margin-bottom:10px;
}

.footer-widgets a {
	/* border-bottom: 1px solid #126b97; */
	color: #000;
	font-weight: 700;
	padding-bottom: 1px;
}

.footer-widgets a:hover {
	/* border-bottom: 1px solid #126b97; */
	color: #126b97;
}

.footer-widgets li {
	margin-bottom: 10px;
}

.footer-widgets p:last-child {
	margin-bottom: 0;
}
.footer-widgets .button,
input[type="submit"] {
	padding:12px;
}
.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3 {
	width: 30%; /* 300px */
	float:left;
}
.footer-widgets-1 {
	margin-right: 5%; /* 50px */
}
.footer-widgets-3 {
	float:right; /* 50px */
}

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

.site-footer {
	padding: 0 5% 40px;
	text-align: center;
}

.site-footer p {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 0;
	display:inline-block;
	background-color:rgba(255,255,255,0.4);
	padding:4px 10px;
	border-radius:6px;
}

.site-footer a {
	/* border-bottom: 1px solid #126b97; */
	color: #000;
	font-weight: 700;
	padding-bottom: 1px;
}

.site-footer a:hover {
	/* border-bottom: 1px solid #126b97; */
	color: #126b97;
}


/* Home Page Template
---------------------------------------------------------------------------------------------------- */
.home.full-width-content .content {
    width: 100%;
}


/* Home Grid
---------------------------------------------------------------------------------------------------- */

.home-grid:before {
	content: " ";
	display: table;
}
.home-grid:after {
	clear: both;
	content: " ";
	display: table;
}
.home-grid .widget {
}
.home-grid .widget_sp_image {
	position:relative;
	width:320px;
	height:320px;
	float:left;
	margin:0 20px 20px 0;
	line-height:1.25;
	overflow:hidden;
}
.home-grid .image-widget-text-content {
	position:absolute;
	width:100%;
	height:100%;
	top:270px;
	background-color:rgba(35, 31, 32, .6);
	-webkit-transition: top .2s ease-out;
	-moz-transition: top .2s ease-out;
	-o-transition: top .2s ease-out;
	transition: top .2s ease-out;
	padding:15px;
	color:#fff;
	font-size:18px;
}
.home-grid .widget_sp_image:hover .image-widget-text-content {
	top:0;
}
.home-grid .widget_sp_image h4.widget-title {
	margin:0 0 10px;
	color:#fff;
	height: 50px;
}
.home-grid .widget_sp_image:hover h4.widget-title {
	height:auto;
	margin:20px 0 20px 0;
}
.home-grid .widget_sp_image a.button {
	font-size: 14px;
	padding:14px;
}
.home-grid .widget_sp_image a.button:hover {
}
.home-grid .widget:nth-child(3n) {
	margin:0 0 20px 0;
}
.home-grid .widget:nth-child(3n+1) {
	clear:left;
}

/* # Projects Grid
---------------------------------------------------------------------------------------------------- */

#project-grid {
	margin:0 auto;
}
.project-box img {
	margin:0;
	padding:0;
	display:block;
	min-width:100%;
	height:auto;
}
#project-grid .grid-sizer,
.project-box,
a.project-box {
	width:32%;
}
.content-sidebar #project-grid .grid-sizer,
.content-sidebar .project-box,
a.content-sidebar .project-box {
	width:49%;
}
#project-grid .gutter-sizer {
	width: 2%;
}
.project-box,
a.project-box,
#project-grid .masonry-box,
#project-grid .masonry-brick {
    margin: 0 0 18px 0!important;
	overflow:hidden;
}
a.project-box {
	display:block;
}
.project-box br {
	display:none;
}
a.project-info {
	height:100%;
	background-color:rgba(35, 31, 32, .6);
	-webkit-transition: top .2s ease-out;
	-moz-transition: top .2s ease-out;
	-o-transition: top .2s ease-out;
	transition: top .2s ease-out;
    display: block;
    opacity: 0.85;
    position: absolute;
    text-align: center;
    top:calc(100% - 80px);
    left: 0;
	right:0;
	bottom:0;
	color:#fff;
  border-bottom:none!important;
}
.project-box span.spanblock {
	display:block;
  position: relative;
  top:80px;
  transform: translateY(-50%);
}
.content-sidebar .project-box span.spanblock {
    top:66px;
}
.project-box span.button {
	visibility:hidden;
}

.project-nav {
	margin:0 0 20px;
}
.entry-content .project-nav a {
	background-color: #126B97;
	border-color: #126B97;
	border: 1px solid #126B97;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	font-family: Montserrat, sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	padding: 20px;
	text-align: center;
	text-transform: uppercase;
	white-space: normal;
	width: auto;
}

/*
.content-sidebar .entry-content .project-nav a {
	font-size: 12px;
	letter-spacing:normal;
	padding: 10px;
}
*/

.entry-content .project-nav a:hover {
	background-color:#1680B5;
	color:#fff;
}

.entry-content .project-nav a {
	display: inline-block;
	padding: 8px 10px;
	margin: 0 4px 0 0
}
.project-box h2 {
  color:#fff;
  font-size:16px;
  margin:0 0 6px 0;
  padding:0;
}
/* 
.content-sidebar a.project-info h2 {
  font-size:14px;
  margin:0 0 6px 0;
  padding:0;
}
*/
.project-box p {
  color:#fff;
  font-size:15px;
  margin:0 0 10px 0;
  padding:0;
  visibility:hidden;
}
/* --------------------------------------- Hover States */
.entry-content .project-box:hover a.project-info {
	top:0;
}
.project-box:hover span.spanblock {
  top: 50%;
}
.project-box:hover h2 {
  font-size:18px;
}
/* 
.content-sidebar a.project-info:hover h2 {
  font-size:16px;
}
*/
.project-box:hover p {
	visibility:visible;
} 
.project-box:hover span.button {
	visibility:visible;
} 
/* ---------------------------------------- End Hover States */

#project-left-column {
	float:left;
	width:48%;
}
#project-right-column {
	float:right;
	width:48%;
}
#project-right-column a {
	border-bottom:none;
}

#project-left-column p.project-acreage {
	margin:0;
}

/* # Sub-page Grid
---------------------------------------------------------------------------------------------------- */

#subpage-grid {
	margin:0 auto;
	clear:both;
}
.subpage-box img {
	margin:0;
	padding:0;
	display:block;
}
.subpage-box {
	width:32%;
	margin:0 2% 20px 0;
	overflow:hidden;
	display:block;
	float:left;
	position:relative;
}
#subpage-grid .subpage-box:nth-child(3n) {
	margin-right:0;
}
#subpage-grid .subpage-box:nth-child(3n+1) {
	clear:both;
}
.content-sidebar #subpage-grid .subpage-box {
	width:49%;
}
.content-sidebar #subpage-grid .subpage-box:nth-child(3n) {
	margin-right:2%;
}
.content-sidebar #subpage-grid .subpage-box:nth-child(3n+1) {
	clear:none;
}
.content-sidebar #subpage-grid .subpage-box:nth-child(2n) {
	margin-right:0;
}
.content-sidebar #subpage-grid .subpage-box:nth-child(2n+1) {
	clear:both;
}
a.subpage-info {
	height:100%;
	background-color:rgba(35, 31, 32, .6);
	-webkit-transition: top .2s ease-out;
	-moz-transition: top .2s ease-out;
	-o-transition: top .2s ease-out;
	transition: top .2s ease-out;
    display: block;
    opacity: 0.85;
    position: absolute;
    text-align: center;
    top:calc(100% - 60px);
    left: 0;
	right:0;
	bottom:0;
	color:#fff;
  border-bottom:none!important;
  	padding:0 15px;
}
.subpage-box span.spanblock {
	display:block;
  position: relative;
  top:55px;
  transform: translateY(-50%);
}
.subpage-box span.button {
	visibility:hidden;
}

.subpage-box h2 {
  color:#fff;
  font-size:16px;
  margin:0 0 6px 0;
  padding:0;
}
.subpage-box p {
  color:#fff;
  font-size:15px;
  margin:0 0 10px 0;
  padding:0;
  visibility:hidden;
}
/* --------------------------------------- Hover States */
.entry-content .subpage-box:hover a.subpage-info {
	top:0;
}
.subpage-box:hover span.spanblock {
  top: 50%;
}
.subpage-box:hover h2 {
  font-size:18px;
}
.subpage-box:hover p {
	visibility:visible;
} 
.subpage-box:hover span.button {
	visibility:visible;
} 
/* ---------------------------------------- End Hover States */


/* Accordion
---------------------------------------------------------------------------------------------------- */

.accordion h3 {
	position:relative;
	font-size:18px;
	background-color:#007845;
	color:#fff;
	padding:8px;
	margin-bottom:2px;
	outline:none!important;
	cursor:pointer;
}
.accordion h3:hover {
	background-color:#00894f;
}
.accordion h3:before {
	content:"+";
	display:inline-block;
	margin:0 10px 0 10px;
}

.accordion h3.ui-state-default.ui-state-active:before {
	content:"-";
}
.accordion div {
	border: 1px solid #007845;
	padding:15px;
	margin:-2px 0 10px;
}

/* Staff Members (Accordion)
---------------------------------------------------------------------------------------------------- */

.staff-member,
.board-member {
	margin-bottom:0;
}
.staff-member-info,
.board-member-info {
	padding-bottom:20px;
}
.post-140 .entry-header,
.post-142 .entry-content {
	margin:0 0 25px;
}
.staff-member-image,
.board-member-image {
	width:33%;
	float:left;
	margin:0 20px 20px 0;
}
.staff-member p,
.board-member p {
	margin:0 0 14px;
	line-height:normal;
}
/* .people-accordion h3 span.title-position {
	color:#126b97;
} */

.people-accordion h3 {
	position:relative;
	font-size:20px;
	border-top:1px solid #126b97;
	color:#000;
	padding:12px;
	padding-left: 60px;
	margin-bottom:0;
	outline:none!important;
	cursor:pointer;
}
.people-accordion h3.ui-state-default {
	min-height:80px;
}
.people-accordion h3.ui-state-default.ui-state-active {
	min-height:70px;
}
.people-accordion h3.ui-state-default span.ui-icon {
	display:inline-block;
	position:absolute;
	top:0;
	left:0;
	width:40px;
	height:59px;
	background-image:url(images/accordion-icon.png);
	background-repeat:no-repeat;
	background-position:top left;
}
.people-accordion h3.ui-state-default.ui-state-active span.ui-icon  {
	background-position:bottom left;
}
.people-accordion p.title-position {
	font-weight:bold;
	font-size:18px;
}
.people-accordion h3 span.person-name {
	white-space:nowrap;
}
.staff-member p.email-address,
.board-member p.email-address {
	margin-bottom:0;
}
.staff-member p.email-address a,
.board-member p.email-address a {
	border:none;
	color:#1C6A9B;
}


/* Staff Members PLAIN
---------------------------------------------------------------------------------------------------- 

.staff-member,
.board-member {
	border-top: 1px solid #126b97;
	padding-top:30px;
	margin-bottom:30px;
}
.post-140 .entry-header,
.post-142 .entry-content {
	margin:0 0 25px;
}
.staff-member h2,
.board-member h2 {
	font-size:20px;
}
.staff-member-image,
.board-member-image {
	width:33%;
	float:right;
	margin:0 0 20px 20px;
}
.staff-member p,
.board-member p {
	margin:0 0 14px;
	line-height:normal;
}
.staff-member p.title-position,
.board-member p.title-position {
	font-weight:bold;
	margin-top: -16px;
}
.staff-member p.email-address,
.board-member p.email-address {
	margin-bottom:0;
}
.staff-member p.email-address a,
.board-member p.email-address a {
	border:none;
	color:#1C6A9B;
}
*/


/* # Publications Grid
---------------------------------------------------------------------------------------------------- */

#publications-grid {
	margin:0 auto;
}
.publication-box img {
	margin:0;
	padding:0;
	display:block;
}
#publications-grid .grid-sizer,
a.publication-box {
	width:32%;
	display:block;
  text-align:center;
	padding:10px;
	background-color:#fff;
}
a.publication-box {
	border:1px solid #1C6A9B;
}
a.publication-box:hover {
	/* border-bottom:none; */
}
#publications-grid .gutter-sizer {
	width: 2%;
}
a.publication-box,
#publications-grid .masonry-box,
#publications-grid .masonry-brick {
    margin: 0 0 18px 0!important;
	overflow:hidden;
}
a.publication-box h2 {
  color:#000;
  font-size:16px;
  margin:10px 0 0 0;
  padding:0;
}
a.publication-box p {
  color:#000;
  font-size:15px;
  margin:0 0 10px 0;
  padding:0;
  visibility:hidden;
}

/* News Grid
---------------------------------------------------------------------------------------------------- */
#news-grid {
}
.news-box {
	width: 32%;
	float:left;
	margin:0 2% 20px 0;
	border:1px solid #1C6A9B;
	padding:10px;
	background-color:#fff;
}
.news-box:nth-child(3n) {
	margin-right:0;
}
.news-box:nth-child(3n+1) {
	clear:both;
}
.news-box h2.entry-title {
	font-size:16px;
	margin-bottom:6px;
	text-transform:none;
}
.news-box a {
	border-bottom:none!important;
	color:#000;
}
.news-box .entry-meta {
	text-align:center;
}
.event-date {
    font-size:120%;
}
/* Misc
---------------------------------------------------------------------------------------------------- */
p.more-from-category {
	clear:both;
}

.google-maps {
	clear:both;
	position: relative;
	padding-bottom: 75%;
	height: 0;
	overflow: hidden;
}
.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
.wpv-filter-form ul {
	margin:0;
	padding:0;
}
.wpv-filter-form ul li {
	list-style-type:none;
	margin:0;
	padding:0;
	display:inline-block;
}
.wpv-filter-form ul li a,
.wpv-filter-form ul li span.wpv-filter-pagination-link {
	display:inline-block;
	padding:4px;
	background-color:#1C6A9B;
	color:#fff;
	width:38px;
	height:34px;
	margin:0 2px 0 0;
	text-align:center;
}
.wpv-filter-form ul li a:hover {
	color:#fff;
	background-color:#1680B5;
}
.wpv-filter-form ul li span.wpv-filter-pagination-link {
	background-color:#007845;
}

/* 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) {

	.genesis_responsive_slider #genesis-responsive-slider .flex-direction-nav li a {
		background-image: url(images/icon-direction-nav@2x.png);
	}
	
}

@media only screen and (max-width: 1140px) {
	
	.site-container {
		padding: 0 30px 60px;
		margin: 40px auto;
		max-width: 930px;
	}
	
	.site-header {
		margin:0 -30px 20px -30px;
	}
	
	.navigation-container {
		margin:-145px -30px 40px -30px;
	}
	
	.nav-primary,
	.nav-secondary {
		/* padding-left: 40px;
		padding-right: 40px; */
		padding:0;
		text-align:center;
		margin:0;
		width:35%;
	}
	.nav-primary {
		padding-right:60px;
		background-size:60px 100px;
	}
	
	.nav-secondary {
		padding-left:60px;
		background-size:60px 100px;
	}
	.nav-primary .wrap {
		padding-left:30px;
	}
	.nav-secondary .wrap {
		padding-right:30px;
	}
	.genesis-nav-menu .menu-item {
		display: block;
	}
	.genesis-nav-menu a {
		padding: 18px 50px 18px 24px;
	}
	.content {
		width:65%;
	}
	.breadcrumb {
		margin-top: 0;
	}
	.home-grid .widget_sp_image {
		width:280px;
		height:280px;
		margin:0 15px 15px 0;
	}
	.home-grid .image-widget-text-content {
		top:210px;
		padding:15px;
		font-size:16px;
	}
	.home-grid .widget_sp_image h4.widget-title {
		margin:0 0 10px;
		height: 70px;
	}
	.home-grid .widget_sp_image p {
		margin:0 0 20px;
	}
	.home-grid .widget_sp_image:hover h4.widget-title {
		margin:10px 0 10px 0;
	}
	.home-grid .widget_sp_image a.button {
		font-size: 14px;
		padding:14px;
	}
	.home-grid .widget:nth-child(3n) {
		margin:0 0 15px 0;
	}
	.home-grid .widget:nth-child(3n+1) {
		clear:left;
	}
	.footer-widgets-1,
	.footer-widgets-2 {
		width: 27%; /* 300px */
	}
	.footer-widgets-3 {
		width:36%;
	}
	.sidebar .widget {
		margin-bottom: 45px;
		padding: 40px 20px 20px;
	}
	.page-id-116 td {
		width:100%;
		display:table-row;
		border:none;
		padding-bottom:10px;
		line-height:normal;
	}
	.page-id-116 th {
		display:none;
	}
	.page-id-116 tr {
		display:table;
		margin-bottom:10px;
	}
	
}

@media only screen and (max-width: 950px) {
	.site-header {
		margin:0;
	}
	.navigation-container {
		margin:-20px 0 20px;
	}
	.nav-primary, 
	.nav-secondary {
		margin: 0;
		padding: 0;
		text-align: center;
		width: 100%;
		background:none;
		float:none;
	}
	.nav-primary .wrap, 
	.nav-secondary .wrap {
		padding:0;
	}
	
	/* Responsive Navigation
	--------------------------------------------- */
	
	.responsive-menu-icon,
	.responsive-menu .menu-item-has-children {
		cursor: pointer;
	}
	
	.responsive-menu .menu-item,
	.responsive-menu-icon {
		display: block;
	}
	
	.responsive-menu,
	.responsive-menu > .menu-item > .sub-menu {
		display: none;
	}
	
	.responsive-menu-icon {
		text-align: center;
	}
	
	.responsive-menu-icon::before {
		color: #fff;
		content: "\f333";
		display: inline-block;
		font: normal 24px/1 'dashicons';
		margin: 0 auto;
		padding: 10px;
	}
	
	.responsive-menu > .menu-item-has-children:before {
		clear: both;
		content: "\f347";
		float: right;
		font: normal 14px/1 'dashicons';
		height: 14px;
		padding: 15px 20px 15px 20px;
		right: 0;
		text-align: right;
		z-index: 9999;
		color:#fff;
	}
	
	.responsive-menu .menu-open.menu-item-has-children:before {
		content: "\f343";
	}
	
	.responsive-menu .sub-menu .sub-menu {
		margin: 0 0 0 25px;
	}
	.genesis-nav-menu a {
		text-align:left;
	}
	.genesis-nav-menu .sub-menu {
		background-color: rgba(255, 255, 255, 0.05);
		left: auto;
		opacity: 1;
		position: relative;
		transition: opacity 0.4s ease-in-out 0s;
		z-index: 99;
		box-shadow:none;
		text-align:left;
		width:100%;
		padding:0 0 20px;
	}
	.genesis-nav-menu .sub-menu::before {
		border:0;
		margin:0;
		position:relative;
		bottom:inherit;
		left:inherit;
	}
	.genesis-nav-menu .menu-item:hover > .sub-menu {
		left: inherit;
		margin-left: 0;
		opacity: 1;
	}
	.genesis-nav-menu .sub-menu a {
		border:none;
		letter-spacing: 0;
		padding: 14px 24px;
		text-align: left;
		width: 100%;
	}
	.content,
	.sidebar,
	.footer-widgets-1, 
	.footer-widgets-2, 
	.footer-widgets-3 {
		float: none;
		width: 100%;
	}
	.footer-widgets {
		padding-top:20px;
		margin: 15px 0 15px;
	}
	.footer-widgets-1, 
	.footer-widgets-2, 
	.footer-widgets-3 {
		margin:0 0 20px;
	}
	.site-container {
		margin: 40px auto;
		max-width: 930px;
		padding: 0 30px 30px;
	}
	
	.home-grid .widget_sp_image {
		width:49%;
		height:auto;
		margin:0 2% 15px 0;
	}
	.home-grid .image-widget-text-content {
		top:85%;
		padding:15px;
		font-size:16px;
	}
	.home-grid .widget_sp_image h4.widget-title {
		margin:0 0 10px;
		height: 70px;
	}
	.home-grid .widget_sp_image p {
		margin:0 0 20px;
	}
	.home-grid .widget_sp_image:hover h4.widget-title {
		margin:30px 0 10px 0;
	}
	.home-grid .widget_sp_image a.button {
		font-size: 14px;
		padding:14px;
	}
	.home-grid .widget:nth-child(3n) {
		margin:0 inherit 15px 0;
	}
	.home-grid .widget:nth-child(3n+1) {
		clear:inherit;
	}
	.home-grid .widget:nth-child(odd) {
		clear:left;
		margin:0 2% 15px 0;
	}
	.home-grid .widget:nth-child(even) {
		margin:0 0 15px 0;
	}
	.entry-content .project-nav a {
		font-size: 14px;
		font-weight: 400;
		letter-spacing: normal;
	}
	.sidebar .featured-content article {
		float: left;
		margin: 0 2% 0 0;
		width: 31.3%;
	}
	.sidebar .featured-content .alignleft, .sidebar .featured-content .alignright {
		height: auto;
		max-width: 100%;
	}
	#publications-grid .gutter-sizer {
		width: 1.5%;
	}
}
@media only screen and (max-width: 730px) {
	.site-container {
		margin: 20px auto;
	}
	.home-grid .widget_sp_image p {
		display:none;
	}
	.home-grid .widget_sp_image p:last-child {
		display:inline-block;
	}	
	.home-grid .widget_sp_image:hover h4.widget-title {
		margin:50px 0 10px 0;
	}
	.home-grid .image-widget-text-content {
		font-size: 14px;
		padding: 15px;
		top: 70%;
	}
	.home-grid .widget_sp_image h4.widget-title {
		font-size:16px;
	}
	.home-grid .widget_sp_image:hover h4.widget-title {
		font-size:18px;
	}
	.welcome-message {
		margin: 20px 0 50px;
		font-size: 18px;
	}
	a.publication-box h2 {
		font-size: 14px;
	}
	
	.subpage-box {
		width:49%;
		margin:0 2% 20px 0;
	}
	#subpage-grid .subpage-box:nth-child(3n) {
		margin:0 2% 20px 0;
	}
	#subpage-grid .subpage-box:nth-child(3n+1) {
		clear:none;
	}
	#subpage-grid .subpage-box:nth-child(2n) {
		margin-right:0;
	}
	#subpage-grid .subpage-box:nth-child(2n+1) {
		clear:both;
	}
	a.subpage-info {
		/*
		height:100%;
		background-color:rgba(35, 31, 32, .6);
		-webkit-transition: top .2s ease-out;
		-moz-transition: top .2s ease-out;
		-o-transition: top .2s ease-out;
		transition: top .2s ease-out;
		display: block;
		opacity: 0.85;
		position: absolute;
		text-align: center;
		*/
		top:calc(100% - 60px);
		left: 0;
		right:0;
		bottom:0;
		color:#fff;
	  border-bottom:none!important;
		padding:0 15px;
	}
	.subpage-box span.spanblock {
	  top:55px;
	  transform: translateY(-50%);
	}
	
	.subpage-box h2 {
	  font-size:16px;
	  margin:0 0 6px 0;
	  padding:0;
	}
	.subpage-box p {
	  font-size:15px;
	  margin:0 0 10px 0;
	  padding:0;
	  visibility:hidden;
	}
	/* --------------------------------------- Hover States */
	.subpage-box:hover span.spanblock {
	  top: 50%;
	}
	.subpage-box:hover h2 {
	  font-size:18px;
	}
	/* ---------------------------------------- End Hover States */
	#project-grid .grid-sizer, #project-grid .project-box, #project-grid a.project-box {
		width: 49%;
	}
	.accordion h3 {
		font-size: 16px;
		letter-spacing:normal;
	}
	.news-box h2.entry-title {
		font-size: 14px;
	}
	
	.one-third {
		float:none;
		width:100%;
	}
	#project-left-column,
	#project-right-column {
		float:none;
		width:100%;
		margin-bottom:20px;
	}
}
@media only screen and (max-width: 540px) {
	.site-container {
		margin: 0 auto;
		padding:0 20px;
	}
	
	.home-grid .widget_sp_image {
		width:100%;
		height:auto;
		margin:0 0 15px 0;
	}
	.home-grid .image-widget-text-content {
		font-size: 14px;
		padding: 15px;
		top: 80%;
	}
	.home-grid .widget_sp_image:hover h4.widget-title {
		margin:80px 0 10px 0;
	}
	
	.sidebar .featured-content article,
	.home-sidebar.sidebar .featured-content article,
	.subpage-box,
	.content-sidebar #subpage-grid .subpage-box  {
		float: none;
		margin: 0 0 15px 0;
		width: 100%;
	}
	
	.sidebar .featured-content .alignleft, .sidebar .featured-content .alignright {
		height: auto;
		max-width: 30%;
	}
	.header-widget-area .button {
		/* display:none; */
        margin-right:-20px;
        padding:6px 12px;
	}
	a.alignleft, 
	img.alignleft, 
	a.alignright,
	img.alignright {
		float:none;
		text-align:left;
		margin:0 0 15px 0;
		padding:0;
	}
	.featured-content img {
		margin-bottom: 4px;
	}
	.people-accordion h3 {
		font-size: 14px;
		padding: 12px 12px 12px 60px;
	}
	.people-accordion h3 span.person-name {
		white-space:inherit;
	}
	a.publication-box,
	#publications-grid .grid-sizer {
		width: 48%;
	}
	#publications-grid .gutter-sizer {
		width: 2%;
	}
	#project-grid .grid-sizer, #project-grid .project-box, #project-grid a.project-box {
		width: 100%;
	}
	#project-grid .gutter-sizer {
		width: 0;
	}
	.news-box {
		width:49%;
		margin:0 2% 20px 0;
	}
	#news-grid .news-box:nth-child(3n) {
		margin:0 2% 20px 0;
	}
	#news-grid .news-box:nth-child(3n+1) {
		clear:none;
	}
	#news-grid .news-box:nth-child(even) {
		margin-right:0;
	}
	#news-grid .news-box:nth-child(odd) {
		clear:both;
	}
}