/*
Theme Name: Visocky O\'Grady
Theme URI: http://underscores.me/
Author: Brian Zimmerman
Author URI: http://www.zimensional.com
Description: Visocky O\'Grady Custom Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: visocky-ogrady
Domain Path: /languages/
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

 Visocky O\'Grady is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
	10.2 - Asides
	10.3 - Comments
11.0 - Infinite scroll
12.0 - Media
	12.1 - Captions
	12.2 - Galleries

--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - 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, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (max-device-width : 480px) {
	html {font-size:50%;}
}

/* Tablets ----------- */
@media only screen and (min-device-width : 481px) and (max-device-width : 1024px) {
	html {font-size:62.5%;}
}

/* Desktops and laptops ----------- */
@media only screen and (min-width : 1224px) {
	html {font-size:62.5%;}
}

*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}
body {
	background: #fff;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
ol, ul {
	list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a:focus {
	outline: thin dotted;
}
a:hover,
a:active {
	outline: 0;
}
a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
}
p {
	margin-bottom: 1.5em;
}
b, strong {
	font-weight: bold;
}
dfn, cite, em, i {
	font-style: italic;
}
blockquote {
	margin: 0 1.5em;
}
address {
	margin: 0 0 1.5em;
}
pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}
code, kbd, tt, var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
mark, ins {
	background: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: 75%;
}
big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}
ul, ol {
	margin: 0 0 1.5em 3em;
}
ul {
	list-style: disc;
}
ol {
	list-style: decimal;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 1.5em 1.5em;
}
img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}
figure {
	margin: 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}
/*button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb; 
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	cursor: pointer; / * Improves usability and consistency of cursor style between image-type 'input' and others * /
	-webkit-appearance: button; / * Corrects inability to style clickable 'input' types in iOS * /
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}*/
input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}
textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}
a:visited {
	color: purple;
}
a:hover,
a:focus,
a:active {
	color: midnightblue;
}


/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
	display: block;
	float: right;
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.main-navigation li {
	float: left;
	position: relative;
}
.main-navigation a {
	display: block;
	text-decoration: none;
}
.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}
.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}
.main-navigation ul ul a {
	width: 200px;
}
.main-navigation ul ul li {
}
.main-navigation li:hover > a {
}
.main-navigation ul ul :hover > a {
}
.main-navigation ul ul a:hover {
}
.main-navigation ul li:hover > ul {
	left: auto;
}
.main-navigation ul ul li:hover > ul {
	left: 100%;
}
.main-navigation .current_page_item a,
.main-navigation .current-menu-item a {
}
/* Small menu */
.menu-toggle {
	display: none;
}
@media screen and (max-width: 768px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
	}

	.main-navigation ul {
		display: none;
	}
}
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after,
.grouping:before,
.grouping:after,
.indented:before,
.indented:after {
	content: '';
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after,
.grouping:after,
.indented:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
}
.hentry {
	margin: 0 0 1.5em;
}
.byline,
.updated {
	display: none;
}
.single .byline,
.group-blog .byline {
	display: inline;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}
.bypostauthor {
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}
.wp-caption-text {
	text-align: center;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}
.gallery-columns-2 .gallery-item {
	max-width: 50%;
}
.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
	max-width: 25%;
}
.gallery-columns-5 .gallery-item {
	max-width: 20%;
}
.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}
.gallery-caption {}

/*--------------------------------------------------------------
12.3 Visocky O'Grady Styles
--------------------------------------------------------------*/
/*
sans-serif fonts:

normal:
font-family: "franklin-gothic-urw",sans-serif;
font-style: normal;
font-weight: 400;

italic:
font-family: "franklin-gothic-urw",sans-serif;
font-style: italic;
font-weight: 400;

bold:
font-family: "franklin-gothic-urw",sans-serif;
font-style: normal;
font-weight: 700;

bold italic:
font-family: "franklin-gothic-urw",sans-serif;
font-style: italic;
font-weight: 700;


serif fonts:

normal:
font-family: "abril-text",sans-serif;
font-style: normal;
font-weight: 400;

italic:
font-family: "abril-text",serif;
font-style: italic;
font-weight: 400;

bold:
font-family: "abril-text",serif;
font-style: normal;
font-weight: 700;

bold-italic:
font-family: "abril-text",serif;
font-style: italic;
font-weight: 700;
*/

