@charset "utf-8";
/* CSS Document */

/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
html, body {
height: 100%;
} 

* {
margin:0;
padding:0;
}

/*.side_bar img, div.side_bar img { behavior: url(iepngfix.htc) }*/

/*
Set initial font styles
*/
body {
   
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
	color: #422b10; 
	background:#a0bbd0 url(images/cms/body_bg_tile.gif) repeat-x top center;
	margin: 0 auto;       /* this centers wrapper */
	padding: 0;
/*border: 1px solid black;*/
}

div#body_bg{
	background: url(images/cms/content_tile.gif) repeat-y top center;
	 margin: 0 auto;       /* this centers wrapper */
	padding: 0;
 max-width: 992px;   /* IE wont understand these, so we will use javascript magick */
   min-width: 60em;
min-height: 100%; 
/*border: 1px solid black;*/
}

/* center wrapper, min max width */
div#pagewrapper{
   /*border: 1px solid black;*/
   margin: 0 auto;       /* this centers wrapper */
   padding: 0;
   max-width: 992px;   /* IE wont understand these, so we will use javascript magick */
   min-width: 60em;
   color: black;
   background:url(images/cms/content_bg_top.jpg) no-repeat top center;
   min-height:605px; 
}
/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #1d1103; 
text-decoration: none;
}

a:visited {
   background-color: inherit;
  color: #422b10;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: underline;
   
   color: #385C72;
}

/*****************
basic layout 
*****************/
body {
   
   color: #333;
    /*margin:1em;     gives some air for the pagewrapper */
}




/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
 height: 95px;    /* adjust according your image size */  
	margin: 0 auto;       /* this centers wrapper */
}

div#header h1 a {
/* you can set your own image here */
   display: block;
   height: 97px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}
div#header h1 a:hover {

   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
      background:none;
}
div#logo_wrapper{
width:300px;
float:left;
margin:20px 0 0 40px;
}
div#top_links{
float:right;
padding:0;
margin:1em 5em 0 0;
font-size:9px;
color:#fff;
text-align:right;
}

div#top_links a , div#top_links a:link, div#top_links a:active,
div#top_links a:visited{
color:#fff;
font-size:10px;
text-transform:uppercase;
cursor:pointer;
text-decoration:none;
}
div#top_links a:hover{
text-decoration:underline;
}

div#navigation {
	height:43px;
	width:946px;
margin: 0 auto;       /* this centers wrapper */
}
#navigation .style_content { 
background:url(images/cms/nav_bg.gif) repeat-x bottom; 
height:43px;
position: relative;
display: block;
}


#menu_top {
	display: block;
	margin: 0px 0px 0px 15px;
	padding: 0px;
	height: 43px;
	position: absolute;

}

html>body #menu {
	bottom: 0px;
}

#menu_top li {
	display: inline;
	margin: 0px;
	padding: 0px;
}

#menu_top li a {
	display: block;
	float: left;
	margin: 0px;
	padding: 0px 10px;
	height: 43px;

	color:#808b47;
	text-decoration:none;
}

/*#menu { background-image: url(images/cms/header_menu.png); background-repeat: no-repeat; }*/

#menu_top .page_item a {
	/*background-image: url(images/cms/back_menu.gif);*/
	background-position: center top;
	background-repeat: repeat-x;
	padding: 0 15px 0 15px;
	color:#ffffff;
	line-height: 48px;
}

#menu_top .page_tab a:hover {
	background-image: url(images/cms/back_menu_over.gif);
	background-position: center top;
	background-repeat: repeat-x;
	color:#ffffff;
}

#menu_top .current_page_item a {
	background-image: url(images/cms/back_menu_selected.gif);
	background-position: center top;
	background-repeat: repeat-x;
        color:#677038;

}

/* position for the search box */
div#search {
   float: right;
   width: 23em;    /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs {

   margin-top:20px;
   padding: 0.5em 0 0.5em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 80%;        /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
color:#7f7f63;
}

div.breadcrumbs a, div.breadcrumbs a:link, div.breadcrumbs a:active, div.breadcrumbs a:visited {
color:#7f7f63;
text-decoration:none;
}

 div.breadcrumbs span.lastitem { 
color:#7f7f63;
 } 

 div#content {
	 float: left;
   margin: 4px 0 0 48px;
   /*border:#ff0000 1px solid;*/
width:700px;
/*margin: 0 auto;       /* this centers wrapper */
}



#main {
	width:670px;
	float:left;
	/*border: 1px solid black;*/
	padding-bottom:15px;
padding-left:25px;
	}
	

