/* 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, form, 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 {
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	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;
	background-repeat:no-repeat;
	background-color:#cca965;
	background-image: url(../images/background.jpg);
	background-attachment: fixed;
}
acronym {
	cursor:help;
	border-bottom:1px dotted #333;
	padding:0px 2px;
}
p {
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 4px;

}
/* Commonly used to style page titles. */
h1 {
	color: #8F7647;
	font-size: 16px;
	font-weight: bold;
	line-height: 16px;
	padding: 6px;
	margin-bottom: 6px;
	font-family: Arial, Helvetica, sans-serif;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCAA65;
}
/* Commonly used to style section titles. */
h2 {
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
	display: block;
	padding: 6px;
	font-family: "Trebuchet MS", Arial;
}


h3 {
	color: #4269A8;
	font-size: 14px;
	line-height: 14px;
	background-color: #f7fbff;
	padding: 6px;
	font-family: Arial, Helvetica, sans-serif;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #000;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}
/*is the sizing for the text from old website*/
.td {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #818181;

}
/* 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: 900px;
	border-right-width: 6px;
	border-bottom-width: 1px;
	border-left-width: 6px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	background-color: #FFFFFF;/*	background-image: url(../images/full_bg.gif);
	background-repeat: repeat;*/
}
#outerWrapper #header {
	background-color: #FFFFFF;

}
#outerWrapper #header .top_graphic {
	background-image: url(../images/top_header.gif);
}
#outerWrapper #header .logo {
	float:left;
	margin-top: 0px;
	margin-right: 6px;
	margin-bottom: 8px;
	margin-left: 0px;
}
#outerWrapper #header .text {
	float:right;
	color:#FFFFFF;
	font-style:normal;
	margin-top: 10px;
	margin-right: 10px;
	text-align: right;
	margin-bottom: 10px;
	font-family: "Trebuchet MS", Arial;
	font-size: 16px;
}
#outerWrapper #header .underline {
	padding-bottom: 2px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #FFFFFF;
	margin-bottom: 4px;
}
#outerWrapper #header .text a:link {
	color:#FFFFFF;

}
#outerWrapper #header .text a:visited {
	color:#FFFFFF;

}
#outerWrapper #header .text a:hover {
	color:#A99FC6;

}
#outerWrapper #header .hotel_name {
	float:left;
	background-color:#c5e7cd;
	color:#007F3D;
	width:194px;
	font-size: 13px;
	text-align: center;
	padding-top: 6px;
	padding-bottom: 6px;
	font-family: "Trebuchet MS", Arial;
	font-weight: bold;
	
}
#outerWrapper #header .navigation2 {
	background-color:#ccaa65;
	font-family: "Trebuchet MS", Arial;
	font-size: 11px;
	text-align: center;
	padding: 6px;
	margin: 0px;
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}
#outerWrapper #header .navigation2 a {
	margin: 0px 0px;
}
#outerWrapper #header .navigation2 a:link {
	color:#000000;
	text-transform: uppercase;
	
}
#outerWrapper #header .navigation2 a:visited {
	color:#000000;
	text-transform: uppercase;
}
#outerWrapper #header .navigation2 a:hover {
	color:#FFFFFF;
	text-transform: uppercase;
	text-decoration: none;
}


#outerWrapper #header .flash {
	float:right;
	margin: 6px 0px 6px 0px;
}
#outerWrapper #header .spacer {
	padding-left: 2px;
	padding-right: 2px;
	color: #FFFFFF;
}
#navigation3 {
	float:left;
	width:582px;
	background-image: url(../images/3links_bg.jpg);
	height: 109px;
	background-repeat: no-repeat;
}
#navigation3 .box {
	width:180px;
	color:#44456A;
	margin:6px;
	float: left;
}
#navigation3 .box h4 {
	color:#31327F;
}
#navigation3 .box a:link {
	font-weight:bold;
	color:#31327F;
}

#navigation3 .img {
	float: right;

}
#outerWrapper #archive_image_footer {
	text-align: right;
	padding-top: 6px;
}
#outerWrapper  #contentWrapper  #leftColumn {
	border-right: solid 0px #666; /* Sets the right border properties for an element using shorthand notation */
	float: left; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 207px;
	padding-top: 0px;
	padding-bottom: 10px;
	background-color: #000000;
}
#outerWrapper #contentWrapper #leftColumn #news {
	color: #999999;
	background-color: #000000;
	background-image: url(../images/left_column_news_bg.gif);
	background-repeat: no-repeat;

}
#outerWrapper #contentWrapper #leftColumn #news ul {
margin-left: 10px;
padding: 4px;
}
#outerWrapper #contentWrapper #leftColumn #news li {
padding: 4px 0px 4px 0px;
}
#outerWrapper #contentWrapper #leftColumn #news a:link {
	color: #FFFFFF;
}
#outerWrapper #contentWrapper #leftColumn #news a:visited {
	color: #FFFFFF;
}
#outerWrapper #contentWrapper #leftColumn #news a:hover {
	color: #c29947;
}
#outerWrapper #contentWrapper #leftColumn #news .pad {
	padding: 6px;
}
#outerWrapper #contentWrapper #leftColumn #news h2 {
	text-align: center;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	background-color: #333333;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}

