/*
 * Chester Great Outdoors Club Gallery Stylesheet
 * based on Siriux Gallery 2 Theme (Copyright 2005-2007 Nico Kaiser).
 */

/*
 * !!! IE Printing
 */

/* -- Main layout definitions ------------- */

/*
 * GO: Remove body.gallery rules and use standard GO style instead.
 *     This affects: margin, padding, font-family, font-size, background-color,
 *                   color, text-align.
 */

/* GO: Add min-height to div#gallery */
div#gallery {
  /*
   * Set min-height for footer positioning.
   * This works on standard browsers but not on IE6.
   */
  min-height: 100%;
}

/* GO: Remove a rules and use standard GO style instead. */

/* GO: Remove a:hover rules and use standard GO style instead. */

hr {
  color: #FFF;
  height: 1px;
  border: none;
  /* GO: Change border-bottom color. */
  border-bottom: 1px solid #CCC;
  margin: 0;
  padding: 0;
  clear: both;
}

/* GO: Add .gsContent hr rules to remove gsContent padding. */
.gsContent hr {
  margin: 0 -15px 0 -15px;
  width: 760px;
}

.clear {
  clear: both;
}

/* GO: Add gs prefix to class names to avoid conflicts. */
.gsBreadcrumb {
  /* GO: Use absolute positioning and remove float. */
  position: absolute;
  top: 0;
  right: 15px;
  /* GO: Remove color and use standard GO color. */
  font-size: 0.9em;
}

/* GO: Add gs prefix to class names to avoid conflicts. */
.gsHeader {
}

/* GO: Add gs prefix to class names to avoid conflicts. */
.gsContent {
  /* GO: Set position=relative to allow absolute positioning of children. */
  position: relative;
  clear: both;
  /* GO: Change margin, add padding and set width. */
  margin: 0;
  padding-left: 15px;
  padding-right: 15px;
  width: 730px;
  text-align: left;
}

/* GO: Add gs prefix to class names to avoid conflicts. */
.gsFooter {
  font-size: 0.8em;
  color: #999;
  /* GO: Change margin and padding. */
  margin-top: 45px;
  padding-top: 15px;
  /* GO: Change border-top color. */
  border-top: 1px solid #CCC;
}

.gallery h2 {
  clear: both;
  /*
   * GO: Use same appearance as screen.css h1 but with smaller margin-top.
   *     This also changes margin and font-size, and removes padding-bottom
   *     and border-bottom.
   */
  margin-top: 6px;
  color: #3F994C;
  font-size: 1.4em;
  font-weight: bold;
}

.gallery h3 {
  clear: both;
  /*
   * GO: Use same appearance as screen.css h2.
   *     This also removes margin and changes font-size.
   */
  color: #3F994C;
  font-size: 1.25em;
  font-weight: bold;
}


/* -- Gallery thumbnails ------------------ */

.gallery-thumb {
  /* GO: Change margin. */
  margin: 1px;
  float: left;
  text-align: center;
}

.gallery-thumb img {
  background-color: #F3F3F3;
  /* GO: Use border color from superfluous .gallery-thumb a img rules. */
  border: 1px solid #CCC;
  /* GO: Change padding and -moz-border-radius. */
  padding: 5px;
  margin: 1px;
  -moz-border-radius: 2px;
}

/* GO: Remove superfluous .gallery-thumb a img rules. */

.gallery-thumb a:hover img {
  border-width: 2px;
  /* GO: Change border-color. */
  border-color: #F63;
  margin: 0;
  -moz-border-radius: 5px;
}


/* -- Gallery Album listing --------------- */

.gallery-albums {
  clear: both;
}

.gallery-albums h4 { /* Years in Album overview (when grouped by year) */
  /* GO: Change margin. */
  margin: 12px 0 0 0;
  font-size: 1.1em;
}

.gallery-albums .gallery-thumb {
  /* GO: Change margin. */
  margin-right: 3px;
}

