@charset "UTF-8";
	
	h2, p {
		text-align: center;
		color: #444;
		text-shadow: 0 1px 0 #fff;	
	}
	
	a {
	color: #fcc212;
	}

	#menu, #menu ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	
	#menu {
		width: 1000px;
		margin: 0px auto;
		border: 1px solid #222;
		background-color: #666;
		background-image: -moz-linear-gradient(#777, #666); 
		background-image: -webkit-gradient(linear, left top, left bottom, from(#777), to(#666));	
		background-image: -webkit-linear-gradient(#777, #666);	
		background-image: -o-linear-gradient(#777, #666);
		background-image: -ms-linear-gradient(#777, #666);
		background-image: linear-gradient(#777, #666);
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
		border-radius: 6px;
		-moz-box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset;
		-webkit-box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset;
		box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset;
	}
	
	#menu:before,
	#menu:after {
		content: "";
		display: table;
	}
	
	#menu:after {
		clear: both;
	}
