/* - Reset Everything ------------------------------------------------------- */
/* reset borders and margins on all elements */
/* applies relative margins to p, h, li, etc */
@import url(reset.css);




/* - General Class styles --------------------------------------------------- */
/* classes that do common styling things */
@import url(classes.css);




/* - Forms ------------------------------------------------------------------ */
/* generic css to do with form layout */
@import url(forms.css);




/* - Accessibility goodies -------------------------------------------------- */
@import url(accessibility.css);




/* - Default Styles --------------------------------------------------------- */
/* colours, sizes, etc of elements */

body {
	background: #fff url(/images/bg.jpg) repeat-x;
	font: 76%/1.4 Arial, Verdana, sans-serif;
	text-align: center;
	color: #333;
}

h1 {
	font-family: Gill Sans NT, Arial, sans-serif;
	font-size: 2em;
	color: #0895C1;
	font-weight: normal;
}

h2 {
	font-family: Gill Sans NT, Arial, sans-serif;
	font-size: 1.8em;
	color: #0895C1;
	font-weight: normal;
}

	.content1 h2 {
		margin-bottom: -8px;
		position: relative;
		line-height:1.1em;
	}

h3 {
	font-size: 1.6em;
	color: #0895C1;
	font-weight: normal;
	font-family: Gill Sans NT, Arial, sans-serif;
}

h4 {
	font-size: 1.4em;
	font-family: Gill Sans NT, Arial, sans-serif;
}

h5 {
	font-size: 1.2em;
	font-family: Gill Sans NT, Arial, sans-serif;
}

a:link {
	color: #9D0038;
	text-decoration: none;
}

a:visited {
	color: #9D0038;
	text-decoration: none;
}

a:hover {
	color: #098D43;
}

a:active {
	color: #933;
}

a img {
	border: 0;
}

p, input, select, th, td, table {
	font-size: 1em;
	/*line-height: 140%;*/
}

li li, li p, td p, blockquote p {
	font-size: 1em;
}

hr {
	display: none;
}


/* - The Look and Feel ------------------------------------------------------ */
/* the layout/positional css goes here */

/* container div */
#container {
	margin: 0 auto;
	text-align: left;
	width: 1024px;
	background: url(/images/bg-content.png) repeat-y;
	overflow: hidden;
}


/* header */
#header {
	height: 164px;
	width: 960px;
	margin: 0 21px;
}

	#logo a {
		float: left;
		width: 245px;
		height: 30px;
		margin: 6px 0 0 10px;
		text-indent: -999em;
		text-decoration: none;
	}
	
	#searchSite {
		float: right;
		width: 240px;
		border: 0;
		margin: 0;
	}
	
		#searchSite input.image {
			border: 0;
			padding: 0;
			margin-bottom: -4px;
		}

	.loggedOut #header {
		background: url(/images/header-loggedout.jpg) no-repeat;
	}
	
	.loggedIn #header {
		background: url(/images/header-loggedin.jpg) no-repeat;
	}
	
	.requests #header {
		background: url(/images/header-requests.jpg) no-repeat;
	}
	
	.forum #header {
		background: url(/images/header-forum.jpg) no-repeat;
	}
	
	
/* site navigation */
#nav {
	margin: 0 21px;
	background: #F0F0F0 url(/images/bg-nav-bottom.png) no-repeat bottom left;
	float: left;
	width: 960px;
	padding: 0;
}

	#nav ul {
		float: left;
		background: url(/images/bg-nav-top.png) no-repeat top left;
		width: 945px;
		padding: 0 0 0 15px;
		margin: 0;
		z-index: 99;
	}

	#nav li {
		float: left;
		list-style: none;
		margin: 0 20px 0 0;
		padding: 4px 0 4px 0;
		z-index: 99;
	}
	
		#nav li a {
			text-decoration: none;
			color: #9D0038;
			font-size: 0.8em;
			text-transform: uppercase;
		}
		
		#nav li a:hover {
			text-decoration: none;
			color: #0894C0;
			font-size: 0.8em;
			text-transform: uppercase;
		}
		
	#nav li.login {
		float: right;
		margin-right: 35px;
	}
	
		#nav li.login a {
			padding-left: 12px;
			background: url(/images/lock.png) no-repeat 0 1px;
		}

		.loggedIn #nav li.login a {
			background: none;
		}

		
	#nav a {
		display: block;
	}
	

