@import url("font-awesome.min.css");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic");

/*
	Enhanced Strata Theme with Modern Design
	Based on original Strata by HTML5 UP
*/

/* Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

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

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

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

body {
	-webkit-text-size-adjust: none;
}

/* Box Model */
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Modern Body Styling */
body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Inter', sans-serif;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
}

body.is-loading *, body.is-loading *:before, body.is-loading *:after {
	-moz-animation: none !important;
	-webkit-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
}

/* Modern Main Container */
.main-container {
	background: white;
	margin: 0 auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	min-height: 100vh;
	position: relative;
}

/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 80px 0 60px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* University Logos */
.university-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.logo-container {
	background: rgba(255, 255, 255, 0.15);
	padding: 20px 30px;
	border-radius: 16px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.logo-container:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.2);
}

.logo-container img {
	height: 40px;
	width: auto;
}

/* Typography */
.main-title {
	color: white;
	font-size: 3.5rem;
	font-weight: 300;
	margin: 40px 0 30px 0;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.authors {
	font-size: 1.4rem;
	margin: 30px 0;
	opacity: 0.9;
}

.authors a {
	color: white;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
}

.authors a:hover {
	border-bottom-color: white;
}

.affiliations {
	font-size: 1.4rem;
	opacity: 0.8;
	margin-top: 20px;
}

/* Action Buttons */
.action-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 40px 0;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	background: rgba(255, 255, 255, 0.15);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 500;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.content-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 20px;
}

/* Teaser Video */
.teaser-video {
	text-align: center;
	margin: 60px 0;
}

.teaser-video video {
	width: 100%;
	max-width: 900px;
	border-radius: 16px;
	/* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
}

/* TLDR Section */
.tldr-section {
	background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
	border-radius: 20px;
	padding: 40px;
	margin: 60px 0;
	border-left: 6px solid #667eea;
	box-shadow: 0 10px 30px rgba(103, 126, 234, 0.1);
}

.tldr-content {
	font-size: 1.2rem;
	line-height: 1.8;
	color: #2c3e50;
	text-align: left;
}

/* Section Styling */
.section-divider {
	height: 2px;
	background: linear-gradient(90deg, transparent, #667eea, transparent);
	margin: 80px 0;
	border: none;
}

.section-title {
	font-size: 2.5rem;
	color: #2c3e50;
	margin-bottom: 40px;
	font-weight: 300;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #667eea, #764ba2);
	border-radius: 2px;
}

/* Method Section */
.method-image {
	text-align: center;
	margin: 40px 0;
}

.method-image img {
	width: 90%;
	max-width: 90%;
	border-radius: 16px;
	/* box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
	border: 1px solid #e1e8ed; */
}

.method-caption {
	background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
	border-radius: 20px;
	padding: 40px;
	margin: 40px 0;
	border-left: 6px solid #667eea;
	box-shadow: 0 10px 30px rgba(103, 126, 234, 0.1);
	font-size: 1.2rem;
	line-height: 1.8;
	color: #2c3e50;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

/* Results Section */
.results-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 20px;
}

.more-videos-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.more-videos-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(79, 172, 254, 0.4);
}

.more-videos-link::after {
	content: '→';
	transition: transform 0.3s ease;
}

.more-videos-link:hover::after {
	transform: translateX(4px);
}

/* Task Sections */
.task-section {
	background: #f8fafe;
	border-radius: 20px;
	padding: 40px;
	margin: 60px 0;
	/* border: 1px solid #e1e8ed;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
}

.task-title {
	font-size: 1.8rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.task-description {
	color: #555;
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 30px;
}

/* Video Compare Components */
.video-compare-container {
	position: relative;
	max-width: 100%;
	margin: 30px auto;
	overflow: hidden;
	border: 3px solid #667eea;
	cursor: col-resize;
	aspect-ratio: 32/11;
	transition: all 0.3s ease;
	border-radius: 12px;
	box-shadow: 0 15px 45px rgba(103, 126, 234, 0.2);
}

.video-compare-container:hover {
	border-color: #764ba2;
	transform: translateY(-2px);
	box-shadow: 0 20px 60px rgba(103, 126, 234, 0.3);
}

.video-canvas {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rgb-video {
	left: 0;
	clip-path: inset(0 50% 0 0);
}

.depth-video {
	right: 0;
	clip-path: inset(0 0 0 50%);
}

.divider {
	position: absolute;
	top: 0;
	left: 50%;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #667eea, #764ba2);
	cursor: col-resize;
	z-index: 10;
	transform: translateX(-2px);
	box-shadow: 0 0 20px rgba(103, 126, 234, 0.5);
}

.divider::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 24px;
	background: white;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
	border: 2px solid #667eea;
}

.divider::after {
	content: '⟷';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 14px;
	color: #667eea;
	font-weight: bold;
}

.labels {
	position: absolute;
	top: 15px;
	left: 0;
	right: 0;
	z-index: 5;
	pointer-events: none;
}

.label {
	position: absolute;
	background: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 20px;
	backdrop-filter: blur(10px);
}

.label-left {
	left: 15px;
}

.label-right {
	right: 15px;
}

/* Navigation Controls */
.navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px 0;
	gap: 25px;
}

.nav-arrow {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 15px rgba(103, 126, 234, 0.3);
}

.nav-arrow:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 25px rgba(103, 126, 234, 0.4);
}

