/*Rule: Never set padding in a container element. The space should be made with a margin in the internal element.*/

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	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;
	height: 100%; /* IE fix */ 
}

#container {
	width: 800px;
	background-color: white;
	margin: 10px 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. */
}

#page-content {
  margin:10px;
  padding:0;
  line-height:1.5;
  font-size:8pt;
  color:#3F3F3F;
}

.indent {
	text-indent: 2em;
}

ul {
 margin: 5px 40px;
 padding: 0;
 list-style-type:disc;
 list-style-position:outside;
}


table.boardMembers {
 margin-left:auto; 
 margin-right:auto;
 text-align:left;
}

table.boardMembers td {
 width: 150px;
}

.boardMembers {
 font-size: 7.5pt;
}

.boardMemberName {
 margin: 0;
 padding: 5px 0 0;
 font-weight: bold;
}

.boardMemberTitle {
 margin: 0;
 padding: 0;
}

.boardMemberEmail {
 margin: 0;
 padding: 0;
 color: #C83D0E;
}

.news-title {
 margin: 0;
 padding: 2px 5px 1px;
 font-size: 11pt;
 font-weight: bold; 
 /*text-decoration:underline;*/
 background-color:#FFFFBE;
 background-color:#E6E6E6;
 background-color:white;
 border-color: black;
 border-width: 0px 0px 1px;
 border-style: solid;
}

.news-content {
 margin: 0;
 padding: 8px;
 text-align:justify;
 border:#E6E6E6 0px solid;
}

.news-date {
 margin: 0;
 padding: 0;
 font-size: 7pt;
 color: #A9A9A9;
 text-align:right;
}

/* ----------------------------------------
==== Links
------------------------------------------*/

a {
	color: #3F7FBE;
	text-decoration: underline;
}

a:link {
	/*color: #CC0000;*/
	color: #3F7FBE;
	/*text-decoration: underline;*/
}

a:hover {
	color: #3F7FBE;
	text-decoration: none;
}

.blue-hover:hover {
	background-color:#E8EEFA;
}

