@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #CACEDF;
	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: #000000;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background: #FFFFFF url(../images/banner.jpg); 
	padding: 20px 0 0 10px;  /* 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. */
	height:70px;
}
#header h1 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:1.2em;
	font-weight:bold;
	color:#361509;
	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:0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#nav{
	padding: 5px 0px 5px 0px;
	margin: 0px auto;
	width:780px;
	background-color:#361509;
	height 0.8em;
}
#nav ul{
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}
#nav ul li {
	display: inline;
}

#nav ul li a
{
	font-family:Arial, Helvetica, sans-serif;
	font-size:0.8em;
	font-weight:bold;
	color:#FFFFFF;
	padding: 5px 10px;
	text-decoration: none;
	width:90px;
}
#nav ul li a:hover{
	background-color:#873516;
}
#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	font-family:Arial, Helvetica, sans-serif;
}
#mainContent h1 {
	font-size:1.5em;
	color:#12355D;
	font-weight:bold;
}
#mainContent h2, #mainContent table caption {
	font-size:1.1em;
	color:#506774;
}	

#mainContent p {
	font-size:0.9em;
	color:#333333;
}
#mainContent a:link {
	color:#873516;
	text-decoration:none;
}
#mainContent a:hover{
	text-decoration:underline;
}
img.floatright {
	display:block;
	float:right;
	padding:0 0 10px 20px;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
	text-align:right;
	border-top:solid #361509;
}
#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-size:0.7em;
	color:#12355D;
}
table.booking a {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 0.9em;
	text-decoration: none;
	background-image: url(../images/table_back1.jpg);
	display: block;
	height: 40px;
	width: 200px;
	padding-top: 10px;
	background-repeat: no-repeat;
	text-align: center;
}
table.booking a:hover {
	background-image: url(../images/table_back2.jpg);
}
