/* This style sheet page is named -->    CSSBodyCenterNFontArial <--- and is used 
--->  with the AFA basic web . 
     It uses a green 00616B background color for the whole page background.
         It centers the body of text in the center of the screen
         The container div uses a 650 px wide text page with a light yellow FFFFCC background color,
         and puts padding of 15px of every element in the container.      */ 
         
/* The code you should insert on the html code for each page to center the page and to have a 650px wide table is to use

<body>
<center>
	<table class="tm">
 			<tr>
 				<td>   
 				
This is a place holder  

   			 </td>
   		  </tr>
   		</table>
	</center>
</body>
			
 */	           
         
         
/* The code you should insert on the html code for each page ONLY to center the page is to use

			<body>
				<center>

				</center>
			</body>
			
    */	         
/* code ONLY to make a standard 650px wide container page is  

<body>
<center>
	<div class="container">

</div>

 */ 
 
 /* code ONLY to make a standard table and a data cell is            

   <table class="tm"><tr><td>     

    </td></tr></table>

 */
                

body { background-color: #00616B; color: #000000;
      font-family: Arial, Helvetica, "Sans serif"; font-size:12pt;
      text-align: center;
             }
             
.bodytext10pt  {font-family: Arial, Helvetica, "Sans serif"; font-size:10pt;
            }             
             
.container {
margin-left: auto;
margin-right: auto;
	width: 650px;
	padding: 15px;
	text-align: left;
border:2px solid #111111;
background-color: #FFFFCC; color: #000000;
border-collapse: collapse;
	
	}             
             
                         
.tm      {
margin-left: auto;
margin-right: auto;
border:2px solid #111111; width: 650px;
background-color: #FFFFCC; color: #000000; margin: 0px; cellpadding: 15px;
border-collapse: collapse; 
}
            
 /* code for a 650px wide table is <table class="tm"> */  
 
/* code to make a standard table and a data cell is            

   <table class="tm"><tr><td>     

    </td></tr></table>
    */ 
    
a:hover {background-color: #FFFFCC;
}            
                 
h1, h2, h3, h4, h5, h6, p {margin-left: 15; margin-right: 15;
}
h1        {font-family: Arial,"Sans serif";
	font-size:16pt; text-align:center;
            }                    
h2        {font-family: Arial,"Sans serif";
	font-size:14pt; text-align:center;
            }           
h3        {font-family: Arial,"Sans serif";
	font-size:12pt; text-align:center;
            }
            
h4        {font-family: Arial,"Sans serif";
	font-size:10pt;
            }                   
h5        {font-family: Arial, "Sans serif";
	font-size:8pt;;
            }                       
h6        {font-family: Arial, "Sans serif";
	font-size:6pt; 
             }
                    
p   {margin-left: 15; margin-right: 15; 
            }
                       
.indented
   {
   padding-left: 15pt;
   padding-right: 15pt;
   }
 /* code is p class="indented" */ 
 
  
                              
.tablemain {width: 600px;
background-color: #FFFFCC;
color: #000000;
padding:20px;
margin: 0px;
border-collapse: collapse;
border-color:#111111;
         }