.gallery-album {
  width: 46%; /* Change to 96% if you want 1 Album per line */
  padding-right: 3%;
  display: block;
  float: left;
  overflow: hidden;
}

.gallery-album p {
  font-size: 1em;
}

.gallery-album .meta {
  margin-top: 3px;
  color: #999;
  font-size: 0.9em;
}


/* -- Gallery Items ----------------------- */

.gallery-items {
  margin: 0;
  clear: both;
}

.gallery-empty {
  /* GO: Change margin and padding. */
  padding: 6px 15px;
  margin: 15px 30px;
  /* GO: Change border and background colors. */
  border: 1px solid #CCC;
  background-color: #EFE;
  font-size: 1.2em;
}


/* -- Gallery Photo (detail page) --------- */

/*
 * GO: Apply style to div.gallery-photo-img-box instead of img.gallery-photo.
 *     Use same styles for slideshow-photo.
 */

div.gallery-photo,
div.slideshow-photo {
  text-align: center;
}

div.gallery-photo-img-box,
div.slideshow-photo-img-box {
  /* GO: Set position=relative to allow absolute positioning of children. */
  position: relative;
  background-color: #F3F3F3;
  /* GO: Centre this div. */
  margin-left: auto;
  margin-right: auto;
  /* GO: Use same border color as gallery-thumb img. */
  border: 1px solid #CCC;
  padding: 7px;
  -moz-border-radius: 3px;
}

/* GO: Add rules for prevArrow and position relative to div.gallery-photo-img-box. */
div.gallery-photo-img-box #prevArrow {
  visibility: hidden;
  position: absolute;
  top: 30px;
  left: 30px;
}

/* GO: Add rules for nextArrow and position relative to div.gallery-photo-img-box. */
div.gallery-photo-img-box #nextArrow {
  visibility: hidden;
  position:absolute;
  top: 30px;
  right: 30px;
}


#prevArrow img,
#nextArrow img {
  border-style: none;
}

/* -- Navigator --------------------------- */

.block-core-Navigator {
  /* GO: Use text-align right instead of float right. */
  text-align: right;
  /* GO: Change margin. */
  margin: 12px 0;
  font-size: 0.9em;
  /* GO: Remove color and use standard GO color. */
}

.block-core-Navigator .current,
.block-core-Navigator .first-and-previous,
.block-core-Navigator .next-and-last {
  display: inline;
}

.block-core-Navigator .current {
  /* GO: Change margin. */
  margin: 0 6px;
}


/* -- ExifInfo ---------------------------- */

/* GO: Add .block-exif-ExifInfo rules to change margin. */
.block-exif-ExifInfo {
  margin: 12px 0;
}

.block-exif-ExifInfo div {
  font-size: 0.8em;
  color: #999;
  /* GO: Change margin. */
  margin: 6px 0;
}

table.gbDataTable {
  width: 100%;
  border-collapse: collapse;
}

table.gbDataTable td {
  /* GO: Change padding. */
  padding: 3px 6px 3px 0;
  /* GO: Remove border-bottom. */
}

table.gbDataTable td.gbEven {
  font-weight: bold;
}

.gbBusy {
    background-color: #AE9 !important;          /* !!! */
}

/* -- System- / Item-Links ---------------- */

/* GO: Use same style for slideshow-toolbar. */

.gbSystemLinks,
.block-core-ItemLinks,
.slideshow-toolbar {
  clear: both;
  /* GO: Change border-top thickness and border colors. */
  border-top: 1px solid #3F994C;
  border-bottom: 1px solid #3F994C;
  background-color: #EFE;
  /* GO: Change margins and padding to remove gsContent padding. */
  margin: 12px -15px 12px -15px;
  padding: 6px 15px 6px 15px;
  /* GO: Change font-weight to bold. */
  font-weight: bold;
}

.block-core-SystemLink { font-weight: bold; }

.gbSystemLinks .block-core-SystemLink a,
.block-core-ItemLinks a {
  display: block;
  /* GO: Change padding. */
  padding: 3px;
}


