/* CSS Document */

/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */



body {
	background-image:url(images/bgtile.gif);
	margin:0 auto; /* Always set margins to 0. Some browsers automatically apply them. */
	padding: 0px; /* Always apply padding if you apply margins */
}

/* This sets a default font for all of our tag selectors. We set the text align back to left so it won't center (based on the body tag to compensate for IE.) */

p, h1, h2, h3, h4, h5, a, ul, li, lo, td {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	text-align: left;
	/* Not necessary if not using text-align center in body tag for older IE browsers. */
}

strong { color:#CC0000; }

/* Redefines the p tag */
p {
	font-size: 12px;
	margin-left:15px;
	text-align: center;
}
h1 {
	font-size:17px;
	font-style:italic;
	color:#000099;
	text-align:center;
	margin-left:5px;
}
h2 {
	font-size:14px;
	font-style:italic;
	color:#000000;
	margin-left:25px;
}

h3 {
	font-size:18px;
	font-style:italic;
	color:#990000;
	margin-left:15px;
}

h4 {
	font-size:16px;
	color:#134d00;
	margin-left:25px;
}

h5 {
	font-size:14px;
	color:#990000;
	text-decoration:underline;
}

li {
	font-size:12px;
	color:#000000;
	text-align: left;
}

address {
	font-size: 14px;
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
	text-align:center;
	font-weight:bold;
	font-style:normal;
}



/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */
div#container {
	width:770px;
	height:auto;
	margin:30px auto;
}

/* Created to hold the background stip that is displayed when content area is stretched */
div#contentcontainer {
	float:left;
	width:770px;
	height:auto;
	background-image:url(images/contentstrip.gif);	
	background-repeat:repeat-y;
}

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	width:770px;
	height:191px;
	background-image:url(images/header_bg.gif);
	background-repeat:no-repeat
}

div#contentarea {
	float:left;
	text-align:center;
	width:770px;
	height:auto;
	background-image:url(images/content_bg.gif);
	background-repeat:no-repeat;
}

div#footer {
	clear:both;
	width:770px;
	height:70px;
	background-image:url(images/footer_bg.gif);
	background-repeat:no-repeat;
}

div#maintext{
	float:left;
	width:575px;
	text-align:center;
	height:auto;
	padding:0 5px 0 90px;
}

div#map {
	width: 450px;
	margin: 10px auto;}

div#right {
	float:right;
	width:280px;
	height:auto;
	margin-right:95px;
	text-align:center;
}
img.right {
	float:right;
	padding:10px;
}

div#footer a:link { 
	color:#0066FF;
}

div#footer a:hover {
	color:#999900;
	text-decoration:none;
}

div#copyright {
	text-align:center;
	font-size: 10px;
	padding-top:30px;
}



/* ----------------- IMAGE ELEMENTS ----------------- */

clear {
	clear: both;
}

#left { float:left; margin: 0 0 0 20px; }
