/*!
Theme Name: WordCamp
Theme URI: http://underscores.me/
Author: Jason Yingling
Author URI: https://jasonyingling.me
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wordcamp
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.

WordCamp is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
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: #545760;
	font-family: "Lato", sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Lato', Arial, sans-serif;
	font-weight: 700;
	clear: both;
}

h1 {
	font-size: 2em;
	line-height: 1.25;
}

h2 {
	font-size: 1.75em;
	line-height: 1.25em;
}

h3 {
	font-size: 1.5em;
	line-height: 1.25em;
}

h4 {
	font-size: 1.25em;
	line-height: 1.25em;
}

h5 {
	font-size: 1.125em;
	line-height: 1.25em;
}

h6 {
	font-size: 1em;
	text-transform: uppercase;
}

p {
	font-family: 'Lato', Arial, sans-serif;
	font-weight: 400;
	margin-bottom: 1.5em;
}

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

*,
: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: #f4f3f3;
/* Fallback for when there is no custom background color defined. */
	background-repeat: repeat;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
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,0.8);
	font-size: 12px;
	font-size: .75rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}

button:hover, button:focus,
  input[type="button"]:hover,
  input[type="button"]:focus,
  input[type="reset"]:hover,
  input[type="reset"]:focus,
  input[type="submit"]:hover,
  input[type="submit"]:focus {
	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:active, button:focus,
  input[type="button"]:active,
  input[type="button"]:focus,
  input[type="reset"]:active,
  input[type="reset"]:focus,
  input[type="submit"]:active,
  input[type="submit"]:focus {
	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="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
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,
  input[type="number"]:focus,
  input[type="tel"]:focus,
  input[type="range"]:focus,
  input[type="date"]:focus,
  input[type="month"]:focus,
  input[type="week"]:focus,
  input[type="time"]:focus,
  input[type="datetime"]:focus,
  input[type="datetime-local"]:focus,
  input[type="color"]:focus,
  textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
	padding: 3px;
}

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

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #0098db;
}

a:visited {
	color: #0098db;
}

a:hover, a:focus, a:active {
	color: #0075a8;
}

a:focus {
	outline: thin dotted;
}

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

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-small-navigation ul {
	margin-left: 0;
	padding-left: 0;
	list-style-type: none;
}

.main-small-navigation .menu {
	display: none;
	background-color: #0098db;
}

.main-small-navigation .menu li {
	border-top: 1px solid #0075a8;
	text-align: center;
}

.main-small-navigation .menu a {
	padding: 1rem 0;
	color: #ffffff;
	display: block;
	text-decoration: none;
}

.main-small-navigation .sub-menu {
	background-color: #dbdbdb;
}

.main-small-navigation .sub-menu a {
	color: #0075a8;
	padding: .75rem 0;
}

