/*
==========================
===== GLOBAL STYLING =====
==========================
*/
* {
	margin: 0;
	padding: 0;
}
body {
	font-size: 100%;
	background: url(../_img/bg_main.jpg) repeat-x #fffff6;
	font-family: Garamond, Georgia, "Times New Roman", Times, serif;
}
h2 {
	color: #280060;
	letter-spacing: -1px;
	margin: 20px 0;
	font-size: 2em;
	font-family: Garamond, Georgia, "Times New Roman", Times, serif;
}
h3 {
	color: #280060;
	letter-spacing: -1px;
	margin: 20px 0;
	font-size: 1.5em;
	font-family: Garamond, Georgia, "Times New Roman", Times, serif;
}
p, li, quote {
	margin: 0 0 10px 0;
	color: #333333;
}
a { color: #004d1f; }
a:hover {
	background: #004d1f;
	text-decoration: none;
	color: #fff;
}
ul { margin: 20px 0 20px 40px; }
li { list-style: url(../_img/bullet.gif); }
q {
	margin: 0 0 20px 20px;
	padding: 0 0 0 10px;
	display: block;
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	border-left: 2px #FFCC00 dashed;
}

/* ----------------------------------------------------------- DIV ID STYLING */
#rootContainer {
	width: 700px;
	margin: auto;
}
#header {
	background: url(../_img/header.jpg);
	height: 131px;
	width: 700px;
}
#content { width: 700px; }

/* ----- NAV ----- */
#nav {
	font-size: 0.9em;
	letter-spacing: -1px;
	margin: 7px auto 7px auto;
	width: 651px;
}
#nav li {
	display: inline;
	margin: 0 20px 0 0;
}
#nav #lastOne { margin: 0; }
#nav a {
	color: #2c2c2c;
	text-decoration: none;
	background: none;
}
.selected, #nav a:hover {
	color: #ff2f01;
	text-decoration: underline;
}

/* ----- FOOTER ----- */
#footer {
	background: url(../_img/footer.jpg) no-repeat top;
	padding: 66px 0 0 0;
	color: #b1b18f;
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	margin: 30px 0 40px 0;
}
#footer a {
	color: #b1b18f;
	font-weight: bold;
	text-decoration: none;
}
#footer a:hover { 
	text-decoration: underline;
	background: none;
}

/* ----------------------------------------------------------- RANDOM CLASSES */
.hideMe {
	position: absolute;
	left: -9999em;
	line-height: 0em;
}
.centre { text-align: center; }
.floatLeft { float: left; }
.floatRight { float: right; }
.clearer { clear: both; }
.bold {
	font-weight: bold;
	color: #000;
}
.small {
	font-size: 0.75em;
	font-style: italic;
}