@charset "UTF-8";
/*
Colors...
BG Dark Green: 014417
Header light gray: F2F2F2

Link orange: C97810

Other...
Buttons: 140 x 48
*/
body {
	font: 85% Verdana, Geneva, sans-serif;
	background: #014417;
	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: #333;
	padding-top:12px;
}
#container {
	width: 840px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background: #F2F2F2; 
	padding: 0;
}
#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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
a:link, a:visited {
	color:#C97810;
	text-decoration:none;
}
a:hover {
	color:#014417;
	text-decoration:underline;
}
#mainContent {
	padding: 0 48px 24px 48px;
	background: #FFFFFF;
	line-height:150%;
}
#mainContent h1 {
	background:#000;
}
#mainContent h2 {
	font-size:14px;
	font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
	border-bottom:1px solid #CCC;
}
#map {
	float:right;
}
#contact {
	float:left;
}
.return {
	background:url(../images/triangle.jpg) right no-repeat;
	padding-right:18px;
	text-align:right;
}
#bookNow {
	float:right;
	border:1px solid #C97810;
	padding:12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	margin:0 0 0 36px;
}
#activeRelease {
	float:right;
}
#footer {
	padding: 12px 10px 24px 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#014417;
	text-align:right;
}
#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 */
	color:#E3E3E3;
}
#footer a:link, #footer a:visited {
	color:#FFF;
	text-decoration:none;
}
#footer a:hover {
	color:#CCC;
	text-decoration:underline;
}
