/* Sets element margins, padding, and border to 0 to even out browser differences when adding desired values later. */
html, body, div, p, h1, h2, h3, h4, h5, h6, blockquote, 
ol, ul, li, dl, dt, dd, td, form, fieldset, a,
#wrapper, #banner  
{
	margin: 0;
	padding: 0;
	border: 0;
}

/* Set the bg color, default font family and size here. */
body {
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 100%;
	background: #C8D7C4 url(../images/bodybg.jpg) repeat-x;
}


/* This div wraps all three columns plus the banner, but doesn't include the footer. */
#wrapper {
	width: 793px;
	background: url(../images/wrapbg.jpg) repeat-y left;
	margin-right: auto;
	margin-left: auto;
	

}

/* This div has the page's H1 and header image. Note the z-index. */
#header	{
	height:184px;		/* Needs to be big enough to show the header image that's in the H1. */
	z-index:500;
	margin: 0px;
	background: url(../images/head.jpg) no-repeat left;
}

#navigation {
	background: url(../images/nav.jpg) no-repeat;
	height: 245px;
	text-align: center;
	padding: 5px;
	
}



/**************************/
/* This is the center div. */
#content {
	margin-top: -180px;
	position:relative;
	background: url(../images/contentbg.jpg) no-repeat center 100px;
	width: 743px;  /* -50 from the wrapper to account for the margins below.  IE will "jump" right aligned images. */
	margin-right: 25px;
	margin-left: 25px;	
}

#content ul {
	margin-left: 65px;
}


/**************************/
/* The footer div stretches across the page. */
#footer	{
	text-align: center;
	background: url(../images/footbg.jpg) no-repeat;
	height: 67px;
	padding-top: 20px;
}


#footer li{
display: inline;/*set the list to display inline*/
}

#footer p{
	font-size: 12px;
}


/* Set the color and font for headings. The bottom margin adds space below the heading. */
h1 {
	color: #A40000;
	margin-bottom: 14px;
	font-family: "Georgia", Times New Roman, Times, serif;
	font-size: 20px;
	text-transform: capitalize;
	border-bottom-width: medium;
	border-bottom-style: dotted;
	border-bottom-color: #999999;
	margin-right: 15px;
	text-align: right;
}

h2 {
	color: #415883;
	margin-bottom: 13px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	text-transform: none;
	border-bottom-style: none;
	margin-top: 6px;	
}

h3 {
	color: #BB0000;
	margin-bottom: 12px;
	font-family: Arial, Trebuchet MS, Helvetica, sans-serif;
	font-size: 15px;
	
}


/*h1,h2,h3,h4,h5,h6 {
   color: #003399;
   margin-bottom: 0.2em;
}*/

/* Add a bit of padding below all the paragraphs. */
p { padding-bottom: 0.8em; }

/* Links are blue and not underlined. */
a {
	color: #000;
	text-decoration: underline;
}

/* Visited links are also blue but just a little lighter. */
a:visited  {
	color: #000000;
	text-decoration: underline;
}

/* Hovered links are green and underlined. */
a:hover {
	color: #5370A6;
	text-decoration: none;
}


/**************************/
/* skip link is positioned off the screen, but still allows screen readers to see it */
#skiplinks {
	position: absolute;
  	margin-left: -1000px;
}

/* don't display the title image used for printing */
.printtitle {
	display: none;
}

.Alert {
	color: #FF0000;
}

