/* 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;
  outline: 0;
  font-size: 100%;
}
/* 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: #EAE7D4;
  background-image: url(../images/secondary/site_bg.jpg);
  background-repeat: repeat-x;
  color: #666666;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 17px;
  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: #a63318;
  font-size: 18px;
  font-weight: bold;
  line-height: 20px;
}
/* Commonly used to style section titles. */
h2 {
  color: #a63318;
  font-size: 14px;
  font-weight: bold;
  line-height: 18px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #aa3601;
  font-weight: normal;
  text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
  color: #aa3601;
  font-weight: normal;
  text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #aa3601;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #aa3601;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #aa3601;
}
/* 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: 996px;
}
#outerWrapper #header {
  background-image: url(../images/secondary/masthead_secondary_bg.jpg);
  background-position: top left;
  background-repeat: no-repeat;
  margin:0 0 10px 0;
  font-size: 18px;
  font-weight: bold;
  height: 160px;
  line-height: 15px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #bodyWrapper {
  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) */
    width: 996px;
}
#outerWrapper #bodyWrapper #leftColumn {
  background-color: #EAE7D4;
  background-image: url(../images/secondary/image_block.jpg);
  background-position: left 20px;
  background-repeat: no-repeat;
  float: left;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 11px;
  line-height: 16px;
  margin: 0 0 0 0;
  padding: 20px 16px 0px 13px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 21%;
  min-height: 450px;
  height: auto!important;
  height:450px;
  display: inline;
}
#outerWrapper #bodyWrapper #rightColumn {
  background-color: #EAE7D4;
  float: right;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 24%;
  overflow: hidden;
}

/* 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 #bodyWrapper #content {
  float:left;
  background-color: #EAE7D4;
  margin: 0 0 0 16px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 40px 0 20px 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 73%;
  overflow:hidden;
  display:inline;
}

#outerWrapper #bodyWrapper #threeColcontent {
  float:left;
  background-color: #EAE7D4;
  margin: 0 0 0 16px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 40px 0 20px 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 49%;
}
.softBg {
	background-color: #EAE7D4;
	background-image: url(../images/secondary/bone_bed.jpg);  
	background-position: right top;
  	background-repeat: no-repeat;
}
/* 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 #bodyWrapper .clearFloat {
  clear: both;
  display: block;
}
.clearfloat { 
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
	display: inline;
}
#clear {
clear:both;
}

/* FOOTER */

#footerContainer {
background: url(../images/home/footer_bg.gif) repeat-x scroll left top;
background-color: #EFEDDF;
clear:both;
float:left;
width:100%;

}
#footer {
	color: #7a4c27;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	margin:0px auto;
	padding:17px 14px 0px 14px;
	width:996px;
	height:81px;
	text-align: left;
}
#footer a:link, #footer a:visited {
	text-decoration:underline;
	background-color:#EFEDDF;
	color:#7a4c27; 
}
#footer a:hover {
	text-decoration:underline; 
	background-color:#EFEDDF;
	color:#7a4c27;
}

.quote {
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 14px;
	line-height: 20px;
	color:#000000;
	font-style:italic;
}
#vacPkg {
	background-image: url(../images/home/book_vacation.gif);
	background-repeat: no-repeat;
	height: 73px;
	width: 478px;
	position: relative;
	left: 259px;
}
#logo {
	position:relative;
	left:0;
	top:20px;
	width:430px;
	height:72px;
	z-index:1;
}
#treasure {
	position:relative;
	left:0;
	top:97px;
	width:303px;
	height:179px;
	z-index:2;
}
#landmarkNav {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	line-height: 16px;
	text-align:center;
	color: #FFF;
	float: right;
	height: 37px;
	width: 243px;
	position: relative;
	top:-25px;
	letter-spacing: 1px;
}
#landmarkNav a:link {
	text-decoration: none;
	background-color: transparent;
	color: #FFF;
}
#landmarkNav a:visited {
	text-decoration: none;
	background-color: transparent;
	color: #FFF;
}
#landmarkNav a:hover {
	text-decoration: underline;
	background-color: transparent;
  	color: #a63318;
}
.caption {
	float: left;
	margin: 0;
	font-size: 0.85em;
	font-style: italic;
	text-align: center!important;
    line-height: 14px;
	color: #000000;
	display:inline;
}
.captionRt {
	margin: 0 0 10px 10px;
	font-size: 0.85em;
	font-style: italic;
	text-align: center;
    line-height: 14px;
	color: #000000;
	display:inline;
}
.captionLt {
	margin: 0 10px 10px 0;
	font-size: 0.85em;
	font-style: italic;
	text-align: center;
    line-height: 14px;
	color: #000000;
	display:inline;
}

