/* ============== User Interface (shared CSS File================ *//*														          *//*            (PUBLICATION Developing Team. Toronto. May, 2003)   *//* -------------------------------------------------------------- */body{	font-family: "Arial,Times New Roman"; font-size: 9.5pt;	background-color:'#FFffff';	margin-left: 0;	margin-top: 0;}font.title{   color: "#0071BD"; 	font-family: "Arial,Times New Roman"; 	font-size: 14pt; 	font-weight: bold }font.title:hover {	COLOR: #FFFFFF;BACKGROUND-COLOR:#D4A585}font.comment{    color: gray; 	font-family: "Arial,Times New Roman"; 	font-size: 9.5pt; }input{    color: "#202020";	 	font-family: "Arial,Times New Roman"; 	font-size: 9pt; }button{    color: "#202020"; 	font-family: "Arial,Times New Roman"; 	font-size: 9pt; }/* --------------------- definition of the table style ------------------------ */ table			/* Table:General */{ 	font-family: "Arial"; 	font-size: 9.5pt; }table.frame		/* Table:With border */{	background-color:"#666666"; 	font-family: "Arial";	font-size: 9.5pt; }tr				/* Table: General row */{	background-color:'#FFFFFF'; 	font-family: "Arial"; 	font-size: 9.5pt; }	tr.header		/* Table: Header	 */{	background-color:'#87cefa'; 	font-family: "Arial"; 	font-size: 10.2pt; 	font-weight: bold }tr.header_s		/* Table: Header	 */{	background-color:'#87cefa'; 	font-family: "Arial"; 	font-size: 9.5pt; 	font-weight: bold }	tr.footer		/* Table: Footer	*/{	background-color:'#87cefa'; 	font-family: "Arial"; 	font-size: 9.5pt; 	text-align: right}	tr.lightgray{	background-color:'#F6F6F6';	 	font-family: "Arial"; 	font-size: 9.5pt; }	tr.gray{	background-color:'#EEEEEE';	 	font-family: "Arial"; 	font-size: 9.5pt; }	tr.darkgray{	background-color:'#DDDDDD';	 	font-family: "Arial"; 	font-size: 9.5pt; }	td.lightgray{	background-color:'#F6F6F6';	 	font-family: "Arial"; 	font-size: 9.5pt; }	td.gray{	background-color:'#EEEEEE';	 	font-family: "Arial"; 	font-size: 9.5pt; }	td.darkgray{	background-color:'#DDDDDD';	 	font-family: "Arial"; 	font-size: 9.5pt; }	tr.darkgray_l{	background-color:'#DDDDDD';	 	font-family: "Arial"; 	font-weight: bold; 	font-size: 10.5pt; 	color:'#000066';}	/* ---------------- Samples: ------------------------------------------------------------ <table class=frame width=95% border="0" cellspacing="1" cellpadding="1">	<tr class=header>		<td colspan=3>Employee List</td>	</tr>	<tr class="gray">		<td>XXX</td>		<td>XXX</td>		<td>XXX</td>	</tr>	<tr>		<td>XXX</td>		<td>XXX</td>		<td>XXX</td>	</tr>	<tr class="footer">		<td colspan=3>Totol n Records | First | Previous | Next | Last | Return&nbsp;</td>	</tr></table>---------------------------------------------------------------------------------------- */a:hover			/* style of the hyperlink */{    COLOR: red;    text-decoration: underline}a:link{    COLOR: blue;    text-decoration: none}a:visited{    COLOR: purple;    text-decoration: none}
