/*

Theme Name: SHA-A2K
Theme URI: http://www.illuminage.com/
Author: Kevin Freitas
Author URI: http://www.illuminage.com/
Description: HTML5 starter theme.

*/


/******************
	STYLE RESET
*******************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, input, textarea { /* http://meyerweb.com/eric/tools/css/reset/    v2.0 | 20110126   License: none (public domain)*/
	border: 0;
	margin: 0;
	padding: 0;

	font-size: 100%;
	vertical-align: baseline;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,  aside,  details,  figcaption,  figure,  footer,  header,  hgroup,  menu,  nav,  section { display: block; }

body {
	line-height: 1;
}

blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }

table  { border-collapse: collapse; border-spacing: 0; }
td, td img { vertical-align: top; }

input[type=text], input[type=submit] {
	appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
}


/******************
	BASE STYLES
*******************/
* { outline: 0 none; }
html, body, form, img { border: 0; margin: 0; padding: 0; }
html { font-size: 100% }

body {
	background-color: #151515;
	font: 300 1em/1 'Roboto', sans-serif;
}

::selection { background: #ed7c32; color: rgba(0, 0, 0, .9); text-shadow: 0 1px 0 rgba(255, 255, 255, .25); }
::-moz-selection { background: #ed7c32; color: rgba(0, 0, 0, .9); text-shadow: 0 1px 0 rgba(255, 255, 255, .25); }

.contain {
	clear: both;
	margin: 0 auto;
	max-width: 1500px;
	position: relative;
}

select, input, textarea, button { font: 99% sans-serif; }

pre, code, kbd, samp { font-family: monospace, sans-serif; }

img { margin: 0; }
a {
	border: none;
	color: #710c0b;
	text-decoration: none;
}
a:hover, a:active { outline: none; }
a:hover, a:focus { text-decoration: underline; }
ol { list-style-type: decimal; }
small { font-size: 85%; }
strong, th { font-weight: bold; }


/******************
	HEADER
*******************/
#header {
	height: 158px;
	margin: 0 auto;
	position: relative;
	z-index: 100;

	background: #333;
	background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(51,51,51,1) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(51,51,51,1) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(51,51,51,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#333333ff',GradientType=0 );
}
.home #header {
	background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
}
#header .contain { height: 100%; }
#header .inner {
	height: 0;
	overflow: visible;
	position: relative;
	z-index: 20;

	text-align: center;
}


/* Logo */
#logo {
	display: inline-block;
	height: 74px;
	margin: 2.5em 0 0 0;
	max-width: 440px;
	width: 29.35%;

	background: transparent url('images/sha-a2k-logo.png') center top no-repeat;
	background-size: contain;
}
#logo a {
	display: block;
	height: 100%;
	width: 100%;
}
#logo a img { display: none; }


/* Primary Nav Menu */
#nav {
	left: 0;
	position: absolute;
	top: 64px;
	width: 96%;
	z-index: 10;

	font-size: 0;
}
#nav ul {
	padding-left: 9%;
	position: relative;
	text-align: center;

	font: 18px/1 'Roboto Slab', serif;
}
#nav ul li {
	display: inline-block;
	height: 100%;
	margin: 0 1.11em;
	position: relative;
	vertical-align: top;
}
#nav ul > li.menu-item-team { margin-right: 48%; }
#nav ul li:first-child {}
#nav ul li a {
	border-bottom: 2px solid transparent;
	display: block;
	height: 100%;
	padding: .25em 0;

	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
}
#nav ul li:hover a {
	border-color: #ed7c32;
}
#nav ul li:hover a,
#nav ul li.active a,
#nav ul li a:focus,
#nav ul li.current-menu-item a,
#nav ul li.current-menu-ancestor a,
#nav ul li.current_page_parent a {
	color: #ed7c32;
	text-shadow: 0 0 15px rgba(0, 0, 0, .75);
}