#outerWrapper #contentWrapper #rightColumn1 {
	border-left: solid 0px #666; /* Sets the left border properties for an element using shorthand notation */
	float: right;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 194px;
	background-color: #d9c08c;
	color: #433721;
}
#outerWrapper #contentWrapper #rightColumn1 #availability {
	background-color: #6e5b37;
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}
#outerWrapper #contentWrapper #rightColumn1 #availability h2 {
	background-color: #8F7647;
	text-align: center;
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
}
#outerWrapper #contentWrapper #rightColumn1 .banner_ad {
	background-color: #D3B87E;
	text-align: center;
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	height: 90px;
}

/* 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 #content {
	padding: 10px;
	float:left;
	width: 479px;
	font-size: 13px;
	line-height: 18px;
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
}

#outerWrapper #contentWrapper #content h2 {
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	line-height: 16px;
	margin-bottom: 6px;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #CCAA65;
	margin-top:10px;
}
#outerWrapper #contentWrapper #content h3 {
	font-size: 13px;
	font-weight: bold;
	line-height: 16px;
	color: #CCAA65;
}
#outerWrapper #contentWrapper #content h4{
	font-size: 12px;
	font-weight: bold;
	line-height: 16px;
	color: #666;
}
#outerWrapper #contentWrapper #content .back_button {
	padding: 4px;
	font-size: 11px;
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #E7E9FA;
	border: 1px solid #7981c1;
}
#outerWrapper #contentWrapper #content2 {
	padding: 10px;
	float:left;
	font-size: 13px;
	line-height: 18px;
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
	width: 668px;
}
.float_address {
	padding: 10px 0px 10px 10px;
	float:right;
	width: 220px;
}
#outerWrapper #contentWrapper #content2 h2 {
	color: #8F7647;
	font-size: 16px;
	font-weight: bold;
	line-height: 16px;
	margin-bottom: 6px;
	font-family: Arial, Helvetica, sans-serif;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCAA65;

}
#outerWrapper #contentWrapper #content2 .back_button {
	padding: 4px;
	font-size: 11px;
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #E7E9FA;
	border: 1px solid #7981c1;
}
/* 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: both;
  display: block;
}
#outerWrapper #footer {
	/*position:relative;*/
	background-color: #000000;
	border-top: solid 6px #fff; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	border-bottom: solid 6px #fff; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	color: #FFFFFF;
	padding: 6px;
}

#outerWrapper #footer a:link {
	/*position:relative;*/
	color: #ccc;
}
#outerWrapper #footer .logobox {
	float:left;
	width:196px;
}
.footerAddress {
	float:left;
	width:386px;
	padding-top:16px;
	color:#3D5756;
}
#outerWrapper #sponsors {
	/*position:relative;*/
	background-color: #FFFFFF;
	border-top: solid 6px #fff; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	border-bottom: solid 6px #fff; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	color: #333;
	padding: 6px;
	font-weight: bold;
}
#outerWrapper #sponsors img {
	padding: 0px 6px 0px 6px;
}
#credits {
	color: #666666;
	font-size: 0.9em;
	padding-bottom: 6px;
	padding-top: 6px;
}
#credits a:link {
	color: #333333;
}
#credits a:hover {
	color: #663300;
}
#credits a:visited {
	color: #333333;
}
.copyright {
	color:#9999FF;
	font-size:0.9em;
	padding: 6px;
}

#float_nav {
	padding-top: 6px;
	position: absolute;
	height: 30px;
	width: 200px;
	left: 12px;
	top: 12px;
	right: 12px;
	bottom: 12px;
}
.content_text {
	color: #FFFFFF;
	background-color: #4269A8;
	display: block;
	font-weight: bold;
	padding: 2px;
}
.clearFloat {
  clear: both;
  height:0.0001.pt;
}
.intLangFlags {
	padding-top:10px;
}
.green_text 
	{
	color: #037E3C;
	}
.purple_text 
	{
	color: #1d2777;
	}
#entityDetails{
	background-color: #F7F7F7;
	margin:6px;
	padding:6px;
	height: 120px;
	border: 1px solid #CCCCCC;
	}
	#entityDetails #small{
font-size: 11px;
color:#666666;
	}
		#entityDetails #small a:link{color:#666666;}
			
		#entityDetails #small a:visited{color:#666666;}
			
		#entityDetails #small a:hover{
	color:#996633;
}
#back_to_home_button{
	float:right;
	background-color: #fff;
	padding:2px;
	border: 1px solid #999;
	margin-top: 2px;
	}
	/* ======================================================= */
/* crossfade.css for header images */
.header-images {
	margin-left:211px;
	height:256px;
	padding-top: 6px;
}
ul.crossfade {
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
}

#fade-header li {
	position: absolute;
	top: 0;
	left: 0;
	visibility: hidden;
}

#fade-header li img {
	display: block;
}
/* ======================================================= */