#nav li ul { /* second-level lists */
	position: absolute;
	background: orange;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
	
	
	#nav li ul { /* second-level lists */
		position: absolute;
		background: #BCD7E2;
		margin-top:4px;
		width: 11em;
		left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
		padding: 0;
		z-index: 99;
	}
	
		#nav li ul li {
			border-top: 1px solid #fff;
			display: block;
			width: 100%;
			margin: 0;
			z-index: 99;
		}
		
			#nav li ul li a {
				padding-left: 0.5em;
			}
		
			#nav li ul li a:hover {
				color: #0168BB;
			}
	
	#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
		left: auto;
		z-index: 99;
	}
	
	#nav li ul ul { 
		margin: -19px 0 0 133px;
		z-index: 99;
	}

	#nav li.sfhover ul ul, #nav li.sfhover ul ul ul, #nav li.sfhover ul ul ul ul {
		left: -999em;
	}

	#nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul, #nav li li li li.sfhover ul {
		left: auto;
	}


		
/* content area */
#content {
	float: left;
	width: 640px;
	margin: 0 20px 0 40px;
}

	.contentPage #content {
		width: 920px;
	}

.forum #content {
	width: 960px;
	margin: 0 20px;
}

.requests #content {
	padding: 0 20px;
	width: 920px;
	margin: 5px 15px 0 15px;
}


#faqQnA dt {
	font-weight: bold;
	margin-bottom: 3px;
	line-height: 150%;
}

#faqQnA dd {
	margin: 0 0 10px 0;
	line-height: 150%;
}

#subContent {
	float: left;
	width: 260px;
}

	#subContent .box {
		background: url(/images/box-body.png);
		margin: 20px 0;
		font-size: 0.9em;
		margin-bottom: -1px;
	}

		#subContent .box .top {	
			background: url(/images/box-top.png);
			height: 29px;
		}
		
		#subContent .box h2 {
			margin-top: 0;
		}
		
			#subContent .box .top h3 {
				background: #037AC5 url(/images/box-header-bg.png) no-repeat left;
				float: right;
				margin: 0 10px 0 0;
				color: #fff;
				height: 20px;
				font-size: 1.5em;
				padding: 2px 10px 0 10px;
			}
			
		#subContent .box .content1 {
			background: url(/images/box1-bg.png) no-repeat top;
			margin: 0 7px 0 12px;
			padding: 0 7px;
		}
		
		#subContent .box .content1 a{
			color:#9C0037;
		}

		#subContent .box .content2 {
			background: url(/images/box2-bg.png) no-repeat top;
			margin: 0 7px 0 12px;
			padding: 0 7px;
		}

		#subContent .box .content2 a{
			color:#9C0037;
		}

		#subContent .box .bottom {	
			background: url(/images/box-bottom.png) no-repeat;
			height: 14px;
			margin: 0;
		}
	

/* footer */
#footer {
	background: url(/images/bg-footer.png) no-repeat 1px 0;
	height: 40px;
	width: 934px;
	margin: 0 auto;
	padding: 15px 50px 0 40px;
	font-size: 0.8em;
	color: #999;
	text-align: right;

}

	#footer ul {
		float: left;
		list-style: none;
		margin: 0;
		position: relative;
		z-index: 99;
	}
	
	#footer span {
		position: relative;
		z-index: 99;
	}
	
	#footer li {
		float: left;
		margin: 0 5px 0 0;
		border-left: 1px dotted #999;
		padding-left: 5px;
	}
	
	#footer li.first {
		padding: 0;
		border: 0;
	}
	
	#footer a {
		color: #999;
	}