@charset "utf-8";
body  {
	font: 95% Arial, Helvetica, sans-serif;
	background: #333 url(images/tall_body.gif);
	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;
}
#container {
	width: 864px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFF;
	margin: 0 auto;
	text-align: left;
	position: relative;
} 
#header {
	background: #FFF url(images/header.jpg) no-repeat;
	padding: 0 10px 0 20px;  /* 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: 525px;
} 
#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 */
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 300px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 15px 45px;
	text-align: center;
}
#sidebar2 {
	float: left; /* since this element is floated, a width must be given */
	width: 300px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 15px 45px;
	text-align: left;
}

#sidebar2 a:link, #sidebar2 a:visited {
	color: #00415C;
}
#sidebar2 a:hover, #sidebar2 a:active {
	color: #7EBC3E;
}
.coupon #mainContent {
	background-color: #FFF;
	text-align: center;
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 340px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 40px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#footer {
	padding: 0 10px 0 45px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFF url(images/footer.jpg) no-repeat bottom;
	color: #FFF
} 
#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 */
}
#footer2 {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFF url(images/footer.jpg) no-repeat bottom;
	height: 125px;
	color: #FFF
} 
#footer2 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 */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#container #header #header_nav1 {
	list-style: none;
	margin: 0px;
	padding: 0px;
	position: relative;
	left: 535px;
	top: 45px;
	width: 200px;
	color: #FFF;
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
}
#container #header #header_nav1 li {
	display: inline;
	padding-right: 3px;
}
#container #header #header_nav1 a:link, #header_nav1 a:visited {
	color: #FFF;
	text-decoration: underline;
}
#container #header #header_nav1 a:hover, #header_nav1 a:active, #header_nav1 a:focus {
	color: #FF0;
	text-decoration: underline;
}
#container #header #header_nav2 {
	margin: 0px;
	padding: 0px;
	list-style: none;
	position: relative;
	top: 445px;
	left: 25px;
	color: #FFF;	
	font-size: 13px;
	font-family: "Century Gothic", Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
}
#container #header #header_nav2 li {
	display: inline;
	padding-right: 5px;
}
#container #header #header_nav2 .divider {
	background: url(images/bar.jpg) no-repeat;
	height: 19px;
	width: 3px;
}
#container #header #header_nav2 a:link, #header_nav2 a:visited {
	color: #000;
	text-decoration: none;
}
#container #header #header_nav2 a:hover, #header_nav2 a:active, #header_nav2 a:focus {
	color: #6EB324;
	text-decoration: none;
}
#container #header #header_nav2 #current a:visited {
	color: #00415C;
	text-decoration: none;
}
#container #footer ul {
	margin: 0px;
	list-style: none;
	padding: 30px 0px 0px;
	font-size: 12px;
}
.twoColFixLtHdr #container #mainContent #order_form fieldset {
	margin: 20px 0px 10px;
	padding: 10px 10px;
}
table {
	width: 100%;
	border: 0px;
	border-collapse: collapse;
}
td, tr {
	padding: 2px;
	vertical-align: top;

}
#container #footer li {
	display: inline;
	padding-right: 5px;
}
#container #footer p {
	font-size: 10px;
	margin: 0px;
	padding: 5px 0px 5px;
}
#container #footer a:link, #footer a:visited {
	color: #FFF;
}
#container #footer a:hover, #footer a:active {
	color: #FF0;
}
#container #footer img {
	padding-top: 50px;
}
.strong {
	font-weight: bold;
}
.hiliteRed {
	font-weight: bold;
	color: #f63d34;
}
.hiliteGreen {
	font-weight: bold;
	color: #6EB324;
}
.hiliteBlue {
	font-weight: bold;
	color: #00415C;
}
#container #mainContent .highlight {
	font-size: 1.1em;
	font-weight: bold;
	color: #f63d34;
}
#container #mainContent .imgCenter {
	text-align: center;
}
#container #mainContent h1, #mainContent h2 {
	color: #00415C;
	margin: 0px 0px 10px;
	padding: 0px;
	font: bold 1.4em Georgia, "Times New Roman", Times, serif;
}
#container #sidebar1 h2, #sidebar2 h2 {
	color: #6EB324;
	margin: 0px 0px 10px;
	padding: 0px;
	font: bold 1.2em Georgia, "Times New Roman", Times, serif;
}
.twoColFixLtHdr #container #sidebar1 a {
	color: #6EB324;
}

#container #mainContent p {
	padding: 0px;
	margin: 0px 0px 14px;
}
#container #mainContent h1 {
	margin: 0px;
	padding: 0px 0px 10px;
}
#container #mainContent h3 {
	margin: 0px;
	padding: 0px;
	font-size: 1em;
	color: #00415C;
}
#container #sidebar2 h3 {
	margin: 0px;
	padding: 0px;
	font-size: 1em;
	color: #00415C;
}
#container #sidebar2 .imgCtr {
	text-align: center;
}
#container #sidebar2 p {
	margin: 0px 0px 14px;
	padding: 0px;
}

#container #sidebar2 .subhead {
	color: #00415C;
}
.oneColFixCtrHdr #mainContent {
	padding: 0 45px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFF;
}
.oneColFixCtrHdr #container #mainContent .hotel .hotel_img {
	float: left;
	width: 150px;
}
.oneColFixCtrHdr #container #mainContent .hotel .hotel_info {
	margin-left: 150px;
}
.oneColFixCtrHdr #container #mainContent .hotel {
	margin-bottom: 50px;
}
.twoColFixLtHdr  #mainContent  #contact_form label {
	display: block;
	margin-top: 1em;
}
.twoColFixLtHdr  #mainContent  #contact_form input, textarea {
	width: 30em;
}
.twoColFixLtHdr  #mainContent  #contact_form  em, #order_form em  {
	font-weight: bold;
	color: #B40000;
}

.twoColFixLtHdr  #mainContent  #contact_form textarea {
	heigh: 8em;
}

.twoColFixLtHdr  #mainContent  #contact_form input#submit {
	margin-top: 1em;
	width: 56px;
}
#container #mainContent a:link, #mainContent a:visited {
	color: #00415C;
}
#container #mainContent a:hover, #mainContent a:active {
	color: #7ebc3e;
}
.twoColFixLtHdr #container #sidebar2 .imgCenter {
	text-align: center;
}
#container #header #buy_btn {
	position: absolute;
	top: 252px;
	right: 440px;
	background: url(images/buy-now-btn.jpg) no-repeat;
	display: block;
	height: 127px;
	width: 127px;
}
#container #header #buy_btn:hover {
	background-position: 0 -127px;
}
#container #header #buy_btn .buy_now {
	display: none;
}
.twoColFixLtHdr #container #sidebar2 img {
	border-width: 0px;
}
.twoColFixLtHdr #container #sidebar2 .band_profile .band_photo {
	width: 150px;
	float: left;
}
.twoColFixLtHdr #container #sidebar2 .band_profile .band_info {
	margin-left: 153px;
}
.twoColFixLtHdr #container #sidebar2 .band_profile {
	clear: both;
	margin-bottom: 30px;
}
.twoColFixLtHdr #container #sidebar1 .divider {
	width: 100%;
	height: 3px;
	border-top: 1px solid #000;
}
.twoColFixLtHdr #container #mainContent #order_form #error {
	background: #FFCC99;
	display: block;
	padding: 5px;
	border: thin dotted #FF0000;
	margin-bottom: 10px;
}