#sidebar {
	width: 190px;
	float:right;
	/*background:url(images/cms/sidebar_bg.gif) top repeat-x;*/
	/*border: 1px solid black;*/
	margin: 0 0 0 0;
	padding:10px 46px 10px 0;
	}

#home_photo_gallery{
height:500px;
width:650px;
margin:0 0 0 5px;
/*text-align:center;*/
float:left;
/*border: 1px solid black;*/
}

#home_bubble{
height:327px;
width:210px;
margin:0;
/*text-align:center;*/
float:right;
/*border: 1px solid black;*/
}

div#footer {
width:680px;
	/*border:#666666 1px solid;*/
	padding-bottom:10px;
	margin:0 0 0 50px;
   color: #4e2200;
font-size:10px;

}

div#footer a:link , div#footer a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #4e2200; 
   text-decoration: none;
}

div#footer a:visited {
   text-decoration: none;
   background-color: inherit;
  color: #4e2200;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
div#footer a:hover {
   text-decoration: none;
   color: #4e2200;
}

div#footer p {
   font-size: 1em;
   padding: 1.5em;       /* some air for footer */
   text-align: center;  /* centered text */
   margin: 0;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   padding: 1em;
   border-bottom: 1px dotted #bfb9a6;
   margin: 1em;
}

/* relational links under content */
div.left49 {
  width: 49%; /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}




/********************
CONTENT STYLING
*********************/

/* HEADINGS */
h1, h2, h3, h4, h5, h6 {
	margin: 0px 0px 5px;
font-weight: normal;
	letter-spacing: -0.06em;
}

div#content h1 {
      font-size: 200%;
	line-height: 100%;
padding:4px 0 10px 0;
color:#422b10;
}
div#content h2 {
	font-size: 170%;
	line-height: 100%;
	margin: 0px 0px 5px;
color:#64645e;
}
div#content h3 {
   	font-size: 150%;
	line-height: 100%;
}
div#content h4 {
font-size: 130%;
	line-height: 100%;
}
div#content h5 {
font-size: 110%;
	line-height: 100%;
}
h6 {
	font-size: 100%;
	line-height: 100%;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.6em;
   padding: 0;
color:#422b10;
}


strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;


}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0 0 1.5em 0;
color:#422b10;
 line-height: 1.6em;
}

div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}

div.blank_list ul li{
list-style:none;
}

img.photoLeft {
	margin: 0 10px 10px 0;
	float:left;
	padding:8px;
 	 border:1px solid #ddd;
	 background-color:#f5f5f5;
	}
img.photoRight {
	margin: 0 0 10px 10px;
	float:right;
	padding:8px;
  border:1px solid #ddd;
   background-color:#f5f5f5;
	}
	
	img.logoLeft {
	margin: 0 10px 0 0;
	float:left;
		padding: 3px;
	}
	img.logoRight {
	margin: 0 0 0 10px;
	float:right;
		padding: 3px;
	}
/*
	contact form
	*/	

.contactform fieldset {padding: 1em; background-color: #f5f4ee;} 
.contactform div {width: 100%; padding: 0.25em 0 0.25em 0;} 
.contactform div label {display: block; width: 10em; } 
.contactform div.required {color: #f00;} 
	.contactform input, .contact textarea, .contact select{
		color: #000;
		background: #fff;
		border: 1px solid #b6af9c ; 
	}
	.contactform textarea{
		width:450px;
border: 1px solid #b6af9c ; 
	}
	div.submit input{
		color: #000;
		background: #f3f3eb;
		border: 1px solid #b6af9c ; 
	}
/* END LISTS */

/*PRINT HEADERS AND FOOTERS*/

div#print_header{
   /*display: none !important;*/

}
div#print_footer{
   /*display: none !important;*/
}

table.ROOM_DIMENSIONS{
	border-width: 1px 1px 1px 1px;
	border-spacing: 1px;
	border-style: outset outset outset outset;
	border-color: gray gray gray gray;
	border-collapse: separate;
	background-color: white;
}
table.ROOM_DIMENSIONS th {
	border-width: 0px 0px 0px 0px;
	padding: 4px 4px 4px 4px;
	border-style: inset inset inset inset;
	border-color: gray gray gray gray;
	background-color:#143d55;
	-moz-border-radius: 0px 0px 0px 0px;
        text-align:center;
color:#FFFFFF;

}
table.ROOM_DIMENSIONS td {
	border-width: 0px 0px 0px 0px;
	padding: 4px 4px 4px 4px;
	border-style: inset inset inset inset;
	border-color: gray gray gray gray;
	background-color:#e9e7d5;
	-moz-border-radius: 0px 0px 0px 0px;
        text-align:center;
}
table.ROOM_DIMENSIONS td.odd{
background-color:#FFFFFF;
}

