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: 400%;
	font: inherit;
	vertical-align: baseline;

	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;

	-webkit-font-smoothing: antialiased;
}
/* HTML5 display-role reset for older browsers */
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;
}

/* ===== Typography ===== */

h1 {
	color: #FFF;
	font: normal 700 2em/1em 'Open Sans', sans-serif;
	margin: 0 0 25px 0;
	text-align: center;
	text-transform: uppercase;
}

h3 {
	color: #FFF;
	font: normal 700 1em 'Open Sans', sans-serif;
	margin: 10px 0 0 0;
}

p {
	color: #FFF;
	font: normal 400 .9em 'Open Sans', sans-serif;
	margin: 0 0 15px 0;
}

p.red {
	font-weight: 700;
}

/* ===== Main Styling ===== */

body {
	background: #000;
}

.red {
	color: #cf171f;
}

input[type='text']:focus {
	background: rgba(255,255,255,1) !important;
	outline: none;
}

form {
	margin: auto;
	width: 800px;
}

.form {
	margin: 30px auto 0 auto;
	width: 400px;
}

input[type='text'] {
	background: rgba(255,255,255,.85);
	border: none;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	color: #555;
	font: normal 400 1em 'Open Sans', sans-serif;
	margin: 5px 0 0 0;
	padding: 5px 10px;
	width: 100%; height: 40px;
	
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	
	transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
}

input[type='submit'] {
	background: #cf171f;
	border: none;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	box-shadow: inset 0 -4px 1px rgba(0,0,0,.3);
	color: #FFF;
	cursor: pointer;
	display: block;
	font: normal 700 1em 'Open Sans', sans-serif;
	margin: 25px auto 50px auto;
	padding: 1em 2em;
	text-transform: uppercase;
	
	transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
}

	input[type='submit']:hover {
		background: #e9242e;
	}

.shorter {
	width: 50% !important;
}

.additional input[type='text'] {
	margin: 0 0 0 5px;
	width: 50px;
	text-align: center;
}

.additional table {	
	color: #FFF;
	font: normal 400 .9em 'Open Sans', sans-serif;
	width: 100%;
}

table tr:nth-child(2n) {
	background: #cf171f;
}

table td {
	padding: 10px;
	text-align: right;
}

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

.footnote {
	font-size: .75em;
	font-style: italic;
	margin: 15px 0 0 0;
}