.left {
	float: left;
}
.right {
	float: right;
}
.leftPad {
	float: left;
	padding: 0 10px 5px 0;
}
.rightPad {
	float: right;
	padding: 0 0 5px 10px;
}
img {  
	border-style: none;
}





/* Navigation */
/* Root = Horizontal, Secondary = Vertical */
#navigation {
	position:absolute;
	top:111px;
	width:996px;
	height:49px;
	margin:0;
    padding:0;
	z-index:6;
}

ul#navmenu-h {
  margin: 0;
  border: 0 none;
  padding: 0;
  width: 996px; /*For KHTML*/
  list-style: none;
  height: 49px;
}

ul#navmenu-h li {
  margin: 0;
  border: 0 none;
  padding: 0;
  float: left; /*For Gecko*/
  display: inline;
  list-style: none;
  position: relative;
  height: 40px;
}

ul#navmenu-h ul {
  margin: 0;
  border: 0 none;
  padding: 0;
  width: 200px;
  list-style: none;
  display: none;
  position: absolute;
  top: 48px;
  left: 0;
}

ul#navmenu-h ul:after /*From IE 7 lack of compliance*/{
  clear: both;
  display: block;
  font: 1px/0px serif;
  content: ".";
  height: 0;
  visibility: hidden;
}

ul#navmenu-h ul li {
  width: 200px;
  float: left; /*For IE 7 lack of compliance*/
  display: block !important;
  display: inline; /*For IE*/
}

/* Root Menu */
ul#navmenu-h a {
  border-right: 1px solid #c46c3d;
  border-left: 1px solid #a63318;
  padding: 14px 10px 12px 10px;
  float: none !important; /*For Opera*/
  float: left; /*For IE*/
  display: block;
  color: #EAE7D4;
  font: bold 10px/22px Verdana, Arial, Helvetica, sans-serif;
  text-decoration: none;
  height: auto !important;
  height: 1%; /*For IE*/
}

/* Root Menu Hover Persistence */
ul#navmenu-h a:hover,
ul#navmenu-h li:hover a,
ul#navmenu-h li.iehover a {
	color: #000000;
}

/* 2nd Menu */
ul#navmenu-h li:hover li a,
ul#navmenu-h li.iehover li a {
  float: none;
  background: #be5d2d;
  color: #000000;
}

/* 2nd Menu Hover Persistence */
ul#navmenu-h li:hover li a:hover,
ul#navmenu-h li:hover li:hover a,
ul#navmenu-h li.iehover li a:hover,
ul#navmenu-h li.iehover li.iehover a {
  color: #EAE7D4;
}

/* 3rd Menu */
ul#navmenu-h li:hover li:hover li a,
ul#navmenu-h li.iehover li.iehover li a {
  background: #c46c3d;
  color: #000000;
}

/* 3rd Menu Hover Persistence */
ul#navmenu-h li:hover li:hover li a:hover,
ul#navmenu-h li:hover li:hover li:hover a,
ul#navmenu-h li.iehover li.iehover li a:hover,
ul#navmenu-h li.iehover li.iehover li.iehover a {
  color: #EAE7D4;
}

/* 4th Menu */
ul#navmenu-h li:hover li:hover li:hover li a,
ul#navmenu-h li.iehover li.iehover li.iehover li a {
  background: #c46c3d;
  color: #666;
}

/* 4th Menu Hover */
ul#navmenu-h li:hover li:hover li:hover li a:hover,
ul#navmenu-h li.iehover li.iehover li.iehover li a:hover {
  color: #a63318;
}

ul#navmenu-h ul ul,
ul#navmenu-h ul ul ul {
  display: none;
  position: absolute;
  top: 0;
  left: 100px;
}

/* Do Not Move - Must Come Before display:block for Gecko */
ul#navmenu-h li:hover ul ul,
ul#navmenu-h li:hover ul ul ul,
ul#navmenu-h li.iehover ul ul,
ul#navmenu-h li.iehover ul ul ul {
  display: none;
}

ul#navmenu-h li:hover ul,
ul#navmenu-h ul li:hover ul,
ul#navmenu-h ul ul li:hover ul,
ul#navmenu-h li.iehover ul,
ul#navmenu-h ul li.iehover ul,
ul#navmenu-h ul ul li.iehover ul {
  display: block;
}


/* prevents linked images from displaying a border */
a img {
	border: none
}
a:hover img {
	border: none
}

.orange {
	color: #a63318;
}