.main-navigation {
	background: #0098db;
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation .menu {
	text-align: center;
}

.main-navigation .menu > li:last-child > a:after {
	display: none;
}

.main-navigation .menu > li.current-menu-item:after {
	content: '';
	width: 100%;
	background: #1f2a44;
	height: 4px;
	position: absolute;
	left: 0;
	bottom: 0;
}

.main-navigation .menu > li.callout-link {
	background-color: #E8DA7C;
}

.main-navigation .menu > li.callout-link:hover, .main-navigation .menu > li.callout-link:focus {
	background-color: #e0ce51;
}

.main-navigation .menu > li.callout-link:hover > a, .main-navigation .menu > li.callout-link:focus > a {
	color: #ffffff;
}

.main-navigation .menu > li.callout-link > a {
	color: #1f2a44;
}

.main-navigation .menu > li > a {
	padding: 1.5rem 1rem;
}

.main-navigation .menu > li > a:after {
	content: '';
	display: block;
	width: 2px;
	height: 16px;
	position: absolute;
	top: 50%;
	right: -2px;
	margin-top: -7px;
	background: #1f2a44;
}

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

.main-navigation ul ul {
	float: left;
	position: absolute;
	top: 4.5em;
	left: -999em;
	z-index: 99999;
	background: #0098db;
	text-align: left;
}

.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 a {
	width: 250px;
}

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

.main-navigation li {
	position: relative;
	display: inline-block;
}

.main-navigation li:hover > a,
    .main-navigation li.focus > a {
	color: #ffffff;
	background: #1f2a44;
}

.main-navigation .current-menu-item a {
	color: #1f2a44;
}

.main-navigation a {
	display: block;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 1rem;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

.menu-toggle {
	margin: 0;
	text-align: center;
	background: #0098db;
	color: #ffffff;
	font-size: 1em;
	padding: 1em 0;
	font-weight: normal;
	cursor: pointer;
	position: relative;
}

.menu-toggle.toggled-on:after {
	content: '-';
}

.menu-toggle:after {
	content: '+';
	display: block;
	position: absolute;
	right: 1rem;
	top: 50%;
	margin-top: -12px;
}

@media screen and (min-width: 615px) {
	.menu-toggle {
		display: none;
	}
	
	.main-navigation ul {
		display: block;
	}
}

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

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

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

/*--------------------------------------------------------------
# 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: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. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 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-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# 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 {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
#main {
	max-width: 68rem;
	margin: 0 auto;
	padding: 3rem 0;
}

.page-id-7 .site-content {
	width: 100%;
}

.page-id-7 #secondary {
	display: none;
}

.site-content {
	float: left;
	width: 100%;
	padding: 0 1rem;
}

.widget-area {
	float: right;
	width: 100%;
	padding: 0 15px;
}

.site-footer {
	clear: both;
	width: 100%;
}

@media screen and (min-width: 615px) {
	.site-content {
		width: 70%;
	}
	
	.widget-area {
		width: 30%;
	}
}

/*--------------------------------------------------------------
## Header amd footer
--------------------------------------------------------------*/
.site-header {
	background-color: #1f2a44;
	background-image: url('//2017.stlouis.wordcamp.org/files/2017/01/cropped-wcstl-header-1.jpg');
	background-position: top center;
	background-repeat: no-repeat;
	padding-top: 113px;
	background-size: auto 113px;
	border-top: 5px solid #0098db;
}

.site-header hgroup {
	background-color: #ffffff;
	display: none;
}

.site-header hgroup:after {
	content: '';
	display: block;
	width: 100%;
	height: 1rem;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7db9e8+41,dbdbdb+100&0+75,1+100 */
	background: -moz-linear-gradient(top,rgba(125,185,232,0) 0%,rgba(179,205,225,0) 0%,#dbdbdb 100%);
/* FF3.6-15 */
	background: -webkit-linear-gradient(top,rgba(125,185,232,0) 0%,rgba(179,205,225,0) 0%,#dbdbdb 100%);
/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,rgba(125,185,232,0) 0%,rgba(179,205,225,0) 0%,#dbdbdb 100%);
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#007db9e8',endColorstr='#dbdbdb',GradientType=0);
/* IE6-9 */
}

.site-header .site-title {
	max-width: 385px;
	margin: 0 auto;
	background-size: 100% auto;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

.site-header .site-title a {
	display: block;
	width: 100%;
	height: 232px;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

.site-header .site-description {
	clip: rect(1px 1px 1px 1px);
	position: absolute;
}

@media screen and (min-width: 615px) {
	.site-header {
		padding-top: 215px;
		background-size: auto 215px;
	}
	
	.site-header hgroup:after {
		height: 3rem;
	}
	
	.site-header .site-title {
		max-width: 980px;
		height: 129px;
	}
	
	.site-header .site-title a {
		height: 397px;
	}
}

.site-footer {
	background: #1f2a44;
	color: #ffffff;
}

.site-footer #footer-widgets {
	max-width: 68rem;
	padding: 1rem 1rem 2rem;
	margin: 0 auto;
}

.site-info {
	background: #0098db;
	padding: 2rem 0;
	text-align: center;
}

.site-info a {
	color: #ffffff;
	text-decoration: none;
}

.site-info a:hover {
	color: #1f2a44;
}

.site-info .site-info-network {
	border-left: 1px solid #ffffff;
	padding-left: 10px;
	margin-left: 10px;
}

.site-info .site-info-network:hover {
	color: #0098db;
}

@media screen and (min-width: 615px) {
	#footer-widgets {
		display: flex;
	}
	
	.footer-widgets-block {
		padding-right: 10%;
	}
	
	.footer-widgets-block:nth-child(3n) {
		padding-right: 0;
	}
	
	#footer-widget-1 {
		min-width: 340px;
		flex-grow: 1;
	}
	
	#footer-widget-3 {
		width: 33%;
	}
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.assistive-text {
	clip: rect(1px 1px 1px 1px);
	position: absolute;
}

.type-post,
.type-page {
	background: #ffffff;
	border-top: 5px solid #1f2a44;
	padding: 1.5rem;
	margin-bottom: 2rem;
}

.entry-title {
	margin: 0;
}

.entry-title a {
	color: #1f2a44;
	text-decoration: none;
}

a.wc-cta {
	font-family: 'Roboto Slab', 'Lato', Arial, sans-serif;
	font-size: 16px;
	background-color: #1f2a44;
	clear: both;
	display: block;
	width: 210px;
	margin-top: 1em;
	margin-bottom: 1.5em;
	padding: 1em 1.5em .75em;
	border-bottom: 5px solid #0098db;
	border-radius: 3px;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
}

a.wc-cta:hover, a.wc-cta:focus {
	background-color: #0098db;
	color: #ffffff;
}

a.wc-cta.wc-ticket-button {
	width: 100%;
}

.entry-content .more-link {
	font-family: 'Roboto Slab', 'Lato', Arial, sans-serif;
	font-size: 16px;
	background-color: #1f2a44;
	clear: both;
	display: block;
	width: 210px;
	margin-top: 1em;
	margin-bottom: 1.5em;
	padding: 1em 1.5em .75em;
	border-bottom: 5px solid #0098db;
	border-radius: 3px;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
}

.entry-content .more-link:hover, .entry-content .more-link:focus {
	background-color: #0098db;
}

.entry-content .meta-nav {
	clip: rect(1px 1px 1px 1px);
	position: absolute;
}

.entry-meta {
	text-transform: uppercase;
	color: #1f2a44;
	line-height: 1;
}

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

footer.entry-meta {
	font-size: .875em;
}

footer.entry-meta a {
	color: #1f2a44;
}

footer.entry-meta a:hover, footer.entry-meta a:focus {
	color: #0098db;
}

input[type="submit"],
a.callout-button {
	font-family: 'Roboto Slab', 'Latos', Arial, sans-serif;
	background-color: #1f2a44;
	clear: both;
	display: block;
	margin-top: 1em;
	margin-bottom: 1.5em;
	padding: 1em 1.5em .75em;
	border: 0;
	border-bottom: 5px solid #0098db;
	border-radius: 3px;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	box-shadow: none;
	font-size: 16px;
	padding-bottom: 15px;
	font-weight: normal;
	text-shadow: none;
}

input[type="submit"]:hover, input[type="submit"]:focus,
  a.callout-button:hover,
  a.callout-button:focus {
	background-color: #0098db;
	color: #ffffff;
	box-shadow: none;
	border-color: #0098db;
}

@media screen and (min-width: 800px) {
	.type-post,
	  .type-page {
		padding: 2rem 2.5rem;
	}
}

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
## Widgets
--------------------------------------------------------------*/
.widget {
	padding: 10px;
	background: #ffffff;
	border-top: 5px solid #1f2a44;
}

.widget ul, .widget ol {
	list-style-type: none;
	margin-left: 0;
	padding-left: 0;
}

.widget ul ul, .widget ul ol, .widget ol ul, .widget ol ol {
	padding-left: 1em;
}

.widget ul a, .widget ol a {
	text-decoration: none;
}

.widget-title {
	font-size: 1.125em;
	text-transform: uppercase;
	border-bottom: 1px solid #0098db;
	margin: 0 0 .875rem;
	line-height: 1.75;
}

.widget-title a {
	text-decoration: none;
	color: #ffffff;
}

.sponsor-level {
	padding: 5px 10px;
	background-color: #ffffff;
}

.sponsor-level h4 {
	margin: .5em 0;
	color: #1f2a44;
	font-size: 1.25em;
}

.jetpack_subscription_widget #subscribe-email input {
	width: 100%;
	padding: 7px;
}

/*--------------------------------------------------------------
## Tickets
--------------------------------------------------------------*/
body.admin-bar .entry-content #tix {
	padding-top: 0;
}

.tix_tickets_table thead {
	text-align: left;
}

.tix_tickets_table tbody tr:nth-child(2n+1) {
	background-color: #f7f7f7;
}

.tix_tickets_table .tix-column-description {
	width: 360px;
}

.tix_tickets_table .tix-column-price,
.tix_tickets_table .tix-column-remaining,
.tix_tickets_table .tix-column-quantity {
	vertical-align: top !important;
}

#tix table, #tix th, #tix td {
	padding: 5px 10px;
	border: 1px solid #dbdbdb;
}

