@charset "utf-8";
body {
	background: #6C8A4A;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 90%;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #6C8A4A;
	margin: 0 auto;
	text-align: left;
}
#header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-color: #6C8A4A;
	background-image: url(../images/banners/dragon.gif);
	background-repeat: no-repeat;
	text-align: right;
	background-position: 35px 140px;
	margin: 0px;
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainNav {
	text-align:center;
	height: 35px;
}
a.nav          {
	color: #FFCC99;
	width: 500px;
	height: 15;
	border: 3px outset #C1AE6F;
	padding: 1px 4px;
	background-color: #5B5026;
	text-decoration:none;
	font-size:10pt
}
a:link.nav     {
	color: #FFCC99;
	width: 500px;
	height: 15;
	border: 3px outset #C1AE6F;
	padding: 1px 4px;
	background-color: #5B5026;
	text-decoration:none;
	font-size:10pt
}
a:visited.nav  {
	color: #FFCC99;
	width: 500px;
	height: 15;
	border: 3px outset #C1AE6F;
	padding: 1px 4px;
	background-color: #5B5026;
	text-decoration:none;
	font-size:10pt
}

a:hover.nav    {
	color: #C0C0C0;
	width: 500px;
	height: 15;
	border: 3px inset #C1AE6F;
	background-color: #8E7B3C;
	font-size:10pt
}
a:active.nav { color: #C0C0C0; width: 500px; height: 15; border: 3px inset #C1AE6F; 
               background-color: #8E7B3C; font-size:10pt 
}

#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #6C8A4A;
	color: #000;
	text-align: justify;
	padding-bottom: 10px;
}
#footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#6C8A4A;
	font-size: 12px;
	text-align: center;
}
#container #mainContent h1,h2,h3 {
	color: #ffcc99;
}

#container #mainContent h1 {
	font-size:18px;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-weight: bold;
	color: #ffcc99;
}
.imgcentre {
	text-align:center;
	border: solid black 1px;
	margin-top: 5px;
	margin-bottom: 5px;
}
.img2up {
	margin: 5px;
	border: 1px solid #000;
}

.imgright {
	border:1px solid #000;
	float:right;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 10px;
}
.imgleft {
	border:1px solid #000;
	float:left;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 0px;
}
#container #mainContent table tr td {
	text-align: center;
	border: thin solid #FC9;
}
.centre {
	text-align: center;
}

a.roomlink:link {
	font-size: 24px;
	font-style: italic;
	color: #FFF;
}
a.roomlink:visited {
	font-size: 24px;
	font-style: italic;
	color: #FC9;
}
a.roomlink:hover {
	font-size: 24px;
	font-style: normal;
	color: #FFF;
}
a.roomlink:active {
	font-size: 24px;
	font-style: italic;
	color: #FFF;
}
.suite {
	font-size: 24px;
	font-style: italic;
	color: #FFF;
}
a {
	padding-right: 5px;
	padding-left: 5px;
}