/* 2nd level nav */
#nav ul li ul.sub-menu {
	left: -9999px;
	padding: 7px 18px;
	position: absolute;
	width: 200px;

	background-color: rgba(255, 255, 255, .8);
	opacity: 0;

	transition: opacity .25s ease-out;
	-moz-transition: opacity .25s ease-out;
	-ms-transition: opacity .25s ease-out;
	-webkit-transition: opacity .25s ease-out;
}
#nav ul li:hover ul.sub-menu,
#nav ul li a:focus + ul.sub-menu,
#nav ul li.active ul.sub-menu { left: 0; opacity: 1; }
#nav ul li:last-child:hover ul.sub-menu,
#nav ul li a:last-child:focus + ul.sub-menu,
#nav ul li.active:last-child ul.sub-menu { left: auto; right: 0; }
#nav ul li ul.sub-menu li {
	display: block;
	height: auto;
	margin: 0;

	text-align: left;
}
#nav ul li ul.sub-menu li a {
	border-color: transparent;
	height: auto;
	margin: 9px 0;

	color: #701413;
	font-size: 16px;
	line-height: 1;
	text-shadow: none;
}
#nav ul li ul.sub-menu li:hover > a,
#nav ul li ul.sub-menu li a:hover,
#nav ul li ul.sub-menu li a:focus,
#nav ul li ul.sub-menu li.current-menu-item a { border-color: #ed7c32; }

/* 3rd level nav */
#nav ul li ul.sub-menu li ul.sub-menu {
	left: -9999px;
	top: 0;
}
#nav ul li ul.sub-menu li:hover ul.sub-menu { left: 100%; opacity: 1; }

#menu_btn { display: none; } /* used to hide/show smartphone nav menu */


/* Hero Slideshow */
#hero {
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
}
#hero:after {
	bottom: 0;
	display: block;
	height: 325px;
	left: 0;
	position: absolute;
	width: 100%;

	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
	content: "";
}
#hero * { height: 100%; }
#hero .pic {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
#hero .pic img { display: none; }


/******************
	CONTENT AREA
*******************/
#content {
	padding: 5em 1em 4em 1em;

	background-color: #fff;
	font-size: 1.1em;
}
.home #content {}

#content h1 {
	border-bottom: 3px solid #710c0b;
	display: inline-block;
	margin: 0 0 .75em 0;
	padding: 0 0 .18em 0;

	font: 400 2em/1 'Roboto Slab', serif;
}
#content h2 {
	margin: 0 0 .5em 0;

	color: #d46b28;
	font: 300 1.45em/1.25 'Roboto Slab', serif;
}
#content h3 {
	margin: 0 0 10px 0;

	font-size: 1.1em;
	font-weight: bold;
	line-height: 1;
}
#content p {
	padding: 0 0 1em 0;

	line-height: 1.75em;
}
#content ul {
	margin-left: 1em;
	padding: 0 0 1em 1.5em;

	line-height: 1.75em;
	list-style-type: disc;
}
#content ol {
	margin-left: 1em;
	padding: 0 0 1em 1.5em;

	line-height: 1.75em;
}
#content li {
	padding: 4px 0;
}
#content a { text-decoration: underline; }
#content img {
	border: 0 none !important;
	display: block;
	height: auto;
	max-width: 100%;
}
#content img.noborder,
#content img[src$=".png"] { border: 0 none; }
#content a img { text-decoration: none; }


/* doc link icons */
#content a[href$=".doc"]:after,
#content a[href$=".docx"]:after,
#content a[href$=".pdf"]:after,
#content a[href$=".ppt"]:after,
#content a[href$=".xls"]:after,
#content a[href$=".xlsx"]:after {
	display: inline-block;
	height: 12px;
	margin: 0 0 0 .5em;
	vertical-align: middle;
	width: 12px;

	background-position: 0 0;
	background-repeat: no-repeat;
	content: '';
}
#content a[href$=".doc"]:after,
#content a[href$=".docx"]:after { background-image: url(images/icon-doc.png); }
#content a[href$=".pdf"]:after { background-image: url(images/icon-pdf.gif); }
#content a[href$=".ppt"]:after,
#content a[href$=".pptx"]:after { background-image: url(images/icon-ppt.png); }
#content a[href$=".xls"]:after,
#content a[href$=".xlsx"]:after { background-image: url(images/icon-xls.png); }


/* Main Content Column */
#content #main {
	float: left;
	width: 50%;

	font-size: 1em;
}
#content #main.full_width { float: none; width: auto; }
#content #main img.size-medium.alignright,
#content #main img.size-medium.alignleft { height: auto; max-width: 50%; }
#content #main.full_width img.wp-post-image {
	float: right;
	height: auto;
	margin: -3.5em 0 0 4.8%;
	max-width: 30%;
}

