/*******************************************************************************
 * screen.css -  advanced styles for use on the screen media type
 ******************************************************************************/
 
.screen_hide,
.hide {
	display: none;
}

img.left {
	margin: 0 1em 1em 0;
}

/* Element Styles ----------------------------------------------------------- */

html, body {
  height: 100%;
}
a, a:link, a:visited {
	text-decoration: underline;
	color: #000;
}
a:hover {
  text-decoration: none;
}
h3 {
  font-size: 0.75em;
}

/* Site structure ----------------------------------------------------------- */

#wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -415px;
  width: 829px;
  min-height: 99%;
  border: 1px solid #4b4b4b;
  background-color: #d9eaf7;
  background: #d9eaf7 url('../layout_images/sand.jpg') no-repeat scroll bottom right;
}
#header {
  margin-bottom: 35px;
  background: transparent url('../layout_images/header.jpg') no-repeat scroll top left;
  height: 146px;
}
#logo {
  position: relative;
  top: 20px;
  left: 23px;
}
#nav {
  width: 183px;
  float: left;
}
#nav li {
  list-style-type: none;
  margin: 0 0 4px 0;
}
#nav li a {
  background: transparent none no-repeat scroll top left;
  display: block;
  height: 30px;
  text-indent: -100px;
  overflow: hidden;
}
/* change background position on hover and when selected */
#nav li a:hover, #nav li a.on {
  background-position: bottom left;
}
/* override background-image for specific items. id's on the anchors here
rather than the li's is mostly for the benefit of ie6, where the :hover pseudo
class doesn't work on anything other than anchors */
#nav li a#nav-home {
  background-image: url('../layout_images/home.jpg');
}
#nav li a#nav-gallery {
  background-image: url('../layout_images/gallery.jpg');
}
#nav li a#nav-calendar {
  background-image: url('../layout_images/calendar.jpg');
}
#nav li a#nav-downloads {
  background-image: url('../layout_images/downloads.jpg');
}
#nav li a#nav-contact {
  background-image: url('../layout_images/contact.jpg');
}
#nav li a#nav-links {
  background-image: url('../layout_images/links.jpg');
}
#content {
  /*width: 646px; - total */
  width: 611px; /* allows for a 35px right hand margin */
  min-height: 310px; /* so sand isn't truncated */
  float: left;
  margin-bottom: 1.5em;
}
#homepage-column-left {
  width: 292px;
  float: left;
  margin-right: 25px;
}
#homepage-column-right {
  width: 294px;
  float: left;
  white-space: nowrap;
}
#homepage-column-right img {
  margin: 0 0 2px 6px;
}
#homepage-column-right img#right {
  margin: 0 0 2px 1px;
}
#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 24px;
  background-color: #80b8e3;
}
#footer ul {
  /*padding-left: 24px;*/
  background-color: #80b8e3;
  text-align: center;
}
#footer li {
  list-style-type: none;
  /*margin: 6px 3px 6px 0;
  padding: 0 8px 0 0;*/
  margin: 6px 1px 6px 0;
  padding: 0 6px 0 0;
  border-right: 1px solid #94c7ee;
  display: inline;
  font-size: 0.65em;
  letter-spacing: -0.1px;
  
}
#footer li.last {
  border: 0;
}

/* Forms -------------------------------------------------------------------- */

#contact-form {
  background-color: #eff7fd;
  border: 1px solid #010101;
  margin: auto auto 1em 10px;
  padding: 10px 10px 0 10px;
  width: 280px;
  float: right;
}
#contact-form p {
  line-height: 1.2em;
}
.input-text {
  width: 95%;
  border: 1px solid #010101;
  padding: 7px 5px 7px 5px;
  font-family: Verdana,Arial;
  font-size: 1em;
}
.input-button {
  border: 1px solid #010101;
  margin-top: 5px;
  padding: 3px 5px 3px 5px;
}

/* Generic Classes ---------------------------------------------------------- */

table.blue-theme {
  border-top: 1px solid #0078c1;
  border-left: 1px solid #0078c1;
  margin-bottom: 1.5em;
}
table.blue-theme th {
  background-color: #0078c1;
  color: #fff;
  padding: 10px;
  text-align: left;
  border-right: 1px solid #0078c1;
  border-bottom: 1px solid #0078c1;
}
table.blue-theme th span {
  font-weight: normal;
}
table.blue-theme td {
  background-color: #eff7fd;
  padding: 5px 10px 5px 10px;
  text-align: left;
  border-right: 1px solid #0078c1;
  border-bottom: 1px solid #0078c1;
}
table.blue-theme tr.booked td {
  background-color: #ff9292;
}
table.blue-theme tr.reserved td {
  background-color: #ffbe92;
}

.pagination a.page-previous {
  font-weight: bold;
  margin-right: 5px;
}
.pagination a.page-next {
  font-weight: bold;
  margin-left: 5px;
}
.pagination .current {
	text-decoration: none;
}

/* div based gallery */
.gallery-item {
  width: 135px;
  float: left;
  overflow: hidden;
  margin-right: 15px;
}
.gallery-image {
  display: table-cell;
  vertical-align: bottom;
  height: 135px;
  overflow: hidden;
}
.gallery-image img {
	border: 1px solid #000;
}
.gallery-caption {
  min-height: 70px;
}
.gallery-caption p {
  font-size: 0.65em;
  line-height: 1.2em;
}