.nav-arrow:disabled {
	background: #ccc;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.video-info {
	background: rgba(103, 126, 234, 0.1);
	color: #667eea;
	padding: 12px 24px;
	border-radius: 25px;
	font-weight: 600;
	min-width: 150px;
	text-align: center;
	font-size: 14px;
	border: 1px solid rgba(103, 126, 234, 0.2);
}

.controls {
	text-align: center;
	margin: 20px 0;
}

.controls button {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	border: none;
	padding: 12px 24px;
	cursor: pointer;
	border-radius: 25px;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(103, 126, 234, 0.3);
}

.controls button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(103, 126, 234, 0.4);
}

.controls button:disabled {
	background: #ccc;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* Video Section Headers */
.video-section-header {
	text-align: center;
	margin: 30px 0 20px 0;
	font-weight: 600;
	font-size: 1.1rem;
	color: #2c3e50;
	background: linear-gradient(135deg, #f8f9ff, #e8f2ff);
	padding: 15px;
	border-radius: 10px;
	border-left: 4px solid #667eea;
}

/* Baseline and Policy Grids */
.baseline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.baseline-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e1e8ed;
}

.baseline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.baseline-item video {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.baseline-item .caption {
    padding: 10px;
    text-align: center;
    font-weight: 500;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9ff, #ffffff);
}

/* Policy Grid (updated to match) */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Changed from auto-fit */
    gap: 30px;
    margin: 30px 0;
}

.policy-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e1e8ed;
}

.policy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.policy-item video {
    width: 100%;
    height: 200px; /* Changed from 250px to match baseline */
    object-fit: cover;
}

