@font-face {
	font-family: "Avenir-Light";
	src: url("/resources/fonts/Avenir/Avenir-Light.ttf") format('truetype');
	font-weight: lighter;
	font-style: normal;
}

@font-face {
	font-family: "Avenir-Heavy";
	src: url("/resources/fonts/Avenir/Avenir-Heavy.ttf") format("truetype");
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: "Avenir-Book";
	src: url("/resources/fonts/Avenir/Avenir-Book.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

* {
	font-family: 'Avenir-Book';
	color: #505050;
}
html
{
	position: relative;
	min-height: 100%;
}

html, body, main
{
	background-color: #f6f6f6;
}

header {
	height: 80px;
	background-color: #FFFFFF;
	box-shadow: 0px -2px 12px #30303010;
	width: 100%;
	position: fixed;
	top:0px;
	z-index: 10000;
}

header h1 {
	position: relative;
	left: 12px;
	font-size: 25px;
	font-family: 'Avenir-Light';
}

main
{
	margin-top:140px;
}

body
{
	padding-bottom: 50px;
}

.element
{
	margin-top: 50px;
	margin-bottom: 100px;
}

.element h3
{
	font-size: 20px;
}

.element h5
{
	font-size: 15px;
}

.element .separation
{
	width:1px;
	margin-left:25px;
	margin-right:25px;
	height: 35px;
	background-color: #FF7F00;
}

.element .button-layout
{
	position:relative;
	right: 7px;
}

button
{
	font-family: 'Avenir-Light';
	font-size: 13px;
	background: none;
	box-shadow: none;
	border: 1px solid #505050;
	height: 35px;
	display: inline-block;
	border-radius: 3px;
	padding-left:10px;
	padding-right: 10px;
	padding-bottom: 1px;
}

button:hover
{
	color: #FF7F00;
}

button:active
{
	color: #FF7F00;
	background-color: #505050;
	transition: background-color 100ms linear;
	appearance: none;
}

button:visited
{
	appearance: none;
}

footer
{
	height: 50px;
	position: absolute;
	bottom:0px;
	
}

footer p
{
	font-size: 12px;
}