/* -- Toolbar ----------------------------- */

#toolbar {
  clear: both;
  border: 1px solid #CCC;
  background-color: #F1F1F1;
  /* GO: Change margin and padding. */
  margin: 12px 0;
  padding: 6px;
}


/* -- Admin ------------------------------- */

.gallery-admin {
  font-size: 0.9em;
}

.gallery-admin h2 {
  /* GO: Remove font-size and margin-top and use h2 style above instead. */
  overflow: hidden;
}

.gallery-admin h4 {
  /*
   * GO: Use same appearance as gallery h3 (same as screen.css h2).
   */
  color: #3F994C;
  font-size: 1.25em;
  font-weight: bold;
  /* GO: Change margin. */
  margin-bottom: 6px;
}

.giSuccess, .giWarning, .giError  {
  font-weight: bold;
}

.giSuccess {
  /* GO: Change color. */
  color: #3F994C;
}

.giWarning {
  color: #C50;
  }

.giError {
  /* GO: Change color. */
  color: #F63;
}

.gallery-admin .gbBlock {
  /* GO: Change margin. */
  margin: 15px 0 24px 0;
}

#gsSidebar {
  /* GO: Remove width and set width on gsSidebarCol instead. */
  overflow: hidden;
  /* GO: Change padding. */
  padding-right: 12px;
}

#gsSidebarCol {
  /* GO: Change width. */
  width: 160px;
}

/* GO: Add #gsContentCol rules to set width. */
#gsContentCol {
  width: 570px;
}

/* GO: Add #gsContentCol .gsContent rules to set width. */
#gsContentCol .gsContent {
  width: 570px;
}

#gsSidebar ul {
  /* GO: Change padding. */
  padding: 3px 0 15px 0;
  margin: 0;
  font-weight: bold;
}

#gsSidebar ul ul {
  font-weight: normal;
}

#gsSidebar li.gbAdminLink {
  list-style: none;
  /* GO: Change padding. */
  padding: 3px 0;
  margin: 0;
}

.gbTabBar {
  /* GO: Change padding. */
  padding: 3px 0;
  border-bottom: 1px solid #CCC;
}

.gbTabBar a {
  border: 1px solid #CCC;
  /* GO: Change padding. */
  padding: 3px 12px;
  background-color: #EEE;
  /* GO: Change margin. */
  margin: 0 3px;
}

.gbTabBar .giSelected {
  /* GO: Change margin and padding. */
  margin: 0 3px;
  padding: 3px 12px;
  border: 1px solid #CCC;
  border-bottom: 1px solid #FFF;
  font-weight: bold;
  background-color: #FFF;
}

.giUpdated, .giNew {
  /* GO: Remove font and use standard GO font instead. */
  text-transform: uppercase;
  color: #222;
  background-color: #FFEA88;
  padding: 0 3px;
  margin-left: 3px;
}

.autoCompleteShadow {
    background-color: #AAA !important;
}

.autoCompleteContainer {
    border: 1px solid #444;
    background-color: #FFF;
    border-top: 0px;
    border-bottom: 1px dotted rgb(0, 172, 0);
    margin-bottom: -1px;
    margin-top: 0px;
}

.autoCompleteContainer li.yui-ac-highlight {
    background-color: #F63;
    color: #FFF;
}

/* -- Extra GO rules ---------------------- */

/* GO: Add rules to change margins. */
.gsDescription {
  margin: 12px 0;
}

/* GO: Add rules to change margins. */
.block-core-GuestPreview {
  margin: 12px 0;
}

/* GO: Add rules to change margins. */
.block-core-EmergencyEditItemLink {
  margin: 12px 0;
}

/* GO: Do not display ItemAddFromServer upload options. */
#ItemAddFromServer {
  display: none;
}

/* GO: Do not display ItemAddFromWeb upload options. */
#ItemAddFromWeb {
  display: none;
}

/* GO: Do not display ItemEditPhotoThumbnail options. */
#ItemEditPhotoThumbnail {
  display: none;
}