#content #main p, #content #main li, #content #main td { font-size: 1em; }
#content #main a { text-decoration: underline; }

#content #main form { margin: 0 0 1em 0; }
#content #main input[type=text],
#content #main textarea,
#content #main select,
#content #main input[type=submit] {
	border: 1px solid #888;
	border: 1px solid rgba(0, 0, 0, .5);
	display: inline-block;
	vertical-align: middle;
	width: 50%;
}
#content #main input[type=text],
#content #main textarea { padding: .5em; }
#content #main textarea { height: 5em; }
#content #main select { margin: 0; padding: .4em; vertical-align: top; width: auto; }
#content #main input[type=submit] { padding: .5em 1em; width: auto; cursor: pointer; }
#content #main ul ul li {
	font-size: 100%;
	list-style-type: circle;
}
#content #main caption {
	font-size: .85em;
	font-style: italic;
	text-align: center;
}

#content #main a.ill_btn {
    display: inline-block;
    margin: 0 0 0 -0.6em;

    color: #d46b28;
    font-size: .9em;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
}
#content #main a.ill_btn:before {
	display: inline-block;
	vertical-align: middle;

	color: #b7b7b7;
	content: "\f341";
	font: 2.85em/1 'Dashicons';
}

/* Team Gallery */
#content #main .gallery { margin-top: 1em; }
#content #main .gallery br { display: none; }
#content #main .gallery dl.gallery-item {
	display: inline-block;
	float: none;
	margin: 0 0 4em 9.5%;
	vertical-align: top;
	width: 16.667%;
}
#content #main .gallery dl.gallery-item:nth-child(5n+1) { margin-left: 0; }
#content #main .gallery dl.gallery-item dt.gallery-icon {}
#content #main .gallery dl.gallery-item dt.gallery-icon a { display: block; }
#content #main .gallery dl.gallery-item dt.gallery-icon a img {
	display: block;
	height: auto;
	margin: 0 auto;
	width: 100%;
}
#content #main .gallery dl.gallery-item dd.gallery-caption {
	/*border: 1px solid #a6a0a2;*/
	position: relative;
	margin: -3em 0 0 0;
	padding: 1em 0.6em;
	background-color: rgba(0, 0, 0, .5);
	/*background-color: #e4e4e4;*/
	/*color: rgba(0, 0, 0, .9);*/
	color: #ffffff;
	font: 300 1em/1 'Roboto Slab', serif;
	text-align: center;

}
#content #main .gallery dl.gallery-item dd.gallery-caption a {
	/*color: rgba(0, 0, 0, .9);*/
	color: #ffffff;
	text-decoration: none;
}
#content #main .gallery dl.gallery-item dd.gallery-caption b {
	border-top: 2px solid #d46b27;
	display: block;
	margin: .8em auto 0 auto;
	padding: .8em 0 0 0;

	font: 300 italic .7em/1 'Roboto', sans-serif;
	opacity: .75;
}


/* Side Content Column */
#content #side {
	float: right;
	padding: 4em 0 0 0;
	width: 45.2%;
}
#content #side h2 { text-transform: uppercase; }
#content #side p, #content #side li, #content #side td { font-size: 1em; }


/* Section Guide */
#section_guide {}
#section_guide h2 {}
#section_guide ul { margin: 0; padding: 0 0 1em 0; }
#section_guide ul li,
#section_guide ul li.current-menu-item > a,
#section_guide ul li.current-menu-ancestor > a { display: none; }
#section_guide ul li.current-menu-item,
#section_guide ul li.current-menu-ancestor,
#section_guide ul li ul.sub-menu li.current-menu-item > a,
#section_guide ul li ul.sub-menu li { display: block; }
#section_guide ul li a {
	padding: 0 0 0 .5em;

	color: #710c0b;
	font: 500 1.15em/1 'Roboto', sans-serif;
	text-decoration: none;
}
#section_guide ul li a:before {
	display: inline-block;
	vertical-align: middle;

	color: #b7b7b7;
	content: "\f345";
	font: 1.65em/1 'Dashicons';
}
#section_guide ul li ul.sub-menu li a:hover,
#section_guide ul li ul.sub-menu li.current-menu-item a { text-decoration: underline; }


