/* basic page formatting style */

body { 	
	background-color: #001d4d;		/* bkgd color  */
	margin: 0px;
	font-family: arial, 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
	}			
	
#container {   /* <div id="container"> */
	width: 720px;
	background-color: #f2f1f0;
	margin: 10px auto 15px auto;
	padding: 0px;
	text-align: left;
	}

#header {   /* <div id="header"> */
	position: static;
	width: 720px;	
	height: 146px;
  background-color: #97befc;	
	border-top: 5px solid #555555;
	border-bottom: 5px solid #555555;
	margin: 0px auto 0px auto;
	}
	
#lcopy {   /* <div id="nav"> used for side navigation */
	position: 			static;
	width: 					300px;
	background-color:	transparent;
	margin: 				0px 0px 0px 0px;
	padding: 				10px 5px 10px 15px;
	text-align: 		left;
	font-weight:   	normal;
	}
	
#rcopy {  /* <div id="maincopy"> used for right copy by navigation */
	position: static;
	width: 346px;
	margin: 0px 0px 0px 0px;
	padding: 10px 16px 10px 20px;
	text-align: left;	
	}	
	
#footer {   /* <div id="footer"> */
	width: 720px;
	text-align: center;
  background-color: #97befc;	
	border-top: 5px solid #555555;
	border-bottom: 5px solid #555555;
	margin: 0px auto 0px auto;
	padding:  15px 0px 15px 0px;
	}
	
.clear {  /* clears all floats */
	clear: both;
	width: 5px;
	margin: 0px;
	padding: 0px;
	font-size:1px;
	line-height:0;
	}

/* 720 fullwidth variations */

.fullwidth {  /* 688 wide division */
	width: 688px;
	margin: 0px;
	padding: 10px 16px 10px 16px;
	text-align: left;
	}
	
.fullwidthpadded {   /* 50 px white space added inside fullwidth division */
	width: 588px;
	margin: 0px auto 0px auto;
	padding: 10px 66px 10px 66px; 
	text-align: left;
	}

.halfwidth {  /* 328 wide division, floatl or floatr */
	width: 328px;
	margin: 0px;
	padding: 10px 16px 10px 16px;		
	}

	
.halfwidthpadded {   /* 20 px white space added inside 288 px halfwidth division.  Can not be used inside a fullwidthpadded */
	width: 288px;
	margin: 0px;
	padding: 10px 36px 10px 36px;
	text-align: left;
	}

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;
	}

.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 */
	}
	
img {  /* removes border from linked images */
	border: 0px;
	}
	
img.floatr {   /* floats to the right with white space on the left*/
	padding: 5px 0px 5px 20px;
	}
	
img.floatl {  /* floats to the left with white space on the right*/
	padding: 5px 20px 5px 0px;
	}
	
.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:	#660000;
  	text-decoration:	none;
  	padding:	0px 3px 0px 3px;
  	}
	
a:visited {  /* color of visited link */
		color: #660000;
		text-decoration: none;
  	padding:	0px 3px 0px 3px;
		}

a:hover {  /* color of link when hovered*/
		color: #e50000;
		text-decoration: none;
  	padding:	0px 3px 0px 3px;
		}	
	
ul {  /* definition of an unordered list */
	margin-top:		0;
	padding-top: 	0;
	margin-left:	10px;
	padding-left:	10px;
	}
		
ul.image {  /* image at the beginning of an unordered list */
	list-style-image: url('../images/bullet.gif');
	}
	
ul.check {	 /* no image at the beginning of an unordered list */
	list-style-image: url('../images/check.gif');
	}		
		
ul.noimage {	 /* no image at the beginning of an unordered list */
 	list-style-type: none;
	}		
	
li {
	margin-top:		0px;
	padding-top: 	5px;
	margin-left:	0px;
	padding-left:	0px;
	}
		
li.check {	 
	margin-top:		0px;
	padding-top: 	5px;
	margin-left:	0px;
	padding-left:	5px;
	}		
		
  	

/* tables */		

table {  /* table with 10 px padding and no margins */
	padding:	10px;	
	margin: 	0px auto 0px auto;
	}	
	
td {  /* table cell with 10 px padding on top and 15 px padding on the right */
	padding-top:		10px;		
	padding-right:	15px;	
	vertical-align:		top;	
	}
	
td.size250 {  /* sets a td to 200 px */
	padding:	0px 10px 0px 10px;	
	width:					250px;		
	}
	
td.size240 {  /* sets a td to 200 px */
	padding:	0px 20px 0px 10px;	
	width:					240px;		
	}
	
td.line {  /* sets a td to 200 px */
	border-right: 1px solid #555555;
	}

h1 {
	font-size:   210%;	
	font-family: Times New Roman;
	font-weight:    normal;
	}	
	
h2 {  /* headline 2 */
  font-size:      160%;
	font-family: arial, geneva, arial, sans-serif; 
	font-weight:    normal;	
	}	
	
h3 {  /* headline 3 */
  font-size:      120%;	
	font-family: arial, geneva, arial, sans-serif; 
	font-weight:    normal;
	}	

.tl {   /* text left */
	text-align:	left;
	font-weight:    normal;
	}
	
.tc {   /* text center*/
	text-align:	center;
	font-weight:    normal;
	}
	
.tr {   /* text right*/
	text-align:	right;
	font-weight:    normal;
	}
	
.tj {   /* text justified*/
	text-align:	justify;
	font-weight:    normal;
	}	
	
.t40 {    
	font-size:      40%;	
	}
	
.t85 {    
	font-size:      85%;	
	}
	
.t110 {
	font-size:   110%;	
	line-height: 0.5cm;  /* specifies space between lines */
	}	
	
.t120 {   
	font-size:      120%;	
	}		
	
.t140 {   
	font-size:      140%;	
	}		
	
.red {
	color: #990000;
	}
	
.navy {
	color: #001d4d;
	}
	
.blue {
	color: #224f71;
	}
	
.green {
	color: #2f4d12;
	}
	
.yellow {
	background-color: #ffff00;
	}

	



  	
	

	

	



  	