@charset "utf-8";
/*  normalize margins & padding */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, th, td {
	margin:0;
	padding:0;
}

/*  normalize font-size on all headers  */
h1, h2, h3, h4, h5, h6 {
	font-size:100%;
}

/*  remove list style  */
ol, ul {
	list-style:none;
}

/*  normalize font-style and font-weight  */
address, caption, cite, code, dfn, em, strong, th, var {
	font-style:normal;
	font-weight:normal;
}

/*  remove borders and spacing on tables */
table {
	border-collapse:collapse;
}

/*  removes borders from fieldset and images */
fieldset, img {
	border:0;
}

/*  center  */
html {
	text-align:center;
}

/*  set positioning and size - center design - set body defaults for text - set background for body (center dark grey area that extends all the way to bottom of page )  */
body {
	position:relative;
	margin:0 auto;
	text-align:left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333;
	background-color: #999;
	background-image: url(images/wrapper_bg.gif);
	background-repeat: repeat-y;
	background-position: center top;
}

/*  set styles for the wrapper - including the background of the main content area  */
#wrapper {
	width: 867px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-image: url(images/content_bg.gif);
	background-repeat: repeat-y;
	background-position: left top;
	position: relative;
}

/*  this is used to set the gradient background effect at the top of the page  */
#shell {
	background-image: url(images/body_bg.gif);
	background-repeat: repeat-x;
	background-position: left top;
	width: 100%;
}


/*  set background image for masthead area  - set masthead height  */
#masthead {
	background-image: url(images/homepage_masthead.gif);
	background-repeat: no-repeat;
	background-position: left top;
	height: 83px;
}

/*  text indent on h1 to remove it from styled design  */
h1 {
	text-indent: -9999px;
}

/*  style for the navlinks, which is an ordered list - display them inline and position them to the left of the design*/
#navlinks {
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	display: inline;
	position: absolute;
	right: 5px;
	top: 25px;
}

/*  style for the individual list items used in the navlinks  - padding and margins add seperation  - borders create the vertical pipes  */
#navlinks li {
	display: inline;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #333;
	padding: 0px;
	margin: 0px;
}

/*  remove the seperator (pipe) from the last item in the nav  */
#navlinks li.last {
	border-right-style: none;
}

/*  style the anchors in the nav  */
#navlinks li a {
	color: #333;
	text-decoration: none;
	margin-top: 0px;
	margin-right: 6px;
	margin-bottom: 0px;
	margin-left: 6px;
	padding-top: 0px;
	padding-right: 6px;
	padding-bottom: 0px;
	padding-left: 6px;
}

/*  navlinks hover (rollover)  state  */
#navlinks li a:hover {
	background-color: #cfa345;
}

/*  style the footer   - clear both floats to drop underneath the rest of the design*/
#footer {
	clear: both;
	height: 139px;
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;
	color: #ccc;
	text-align: center;
	background-color: #666666;
}
#content {
	display: none;
}


/* add some padding for seperation to the first paragraph in the footer, to drive it further down the page  */
#footer_top {
	padding-top: 50px;
}

/*  link used in the footer  */
#footer a {
	color: #ccc;
	text-decoration: none;
}

/*  hover state of link in the footer  */
#footer a:hover {
	color: #cfa345;
	text-decoration: underline;
}

