/*
	Theme Name: Deep Springs College
	Theme URI: http://www.deepsprings.edu/
	Description: This is Deep Springs College's custom child theme created for the Genesis Framework.
	Author: Adam J. Barkafski, Dream Seed Multimedia
	Author URI: http://www.dreamseedmultimedia.com/
	
	Version: 1.0
		
	Template: genesis
	Template Version: 2.2.2
	
	License: This child theme may not be copied, reproduced, or redistributed without the express written permission of the child theme owner.
*/


/* Table of Contents

	00 Notes
	01 Reset
	02 Defaults
	03 Typography
		- 03a Font Family
		- 03b Font Color
		- 03c Font Size
		- 03d Font Miscellaneous
	04 Layout
		- 04a Structure
		- 04b Grid System
	05 Header
	06 Menus
		- 06a Primary Navigation Responsive Presentation
		- 06b Primary Navigation Extras
	07 Main Content
		- 07a Post Info & Meta
		- 07b Post Navigation
		- 07c Comments
		- 07d Column Classes
		- 07e Miscellaneous
	08 Sidebars
	09 Footer
		- 09a Footer Widgets
	10 Headings
	11 Lists
	12 Images, Videos, & Captions
	13 Forms & Buttons
		- 13a Gravity Forms
	14 Tables
	15 Media Queries
		- 15a media: print
		- 15b min-width: 480px
		- 15c min-width: 900px
		- 15d min-width: 1100px

*/


/*
=00 Notes
--------------------------------------------------------------

---------- Units for size

This stylesheet uses rem values with a pixel fallback. The rem values (and line heights) are calculated using two variables:

$rembase:     16;
$line-height: 24;

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.3125rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 14px;
	font-size: 0.875rem; (14 / $rembase)
	line-height: 1.714285714; ($line-height / 14)


/*
=01 Reset
---------------------------------------------------------------------------------------------------- 

*/

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
	vertical-align: baseline;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	font-weight: 400;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden] {
	display: none;
}

html {
	overflow-y: scroll; /* ensures the scrollbar always appears (so there's no "jumpiness" when page size changes) */
	-webkit-overflow-scrolling: touch;
	font-size: 100%; /* 16px browser default; $rembase */
	-webkit-text-size-adjust: 100%; /* prevents mobile browsers from adjusting the page font */
	-ms-text-size-adjust:     100%; /* prevents mobile browsers from adjusting the page font */
}

body {
	line-height: 1.0;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}


img {
	-ms-interpolation-mode: bicubic; /* scales images better in IE */
}

svg:not(:root) {
	overflow: hidden;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

button,
input,
select,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: 100%;
	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;
	-webkit-box-sizing: content-box;
	-moz-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;
}

:focus {/* remember to define focus styles! */
     outline: 0;
}

@-webkit-viewport {
	width: device-width;
}

@-moz-viewport {
	width: device-width;
}

@-ms-viewport {
	width: device-width;
}

@-o-viewport {
	width: device-width;
}

@viewport {
	width: device-width;
}


/*
=02 Defaults
---------------------------------------------------------------------------------------------------- 

*/

html {
	-webkit-tap-highlight-color: #393326; /* overrides highlight color shown when user taps a link or a JavaScript clickable element in Safari on iPhone */
}

body,
input,
select,
textarea,
.nav-primary,
.sidebar .widget,
.site-footer .widget,
.wrap {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

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;
}

/* sets colors when selection is highlighted by user */
::-moz-selection {
	background-color: #393326;
	color: #fff;
}

/* sets colors when selection is highlighted by user */
::selection {
	background-color: #393326;
	color: #fff;
}

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
	/*width: auto;*/ /* IE8 */
}

a img {
	border: 0;
}

/* Hide offscreen but not from screen readers */
label.copy,
.assistive-text,
.home .entry-title,
.search-submit,
.site-description,
/*.site-title,*/
.vcard .country-name,
.vcard .url {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden; 
}

/* Hide completely for screen media */
.bsearch_date,
.bsearch_score,
.bsearchform,
.print {
     display: none;
}

