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

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

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

h2 {
	color: #999999;
	font: 16px Arial, Helvetica, sans-serif;
	margin: 5px 0 0 0;
}

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

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

/*hyperlink style - on mouse roll over*/
a:hover {
  color: #CC8888;
  text-decoration: none;
}
  
#page {
	text-align: center;
	width: 300px;
	margin: 0 auto;
}
#content {
	border: 1px solid #666;
	width: 300px;
	padding: 30px 0 20px 0;
}

#flash {
	width: 770px;
	height: 540px;
	margin: 0 auto;
}

.error{
	color: #C00;
}

/************************************************
 ******************** Logo **********************
 ************************************************/
 
#logo {
	color: #FFF;
	font-size: 24px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	letter-spacing: 0.1em;
	background-color: #000;
	position: absolute;
	display: block;
	padding: 0 5px;
	margin: -12px 0 0 65px;
	cursor: default;
}

#red {
	color: #C00;
}
 