/* Blog */
#content.blog #main h2 { margin: 0; padding: 5px 0; }
#content.blog #main .post {
	clear: both;
	margin: 0 0 1.5em 0;
}
#content.blog #main .post .thmb {
	float: left;
	height: 100px;
	margin: .5em 1em 1em 0;
	width: 100px;

	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
#content .post-item .thmb a {
	display: block;
	height: 100%;
	width: 100%;
}
#content.blog #main .post-date {
	margin: 0 0 1.5em 0;

	opacity: .5;
}
#content.blog #side ul {
	margin: 0;
	padding-left: 0;

	list-style-type: none;
}
#content.blog #side ul li { color: #888; }


/* Notes */
#content .ill_note {
	padding: .25em .5em;
	position: relative;

	cursor: pointer;
}
#content .ill_note.yellow { background-color: #ff8; }
#content .ill_note.red { background-color: #f88; }
#content .ill_note.green { background-color: #8f8; }
#content .ill_note:after {
	border-radius: 5px;
	display: none;
	padding: 1.5em 2em;
	position: absolute;
	right: -1em;
	top: 100%;
	width: 15em;
	z-index: 1000;

	content: attr(data-note-text);
	font: 14px/1.5 sans-serif;

	box-shadow: 0 0 50px rgba(0, 0, 0, .65);
}
#content .ill_note:hover:after { display: block; }
#content .ill_note.yellow:after { background: #ffc; }
#content .ill_note.red:after { background: #fcc; }
#content .ill_note.green:after { background: #cfc; }


/* Footer */
#footer {
	clear: both;
	padding: 3.5em 1em;
	position: relative;
	border-top: 4px solid #d6d6d6;
	background-color: #fff;
	color: #343434;
	font: 300 1em/1.5 'Roboto Slab', serif;
}
.home #footer { display: none; }
#footer a { color: #ed7c32; text-decoration: none; }
#footer a:hover { text-decoration: underline; }

#footer .info {
	float: left;
	width: 40%
}

#footer .social {
	margin: 0 auto;
	min-width: 120px;
	width: 8%;

	text-align: center;
}
#footer .social h2,
#footer .signup_form h3 {
	border-bottom: 3px solid #d46b28;
	margin: 0 0 1em 0;

	font-size: 1.2em;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
}
#footer .social a {
	display: inline-block;
	height: 36px;
	margin: 0 0 0 5px;
	vertical-align: top;
	width: 36px;

	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	text-indent: -9999px;
}
#footer .social a:first-child { margin: 0; }
#footer .social a.facebook { background-image: url(images/icon-facebook.png); }
#footer .social a.linkedin { background-image: url(images/icon-linkedin.png); }
#footer .social a.twitter { background-image: url(images/icon-twitter.png); }

#footer .signup_form {
	float: right;
	width: 35.333%;

	text-align: right;
}
#footer .signup_form .gform_body {
	display: inline-block;
	vertical-align: top;
	width: 80.9%;
}
#footer .signup_form label { display: none; }
#footer .signup_form .gform_wrapper { margin: 0; max-width: none; }
#footer .signup_form .gform_wrapper label.gfield_label+div.ginput_container { margin: 0; }
#footer .signup_form li {
	display: inline-block;
	margin: 0 0 0 1% !important;
	vertical-align: top;
	width: 49.5%;
}
#footer .signup_form li:first-child { margin: 0 !important; }
#footer .signup_form input[type=text],
#footer .signup_form input[type=email] {
	padding: .8em;
	width: 100%;

	background-color: #5a5959;
	color: #ccc;
	font-size: .8em;
}
#footer .signup_form .gform_footer {
	display: inline-block;
	margin: 0;
	padding: 0;
	vertical-align: top;
	width: 18.2%;
}
#footer .signup_form .gform_footer input[type=submit] {
	padding: .9em 0;
	width: 100%;

	background-color: #d16b32;
	color: #fff;
	font: 300 .8em/1 'Roboto Slab', serif;
	text-align: center;
	text-transform: uppercase;
}


/******************
	WIDGETS
*******************/