.rest_name{
width:30%;
border:#0066CC 1px solid;
float:left;
}
.rest_phone{
width:30%;
border:#0066CC 1px solid;
float:left;
}
.rest_service{
width:30%;
border:#0066CC 1px solid;
float:left;
}

#gallery_side_wrapper{
 padding-left: 0;
 margin:2em 0.5em 0 1em;
 width:210px;
 float:right;
/*border:#0066CC 1px solid;*/
}

/*#home_side_wrapper{
 padding-left: 0;
 margin:2em 1.5em 0 1em;
 width:190px;
 float:right;
}*/
#home_side_wrapper ul{
margin:0 0 1em 1em;
}
#home_side_wrapper li{
	font-size: 12px;
   	line-height: 1.3em;
	text-indent: 12px;
	color: #202020;
	
	list-style: none;
  	margin: -4px 0 0 0;
  	padding: 4px 0 5px 0;
  	
	background-position: 0 .6em;
  	background-image: url(images/cms/arrow_gallery.gif);
  	background-repeat: no-repeat;
}
#home_side_wrapper a, #home_side_wrapper a:link, #home_side_wrapper a:active{
text-decoration:none;
}
#home_side_wrapper a:hover {
text-decoration:underline;
}
.buss {
color:#22b358;
font-weight:bold;
}
.clear_left{
clear:left;
}
.clear{
clear:both;
}
.side_tab{
width:100%;
font-size:11px;
color:#92623d;
padding-bottom:10px;
clear:left;
}
.side_tab p{
font-size:11px;
color:#92623d;
line-height:14px;
}
.side_tab a , .side_tab a:link, .side_tab a:active,
.side_tab a:visited{
color:#61391a;
}

.side_tab a span , .side_tab a:link span, .side_tab a:active span,
.side_tab a:visited span{
width:170px;
font-size:18px;
color:#61391a;
text-transform:uppercase;
font-weight:bold;
font-family:"Courier New", Courier, monospace;
float:left;
cursor:pointer;
}
.side_tab .arrow{
float:right;
background:url(images/cms/side_arrow.png) right no-repeat;
width:16px;
height:16px;

}
div.side_bar{
width:100%;
height:12px;
clear:both;
background:url(images/cms/side_dot.png) repeat-x left;
}
div.side_bar_blue{
width:100%;
height:12px;
clear:both;
background:url(images/cms/side_dot_2.png) repeat-x left;
}

blockquote {
       margin: 0; 
	padding: 0; 
	background-image: url(images/cms/q-open.gif);
	background-repeat: no-repeat;
	background-position: left top 5px;
	padding-left: 40px;
	font-style: italic;
}
blockquote span {
	background-image: url(images/cms/q-close.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
	display: block;
	padding-right: 40px;
}
 #client_wrapper{
/*border:solid 1px #ccc;*/
}

#client_wrapper .column_a{
float:left;
width:46%;
/*border:solid 1px #ccc;*/
padding:10px 10px 0 0;
}
#client_wrapper .column_b{
float:left;
width:46%;
/*border:solid 1px #ccc;*/
padding:10px 10px 0 0;
}

/****** START NAVIGATION ******/

#navmenu {
	height: 42px;
	text-align: left;
	background: none;
	margin: 0 23px 0 8px;
	padding: 16px 0 0 0;
}
#navmenu ul {
	font: 14px Arial, Helvetica, sans-serif;
	font-weight:normal;
	margin: 0;
	padding: 0 0 0 18px;
	/*vertical-align: bottom;*/
	list-style-type: none;
	list-style-image: none;
}
#navmenu li {display: inline;}
#navmenu ul li a {
	text-decoration: none;
	color: white;
	text-transform:lowercase;
	padding: 0 12px 0px 12px;
}

#navmenu ul li a:hover {
	color: #88c9ef;
}

#navmenu ul li:after {
	content: " | ";
	color:#777e84;
}


#navmenu ul li:last-child:after {
	content: "";
}

/****** END NAVIGATION ******/

/* MISC */

.tagline-wrap {
	width: 280px;
	padding: 0 0 0 0;
	margin: 0 0 0 676px;
}

#home_slide {
	/*background:url(images/cms/home_slide_bg.gif) no-repeat top left;*/
	background:url(images/cms/content_slide_bg.gif) no-repeat top left;
	padding: 15px 0 10px 0;
	margin: 0 0 0 0;
	/*border:#000 1px solid;*/
}
#content_slide {
	background:url(images/cms/content_slide_bg.gif) no-repeat top left;
	padding: 15px 0 0 0;
	margin: 0 0 0 0;
	/*border:#000 1px solid;*/
}