/* clearing floats */	
address:before, address:after,
article:before, article:after,
aside:before, aside:after,
audio:before, audio:after,
blockquote:before, blockquote:after,
canvas:before, canvas:after,
dd:before, dd:after,
div:before, div:after,
dl:before, dl:after,
fieldset:before, fieldset:after,
figcaption:before, figcaption:after,
figure:before, figure:after,
footer:before, footer:after,
form:before, form:after,
header:before, header:after,
hr:before, hr:after,
main:before, main:after,
output:before, output:after,
pre:before, pre:after,
section:before, section:after,
table:before, table:after,
tfoot:before, tfoot:after,
video:before, video:after,
.clear:before, .clear:after,
.clearfix:before, .clearfix:after,
.format-status .entry-header:before, .format-status .entry-header:after,
.nav-primary:before, .nav-primary:after,
.site-footer:before, .site-footer:after,
.wrapper:before, .wrapper:after {
	display: table;
	content: "";
}

/* clearing floats */
address:after,
article:after,
aside:after,
audio:after,
blockquote:after,
canvas:after,
dd:after,
div:after,
dl:after,
fieldset:after,
figcaption:after,
figure:after,
footer:after,
form:after,
header:after,
hr:after,
main:after,
output:after,
pre:after,
section:after,
table:after,
tfoot:after,
video:after,
.clearfix:after,
.clear:after,
.format-status .entry-header:after,
.nav-primary:after,
.site-footer:after,
.wrapper:after {
	clear: both;
}


/*
=03 Typography
---------------------------------------------------------------------------------------------------- 

*/

/* =03a - Font family ----------- */

/*@font-face {
	font-family: 'NoticiaTextRegular';
	src: url('fonts/NoticiaText-Regular-webfont.eot');
	src: url('fonts/NoticiaText-Regular-webfont.eot?#iefix') format('embedded-opentype'),
		url('fonts/NoticiaText-Regular-webfont.woff') format('woff'),
		url('fonts/NoticiaText-Regular-webfont.ttf') format('truetype'),
		url('fonts/NoticiaText-Regular-webfont.svg#NoticiaTextRegular') format('svg');
	font-weight: normal;
	font-style: normal;
}*/

