/* 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: #CCCCCC;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  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. */
  list-style-image: url(images/bullet.gif);
}
/* Commonly used to style page titles. */
h1 {
  color: #000;
  font-size: 1.4em;
  font-weight: bold;
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 1.3em;
  font-weight: bold;
}
/* Sets the style for the h3 header. */
h3 {
  font-size: 1.2em;
  font-weight: bold;
}
/* Sets the style for the h4 header. */
h4 {
  font-size: 1.1em;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #004365;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #004365;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #004365;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #004365;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #004365;
}
/* 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 {
  background-image: url("images/full_footer.jpg");
  background-position: bottom;
  background-repeat: no-repeat;
  border: solid 1px #004365; /* Sets the border properties for an element using shorthand notation */
  background-color: #FFFFFF;
  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: 960px;
}
#outerWrapper #header {
  height: 145px;
  color: #FFFFFF;
  font-size: 15px;
  text-align: right;
  padding: 10px 20px 10px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #header #headertitle{
	margin-top: 120px;
}

/* 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 {
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 30px 20px 20px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  font-size: 0.9em;
}
#outerWrapper #footer {
  color: #202020;
  padding: 0px 20px 5px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  font-size: 14px;
  font-weight: bold;
  height: 80px;
}

/* Further Layout Styles */
#outerWrapper #header .Menulink {
	padding-left: 10px;
}
#outerWrapper #header .Menulink a {
	color: #FFFFFF;
	text-decoration: none;
}
#outerWrapper #header .Menulink a:hover {
	text-decoration: underline;
}
#outerWrapper #header #topaddress {
	z-index: 2;
	position: relative;
	font-weight: bold;
	font-size: 13px;
	color: #333333;
	padding-top: 0;
}
#outerWrapper #header #topaddress p {
	margin-top: 2px;
	margin-bottom: 2px;
}
#outerWrapper #header #topaddresshome {
	z-index: 2;
	position: relative;
	font-weight: bold;
	font-size: 13px;
	color: #FFFFFF;
	padding-top: 0;
}
#outerWrapper #header #topaddresshome p {
	margin-top: 2px;
	margin-bottom: 2px;
}
#outerWrapper #footer p {
	margin-top: 10px;
	margin-bottom: 10px;
}
#outerWrapper #footer #address {
	z-index: 2;
	position: absolute;
	font-weight: normal;
	font-size: 13px;
	color: #333333;
}
#outerWrapper #footer #footerlinks {
	padding-top: 20px;
}
#outerWrapper #footer #footerlinks a {
	color: #202020;
	text-decoration: none;
}
#outerWrapper #footer #footerlinks a:hover {
	text-decoration: underline;
}
#outerWrapper #footer #footerlinks .accesslinks {
	padding-bottom: 5px;
}
.clearfloat {
  clear: right;
  display: block;
}

/* bluePanel CSS */

.bluePanel {
 position:relative;
 margin:0px auto;
 min-width:8em;
 max-width:430px; /* based on image dimensions - not quite consistent with drip styles yet */
 color:#000;
 z-index:1;
 margin-left:12px; /* default, width of left corner */
 margin-bottom:0.5em; /* spacing under bluePanel */
}

.bluePanel .content,
.bluePanel .t,
.bluePanel .b,
.bluePanel .b div {
 background:transparent url(images/blue_panel450x400.png) no-repeat top right;
 _background-image:url(images/blue_panel450x400.gif);
}

.bluePanel .content {
 position:relative;
 zoom:1;
 _overflow-y:hidden;
 padding:0px 12px 0px 0px;
}

.bluePanel .t {
 /* top+left vertical slice */
 position:absolute;
 left:0px;
 top:0px;
 width:12px; /* top slice width */
 margin-left:-12px;
 height:100%;
 _height:300px; /* arbitrary long height, IE 6 */
 background-position:top left;
}

.bluePanel .b {
 /* bottom */
 position:relative;
 width:100%;
}

.bluePanel .b,
.bluePanel .b div {
 height:25px; /* height of bottom cap/shade */
 font-size:1px;
}

.bluePanel .b {
 background-position:bottom right;
}

.bluePanel .b div {
 position:relative;
 width:12px; /* bottom corner width */
 margin-left:-12px;
 background-position:bottom left;
}

.bluePanel .hd,
.bluePanel .bd,
.bluePanel .ft {
 position:relative;
}

.bluePanel .bd {
	background-color: #EEEEEE;
	border: solid 1px #333333;
	padding-left: 5px;
	padding-right: 5px;
}

.bluePanel .bd a {
	color: #004365;
	text-decoration: none;
	font-weight: normal;
}

.bluePanel .bd a:hover {
	color: #004365;
	text-decoration: underline;
}

.bluePanel .ft p {
	text-align: center;
	color: #333333;
	margin: 0px;
}

.bluePanel .ft p a {
	color: #333333;
	text-decoration: none;
	font-weight: normal;
}

.bluePanel .ft p a:hover {
	color: #333333;
	text-decoration: underline;
}

.bluePanel table,
.bluePanel table td {
	padding: 2px;
}

.bluePanel .wrapper {
 /* extra content protector - preventing vertical overflow (past background) */
 position:static;
 min-height: 200px;
 max-height:300px;
 overflow:hidden; /* note that overflow:auto causes a rather annoying redraw "lag" in Firefox 2, and may degrade performance. Might be worth trying without if you aren't worried about height/overflow issues. */
}

.bluePanel h1,
.bluePanel h2,
.bluePanel h3,
.bluePanel h4,
.bluePanel h5,
.bluePanel p {
 margin:0px; /* margins will blow out backgrounds, leaving whitespace. */
 padding:0.5em 0px 0.5em 0px;
}

.bluePanel h1 {
 padding-bottom:0px;
}
/* End of bluePanel styles */

/* margin removal for form, fix spacing in Safari */
form {
	margin: 0px;
}

/* Booking form classes */
      .classshown{
         font-size: 11px;
         color: #000000;
         font-family :  Arial, Helvetica, sans-serif;
      }

      .classhidden{
         font-size: 11px;
         color: #000000;
         font-family :  Arial, Helvetica, sans-serif;
         display: none
      }
	  .button {
	  	background-color: #9AB6EC;
		border: solid 1px #333333;
		color: #333333;
	  }

/* Offers panel classes */
.offerTitle {
	font-weight: bold;
	color: #004365;
}

/* Testimonials */
#testimonial {
	background-color: #ECECEC;
	border: solid 1px #006699;
	padding: 10px;
	width: 180px;
	margin: 10px;
	font-size: 0.8em;
	font-style: italic;
	font-weight: bold;
	color: #006699;
}
#homeTestimonial {
	background-color: #ECECEC;
	border: solid 1px #006699;
	padding: 10px;
	width: 900px;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 0.8em;
	font-style: italic;
	font-weight: bold;
	color: #006699;
}

/* Tariff Tables */
.tariffTable {
	border: solid 1px #666666;
	text-align: center;
}
.tariffTable th {
	background-color: #CCCCCC;
	font-weight: normal;
}

/* User Applicable Styles */
.mediaOnLeft {
	float: left;
	margin-right: 10px;
	padding-bottom: 5px;
} 
.mediaOnRight {
	float: right;
	margin-left: 10px;
	padding-bottom: 5px;
}
/* Image alignment */
.ImageOnLeft {
	background-color: #CFD4D8;
	border: 1px solid #CCCCCC;
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}
.ImageOnRight {
	background-color: #CFD4D8;
	border: 1px solid #CCCCCC;
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
}
#flashTestimonials {
	border: solid 1px #666666;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
}
