.image {
	display: inline-block;
	position: relative;
}

.image.flush {
	margin: 0 !important;
}

.image img {
	display: block;
}

.image.left, .image.right {
	max-width: 50%;
}

.image.left img, .image.right img {
	width: 100%;
}

.image.left {
	float: left;
	margin: 0 1rem 1rem 0;
	top: 0.25rem;
}

.image.right {
	float: right;
	margin: 0 0 1rem 1rem;
	top: 0.25rem;
}

.image.fit {
	display: block;
	margin: 0 0 2rem 0;
	width: 100%;
}

.image.fit img {
	width: 100%;
}

.image.main {
	display: block;
	margin: 0 0 3rem 0;
	width: 100%;
}

.image.main img {
	width: 100%;
}

/* Section/Article */
section.special, article.special {
	text-align: center;
}

header p {
	position: relative;
	margin: 0 0 1.5rem 0;
}

header h2 + p {
	font-size: 1.25rem;
	margin-top: -1rem;
}

header h3 + p {
	font-size: 1.1rem;
	margin-top: -0.8rem;
}

header h4 + p, header h5 + p, header h6 + p {
	font-size: 0.9rem;
	margin-top: -0.6rem;
}

header p {
	color: #bbb;
}

/*Spotlight */
.spot_white {
}

.spot_black {
	background: rgba(0, 0, 0, 0.9) !important;
}

.spotlight {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

.spotlight > * {
	-moz-flex-shrink: 1;
	-webkit-flex-shrink: 1;
	-ms-flex-shrink: 1;
	flex-shrink: 1;
	-moz-flex-grow: 0;
	-webkit-flex-grow: 0;
	-ms-flex-grow: 0;
	flex-grow: 0;
}

.spotlight > * {
	width: 50%;
}

.spotlight p:last-child {
	margin: 0;
}

.spotlight .inner {
	padding: 2rem;
}

.spotlight .image {
	margin: 0;
}

.spotlight .image img {
	width: 100%;
}

.spotlight.alt {
	color: rgba(255, 255, 255, 0.25);
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	text-align: right;
}

.spotlight.alt > * {
	-moz-flex-shrink: 1;
	-webkit-flex-shrink: 1;
	-ms-flex-shrink: 1;
	flex-shrink: 1;
	-moz-flex-grow: 0;
	-webkit-flex-grow: 0;
	-ms-flex-grow: 0;
	flex-grow: 0;
}

.spotlight.alt h3 {
	color: #FFF;
}

.spotlight.alt .image {
	-moz-order: 2;
	-webkit-order: 2;
	-ms-order: 2;
	order: 2;
}

@media screen and (max-width:1280px) {
	.spotlight .inner {
		padding: 4rem;
	}

}

@media screen and (max-width:980px) {
	.spotlight {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-moz-align-items: center;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
		text-align: center;
	}

	.spotlight > * {
		-moz-flex-shrink: 1;
		-webkit-flex-shrink: 1;
		-ms-flex-shrink: 1;
		flex-shrink: 1;
		-moz-flex-grow: 0;
		-webkit-flex-grow: 0;
		-ms-flex-grow: 0;
		flex-grow: 0;
	}

	.spotlight > * {
		width: 100%;
	}

	.spotlight.alt {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-moz-align-items: center;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
		text-align: center;
	}

	.spotlight.alt > * {
		-moz-flex-shrink: 1;
		-webkit-flex-shrink: 1;
		-ms-flex-shrink: 1;
		flex-shrink: 1;
		-moz-flex-grow: 0;
		-webkit-flex-grow: 0;
		-ms-flex-grow: 0;
		flex-grow: 0;
	}

	.spotlight.alt .image {
		-moz-order: 0;
		-webkit-order: 0;
		-ms-order: 0;
		order: 0;
	}

}

@media screen and (max-width:736px) {
	.spotlight .inner {
		padding: 2rem;
	}

}

/* Table */
.table-wrapper {
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
}

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

table tbody tr {
	border: solid 1px;
	border-left: 0;
	border-right: 0;
}

table td {
	padding: 0.75rem 0.75rem;
}

table th {
	font-size: 0.9rem;
	font-weight: 700;
	padding: 0 0.75rem 0.75rem 0.75rem;
	text-align: left;
}

table thead {
	border-bottom: solid 2px;
}

table tfoot {
	border-top: solid 2px;
}

table.alt {
	border-collapse: separate;
}

table.alt tbody tr td {
	border: solid 1px;
	border-left-width: 0;
	border-top-width: 0;
}

table.alt tbody tr td:first-child {
	border-left-width: 1px;
}

table.alt tbody tr:first-child td {
	border-top-width: 1px;
}

table.alt thead {
	border-bottom: 0;
}

table.alt tfoot {
	border-top: 0;
}

table tbody tr {
	border-color: rgba(144, 144, 144, 0.25);
}

table tbody tr:nth-child(2n + 1) {
	background-color: rgba(144, 144, 144, 0.075);
}

table th {
	color: #1e1f23;
}

table thead {
	border-bottom-color: rgba(144, 144, 144, 0.25);
}

table tfoot {
	border-top-color: rgba(144, 144, 144, 0.25);
}

table.alt tbody tr td {
	border-color: rgba(144, 144, 144, 0.25);
}

/* Header */
#header {
	color: #a6a6a6;
	cursor: default;
	position: relative;
	text-align: center;
	z-index: 10001;
}

