@charset "utf-8";
html {
font-size: 100%;
font-family:  Verdana, Arial, Helvetica, sans-serif;
}

body  {
	font-size: 75%;
	background: #666666;
	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;
}

p {
line-height: 200%;
font-size:120% /* added by Fernando*/
}

a:link {
color: #FF0000;
text-decoration: none;
}

a:visited {
color: #990000;
text-decoration: none;
}

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

a.menu{
color:#666666;
}

a.menu.active{
color:#111111;
border-bottom:4px red solid;
}

a.menu:hover {
color:#111111;
}

h1 
{font-size: 125%;
color: #003333;
padding: 0px;
margin-bottom: 0px;
margin-top: 25px;
}
h3
{font-size:200%;
color: #FF0000
}

ul {
list-style-type: none;
margin-left: 0px;
padding-left: 0px;
}

ul li {
padding-bottom: 20px;
font-size:110%;
}

.toppadding {
margin-top: 30px;
}

.singleLineHeight {
line-height: 115%;
}

.boldtext {
font-weight: bold;
}

.caption {
font-style: italic;
margin-top: 0px;
margin-bottom: 0px;
font-size: 85%;/*added by Fernando*/
}

.menu{
float:right;
padding-bottom:9px;
margin:0px 10px;
margin-top:25px;
font-size: 14px;
font-weight:bold;
font-family:Arial
}

#container { 
	width: 1000px;  /* 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. */
} 

#photos {

	text-align: center;
}

#header img{
float:left;
}

#header { 
	padding: 15px 15px 0px 0px;  /* 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. */
	display: block;
	border-bottom: solid 1px #666666;
	margin: 10px 20px;
	height: 54px;
} 

#leftColumn {
	/*float: left;*/ /* since this element is floated, a width must be given */
	/*width: 1000px;*/ /* 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: 20px 10px 15px 20px;*/
	padding: 0 20px;
}

#leftColumn img {
border: 1px #CCCCCC solid;
}

#rightColumn { 
	margin: 0 0 0 0px; /* 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: 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

#oneColumn {
width: 900px;
padding: 10px 50px 10px 20px;
}

table.directory {
width: 1000px;
text-align: center;
padding: 0px;
margin: 0px;
}

table.directory td {
text-align: left;
vertical-align: top;
}

#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	/*background: url(images/footerbg.jpg) repeat-x;*/ /* no footer background picture right now. */
	border-top: solid 3px #000000;
	margin: 0px 20px;
	text-align: right;
	height: 87px;
} 
#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 */
	line-height: 120%;
	font-size: 90%;
	color: #666666;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

#newsHeader {
	padding: 0 20px;
	margin: auto;
}

#news {
	padding: 0 20px;
	height: 160px;
	overflow-y: scroll;
	margin-bottom: 10px;
	font-size: 110%;
}

#newsContent {
	width: 100%;
	border-collapse: collapse;
}

#newsContent tr {
	background: #fff0f0;
}

#newsContent tr:nth-child(odd) {
	background: white;
}

#newsContent tr td {
	padding: 8px 1px;
}

#newsContent tr td:first-child {
	width: 80px;
	text-align: right;
	padding-right: 10px;
	color: #ff7777;
	font-weight: bold;
	text-transform: uppercase;
}
