*{
	margin: 0;
	padding: 0;
}

body{
	font-family: 'Lobster', cursive;
	background: #EEEEEE; /* for non-css3 browsers */
	background: -webkit-gradient(linear, left top, left bottom, from(#CCCCCC), to(#EEEEEE)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #CCCCCC,  #EEEEEE); /* for firefox 3.6+ */ 
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#CCCCCC', endColorstr='#EEEEEE'); /* for IE */
}

#header{
	background-color: #222222;
	color: #FFFFFF;
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	height: 150px;
	text-align: center;
	font-size: larger;
	box-shadow: 0px 2px 10px #333333;
}

#nav{
	position: absolute;
	width: 800px;
	left: 50%;
	margin-left: -400px;
	font-size: xx-large;
	margin-top: 100px;
	opacity:0.75;
	display: table;
}

#nav a, #nav a:visited{
	color: #FFFFFF;
	text-decoration: none;
	margin-left:-1px;
	margin-right:-1px;
}

#navone a:hover{
	border-bottom: 5px solid teal;
}
#navtwo a:hover{
	border-bottom: 5px solid fuchsia;
}
#navthree a:hover{
	border-bottom: 5px solid yellow;
}

.navitem{
	padding-left: 5px;
	padding-right: 5px;
/*	margin-left: 100px;
	margin-right: 100px;
*/	display: table-cell;
	text-align: center;
}

#navone{
	text-align: left;
}

#navtwo{
}

#navthree{
	text-align: right;
}

#navlineleft{
	position: absolute;
	left: 0px;
	width: 0px;
	height: 5px;
	font-size:0;
}
#navlineright{
	position: absolute;
	right: 0px;
	width: 0px;
	height: 5px;
	font-size:0;
}

#content{
	color: #222222;
	position: absolute;
	width: 800px;
	left: 50%;
	margin-left: -400px;
	top: 150px;
	bottom: 50px;
	font-size: xx-large;
}

#lineone{
	font-size: larger;
	margin-top: 20px;
}

#linetwo{
	font-size: 100px;
	text-shadow: 2px 2px 0 rgba(50, 50, 50, 0.5);
}

#linethree{
	font-size: smaller;
	text-align: right;
	color: #999999;
	margin-top: 10px;
}

#footer{
	color: #999999;
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	height: 50px;
	font-size: 30px;
	text-align: center;
}