.policy-caption {
    padding: 10px;
    text-align: center;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.5;
    background: linear-gradient(135deg, #f8f9ff, #ffffff); /* Added to match baseline */
}

.failure-text {
	color: #e74c3c;
	font-weight: 600;
}

.success-badge {
	display: inline-block;
	background: linear-gradient(135deg, #2ecc71, #27ae60);
	color: white;
	padding: 4px 12px;
	border-radius: 15px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-left: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.main-title {
		font-size: 2.5rem;
	}

	.university-logos {
		gap: 30px;
	}

	.action-buttons {
		flex-direction: column;
		align-items: center;
	}

	.content-section {
		padding: 40px 15px;
	}

	.results-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.baseline-grid,
	.policy-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.task-section {
		padding: 25px;
	}
}

@media (max-width: 480px) {
	.main-title {
		font-size: 2rem;
	}

	.hero-section {
		padding: 40px 0 30px 0;
	}

	.authors {
		font-size: 1rem;
	}

	.tldr-section {
		padding: 25px;
	}

	.tldr-content {
		font-size: 1.1rem;
	}
}

/* Original Styling for Compatibility */
body, input, select, textarea {
	color: #a2a2a2;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 16pt;
	font-weight: 400;
	line-height: 1.75em;
}

a {
	-moz-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
	border-bottom: dotted 1px;
	color: #49bf9d;
	text-decoration: none;
}

a:hover {
	border-bottom-color: transparent;
	color: #49bf9d !important;
	text-decoration: none;
}

strong, b {
	color: #787878;
	font-weight: 400;
}

em, i {
	font-style: italic;
}

p {
	margin: 0 0 2em 0;
}

h1, h2, h3, h4, h5, h6 {
	color: #787878;
	font-weight: 400;
	line-height: 1em;
	margin: 0 0 1em 0;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
	text-decoration: none;
}

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

h2 {
	font-size: 1.5em;
	line-height: 1.5em;
}

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

h4 {
	font-size: 1.1em;
	line-height: 1.5em;
}

h5 {
	font-size: 0.9em;
	line-height: 1.5em;
}

h6 {
	font-size: 0.7em;
	line-height: 1.5em;
}

sub {
	font-size: 0.8em;
	position: relative;
	top: 0.5em;
}

sup {
	font-size: 0.8em;
	position: relative;
	top: -0.5em;
}

hr {
	border: 0;
	border-bottom: solid 2px #efefef;
	margin: 2em 0;
}

hr.major {
	margin: 3em 0;
}

blockquote {
	border-left: solid 6px #efefef;
	font-style: italic;
	margin: 0 0 2em 0;
	padding: 0.5em 0 0.5em 1.5em;
}

code {
	background: #f7f7f7;
	border-radius: 0.35em;
	border: solid 2px #efefef;
	font-family: "Courier New", monospace;
	font-size: 0.9em;
	margin: 0 0.25em;
	padding: 0.25em 0.65em;
}

pre {
	-webkit-overflow-scrolling: touch;
	font-family: "Courier New", monospace;
	font-size: 0.9em;
	margin: 0 0 2em 0;
}

pre code {
	display: block;
	line-height: 1.75em;
	padding: 1em 1.5em;
	overflow-x: auto;
}

.align-left {
	text-align: left;
}

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

.align-right {
	text-align: right;
}

/* Legacy grid system and other components preserved for compatibility */
.container {
	margin-left: auto;
	margin-right: auto;
}

.container.\31 25\25 {
	width: 100%;
	max-width: 1200px;
	min-width: 960px;
}

.container.\37 5\25 {
	width: 720px;
}

.container.\35 0\25 {
	width: 480px;
}

.container.\32 5\25 {
	width: 240px;
}

.container {
	width: 960px;
}

/* Row/Grid System */
.row {
	border-bottom: solid 1px transparent;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.row > * {
	float: left;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.row:after, .row:before {
	content: '';
	display: block;
	clear: both;
	height: 0;
}

.row.uniform > * > :first-child {
	margin-top: 0;
}

.row.uniform > * > :last-child {
	margin-bottom: 0;
}

.row.\30 \25 > * {
	padding: 0 0 0 0em;
}

.row.\30 \25 {
	margin: 0 0 -1px 0em;
}

.row.uniform.\30 \25 > * {
	padding: 0em 0 0 0em;
}

.row.uniform.\30 \25 {
	margin: 0em 0 -1px 0em;
}

.row > * {
	padding: 0 0 0 2.5em;
}

.row {
	margin: 0 0 -1px -2.5em;
}

.row.uniform > * {
	padding: 2.5em 0 0 2.5em;
}

.row.uniform {
	margin: -2.5em 0 -1px -2.5em;
}

/* Grid columns */
.\31 2u, .\31 2u\24 {
	width: 100%;
	clear: none;
	margin-left: 0;
}

.\31 1u, .\31 1u\24 {
	width: 91.6666666667%;
	clear: none;
	margin-left: 0;
}

.\31 0u, .\31 0u\24 {
	width: 83.3333333333%;
	clear: none;
	margin-left: 0;
}

.\39 u, .\39 u\24 {
	width: 75%;
	clear: none;
	margin-left: 0;
}

.\38 u, .\38 u\24 {
	width: 66.6666666667%;
	clear: none;
	margin-left: 0;
}

.\37 u, .\37 u\24 {
	width: 58.3333333333%;
	clear: none;
	margin-left: 0;
}

.\36 u, .\36 u\24 {
	width: 50%;
	clear: none;
	margin-left: 0;
}

.\35 u, .\35 u\24 {
	width: 41.6666666667%;
	clear: none;
	margin-left: 0;
}

.\34 u, .\34 u\24 {
	width: 33.3333333333%;
	clear: none;
	margin-left: 0;
}

.\33 u, .\33 u\24 {
	width: 25%;
	clear: none;
	margin-left: 0;
}

.\32 u, .\32 u\24 {
	width: 16.6666666667%;
	clear: none;
	margin-left: 0;
}

.\31 u, .\31 u\24 {
	width: 8.3333333333%;
	clear: none;
	margin-left: 0;
}

/* Box */
.box {
	border-radius: 0.35em;
	border: solid 2px #efefef;
	margin-bottom: 2em;
	padding: 1.5em;
}

.box > :last-child,
.box > :last-child > :last-child,
.box > :last-child > :last-child > :last-child {
	margin-bottom: 0;
}

.box.alt {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Image */
.image {
	border: 0;
	display: inline-block;
	position: relative;
}

.image:before {
	-moz-transition: opacity 0.2s ease-in-out;
	-webkit-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.image.thumb {
	text-align: center;
}

.image.thumb:after {
	-moz-transition: opacity 0.2s ease-in-out;
	-webkit-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
	border-radius: 0.35em;
	border: solid 3px rgba(255, 255, 255, 0.5);
	color: #fff;
	content: 'View';
	display: inline-block;
	font-size: 0.8em;
	font-weight: 400;
	left: 50%;
	line-height: 2.25em;
	margin: -1.25em 0 0 -3em;
	opacity: 0;
	padding: 0 1.5em;
	position: absolute;
	text-align: center;
	text-decoration: none;
	top: 50%;
	white-space: nowrap;
}

.image.thumb:hover:after {
	opacity: 1.0;
}

.image.thumb:hover:before {
	opacity: 1.0;
}

.image img {
	display: block;
}

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

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

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

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

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

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

.image.avatar {
	border-radius: 100%;
}

.image.avatar:before {
	display: none;
}

.image.avatar img {
	border-radius: 100%;
	width: 100%;
}

/* List */
ol {
	list-style: decimal;
	margin: 0 0 2em 0;
	padding-left: 1.25em;
}

ol li {
	padding-left: 0.25em;
}

ul {
	list-style: disc;
	margin: 0 0 2em 0;
	padding-left: 1em;
}

ul li {
	padding-left: 0.5em;
}

ul.alt {
	list-style: none;
	padding-left: 0;
}

ul.alt li {
	border-top: solid 2px #efefef;
	padding: 0.5em 0;
}

ul.alt li:first-child {
	border-top: 0;
	padding-top: 0;
}

ul.icons {
	cursor: default;
	list-style: none;
	padding-left: 0;
}

ul.icons li {
	display: inline-block;
	padding: 0 1em 0 0;
}

ul.icons li:last-child {
	padding-right: 0;
}

ul.icons li .icon:before {
	font-size: 1.5em;
}

ul.actions {
	cursor: default;
	list-style: none;
	padding-left: 0;
}

ul.actions li {
	display: inline-block;
	padding: 0 1em 0 0;
	vertical-align: middle;
}

ul.actions li:last-child {
	padding-right: 0;
}

ul.actions.small li {
	padding: 0 0.5em 0 0;
}

ul.actions.vertical li {
	display: block;
	padding: 1em 0 0 0;
}

ul.actions.vertical li:first-child {
	padding-top: 0;
}

ul.actions.vertical li > * {
	margin-bottom: 0;
}

ul.actions.vertical.small li {
	padding: 0.5em 0 0 0;
}

ul.actions.vertical.small li:first-child {
	padding-top: 0;
}

ul.actions.fit {
	display: table;
	margin-left: -1em;
	padding: 0;
	table-layout: fixed;
	width: calc(100% + 1em);
}

ul.actions.fit li {
	display: table-cell;
	padding: 0 0 0 1em;
}

ul.actions.fit li > * {
	margin-bottom: 0;
}

ul.actions.fit.small {
	margin-left: -0.5em;
	width: calc(100% + 0.5em);
}

ul.actions.fit.small li {
	padding: 0 0 0 0.5em;
}

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

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

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

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

table td {
	padding: 0.75em 0.75em;
}

table th {
	color: #787878;
	font-size: 0.9em;
	font-weight: 400;
	padding: 0 0.75em 0.75em 0.75em;
	text-align: left;
}

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

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

/* Button */
input[type="submit"],
input[type="reset"],
input[type="button"],
.button {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
	background-color: transparent;
	border-radius: 0.35em;
	border: solid 3px #efefef;
	color: #787878 !important;
	cursor: pointer;
	display: inline-block;
	font-weight: 400;
	height: 3.15em;
	height: calc(2.75em + 6px);
	line-height: 2.75em;
	min-width: 10em;
	padding: 0 1.5em;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:hover {
	border-color: #49bf9d;
	color: #49bf9d !important;
}

input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active,
.button:active {
	background-color: rgba(73, 191, 157, 0.1);
	border-color: #49bf9d;
	color: #49bf9d !important;
}

input[type="submit"].icon,
input[type="reset"].icon,
input[type="button"].icon,
.button.icon {
	padding-left: 1.35em;
}

input[type="submit"].icon:before,
input[type="reset"].icon:before,
input[type="button"].icon:before,
.button.icon:before {
	margin-right: 0.5em;
}

input[type="submit"].fit,
input[type="reset"].fit,
input[type="button"].fit,
.button.fit {
	display: block;
	margin: 0 0 1em 0;
	min-width: 0;
	width: 100%;
}

input[type="submit"].small,
input[type="reset"].small,
input[type="button"].small,
.button.small {
	font-size: 0.8em;
}

input[type="submit"].big,
input[type="reset"].big,
input[type="button"].big,
.button.big {
	font-size: 1.35em;
}

input[type="submit"].special,
input[type="reset"].special,
input[type="button"].special,
.button.special {
	background-color: #49bf9d;
	border-color: #49bf9d;
	color: #ffffff !important;
}

input[type="submit"].special:hover,
input[type="reset"].special:hover,
input[type="button"].special:hover,
.button.special:hover {
	background-color: #5cc6a7;
	border-color: #5cc6a7;
}

input[type="submit"].special:active,
input[type="reset"].special:active,
input[type="button"].special:active,
.button.special:active {
	background-color: #3eb08f;
	border-color: #3eb08f;
}

input[type="submit"].disabled, input[type="submit"]:disabled,
input[type="reset"].disabled,
input[type="reset"]:disabled,
input[type="button"].disabled,
input[type="button"]:disabled,
.button.disabled,
.button:disabled {
	background-color: #e7e7e7 !important;
	border-color: #e7e7e7 !important;
	color: #b2b2b2 !important;
	cursor: default;
}

/* Icon */
.icon {
	text-decoration: none;
	border-bottom: none;
	position: relative;
}

.icon:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-transform: none !important;
}

.icon > .label {
	display: none;
}

/* Form Elements */
form {
	margin: 0 0 2em 0;
}

label {
	color: #787878;
	display: block;
	font-size: 0.9em;
	font-weight: 400;
	margin: 0 0 1em 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	background: #f7f7f7;
	border-radius: 0.35em;
	border: solid 2px transparent;
	color: inherit;
	display: block;
	outline: 0;
	padding: 0 0.75em;
	text-decoration: none;
	width: 100%;
}

input[type="text"]:invalid,
input[type="password"]:invalid,
input[type="email"]:invalid,
select:invalid,
textarea:invalid {
	box-shadow: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
	border-color: #49bf9d;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
	height: 2.75em;
}

textarea {
	padding: 0.75em;
}

/* Main Layout */
#main {
	margin-left: 0;
	max-width: none;
	padding: 0;
	width: 100%;
}

#main > section {
	border-top: none;
	margin: 0;
	padding: 0;
}

#main > section:first-child {
	border-top: 0;
	margin-top: 0;
	padding-top: 0;
}