/* this makes the background color white and sets all font types */
body {
	background-color:#FFFFFF;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	}
	
/* this sets the font size, alignment, line spacing and color:black */
/* this affects any text in <p> tags or table cells with the "copy" class */
/* this is mostly for left side navigation table cell and the home page */
p, .copy {
	color: #000; 
	font-size: 12px; 
	text-align: left; 
	line-height: 18px;
	clear:left;
	}
	
/* this sets the font size, alignment, line spacing, color:black, and creates the border line to the left of the text */
/* this affects table cells with the "copy2" class */
/* this is for inside pages */
.copy2 {
	color: #000; 
	font-size: 12px; 
	text-align: left; 
	line-height: 18px;
	clear:left;
	border-left:2px solid #002d8d;
	padding-left:20px;
	}	
	
/* this sets links to be bold and not underlined and colored */
/* this is for links in the main text of all pages where the table cell uses classes "copy" or "copy2" */
.copy a, .copy2 a {
	font-weight:bold;
	text-decoration:none;
	color:#002d8d;
	}
/* this sets links to be bold and to be underlined and colored when scrolled over */
/* this is for links in the main text of all pages where the table cell uses classes "copy" or "copy2" */
.copy a:hover, .copy2 a:hover {
	font-weight:bold;
	text-decoration:underline;
	color:#002d8d;
	}	
	
/* this sets the size, color, alignment and spacing of <h1> tags */
/* this is used on the headings (blue) of each page */
h1 {
	color: #002d8d; 
	font-size: 20px; 
	text-align: left; 
	line-height: 24px;
	}

/* this sets the size, color, alignment and spacing of <h2> tags */
/* this is used on the sub-headings (black) on any page */
h2 {
	color: #000; 
	font-size: 16px; 
	text-align: left; 
	line-height: 18px;
	}
	
/* this sets the size, color, alignment and spacing of <h3> tags */
/* this is used on the sub-headings (grey) on any page */	
/* these are not presently being used */
h3 {
	color: #666; 
	font-size: 14px; 
	text-align: left; 
	line-height: 16px;
	}
	
/* this sets the background color (brown) behind the top image on all pages */
.topColor {
	background-color:#8b5213;
	}

/* this sets the font color, bolds, background color (dark brown), and adds a white bottom border */
/* this is for the side navigation's dark table cells */	
.sideNavDark {
	font-weight:bold;
	background-color:#8b5213;
	color:#FFFFFF;
	border-bottom:2px #FFFFFF solid;
	}
/* this keeps the background color of the table cell as above */
/* this is for the side navigation's dark table cells */
.sideNavDark a {
	text-decoration:none;
	background-color:#8b5213;
	color:#FFFFFF;
	display:block;
	}
/* this changes the background color (light brown) of the table cell when scrolled over */
/* this is for the side navigation's dark table cells */
.sideNavDark a:hover {
	background-color:#d08a3d;
	text-decoration:none;
	color:#FFFFFF;
	display:block;
	}
	
/* this sets the font color, bolds, background color (dark beige), and adds a white bottom border */
/* this is for the side navigation's light table cells */
.sideNavLight {
	background-color:#e4b04d;
	color:#000;
	border-bottom:2px #FFFFFF solid;
	}
/* this keeps the background color of the table cell as above */
/* this is for the side navigation's light table cells */
.sideNavLight a {
	font-weight:normal;
	text-decoration:none;
	color:#000;
	display:block;
	}
/* this changes the background color (light beige) of the table cell when scrolled over */
/* this is for the side navigation's light table cells */
.sideNavLight a:hover{
	background-color:#f9ce70;
	text-decoration:none;
	font-weight:normal;
	color:#000;
	display:block;
	}

/* this sets the background color (medium brown) */
/* this is for the side navigation's non-clickable table cells */
.sideNavSelected {
	font-weight:bold;
	background-color:#c78e21;
	color:#000;
	border-bottom:2px #FFFFFF solid;
}
	
/* this sets the background color (blue), centers text, font size, and color (white) */
/* this is for the bottom blue bar on all pages */
.footer1 {
	background-color:#002d8d;
	text-align:center;
	color:#FFFFFF;
	font-size: 12px;
	}
/* this sets the links in the bottom blue bar to be bold and not underlined */
.footer1 a {
	font-weight:bold;
	text-decoration:none;
	}	
/* this sets the links in the bottom blue bar to be bold and underlined when scrolled over */
.footer1 a:hover{
	font-weight:bold;
	text-decoration:underline;
	}	
	
/* this sets the background color (brown), centers text, font size, and color (light brown) */
/* this is for the bottom brown bar on all pages */
.footer2 {
	background-color:#8b5213;
	text-align:center;
	color:#e8a748;
	font-size: 10px; 
	}
/* this sets the link to bold and not underlined  */
/* this only affects the home page as it is the only page with text down there */
.footer2 a {
	font-weight:bold;
	text-decoration:none;
	}
/* this sets the link to bold and underlined when scrolled over  */
/* this only affects the home page as it is the only page with text down there */
.footer2 a:hover{
	font-weight:bold;
	text-decoration:underline;
	}		
	
	
	
	
/* ************************* */
/* these are little tricky and shouldn't be played with too much unless you greatly understand CSS */

/* Styles for Drop Down Menu */

.dropmenudiv{
	position:absolute;
	top: 0;
	border: 1px solid #fff; /*THEME CHANGE HERE*/
	border-bottom-width: 0;
	font-size: 10px;
	letter-spacing: 1px;
	font-weight:bold;
	text-align: left;
	line-height:12px;
	z-index:100;
	background-color: #002d8d;
	width: 200px;
	visibility: hidden;
	filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=4); /*Add Shadow in IE. Remove if desired*/
}

.dropmenudiv a{
	width: auto;
	display: block;
	border-bottom: 1px solid #fff; /*THEME CHANGE HERE*/
	text-decoration: none;
	color: #fff;
	padding:2px 0px 2px 4px;
}

* html .dropmenudiv a{ /*IE only hack*/
	width: 100%;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
	background-color: #0099FF;
}

/* drop down style ends */
/* ************************* */	