body {  
	padding: 2px;
	margin: 2px;
	background: #000000;
	font-family: Arial, helvetica, sans-serif;
}

body, html {height: 100%;}

/*******************************************************************************************************************************************************/
/************** general styles *************************************************************************************************************************/
/*******************************************************************************************************************************************************/

/* NOTE MARGIN BOTTOM SET TO 13PX SO THAT IT MATCHES SPACING OF <BR><BR> IN IE 6 */

p {color: #ffffff; /* line-height:120%; */ margin-top: 0px; margin-bottom: 13px}

/* NEEDED TO HANDLE TEXT ENTERED VIA EDITOR */

body, td, th, div {
   color: #ffffff;
   /* line-height:120%; */
}

ul {
   margin-left: 2em;
   padding-left: 0em;
   list-style-type: square;
   color: #ffffff;
   line-height:120%;
   margin-top: 0px;
   margin-bottom: 13px;
}

ol {
   margin-left: 2em;
   padding-left: 0em;
   list-style-type: decimal;
   color: #ffffff;
   line-height:120%;
   margin-top: 0px;
   margin-bottom: 13px;
}

/* NOTE THAT BASIC LINK "a:link" HAS BEEN ADDED SO THAT LINKS ENTERED VIA THE TEXT EDITOR */
/* AND NOT IN <P><UL><OL> TAGS APPEAR COORECTLY (e.g LINK IN A TABLE CELL) */

a:link, p a:link, ul a:link, ol a:link {color: #ffffff; text-decoration: underline}
a:visited, p a:visited, ul a:visited, ol a:visited {color: #ffffff; text-decoration: underline}
a:active, p a:active, ul a:active, ol a:active {color: #AED136; text-decoration: none}
a:hover, p a:hover, ul a:hover, ol a:hover {color: #AED136; text-decoration: none}

/* Required by text editor */
a, p a, ul a, ol a {color: #ffffff; text-decoration: underline} 

/* 'H1 P' etc NEEDED AS TEXT EDITOR CAN PUT <P> TAGS INSIDE HEADING TAGS */

h1, h1 p {color: #AED136; font-weight: bold; margin-top: 0px; margin-bottom: 10px; line-height:110%}
h2, h2 p {color: #AED136; margin-top: 0px; margin-bottom: 10px; line-height:110%}

hr {height:1px; width: 100%;color: #444444; background-color: #b3b3b3; border:0; margin-top: 0px; margin-bottom: 13px}


/*******************************************************************************************************************************************************/
/************** inline table styles ********************************************************************************************************************/
/*******************************************************************************************************************************************************/

/* THESE STYLES ARE TO BE USED WHEN A TABLE IS SET CREATED IN THE TEXT EDITOR */
/* MAYBE ALL TABLES SHOULD DEFAULT TO THIS */

table.tableformatting {
	border-top: 1px solid #AED136;
	margin-bottom: 13px;
	/* width: 100%; */
}

table.tableformatting thead tr th,
table.tableformatting tbody tr td,
table.tableformatting tr td {
	border-bottom: 1px solid #AED136;
	padding: 3px 3px 3px 3px;
}

table.tableformatting thead tr th {
	/* background-color: #E2E2E2; */
	font-weight: bold;
	text-align: left;
}

