* {
	margin:0;
	padding:0;
}

body {
	font-size: 100%; 
	font-family: Arial, Verdana,  sans-serif; 
	background: #f3efe2 url(../images/bg.gif) repeat-x; 
	color: #545555;
	}
	
.clear {clear: both;}

.l {float: left;}

.r {float: right;}

ul {
	list-style: none; 
	list-style-image: none;
	}

a {
	text-decoration: none; 
	color: #494439;
	}
	
a:hover {text-decoration: underline;}	

img {
	border: 0;
}

.links {
	margin-bottom:5px;
}

.links p {
	font-size:10px;
	line-height:18px;
}

table {
	font-size:12px;
}

h1 {
	margin-bottom:10px;
	color:#245567;
	font-size:20px;
	font-weight:400;
	text-transform:uppercase;
}

h2 {
	margin-bottom: 10px;
	font-size:16px;
	color:#4f5a81;
	text-transform: uppercase;
}

h2.address {
	margin-top: 36px;
	font-size:13px;
	color:#fff;
	line-height:20px;
	font-weight:400;
	text-transform: none;
}

h2.address a {
	color:#fff;
	text-decoration:underline;
}

h3 {
	margin-bottom: 10px;
	font-size:15px;
	color:#4f5a81;
}

ul#nav li {
	display:inline;
	text-transform:uppercase;
	font-size:14px;
}

#booking {
	padding:20px 10px 0px 30px;
	border:1px solid #a6bac0;
	background: #4f5a81 url(../images/booking-bg.gif) no-repeat;
	height:189px;
	width:215px;
}

.white {
/*	background: white;*/
	margin-left:0px;
	margin-right:0px;
	padding:0 10px;
}

#contentbg {
	background: transparent url(../images/contentbg.gif) left repeat-y;
	float:left;
}

.content {
	padding: 20px 0;
}

.content p strong {
	font-size:15px;
	color:#545555;
	line-height:20px;
	font-weight:400;
}

.content p {
	font-size:12px;
	color:#545555;
	line-height:20px;
}

.content img {
	margin-right: 10px;
}

.specials {
	margin-top:20px;
	padding:10px 10px 30px 10px;
	background: #dedacf;
	width:95%;
	float:left;
}

.special_offers {
	padding:0 20px;
	width:260px;
	float:left;
}

.special_offers p {
	padding-bottom:5px;
	font-size:11px;
	line-height:13px;
}

.special_offers img {
	margin-right: 10px;
}

.special_offers h3 {
	margin-bottom:5px;
	font-size:12px;
	color:#4f5a80;
}

.special_offers a {
	color:#4f5a81;
	
}

.footer {
	margin-left:0px;
	margin-right:0px;
	padding:20px;
	border-top:1px solid #cccccc;
	background: #fff;
}

.footer p {
	font-size:9px;
	line-height:14px;
}


/******************************************************
   Lab Report CSS Tables ver. 1.1
   Created by Louise Dade, 03 September 2005
   http://www.classical-webdesigns.co.uk

   You may use this style sheet, but please DO NOT
   link to it directly (hot-link) in your own files.

   Inc. Files: graph.png; fauxalpha.png; dlarrow.png
******************************************************/

/* We collapse borders because we don't want cell spacing.
   We specify the font family here too, including a generic fall-back.
   We specify a global table font size, using 'ems' because they are
   resizable and take their relative value from the global stylesheet. */
table.contact {
    border-collapse: collapse;
/*    background: url(graph.png) #fff no-repeat center;*/
    color: #000;
/*    font-family: "Lucida Bright", "Times New Roman", serif;*/
    font-size: 12px;
}

/* We add letter spacing because all caps makes the letters scrunchy
   Also, left aligned because it was favoured by my university for table
   captions, but yours might be different. Actually for a scientific paper,
   the caption would be more detailed, resembling a table 'summary' */
table.contact caption {
    padding-bottom: 5px;
    font-variant: small-caps;
    letter-spacing: 0.1em;
    text-align: left;
}

