/* CSS properties for the table container **
** Find details at www.w3schools.com/css  */
body /* Internet Explorer */
{
	text-align: center;
	margin: 0px;
	min-width: 600px;
	font-family: Arial, Verdana;
	font-weight: normal; /*normal, bold, bolder, lighter*/
	font-style: normal; /*normal, italic, oblique*/
	font-size: 11;
	vertical-align: top;
}

body /* Mozilla Firefox alignment */
{
	text-align: -moz-center;
	margin: 0px;
	min-width: 600px;
	font-family: Arial, Verdana;
	font-weight: normal; /*normal, bold, bolder, lighter*/
	font-style: normal; /*normal, italic, oblique*/
	font-size: 11;
	vertical-align: top;
} 

/*CSS used to remove outline around flash movie in firefox*/
.noOutline {
	outline:none;
}
