/* To centre something on a page use these classes, */
/* and two divs (the table in the html is only needed to fix a issue in */
/* Macintosh ie 5.2).  This works with expanding items. */
/*  */
/* This works on... */
/* Macintosh: ie 5.2, Safari 1.2.4, Firefox 1.0.1 */
/* (although firefox will not center a table within it if doctype is xhtml) */
/* Windows: ie 6.0, Firefox 1.0.2 */

/* Vertical centering: make div as large as viewport and use table layout */
.centreouterdiv
{
	position: fixed;
	display: table;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* center the block content */
.centreinnerdiv
{
	position: fixed;
	display: table-cell;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	vertical-align: middle;
}

/* to here */





/* body */
.main_body
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background-color: #000000;
	font-family: Arial, Helvetica, Geneva, san-serif;
	font-size: 12px;
	color: #cccccc;
	line-height: 12px;
}
/* body */





/* links */
a:link
{
	text-decoration: none;
	color: #777777;
	letter-spacing: 1px;
}

a:active
{
	text-decoration: none;
	color: #777777;
	letter-spacing: 1px;
}

a:visited
{
	text-decoration: none;
	color: #777777;
	letter-spacing: 1px;
}

a:hover
{
	text-decoration: underline;
	color: #ff0000;
	letter-spacing: 1px;
}
/* links */





/* normal site classes */
.site_divouter
{
	position: relative;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	border-width: 0px;
	border-spacing: 0px;
	width: 726px;
}

.site_divinner
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	text-align: left;
	vertical-align: top;
}
/* normal site classes */