/*CASCADING STYLE SHEET
 *filename: pageStyle.css
 *used for styling text and tables used in html pages
 */

body
	{background-color: #FFFFFF;
	padding: 0;
	margin: 0;}

table 
  {width: 100%;
  height: 80%;}
td 
  {vertical-align: middle;
  text-align: center;}
  
#alternateContent
  {text-align: center;}
  
p
  {color: #937363;
  font: 12px Arial, Helvetica, sans-serif;
  margin: 0 0 0 10px;}
h2
  {color: #412726;
  font: 16px Arial, Helvetica, sans-serif;
  margin: 10px 0 0 10px;}

/*hyperlink style - before interaction*/
a:link {
  color: #0000AA;
  text-decoration: none;
}

/*hyperlink style - a already visited link*/
a:visited{
  color: #660066;
  text-decoration: none;
}

/*hyperlink style - on mouse roll over*/
a:hover{
  color: #AA0000;
  text-decoration: none;
}

p.error{
	margin: 10px 0 10px 0;
	color: #FF0000;
}

img
	{border: none;}
