/* ==========================================================================
   $Reset
========================================================================== */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing   : border-box;
	-o-box-sizing     : border-box;
	-ms-box-sizing    : border-box;
	box-sizing        : border-box;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
html, body, div, p, address, blockquote, ol, ul, dd, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, pre, hr, menu, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary  {
	display: block;
}
video {
	cursor: pointer;
}
:focus {
	outline: 0;
}
html, body  {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
td {
	vertical-align: top;
}
blockquote:before, q:before {
	content: "'";
	margin-right: 5px;
}
blockquote:after, q:after {
	content: "'";
	margin-left: 5px;
}
input, textarea, select, button {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
}
textarea {
	overflow: auto;
	resize: vertical;
}
label, button, details, input[type="button"], input[type="submit"] {
	cursor: pointer;
}
button {
	width: auto;
	overflow: visible;
	border: 0;
}
h1, h2, h3, h4, h5, h6 {
	line-height: 1;
	text-rendering: optimizelegibility;
}

/* ==========================================================================
   $Essentials
========================================================================== */
/* For reference: Font Shorthand
{font: font-style font-variant font-weight font-size/line-height font-family;} */
.container {
	width: 80%;
	margin: 0 auto;
	position: relative;
}
.fl, .alignleft {
	float: left;
}
.alignleft {
	margin: 5px 2% 0 1%;
}
.fr, .alignright {
	float: right;
}
.alignright {
	margin: 5px 1% 0 2%;
}
.aligncenter {
	text-align: center;
}
.alignleft, .alignright, .aligncenter {
	border: 5px solid #d2d2d2;
	-webkit-border-radius: 2px;
	-moz-border-radius   : 2px;
	-o-border-radius     : 2px;
	border-radius        : 2px;
}
::selection {
	background: #d91350; color: #fff;
}

/* ==========================================================================
   $Text Styles
========================================================================== */
/* -- Links & Hover Styles -- */
a {	
	color: inherit;
	text-decoration: none;
	-webkit-transition: color 500ms ease;
	-moz-transition   : color 500ms ease;
	-o-transition     : color 500ms ease;
	transition        : color 500ms ease;
}
a:hover {
	color: #d91350;
}
a:active {	
	color: #c41249;
	-webkit-transition: color 500ms ease;
	-moz-transition   : color 500ms ease;
	-o-transition     : color 500ms ease;
	transition        : color 500ms ease;
}

/* -- Standard Formatting -- */
body {
	font: normal normal normal 1.4em/1 'Helvetica Neue', Helvetica, Arial, sans-serif, sans-serif;
	color: #333;
}
p {
	padding: 10px 0;
}
p:first-child {
	padding-top: 0;
}
p:last-child {
	padding-bottom: 0;
}
.bold, th, strong, dt {
	font-weight: bold;
}
.nobold {
	font-weight: normal;
}
del  {
	text-decoration: line-through;
}
blockquote, q, em, cite, dfn, cite, var, address  {
	font-style: italic;
}

/* -- Text Sizing -- */
small {
	font-size: 75%;
}
.large {
	font-size: 150%;
}

/* ==========================================================================
   $Heading Styles
========================================================================== */
h1 {
	font-size: 4em;
}
h2 {
	font-size: 3em;
}
h3 {
	font-size: 2em;
}

/* ==========================================================================
   $Clearing
========================================================================== */
/* -- Modern Browsers -- */
.cf:before, .cf:after,
.table .row:before, .table .row:after,
.form fieldset:before .form fieldset:after {
	content: "";
	display: table;
}
.cf:after,
.table .row:after,
.form fieldset:after {
	clear: both;
}
/* -- For IE6 & IE7 -- */
.cf,
.table .row,
.form fieldset {
	zoom: 1;
}
/* -- Standard clearing method -- */
.clear {
	clear: both;
}