﻿
/* This makes the background white and no margins to fill the browser */
body {
background-color: #FFFFFF;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 0;
}

/* This makes all horizontal lines on the website the dark blue from the banner */
hr {
color: #010166;
}

/* Sets the font type and size for the website */
td {
font-family: Verdana,Arial,sans-serif;
font-size: 80%;
}

/* Sets the font for the headers.  These are the page titles on each page */
h1{
font-family: Verdana,Arial,sans-serif;
font-size: 150%;
text-align: center;
}

/* Photos and images are posted with any borders  */
img {
	border:0px; 
}

/* Set the background color to match the banner, blue */
td#top {
background-color: #010166;
}

/* This sets the font style if there are links beside the banner */
td#top a {
text-decoration: none;
color: white;
}

/* This underlines the link when the mouse is over it */
td#top a:hover {
text-decoration: underline;
}

/* This gives a little space between the navleft and navright */
td#center {
padding: 10px
}

/* This is for navleft and navright, background color is the gray, font color is the blue in the banner and a little bit of padding */
td#left {
background-color: #EBEBEB;
color: #001577;
padding-left: 5px;
}

/* This makes sure the links on the left always stay the same color with no underline */
td#left a {
text-decoration: none;
color: #001672;
}

/* This underlines the link when the mouse is over it */
td#left a:hover {
text-decoration: underline;
}

/* This can be used for all table lists on the site.  Recent news, committee pages */
table#recent {
    width: 90%;
	border-width: 1px;
	border-style: solid;
	border-color: black;
	border-collapse: collapse;
}

table#recent th {
	border-width: 1px;
	padding: 5px;
	border-style: solid;
	border-color: black;
	background-color: #993333;
	font-size: 90%;
	color: white;
}

table#recent td {
	border-width: 1px;
	padding: 5px;
	border-style: solid;
	border-color: black;
}