/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}
p {
  margin: 0;
  padding: 0;
  margin-top: 12px;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #e0dddd;
	background-image:url(images/chiles-background.jpg);
	background-repeat:repeat;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 80%;
	line-height: 120%;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
	color: #F26D22;
	font-size: 1.3em;
	font-weight: bold;
	line-height:1.5em;
	padding: 0;
	margin-bottom:2px
}
/* Commonly used to style section titles. */
h2 {
	color: #666666;
	font-size: 1.2em;
	font-weight: bold;
	line-height:1.4em;
	margin-bottom:2px
}
h3 {
	color: #F26D22;
	font-size: 1.3em;
	font-weight: bold;
	line-height:1.5em;
	padding: 0;
	margin-bottom:10px;
}
h4 {
	color: #F26D22;
	font-size: 0.95em;
	font-weight: bold;
	line-height:1.2em;
	padding: 0;
	margin-bottom:2px;
}
h5 {
	color: #F26D22;
	font-size: 1.5em;
	font-weight: bold;
	line-height:1.5em;
	padding: 0;
	margin-bottom:5px;
	text-align: left;
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 790px;
}
 
#dropin {
	position:absolute;
	visibility:hidden;
	left: 45%;
	top:0px;
	width:auto;
	height:285px;
	background-color:#ffffff;
	border:1px solid #333333;
	padding:10px;
	/*opacity: 0.90;
	-moz-opacity: 0.90;
	filter: alpha(opacity=90);*/
	font-weight: bold;
	font-size: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

/*#outerWrapper #header {
	margin: 5px 5px 0px 5px;
	font-size: 1.2em;
	padding: 0px; 
	text-align:left;
}
.giftcardFloat {
	float:right;
	margin:5px 15px 0 0;
	padding: 0;
}
#outerWrapper #header .clearFloat {
  clear: right;
  display: block;
}
#outerWrapper #header #nav{
	font-size: 13px;
	color: #333;
	font-weight: bold;
	padding-top: 30px;
	margin-left: 10px;
}*/
#outerWrapper #header {
	margin: 15px 5px 10px 5px;
	font-size: 1.2em;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align:left;
}
.giftcardFloat {
	float:right;
	margin:5px 15px 0 0;
	padding: 0;
}
#outerWrapper #header .clearFloat {
  clear: right;
  display: block;
}
.nav {
	font-size: 13px;
	color: #333;
	font-weight: bold;
	margin-left: 10px;
}
.nav A:link {
  color: #333;
  font-weight: bold;
  text-decoration: none;
}
.nav A:visited {
  color: #333;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
.nav A:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
.nav A:active {
  color: #333;
  font-weight: bold;
  text-decoration: none;
}
#outerWrapper #contentWrapper {
	background-image: url(images/sandbar-beachhouse-marvista.jpg);
	background-repeat: no-repeat;
	color: #000;
	float: none;
	margin: 0 0 0 0; /* Sets the margin properties for all margins using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: auto;
	line-height: 1.3em;
	font-size: .9em;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper a,  a:link {
  color: #F26D22;
  text-decoration: underline;
}
/* Sets the style for visited links. */
#outerWrapper #contentWrapper a:visited {
  color: #F26D22;
  text-decoration: underline;
}
/* Sets the style for links on mouseover. */
#outerWrapper #contentWrapper a:hover {
  text-decoration: none;
}
/* Sets the style for a link that has focus. */
#outerWrapper #contentWrapper a:focus {
  color: #F26D22;
  text-decoration: underline;
}
/* Sets the style for a link that is being activated/clicked. */
#outerWrapper #contentWrapper a:active {
  color: #F26D22;
  text-decoration: underline;
}
#outerWrapper #contentWrapper #rightColumn1 {
  float: right;
  padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 281px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #contentIndex {
	 margin: 0 280px 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 5px 20px 10px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height:567px;
}
#outerWrapper #contentWrapper #contentIndex #textBox{
	height: 370px;
	overflow:auto;
	margin: 10px 8px 0px 8px;
}
#outerWrapper #contentWrapper #content {
	 margin: 0 280px 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 5px 20px 10px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */	
	height:567px;
}

#outerWrapper #contentWrapper #promoBoxTop {
	background-image: url(images/background-top.jpg);
	height: 16px;
	background-repeat: no-repeat;
	margin: 0 0 0 0; /* Sets the margin properties for all margins using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #promoBox {
	background-image: url(images/background-mid.jpg);
	background-repeat:repeat-y;
	color: #000;
	margin: 0 0 0 0; /* Sets the margin properties for all margins using shorthand notation (top, right, bottom, left) */
	padding: 5px 15px 5px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: auto;
	height: auto;
	line-height: 1.3em;
	font-size: .9em;
	text-align:center;
}
#outerWrapper #contentWrapper #promoBox .promo {
	margin: 0 30px 0 0; /* Sets the margin properties for all margins using shorthand notation (top, right, bottom, left) */
	padding: -5px 0px 5px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: auto;
	line-height: 1.3em;
	font-size: .9em;
	text-align:center;
	float:right;
}
#outerWrapper #contentWrapper #promoBox #leftPromo {
	margin: -15px 30px 0 30px; /* Sets the margin properties for all margins using shorthand notation (top, right, bottom, left) */
	padding: 5px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 350px;
	line-height: 1.3em;
}
#outerWrapper #contentWrapper #promoBox #fullPromo {
	padding: 15px 5px 5px 5px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	clear: both;
}