/* Search Form */
#search {
	position: absolute;
	right: 0;
	top: 45px;
}
#search .toggle {
	padding: 1em;
}
#search .toggle:hover,
#search .toggle.active {
	background-color: rgba(255, 255, 255, .8);
	color: #e6b493;
	text-shadow: none;
}
#search .toggle:after {
	color: rgba(255, 255, 255, .5);
	content: "\f179";
	cursor: pointer;
	font: 34px/1 'Dashicons';
}
#search input[type=text] {
	border: 0 none;
	display: block;
	left: -9999px;
	padding: 1em;
	position: absolute;
	top: 100%;
	width: 393px;

	background-color: rgba(255, 255, 255, .8);
	color: #000;
	font: 14px/1 'Roboto Slab', serif;
	opacity: 0;
}
#search .toggle.active + input[type=text] { left: auto; right: 0; opacity: 1; }

/* Gravity Forms */
#content #main .gform_wrapper .ginput_complex label { margin: 0 0 10px 0 !important; }
#content #main .gform_wrapper input[type=text],
#content #main .gform_wrapper input[type=password],
#content #main .gform_wrapper textarea,
#content #main .gform_wrapper select { width: 97%; }
#content #main .gform_wrapper textarea { height: 10em; }
#content #main .gform_wrapper ul.gform_fields { padding-left: 0; }


/* Social Media Sharing */
#share_contain {
	background: transparent url(images/share-contain-bg.png) left top repeat-x;
}
#share {
	margin: 0 auto;
	overflow: hidden;
	padding: 2.5em 0;
	width: 5.5em;

	color: #d46b28;
	font: 500 1em/1 'Roboto Slab', serif;
	text-transform: uppercase;
	white-space: nowrap;

	transition: width .25s ease-out;
	-moz-transition: width .25s ease-out;
	-ms-transition: width .25s ease-out;
	-webkit-transition: width .25s ease-out;
	transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
}
.home #share { display: none; }
#share.active { width: 12em; }
#share div {
	display: inline-block;
	padding: 0;
	vertical-align: middle;

	cursor: pointer;
	opacity: .5;
}
#share div:after {
	display: inline-block;
	margin: -.1em 0 0 .25em;
	vertical-align: middle;

	content: "\f237";
	font: 1.75em 'dashicons';
}
#share a {
	display: inline-block;
	margin: 0 0 0 4px;
	vertical-align: middle;

	color: #d46b28;
	cursor: pointer;
	opacity: .5;
}
#share a:first-child { margin: 0; }
#share a:hover { opacity: 1; }
#share a:after {
	display: inline-block;
	font: 1.5em 'dashicons';
	line-height: 1.3;
}
#share a.facebook:after { content: "\f305"; }
#share a.twitter:after { content: "\f301"; }
#share a.email:after { content: "\f466"; }
#share div, #share a {
	transition: .25s opacity ease-out;
	-moz-transition: .25s opacity ease-out;
	-ms-transition: .25s opacity ease-out;
	-webkit-transition: .25s opacity ease-out;
}


/******************
	SPECIAL EFFECTS
*******************/

#utility_nav ul li a,
#nav ul li a,
#nav ul li.menu-item-search a:after,
#search .toggle,
#search input[type=text] {
	transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-ms-transition: all .25s ease-out;
	-webkit-transition: all .25s ease-out;
}


/******************
	UTILITY STYLES
*******************/

/* Alignment */
.alignleft { clear: left; display: inline; float: left; margin-right: 15px; }
.alignright { clear: right; display: inline; float: right; margin-left: 15px; }
.aligncenter { clear: both; display: block; margin-left: auto; margin-right: auto; }
.alignleft-nomargin { clear: left; display: inline; float: left; }
.alignright-nomargin { clear: right; display: inline; float: right; }

.hidden { display: none; visibility: hidden; }
.invisible { visibility: hidden; } /* Hide visually and from screenreaders, but maintain layout */

.full-width-item { width: 100%; } /* for use with outer wrappers */

/* Clearfix */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; visibility: hidden; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }

#menu_btn { display: none; }

/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
}


