/*Lazy Man's Reset*/

* {
	padding: 0;
	margin: 0;
}

/*Body Styles*/
body {
	background: #b4733d;
	background-image: url('bkg.jpg');
	background-repeat: no-repeat;
	background-position: center;
}

#header {
  height: 25px;
  text-align: center;
  font: 12px/25px Helvetica, sans-serif;
  background: rgba(0,0,0,0.7);
  color: #eee;
}

#header a {
	color: #81dcff;
}

#headline {
	width: 680px;
	margin: 50px auto 0px;
	text-align: left;
}

#headline h2 {
	font: 50px/10px 'Trade Winds', Helvetica, sans-serif;
	text-shadow: 0px 3px 3px rgba(255,255,255,0.2);
	
	color: rgba(0,0,0,0.8);
	margin-bottom: 25px;
}

#headline p {
	font: 15px/10px 'Trade Winds', Helvetica, sans-serif;
	margin-top: 0px;
	color: rgba(0,0,0,0.8);
	text-shadow: 0px 3px 3px rgba(255,255,255,0.2);
}



/*Mordor Journey*/

#middleEarth {
	width: 500px;
	height: 375px;
	margin: 30px auto 0px;
	border: 3px solid white;

	-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
	
	/*Background*/
	background: url('frodo.jpg') no-repeat 150px 150px, url('middleearth.jpg') no-repeat;
	background-size: 100px 100px, 1000px 750px;
	
	/*Mouse Out Animation*/
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}

#middleEarth:hover {
	background: url('frodo.jpg') no-repeat 400px 240px, url('middleearth.jpg') no-repeat;
	background-size: 50px 50px, 500px 375px;
	
	/*Mouse In Animation*/
	-webkit-transition: all 5s ease;
	-moz-transition: all 5s ease;
	-o-transition: all 5s ease;
	-ms-transition: all 5s ease;
	transition: all 5s ease;
}