/* $Id: layout-liquid.css,v 1.5.2.4 2009/02/13 19:30:50 johnalbin Exp $ */

/*
 * LAYOUT STYLES
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Zen Columns layout method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/** body **/
  body
  {
    margin: 0;
    padding: 0;
    background-color: #250E00;
    color: orange;
    font-family:Helvetica,Arial,sans-serif;
    min-width: 960px;
  }

  p
  {
    color: white;
  }

  #page,
  #closure-blocks
  {
    min-width: 960px; /* Don't allow the browser to make the site unreadable. */
  }

  #page-inner
  {
    background: transparent url(images/leftside_bkrnd-simple.png) no-repeat scroll 0 0;
    position: relative;
    min-width: 960px;  /* minimum requirement is HD to display the gallery properly */
  }

  #navigation-top,
  #navigation
  {
    position: absolute; /* Take the named anchors out of the doc flow    */
    left: -10000px;     /* and prevent any anchor styles from appearing. */
  }

/* omit styles for skip-to-nav */
  /*
  #skip-to-nav
  {
    float: right;
    margin: 0 !important;
    font-size: 0.8em;
  }
  #skip-to-nav a:link, #skip-to-nav a:visited
  {
    color: #fff; 
  }

  #skip-to-nav a:hover
  {
    color: #000;
    text-decoration: none;
  }
  */

/** header **/
  #header
  {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 700px;
    height: 400px;
    width:  600px;
    background: transparent url(images/rightside_bkrnd-simple.png) no-repeat scroll 0 0;
  }

  #header-inner
  {
/*    width: 415px; */
  }

  #logo-title
  {
  }

  #logo
  {
    float: right;
    margin-right: 75px;
  }

  #site-name
  {
  }

  #site-slogan
  {
  }

  #header-blocks
  {
    clear: both; /* Clear the logo */
  }

/** main (container for everything else) **/
  #main
  {
    min-height: 700px;
    position: static; /* this puts the streaks behind the #header */
    background: transparent url(images/header_streaks.png) no-repeat scroll 365px 0;
  }

  #main-inner
  {
  }

/** content **/
  #content
  {
    float: left;
    width: 100%;
    margin-left: 0;
    margin-right: -100%; /* Negative value of #content's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #content-inner. */
  }

  #content-inner #content-header h1.title
  {
    font-size: 3em;
    word-wrap: break-word;
    width: 800px;
  }
  #content-inner #content-header h1.title *
  {
    background-color: #111;
    padding: .25em 1em;
  }

  #content-inner,
  .no-sidebars #content-inner
  {
    margin: 0;
    padding: 0;
    position: relative; /* this fixes the content position so it's above the #page-inner background */
  }

  .sidebar-left #content-inner
  {
    padding-left: 250px; /* The width + left margin of #sidebar-left. */
    padding-right: 0;
  }

  .sidebar-right #content-inner
  {
    padding-left: 0;
    padding-right: 200px; /* The width + right margin of #sidebar-right. */
  }

  .two-sidebars #content-inner
  {
    padding-left: 260px; /* The width + left margin of #sidebar-left. */
    padding-right: 100px; /* The width + right margin of #sidebar-right. */
  }