#header > .logo {
	margin: 0 0 4rem 0;
	padding: 0;
}

#header > .logo a {
	font-size: 4rem;
	font-weight: 700;
	color: #FFF;
	text-decoration: none;
	line-height: 1rem;
}

#header > .logo span {
	font-weight: 300;
	font-size: 1rem;
	display: block;
	color: rgba(255, 255, 255, 0.65);
}

@media screen and (max-width:736px) {
	#header > .logo {
		margin: 0 0 2rem 0;
	}

	#header > .logo a {
		font-size: 3rem;
	}

}

/* Main */
.main > .inner {
	margin: 0 auto;
	width: 80rem;
	max-width: 90%;
	margin-bottom: 2rem;
	background: rgba(255, 255, 255, 0);
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
	border-radius: 4px;
}

@media screen and (max-width:980px) {
	.main .image {
		width: 100%;
		min-width: 100%;
		float: none;
		margin: 0 0 2rem 0;
	}

	.main .image img {
		width: 100%;
	}

}

.wrapper > header {
	text-align: center;
	background: rgba(0, 0, 0, 0);
	padding: 2rem;
	margin: 0;
}

.wrapper > header h2 {
	position: relative;
	padding-bottom: .75rem;
}

.wrapper > header h2:after {
	content: '';
	position: absolute;
	margin: auto;
	right: 0;
	bottom: 0;
	left: 0;
	width: 10%;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.125);
}

.wrapper > header p {
	margin: 0;
}

.wrapper > header.special {
	padding: 4rem 2rem;
}

@media screen and (max-width:980px) {
	.wrapper > header.special {
		padding: 3rem 2rem;
	}

}

@media screen and (max-width:736px) {
	.wrapper > header {
		padding: 1.5rem;
	}

	.wrapper > header h2 {
		font-size: 1.5rem;
	}

	.wrapper > header h2:after {
		width: 50%;
	}

}

.wrapper.style1 .content {
	padding: 2rem;
}

@media screen and (max-width:1280px) {
	.wrapper.style1 .content {
		padding: 4rem;
	}

}

@media screen and (max-width:736px) {
	.wrapper.style1 .content {
		padding: 2rem;
	}

}

.wrapper.style2 {
	background: #1e1f23;
	padding: 2rem;
}

.wrapper.style2 header {
	background: #121315;
	border-radius: 4px 4px 0 0;
}

.wrapper.style2 header h2 {
	color: #FFF;
}

.wrapper.style2 header h2:after {
	background-color: rgba(255, 255, 255, 0.125);
}

.wrapper.style2 header p {
	color: rgba(255, 255, 255, 0.25);
}

@media screen and (max-width:1280px) {
	.wrapper.style2 {
		padding: 4rem;
	}

}

@media screen and (max-width:736px) {
	.wrapper.style2 {
		padding: 2rem;
	}

}

/* Footer */
#footer {
	padding: 2rem 0 0.1rem 0;
	text-align: center;
	text-shadow: 0px 0px 16px rgba(0, 0, 0, 1);
}

#footer a {
	color: rgba(255, 255, 255, 1);
}

#footer a:hover {
	color: #FFF;
}

#footer .copyright {
	color: #fff;
	margin: 0 0 2rem 0;
	padding: 0 1rem;
	text-align: center;
}

@media screen and (max-width:736px) {
	#footer {
		padding: 1rem 0 0.1rem 0;
	}

}
