@charset "UTF-8";
/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-image: url(../graphics/background.gif);
	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: #002e00;
	padding-right: 50px;
}

.bodytext  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	color: #002e00;
	font-size: small;
}

.homepage #container {
	margin: 10 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	color: #002e00;
}

.homepage #main { 
	margin: 0 250px 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 


.homepage #leftSidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 250px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 0px 10px 0px 10px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	color: #002e00;
}

a:link {
	color: #0000bb;
	text-decoration: none;
	font-weight: bold;
}

a:visited {
	color: #0000bb;
	text-decoration: none;
	font-weight: bold;
}

a:hover {
	color: #000;
	text-decoration: underline;
	font-weight: bold;
}

a:active {
	color: #002e00;
	text-decoration: none;
	font-weight: bold;
	background-color: #FFF;
}

a img {border: 0}


.thumbnailsTable {
	border-collapse: collapse;
}

.thumbnailsTable td {
	text-align: center;
	table-layout: fixed;
	width: 110px;
}

a img.thumbnail {
	border-width: 2px;
	border-style: solid;
	border-color: #000000;
}

a:hover img.thumbnail {
	border-width: 2px;
	border-style: solid;
	border-color: #ffffff;
}

.noBorder img {border: 0px}

.screeningSign {
	text-align: center; 
	color: #000;
}

a.screeningSign:link {
	color: #000;
	text-decoration: none;
	font-weight: bold;
}

a.screeningSign:visited {
	color: #000;
	text-decoration: none;
	font-weight: bold;
}

a.screeningSign:hover {
	color: #000;
	text-decoration: underline;
	font-weight: bold;
}

a.screeningSign:active {
	color: #000;
	text-decoration: none;
	font-weight: bold;
}

.birdseed {
	text-align: center; 
	color: #002e00;
	font-size:x-small;
	background-color:#bbb;
	padding-top: 1px;
	padding-bottom: 3px;
}