@charset "utf-8";
/* CSS Document Centered Vertically & horizontal

also try this suggestion- 
"i have a better way that doesn't depend on the width. put a DIV inside a DIV. first DIV is "position:fixed/absolute", the inner one is "margin:0 auto"."  from link: http://snipplr.com/view/231/dead-centre-a-div/                  */

body {
	background-color:#000000;
	position:relative; }
	
#wrapper {
	padding:50px;
	width:900px;
	height:900px;   
	margin-left:auto;   /*  This centers the object */
	margin-right:auto; }
	/* margin:0 auto;    this moves the logo too far over *** NEED to CENTER the VERTICAL Line   */    

#logo {
	text-align:right;
	position:relative;
	top:150px;
	padding-right:10px;
	border-bottom:thin #336699;   }

#box {   
	align: center;
	text-align:left;
	width:600px;
	height:400px;
	margin:0 auto;
	position:absolute;   
	border-right: 2px solid #336666; 	 } 
	 
#navigation a{
	font-size: 12px;
	font-family: Century Gothic;
	color: #ffffff;
	text-decoration: none;  	}
							/* without home spacing was 140px, 180px, 170px at RELATIVE - ABSOLUTE worked but pushed the "us" to the next line  */
.navhome {
	position:relative;	  /*  was ABSOLUTE changed to RELATIVE to get the spacing in sequence */
	top:140px;
	left:620px;   } 	
	 
.navareas {
	position:relative;	  /*  was ABSOLUTE changed to RELATIVE to get the spacing in sequence */
	top:145px;
	left:620px;   }        /*  this seems to work */
	
.navabout {
	text-align:justify;    /*  NOT sure why the "us" goes onto the next linek\ */
	position:relative;  /*  position was ABSOLUTE changed to relative to stop the "us" from going to the next line */
	top:150px;
	left:620px; 	}  

.navcontact {
	position:relative;
	top:155px;
	left:620px;   	}
	
/* LINK  HOVER states --------------------------------------------------------------------*/

#navigation a:link{                /*  colour is white (#ffffff)*/
	color:#ffffff;
	}
	
#navigation a:hover {              /* when mouse hovers over colour changes to acqua */
	color: #00CCFF;
	}

#navigation a:active {            /* when mouse clicks link colour changes to fushcia*/
	color:#CC0066;
	}
	
	