/** navbar **/
  #navbar
  {
    float: left;
    width: 100%;
    margin-left: 0;
    margin-right: -100%; /* Negative value of #navbar's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #navbar-inner. */
    height: 3.6em; /* The navbar can have any arbritrary height. We picked one
                      that is twice the line-height pluse 1em: 2 x 1.3 + 1 = 3.6
                      Set this to the same value as the margin-top below. */
  }

  .with-navbar #content,
  .with-navbar #sidebar-left,
  .with-navbar #sidebar-right
  {
    margin-top: 10em; /* Set this to the same value as the navbar height above. */
  }

  #navbar-inner
  {
  }

  #search-box
  {
    width: 200px;
    margin-right: -200px; /* Negative value of #search-box's width. */
    float: left;
  }

  #primary
  {
/*    margin-left: 200px; *//* Width of search-box */
  }
  #primary .block-header  /* this is also a template for image replacement */
  {
   width: 137px; /* width of image */
   height: 0px; /* crush box model */
   padding-top: 38px; /* height of image */
   overflow: hidden; /* don't show the stretched box model */
   background-image: url(images/welcome.png); /* image to replace the menu link */
   background-repeat: no-repeat;
  }
  #primary ul.links li
  {
    display: block;
    margin: 10px 8px; /* give the image and anchor some room to work with */
    overflow: hidden; /* don't show the stretched box model */
    text-indent: -100em; /* push the real text all the way out of the way */
  }
  #primary ul.links li a
  {
    display: block;
    background-repeat: no-repeat;  /* for implied reasons */
    height: 31px; /* default height of background image */
    border: 1px solid orange;
    background-color: black;
  }
  #primary ul.links li a:hover
  {
    border: 1px solid white;
  }
  #primary ul.links li.menu-800 a /* Home */
  { /* image to replace the menu link */
    background: black url(images/home.gif) no-repeat scroll 14px 6px; 
  }
  #primary ul.links li.menu-801 a /* Photo Galleries */
  {
    background: black url(images/galleries.gif) no-repeat scroll 14px 6px;
  }
  #primary ul.links li.menu-732 a /* Videos */
  {
    background: black url(images/videos.gif) no-repeat scroll 14px 6px;
  }
  #primary ul.links li.menu-851 a /* Calendar */
  {
    background: black url(images/calendar.gif) no-repeat scroll 14px 6px; 
  }
  #primary ul.links li.menu-492 a /* Store */
  {
    background: black url(images/store.gif) no-repeat scroll 14px 6px;
  }
  #primary ul.links li.menu-448 a /* Email me */
  {
    background: black url(images/email-me.gif) no-repeat scroll 14px 6px;
  }
  #primary ul.links li.menu-1130 a /* Bio */
  {
    background: black url(images/bio.gif) no-repeat scroll 14px 6px;
  }
  #primary ul.links li.menu-993 a /* Call Me */
  {
    background: black url(images/call-me.gif) no-repeat scroll 14px 6px;
  }
  #primary ul.links li.menu-??? a /* Message Board */
  {
    background: black url(images/link-message_board.png) 14px 6px; 
  }
  #primary ul.links li.menu-??? a /* Blog */
  {
    background: black url(images/blog.gif) 14px 8px;
  }
  #secondary
  {
/*    margin-left: 200px; *//* Width of search-box */
  }

  #navbar ul /* Primary and secondary links */
  {
    margin: 0;
    padding: 0;
    text-align: left;
  }

  #navbar li /* A simple method to get navbar links to appear in one line. */
  {
    float: left;
    padding: 0 10px 0 0;
  }

  /* There are many methods to get navbar links to appear in one line.
   * Here's an alternate method: */
  /*
  #navbar li
  {
    display: inline;
    padding: 0 10px 0 0;
  }
  */

/** sidebar-left **/
  #sidebar-left
  {
    float: left;
    width: 250px;
    margin-left: 0;
    margin-right: -250px; /* Negative value of #sidebar-left's width + left margin. */
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #sidebar-left-inner. */
    position: relative; /* fix layering of #sidebar-left so #content doesn't cover the nav links*/
  }
  #sidebar-left-inner
  {
    margin: 144px 15px 0 25px;
    padding: 0;
  }
  #sidebar-left-inner .block-inner
  {
  }

/** sidebar-right **/
  #sidebar-right
  {
    float: right;
    width: 355px;
    margin-left: -355px; /* Negative value of #sidebar-right's width + right margin. */
    margin-right: 0;
    padding: 0; /* DO NOT CHANGE. Add padding or margin to #sidebar-right-inner. */
    position: relative;
  }

  #sidebar-right-inner
  {
    margin: 0 0 0 20px;
    padding: 0;
  }