p:empty {display:none;}

/* sans-serif bold */
h1,h2,h3,h4,h5,h6,
.profile .name,
.page-title,
.section-title,
.button,
.work-synopsys p,
.page-section[data-style="style-alternate-2"] .page-title strong,
.page-section[data-style="style-alternate-2"] .page-title b {
	font-family: "franklin-gothic-urw",sans-serif;
	font-style: normal;
	font-weight: 700;
}

/* sans-serif normal */
li,
.friends-list blockquote em,
.published-articles .attribution,
.site-footer .secondary p, 
.work-details p,
.work-aside p strong,
.profile-links a,
.profile-work p,
.filters,
.filters a {
	font-family: "franklin-gothic-urw",sans-serif;
	font-style: normal;
	font-weight: 400;

}


/* sans-serif italic */
.reviews em {
	font-family: "franklin-gothic-urw",sans-serif;
	font-style: italic;
	font-weight: 400;
}

/* serif normal */
body,
p,
.profile .bio {
	font-family: "abril-text",serif;
	font-style: normal;
	font-weight: 400;
}

/* serif bold */
.profile .job-title,
.friends-list blockquote,
.friends-list blockquote p,
.main-navigation li,
.speaking-primary p,
.page-section[data-style="style-alternate-2"] .page-title,
/* .page-section[data-style="style-alternate-2"] .section-title, */
.page-section[data-style="style-alternate-2"] .section-subtitle {
	font-family: "abril-text",serif;
	font-style: normal;
	font-weight: 700;
}

/* serif italic */
.profile .school,
.section-subtitle,
.section-title em,
.site-footer .primary p {
	font-family: "abril-text",serif;
	font-style: italic;
	font-weight: 400;
}



body {
	background: #f7f6f2;
	font-size:1em;
	width:100%;
	height:100%;
	position:relative;
	color:#003049;
}

h1 {
	font-size:32px;
	font-size:3.2rem;
	line-height:1.1;
}

h2 {
	font-size:32px;
	font-size:3.2rem;
	line-height:1.1;
}

p, h3, h4, h5, h6, li {
	font-size:22px;
	font-size:2.2rem;
	line-height:1.5;
}

blockquote {
	margin:0;
	padding:0;
	text-indent:-0.75ex;
	font-size:18px;
	font-size:1.8rem;
	line-height:1.3;
}

a,
a:link,
a:active,
a:visited
{
	text-decoration: underline;
	color:#f1464d;
}

a:hover
{
	text-decoration: none;
	color:#ccbe28;
}

.grouping {
	width:100%;
}

.grouping {
	padding:10px 30px;
	padding:1rem 3rem;
}

.grouping + .grouping {
	padding-top:0;
}

.grouping .group {
	background:#fff;
	float:left;
	padding:35px 25px;
	padding: 3.5rem 2.5rem;
	margin-top:12px;
	margin-top:1.2rem;
}

.grouping .group-1 {
	padding:10px;
	padding:1rem;
}

.grouping .indented {
	float:left;
	margin-top:1.2rem;
}

.grouping .group:first-child {
	margin-top:0;
}

.grouping .group img,
.grouping .group iframe {
	width:100%;
	height:auto;
}

.grouping .group-1 .video-container {
    position: relative;
    padding-bottom: 57%;
    height: 0px;
    overflow: hidden;
}

.grouping .group-1 .video-container iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

.grouping .group-1 {
	width:100%;
}
.grouping .group-1-2 {
	width:100%;
}
.grouping .group-1-3 {
	width:100%;
}
.grouping .group-1-4 {
	width:50%;
}

.grouping .group-2-3 {
	width:100%;
}

.grouping .group-3-4 {
	width:100%;
}

.site,
.site-content,
.content-area,
.site-main {
	min-height:100%;
}

.site-header {
	background:#3a3d41 url("img/header-bg.png") repeat top left;
	padding:3px 9.45% 0;
	padding:3rem 9.45% 0;
	min-height:100px;
}

.site-branding {
	float:left;
}

