body { 
	margin:0px auto;
	padding: 0px;	
	border: 0px;
	}
	/* 

Example:

function test()

{

  if (document.layers) getMouseLoc;     //NS

  else if (document.all) getMouseLoc(); //IE

  alert(mouseLocation.x+","+mouseLocation.y);

}

in the BODY:

<a href="#" onmouseover="test()">test</a>

*/

function Point(x,y) {  this.x = x; this.y = y; }

mouseLocation = new Point(-500,-500);

function getMouseLoc(e)

{

  if(!document.all)  //NS

  {

    mouseLocation.x = e.pageX;

    mouseLocation.y = e.pageY;

  }

  else               //IE

  {

    mouseLocation.x = event.x + document.body.scrollLeft;

    mouseLocation.y = event.y + document.body.scrollTop;

  }

  return true;

}

//NS init:

if(document.layers){ document.captureEvents(Event.MOUSEMOVE); document.onMouseMove = getMouseLoc; }

// Example:

// simplePreload( '01.gif', '02.gif' ); 

function simplePreload()

{ 

  var args = simplePreload.arguments;

  document.imageArray = new Array(args.length);

  for(var i=0; i<args.length; i++)

  {

    document.imageArray[i] = new Image;

    document.imageArray[i].src = args[i];

  }

}

<a href="#" onMouseOver="window.status='';return true">xxxx</a> <a href="#" onMouseOver="window.status='';return true"></a>
	
.homeWrapper {Example: preloadImages('file.gif', 'http://www.x.com/y.gif');

function preloadImages()

{

  if(document.images)

  {

    if(!document.imageArray) document.imageArray = new Array();

    var i,j = document.imageArray.length, args = preloadImages.arguments;

    

    for(i=0; i<args.length; i++)

    {

      if (args[i].indexOf("#")!=0)

      {

        document.imageArray[j] = new Image;

        document.imageArray[j++].src = args[i];

      }

    }

  }

}


	position: relative;
	width:760px;
	top: 0px;
	border: 0;
	margin: 0px auto;
	padding: 0px;
	text-align: left;
	height: 640px;
  	}

.wrapper {
	position: relative;
	top: 0px;
	width:757px;	
	border: 0px;
	padding: 0px;
	text-align: left;
	margin:0px auto;
  	}
  	
p { }
td {
	vertical-align: top;
}

.latestNews	{
	font-family: Arial;
	font-size: 12px;
	line-height: 12px;
	font-weight: bold;
	color: #005481;
	}
	
.news	{
	font-family: Arial;
	font-size: 11.25px;
	line-height: 14px;
	color: #005481;
	}

.right {
	color: #FFFFFF;
	font-family: Arial;
	font-size: 11.25px;
	line-height: 17.5px;
	}

.right h1 {
	font-family:Arial;
	font-size: 16px;
	font-weight: bold;
	color: #cfe4aa}	
	

.right a:link{
	color:#FFFFFF;	
	text-decoration: none;

	}


.right a:visited { 	
	color: #FFFFFF;
	text-decoration: none;
	}



.right a:hover { 
	color: #FFFFFF;
	text-decoration: underline;
	}



.right a:active { 
	text-decoration: none;
	color: #FFFFFF;
	}


a:link {
	color: #005481; 
	}



a:visited { 	
	color: #005481;
	}



a:hover { 
	color: #1b7fb0;
	text-decoration: underline;
	}



a:active { 
	color: #005481;
	}

a { padding-top: 2px; }
.breadcrumb {
	font-family: Arial;
	font-size: 10px;
	font-weight: bold;
	color: #76a642;
	}
	
	
.copyright {
	font-family: Arial;
	font-size: 9px;
	color: #76a642;
	}
	
h1	{
	font-family: Arial;
	font-weight: bold;
	font-size: 17px;
	color: #003f54;
	}	
	
h2	{
	font-family: Arial;
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	color: #005481;
	text-transform: uppercase;
	}
	
h3	{
	font-family: Arial;
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	color: #005481;
	margin-bottom: -10px;
	}
	
		
h4	{
	font-family: Arial;
	font-weight: bold;
	font-size: 11.5px;
	line-height: 17px;
	color: #005481;
	margin-bottom: -10px;
	}
	

h5 {

	font-family: Arial;
	font-weight: bold;
	font-size: 12px;
	font-style: italic;
	text-transform: uppercase;
	text-decoration: underline;
	line-height: 17px;
	color: #005481;
	display: block;
	margin: 1.67em 0 1em;

}
	
p	{
	font-family: Arial;
	font-size: 11.5px;
	line-height: 17px;
	color: #005481;
	}
	
ul	{
	font-family: Arial;
	font-size: 11.5px;
	line-height: 19px;
	color: #005481;
	}
	
	
	
ol	{
	font-family: Arial;
	font-size: 11.5px;
	line-height: 14px;
	color: #444b4c;
	}
		
	
li	{
	font-family: Arial;
	font-size: 11.5px;
	line-height: 19px;
	color: #005481;
	}	

.pdficon { 
   padding-right: 25px;
   padding-bottom: 4px;
   background: transparent url(/images/misc/icon_pdf.gif) no-repeat center right;
   width: 22px;
   height: 22px;
}


.readmore { width: 78px; vertical-align: middle; padding-top: 15px; height: 22px; }
.readmore img { border: 0; }
.readmore a { outline: none; }