/* Main Layout */
body {
	background-image: url(bg.png);
	background-position: right bottom;
	background-attachment: fixed;
	margin: 0;
	color: #4e5e66;
	font-size: 14px;
	font-family: sans-serif;
}
#top {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 900px;
	height: 884px;
	background-image: url(top.png);
	background-repeat: no-repeat;
	background-position: center top;
	margin: 0;
	z-index: 1;
}
#nav {
	position: fixed;
	bottom: 280px;
	right: 0;
	width: 250px;
	height: 150px;
	text-align: right;
	z-index: 3;
}
#nav a {
	display: inline-block;
	line-height: 1.2;
	margin: 5px 2px;
	padding: 0 8px;
	text-decoration: none;
	text-transform: uppercase;
	font-family: 'Playfair Display SC', serif;
	font-weight: normal;
	font-size: 2em;
	color: #eee;
	background-color: transparent;
}
#nav a:hover {
	background-color: #111;
}
#content {
	position: absolute;
	top: 10%;
	right: 710px;
	width: 580px;
	margin: 0 auto;
	text-align: center;
	z-index: 2;
}
@media screen and (max-width: 1320px) {
	#top {
		height: 700px;
	}
	#nav {
		bottom: 100px;
	}
	#content {
		width: 500px;
		right: 690px;
	}
}
@media screen and (min-height: 1080px) {
	#content {
		top: 25%;
	}
}
#footer {
	font-size: .85em;
	margin: 50px 0;
	padding: 10px 5px;
}

input, textarea, select { 
	background-color: #bac8c6;
	font-size: .95em;
	font-family: sans-serif;
	color: #4e5e66; 
	border: 1px solid #888;
	padding: 5px;
}
input:hover, textarea:hover, select:hover {
	border: 1px solid #67b2bb;
}

/* Typography */
h1 {
	margin: 10px 0 -5px 0;
	font-family: 'Playfair Display SC', serif;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 2.8em;
	line-height: 1.3;
	color: #5eaeae;
	text-align: right;
}
h2 {
	margin: 20px 0 -10px 0;
	font-family: 'Merriweather', serif;
	font-weight: normal;
	font-style: italic;
	font-size: 1.5em;
	line-height: 1.2;
	color: #55a388;
	text-align: right;
}
p {
	text-align: justify;
	line-height: 1.5;
	margin: 10px auto 20px auto;
}
ol, ul {
	text-align: left;
}
li {
	line-height: 1.5;
}
i,em {
	color: #3099ae;
}
b,strong {
	color: #295f85;
}
a {
	color: #e53b1c;
	text-decoration: none;
}
a:hover {
	color: #bb1411;
}
blockquote {
	background-image: url(bg2.png);
	padding: 10px;
	color: #777;
	font-size: .9em;
}

/* Helpers */
a > img {
	border-style: none;
}
hr {
	border-width: 0;
	height: 10px;
}
.middle {
	border: 2px solid #9cc0be;
	margin: 2px;
	padding: 3px;
}
.middle:hover {
	border: 2px solid #67b2bb;
}
.item {
	float: left;
	margin: 0 12px 0 0;
}
.right {
	text-align: right;
}
.right img {
	float: right;
}
.right p {
	text-align: right;
	padding: 10px 0 0 0;
}
.clear {
	clear: both;
}