/* basic setup */
* {
	margin: 0;
	padding: 0;
	border: none;
	text-decoration: none;
	outline: 0;
}

body {
	font-family: 'Caveat', cursive;
	color:#fff;
	text-align: center;
	background: url('../images/frseedyr418-adrian.jpg')no-repeat center bottom fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

p {
	font-size: 1.5em;
	font-family: 'Lato', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
	margin-bottom: 15px;
	line-height: 150%;
	font-weight: normal;
}

ol,
ul {
	margin-right: 15px;
}

h1 {
	font-size: 10em;
}


/* hightlighted text: 
	- Safari >=1.1, Opera >=9.5, IE9
	- Firefox >=1 */
::selection {
    background: #aaa;
}
::-moz-selection {
    background: #aaa;
}



/* basic classes */
.align-left {
	float:left;
	margin-right: 15px;
}

.align-right {
	float:right;
	margin-left: 15px;
}

.clearer {
	clear: both;
}

/* basic structure */
#wrapper {
	padding: 10px 20px;
	width: 960px;
	margin: 0 auto;
}

header {
	margin-top: 150px;
	margin-bottom: 80px;
	clear:both;
}

#logo {
	float:right;
}

footer {
	border-top: 1px solid #ddd;
	font-size: 0.8em;
	color:#999;
	text-align: right;
	position: absolute;
	bottom:10px;
	left:30%;
}

footer p {
	
}

footer p a,
footer p a:link,
footer p a:active {
	text-decoration: none;
}


/* navigation */
nav {
	list-style-type: none;
}

nav li a,
nav li a:link,
nav li a:active {
	text-decoration: none;
	color:#aaa;
}

nav li a:hover {
	color:#000;
}


/* normal links */
a,
a:link,
a:active {
	color:#999;
	text-decoration: underline;
}

a:hover {
	color:#333;
}

/* 1000px: smaller screen */
@media (max-width: 1000px) {
	#wrapper {
		width: auto;
		padding: 0;
		margin: 0px 20px;
	}
}

/* 720px: nav collapse */
@media (max-width: 720px) {
	#logo {
		margin:0 auto;
		float: none;
	}

	header {
		text-align: center;
	}

	nav li a {
		font-size: 1.5em;
	}

	.align-left {
		float:none;
	}

	.align-right {
		float:none;
	}

	#main img {
		width: 100%;
	}
}