@charset "utf-8";
body {
	background-color: #000000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
}
#container {
	width: 100%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 1px solid #000000;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background-image:url(images1/headergrad-1.jpg); background-repeat:repeat-x;
	text-align: center;
	/*background-image: #DDDDDD;*/ 
	padding: 0 0px 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}

#flashbox {
text-align:center;

}

#mainContent {
	padding: 0 0 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #000000;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#006600;
}
#footer p {
	color:#FFFFFF
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

h1 {
	font:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	margin:10px;
	color:#FFFFFF;
	/*margin-top:20px;
	margin-right:20px;
	margin-right:20px;
	margin-bottom:0px;*/
}
p {
	color:#FFFFFF;
	font:Arial, Helvetica, sans-serif;
	font-size:10px;
	/*text-indent:10px;*/
	margin-top: 15px;
	margin-right:20px;
	margin-bottom:5px;
	margin-left:20px;
}

/*table {border-collapse:collapse;}*/

td {
background-color:#000000;
	/*background-image:url(images1/td-bg.jpg);
	background-position:bottom right;
	background-repeat:no-repeat;*/
	vertical-align:top;
	border-right:1px solid #666666; 
	border-bottom:1px solid #666666;
	/*background:#FF9900;*/
	/*padding:20px;*/
}

.footertd {
	background-color:#006600;
	vertical-align:middle;
	border-right:1px solid #006600;

}

img	{
	border-style: none;
}


a:link { 
	color:#FF0000;
	outline: none;
	text-decoration: none;
	}
a:visited { 
	color: #FF6600;
	outline: none;
	text-decoration: none;
	}
a:hover { 
	color: #CCCCCC;
	outline: none;
	/*background-color: #666666;*/
	text-decoration: none;
	}
a:active { 
	color: #FFFFFF;
	outline: none;
	/*background-color: #FF0000;*/
	text-decoration: none;
	}

