* {
	margin: 0px;
	padding: 0px;
	border: 0px;
}
/* apply a natural box layout model to all elements */
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}
body {
	font-family: "ff-tisa-web-pro", serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.4;
	color: #333;
}
p {
	margin-bottom: 1em;
}
h2 {
	margin-bottom: 0.5em;
	font-family: "proxima-nova", Arial, Helvetica, sans-serif;
	font-weight: 300;
	font-size: 60px;
	line-height: 1.2;
	text-transform: uppercase;
}
a {
	position: relative;
	display: inline-block;
	outline: none;
	color: #CB3626;
	text-decoration: none;
	vertical-align: bottom;
	font-style: italic;
}
a:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	display: block;
	height: 2px;
	background-color: #CB3626;
}
a:hover:after {
	top: 0px;
	height: 2px;
}
.main {
	max-width: 680px;
	padding: 20px;
}