@charset "utf-8";
html, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #252f39;
	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: #eeeeee;
}
#container {
	width: 880px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #252f39;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background: #252f39; 
	padding: 0 10px 0 20px;  /* 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: 129px;
}
#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 */
}
#header td {
	font-size:16px;
	vertical-align: middle;
	text-align: left;
}
#header span {
	margin-right:10px;
}
a:link, a:visited {
	color: #eeeeee;
	text-decoration: none;
	margin-right: 10px;
	font-size: 16px;
}
a:hover, a:active {
	color: #252f39;
	background-color: #eeeeee;
	text-decoration: none;
}
a.logo:link, a.logo:visited, a.logo:hover, a.logo:active {
	color: #252f39;
  background-color: #252f39;
	text-decoration: none;
}
#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #252f39;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#252f39;
}
#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: 20px 0 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align:center;
	font-size:10px;
}
h1 {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:24px;
	margin: 1em 0 0 0;
}
h2 {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:20px;
	margin: 1em 0 0 0;
}
p {
	font-size:16px;
	margin: 0.5em 0 0 0;
}
#thumbs img {
	margin: 10px 5px 5px 0;
}