@charset "UTF-8";
body  {
	background: #666666; /* 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: #000000;
	background-color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
.80smallertype {
	font-size: 80%;
}
.thrColAbs #container {
	position: relative;
	/* [disabled]text-align: center; */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
} 

/* Tips for absolutely positioned sidebars:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
*/
.thrColAbs #sidebar1 {
	position: absolute;
	width: 496px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* padding keeps the content of the div away from the edges */
	height: 864px;
	left: 0;
	top: 0;
}
.thrColAbs #sidebar1blank {
	position: absolute;
	width: 496px; /* padding keeps the content of the div away from the edges */
	height: 864px;
	left: 0;
	top: 0;
	background-color: #EBEBEB;
	background-repeat: no-repeat;
	background-position: right top;
	background-image: url(Images/leftsideblank.jpg);
}
.thrColAbs #sidebar1adra {
	position: absolute;
	width: 496px; /* padding keeps the content of the div away from the edges */
	height: 864px;
	left: 0;
	top: 0;
	background-color: #EBEBEB;
	background-repeat: no-repeat;
	background-position: right top;
	background-image: url(Images/leftsideadra.jpg);
}
.thrColAbs #sidebar2 {
	position: absolute;
	top: 0;
	right: 0;
	width: 197px; /* padding keeps the content of the div away from the edges */
	height: 864px;
}
#toprightsidebar2 {
	background-color: #000000;
	background-image: url(Images/TopStar.gif);
	background-repeat: no-repeat;
	background-position: left top;
	height: 143px;
	width: 177px;
	color: #C9B7AB;
	padding-left: 20px;
	font-size: 80%;
	vertical-align: top;
	padding-top: 30px;
}
#toprightsidebar2   a:link  {
	font-weight: bold;
	color: #c9b7ab;
	text-decoration: none;
}
#toprightsidebar2 a:visited {
	font-weight: bold;
	color: #c9b7ab;
	text-decoration: none;
}
#toprightsidebar2 a:hover {
	font-weight: bold;
	color: #FBFAF4;
	text-decoration: none;
}
#botrightsidebar2 {
	background-color: #000000;
	background-image: url(Images/booking.gif);
	background-repeat: no-repeat;
	background-position: left top;
	height: 173px;
	width: 177px;
	color: #C9B7AB;
	padding-top: 20px;
	padding-left: 20px;
	font-size: 80%;
}
.thrColAbs #mainContent {
	margin-left: 496px;
	width: 459px;
	background-image: url(Images/Content.jpg);
	background-position: left bottom;
	height: 864px;
}
.header {
	background-image: url(Images/Header.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 245px;
	width: 459px;
}
.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;
}
.fltlft/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
  {
	width: 900px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #000000;
}
.oneColElsCtrHdr #header {
	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. */
	background-color: #000000;
} 
.oneColElsCtrHdr #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 */
}
.oneColElsCtrHdr #mainContent {
	background-color: #000000;
	text-align: center;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 0px;
}
.footerfloatleft {
	float: left;
}
.footerfloatright {
	float: right;
}
a img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	text-decoration: none;
}
a:link img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	text-decoration: none;
}
a:hover img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	text-decoration: none;
}
a:active img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	text-decoration: none;
}
#toprightsidebar2 a:hover {
	width: 400px;
	height: 500px;
}
#bodytext {
	padding-right: 30px;
}
#bodytext a:link {
	color: #371804;
	font-weight: bold;
	text-decoration: none;
}
#bodytext a:visited {
	color: #371804;
	font-weight: bold;
	text-decoration: none;
}
#bodytext a:hover {
	font-weight: bold;
	color: #563A21;
	text-decoration: none;
}
#footer {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	/* [disabled]width: 1000px; */ /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: center; /* this overrides the text-align: center on the body element. */
	height: 100px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	color: #faf1ed;
	font-size: 80%;
	padding-right: 0px;
	padding-left: 0px;
}
#footer a:link {
	color: #c9b7ab;
	text-decoration: none;
}
#footer a:visited {
	color: #c9b7ab;
	text-decoration: none;
}
#footer a:hover {
	color: #faf1ed;
	text-decoration: none;
}
.imgpadright {
	padding-right: 20px;
}
#leftsidebarblank {
	background-image: url(Images/Photo.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	height: 864px;
	width: 496px;
}
#leftsideblankcontent {
	margin-top: 100px;
	margin-right: 30px;
	margin-left: 70px;
	height: 620px;
	color: #000000;
	padding-left: 20px;
	padding-right: 20px;
}
#leftsideblankcontent a:link {
	color: #371804;
	font-weight: bold;
	text-decoration: none;
}
#leftsideblankcontent a:visited {
	color: #371804;
	font-weight: bold;
	text-decoration: none;
}
#leftsideblankcontent a:hover {
	font-weight: bold;
	color: #563A21;
	text-decoration: none;
}
#leftsideblankgallery {
	margin-top: 100px;
	margin-right: 30px;
	margin-left: 70px;
	height: 620px;
	color: #000000;
	padding-left: 0px;
	padding-right: 0px;
}
#leftsideblankcontentadra {
	margin-top: 250px;
	margin-right: 30px;
	margin-left: 180px;
	height: 650px;
	color: #000000;
	padding-left: 20px;
	padding-right: 20px;
}
.thrColAbs #sidebar1contact {
	position: absolute;
	width: 496px; /* padding keeps the content of the div away from the edges */
	height: 864px;
	left: 0;
	top: 0;
	background-color: #EBEBEB;
	background-repeat: no-repeat;
	background-position: right top;
	background-image: url(Images/leftsidecontact.jpg);
}
.thrColAbs #sidebar1ross {
	position: absolute;
	width: 496px; /* padding keeps the content of the div away from the edges */
	height: 864px;
	left: 0;
	top: 0;
	background-color: #EBEBEB;
	background-repeat: no-repeat;
	background-position: right top;
	background-image: url(Images/leftsideRoss.jpg);
}
.thrColAbs #sidebar1amanda {
	position: absolute;
	width: 496px; /* padding keeps the content of the div away from the edges */
	height: 864px;
	left: 0;
	top: 0;
	background-color: #EBEBEB;
	background-repeat: no-repeat;
	background-position: right top;
	background-image: url(Images/leftsideAmanda.jpg);
}
.thrColAbs #sidebar1frank {
	position: absolute;
	width: 496px; /* padding keeps the content of the div away from the edges */
	height: 864px;
	left: 0;
	top: 0;
	background-color: #EBEBEB;
	background-repeat: no-repeat;
	background-position: right top;
	background-image: url(Images/leftsideFrank.jpg);
}
.thrColAbs #sidebar1daniela {
	position: absolute;
	width: 496px; /* padding keeps the content of the div away from the edges */
	height: 864px;
	left: 0;
	top: 0;
	background-color: #EBEBEB;
	background-repeat: no-repeat;
	background-position: right top;
	background-image: url(Images/leftsideDaniela.jpg);
}
h2 {
	margin-bottom: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}
#introcentered {
	/* [disabled]padding-left: 50px; */
	width: 1100px;
}

