/* styles.css */

/**** Colours

body text: #6a6b6e
accent color: #e7bb45

****/

body {
	text-align: center;
	margin: 0 auto;
	font-family: helvetica, arial, sans-serif;
	font-weight: 0.8em;
	background: #f3f2f2 url(images/bg.gif) top repeat-x;
	color: #6a6b6e;
}


/*************** Layouts ****************/

#wrapper {
	margin: auto;
	width: 865px;
	text-align: left;
}

#header {
	text-align: center;
}

#header h1, #header h2 {
	display: none;
}

#fake-header {
	margin-top: 75px;
	padding-right: 1px;
	background-image: url(images/logo.gif);
	height: 116px;
	width: 865px;	
}

#fake-tagline {
	margin: auto;
	margin-top: 50px;
	height: 30px;
	width: 350px;
	background-image: url(images/tagline.gif);
}

#menu {
	margin-top: 90px;
	height: 35px;
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
	position: relative;
}

#content {
	position: relative;
	margin-top: 50px;
	display: block;
	width: 865px;
}

.one-third {
	float: left;
	width: 245px;
}

.two-thirds {
	float: left;
	width: 555px;
}

.pad-right {
	padding-right: 65px;
}

#footer {
	font-size: 0.8em;	
}


/*************** Typography ***************/

h2#tagline {
	font-weight: normal;
	color: #999;
	margin-top: 30px;
	font-size: 14px;
}

#menu ul {
	position: absolute;
	margin: 0;
	padding: 0;
	left: 15%;
}

#menu ul li {
	margin: auto;
	float: left;
	padding: 8px 15px 0 15px;
	list-style: none;
}

#menu ul li a {
	color: #666;
	text-decoration: none;
}

#menu ul li a:hover, #menu ul li a.current {
	color: #e7bb45;
}

#content h3 {
	color: #333;
	font-size: 0.9em;
	margin-left: -10px;
	margin: 0 0 5px 0;
}

/*************** Modifiers ***************/

.float-left {
	float: left;
}

.orange {
	color: #e7bb45;
}

.bold {
	font-weight: bold;
}

.hidden {
	display: none;
}