/* basic page formatting style */

body { 	
	background-color: #ffffff;		/* bkgd color  */
	margin: 0px;
	font-family: arial, geneva, 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: 780px;
	background-color: transparent;
	margin: 20px auto 15px auto;
	text-align: left;
	}
	
#header {   /* <div id="header"> */
	position: static;
	width: 780px;	
	margin: 0px auto 0px auto;
	}
	
#sidemenu {   /* <div id="nav"> used for side navigation */
	position: 			static;
	width: 					164px;
	background-color:	transparent;
	margin: 				25px 0px 0px 0px;
	padding: 				0px 0px 0px 0px;
	text-align: 		left;
	font-weight:   	normal;
	}
	
#maincopy {  /* <div id="maincopy"> used for right copy by navigation */
	position: static;
	width: 576px;
	margin: 10px 0px 0px 0px;
	padding: 10px 16px 10px 20px;
	text-align: left;	
	}
	
#footer {   /* <div id="footer> */
	width: 576px;
	text-align: center;
	font-family: Verdana;
	font-size: 100%;
	color: #89cc49;
	margin: 0px auto 0px auto;
	padding: 40px 20px 10px 16px;
	}

.hidden {
	display: none;
}

.unhidden {
	display: block;
}
	
.fullwidth {  /* 776 wide division */
	width: 744px;
	margin: 0px auto 0px auto;
	padding: 10px 16px 10px 16px;
	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;
	}	

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;
	}
	
.nobottom {   /* forces bottom to move up */
	margin-bottom:	0;
	padding-bottom:	0;
	}
	
.notop {     /* forces top to move up */
	margin-top:	0;
	padding-top:	0;
	}	
	
.noside {     /* forces top to move up */
	margin-right:	0;
	padding-right:	0;
	margin-left:	0;
	padding-left:	0;
	}	
	
.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;
	}	
	
#header a {  /* color of link */
  	color:	#0099d2;
  	text-decoration:	none;
		}
		
#header a:visited {  /* color of link */
  	color:	#0099d2;
  	text-decoration:	none;
		}
		
#header a:hover {  /* color of link */
  	color:	#89cc49;
  	text-decoration:	none;
		}

#topmenu a {  /* color of link */
  	color:	#ffffff;
  	text-decoration:	none;
	display:	block;
  	padding:	8px 0px 8px 0px;
	background-color: #0099d2;
  	}
	
#topmenu a:visited {  /* color of visited link */
	color: #ffffff;
	text-decoration: none;
	display:	block;
  	padding:	8px 0px 8px 0px;
	background-color: #0099d2;
	}

#topmenu a:hover {  /* color of link when hovered*/
	color: #ffffff;
	text-decoration: none;
	display:	block;
  	padding:	8px 0px 8px 0px;
	background-color: #89cc49;
	}	
		
#sidemenu a {  /* color of link */
  	color:	#334d1c;
	display:	block;
  	text-decoration:	none;
	padding:	4px 0px 4px 0px;
	width:	154px;
	}
	
#sidemenu a:visited {  /* color of visited link */
  	color:	#334d1c;
	display:	block;
	text-decoration: none;
  	padding:	4px 0px 4px 0px;
	width:	154px;
	}

#sidemenu a:hover {  /* color of link when hovered*/
	color: #334d1c;
	display:	block;
	text-decoration: none;
  	padding:	4px 0px 4px 0px;
	background-color: #89cc49;
	width:	154px;
	}

#footer a {  /* color of link */
  	color:	#0099d2;
  	text-decoration:	none;
	}
		
#footer a:visited {  /* color of link */
  	color:	#0099d2;
  	text-decoration:	none;
	}
		
#footer a:hover {  /* color of link */
  	color:	#89cc49;
  	text-decoration:	none;
	}	

a {  /* color of link */
  	color:	#0099d2;
  	text-decoration:	none;
	}
		
a:visited {  /* color of link */
  	color:	#0099d2;
  	text-decoration:	none;
	}
		
