/**
 * WORDCAMP VANCOUVER 2016 - CUSTOM CSS
 *
 * This CSS, like WordPress, is licensed under the GPL.
 */
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: .67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -.5em;
}

sub {
	bottom: -.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}

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

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: .35em .625em .75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: "Open Sans", sans-serif;
	font-size: 14.4px;
	font-size: .9rem;
	line-height: 1.75;
}

@media (min-width: 640px) {
	body,
	    button,
	    input,
	    select,
	    textarea {
		font-size: 16px;
		font-size: 1rem;
	}
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-family: "Lora", serif;
}

h1 {
	font-size: 38.4px;
	font-size: 2.4rem;
	line-height: 1.25;
	margin-bottom: .5rem;
}

h2 {
	color: #274e2f;
	font-size: 33.6px;
	font-size: 2.1rem;
	margin-bottom: 1.5rem;
	line-height: 1.25;
}

h3 {
	font-size: 28.8px;
	font-size: 1.8rem;
	line-height: 1.25;
}

h4 {
	color: #9c2f19;
	font-family: "Open Sans", sans-serif;
	font-size: 19.2px;
	font-size: 1.2rem;
}

/* Copy */
p {
	margin-bottom: 1.5rem;
}

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

blockquote {
	margin: 0 1.5rem;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: .9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: .9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
	font-size: 16px;
	font-size: 1rem;
}

*,
:before,
:after {
/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
/* Fallback for when there is no custom background color defined. */
}

blockquote, q {
	quotes: "" "";
}

blockquote:before, blockquote:after, q:before, q:after {
	content: "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5rem;
}

ul, ol {
	margin: 0 0 1.5rem;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5rem;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5rem 1.5rem;
}

img {
	height: auto;
/* Make sure images are scaled correctly. */
	max-width: 100%;
/* Adhere to container width. */
}