/************************************************

	PPPP   H   H   OOO   N   N  EEEEE
	P___P  H___H  O   O  NN  N  E__
	P      H   H  O   O  N N N  E
	P      H   H   OOO   N  NN  EEEEE

*************************************************/
@media only screen and (max-width: 599px) {
	#search, #textsize_wrapper, #social,
	#footer .signup_form,
	.no_mobile {
		display: none !important;
	}

	.contain, .inner,
	#content #main, #content #side {
		border: 0 none;
		bottom: auto;
		float: none;
		height: auto;
		left: auto;
		margin: 0;
		min-height: 0;
		min-width: 0;
		position: static;
		right: auto;
		top: auto;
		width: auto;
	}

	html { overflow: auto; }

	body {
		padding: 60px 0 0 0;
		position: relative;
	}

	#header {
		height: 60px;
		left: 0;
		padding: 0;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 100;

		background-color: #333;
	}
	#header .inner { height: 100%; }

	#logo {
		display: block;
		height: 100%;
		left: auto;
		margin: 0 0 0 5%;
		position: relative;
		top: auto;
		width: 70%;

		background-position: center;
		background-size: contain; /* OR use width and height numbers like: auto 80px */
	}

	/* Smartphone Nav Menu */
	#menu_btn {
		display: block;
		height: 60px;
		position: absolute;
		right: 0;
		top: 0;
		width: 60px;
		z-index: 40;

		background-color: rgba(255, 255, 255, .25);
		font-size: 0;
		text-align: center;
	}
	#menu_btn:before {
		display: block;
		padding-top: .25em;

		color: #fff;
		content: "\f333";
		font: 40px 'Dashicons';
	}
	#close_btn {
		display: block;
		position: absolute;
		right: 5px;
		top: 9px;
		z-index: 140;
	}
	#close_btn:before {
		display: block;

		color: #fff;
		content: "\f335";
		font: 40px 'Dashicons';
	}

	#nav_contain {
		height: 100%;
		left: -100%;
		margin: 0;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 100;

		background-color: transparent;

		transition: .25s background ease-out;
		-ms-transition: .25s background ease-out;
	}
	#nav_contain.slid { left: 0; background-color: rgba(0, 0, 0, .4); }
	#nav {
		border: 0 none;
		bottom: auto;
		height: 100%;
		left: -100%;
		position: absolute;
		top: 0;
		width: 90%;

		background-color: #eee;

		transition: .25s left ease-out;
		-ms-transition: .25s left ease-out;
	}
	#nav:before {
		display: block;
		height: 60px;
		left: 0;
		position: absolute;
		top: 0;
		width: 100%;
		z-index: 100;

		background-color: #ed7c32;
		content: '';
	}
	#nav * { -webkit-tap-highlight-color: rgba(0,0,0,0); }
	#nav_contain.slid #nav { left: 0; }
	#nav > div { height: 100%; }
	#nav .inner {
		overflow-y: auto;
		overflow-x: hidden;

		-webkit-overflow-scrolling: touch;
	}
	#nav ul {
		height: 100%;
		overflow: auto;
		padding: 60px 0 0 0;

		text-align: left;

		-webkit-overflow-scrolling: touch;
	}
	#nav ul li {
		display: block;
		height: auto;
		margin: 0 1.11em !important;

		font-size: 17px;
	}
	#nav ul li a {
		padding: 1em;

		color: #701413;
	}
	#nav ul li:hover a,
	#nav ul li.active a,
	#nav ul li a:focus,
	#nav ul li.current-menu-item a,
	#nav ul li.current-menu-ancestor a,
	#nav ul li.current_page_parent a {
		text-shadow: 0 0 15px rgba(255, 255, 255, .75);
	}

	/* 2nd level */
	#nav ul.menu li:hover ul.sub-menu { display: none; }
	#nav ul li ul.sub-menu {
		display: none;
		left: auto;
		padding: 0;
		position: relative;
		width: auto;

		opacity: 1;
	}
	#nav ul.menu li.over ul.sub-menu,
	#nav ul.menu li.current-menu-ancestor ul.sub-menu { display: block; }
	#nav ul li ul.sub-menu li {}
	#nav ul li ul.sub-menu li a {
		padding: .75em 2em;

		line-height: 1.25;
	}

	#hero:after { height: 200px; opacity: .8; }

	#content { padding: .5em; }

	#content #main {
		padding: 30px 10px 10px 10px;
	}
	#content #main.full_width img.wp-post-image {
		margin: 0 0 .5em .5em;
		max-width: 50%;
	}
	#content #main .gallery dl.gallery-item,
	#content #main .gallery dl.gallery-item:nth-child(4n+1) {
		margin: 0 0 2em 0;
		width: auto;
	}
	#content #main .gallery dl.gallery-item dd.gallery-caption { /*margin-top: .25em;*/ }

	#content #side {
		padding: 10px;
	}

	#content.ill_projects .ill_projects_slides .ill_projects_slides_slide .ill_projects_slides_slide_title { display: none; }

	#footer { padding: 1em; font-size: .6em; }
	#footer .info,
	#footer .social {
		float: none;
		padding: 1.5em 0;
		width: auto;
	}

	#share { padding: 1em 0; }

	.alignleft, .alignright {
		display: block;
		float: none;
		height: auto;
		margin: 0 0 1em 0;
		max-width: 90%;
	}
}
.only_mobile { display: none; }


