@charset "utf-8";
/* CSS Document CSS for AREAS

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:0px;
	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   */    

#box {   
	align: center;
	text-align:left;
	height:400px;
	width:600px;			/*  !!--   USE THIS when entering content --!!
								height:150px;
								background-color:#ffffff;                                         */
	margin:0 auto;
	position:absolute;   
	border-right: 2px solid #336666; 	 } 
	
#logo {
	text-align:right;
	position:relative;
	top:50px;
	padding-right:10px;  /* this padding leaves a spave betw logo and vertical line */
	border-bottom-color:#ffffff;  }  /*  border line does ot show  not sure why */
	
#content {
	width:400px;
						/*   !!--   USE THIS when entering content --!!           
							 			height:600px;   
										top:180px;        
										background-color:#FF0033;            */
	margin-left:inherit;	/* this pushes the text to the right  --somehow--  */
	padding-right:15px;               }
	 
#navigation a{
	font-size: 12px;
	font-family: Century Gothic;
	color: #ffffff;
	text-decoration: none;  	}
		 
.navhome {
	position:absolute;	
	 /*  was ABSOLUTE changed to RELATIVE to get the spacing in sequence */
	top:135px;
	left:620px;   } 		 
		 
.navareas {
	position:absolute;	  /*  was ABSOLUTE changed to RELATIVE to get the spacing in sequence */
	top:160px;
	left:620px;   }        /*  this seems to work */
	
.navabout {
	position:relative;  /*  position was ABSOLUTE changed to relative to stop the "us" from going to the next line */
	top:55px;
	left:620px; 	}  

.navcontact {
	position:relative;
	top:65px;
	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;
	}	
	
	/*
h1{
	top: 400px;
	font-family:Century Gothic;
	font-size:1em;
	font-weight:normal;
	text-align:center; 
	color:#ffffff; 
	text-transform:uppercase;
	border-bottom-color:#CCCCCC;
	border-bottom-style:inset;
	border-bottom-width:thin;     }    cant get this to work HEADING saying "Areas" */

p{
	border-top:#FFFFFF;
	position:relative;
	top: 120px;
	text-align:center;
	font-family:Century Gothic;
	font-size:.72em;
	color:#FFF ; }
	/*   padding-left:10px;
	padding-right:10px;
	margin-top:25px ;
	margin-bottom:25px;}   */