/* CSS Document */

html, body {
	margin:0px;
	padding:0px;
	width:100%;
	height:100%;
	overflow:hidden;
	background-color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

#container {
	width:100%;
	height:100%;
}

/* FOOTER */
ul#footer {
	text-transform:none;
	position: absolute;
	width: 100%;
	height: 20px;
	bottom: 0px;
	left:0px;
	text-align: center;
	padding:0px;
	margin: 0px;
	z-index: 300;
	background:black;
	font-family: verdana, arial, sans-serif;
	font-size: 12px;
}

#footer li {
	display: inline;
	list-style-type: none;
	color:#999999;
}

#footer li a {
	
	color: #f1f1f1;
	text-decoration: none;
	margin-left: 10px;
}

#footer li a:hover {
	color: #c1c1c1;
	text-decoration: underline;
}

#footer li ul
{
	display: none;	
	position: absolute;
	height: 20px;
	bottom: 20px;
	left:0px;
	width:100%;
	background:black;
	margin:0px;
	padding:0px;
}

#footer li:hover ul { display: block; }

/* END FOOTER */