/******************
	SMALL TABLET
*******************/
@media only screen and (min-width: 600px) and (max-width: 767px) {
	#header { height: 110px; }

	#logo { height: 44px; margin-top: 1em; }

	#nav { width: 100%; }
	#nav ul li,
	#nav ul > li.menu-item-team { margin: 0 .5em; }

	#search { top: 0; }

	#content #main,
	#content #side {
		float: none;
		width: auto;
	}
	#content #main .gallery { text-align: center; }
	#content #main .gallery dl.gallery-item,
	#content #main .gallery dl.gallery-item:nth-child(3n+1),
	#content #main .gallery dl.gallery-item:nth-child(4n+1) {
		display: block;
		margin: 0 auto 4em;
		width: 80%;
	}
	#content #main .gallery dl.gallery-item dd.gallery-caption { font-size: 1.35em; }

	#footer { padding: 1em; }
	#footer .info,
	#footer .signup_form,
	#footer .social {
		float: none;
		padding: 1.5em 0;
		width: auto;
	}

	#share { padding: 1em 0; }
}

/******************
	TABLET
*******************/
@media only screen and (min-width: 768px) and (max-width: 1023px) {
	.contain {
		width: auto;
	}

	#header { height: 110px; }

	#nav { top: 48px; }
	#nav ul li { margin: 0 .7em; }
	#nav ul li a { font-size: 11px; }
	/*#nav ul > li.menu-item-team { margin-right: 33%; }*/

	#search { top: 30px; }

	#content #main {
		padding-right: 10px;
		padding-left: 10px;
		width: 66.5%;
	}
	#content #main .gallery dl.gallery-item { margin-left: 4.5%; width: 20%; }
	#content #main .gallery dl.gallery-item dd.gallery-caption { font-size: 0.7em; }

	#content #side {
		width: 33.5%;
	}

	#footer {
		padding-right: 10px;
		padding-left: 10px;

		font-size: .6em;
	}

	#share { padding: 1em 0; }
}


/******************
	SMALL DESKTOP
*******************/
@media only screen and (min-width: 1024px) and (max-width: 1300px) {
	#header { height: 130px; }

	#nav { top: 54px; }
	#nav ul li { margin: 0 .9em; }

	#search { top: 35px; }

	#content #main .gallery dl.gallery-item dd.gallery-caption { font-size: .8em; }

	#footer { font-size: .8em; }

	#share { padding: 1em 0; }
}


/******************
	HD DESKTOP
*******************/
@media only screen and (min-width: 1600px) {
	#content { padding: 5em 0 4em 0; font-size: 1.35em; }

	#footer { padding: 3.5em 1em; }
}


/******************
	PRINT
*******************/
@media only print {
	#utility_nav, #search, #nav,
	#hero,
	#content #main a.ill_btn,
	#social,
	#footer .signup_form, #footer .social,
	#share
	{ display: none; }

	#header,
	.contain, .inner,
	#content #main, #content #side {
		clear: both;
		float: none;
		height: auto;
		min-height: 0;
		width: auto;

		background: transparent;
	}

	body { background: transparent; }

	#logo {
		display: block;
		left: auto;
		margin: 0 auto .5in auto;
		position: relative;
		top: auto;

		background: transparent;
		zoom: .5;
	}
	#logo a img { display: block; }

	#content #main .gallery dl.gallery-item dd.gallery-caption { font-size: 1.25em; }
	#content #main .gallery dl.gallery-item dd.gallery-caption b { font-size: .5em; }

	#footer, #footer a { color: #888; }
	#footer { padding: 0 1em; background: transparent; font-size: .75em; }
	#footer .info {
		float: none;
		width: auto;

		text-align: center;
	}
}