a:hover {  /* color of link */
  	color:	#89cc49;
  	text-decoration:	none;
		}

a.glossary {  /* color of link */
  	color:	#000000;
  	text-decoration:	underline;
	font-weight:	700;
	}

/* Popup Box */
a#popup:visited {color:#0099d2; text-decoration:none;}
a#popup {color:#0099d2; text-decoration:none; position:relative;}
a#popup b {display:block; position:absolute; left:0; top:0;}
a#popup span {display:none;}
a#popup:hover {color:#89cc49; cursor:default;}
a#popup:hover #popbox {
	display:block;
	position:absolute;
	top:-380px;
	left:-350px;
	width:300px;
	height:335px;
	background-color:#ffffff;
	color:#000000;
	border:2px solid #0099d2;
	text-align:left;
	font-family:verdana;
	font-size:11px;
	padding-left:10px;
	padding-top:10px;
	}

/* lists */
	
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.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.line {	 
	border-bottom: 1px #4e3d56 solid;	
	}		  	

/* tables */		

table {  /* table with 10 px padding and no margins */
	padding:	10px;	
	margin: 	0px auto 0px auto;
	}	
		
table.lined {  /* black line around table that collapses to the td line */
	border:		1px solid #89cc49;
	border-collapse:	collapse;
	}

td.right {  /* moves text in a td to right top*/
	text-align:			right;
	vertical-align:		top;	
	}
	
td.top {  /* moves text in a td to top*/
	vertical-align:		top;	
	}
	
td.left {  /* moves text in a td to left top*/
	text-align:			left;
	vertical-align:		top;	
	}

td.lined {   /* lined table  */
	border:		1px solid #89cc49;	
	}
	
table.tight  {
	margin:	0px auto 0px auto; 
	padding:	0px 0px 0px 0px;
	}
		
td.tight  {
	margin: 	0px auto 0px auto; 
	padding: 	0px 0px 0px 0px;
	}
		
td.menu{  /* sets a td to 160 px */
	background-image:	url('../images/greyfadebkgd.jpg');
	background-position: top left;
	background-repeat: repeat-y;
	padding:	0px 0px 0px 0px;		
	}
	
th.menu{  /* sets a th to 160 px */
	background-image:	url('../images/greenfadebkgd.jpg');
	background-position: center;
	background-repeat: repeat-y;
	padding:	2px 0px 0px 0px;	
	}
		
hr.tight  {
	margin: 	0px auto 0px auto; 
	padding: 	0px 0px 0px 0px;
	}

td.y {
	width:	340px;
	}

td.y2 {
	background-color: #D7BFED;
	text-align: right;
	width:	70px;
	}

td.y1 {
	background-color: #CFE3FF;
	text-align: right;
	width:	70px;
	}

td.y0 {
	background-color: #E2F3D3;
	text-align: right;
	width:	70px;
	}
	
/* text definitions */

h1 {
	font-size:      220%;
	font-family: 		"trebuchet ms", verdana, geneva, sans-serif;			
	font-weight:    normal;
	}	
	
h2 {  /* headline 2 */
	font-size:      190%;
	font-family: 		"trebuchet ms", verdana, geneva, sans-serif;	
	font-weight:    normal;	
	}	
	
h3 {  /* headline 3 */
	font-size:      160%;	
	font-family: 		"trebuchet ms", verdana, geneva, sans-serif;	
	font-weight:    bold;
	}	

.bigred {
	font-size: 120%;
	font-weight: bold;
	color: #BF0707;
	text-align: left;
	}
	
.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;
	}
	
.t85 {    
	font-size:      85%;	
	line-height: 0.5cm;
	}
	
.t110 {
	font-size:   110%;	
	line-height: 0.5cm;  /* specifies space between lines */
	}	
	
.t120 {   
	font-size:      120%;	
	}

.html-marquee {
	height:	13px;
	width:	140px;
	font-family:	Arial;
	font-size:	10pt;
	color:	#0099d2;
	border-width:	0;
	padding:	5px 3px 5px 7px;
	}	
	