/*--------------------------------------------------------------
## Schedule
--------------------------------------------------------------*/
.wcpt-schedule thead {
	text-align: left;
}

.wcpt-schedule tbody tr:nth-child(2n+1) {
	background-color: #f7f7f7;
}

.wcpt-schedule, .wcpt-schedule th, .wcpt-schedule td {
	padding: 5px 10px;
	border: 1px solid #dbdbdb;
}

/*--------------------------------------------------------------
## Speakers
--------------------------------------------------------------*/
.wcpt-schedule .wcpt-session-speakers a {
	color: #888;
	font-size: .85em;
	display: block;
}

.wcorg-speakers .avatar {
	float: right;
	margin-left: 1em;
	margin-bottom: .75em;
}

.wcorg-speakers .wcorg-speaker {
	margin-bottom: 2em;
	clear: both;
}

.wcorg-speakers .wcorg-speaker::after {
	content: "";
	height: 1px;
	display: table;
	clear: both;
}

.wcorg-speakers h2 {
	margin-top: 0;
	margin-bottom: .5em;
	font-size: 1.5em;
}

/*--------------------------------------------------------------
## Attendees
--------------------------------------------------------------*/
#tix-attendees ul {
	margin: 0;
	padding: 0;
}

#tix-attendees .tix-columns-3 li {
	width: 100%;
}

#tix-attendees .tix-attendee-name {
	margin-left: 60px;
}

#tix-attendees .tix-field {
	margin-left: 60px;
}

@media screen and (min-width: 626px) {
	#tix-attendees .tix-columns-3 li {
		width: 50%;
	}
}

@media screen and (min-width: 1120px) {
	#tix-attendees .tix-columns-3 li {
		width: 33.333%;
	}
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.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;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .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%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: .8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## 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 {
	display: block;
}