@font-face {
    font-family: avenirnextultralight;
    src: url("AvenirNextLTPro-UltLtCn.otf");
}

@font-face {
    font-family: avenirnextregular;
    src: url("OpenSansCondensed-Light.ttf");
}



*{
	font-family: avenirnextultralight, "Trebuchet MS", Helvetica, sans-serif;
	font-size: 19px;
	color: #000;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.i{
	font-style: italic;
}

html{
	margin :0;
	padding: 0;
	width: 100%;
	height: 100%;
    -webkit-text-size-adjust: 100%;
}

body{
	background-color: #fff;
	color: #333;
	margin :0;
	padding: 0;
	width: 100%;
	height: 100%;
	text-align: center;
}

span.highlight{
	font-family: avenirnextregular, "Trebuchet MS", Helvetica, sans-serif;
	font-size: 20px;
	color: #c73;
	padding-right: 3px;
}

h1, h2, h3{
	font-family: avenirnextregular, "Trebuchet MS", Helvetica, sans-serif;
	color: #c73;
}

h1{
	font-size: 40px;
	margin: 30px 0 10px;
	text-transform: uppercase;
	text-align: center;
}

h2{
	font-size: 40px;
	margin: 30px 0 10px;
	text-transform: uppercase;
	text-align: center;
}

h3{
	font-size: 32px;
	margin: 30px 0 10px;
	text-align: center;
}

div#main{
	width: 100%;
	max-width: 1400px;
	position: relative;
	margin: 0 auto;
	padding-bottom: 40px;
}

div#maintitle{
	position: relative;
	margin: 30px auto 0;
	border: 3px solid #999;
	color: #333;
	width: 250px;
	height: 250px;
	border-radius: 125px;
	font-size: 64px;
	line-height: 64px;
	padding-top: 70px;
}

div#maintitle div{
	font-size: 28px;
	line-height: 28px;
	margin: 0;
	padding: 0;
}

div#menu{
	position: relative;
	margin: 40px auto;
	width: 350px;
	max-width: 100%;
	opacity: 0;
	transition: opacity 600ms;
}

div#menu a{
	font-family: avenirnextregular, "Trebuchet MS", Helvetica, sans-serif;
	display: block;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 20px;
	color: #000;
	line-height: 28px;
	padding-top: 8px;
	border-bottom: 1px solid #888;
}

div#menu a:hover{
	background-color: #ddd;
}


img#mainbackground{
	position: relative;
	margin: 20px auto;
	width: 700px;
	max-width: 100%;
	opacity: 0.3;
}


#menutoggle{
	position: absolute;
	top: 3px;
	left: 3px;
	width: 40px;
	background-color: #fff;
	cursor: pointer;
}


#menutoggle div{
	background-color: #aaa;
	border-radius: 4px;
	height: 6px;
	width: 100%;
	margin: 6px 0;
}


div.item{
	margin: 100px auto 0;
}

div.item img{
	width: 100%;
	margin-top: 40px;
	padding: 0;
	max-width: 800px;
}

div#footer{
	font-size: 15px;
	color: #555;
	margin-top: 20px;
}


@media only screen and (min-width: 800px) {
	*{
		font-size: 19.5px;
		color: #333;
	}

	div#menu{
		width: 800px;
		max-width: 100%;
		opacity: 1;
	}

	#menutoggle{
		display: none;
	}

	div#menu a{
		display: inline-block;
		width: 110px;
		margin: 0 14px;
	}

	div.item img{
		box-shadow: 3px 3px 6px #999;
	}
}