body,
input,
textarea,
.author-box h1 {
	font-family: "Noto Serif", "Lucida Bright", "Lucida Fax", Georgia, "Deja Vu Serif", "Bitstream Vera Serif", serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title a,
.site-title {
	font-family: "Noto Serif", "Lucida Bright", "Lucida Fax", Georgia, "Deja Vu Serif", "Bitstream Vera Serif", serif;
}

code,
kbd {
	font-family: Monaco, "Courier New", Courier, monospace;
}

/* =03b - Font color ----------- */

a:hover,
body,
h2 a,
h2 a:visited,
h4.widgettitle a,
input,
select,
textarea,
.entry-header .entry-meta,
.entry-footer .entry-meta,
.entry-meta-author,
.entry-meta-comments,
.entry-meta-time,
.nav-primary a,
.nav-primary li li a,
.nav-primary li li a:link,
.nav-primary li li a:visited {
	color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #554d3a;
}

a,
h2 a:hover,
.bsearch_results_page h2 a/*,
.genesis-nav-menu li a:hover,
.genesis-nav-menu li:hover a,
.genesis-nav-menu li li a:hover,
.genesis-nav-menu .current-menu-item a*/ {
	color: #005099;
}

blockquote::before,
blockquote p,
 {
	color: #999;
}

button,
input[type="button"],
input[type="submit"],
.genesis-nav-menu .highlight-menu-item a,
.genesis-nav-menu .highlight-menu-item a:hover,
.nav-footer a,
.nav-footer li li a,
.nav-footer li li a:link,
.nav-footer li li a:visited,
.pagination li a,
.pagination li a:hover,
.pagination li.active a,
.pagination li.disabled,
.site-footer,
.site-title a,
.site-title a:hover {
	color: #fff;
}

::-moz-placeholder {
	color: #999;
	opacity: 1;
}

::-webkit-input-placeholder {
	color: #999;
}


/* =03c - Font size ----------- */

h1,
.entry-title,
.entry-title a,
.site-title,
.taxonomy-description .archive-title {
	font-size: 36px;
	font-size: 2.25rem;
}

blockquote::before {
	font-size: 32px;
	font-size: 2rem;
}

h2,
.archive .entry-title,
.archive .entry-title a {
	font-size: 24px;
	font-size: 1.5rem;
}

.search-results .entry-title,
.search-results .entry-title a,
.taxonomy-description h1,
.widgettitle {
	font-size: 20px;
	font-size: 1.25rem;
}

h3,
h4 {
	font-size: 18px;
	font-size: 1.125rem;
}

h5,
h6,
.author-box h1,
.genesis-nav-menu,
.nav-primary h3,
.sidebar h2 a {
	font-size: 16px;
	font-size: 1rem;
}

input,
select,
textarea,
.entry-header .entry-meta,
.entry-footer .entry-meta,
.genesis-nav-menu .sub-menu li a,
.site-footer p,
.wp-caption {
	font-size: 14px;
	font-size: 0.875rem;
}

/* =03d - Font miscellaneous ----------- */

blockquote p,
dfn,
em,
h6,
i,
.title {
	font-style: italic;
}

cite {
	font-style: normal;
}

b,
button,
h3,
h5,
input[type="button"],
input[type="submit"],
strong,
.archive .entry-title,
.archive .entry-title a,
.entry-meta-comments,
.site-title,
.wp-caption {
	font-weight: 700; /* Use 700 instead of bold to future-proof Google Fonts. */
}

h1,
h2,
h3,
h4,
h5,
h6,
.archive-title,
.entry-title a,
.site-title {
	text-rendering: optimizeLegibility; /* fixes kerning pairs and ligatures to improve legibility */
}

.site-title {
	font-weight: 400;
	text-transform: uppercase;
}

.wp-caption {
	text-align: center;
}

h2 a,
h2 a:visited,
.genesis-nav-menu a,
.pagination li a,
.site-title a,
.widgettitle a {
	text-decoration: none;
}

.bsearch_results_page h2 a {
	text-decoration: underline;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
	cursor: pointer;
}

abbr {
	cursor: help;
}

sub,
sup {
	position: relative;
	vertical-align: baseline;
	font-size: 75%;
	line-height: 0;	
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}


/*
=04 Layout
---------------------------------------------------------------------------------------------------- 

*/

body {
	text-align: center;
	background: #fbfce0; /*#fbf0e0*/
}

.wrap {
	margin: 0 auto;
	min-width: 320px;
	max-width: 1280px;
	max-width: 80rem;
	padding: 0 24px;
	padding: 0 1.5rem;
	text-align: left;
}

/*.footer-widgets,
.nav-primary,
.nav-secondary,
.site-footer,
.site-header,
.site-inner {
	margin: 0 24px;
	margin: 0 1.5rem;
}*/

.site-inner {
	clear: both;
	overflow: hidden;
	padding-top: 48px;
	padding-top: 3rem;
}

.site-inner .wrap {
	max-width: 1120px;
	max-width: 70rem;	
}


/*
=05 Header
---------------------------------------------------------------------------------------------------- 

*/

.site-header {
	min-height: 150px;
	overflow: hidden;
	/*padding-bottom: 24px;
	padding-bottom: 1.5rem;*/
	background: #8e8060 url(images/header-bg.jpg) center center no-repeat;
}

/*.home .site-header {
	min-height: 300px;
}*/

.site-header .wrap {
	position: relative;
}

.header-logo {
	display: block;
	width: 160px;
	height: 160px;
	background: url(images/dsc-logo.png) no-repeat;
	background-size: 160px 160px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	margin: 0 auto;
}

.site-logo {
	position: relative;
	display: block;
	margin: 24px auto;
	padding: 0;
	width: 160px;
	height: 160px;
	overflow: hidden;
}

.home .site-logo {
	width: 260px;
	height: 260px;	
}


/*
=06 Menus
---------------------------------------------------------------------------------------------------- 

*/

.genesis-nav-menu {
	clear: both;
	width: 100%;
}

.genesis-nav-menu a {
	display: block;
}

.genesis-nav-menu .menu-item:hover,
.genesis-nav-menu.responsive-menu .menu-item:hover {
	position: static;
}

.nav-primary {
	background: #bbb3a0;
	z-index: 101;
	/*-webkit-transition: all .3s ease-in-out;
	-moz-transition:    all .3s ease-in-out;
	-ms-transition:     all .3s ease-in-out;
	-o-transition:      all .3s ease-in-out;
	transition:         all .3s ease-in-out;*/
}

.nav-footer a,
.nav-primary a {
	position: relative;
	padding: 12px 20px;
	padding: 0.75rem 1.25rem;
}

.nav-footer a:hover {
	text-decoration: underline;
}

.nav-primary .wrap {
	padding: 0;
}

/*.nav-primary h3 {
	margin: 0;
	padding: 12px 20px;
	padding: 0.75rem 1.25rem;
	text-align: center;
	cursor: pointer;
}

.nav-primary h3:before {
	padding-right: 6px;
	content: "\f333";
	font-family: "dashicons";
	font-size: 28px;
	vertical-align: middle;
}*/

.nav-primary.fixed {
	position: fixed;
	top: 0;
	width: 100%;
}

.admin-bar .nav-primary.fixed {
	top: 32px;
}

.genesis-nav-menu.responsive-menu {
	display: none;
	float: none;
	padding-bottom: 20px;
}

.nav-primary #menu-main-menu > li:last-child {
	background: #d2ccbf;
}