/** footer **/
  #footer
  {
  }

  #block-menu-menu-footer-links ul
  {
    text-align: center;
  }
  #block-menu-menu-footer-links ul li
  {
    display: inline;
  }

  #footer-inner
  {
  }

/** closure **/
  #closure-blocks /* See also the #page declaration above that this div shares. */
  {
  }

/** Prevent overflowing content **/
  #header,
  #content,
  #navbar,
  #sidebar-left,
  #sidebar-right,
  #footer,
  #closure-blocks
  {
    overflow: visible;
    word-wrap: break-word; /* A very nice CSS3 property */
  }

  #navbar
  {
    overflow: hidden; /* May need to be removed if using a dynamic drop-down menu */
  }

  /* If a div.clear-block doesn't have any content after it and its bottom edge
     touches the bottom of the viewport, Firefox and Safari will mistakenly
     place several pixels worth of space between the bottom of the div and the
     bottom of the viewport. Uncomment this CSS property to fix this.
     Note: with some over-large content, this property might cause scrollbars
     to appear on the #page div.
  */
  /*
  #page
  {
    overflow-y: hidden;
  }
  */

/****   specific page styles   ****/
 /*******  all page titles  **********/
  #content-inner .view-content .views-field-title
  {
    font-size: 3em;
    color: white;
    word-wrap: normal;
  }
  #content-inner .view-content .views-field-title a
  {
    background: #111;
  }
  #content-inner .view-content .views-field-title a.flir-replaced
  {
    font-size: 70%;
  }
 /**********  Photo Gallery pages ***********/
  .view-image-gallery .views-row,
  .view-frontpage .view-display-id-attachment_1 .views-row
  {
    clear: both;
    border: 2px solid #cccccc;
    margin-bottom: 15px;
    padding: 0 5px 15px 17px;
    width: 550px;
  }
  .view-image-gallery .views-row-first
  {
  }
  .view-image-gallery .views-field-title span
  {
    font-weight: bold;
  }
  .view-image-gallery .views-field-field-image-fid div.field-item,
  .view-frontpage .views-field-field-image-fid div.field-item
  {
    float: left;
    padding-right: 7px;
  }
  .view-image-gallery .views-field-field-image-fid div.field-item img,
  .view-frontpage .views-field-field-image-fid img.imagecache-thumbnails
  {
    border: 2px solid white;
  }
  .view-image-gallery .views-field-body,
  .view-frontpage .view-display-id-attachment_1 .views-field-body
  {
    clear: left;
    width: 505px;
    font-family: Verdana, Ariel, sans-serif;
    font-size: 0.875em;
    border: 1px solid white;
    margin: 0 0 10px 0;
    background-color: black;
    padding: 5px 15px;
  }
  .view-image-gallery .views-field-body p
  {
  }
  /* Photo Galleria */
  .view-image-gallery .views-galleria ul.galleria
  {
    width: 280px;
  }
  .view-image-gallery .views-galleria ul li
  {
    margin-left: 0.5em;
  }
  .galleria_container
  {
    overflow: hidden;
  }
  .galleria_container .galleria_wrapper img
  {
    margin-left: 24px;
  }

/* videos */
 /******* frontpage video block ******/
  .view-frontpage.view-display-id-block_2
  {
    margin-bottom: 20px;
  }
  .view-frontpage.view-display-id-block_2 .view-content
  {
    clear: both;
    border: 2px solid #cccccc;
    width: 572px;
    text-align: center;
  }
  .view-frontpage.view-display-id-block_2 .view-content tr td
  {
	  width: 185px;
  }
  .views-videos
  { }

/* bio */
  #node-3 .content
  {
    background-color: black;
    border: 1px solid white;
    margin-left: 26px;
    padding: 10px 30px;
    width: 600px;
  }
