/** This centres the page for up-to-date browsers **/
#container {
	position:relative;
	margin:0px auto;
	width:750px;
	height:600px;
	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;
	width:735px;
	height:435px;
	top:151px;
	background-color:#99CCFF;
	padding:15px;
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	overflow:hidden;
	z-index:3;
}
/** This element contains the first chunk of text per page **/
#Top {
	position:absolute;
	width:550px;
	height:435px;
	z-index:4;
	}
/** This element contains the target content for the first internal link per page **/
#One {
	position:absolute;
	width:550px;
	height:435px;
	top:435px;
	z-index:5;
	background-color:#99CCFF;
	}
/** This element contains the target content for the second internal link per page **/
#Two {
	position:absolute;
	width:550px;
	height:435px;
	top:875px;
	z-index:6;
	background-color:#99CCFF;
	}
/** This element contains the target content for the third internal link per page **/
#Three {
	position:absolute;
	width:550px;
	height:435px;
	top:1315px;
	z-index:7;
	background-color:#99CCFF;
	}
/** This element contains the target content for the fourth internal link per page **/
#Four {
	position:absolute;
	width:550px;
	height:435px;
	top:1750px;
	z-index:7;
	background-color:#99CCFF;
	}
/** This element contains the target content for the fifth internal link per page **/
#Five {
	position:absolute;
	width:550px;
	height:435px;
	top:2190px;
	z-index:7;
	background-color:#99CCFF;
	}
/** This element contains the target content for the sixth internal link per page **/
#Six {
	position:absolute;
	width:550px;
	height:435px;
	top:2635px;
	z-index:7;
	background-color:#99CCFF;
	}
/** This element contains links to anchors within each page **/
#SubLinks {
	position:absolute;
	width:170px;
	height:435px;
	top:151px;
	left:580px;
	background-color:#FFCC66;
	z-index:4;
}

/** 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:#990099;
}
/** This is for subheadings **/
h2 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:bold;
	color:#990099;
}
/** This is for paragraphs **/
p {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#990099;
	text-align:justify;
}
/** This is for bulletted lists **/
ul {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#990099;
	text-align:justify;
}
li {
	line-height:16px;
	}