.genesis-nav-menu .sub-menu li {
	padding-left: 32px;
	position: relative;
}

.nav-primary:hover .genesis-nav-menu a:hover {
	color: #fff;
}

.nav-primary:hover .genesis-nav-menu .menu-item-has-children a:hover,
.nav-primary:hover .genesis-nav-menu .sub-menu .menu-item-has-children.menu-item a:hover {
	color: #333;
	cursor: default;
}

.nav-primary:hover .genesis-nav-menu .menu-item-has-children .menu-item a:hover,
.nav-primary:hover .genesis-nav-menu .sub-menu .menu-item-has-children .sub-menu .menu-item a:hover {
	color: #fff;
	cursor: pointer;
}

.genesis-nav-menu.responsive-menu .menu-item,
.responsive-menu-icon {
	display: block;
}

.genesis-nav-menu.responsive-menu .menu-item-has-children {
	cursor: pointer;
}

.genesis-nav-menu.responsive-menu .menu-item-has-children > a {
	margin-right: 60px;
}

.genesis-nav-menu.responsive-menu > .menu-item-has-children:before {
	/*float: right;*/
	position: absolute;
	z-index: 499;
	height: 20px;
	width: 90%;
	padding: 7px 20px;
	/*right: 0;*/
	text-align: right;
	font: normal 20px/1 "dashicons";
	content: "\f347";
}

.genesis-nav-menu.responsive-menu .menu-open.menu-item-has-children:before {
	content: "\f343";
}

.genesis-nav-menu.responsive-menu > .menu-item > .sub-menu {
	display: none;
}

.genesis-nav-menu.responsive-menu .sub-menu {
	background: none;
	left: auto;
	opacity: 1;
	position: relative;
	width: 100%;
}

.genesis-nav-menu.responsive-menu .sub-menu .sub-menu {
	margin: 0 auto;
	padding: 0 0 0 20px;
}

.genesis-nav-menu .highlight {
	float: none;
}

.responsive-menu-icon {
	cursor: pointer;

	margin: 15px auto 10px;
	text-align: center;
}

.responsive-menu-icon:before {
	content: "\f333";
	font: normal 20px/1 "dashicons";
	margin: 0 auto;
}


/* =06b - Primary Navigation Extras ----------- */

.genesis-nav-menu > .right {
	display: inline-block;
	float: right;
	padding: 28px 0;
	padding: 1.75rem 0;
	list-style-type: none;
}

.genesis-nav-menu > .right > a {
	display: inline;
	padding: 0;
}

.genesis-nav-menu > .rss > a {
	margin-left: 48px;
	margin-left: 3rem;
}

.genesis-nav-menu > .search {
	padding: 14px 0 0;
	padding: 3rem 0 0;
}

.genesis-nav-menu .search-form {
	width: 100%;
}


/*
=07 Main Content
---------------------------------------------------------------------------------------------------- 

*/

.content {
	padding-bottom: 24px;
	padding-bottom: 1.5rem;
}

.entry {
	border-radius: 3px;
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
	/*padding: 48px 40px 24px;
	padding: 3rem 2.5rem 1.5rem;*/
}

.entry-content {
	overflow: hidden;
}

.entry-content,
.entry-content p,
.bsearch_results_page p {
	line-height: 1.5;
}

.entry-content p {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

blockquote {
	padding: 24px 64px;
	padding: 1.5rem 4rem;
}

blockquote::before {
	display: block;
	position: relative;
	top: -10px;
	left: -20px;
	height: 0;
	content: "“";
}

#bsearchresults p + h2 {
	margin-top: 48px;
	margin-top: 3rem;
}

.entry-content .cycloneslider {
	width: auto;
	margin: 0 auto;
}

.slideleft {
	width: auto;
	margin: 0 auto 24px;
	margin: 0 auto 1.5rem;
}

.slideright {
	width: auto;
	margin: 0 auto 24px;
	margin: 0 auto 1.5rem;
}

/* 07a - Post Info & Meta ----------- */

