/*
	Table of Contents
	=================

	* Reset
	* Clearfix
	* Base
	* Forms
*/


/* ==========================================================================
	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;
}


/* ==========================================================================
	Clearfix
========================================================================== */

.clearfix:before, .clearfix:after, .row:before, .row:after { content: ''; display: table; }
.clearfix:after, .row:after { clear: both; }
.clearfix, .row { zoom: 1; }


/* ==========================================================================
	Base
========================================================================== */

* {
	-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}
body {
	background: #f0f0f0;
	color: #6e6e6e;
	font-size: 14px/1.6;
	font-family: "proxima-nova-1","proxima-nova-2", Helvetica, Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "museo", "arvo-1", "arvo-2", Georgia, serif;
	font-weight: normal;
	line-height: 1.2;
	margin: 0 0 15px;
}
h1 {
	font-size: 30px;
}
h2 {
	font-size: 26px;
}
h3 {
	font-size: 22px;
}
h4 {
	font-size: 18px;
}
p {
	margin-bottom: 20px;
}
blockquote {
	background: #ddd;
	border-left: 5px solid #ccc;
	margin: 0 0 20px;
	padding: 20px;
}
pre, code {
	font-family: "Andale Mono", "Lucida Console", monospace;
	margin: 0 0 20px;
}
a {
	color: #2980b9;
	text-decoration: none;
}
a:visited {
}
a:hover,
a:active,
a:focus {
	color: #333;
}
del, strike {
	text-decoration: line-through;
}
em, i {
	font-style: italic;
}
ul, ol {
	margin-bottom: 20px;
}
ul.disc {
	list-style-type: disc;
}
ul.circle {
	list-style-type: circle;
}
ul.square {
	list-style-type: square;
}
ol.decimal {
	list-style-type: decimal;
}
small {
	font-size: 80%;
}
strong, b {
	font-weight: bold;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
table {
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	margin: 0 0 20px;
	width: 100%;
}
th {
	background: #eee;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	font-weight: bold;
	padding: 10px 0;
}
td {
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	text-align: center;
	padding: 10px 0;
}

.full {
	width: 100%;
}
.half {
	width: 50%;
}
.quarter {
	width: 25%;
}

/* Buttons*/
p.button a, a.button {
	background: #01abc5;
	color: #FFF;
	font-family: "museo-slab", "arvo", Georgia, serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	padding: 12px 15px 11px;
	text-transform: uppercase;
}
p.button a:hover, a.button:hover {
	color: #002228;
}

/* ==========================================================================
	Forms
========================================================================== */

form {
	margin: 0 0 5px;
}
input,
textarea {
	font: 14px/1.6 Helvetica, Arial, sans-serif;
	border: none;
}
input[type="text"],
input[type="password"],
input[type="email"],
textarea {
	padding: 4px 10px;
	background: #f0f0f0;
	margin: 0;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
	outline: none;
}
input[type="submit"] {
	cursor: pointer;
	margin: 0;
	padding: 5px 15px;
}
textarea {
	line-height: 1.6;
}
select {
	margin: 0 0 5px;
}
form .clear {
	clear: both;
}
form .group {
	margin-bottom: 15px;
}
form .field {
	margin-bottom: 5px;
}
label span {
	font-size: 12px;
}
