@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #333;
	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 */
	color: #000000;
}
a {
	text-decoration: none;
}

div, p, h1 , h2, h3, img{
	margin: 0px;
	padding: 0px;
}

#container  {
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #ED1C24;
	text-align: left;
}
#header  {
	background: url(images/header.gif);
	padding: 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. */
	height: 200px;
	width: 950px;
}
#header h1  {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent  {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#container #mainContent h1 {
	color: #ED1C24;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 15px;
	font-size: 300%;
	line-height: 100%;
}
#container #mainContent h3 {
	text-align: center;
	font-size: 135%;
	background: #FFFC00;
	color: #ED1C24;
	margin: 15px;
	display: block;
	height: 30px;
	padding: 15px;
}
#container #mainContent img {
	display: block;
	margin-right: auto;
	margin-left: auto;
	border-right: 2px solid #666;
	border-bottom: 2px solid #666;
	margin-bottom: 10px;
}

#container #mainContent div.DetailWrap {
	width: 920px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 15px;
	height: 150px;
	padding-left: 15px;
}
#container #mainContent div.DetailWrap div {
	float: left;
	width: 285px;
	text-align: center;
	margin-right: 15px;
	padding-top: 0px;
	padding-bottom: 6px;
	border-right: 2px solid #ED1C24;
	border-bottom: 2px solid #ED1C24;
	border-left: 2px solid #ED1C24;
	background: #FCD1D3;
}
#container #mainContent .DetailWrap div h2 {
	background: #ED1C24;
	display: block;
	color: #FFFC00;
	border-bottom: 3px solid #221E1F;
	border-top: 3px solid #221E1F;
	margin-bottom: 5px;
}
#container #mainContent .DetailWrap div p {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 125%;
}
#container #mainContent .DetailWrap div p a {
	color: #ED1C24;
}



#footer  {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ED1C24;
}
#footer p  {
	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 */
	font-size: 90%;
	color: #FFF;
}

