/** This centres the page for up-to-date browsers **/
#container {
	position:relative;
	margin:0px auto;
	width:750px;
	z-index:1;
}
/** These format and position the structural elements of the site **/
/** This describes the banner at the top of the page **/
#Banner {
	position:absolute;
	width:750px;
	height:121px;
	top:0px;
	background-color:#666699;
	z-index:1;
	}
/** This describes the element containing the links to different pages **/
#TopLinks {
	position:absolute;
	width:750px;
	height:30px;	
	top: 121px;
	background-color:#339966;
	z-index:2;
}
/** These are the links for each page **/
#Home {
	position:absolute;
	width:105px;
	height:20px;
	z-index:1;
	top:5px;
	background-color:#FFCC66;
	left: 10px;
}
#Mountains {
	position:absolute;
	width:105px;
	height:20px;
	z-index:1;
	top:5px;
	background-color:#FFCC66;
	left: 135px;
}
#Activities {
	position:absolute;
	width:105px;
	height:20px;
	z-index:1;
	top:5px;
	background-color:#FFCC66;
	left: 260px;
}
#Rooms {
	position:absolute;
	width:105px;
	height:20px;
	z-index:1;
	top:5px;
	background-color:#FFCC66;
	left: 385px;
}
#Getting_here {
	position:absolute;
	width:105px;
	height:20px;
	z-index:1;
	top:5px;
	background-color:#FFCC66;
	left: 510px;
}
#Book {
	position:absolute;
	width:105px;
	height:20px;
	z-index:1;
	top:5px;
	background-color:#FFCC66;
	left: 635px;
}
/** This element contains the content for each page  **/
#Main {
	position:absolute;
	top:151px;
	background-color:#99CCFF;
	padding:15px;
	z-index:3;
	width: 720px;
}

#SubLinks {
	position:relative;
	width: 200px;
	float: right;
	background-color:#FFCC66;
	z-index:4;
	margin-left: 15px;
}

/** These are our text styles **/
.toplinktext {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:bold;
	text-align:center;
	line-height:20px;
	color:#333366;
}
/** This is the main heading style **/
h1 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:18px;
	font-weight:bold;
	color:#000000;
}
/** This is for subheadings **/
h2 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight:bold;
	color:#000000;
	text-decoration: underline;
}
/** This is for paragraphs **/
p {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#000000;
	text-align:justify;
}
/** This is for bulletted lists **/
ul {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#000000;
	text-align:justify;
}
li {
	line-height:16px;
	}
