@charset "utf-8";
body {
	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;
	background-color: #333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: medium;
}
#container  {
	width: 975px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	font-size: small;
}
#header  {
	background-color: #000062;
	padding: 0px;
}
#mainContent  {
	background: #FFFFFF;
	font-size: small;
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
}
#indextext {
	padding-right: 20px;
	padding-left: 20px;
	height: auto;
}
#indextext h3 {
	padding-left: 0px;
}
#learnmoreshop {
	height: auto;
	padding-bottom: 5px;
}
#learnmoreshop h3 {
	text-align: left;
	margin-left: 100px;
	margin-top: 0px;
}
#learnmoreshop p {
	margin-left: 5px;
	padding-left: 5px;
}


#footer  {
	background-color: #333;
	font-size: x-small;
	text-align: center;
	color: #FFF;
	height: 200px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
}
#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: xx-small;
	text-align: left;
}
#container #footer a {
	color: #FFF;
}
#header a {
	color: #FFF;
}


a:link {
	color: #333;
}
a:visited {
	color: #333;
}
a:hover {
	color: #C90;
}
a:active {
	color: #333;
}

