@charset "utf-8";
/* CSS Document */

body{
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	text-align:center;
	background:#dfdede;
	margin:0;
}

a{
	font-size:30px;
	

}

a:link {
	color: #000;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #000;
}
a:hover {
	text-decoration: underline;
	color: #000;
}
a:active {
	text-decoration: none;
	color: #000;
}

#container{
	width:100%;
	margin:0 auto;
}

#header{
	background:#0F0; 
	width:100%;
	height:100px;
	position:fixed;
	top:0;
	line-height:100px;
}

#navigation{
	width:100%;
	height:50px;
	background:#FF0;
	float:left;
	position:fixed;
	top:100px;
}

#content{
	float:left;
	width:100%;
	height:100%;
	background:#F90;
	margin-top:150px;
	text-align:left;
}

#footer{
	background:#3CF;
	clear:both;
	font-size:10px;
	width:100%;
	height:25px;

}