/* basic page formatting style */

body { 	
	background-image: url('../images/oambkgd.jpg');  /* bkgd image */
	background-position: center center;  /* bkgd image to center */
	background-attachment: fixed;  /* bkgd image remains static */
	background-repeat: repeat;	
	margin: 0px;
	font-family: verdana, geneva, arial, sans-serif;  /* default fonts */
	font-size: small;  /* default font size 10 px */
	text-align: center; /* default text alignment */
	padding-left:0px;   /* default text padding */
	padding-right:0px; 
	padding-top:20px; 
	padding-bottom:20px
	}	

div>p:first-child {					/* this causes ie and compliant browsers to display first p in a div the same */
	margin-top: 0px;
	}
	
html {  /* this forces vertical scroll bar on firefox*/
  height: 100%;
  margin-bottom: 1px;
	}
	
img {  /* removes border from linked images */
	border: 0px;
	}
 	
#container {   /* <div id="container"> */
	width: 800px;
	background-color: #ffffff;
	background-image: url('../images/oamcontainer.jpg');  /* bkgd image */
	background-position: center top;  /* bkgd image to center */
	background-repeat: repeat-y;		/* bkgd image repeats */  
	margin: 20px auto 0px auto;
	padding: 10px;
	text-align: left;
	border: 1px #d2d6e2 solid;
	}
	
#header {   /* <div id="header"> */
	position: static;
	width: 798px;	
	margin: 0px auto 0px auto;
	}
	
#menu {   /* <div id="nav"> used for side navigation */
	position: 			static;
	width: 					188px;
	margin: 				0px 0px 0px 0px;
	padding: 				10px 5px 10px 5px;
	text-align: 		left;
	font-size:			110%;
	font-family: 		"trebuchet ms", verdana, geneva, sans-serif;	
	font-weight:   	normal;
	}
	
#maincopy {  /* <div id="maincopy"> used for right copy by navigation */
	position: static;
	width: 548px;
	margin: 10px 0px 0px 0px;
	padding: 10px 16px 10px 20px;
	text-align: left;	
	}	
	
.clear {  /* clears all floats in the container, use in container only */
	clear: both;
	width: 5px;
	margin: 0px;
	padding: 0px;
	font-size:1px;
	line-height:0;
	}
	
#footer {   /* <div id="footer> */
	width: 798px;
	text-align: center;
	font-family: Verdana;
	font-size: 100%;
	margin: 0px auto 0px auto;
	padding: 15px 0px 10px 0px;
	}

.border {   /* adds a 1px black border*/
	border: 1px solid black;
	}
	
.floatl {   /* floats to the left*/
	float: left;
	display: inline;					/* fix IE double margin bug on floats */
	}

.floatr {  /* floats to the right*/
	float: right;
	display: inline;					/* fix IE double margin bug on floats */
	}
	
.divcenter{      /* creates an auto centering division */
	margin: 0px auto 0px auto;
	}

.nobottom {   /* forces bottom to move up */
	margin-bottom:	0;
	padding-bottom:	0;
	}
	
.notop {     /* forces top to move up */
	margin-top:	0;
	padding-top:	0;
	}	
	
	
a {  /* color of link */
  	color:	#2b5d66;
  	text-decoration:	none;
  	padding:	0px;
  	}
	
a:visited {  /* color of visited link */
		color: #2b5d66;
		text-decoration: none;
		padding:	0px;
		}

a:hover {  /* color of link when hovered*/
		color: #3d8491;
		text-decoration: none;
		padding:	0px;
		background-color: #e4e8e8;
		}	
	
h1 {
  font-size:      220%;
	font-family: 		"trebuchet ms", verdana, geneva, sans-serif;			
	text-align:			center;
	font-weight:    normal;
	padding-top:		5px;
	}
	
	
h2 {  /* headline 2 */
  font-size:      190%;
	font-family: 		"trebuchet ms", verdana, geneva, sans-serif;	
	text-align:			center;	
	font-weight:    normal;	
	}	

	
h3 {  /* headline 3 */
  font-size:      160%;	
	font-family: 		"trebuchet ms", verdana, geneva, sans-serif;	
	text-align:			center;	
	font-weight:    normal;
	}	

.tl {   /* text left */
	text-align:	left;
	}
	
.tc {   /* text center*/
	text-align:	center;
	}
	
.tr {   /* text right*/
	text-align:	right;
	}
	
.t75 {    
	font-size:      75%;	
	}
	
.blue {
	color: #2f3066;
	}
	
.navy {
	color: #0000a9;
	}
	
.red {
	color: #b30000;
	}	