.entry-meta {
	clear: both;
	line-height: 1.714285714;
}

.entry-header .entry-meta {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.entry-footer .entry-meta {
	margin: 0 -40px;
	margin: 0 -2.5rem;
	padding: 12px 40px;
	padding: .75rem 2.5rem;
}

.search-results .entry-footer .entry-meta  {
	border-top: 0;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
	margin: 0 0.375rem 0 0.125rem;
}

.entry-categories,
.entry-tags {
	display: block;
}

/* 07b - Post Navigation ----------- */

.pagination {
	clear: both;
	margin: 48px 0;
	margin: 3rem 0;
}

.entry .pagination a {
	/*border-bottom: 1px solid #ccc;*/
}

.pagination li {
	display: inline;
}

.pagination li a {
	display: inline-block;
	/*border-radius: 3px;*/
	padding: 12px;
	padding: 0.75rem;
	background-color: #554d3a;
	cursor: pointer;
}

.pagination li a:hover,
.pagination li.active a {
	background-color: #005099;
}

/* 07c - Comments ----------- */

.entry-comments,
#respond {		
	padding: 40px;
	padding: 2.5rem;
	overflow: hidden;
	line-height: 1.5;
	background: #fff;
}

.ping-list,
.entry-comments,
#respond {
	margin-bottom: 48px;
	margin-bottom: 3rem;
}

.entry-comments a,
#respond a {
	border-bottom: 1px solid #ddd;
}

.entry-comments .comment-author {
	margin: 0;
}

#respond input[type="email"],
#respond input[type="text"],
#respond input[type="url"] {
	width: 50%
}

#respond label {
	display: block;
	margin-right: 12px;
	margin-right: 0.75rem;
}

.comment-list li,
.ping-list li {
	margin-top: 24px;
	margin-top: 1.5rem;
	padding: 24px 32px;
	padding: 1.5rem 2rem;
	list-style-type: none;
}

.comment-list li li {
	margin-right: -32px;
	margin-right: -2rem;
}

li.comment {
	border: 2px solid #fff;
	border-right: 0;
	background: #f5f5f5;
}

.comment .avatar {
	margin: 0 16px 24px 0;
	margin: 0 1.6rem 2.4rem 0;
}

.bypostauthor {
}

.form-allowed-tags {
	background: #f5f5f5;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 24px;
	padding: 2.4rem;
}

/* 07d - Column Classes ----------- */

.five-sixths,
.four-fifths,
.four-sixths,
.one-fifth,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fifths,
.three-fourths,
.three-sixths,
.two-fifths,
.two-fourths,
.two-sixths,
.two-thirds {
	margin: 0;
	width: 100%;
}

/* 07e - Miscellaneous ----------- */

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

.aligncenter {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.5rem
}

.author-box,
.author-box h1,
.taxonomy-description {
	line-height: 1.5;
}

.archive-description,
.author-box {
	margin-bottom: 48px;
	margin-bottom: 3rem;
}

.archive-description {
	/*padding: 48px 40px 24px;
	padding: 3rem 2.5rem 1.5rem;*/
}

.author-box {
	padding: 48px 40px;
	padding: 3rem 2.5rem;
}

.author-box p {
	margin: 0;
}

.author-box .avatar {
	margin-right: 24px;
	margin-right: 1.5rem;
}

.taxonomy-description {
	margin-bottom: 48px;
	margin-bottom: 3rem;
	overflow: hidden;
	/*padding: 24px 32px;
	padding: 1.5rem 2rem;*/
	/*background-color: #f5f5f5;*/
}

