/* General page layout styles
 ******************************/

body {
/*	background: fixed #FFF url('../images/layout/page-background.jpg') no-repeat center top;*/
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	text-align: center;
}

body * { font-size: 100%; }

#layout {
	margin: 0 auto;
	width: 960px;
}

/* For blind users, so they don't have to go through the menu links every time they read a page */
.skipnavigation {
	left: -1000px;
	position: absolute;
}

#header {
	background: #8C8C8C url('../images/layout/site-banner.jpg') no-repeat center top;
	color: #000;
	height: 130px;
	overflow: hidden;
	text-align: center;
}

#header h1 {
	display: none;
}

#content {
	background: #A6A6A6;
	border: 1px solid #000;
	margin: 0 auto;
	overflow: hidden;
	width: 958px;
}

	#contentInner {
		margin: 0 auto; /* Shouldn't need this but it won't hurt */
		padding: 10px 10px 20px; /*Top, left and right, bottom */
		text-align: left;
		width: 930px; /* knock 10px off each side for the padding above */
	}

#footer {
	margin: 10px auto 0;
	overflow: hidden;
	text-align: center;
	width: 960px;
}

	#footer p {
		font-size: 12px;
		font-style: italic;
		margin: 0;
	}

/* Main Menu
 ******************************/

#menu {
	background: #A6A6A6;
	color: #000;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 1px;
	overflow: hidden;
	text-align: center;
	width: 960px;
}

	#menu ul {
		list-style: none;
		margin: 0 0 0 20px;
		padding: 0;
	}

		#menu ul li {
			display: inline;
/*			float: left;*/
			margin: 4px 30px 4px 0;
		}

		#menu a, #menu a:visited {
			color: #000;
			text-decoration: none;
		}

		#menu a:hover, #menu a:active {
			color: #F90;
		}


/* Text and formatting.
 ******************************/

p {
	font-size: 14px;
	line-height: 1.5;
}

.left	{ text-align: left; }
.center	{ text-align: center; }
.right	{ text-align: right; }

a, a:visited {
	color: #F90;
	text-decoration: underline;
}

a:hover, a:active {
	text-decoration: underline;
}

img { border: 0; }