/* Table headers should be clear, but concise and discreet.
   The double border separates the row from caption and the table body 
   without needing a different background colour. Because we've specified
   a text colour, we also specify a background colour (even though it's the
   same as the main table colour) to accommodate personal stylesheets. */
table.contact thead th {
    border-top: 1px double #ccc;
    border-bottom: 1px double #ccc;
    padding: 2px 10px;
    background-color: #fff;
    color: #aaa;
    text-align: left;
    font-variant: small-caps;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

/* We've given the table footer the same double border treatment for the
   same reason.  It also acts as a nice "end of table" indicator. It's 
   part of the data so we leave the text black. We also treat the header
   and data the same way. */
table.contact tfoot th, table.contact tfoot td {
    border-top: 3px double #ccc;
    border-bottom: 3px double #ccc;
    padding: 2px 10px;
    font-variant: small-caps;
    letter-spacing: 0.1em;
}

/* We now revert to discreet single pixel horizontal borders to separate
   each entry.  If your table content is numerical data, you might want the
   vertical borders too, but I find it's visually more pleasing and easier to
   read online when there is plenty of padding instead of borders. 
   NOTE: we treat the headers and data cells the same here, visually it's clear
   enough (header text is bold) and does not affect screen-reader software */
table.contact tbody th, table.contact tbody td {
    border-bottom: 1px solid #ccc;
    padding: 2px 10px;
    text-align: left;
    vertical-align: top;
}

/* Faux alpha transparency.  It's just a 16px square image (a PNG, but
   could be a GIF) filled with a colour (I chose orange because it
   contrasts pleasingly with blue - opposite on colour wheel) and then
   every other pixel is filled with another colour (e.g. white) which is
   made the transparent colour (ordinary transparency) - anything behind
   the transparent pixels shows through and our wonderful brain fills in
   the rest, thanks to Gestalt psychology.  Only really works when a solid
   colour is required, such as table row rollovers. NOTE: IE doesn't like
   tr:hover anyway so "pprrffffft!" to that! */
table.contact tbody tr:hover {
    background: url(fauxalpha.png) transparent repeat center;
}

/* CSS2 selectors - this just means the link in the fourth TD along
   (the last column).  It simply adds a "download" icon and makes the
   text all caps - will be ignored by older browsers. We also add a 
   link colour (same as all other links) for personal stylesheets. */
table.contact tbody td+td+td+td a {
    padding-right: 16px;
    background: url(dlarrow.png) transparent no-repeat bottom right;
    color: #00d;
    font-variant: small-caps;
    letter-spacing: 0.1em;
}

/* Finally we have the link styles: background has been rendered as
   transparent so the background image isn't blocked in an ugly way. */
table.contact tbody a {
    background-color: transparent;
    color: #00d;
    text-decoration: none;
}
table.contact tbody a:visited {
    background-color: transparent;
    color: #00a;
}
table.contact tbody a:hover {
    background-color: transparent;
    color: #00f;
}
table.contact tbody a:active {
    background-color: transparent;
    color: #f00;
}

/* EOF */

table.searchbox {
	font-size:12px;
	color:#fff;
}

.detail {
	display: none;
}

table.roomchoice {
	background: #DEDACF;
	border-top:1px solid #CCCCCC;
	border-bottom:1px solid #CCCCCC;
}

table.roomchoice td {
	padding:4px 0;
	/*font-size:12px;
	color:#fff;*/
}

table.roomsavailability td.tariffname {
	padding:4px 0;
	background: #4F5A81;
	color:#fff;
}

table.roomsavailability {
	background:#f3f1ea;
	border:1px solid #f3f1ea;
	border-top:1px solid #CCCCCC;
	border-bottom:1px solid #CCCCCC;
}

table.roomsavailability td {
	padding:4px 0;
}

table.roomsavailability tr.alt {
	background: #fff;
}


table.roomlist {
	border-top:1px solid #fff;
	border-bottom:1px solid #fff;
	background:#DEDACF;
}

table.roomlist td.roomdesc {
	background: #fff;
	font-size:11px;
	padding:5px;
}

table.roomlist td.roomtotal {
	background: #fff;
	font-size:11px;
	padding:5px;
}

td.bke_roomheadcell {
	font-size:11px;
	padding:4px;
	font-weight: bold;
}

td.bke_roomheadtotal {
	font-size:11px;
	padding:4px;
	font-weight: bold;
}

.availtableiframe {
	width:520px;
	height: 186px;
}


table.noavailroomlist {
	border-top:1px solid #fff;
	border-bottom:1px solid #fff;
	background:#DEDACF;
	padding:4px;
}

table.noavailroomlist td {
	padding:4px;
}


table.noavailroomlist td.roomtable {
	background: #fff;
	font-size:11px;
	padding:5px;
}

table.noavailroomlist td.bke_remark {
	font-size:11px;
	padding:5px;
}

div#reviewform form {
	margin-top:15px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
}
div#reviewform table {
	width:100%;
}
div#reviewform td {
	padding:5px;
	margin:2px;
	text-align:left;
}
.textbox {
	font-family:Tahoma, Verdana, Arial;
	font-size:11px;
	width:400px;
}