.site-title a {
	color:#fcf9e9;
	font-size:16px;
	font-size:1.6rem;
	text-decoration:none;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.menu-toggle {
	margin-top: 5px;
	outline: 0;
	background-color:transparent;
	border:0;
	width: 26px;
	height: 20px;
	background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQtdWNnZy1nZW5lcmF0ZWQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjZjllOSIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSIyMCUiIHN0b3AtY29sb3I9IiNmY2Y5ZTkiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMjAlIiBzdG9wLWNvbG9yPSJyZ2IoMCwwLDApIiBzdG9wLW9wYWNpdHk9IjAiLz48c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0icmdiKDAsMCwwKSIgc3RvcC1vcGFjaXR5PSIwIi8+PHN0b3Agb2Zmc2V0PSI0MCUiIHN0b3AtY29sb3I9IiNmY2Y5ZTkiIHN0b3Atb3BhY2l0eT0iMSIvPiA8c3RvcCBvZmZzZXQ9IjYwJSIgc3RvcC1jb2xvcj0iI2ZjZjllOSIgc3RvcC1vcGFjaXR5PSIxIi8+PHN0b3Agb2Zmc2V0PSI2MCUiIHN0b3AtY29sb3I9InJnYigwLDAsMCkiIHN0b3Atb3BhY2l0eT0iMCIvPjxzdG9wIG9mZnNldD0iODAlIiBzdG9wLWNvbG9yPSJyZ2IoMCwwLDApIiBzdG9wLW9wYWNpdHk9IjAiLz48c3RvcCBvZmZzZXQ9IjgwJSIgc3RvcC1jb2xvcj0iI2ZjZjllOSIgc3RvcC1vcGFjaXR5PSIxIi8+IDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZjZjllOSIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPjwvc3ZnPg==');
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
	color: white;
	font-size:0;
	color:transparent;
	color:rgba(0,0,0,0);
}

.main-navigation .nav-menu {
	background:#3a3d41 url("img/header-bg.png") repeat top left;
	position:absolute;
	top:100px;
	left:0;
	right:0;
	padding:2rem;
	z-index:1000;
}

.main-navigation li {
	display:block;
	float:none;
	text-align:center;
	font-weight:normal;
	letter-spacing: 1px;
}

.main-navigation li a,
.main-navigation li a:link,
.main-navigation li a:visited {
	color: #fcf9e9;
	font-size:32px;
	font-size:3.2rem;
	text-decoration:none;
}
.main-navigation li a:hover {
	color: #ccbe27;
}

.main-navigation .current_page_item a,
.main-navigation .current_page_item a:link,
.main-navigation a:hover {
	border-bottom: 1px solid;
}

.site-main {
	min-height:100%;
	position:relative;
	overflow:hidden;
}

.page-section {
	min-height:100%;
	position:absolute;
	right:100%;
	top:0;
	width:100%;
	visibility:hidden;
}

.page-section iframe {
	display:none;
}

.page-section.before-active-4,
.page-section.before-active-3,
.page-section.before-active-2,
.page-section.before-active,
.page-section.active,
.page-section.after-active,
.page-section.after-active-2,
.page-section.after-active-3,
.page-section.after-active-4 {
	visibility:visible;
}

.page-section.before-active-4 iframe,
.page-section.before-active-3 iframe,
.page-section.before-active-2 iframe,
.page-section.before-active iframe,
.page-section.active iframe,
.page-section.after-active iframe,
.page-section.after-active-2 iframe,
.page-section.after-active-3 iframe,
.page-section.after-active-4 iframe {
	display:block;
}

.page-section.active {
	position:relative;
	left:0;
	right:0;
}

.page-section.before-active-4 {
	right:400%;
}

.page-section.after-active-4 {
	right:auto;
	left:400%;
}

.page-section.before-active-3 {
	right:300%;
}

.page-section.after-active-3 {
	right:auto;
	left:300%;
}

.page-section.before-active-2 {
	right:200%;
}

.page-section.after-active-2 {
	right:auto;
	left:200%;
}

.page-section.before-active {
	right:100%;
}

.page-section.after-active {
	right:auto;
	left:100%;
}

.page-section-container {
	overflow:hidden;
}

.page-section-container .section-image {
	position:absolute;
	background-color:#fff;
	width:100%;
}

.page-section-container.style-alternate-1 .section-image,
.page-section-container.style-alternate-1 .section-header {
	background-color:#f4404f;
	-o-transition: background-color 0.4s ease-in;
	-ms-transition: background-color 0.4s ease-in;
    -moz-transition: background-color 0.4s ease-in;
    -webkit-transition: background-color 0.4s ease-in;
	transition: background-color 0.4s ease-in;
}

.page-section-container.style-alternate-2 .section-image,
.page-section-container.style-alternate-2 .section-header {
	background-color:#5e5343;
	-o-transition: background-color 0.4s ease-in;
	-ms-transition: background-color 0.4s ease-in;
    -moz-transition: background-color 0.4s ease-in;
    -webkit-transition: background-color 0.4s ease-in;
	transition: background-color 0.4s ease-in;
}

.page-section-container.style-home .section-image,
.page-section-container.style-home .section-header {
	 background-color:#f7f6f2; 
	-o-transition: background-color 0.4s ease-in;
	-ms-transition: background-color 0.4s ease-in;
    -moz-transition: background-color 0.4s ease-in;
    -webkit-transition: background-color 0.4s ease-in;
	transition: background-color 0.4s ease-in;
}

.page-section-container.style-alternate-3 .section-image,
.page-section-container.style-alternate-3 .section-header {
	background-color:#ccbe27;
	-o-transition: background-color 0.4s ease-in;
	-ms-transition: background-color 0.4s ease-in;
    -moz-transition: background-color 0.4s ease-in;
    -webkit-transition: background-color 0.4s ease-in;
	transition: background-color 0.4s ease-in;
}

.page-section-container .group .section-header {
	background-color:transparent;
	padding-top:40px;
	padding-bottom:30px;
	padding-top:4rem;
	padding-bottom:3rem;
}
.page-section-container .grouping .group .section-title,
.page-section-container .grouping .group .section-subtitle {
	color:#002f4a;
}

.page-section-container .section-image img {
	width:100%;
	max-width:1142px;
	height:auto;
	display:block;
	margin:0 auto;
	position:relative;
	z-index:0;
	visibility:hidden;
}

.page-section-container.style-home .section-image:before {
	content:'';
	display:block;
	/* background:#faf9f5; */
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:50%;
	z-index:0;
}

.home-bg-img {
	display:block;
	margin:0 auto 20px;
	/* max-height:551px; */
	position:relative;
	z-index:0;
}

.page-content {
	position:relative;
}

.home-bg-img + .page-content {
	margin-top:-35px;
	margin-top:-3.5rem;
}

.section-header {
	padding:40px 37px;
	padding:5rem 3.75rem;	
	margin-bottom:-30px;
	margin-bottom:-3rem;
}

.page-title {
	text-transform:lowercase;
	font-variant:small-caps;
	margin:0 0 1rem;
}

.section-title {
	text-transform:uppercase;
}

.section-title em {
	text-transform:none;
}

.page-title {
	font-size:19px;
	font-size:1.9rem;
	line-height:1;
}

.section-title,
.section-subtitle {
	margin:0;
	font-size:26px;
	font-size:2.6rem;
}

.section-title {
	line-height:1.2;
}

.section-subtitle {
	letter-spacing:0rem;
	line-height:1;
}

.page-section[data-style="style-alternate-1"] .page-title {
	color:#8a4044;
}
.page-section[data-style="style-alternate-1"] .section-title,
.page-section[data-style="style-alternate-1"] .section-subtitle {
	color:#fcf9e9;
}

.page-section[data-style="style-alternate-2"] .page-title {
	color:#f8f7f3;
	text-transform:none;
	font-variant:normal;
	font-weight:normal;
	font-size:16px;
	font-size:1.6rem;
}
.page-section[data-style="style-alternate-2"] .page-title strong,
.page-section[data-style="style-alternate-2"] .page-title b {
	color:#f1464d;
	text-transform:uppercase;
	font-variant:small-caps;
	font-size:14px;
	font-size:1.4rem;
}
.page-section[data-style="style-alternate-2"] .section-title {
	/* font-size:48px;
	font-size:4.8rem; */

}
.page-section[data-style="style-alternate-2"] .section-title,
.page-section[data-style="style-alternate-2"] .section-subtitle {
	color:#fdfbf0;
	text-transform:uppercase;
}

.page-section[data-style="style-alternate-3"] .page-title {
	color:#756d18;
}
.page-section[data-style="style-alternate-3"] .section-title,
.page-section[data-style="style-alternate-3"] .section-subtitle {
	color:#fcf9e9;
}

.work-synopsys p {
	font-size:24px;
	font-size:2.4rem;
	color:#00577d;
}

.work-aside p strong {
	text-transform:lowercase;
	font-variant:small-caps;
	letter-spacing:0.15em; 
}

.profile {
	float:left;
	width:100%;
	font-size:24px;
	font-size:2.4rem;
}

.profile-header {
	float:left;
	width:75%;
}

.profiles .profile .photo {
	float:left;
	width:25%;
	height:auto;
}

.profile-header .name,
.profile-header .job-title,
.profile-header .school {
	margin:0;
}


.profile-header .job-title,
.profile-header .school {
	color:#f1464d;
}

.profile .photo + .profile-header {
	padding-left:20px;
	padding-left:2.0rem;
}


.profile .bio {
	clear:both;
	padding:15px 0;
	padding:1.5rem 0;
	margin:0;
	font-size:28px;
	font-size:2.8rem;
	min-height:250px;
}

.profile .bio p:first-child {
	margin-top:0;
}

.profile .bio p:last-child {
	margin-bottom:0;
}

.profile-links h3 {
	font-size:19px;
	font-size:1.9rem;
	display:inline;
	color:#063c4a;
	text-transform:lowercase;
	font-variant:small-caps;
	letter-spacing:0.15em;
	font-weight:normal;
}

.profile-links h3 + span {
	display:none;
}

.profile-links a,
.profile-links a:link,
.profile-links a:visited,
.profile-links a:active {
	font-size:20px;
	font-size:2rem;
	color:#063c4a;
}

.profile-work {
	margin-top:30px;
	margin-top:3rem;
	padding-top:10px;
	padding-top:1rem;
	border-top:1px solid #f5f2d4;
}

.profile-work h3 {
	font-size:24px;
	font-size:2.4rem;
	color:#00577d;
	text-transform:uppercase;
}

.profile-work p {
	font-size:24px;
	font-size:2.4rem;
	color:#00577d;
}

.friends-list ul,
.friends-list ol {
	padding:0;
	margin:0;
}
.friends-list li {
	list-style:none;
	margin:0;
	padding:0;
	display:inline-block;
	width:49%;
	vertical-align: top;
	padding-bottom:8px;
	padding-bottom:0.8rem;
}

.friends-list ul:after,
.friends-list ol:after {
	content:'';
	display:block;
	clear:left;
}

.friends-list h2 {
	padding-bottom:6px;
	padding-bottom:0.6rem;
	margin-bottom:10px;
	margin-bottom:1rem;
	border-bottom:1px solid #f5f2d4;
}

.friends-list blockquote,
.friends-list blockquote p {
	color:#F1464D;
	margin:40px 0;
	margin:4rem 0;
	font-size:22px;
	font-size:2.2rem;
}

.friends-list blockquote em {
	font-size:15px;
	font-size:1.5rem;
	white-space: nowrap;
}

.engagements .engagement,
.awards .award {
	padding-top:1px;
	padding-top:1rem;
	padding-bottom:14px;
	padding-bottom:1.4rem;
	border-top:1px solid #f5f2d4;	
}

.engagements.two-col .engagement {
	width:100%;
	padding:1rem 0;
	margin:0;
	display:inline-block;
	vertical-align:top;
}

.engagements.recent h2 {
	width:auto;
	float:none;
}

.engagements.recent .filters {
	display:none;
}

.engagements h2 + .filters {
	margin-top:-5px;
	margin-top:-0.5rem;
	margin-bottom:10px;
	margin-bottom:1rem;
}

.engagements h2,
.awards h2 {
	padding-bottom:10px;
	padding-bottom:1rem;
}

.engagements .engagement p,
.awards .award p {
	margin:0;
}

.awards .award a,
.awards .award a:link,
.awards .award a:hover,
.awards .award a:active,
.awards .award a:visited {
	color:#003049;
}

.engagement a,
.engagement a:link,
.engagement a:hover,
.engagement a:active,
.engagement a:visited {
	color:#003049;
}

.lightened {
	color:#7e7568;
}

.gray {
	color:#7e7568;
	font-family: "franklin-gothic-urw",sans-serif;
}

.engagements.lightened h2 + .engagement {
	border-top-color:#d1dade;
}

.published-articles-container h2 {
	margin:-4px 0 20px;
	margin:-0.4rem 0 2rem;
}

.published-articles-container h2 + .filters  {
	margin-top:-15px;
	margin-bottom:20px;
	margin-top:-1.5rem;
	margin-bottom:2rem;
}

.published-articles .article {
	border-top:1px solid #eae7d8;
	padding:10px 0 10px;
	padding:1rem 0 1rem;	
}

.published-articles .article h3 {
	text-transform:uppercase;
}

.published-articles .article a {
	white-space: nowrap;
	font-style:italic;:
}

.published-articles .attribution {
	text-transform:lowercase;
	font-variant:small-caps;
	color:#ccbe28;
	margin:-1em 0 1em;
	letter-spacing:1.8px;
	letter-spacing:0.18rem;
}

.site-footer {
	padding-top:5px;
	padding-top:0.5rem;
}

.site-footer .grouping,
.site-footer .group {
	background-color:transparent;
	padding:1rem;
	margin:0;
}

.site-footer {
	text-align:center;
	padding-bottom:30px;
	padding-bottom:3rem;
}

.site-footer .group.secondary {
	padding:2rem 0.3rem 0.1rem;
}

.site-footer .group.secondary + .secondary {
	padding-top:1rem;
}

.site-footer .secondary p {
	font-size:16px;
	color:#c2c2c2;
	line-height:1;
	margin:0;
}

.current-location {
	text-transform:lowercase;
	font-variant:small-caps;
}

.current-location em {
	color:#ff5859;
}

.button,
.button:link,
.button:visited,
.button:hover,
.button:active {
	text-transform:uppercase;
	border:2px solid #ff5859;
	text-decoration:none;
	padding:6px 10px;
	padding:1.2rem 4.2rem;
	font-size:13px;
	font-size:1.3rem;
	display:inline-block;
	text-align:center;
	letter-spacing:0.15rem;
	color: #ff5859;
}

.button:hover {
	background-color:#ff5859;
	color:#ffffff;
}

.speaking-primary p {
	color:#ccbe28;
	font-size:24px;
	font-size:2.4rem;
}

.speaking-secondary p {
	line-height:1.5;
}

.speaking-secondary .button {
	display:block;
}

.reviews em {
	display:block;
	margin-top:3px;
	margin-top:0.3rem;
	text-indent:0.5ex;
}

.masonry {
	clear:both;
}

.masonry .group {
	width:auto;
	position:static !important;
}

.masonry .group :last-child {
	padding-bottom:0;
	margin-bottom:0;
}

.filters {
	font-size:22px;
	font-size:2.2rem;
}

.filters:before {
	content: 'Filter:';
	font-size:20px;
	font-size:2rem;
	text-transform:lowercase;
	font-variant:small-caps;
	color: #c2c2c2;
	line-height:1;
}

.filters a {
	color: #c2c2c2;
	text-decoration:none;
	display:inline-block;
	padding:0 0 0 5px;
	line-height:1;
}

.filters a:after {
	content: '/';
	display:inline-block;
	padding-left:5px;
}

.filters a:last-child:after {
	content: '';
	display:none;
}

.cycle-slideshow .cycle-slide a {
	position:relative;
}

.cycle-slideshow .cycle-slide a:hover:after {
	content:'';
	display:block;
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background:transparent url("img/sliceshow-plus.png") no-repeat center center;
	-webkit-opacity:0.4;
	-moz-opacity:0.4;
	opacity:0.4;
}

.before-active-trigger,
.after-active-trigger {
	display:none;
}

@media only screen and (min-width : 768px)  {

h1 {
	font-size:28px;
	font-size:2.8rem;
}
	
h2 {
	font-size:18px;
	font-size:1.8rem;
}

p, h3, h4, h5, h6, li {
	font-size:15px;
	font-size:1.5rem;
}

.grouping {
	background:#fff;
	margin-top:10px;
	margin-bottom:10px;
	margin-top:1rem;
	margin-bottom:1rem;
	padding:0;
}

.grouping .indented {
	padding:10px 30px;
	padding:1rem 3rem;
	float:none;
}

.grouping .group {
	margin-top:0;
	margin-bottom:0;
	padding:1rem;
}

.grouping .group-1-2 {
	width:50%;
}
.grouping .group-1-3,
.masonry .masonry-sizer {
	width:33.33%;
}
.grouping .group-1-4 {
	width:25%;
}

.grouping .group-2-3 {
	width:66.66%;
}

.grouping .group-3-4 {
	width:75%;
}

.masonry .group {
	position:absolute !important;
}

.page-section {
	padding:0 20px;
	padding:0 2rem;
	right:95%;
	top:0;
	width:90%;
}

.page-section.active {
	left:5%;
	right:5%;
}

.page-section.before-active-4 {
	right:365%;
}

.page-section.after-active-4 {
	right:auto;
	left:365%;
}

.page-section.before-active-3 {
	right:275%;
}

.page-section.after-active-3 {
	right:auto;
	left:275%;
}

.page-section.before-active-2 {
	right:185%;
}

.page-section.after-active-2 {
	right:auto;
	left:185%;
}

.page-section.before-active {
	right:95%;
}

.page-section.after-active {
	right:auto;
	left:95%;
}

.before-active-trigger,
.after-active-trigger {
	display:block;
	position:absolute;
	width:5%;
	top:0;
	bottom:0;
	z-index:1000;
	cursor:pointer;
}

.before-active-trigger {
	left:0;
}

.after-active-trigger {
	right:0;
}

.section-header {
	/* margin-bottom:0; */
}

.site-header {
	padding-top:45px;
	padding-top:4.5rem;
}

.site-title a {
	font-size:16px;
	font-size:1.6rem;
}

.profile {
	background:transparent;
	width:50%;
}

.profile,
.profile .bio,
.profile-links h3,
.profile-links a,
.profile-links a:link,
.profile-links a:visited,
.profile-links a:active,
.profile-work h3,
.profile-work p {
	font-size:15px;
	font-size:1.5rem;
}

.main-navigation {
	clear:none;
	width:auto;
}

.main-navigation .nav-menu {
	position:static;
	padding:6px 0;
	padding:0.6rem 0;
}

.main-navigation li {
	display:inline-block;
	text-align:left;
	padding:0 10px;
}

.main-navigation li a,
.main-navigation li a:link,
.main-navigation li a:visited,
.main-navigation li a:hover {
	font-size:16.5px;
	font-size:1.65rem;
}

.published-articles {
	-moz-column-count: 3;
	-webkit-column-count: 3;
	column-count: 3;
	-moz-column-gap: 3rem;
	-webkit-column-gap: 3rem;
	column-gap: 3rem;
}

.published-articles-container h2 {
	float:left;
	width:50%;
}

.published-articles-container h2 + .filters  {
	margin-top:-6px;
	margin-top:-0.6rem;
	margin-bottom:20px;
	margin-bottom:2rem;
	text-align:right;
	float:right;
	width:50%;
}

.published-articles {
	clear:both;
}

.published-articles .article h3,
.published-articles .attribution {
	font-size:14px;
	font-size:1.4rem;
}


.published-articles .article {
	display:inline-block;
}

.site-footer {
	padding-top:30px;
	padding-top:3rem;
}

.site-footer .primary {
	padding-bottom:60px;
	padding-bottom:6rem;
}

.site-footer .primary p {
	display:inline;
	font-size:18px;
	font-size:1.8rem;
}

.site-footer .secondary p {
	font-size:12px;
	font-size:1.2rem;
}

.site-footer .primary .button {
	margin-left:60px;
	margin-left:6rem;
}

.site-footer .group.secondary {
	text-align:left;
	padding:0 0 0 10%;
}

.site-footer .group.secondary + .secondary {
	text-align:right;
	padding:0 10% 0 0;
}

.current-location {
	letter-spacing:0.2rem;
}

.reviews {
	font-size:18px;
	font-size:1.8em;
}

.filters {
	font-size:15px;
	font-size:1.5rem;
}

.filters:before {
	font-size:14px;
	font-size:1.4rem;
}

.engagements .engagement-wrapper {
	clear:both;
}

.engagements.two-col {
	position:relative;
	left:3%;
}

.engagements.two-col .engagement {
	width:47%;
	margin:0 3% 0 0;
}
	
}

@media only screen and (min-width : 900px) {

.engagements h2 + .filters {
	margin-top:0;
	margin-bottom:0;
}

.engagements.two-col h2 {
	float:left;
	width:55%;
}

.engagements.two-col .filters {
	position:relative;
	left:-3%;
	float:right;
	width:45%;
	text-align:right;
}
	
.profile-header {
	width:80%;
}

.profiles .profile .photo {
	width:13%;
}

}