.button {
    -moz-border-radius: 4px;
	-webkit-border-radius: 4px;
    background-color: #666666;
    color: #FFFFFF!important;
    cursor: pointer;
    font-size:1.2em;
    font-weight: bold;
    margin: 5px 0 5px 0;
    padding: 6px 10px;
    text-decoration: none !important;
    text-transform: uppercase;
	letter-spacing: 1px;
	width: 175px;
	display:block;
}
a.button a:link.button {
	 color: #FFFFFF!important;
	 text-decoration: none !important;
}
a:hover.button  {
	 color: #FFFFFF!important;
	 text-decoration: underline !important;
}

	
#leftPromo .updates {
	line-height: 1.3em;
	font-size: 12px;
	margin: 10px 0 0 0;
	padding: 0;
	text-align:left;
}
#outerWrapper #contentWrapper #promoBoxBottom {
	background-image: url(images/background-bottom.jpg);
	height: 13px;
	background-repeat: no-repeat;
	margin: 0 0 0 0; /* Sets the margin properties for all margins using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: right;
  display: block;
}
#outerWrapper #footer {
	margin: 0;
	padding: 10px 10px 10px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	font-size: 10px;
	color: #333;
	line-height: 14px;
	clear: right;
}
#outerWrapper #footer a, a:link {
	color: #333;
	line-height: 14px;
	text-decoration: none;
	font-weight: normal;
}
/* Sets the style for links on mouseover. */
#outerWrapper #footer a:hover {
  color: #333;
  text-decoration: underline;
}
#outerWrapper #footer img {
	float: right;
}
#outerWrapper #footer .clearFloat {
  clear: right;
  display: block;
}
.header1 {
	color: #F26D22;
	font-size: 1.3em;
	font-weight: bold;
	line-height:1.5em;
	padding: 0;
	margin-bottom:2px
}
.address {
	line-height: 14px;
	font-size: 10px;
}
/*AWARDS*/

#outerWrapper #contentWrapperTop {
	background-image: url(images/background-top.jpg);
	height: 16px;
	background-repeat: no-repeat;
	margin: 0 0 0 0; /* Sets the margin properties for all margins using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapperAward {
	background-image: url(images/background-mid.jpg);
	background-position:center;
	background-color:#FFFFFF;
	color: #000;
	float: none;
	margin: 0 0 0 0; /* Sets the margin properties for all margins using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: auto;
	line-height: 1.3em;
	font-size: .9em;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapperAward a,  a:link {
  color: #F26D22;
  text-decoration: underline;
}
/* Sets the style for visited links. */
#outerWrapper #contentWrapperAward a:visited {
  color: #F26D22;
  text-decoration: underline;
}
/* Sets the style for links on mouseover. */
#outerWrapper #contentWrapperAward a:hover {
  text-decoration: none;
}
/* Sets the style for a link that has focus. */
#outerWrapper #contentWrapperAward a:focus {
  color: #F26D22;
  text-decoration: underline;
}
/* Sets the style for a link that is being activated/clicked. */
#outerWrapper #contentWrapperAward a:active {
  color: #F26D22;
  text-decoration: underline;
}
#outerWrapper #contentWrapperAward #content {
	 margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 5px 18px 10px 18px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapperAward #content #textBox{
	margin: 10px 12px 5px 12px;
}
#outerWrapper #contentWrapperAward #content #textBox p{
	margin: 5px 0 2px 0;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapperAward .clearFloat {
  clear: right;
  display: block;
}
#outerWrapper #contentWrapperBottom {
	background-image: url(images/background-bottom.jpg);
	height: 11px;
	background-repeat: no-repeat;
	margin: 0 0 0 0; /* Sets the margin properties for all margins using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
.floatRight {
	float:right;
	padding: 0 0 10px 10px;
}
.floatLeft {
	float:left;
	padding: 0 10px 10px 0;
}
.header1 {
	color: #F26D22;
	font-size: 1.3em;
	font-weight: bold;
	line-height:1.5em;
	padding: 0;
	margin-bottom:10px;
}
.address {
	line-height: 14px;
	font-size: 10px;
}
.smheader {
	line-height: 15px;
	font-size: 11px;
	font-weight: bold;
	color: #F26D22;
}
.calendar {
	line-height: 15px;
	font-size: 11px;
	font-weight: bold;
	color: #666666;
}
.calendarHeader {
	font-size: 1.3em;
	font-weight: bold;
	line-height:1.5em;
	padding: 0;
	margin-bottom:2px;
	color: #0257A8;
}
.news {
	border-bottom: dashed;
	border-width: 1px;
	padding-bottom: 18px;
	padding-top: 15px;
  	width:100%;
}

/* -----------------------------------------------------------------------*/
/* Styles for Special Promotions */
/* -----------------------------------------------------------------------*/

#holiday {
	margin-top: 20px;}
#holiday img {
	float: right;
	padding:15px 0 20px 20px;
}
#holiday h1 {
	color: #dc302b;
	font-size: 1.8em;
	font-weight: bold;
	line-height:1.1em;
	padding: 0;
	margin-bottom:2px
}