/* Remove margins from the 'html' and 'body' tags, and ensure the page takes up full screen height */
html, body 
{
	height:100%; 
	margin:0; 
	padding:0;
	background-color: #565d66;
	font-family: Verdana, Geneva, sans-serif;
	color:#CCC;
	font-size: .8em;
}
/* Set the position and dimensions of the background image. */
#page-background 
{
	position:fixed; 
	top:0; 
	left:0; 
	width:100%; 
	height:100%;
}

#content 
{
	position:relative;	 
	z-index:1;
	width: 100%;
	height: 100%;
}

a.linkNormal:link,a.linkNormal:visited,a.linkNormal:active
{
	text-decoration: none;
	color: #fff;	
}

a.linkNormal:hover
{
	text-decoration: none;
	color: #ccc;	
}