@charset "UTF-8";

.container {
	width: 960px;
	background: #000;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	overflow: hidden; /* this declaration makes the .container understand where the floated columns within ends and contain them */
}

* {
	margin:0;
}
body {
	background-color: #000;
	font-family: Helvetica, sans-serif;
	margin: 10px;
}
p {
	color: #FFFFFF;
	font-size: medium;
}
h1 {
	
	font-size: x-large;
	color: #fbe705;
	text-shadow: 0px 2px #F60;
}
h2 {
	
	font-size: medium;
	color: #F90;
	font-weight: bold;
}
li {
	display:inline;	
	
	color: #fbe705;
	font-weight: bold;
	font-size:x-large;
	margin-left: 10px	
}
ul {
	border:0;
	float:right;
	margin-left: 8px ;
	
}
a {
	color: #FF6000;
	text-decoration: none;	
	font-weight: normal;
}
	a:visited{
		color: #B44300;	
}
	a:hover{
	color: #FF3399;
	text-decoration: underline;
}