table {
	margin: 0 0 1.5rem;
	width: 100%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.assistive-text, .comment-author .says {
	clip: rect(1px,1px,1px,1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.assistive-text:focus, .comment-author .says: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-size: .875rem;
	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. */
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5rem;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5rem;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clearfix, .comment-navigation:after,
.posts-navigation:after,
.paging-navigation:after,
.post-navigation:after, .comment footer {
	clear: both;
	content: "";
	display: table;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
label {
	color: #274e2f;
	display: block;
	font-weight: 700;
	margin-bottom: .5rem;
	text-transform: uppercase;
}

input[type="checkbox"] ~ label {
	color: #404040;
	font-weight: 400;
	margin-left: .5rem;
	text-transform: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	background: #9c2f19;
	border: none;
	border-radius: 0;
	color: white;
	cursor: pointer;
	font-family: "Open Sans", sans-serif;
	line-height: 1;
	padding: .75rem 1.5rem;
	text-decoration: none;
	text-transform: uppercase;
}

button:hover, button:active, button:focus,
  input[type="button"]:hover,
  input[type="button"]:active,
  input[type="button"]:focus,
  input[type="reset"]:hover,
  input[type="reset"]:active,
  input[type="reset"]:focus,
  input[type="submit"]:hover,
  input[type="submit"]:active,
  input[type="submit"]:focus {
	background: #702212;
	color: white;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	background-color: #f4f4f4;
	border: 1px solid #e1e1e1;
	border-radius: 0;
}

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: .3rem;
}

textarea {
	padding-left: .3rem;
	width: 100%;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
hgroup {
	height: 265px;
	background: url('https://2016.vancouver.wordcamp.org/files/2016/05/wcyvr2016-logo-white.png') center center no-repeat, linear-gradient(to bottom,rgba(0,0,0,0.25) 0%,rgba(0,0,0,0.25) 100%), url('https://2016.vancouver.wordcamp.org/files/2016/05/forest-look-up.jpg') center center no-repeat;
	background-size: 320px auto, cover, cover;
}

hgroup h1, hgroup h2 {
	display: none;
}

.home hgroup {
	background-size: 90% auto, cover, cover;
	height: 100vh;
}

@media (min-width: 1000px) {
	.home hgroup {
		background-size: 65% auto, cover, cover;
	}
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/* Links */
a {
	color: #274e2f;
}

a:hover, a:focus, a:active {
	color: #9c2f19;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

/* Menus */
.main-navigation {
	background: #274e2f;
	clear: both;
	display: block;
	width: 100%;
}

.main-navigation .menu {
	margin-left: auto;
	margin-right: auto;
	max-width: 1000px;
	padding-left: .75rem;
	padding-right: .75rem;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.main-navigation ul li:hover > a {
	background: #305f39;
}

.main-navigation ul a {
	display: block;
	padding: .75rem;
}

.main-navigation ul a:hover {
	color: #f0e4d1;
}

.main-navigation ul ul {
	background: #305f39;
	box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	float: left;
	position: absolute;
	top: 49px;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
      .main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul li:hover > a {
	background: #387043;
}

.main-navigation ul ul a {
	width: 200px;
}

@media (min-width: 640px) {
	.main-navigation ul ul {
		top: 52px;
	}
}

.main-navigation ul li:hover > ul,
    .main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul li {
	float: left;
	position: relative;
}

.main-navigation ul .current_page_item,
    .main-navigation ul .current-menu-item,
    .main-navigation ul .current_page_ancestor {
	background: #305f39;
}

.main-navigation ul a {
	color: white;
	text-decoration: none;
}

/* Small menu. */
.main-small-navigation {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.admin-bar .main-small-navigation {
	top: 46px;
}

.main-small-navigation > div > ul {
	display: none;
	background: #274e2f;
}

.main-small-navigation > div > ul > li {
	border-bottom: 1px solid #387043;
}

.main-small-navigation > div > ul > li:last-child {
	border: 0;
}

.main-small-navigation ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.main-small-navigation ul ul li {
	padding-left: .75rem;
}

.main-small-navigation ul ul li a:before {
	content: '→';
	margin-right: .75rem;
}

.main-small-navigation ul ul li:hover {
	background: #305f39;
}

.main-small-navigation a {
	color: white;
	display: block;
	padding: .5rem 1.5rem;
	text-decoration: none;
}

.main-small-navigation a:hover {
	background: #305f39;
	color: #f0e4d1;
}

.main-small-navigation .menu-toggle {
	color: white;
	font-size: 24px;
	font-size: 1.5rem;
	margin-top: 0;
	position: relative;
	right: 9999px;
}

.main-small-navigation .menu-toggle:after {
	content: "";
	cursor: pointer;
	font-family: "FontAwesome";
	padding: .25rem .75rem;
	position: absolute;
	right: -9999px;
}

.main-small-navigation .menu-toggle.toggled-on:after {
	background: #274e2f;
	content: "";
}

@media screen and (min-width: 600px) {
	.main-small-navigation .menu-toggle {
		display: none;
	}
	
	.main-navigation ul {
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.comment-navigation,
.posts-navigation,
.paging-navigation,
.post-navigation {
	margin-top: 1.5rem;
}

.site-main .comment-navigation, .site-main
  .posts-navigation, .site-main
  .paging-navigation, .site-main
  .post-navigation {
	margin: 0 0 1.5rem;
	overflow: hidden;
}

.comment-navigation .nav-previous,
  .posts-navigation .nav-previous,
  .paging-navigation .nav-previous,
  .post-navigation .nav-previous {
	float: left;
	padding-right: 3rem;
	width: 50%;
}

.comment-navigation .nav-next,
  .posts-navigation .nav-next,
  .paging-navigation .nav-next,
  .post-navigation .nav-next {
	float: right;
	padding-left: 3rem;
	text-align: right;
	width: 50%;
}

.post-navigation {
	margin: 3rem 0 2.25rem;
}

.post-navigation a {
	font-weight: 700;
	text-decoration: none;
}

.comment-navigation,
.posts-navigation,
.paging-navigation {
	margin-top: 1.5rem;
}

.comment-navigation .nav-previous a,
  .comment-navigation .nav-next a,
  .posts-navigation .nav-previous a,
  .posts-navigation .nav-next a,
  .paging-navigation .nav-previous a,
  .paging-navigation .nav-next a {
	background: #274e2f;
	border: none;
	border-radius: 0;
	color: white;
	cursor: pointer;
	display: inline-block;
	font-family: "Open Sans", sans-serif;
	line-height: 1;
	padding: .75rem 1.5rem;
	text-decoration: none;
	text-transform: uppercase;
}

.comment-navigation .nav-previous a:hover, .comment-navigation .nav-previous a:active, .comment-navigation .nav-previous a:focus,
    .comment-navigation .nav-next a:hover,
    .comment-navigation .nav-next a:active,
    .comment-navigation .nav-next a:focus,
    .posts-navigation .nav-previous a:hover,
    .posts-navigation .nav-previous a:active,
    .posts-navigation .nav-previous a:focus,
    .posts-navigation .nav-next a:hover,
    .posts-navigation .nav-next a:active,
    .posts-navigation .nav-next a:focus,
    .paging-navigation .nav-previous a:hover,
    .paging-navigation .nav-previous a:active,
    .paging-navigation .nav-previous a:focus,
    .paging-navigation .nav-next a:hover,
    .paging-navigation .nav-next a:active,
    .paging-navigation .nav-next a:focus {
	background: #1f3d25;
	color: white;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.site-content {
	border-bottom: 8px solid #274e2f;
	position: relative;
}

.site-content:after {
	bottom: 0;
	content: '';
	display: block;
	height: 300px;
	left: 50%;
	max-width: 1400px;
	position: absolute;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	z-index: -1;
	background: url('https://2016.vancouver.wordcamp.org/files/2016/05/right-scene.png') no-repeat right 15px bottom;
	background-size: 300px 135px;
}

@media (min-width: 480px) {
	.site-content:after {
		background-size: 400px 180px;
	}
}

@media (min-width: 640px) {
	.site-content:after {
		background: url('https://2016.vancouver.wordcamp.org/files/2016/05/left-scene.png') no-repeat left 15px bottom, url('https://2016.vancouver.wordcamp.org/files/2016/05/right-scene.png') no-repeat right 15px bottom;
		background-size: 267px 161px, 300px 135px;
	}
}

@media (min-width: 1000px) {
	.site-content:after {
		background-size: 356px 214px, 400px 180px;
	}
}

#content {
	margin-left: auto;
	margin-right: auto;
	max-width: 1000px;
	padding-left: .75rem;
	padding-right: .75rem;
	width: 100%;
	max-width: 800px;
	padding-bottom: 6rem;
	padding-top: 1.5rem;
}

.post:not(.single) {
	margin-bottom: 4.5rem;
}

.post:not(.single):last-child {
	margin-bottom: 0;
}

.byline {
	display: none;
}

.sep {
	display: none;
}

.entry-header {
	margin-bottom: 1.5rem;
	text-align: center;
}

.entry-header .entry-meta {
	padding-top: .75rem;
}

.entry-header .entry-meta:before {
	content: "";
	display: inline-block;
	font-family: 'FontAwesome';
	margin-right: .5rem;
}

.entry-title a {
	color: #9c2f19;
	text-decoration: none;
}

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

.entry-meta {
	color: #707070;
	font-family: "Lora", serif;
}

.entry-meta a {
	text-decoration: none;
}

.entry-meta a:hover {
	text-decoration: underline;
}

footer.entry-meta {
	margin-top: 3rem;
}

footer.entry-meta > span {
	margin: 0 .5rem;
	white-space: nowrap;
}

footer.entry-meta > span:first-child {
	margin-left: 0;
}

footer.entry-meta > span:last-child {
	margin-right: 0;
}

.comments-link:before,
.edit-link:before {
	color: #969696;
	display: inline-block;
	font-family: 'FontAwesome';
	margin-right: .5rem;
}

.comments-link:before {
	content: "";
}

.edit-link:before {
	content: "";
}

/* Comments */
.comments-area {
	display: none;
}

.post .comments-area {
	border-top: 1px solid #e1e1e1;
	display: block;
	padding-top: 1.5rem;
}

.post .comments-area ol, .post .comments-area ul {
	list-style-type: none;
}

.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

.comments-title {
	font-size: 28.8px;
	font-size: 1.8rem;
	margin-bottom: 0;
	margin-top: .75rem;
}

.commentlist {
	margin-bottom: 2.25rem;
	margin-left: 0;
	padding-left: 0;
}

.commentlist > li {
	border-bottom: 1px solid #e1e1e1;
}

.children li {
	border-top: 1px solid #e1e1e1;
}

.comment {
	padding-top: 1.5rem;
}

.comment article {
	padding-bottom: 1.5rem;
}

.comment-body {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.comment-body p {
	margin-bottom: .75rem;
}

.comment footer {
	width: 100%;
}

.comment-author a,
.comment-meta a {
	text-decoration: none;
}

.comment-author .avatar {
	border-radius: 50%;
	float: left;
	height: 64px;
	margin-right: 1.5rem;
	overflow: hidden;
	width: 64px;
}

.comment-author cite {
	font-style: normal;
	font-weight: bold;
}

.comment-meta {
	line-height: 1;
	margin-bottom: .75rem;
}

.comment-meta a {
	color: #969696;
	font-family: "Lora", serif;
}

.required {
	color: #274e2f;
}

.comment-reply-link {
	background: #9c2f19;
	border: none;
	border-radius: 0;
	color: white;
	cursor: pointer;
	font-family: "Open Sans", sans-serif;
	font-size: 12.8px;
	font-size: .8rem;
	line-height: 1;
	padding: .5rem .75rem;
	text-decoration: none;
	text-transform: uppercase;
}

.comment-reply-link:hover, .comment-reply-link:active, .comment-reply-link:focus {
	background: #862815;
	color: white;
}

.comment-reply-title {
	font-size: 25.6px;
	font-size: 1.6rem;
	margin-top: 1.5rem;
}

#cancel-comment-reply-link:hover {
	text-decoration: none;
}

/* Search and Archives */
.search .page-header,
.archive .page-header {
	text-align: center;
}

.search .page-title,
.archive .page-title {
	border-bottom: 1px solid #e1e1e1;
	color: #7d7d7d;
	font-family: "Open Sans", sans-serif;
	font-size: 19.2px;
	font-size: 1.2rem;
	display: inline-block;
	padding: 0 1.5rem 2.25rem;
}

.search #nav-above {
	display: none;
}

/* Camptix CSS */
.tix_tickets_table {
	font-size: 14.4px;
	font-size: .9rem;
	max-width: 100%;
}

.tix_tickets_table tbody tr:last-child {
	border-bottom: 1px solid #e1e1e1;
}

.tix_tickets_table tbody tr:last-child td {
	padding-bottom: 1.5rem;
}

.tix_tickets_table th, .tix_tickets_table td {
	padding: .5rem;
}

.tix_tickets_table th {
	color: #274e2f;
	text-transform: uppercase;
}

.tix_tickets_table .tix-column-description {
	padding-left: 0;
	text-align: left;
}

.tix_tickets_table .tix-column-remaining,
  .tix_tickets_table .tix-column-quantity {
	text-align: center;
}

@media (min-width: 1000px) {
	.tix_tickets_table {
		font-size: 16px;
		font-size: 1rem;
	}
	
	.tix_tickets_table th, .tix_tickets_table td {
		padding: .5rem 1.5rem;
	}
}

body.admin-bar #tix,
#tix {
	padding-top: 0;
}

[id="tix"] h2 {
	color: #9c2f19;
	font-family: "Open Sans", sans-serif;
	font-size: 24px;
	font-size: 1.5rem;
}

[id="tix"] .tix-order-summary td.tix-column-per-ticket, [id="tix"] .tix-order-summary td.tix-column-quantity, [id="tix"] .tix-order-summary td.tix-column-price {
	text-align: center;
}

[id="tix"] .tix-row-total {
	text-align: center;
}

.tix-attendee-form th, .tix-attendee-form td {
	padding-left: 0;
}

/* Schedule Page */
.page-slug-schedule .entry-content h1 {
	border-bottom: 1px solid #e1e1e1;
	color: #9c2f19;
	font-family: "Open Sans", sans-serif;
	font-size: 28.8px;
	font-size: 1.8rem;
	margin-bottom: 0;
	padding-bottom: 1.5rem;
}

.wcpt-schedule {
	max-width: 100%;
}

.wcpt-schedule tr {
	border-bottom: 1px solid #e1e1e1;
}

.wcpt-schedule th {
	color: #274e2f;
	text-transform: uppercase;
}

.wcpt-schedule th, .wcpt-schedule td {
	padding: .5rem .75rem;
}

.wcpt-schedule th:not(:last-child),
  .wcpt-schedule td:not(:last-child) {
	border-right: 1px solid #e1e1e1;
}

.wcpt-schedule .wcpt-col-time {
	min-width: 90px;
	text-align: left;
}

.wcpt-schedule .wcpt-time {
	font-weight: bold;
}

.wcpt-schedule .wcpt-session-title {
	font-weight: bold;
}

.wcpt-schedule .wcpt-session-speakers {
	display: block;
}

.wcpt-schedule .wcpt-session-empty,
  .wcpt-schedule .wcpt-time-800am,
  .wcpt-schedule .wcpt-time-845am,
  .wcpt-schedule .wcpt-time-1200pm,
  .wcpt-schedule .wcpt-time-600pm {
	background: #f1f1f1;
}

.wcpt-schedule .wcpt-time-800am td,
  .wcpt-schedule .wcpt-time-845am td,
  .wcpt-schedule .wcpt-time-1200pm td,
  .wcpt-schedule .wcpt-time-600pm td {
	border-right: 0;
}

.wcpt-schedule .wcpt-time-800am td:first-child,
  .wcpt-schedule .wcpt-time-845am td:first-child,
  .wcpt-schedule .wcpt-time-1200pm td:first-child,
  .wcpt-schedule .wcpt-time-600pm td:first-child {
	border-right: 1px solid #e1e1e1;
}

.wcpt-schedule .wcb-session-registration,
  .wcpt-schedule .wcb-session-opening-remarks,
  .wcpt-schedule .wcb-session-lunch,
  .wcpt-schedule .wcb-session-after-party-at-rogue-kitchen-wetbar-601-w-cordova-st {
	font-weight: bold;
	text-align: center;
}

/* Speakers Page */
.wcorg-organizer,
.wcorg-speaker {
	border-bottom: 1px solid #e1e1e1;
	overflow: auto;
}

.wcorg-organizer:first-child,
  .wcorg-speaker:first-child {
	border-top: 1px solid #e1e1e1;
}

.wcorg-organizer h2,
  .wcorg-speaker h2 {
	color: #9c2f19;
	font-family: "Open Sans", sans-serif;
	font-size: 28.8px;
	font-size: 1.8rem;
	text-align: center;
}

.wcorg-organizer img,
  .wcorg-speaker img {
	border-radius: 50%;
	text-align: center;
	display: block;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.wcorg-organizer h2,
	    .wcorg-speaker h2 {
		text-align: left;
	}
	
	.wcorg-organizer img,
	    .wcorg-speaker img {
		float: left;
		margin-bottom: 1.5rem;
		margin-right: 3%;
		max-width: 13%;
	}
	
	.wcorg-organizer p,
	    .wcorg-speaker p {
		margin-top: 0;
		max-width: 84%;
		float: right;
	}
}

/* Sessions Page */
.wcorg-session {
	border-bottom: 1px solid #e1e1e1;
}

.wcorg-session:first-child {
	border-top: 1px solid #e1e1e1;
}

.wcorg-session h2 {
	color: #9c2f19;
	font-family: "Open Sans", sans-serif;
	font-size: 28.8px;
	font-size: 1.8rem;
}

.wcorg-session-links {
	padding-left: 0;
	font-weight: bold;
}

/* Speaker and Session Posts */
.wcb_speaker .entry-meta {
	display: none;
}

.wcb_speaker .entry-content {
	overflow: auto;
}

.wcb_speaker .speaker-avatar img {
	border-radius: 50%;
	text-align: center;
	display: block;
	margin: 0 auto;
}

.wcb_speaker .speaker-sessions {
	border-top: 1px solid #e1e1e1;
	color: #9c2f19;
	font-family: "Open Sans", sans-serif;
	font-size: 28.8px;
	font-size: 1.8rem;
	padding-top: 1.5rem;
}

.wcb_speaker #speaker-session-names {
	padding-left: 0;
}

@media (min-width: 640px) {
	.wcb_speaker .speaker-avatar img {
		float: left;
		margin-bottom: 1.5rem;
		margin-right: 3%;
		max-width: 13%;
	}
	
	.wcb_speaker p {
		margin-top: 0;
		max-width: 84%;
		float: right;
	}
}

.wcb_session .session-speakers {
	border-top: 1px solid #e1e1e1;
	color: #9c2f19;
	font-family: "Open Sans", sans-serif;
	font-size: 28.8px;
	font-size: 1.8rem;
	padding-top: 1.5rem;
}

.wcb_session #session-speaker-names {
	padding-left: 0;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.widget-area > div {
	margin-left: auto;
	margin-right: auto;
	max-width: 1000px;
	padding-left: .75rem;
	padding-right: .75rem;
	width: 100%;
}

#secondary {
	background: linear-gradient(to bottom,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.5) 100%), url('https://2016.vancouver.wordcamp.org/files/2016/05/log-pile.jpg') center center no-repeat;
	background-size: cover;
	color: white;
	padding: 3rem 0;
}

#primary-sidebar {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
/* Sponsor Widget */
}

#primary-sidebar .widget {
	-webkit-flex: 0 1 100%;
	-ms-flex: 0 1 100%;
	flex: 0 1 100%;
	margin-bottom: 3rem;
}

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

#primary-sidebar .widget h1 {
	font-family: "Open Sans", sans-serif;
	font-size: 28.8px;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	margin-top: 0;
}

#primary-sidebar .widget a {
	color: white;
}

@media (min-width: 640px) {
	#primary-sidebar .widget {
		-webkit-flex: 0 1 48%;
		-ms-flex: 0 1 48%;
		flex: 0 1 48%;
		max-width: 48%;
	}
}

#primary-sidebar .wcb_widget_sponsors {
	background: white;
	border: 1px solid #e1e1e1;
	color: #404040;
	-webkit-flex: 0 1 100%;
	-ms-flex: 0 1 100%;
	flex: 0 1 100%;
	max-width: 100%;
	padding: 2.25rem;
	width: 100%;
}

