/* Sets the body style.  Automatically called by the HTML body tag */
BODY{
	background-color : White;
	font-family : Verdana;
	font-size : 12px;
	font : 12px Verdana;
}

/* Defines the base style for all table cells */
TD{
	font-family : Verdana;
	font-size : 12px;
	font : 12px Verdana;
}

/* Defines the style of all table headers */
TH{
	font-family : Verdana;
	font-size : 12px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #999999;
	text-align: left;
}

/* Formats input boxes used for text entries (name, address, etc.) to make them all the same size */
Input.text{
	width : 90px;
}

/* Formats buttons to make them all look the same */
Input.button{
	background-color : #265541;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 10px;
	width : 90px;
	border-width: 1px;
	border-color: #000000;
}

/* Drops the font size down.  Used for fine print, small text in tables, copyright info, etc.*/
.small{
	font-size: 10px;
}

/* Sets the default link color */
A:link{
	color: #265541;
}

/* Un-underlines the link when viewed in IE.  This is often preferred because underlining make text harder to read. */
A:hover{
	text-decoration: none;
}

/* This sets the text style for titles on the right hand side of the page or anywhere with the dark colored background. */
.rightsideTitle{
	color: #FFFFFF;
	font-family: Arial;
	font-size: 12px;
	font-weight: bold;
	margin-left : 5px;
}

/* This sets the text style  on the right hand side of the page or anywhere with the dark colored background. */
.rightsideText{
	color: #FFFFFF;
	font-family: Arial;
	font-size: 10px;
	margin-left : 5px;
}

/* This sets the text style for links on the right hand side of the page or anywhere with the dark colored background. */
A.rightsideLink{
	color: #FFFFFF;
	font-family: Arial;
	font-size: 10px;
}

/* Sets the style for primary headers */
H1{
	font-size: 14px;
	font-weight: bold;
	color: #265541;
	margin-bottom: 0px;
}