body {
	width: 1000px;
}

#wrapper {
	width: 90%;
	background-color: #F0F0F0;
}

#main {
	width: 100%;
	height: 350px;
	min-height: 350px;
}

#header {
	height: 100px;
	min-height: 100px;
	background-color: #808080;
	position:relative;
}

#footer {
	height: 50px;
	min-height: 50px;
	background-color: #808080;
}

#menuwrapper {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 30px;
}
#menu {
	background-color: #000000;
	width: 100%;
	height: 100%;
	margin: 0px auto;
}
	#menu ul {
		list-style-type: none;
		padding: 0px;
		margin: 0px;
		display: inline-block;
	}
	#menu li {
		height: 100%;
		list-style-type: none;
		padding: 0px;
		margin: 0px;
		display: inline-block;
	}
	#menu a:link, a:visited {
		color: #FFFFFF;
		background-color: #000000;
		display: inline-block;
		line-height: 30px;
		text-decoration: none;
		text-transform:uppercase;
		font-weight:bold;
		width: 100px;
		vertical-align: middle;
	}
	#menu a:hover, a:active {
		background-color: #FFFFFF;
		color: #000000;
		text-decoration: none;
	}

.center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}