/* CSS Document */

/* This is the main container holder that tells the left content to stay on the left side of the browser and
centres the content both horizontal and vertical. This action is left side only */
#content    
	{
	font-family: Verdana, Geneva, Arial, sans-serif;
	background-color: #000000;
	margin-left: -400px;
	position: absolute;
	top: -300px;
	left: 50%;
	width: 800px;
	height: 600px;
	visibility: visible;
	font-size: 12px;
	color: #000000;
	}

	/* This is the main container that forces all of the content to centre vertically */
#horizon        
	{
	color: white;
	background-color: #000000;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0px;
	width: 100%;
	height: 1px;
	overflow: visible;
	visibility: visible;
	display: block
	}
	/* This is the main container holder that tells the actual content for the left side how to behave within the leftcontent tag */
#leftcoltext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333333;
	text-align: justify;
	vertical-align: text-top;
	margin: 0px 5px 0px 0px;
	padding: 0px;
	list-style-position: outside;
	list-style-type: square;
	float: left;
	width: 240px;
}

/* The h1 tag will render with the following attributes, this tag is inteneded to be column subject header */
h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: bold;
	color: #000000;
	letter-spacing: 2px;
}

body {

	background-color: #000000;
}
