/* CSS Document */

html, body {
	text-align: center;
}

body {
	background-color: #FFFFFF;
	margin: 2em 0 2em 0;
	padding: 0;
}

.layout {
	height: 100%;
	width: 100%;
}

#container {
	position: relative;
	margin: auto;
	min-height: 550px;
	height: auto;
	_height: 100%; 
	width: 95%;
	min-width: 733px;
	border: 1px solid gray;
}

#header {
	height: 75px;
	width: 100%;
}

#banner {
	margin: 5px;
	height: 45px;
	background-color: #F5F7F0;
	text-align: right;
}

#address {
	float: right;
	margin-right: 5px;
	padding-right: 10px;
	
	width: 600px;
	height: 25px;
	
	background-color: #710000;
	color: #FFFFFF;
	font-weight: bold;
	text-align: right;
}
/*IE min-width issue*/
#minwidth {
	float: right;
	margin: 0;
	padding: 0;
	width: 750px;
}

#center {
	position: relative;
	height: 100%;
	width: 100%;
}

#menu {
	float: left;
	margin-left: 0;
	width: 150px;
	height: 395px;
}

#content {
	position: relative;
	margin: 0px 5px 0px 160px; 
	padding: 0;
	height: 100%;
	border: 1px solid gray;
}

#footer {
	height: 60px;
	width: 100%;
}
	
#numbers {
	height: 25px;
	width: auto;
	margin: 5px;
	color: #710000;
	text-align: center;
	background-color: #F5F7F0;
}

#nav {
	height: 25px;
	width: auto;
	margin: 5px;
	color: #FFFFFF;
	text-align: center;
	background-color: #710000;
	word-spacing: 1em;
}

/*Positioning */
#imagefloat{
	float: right;
	clear: right;
	width: 335px;
	height: 248px;
	margin: 0;
	padding: 0;
} 

.top {
	position: absolute;
	top: 80px;
	left: 4px;
}

.bottomright {
	position: absolute;
	right: 0px;
	bottom: 0px;
}
.bottomCenter {
	position:absolute;
	bottom: 0px;
	width: 100%;
	text-align: center;
}
.bottomleft {
	position: absolute;
	left: 0px;
	bottom: 0px;
}
.middleright {
	position: absolute;
	right: 0px;
}
.floatLeft {
	float: left;
}
.floatRight {
	float: right;
}
