
/*Sets fonts, colors, page width and centers the page in the screen. (No javascript).
Use % to change font sizes.  Page length grows automatically. Tested in FireFox and IE6. */
BODY
{
    FONT-FAMILY: Arial, Verdana, Helvetica, Sans-Serif;
    FONT-SIZE: 12px;
    background-color: #444477;
	text-align: center;
}

FORM
{
	margin:0 0 0 0;
}

TABLE
{
    FONT-FAMILY: Arial, Verdana, Helvetica, Sans-Serif;
    FONT-SIZE: 100%;
	text-align: center;
}
#PagePanel
{
	margin:0 auto;
	padding:0 0 0 0;
	width:770px;
    background-color: #ffffff;
    border-style:solid;
    border-width:2px;
    border-color: #bbbbbb;
    text-align:center;
}

/* This goes only to IE browsers.  Get rid of float: left to center page.  Firefox does
   not fill the page without the float, puts the page on the left of the screen 
* html #PagePanel
{
	float: none;
} */

H1	{	
	font-size:	150%;
	}	
		
H2	{	
	font-size:	130%;
	}	
		
H3	{	
	font-size:	115%;
	}
/**************************/

/* Puts logos at the top of the page*/	
#logosDiv
{
	float:left;
}

#imgLogo
{
	margin-top:10px;
	margin-left:5px;
	float:left;
	width:276px;
	height:61px;
	background-repeat: no-repeat;
	background-image:url(Images/MFOnline_Logo_Web.gif);
}

#imgFreddie
{
	margin-right:30;
	margin-top:10px;
	float:right;
	width:193px;
	height:70px;
	background-repeat: no-repeat;
	background-image:url(Images/Freddie.gif);
}
/****************************************/

/*All links have these */
A:link
{
	text-decoration: none;
	font-size: 105%;
	font-weight: bold;
	color: blue;
/*	white-space:nowrap;*/
}

A:visited
{
	text-decoration: none;
	font-size: 105%;
	font-weight: bold;
	color: blue;
/*	white-space:nowrap;*/
}

A:hover
{
	color: Red;
}

A:active
{
	color: Blue;
}
/**************************************/
.TblTopOnly  
	{   
	border-bottom-style:none;
	border-left-style:none;
	border-right-style:none;
	border-top-style:solid;
	border-width:thin;
	}	