#primary-sidebar .wcb_widget_sponsors h1 {
	text-align: center;
}

#primary-sidebar .wcb_widget_sponsors .sponsor-logo {
	color: #274e2f;
	max-width: 200px;
	padding: .75rem 1.5rem 1.5rem;
}

#primary-sidebar .wcb_widget_sponsors .sponsor-logo:hover {
	color: #9c2f19;
}

#primary-sidebar .sponsor-level {
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
}

#primary-sidebar .sponsor-level h4 {
	-webkit-flex: 0 1 100%;
	-ms-flex: 0 1 100%;
	flex: 0 1 100%;
	width: 100%;
}

/* Map Widget */
.googlemaps {
	position: relative;
	padding-bottom: 75%;
	height: 0;
	overflow: hidden;
}

.googlemaps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
	background: black;
	padding-bottom: .75rem;
	padding-top: .75rem;
}

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

.site-footer a:hover {
	color: #f0e4d1;
	text-decoration: underline;
}

.site-info {
	margin-left: auto;
	margin-right: auto;
	max-width: 1000px;
	padding-left: .75rem;
	padding-right: .75rem;
	width: 100%;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 12.8px;
	font-size: .8rem;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (min-width: 640px) {
	.site-info {
		font-size: 16px;
		font-size: 1rem;
	}
}

.site-info a {
	-webkit-flex: 0 1 49%;
	-ms-flex: 0 1 49%;
	flex: 0 1 49%;
	max-width: 49%;
}

.site-info-network {
	text-align: right;
}