p.line {
background:#BBB29B none repeat scroll 0 0;
display:block;
font-size:1px;
height:1px;
margin:0;
padding:0;
}



/* REVIEWS pagination */
#review_pagination {
	margin:0px;
	display:block;
	padding:0px 0px 20px 0px;
}
#review_pagination a {
	font-family:Tahoma, Verdana, Arial;
	font-size:10px;
	color:#666666;
    display:block;
    float:left;
    width:15px;
	font-weight:normal;
    height:15px;
    text-decoration:none;
	text-align:center;
	border:1px solid #666666;
	margin:0px 2px 0px 0px;
}
#review_pagination a:hover, #review_pagination a.review_pagination_on {
    color:#ffffff;
    border:1px solid #906b2f;
    background:#aa8a38;
}


/* ############################ REVIEW STYLING #############################*/

div#reviewform form {
    margin-top:15px;
    font-family:Arial, Helvetica, sans-serif;
    font-size:11px;
}
div#reviewform table {
    width:100%;
	 background:#f8f8f8;
}
div#reviewform td {
    padding:5px;
    margin:2px;
    text-align:left;
}

div#reviewform tr:hover {
    background:#f2f2f2;
}

div#reviewform form submit {
	background:#676767;
	color:#fff;
	padding:5px 10px;
	border:none;
}

.textbox {
    font-family:Tahoma, Verdana, Arial;
    font-size:11px;
    width:400px;
} 
#booking_form_surround table {
	font-family:"Trebuchet MS", Tahoma, Arial;
	font-size:12px;
	color:#666666;
}
#booking_form_surround select {
	font-family:Tahoma, Verdana, Arial;
	font-size:12px;
	padding:1px;
}
/* old price styling */
.price {
    font-weight:bold;
    font-size:11px;
    color:#000000;
}
.price_before {
    text-decoration: line-through;
    color:#999999;
    font-size:11px;
	font-weight:bold;
}
.savings {
    font-weight:bold;
    font-size:11px;
    color:#b7620e;
}


#ratingBox {
background-color:#4F5A81;
background-repeat:no-repeat;
color:#FFFFFF;
float:right;
font-size:16px;
height:27px;
margin-top:9px;
overflow:visible;
padding-top:10px;
position:relative;
text-align:center;
width:47px;
}

.content #review p strong {
color:#545555;
font-size:15px;
font-weight: bold;
line-height:20px;
}

.starR {
float:right;
margin-right:0px;
position:relative;
}

.reviewElement {
position:relative;
height:30px;
}

#prosCons {
color:#666666;
font-size:11px;
margin:10px 0 0;
position:relative;
}

#pros2 {
	margin-bottom:10px;
}

#review {

border-bottom:1px solid #666;
clear:both;
font-family:Verdana,Arial,Helvetica,sans-serif;
padding:25px 10px 20px;
position:relative;
}