@charset "utf-8";

/*-------------------------------------------Basic Styling---------------------------------*/
* {   /*zero's out any browsers default margins and requires all margins to be set by code*/
	margin: 0px;
	padding: 0px;
	}

body {
	background-image:url(../assets/images/background/bodybg.gif);
	text-align:center;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 85%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: 1.5em;
}
	
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-family:Georgia, Tahoma, Verdana, Arial, Serif;
	font-weight:normal;
	color: #579;
}

a:link, a:visited {
	color: #579;
	text-decoration:none;
	border-bottom:#c96 1px dotted;
}

a:hover,a:active {
	color:#960;
	text-decoration:none;
	border-bottom:#699 1px solid;
}

/*-------------------------------Position Container Elements-------------------------------*/

#wrapper {
	position:relative; /*Ensures that all nested divs or items will use the wrapper div as the source of positioning reference rather than the body itself*/
	width:900px;
	margin:1em;
	text-align:left;
	background:transparent;
	}
	
#clear {
	clear:both;
	}

img.homePage {
	padding: 0px;
	position: relative;
	display: block;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 2em;
	margin-left: auto;
}

	
#header {
	margin:1 em;
	position:relative;
	height: 270px;
	}

#header h1 {
	padding: 0px;
	margin-left: -9000px; /*hides text from screen but allows text to be read by search engines etc.  Replaced with a graphic.  Better than 'show:none' option which isn't always read by screen readers.*/
}

	
/*-----------nav bar---------------*/
#header #navbar {
	position:absolute;
	top: 0px;
	left:0px;
	width:900px;
	height:50px;
	background: url(../assets/images/navbar/navbarBkgrnd.jpg) no-repeat top left;
	border:#ccc 3px double;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}

#header #navbar ul {
	margin: 0;
	padding:0;
	list-style:none;
}

#header #navbar ul li {
	float:left;
}

#header #navbar ul a{
	padding:0 1.2em;
	font-size:24px;
	line-height: 50px;
	text-decoration:none;
	color: #FFF;
	float:left;
	display:block;
	font-family: Georgia, "Times New Roman", Times, serif;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: dashed;
	border-left-color: #456;
}

#header #navbar ul a.first {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

#header #navbar ul a.active{
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #456;
	font-style: italic;
}

#header #navbar ul a:hover {
	background-color: #456;	
}

/*----------banner---------------*/
#header #banner {
	position:absolute;
	bottom: 0px;
	left: 0px;
	width: 900px;
	height: 180px;
	background:url(../assets/images/header.jpg) no-repeat center;
	border:#ccc 3px double;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}

#main {
	width: 900px;
	background:#fff;
	border:#ccc 3px double;
	float: left;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 

#main #content {
	float:right;
	width:630px;
	padding: 10px;
	}

#main #sidebar {
	float:left;
	width:205px;
	padding: 10px;
	border-right:#ccc 1px dotted;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	}

#main h2 {
	padding: 4px;
	font-size: 1.6em;
	line-height:1.2em;
	border-bottom:#ddd 1px solid;
	margin-bottom: 10px;
}

#main h3 {
	padding: 4px;
	font-size: 1.3em;		
	line-height:1.1em;
	border-bottom:#ddd 1px solid;
}
table {
	margin-right: auto;
	margin-left: auto;
}
