/*
## USEFUL NOTES
TAKE THESE NOTES OUT ON SITE COMPLETION
## Dont use 'pt' unless the site is being designed for print, use 'px' or 'em'  This is much more accurate cross-browser
## Never use '0px' because 0 isnt a number so it cant have a px value, just put 0 (e.g padding: 1px 0 0 5px;)
## Dont have to make long lists like a, a:active, a:focus, a:hover, a:link, a:visited (e.g just put 'body a' or '#container a')
## Dont use capitals like DIV.classname as capitals are not used in the sites HTML code.  Capitals fail W3C validation with current DOCTYPE

FOR REFERENCE
font: 12px/18px Verdana, Arial, Helvetica, sans-serif;
border: 1px solid #000000;

Background attributes:
	background: colour, url, position, repeat
		background: #000000 url(image.gif) bottom no-repeat; 
	background: colour, url, repeat (on x or y axis), x or y positioning of the background image
		background: #b4894c url(i/body_background.gif) repeat-y 50%;

Margin attributes:
	margin: top right bottom left
		margin: 1px 1px 1px 1px;

Padding attributes:
	padding: top right bottom left
		padding: 1px 1px 1px 1px;
*/

/* Basic layout styles <---------------------------------------------------- */
body {	
	margin: 0;
	margin-top:10px;
	padding: 0;
	background: #1a1a1a;
	font: 11px/18px Arial, Helvetica, sans-serif;
	color:#BFBFBF;
	}
	
#wrapper {
	width:770px;
	
	border:solid 0px #1a1a1a;
	/*position: absolute;
	
	top: 50%;
	left: 50%;	
	margin: -300px 0 0 -388px;*/
	text-align:left;
}

#wrapper div {
	/*margin-left:0px;*/
} 

#nav {
	margin-bottom:10px;
	margin-top:-5px;
	word-spacing:9px;
	/*margin-left:20px;*/
	padding-left:10px;
}
#footer {
	margin-bottom:0px;
	margin-top:10px;
	margin-right:8px;
	float:right;
	font: 11px/18px Arial, Helvetica, sans-serif;
}
#content {
	padding-left:0px;
	font: 11px/18px Arial, Helvetica, sans-serif;
}
img {
	border:none;
}
table.wrapper {
	width:770px;
	height: 588px;
}

/* Standard text styles <---------------------------------------------------- */
a {
	color: #BFBFBF;
	text-decoration:none;
	font-weight:normal;
	letter-spacing:0;
	font-size:11px;
} 
a:hover {
	text-decoration:underline;
}
a:active {
	color:#ffffff;
}

a.on {
	color:#ffffff;/*border:1px solid #ffffff;*/
}

h1, h2, h3, h4 {
	font-weight:bold;
}