body {
	margin: 0; padding: 0;

	background: black url('../images/background.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: bottom center;
	
	text-align: center;
}



#page { 
	width: 1000px; 
	height: 700px; 
	margin: auto;
	position: relative;
	text-align: left;
}

#header {
	position: absolute;
	top: 25px;
	left: 200px;
	width: 600px;
	height: 111px;
}

#header a {
	display: block;
	width: 100%;
	height: 100%;
	background: url('../images/header-title.png');
	background-attachment: 50% 50%;
	background-repeat: no-repeat;
}

#mainmenu {
	position: absolute;
	left: 0px;
	top: 135px;
	width: 1000px;
	text-align: center;
}

ul.menubar {
	position: relative;
	top: 0; left: 0;
	margin: 0; padding: 0;
	font-size: 11px;
	line-height: 11px;
	text-align: center;
	white-space: nowrap;
	z-index: 9999;
	text-transform: uppercase;
	
}
 
ul.menubar li {
	position: relative;
	margin: 0; padding: 0; list-style-type: none;
	display: inline;
	text-align: center;
	z-index: 9999;
}

ul.menubar li.label {
	position: relative;
	top: 3px;
	padding: 3px 20px;
}

ul.menubar li a {
	position: relative;
	top: 4px;
	padding: 3px 20px;
	color: #eee;
	text-decoration: none;
	text-transform: uppercase;
	border: 1px solid #33333300;
	
	-webkit-transition-property: color, background-color, border-color;
	-webkit-transition-duration: 0.2s;
}

ul.menubar li:hover a {
	color: #eee;
	background-color: #111;
	text-decoration: none;
	border-color: #333;
}

ul.menubar li a.selected {
	text-decoration: underline;
}


ul.menubar li:hover a:hover {
	background-color: #222;
	color: #eef;
	z-index: 99999;
}
 
ul.menubar li ul {
	z-index: 9999;
 
	display: block;
	visibility: hidden;
	position: absolute;
	top: 19px;
	left: 0px;
	margin: 0; padding: 0;
	background-color: #222;
	border: 1px solid #222;
	border-top: 1px solid #222;
	
	-webkit-opacity: 0;
	-webkit-transition-property: -webkit-opacity;
	-webkit-transition-duration: 0.25s;
	
	-webkit-box-shadow: 0px 5px 5px #000;
	-moz-box-shadow: 0px 3px 3px #000;
}
 
ul.menubar li:hover ul {
	visibility: visible;
	-webkit-opacity: 1;
	z-index: 9999;
}
 
/* Hack to make the CSS menu align correctly in IE 7: */
#IERoot ul.menubar li:hover ul {
	margin-top: 4px;
}
 
ul.menubar li ul li {
	display: block;
	text-align: left;
	margin: 0; padding: 0;
	z-index: 9999;
}
 
ul.menubar li ul li a {
	display: block;
	top: 0;
	background: transparent;
	border: 0;
	margin: 0;
	z-index: 9999;
}
 
ul.menubar li:hover ul li a:hover {
	margin: -1px 0;
	border-top: 1px solid #222;
	border-bottom: 1px solid #222;
	z-index: 9999;
 }



#content {
	position: absolute; 
	left: 150px; 
	top: 210px; 
	width: 640px; 
	height: 376px;
}


h1 {
	text-align: center;
}