.breadcrumb {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.search-results article {
	border-top: 1px solid #ccc;
}


/*
=08 Sidebars
---------------------------------------------------------------------------------------------------- 

*/

.sidebar {
	display: inline;
	line-height: 1.5;
}

.sidebar p {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.sidebar li {
	margin-bottom: 12px;
	margin-bottom: 0.75rem;
	padding: 0;
	list-style-type: none;
	word-wrap: break-word;
}

.sidebar p:last-child,
.sidebar ul {
	margin: 0;
}

.sidebar ul > li:last-child {
	margin-bottom: 0;
}

.sidebar .widget {
	display: inline-block;
	width: 100%;
	border-bottom: 1px solid #ccc;
	margin-bottom: 36px;
	margin-bottom: 2.25rem;
	padding-bottom: 36px;
	padding-bottom: 2.25rem;
	vertical-align: top;
	overflow: hidden;
}

.sidebar.widget-area ul li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.375rem;
	word-wrap: break-word;
}

.sidebar .search-form {
	width: 100%;
}

.sidebar .enews-widget {
	background: #333;
}


/*
=09 Footer
---------------------------------------------------------------------------------------------------- 

*/

.site-footer {
	background: #554d3a;
	padding-bottom: 24px;
	padding-bottom: 1.5rem;
	line-height: 1.5;
}

.site-footer .wrap {
	overflow: hidden;
	padding: 24px;
	padding: 1.5rem;
}

.site-footer .copyright,
.site-footer .gototop {
	margin: 12px 0;
	margin: 0.75rem 0;
}

/* 09a - Footer Widgets ----------- */

.site-footer .widget-area,
.footer-widgets {
	clear: both;
	padding: 32px 0 16px;
	padding: 2rem 0 1rem;
	overflow: hidden;
}

.site-footer .widget-area p,
.footer-widgets p {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.site-footer .widget-area .widget,
.footer-widgets .widget {
	display: inline-block;
	width: 100%;
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
	vertical-align: top;
}

.footer-widgets li {
	margin-bottom: 6px;
	margin-bottom: 0.375rem;
	list-style-type: none;
	word-wrap: break-word;
}


/*
=10 Headings
---------------------------------------------------------------------------------------------------- 

*/

h1,
.entry-title a {
	line-height: 1.333333333;
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

h2, 
h3, 
h4, 
h5, 
h6 {
	line-height: 1.5;
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.author-box h1 {
	margin: 0
}

.taxonomy-description h1 {
	margin-bottom: 4px;
	margin-bottom: 0.25rem;
}

.archive-title {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}


/*
=11 Lists
---------------------------------------------------------------------------------------------------- 

*/

.entry-content ol,
.entry-content ul {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.entry-content ol li,
.entry-content ul li {
	margin-left: 40px;
	margin-left: 2.5rem;
	line-height: 1.5;
}

.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;
}


/*
=12 Images, Videos, & Captions
---------------------------------------------------------------------------------------------------- 

*/

.avatar {
	float: left;
}

.alignleft .avatar {
	margin-right: 24px;
	margin-right: 1.5rem;
}

.alignright .avatar {
	margin-left: 24px;
	margin-left: 1.5rem;
}

.author-box .avatar {
	float: left;
	margin-right: 24px;
	margin-right: 1.5rem;
}

.comment-list li .avatar {
	float: left;
	margin: 0 16px 24px 0;
	margin: 0 1rem 1.5rem 0;
}

img.centered {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.5rem;
}

a.alignnone img,
img.alignnone {
	display: inline;
	margin-bottom: 12px;
	margin-bottom: 0.75rem;
}

img.alignleft,
.wp-caption.alignleft {
	display: inline;
	margin: 0 24px 24px 0;
	margin: 0 1.5rem 1.5rem 0;
}

img.alignright,
.wp-caption.alignright {
	display: inline;
	margin: 0 0 24px 24px;
	margin: 0 0 1.5rem 1.5rem;
}

.wp-caption {
	max-width: 96% !important;
}

p.wp-caption-text {
	line-height: 1.714285714;
	margin-top: 12px;
	margin-top: 0.75rem;
}

.gallery-caption {
}

.entry-content .attachment a,
.entry-content .gallery a {
	border: none;
}

.quote-caption {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.entry-content .wp-caption p {
	margin-bottom: 0;
}


/*
=13 Forms & Buttons
---------------------------------------------------------------------------------------------------- 

*/

input,
select,
textarea {
	border: 1px solid #bbb3a0;
	/*border-radius: 3px;*/
	padding: 12px;
	padding: 0.75rem;
	width: 100%;
	background-color: #d2ccbf;
	/*box-shadow: 0 0 5px #ddd inset;*/
	line-height: 1.5;
}

input:focus,
textarea:focus {
	border: 1px solid #aaa;
	outline: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.entry-content .button {
	border: 0;
	padding: 12px 24px;
	padding: 0.75rem 1.5rem;
	width: auto;
	background-color: #554d3a;
	box-shadow: none;
	cursor: pointer;
	letter-spacing: 1px;
	letter-spacing: 0.0625rem;
}

button:hover,
input:hover[type="button"],
input:hover[type="reset"],
input:hover[type="submit"],
.button:hover,
.entry-content .button:hover {
	background-color: #bbb3a0;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

.button {
	display: inline-block;
}

#s {
	margin-bottom: 12px;
	margin-bottom: 0.75rem;
	background: #d2ccbf url(images/search.png) right center no-repeat;
	background-size: 36px 24px;
}

#s input {
	background-color: #d2ccbf;
}


/* =13a - Gravity Forms ----------- */

.content div.gform_wrapper input,
.content div.gform_wrapper select,
.content div.gform_wrapper textarea,
.content div.gform_wrapper .ginput_complex label {
	padding: 12px;
	padding: 0.75rem;
	font-size: 16px;
	font-size: 1rem;	
}

.content div.gform_wrapper input[type="submit"] {
	padding: 12px 24px;
	padding: 0.75rem 1.5rem;
}

.content div.gform_wrapper .ginput_complex label {
	padding: 0;
}

div.gform_wrapper li,
div.gform_wrapper form li {
	margin: 12px 0 0;
	margin: 0.75rem 0 0;
}


/*
=14 Tables
---------------------------------------------------------------------------------------------------- 

*/

table {
	overflow: scroll;
}

td {
	padding: 12px;
}

tr td:first-child {
	padding-left: 0;
}

tr td:last-child {
	padding-right: 0;
}

td h2 {
	margin-bottom: 0;
}


/*
=15 Media Queries
---------------------------------------------------------------------------------------------------- 

*/

@media print {
  
	* {
		background-image: none;
		background-color: #fff;
		-webkit-box-shadow: none !important;
		-moz-box-shadow:    none !important;
		box-shadow:         none !important;
	}
	
	body,
	.content,
	.site-footer,
	.site-header,
	.site-inner {
		width: 100%;
		margin: 0;
		padding: 0;
		background: #fff;
		color: #000;
		font-size: 14px;
		line-height: 1.714285714;
	}
	
	.home .site-header,
	.site-header {
		min-height: auto;
	}
	
	button,
	.site-footer .widget-area .widget,
	.site-header .site-title,
	.site-header .site-description,
	.site-header .site-logo,
	.site-header .widget_search,
	input[type="button"],
	input[type="reset"],
	input[type="submit"],
	.breadcrumb,
	.cycloneslider,
	.entry-footer .entry-meta,
	.gototop,
	.nav-primary,
	.nav-scope nav-footer,
	.sidebar-primary,
	.site-footer {
		display: none;
	}
	
	.print {
		display: inline;
	}
	
	.site-header img.print {
		width: 336px !important;
	}
	
	@page {
		margin: 2cm;
	}
		
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	.entry-title {
		page-break-after: avoid;
		page-break-inside: avoid;
	}
	
	img {
		max-width: 100% !important;
		page-break-inside: avoid;
	}
	
	img.post-image {
		width: auto;
	}
	
	dl,
	img,
	ol,
	ul {
		page-break-inside: avoid;
	}
	
	a[href^=http]:after {
		content:" <" attr(href) "> ";
		font-size: 90%;
	}
	
	a[href^="#"]:after,
	h1 a:after,
	.entry-header .entry-meta a:after,
	.site-header a:after {
   		content: "";
	}
	
	.site-header {
		position: relative;
		top: 0;
		left: 0;
		height: auto;
	}
	
	input,
	select,
	textarea {
		border-color: #ebe0cc;
	}
	
}

/* =15b - Screen display: min-width 480px  ----------- */

@media only screen and (min-width: 480px) {
		
	.header-logo {
		width: 420px;
		height: 160px;
		background: url(images/dsc-logo-long.png) no-repeat;
		background-size: 420px 160px;
	}
	
	.home .site-header {
		min-height: 260px;
	}
	
	.home .header-logo {
		width: 260px;
		height: 260px;
		background: url(images/dsc-logo.png) no-repeat;
		background-size: 260px 260px;
	}
	
}

/* =15c - Screen display: min-width 960px  ----------- */

@media only screen and (min-width: 960px) {
	
	.site-logo {
		margin: 24px 0;
	}
	
	.header-logo {
		margin-left: 0;
	}
	
	.header-widget-area {
		position: absolute;
		top: 24px;
		right: 24px;
		width: 200px;
	}
	
	#s {
		margin-bottom: 0;
	}
	
	.nav-primary ul {
		width: auto;
		text-align: center;
	}

	.genesis-nav-menu.responsive-menu {
		display: block;
		/*position: relative;
		left: auto;
		top: auto;
		width: auto;
		height: auto;*/
		overflow: visible;
		padding-bottom: 0;
	}
	
	.genesis-nav-menu .menu-item,
	.genesis-nav-menu.responsive-menu .menu-item {
		display: inline-block;
		text-align: left;
	}
	
	.genesis-nav-menu > .menu-item > .sub-menu,
	.genesis-nav-menu.responsive-menu > .menu-item > .sub-menu,
	.genesis-nav-menu > .menu-item > .sub-menu li,
	.genesis-nav-menu.responsive-menu > .menu-item > .sub-menu li {
		display: block;
	}
	
	.nav-primary:hover .genesis-nav-menu .menu-item-has-children a:hover,
	.nav-primary:hover .genesis-nav-menu .menu-item-has-children .menu-item a:hover,
	.nav-primary:hover .genesis-nav-menu .sub-menu .menu-item-has-children.menu-item a:hover,
	.nav-primary:hover .genesis-nav-menu .sub-menu .menu-item-has-children .sub-menu .menu-item a:hover {
		color: #fff;
		cursor: pointer;
	}
	
	.genesis-nav-menu .sub-menu,
	.genesis-nav-menu.responsive-menu .sub-menu {
		position: absolute;
		z-index: 499;
		left: -9999px;
		width: 200px;
		padding: 10px 0;
		background: #bbb3a0; /*bbb3a0*/ /*b0a690*/
		opacity: 0;
		-webkit-transition: opacity 0.3s ease-in-out;
		-moz-transition:    opacity 0.3s ease-in-out;
		-ms-transition:     opacity 0.3s ease-in-out;
		-o-transition:      opacity 0.3s ease-in-out;
		transition:         opacity 0.3s ease-in-out;
	}
	
	.genesis-nav-menu.responsive-menu > .menu-item-has-children:before {
		content: normal;
		/*float: right;
		font: normal 20px/1 "dashicons";
		height: 0;
		padding: 0;
		right: 0;
		text-align: right;
		z-index: 499;*/
	}

	.genesis-nav-menu.responsive-menu .menu-open.menu-item-has-children:before {
		content: normal;
	}
	
	.genesis-nav-menu.responsive-menu .menu-item-has-children > a {
		margin-right: 0;
	}

	.genesis-nav-menu .sub-menu li {
		padding-left: 0;
	}
	
	.genesis-nav-menu .sub-menu .menu-item-has-children > a:after {
		content: "\f345";
		float: right;
		font-family: "dashicons";
		height: 20px;
		/*padding: 7px 20px;*/
		right: 0;
		text-align: right;
		z-index: 499;
	}
	
	.genesis-nav-menu .sub-menu .sub-menu,
	.genesis-nav-menu.responsive-menu .sub-menu .sub-menu {
		margin: -50px 0 0 200px;
		padding: 10px 0;
		background: #a59980;
	}
	
	.genesis-nav-menu a:hover,
	.genesis-nav-menu .current-menu-item > a,
	.genesis-nav-menu .sub-menu .current-menu-item > a:hover {
		color: #fff;
	}

	.genesis-nav-menu .menu-item:hover > .sub-menu {
		left: auto;
		opacity: 1;
	}
	
	.genesis-nav-menu > .first > a {
		padding-left: 0;
	}
	
	.genesis-nav-menu > li.last > a {
		padding-right: 0;
	}
	
	.genesis-nav-menu .highlight {
		float: right;
	
	}
	
	.responsive-menu-icon {
		display: none;
	}
	
	.content {
		padding-bottom: 48px;
		padding-bottom: 3rem;
	}
	
	.entry {
		border-radius: 3px;
		margin-bottom: 48px;
		margin-bottom: 3rem;
		/*padding: 48px 40px 24px;
		padding: 3rem 2.5rem 1.5rem;*/
	}
	
	.slideleft {
		width: 600px;
		float: left;
		margin: 0 24px 24px 0;
		margin: 0 1.5rem 1.5rem 0;
	}
	
	.slideright {
		width: 600px;
		float: right;
		margin: 0 0 24px 24px;
		margin: 0 0 1.5rem 1.5rem;
	}


}

/* =15d - Screen display: min-width 1100px  ----------- */

@media only screen and (min-width: 1100px) {
	
	.nav-footer {
		width: 800px;
		z-index: 1000;
	}
	
	.site-footer .wrap {
		position: relative;
	}
	
	#text-2 {
		position: absolute;
		top: 24px;
		right: 24px;
		width: 200px;
		text-align: right;
	}
	
	.site-footer .copyright {
		text-align: right;
	}
	
}