@charset "UTF-8";

/* General Stuff */
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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 */
}

a:link {
	color: blue;
}

a:visited, a:link {
	text-decoration: none;
	color: blue;
}

a:hover {
	font-style: italic;
}

a.arch:link, a.arch:hover, a.arch:visited {
	color: black;
}

a.mainstory:link, a.mainstory:visited {
	color: black;
}

a.mainstory:hover {
	color: blue;
}

h2 {
	padding: 0 0 8px 8px;
	margin: 0 0 0 0;
}
h3 {
	font-size: 20pt;
	text-decoration:underline;
	padding: 2px 0 2px 4px;
	margin: 0 0 0 0;
}
small {
	font-size: x-small;
}

/* Formatting */
.oneColFixCtrHdr #container {
	width: 960px;  /* 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 #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	padding: 0 0 0 0;  /* 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. */
	text-align: center;
}
.oneColFixCtrHdr #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 */
}
.oneColFixCtrHdr #mainContent {
	padding: 5px 0 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0;
	background: #FFFFFF;
}
.oneColFixCtrHdr #footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#999999;
	text-align: center;
}
.oneColFixCtrHdr #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 */
}

.oneColFixCtrHdr #ionWrapper {
	margin-top: 0;
}
.oneColFixCtrHdr #ion {
	padding: 5px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
}
.oneColFixCtrHdr #ion 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 */
}

.newsflash {
	padding: 2px 0 0 7px;
	font-size: 12pt;
}

.IONimg {
	border: 1px black solid;
}

/* Begin Photo Caption Code */
#photocontainer {
	width: 364px;
	margin: 4px 0 0 0;
}
.photo {
	margin: 0;
	padding: 0;
	border: 2px solid black;
}
.caption {
	padding: 2px 0 2px 8px;
	font-size: 8pt;
	border: 2px solid black;
}

table.faq {
	padding: 8px 8px 0 8px;
	margin: 8px 8px 12px 0px;
	vertical-align: top;
	text-align: center;
	border: 1px solid black;
	border-spacing: 10px 10px;
	border-collapse: separate;
	width: 70%;
	min-width: 810px;
}