/* $Id: page.css,v 1.1.2.28 2009/06/12 15:44:26 jmburnz Exp $ */

/**
 * @file page.css
 * This stylesheet provides the page main styles for this theme.
 */

/**
 * Remove unused styles for performace.
 */
/**
 * #genesis-3c ---- copied from layout.css ----
 * Unit:   px
 * Layout: Both sidebars on the left - left/right/content
 */
#genesis-3c .two-sidebars  .content-inner {margin-left: 520px;}
#genesis-3c .sidebar-left  .content-inner {margin-left: 220px;}
#genesis-3c .sidebar-right .content-inner {margin-left: 220px;}
#genesis-3c #sidebar-left  {width: 200px; margin-left: -100%;}
#genesis-3c #sidebar-right {width: 200px; margin-left: -100%;}
/* Use position: relative to push the sidebar back into position */
#genesis-3c .two-sidebars #sidebar-right {width: 200px; position: relative; left: 220px;}


/**********************************************************
 *              Section, Page and Body Classes
 **********************************************************/
/**
 * Normally you will use these in combination with other
 * selectors. I include them here for completedness.
 */

/**
 * Section Class
 * The section class takes the 2nd part of the URL and
 * builds a section-[arg] class from it. If you emulate
 * site sections using the Pathauto module this can be a
 * powerful way to style site sections.
 *
 * Look in body element for the section you want to style
 * to find the class to replace section-[arg]:
 */
/* .section-arg {} */

/* Front or not front. */
.front {}
.not-front {}

/* Is the user logged in. */
.logged-in {}
.not-logged-in {}

/* Node type body classes. */
.node-type-book  {}
.node-type-blog  {}
.node-type-forum {}
.node-type-page  {}
.node-type-poll  {}
.node-type-story {}

/**
 * Warning!
 * The sidebar body classes are integral to how genesis
 * applies the layout - do not add margin, padding, borders,
 * or positioning styles to these classes! @see layout.css.
 */
.one-sidebar   {}
.two-sidebars  {}
.sidebar-right {}
.sidebar-left  {}

/**
 * Optional Region body classes
 * When any of the following regions are active a body class can be set.
 * To use you need to uncomment the conditional statements in
 * genesis_preprocess_page(), @see template.php.
 */
/*
.leaderboard       {}
.header-blocks     {}
.secondary-content {}
.tertiary-content  {}
.footer            {}
*/

/**
 * Page Path Class
 * The page path class takes the entire URL and builds a page-[path]
 * class from it. See examplebelow. You need to use Firebug or view
 * source to find out what the actual class will be, and be aware
 * that this will change if your URL alias changes!
 *
 * Replace [example-node-path] with the path you want
 * to style.
 */
/* .page-example-node-path {} */


/**********************************************************
 *                  The wrapper divs
 *    Be careful how you modify these, see layout.css
 **********************************************************/
/**
 * Width Setting
 *
 * Genesis supports Elastic, Fluid and Fixed width values.
 * Elastic layouts are dynamic and will expand or contract when
 * the font size is changed. Fluid widths change when the browser
 * is resized and fixed width layouts stay the same width even
 * when the broswer is resized or the font size is changed.
 *
 * Elastic layouts use ems,       e.g. 80em
 * Fluid layouts use percentages, e.g. 85%
 * Fixed widths use pixels,       e.g. 960px
 */
#container {
    background: url("../images/container-back-002.jpg") no-repeat scroll 0 160px #313F42;
    border: 2px solid #000000;
    margin-top: 15px;
    width: 980px;
}
body > #container {
  width: 100%;      /* Width for all other browsers */
  max-width: 980px; /* set a maximum width */
  min-height: 700px;
}

/* Column wrappers */
#columns {padding: 20px 0;}
.columns-inner {}

/* Content wrappers */
#content-column {}
.content-inner {}

/* Main content wrappers*/
#main-content {
  margin: 0 25px;
}
.page-node-3 #main-content {
  margin: 0 7%;
}
.page-node-2 #main-content {
  margin: 0 7% 0 20%;
}
#content {
}


/**********************************************************
 *                       Regions
 **********************************************************/
/* Target all regions with this low specifity selector. */
.region {}
.region-inner {}

/**
 * Most regions have an .inner div to set paddings or other
 * design contingencies.
 */

/* Leaderboard is a full width region at the very top,
   ideal for displaying banners. */
#leaderboard {}

/* Header blocks region is embedded in the header, floated
   between the logo/site_name and the search box. */
#header-blocks {
}
#header-blocks .region-inner {}

/* Secondary content is a full width region between
   the header and the main columns. */
#secondary-content {}
#secondary-content .region-inner {}

/* Tertiary content is a full width region above the footer,
   below the main content. */
#tertiary-content {}
#tertiary-content .region-inner {}

/* Content top and bottom are above and below the main content,
   within the main content column. */
#content-top {}
#content-bottom {}


/**********************************************************
 *                      Sidebars
 **********************************************************/
/* Target both sidebars with this low specifity selector. */
.sidebar {}
.sidebar-inner {}

/* Target a specific sidebar, inner or sidebar-inner. */
#sidebar-left {}
#sidebar-left .sidebar-inner {}

#sidebar-right {}
#sidebar-right .sidebar-inner {}


/*********************************************************
*                     GPanel Regions
**********************************************************/
.two-col-50 {}
.two-col-50 .col-1 {}
.two-col-50 .col-2 {}

.two-col-50.with-nested {}
#two-col-50-nested {}
.two-col-50.with-nested .col-1 {}
.two-col-50.with-nested .col-2 {}
.two-col-50.with-nested #two-col-50-nested .col-1 {}
.two-col-50.with-nested #two-col-50-nested .col-2 {}

.three-col-33 {}
.three-col-33 .col-1 {}
.three-col-33 .col-2 {}
.three-col-33 .col-3 {}

.four-col-25 {}
.four-col-25 .col-1 {}
.four-col-25 .col-2 {}
.four-col-25 .col-3 {}
.four-col-25 .col-4 {}


/**********************************************************
 *                   Skip navigation
 **********************************************************/
/**
 * To hide the skip-nav you can use:
 *
 * height: 0;
 * overflow: hidden;
 *
 * Do not use display:none as this hides it from screen readers!
 */
#skip-nav {
    left: 0;
    position: absolute;
    text-align: right;
    top: -50px;}

/* Override default pseudo class styles */
#skip-nav a:link    {}
#skip-nav a:visited {}
#skip-nav a:hover   {}
#skip-nav a:focus   {}
#skip-nav a:active  {}

/**
 * An alternative method is to position the skip-nav link offscreen
 * until the user tabs the link into focus. Uncomment the following to use.
 *
 * Adjust the style of the active/focused link to suit.
 */
/*
#skip-nav {
   text-align: left;
}
#skip-nav a:link,
#skip-nav a:hover,
#skip-nav a:visited {
  height: 1px;
  overflow: hidden;
  position: absolute;
  top: -999em;
}
#skip-nav a:active,
#skip-nav a:focus {
  background: #FFF;
  color: #C00000;
  height: 1.5em;
  overflow: visible;
  position: fixed;
  top: 0;
  right: 0;
  width: auto;
  z-index: 1000;
}
*/


/**********************************************************
 *                 Header Elements
 **********************************************************/
/* #header wraps #branding, #search-box-top and #header-blocks. */
#header {
    background: url("../images/header-003-980x122.jpg") no-repeat scroll 0 0 transparent;
    height: 122px;
    margin-bottom: 0;
}

/* #branding wraps #logo, #site-name and #site-slogan. */
#branding {
  float: left;
  margin: 70px 0 14px 200px;
}

/* h1 is for the front page only, all others use the div. */
#branding h1 {font-size: 1em;} /* reset h1, do not change! */

/* Logo and site_name wrapper. */
.logo-site-name {}
div.logo-site-name {}
h1.logo-site-name  {}

/* DIV/strong combo when when title is set. */
div.logo-site-name strong {}

/* Remove display:block if you want the site name inline with the logo. */
.logo-site-name span {
  display: block;
}

/* Logo. */
#logo {}

#site-name {
  font-weight: bold; /* Bold or else the line heights vary. */
  font-size: 2em;
  line-height: 1.5;
}

/* Override default pseudo class styles. */
#site-name a    {
    color: #DDDDD0;
    font-size: 22px;
    font-weight: normal;
    text-decoration: none;
    text-shadow: 1px 1px 2px #000000;
}

#site-name a:link    {}
#site-name a:visited {}
#site-name a:hover   {}
#site-name a:focus   {}
#site-name a:active  {}

/* Site slogan. */
#site-slogan {}


/**********************************************************
 *    Search box, Advanced search form, Search results
 *          For the search block see blocks.css
 **********************************************************/
/**
 * Search box
 */
/* Float the serch box right. */
#search-box {
  float: right; /* LTR */
}

/* Reset form element margins. */
#search-theme-form {
  margin: 1.5em 0;
}

/* Use the child selector because the inner div has no class. */
#search-theme-form > div {}

/* #search and .container-inline apply to the same div. */
#search-theme-form #search {}
#search-theme-form .container-inline {}

#search-theme-form label {}
#search-theme-form input {}
#search-theme-form .form-item {}
#search-theme-form .form-submit {}

#edit-search-theme-form-1 {}

/* Override forms.css focus style */
#edit-search-theme-form-1:hover,
#edit-search-theme-form-1:focus {}


/**
 * Advanced search form
 */
/* Advanced search-form id. */
#search-form {}

/* Use the child selector because the inner div has no class. */
#search-form > div {}
#search-form .container-inline {}
#search-form #edit-keys-wrapper {}

#search-form label {}
#search-form input {}
#search-form .form-item {}
#search-form .form-submit {}

/* Override forms.css text field focus style. */
#search-form #edit-keys-wrapper input:hover,
#search-form #edit-keys-wrapper input:focus {}

/* Advanced search fieldset. */
fieldset #search-advanced {}

/**
 * Search results
 */
/* Box styles for the results page. */
.section-search .box {}
.section-search .box-inner {}
.section-search .box-title {}

/* Style the no results messages. */
.section-search .box ul {}
.section-search .box ul li {}

/* Search results document list. */
dl.search-results {}
dl.search-results dt {}
dl.search-results dd {}
dl.search-results dd p {}
dl.search-results dd .search-snippet {}
dl.search-results dd .search-info {}


/**********************************************************
 *               Primary & Secondary Links
 **********************************************************/
/**
 * Implimentation of Primary and Secondary Links.
 *
 * Primary & Secondary Links are colored by default so you
 * can easily identify them.
 */

/**
 * #nav is the containing div for Primary & Secondary Links.
 */
#nav {
    background-color: #111111;
    border: 1px solid #444840;
    float: left;
    height: 39px;
    left: -20px;
    margin: 0;
    position: relative;
    width: calc(100% + 40px);
    min-width: 540px;
}

/**
 * Primary Links Positioning
 */
/* FLOAT PRIMARY RIGHT */
/* #primary .primary-inner {float: right;} */
/* ALIGN PRIMARY CENTER */
/* #primary .primary-inner {display: table; margin: 0 auto; text-align: center;} */

/**
 * Primary Links Style
 * Example styles to get you started.
 */
#primary {
    text-align: right;
}

#nav .primary-links {
  margin: 0;
  padding: 0;
  display: inline-block;
}
#nav ul.primary-links {
  float: right;
  margin: 6px 8% 0 0;
  padding: 0;
}

/* Modify the margin to set tab spacings. */
#nav .primary-links li {
    float: left;
    list-style: none outside none;
}

#nav .primary-links li a {
    -moz-border-radius: 8px 8px 8px 8px;
    border-radius: 8px 8px 8px 8px;
    background-color: #333B3A;
    color: #98a898;
    display: block;
    height: 19px;
    margin: 0 2px;
    padding: 4px 12px;
    text-decoration: none;
    white-space: nowrap;
}

/* Set pseudo class styles. */
#nav .primary-links li a:hover {
  background-color: #333e43;
  color: #cc9022;
}
#nav .primary-links li a:focus {}
#nav .primary-links li a:active {}
#nav .primary-links li a:visited {}

/* Primary first and last classes. */
#nav .primary-links li.first {}
#nav .primary-links li.last {}

/* Active trail classes. */
#nav .primary-links li.active {}
#nav .primary-links li.active-trail {}
#nav .primary-links li.active-trail a {
  background: url("../images/menu-active-back.gif") repeat-x scroll 0 0 #DF9910;
  color: #000000;
  margin-top: -1px;
  padding: 5px 12px;
}
#nav .primary-links li.active-trail a:hover {
  background: url("../images/menu-active-back-hover.gif") repeat-x scroll 0 0 #e9a319;
  color: #333333;
}
/**
 * Secondary Links Positioning
 */
/* FLOAT SECONDARY RIGHT */
/* #secondary .secondary-inner {float: right;} */
/* ALIGN SECONDARY CENTER */
/* #secondary .secondary-inner {display: table; margin: 0 auto; text-align: center;} */

/**
 * Secondary Links Style
 */
#secondary {}

#nav .secondary-links {
  background: #EEE; /* Default gray for dev only. */
  font-weight: bold;
  margin: 0;
  padding: 0;
}

/* Modify the margin to set tab spacings. */
#nav .secondary-links li {
  display: inline;
  line-height: 2;
  list-style: none;
  margin: 0 1em;
  padding: 0;
}

#nav .secondary-links li a {
  text-decoration: none;
  white-space: nowrap;
}

/* Set pseudo class styles. */
#nav .secondary-links li a:hover {}
#nav .secondary-links li a:focus {}
#nav .secondary-links li a:active {}
#nav .secondary-links li a:visited {}

/* Secondary first and last classes. */
#nav .secondary-links li.first {}
#nav .secondary-links li.last {}

/* Active trail classes. */
#nav .secondary-links li.active {}
#nav .secondary-links li.active-trail {}
#nav .secondary-links li.active-trail a {}


/**********************************************************
 *                      Breadcrumb
 **********************************************************/
/**
 * Genesis places the breadcrumb directly below the header,
 * giving it the full width of theme to expand into.
 * You can eaisly drag the breadcrumb html to the main
 * content column if you need to.
 */
#breadcrumb {
  padding: 0 0 0.75em;
}


/**********************************************************
 *                       Mission
 **********************************************************/
#mission {
  font-weight: bold;
  margin: 0 0 1.5em;
}


/**********************************************************
 *                    H1 Page Title
 **********************************************************/
/* The main title on each page. */
h1#page-title {
    border-bottom: 1px dotted #447777;
    font-size: 1.7em;
    margin-bottom: 15px;
    margin-right: 5px;
    padding-bottom: 6px;
}
h1#page-title-photo {
    font-size: 1.7em;
    margin-bottom: 15px;
    margin-right: 5px;
    padding-bottom: 6px;
}

/**********************************************************
 *                     Pager
 **********************************************************/
/* The first 2 classes provide the base pager styles. */
.item-list ul.pager    {}
.item-list ul.pager li {
  margin: 0;
}

/* Theme the various states of pager links. */
.item-list ul.pager li a:link    {}
.item-list ul.pager li a:visited {}
.item-list ul.pager li a:hover   {}

/* Note: .pager-current is for the current page. */
.item-list ul.pager li.pager-item     {}
.item-list ul.pager li.first          {}
.item-list ul.pager li.last           {}
.item-list ul.pager li.pager-current  {}
.item-list ul.pager li.pager-first    {}
.item-list ul.pager li.pager-previous {}
.item-list ul.pager li.pager-next     {}
.item-list ul.pager li.pager-last     {}


/**********************************************************
 *               Footer, Footer Message
 **********************************************************/
#foot-wrapper {
  margin: 0.375em 0;
}

#footer {}
#footer .region-inner {}

#footer-message {}

#footer a,
#footer-message a {}


/**********************************************************
 *                 RSS Feed Icon
 **********************************************************/
.feed-icon {}
.feed-icon img {
  padding:0 0.5em;
}
#footer-message a.feed-icon {}


#first-page-boxes {
  margin: 0;
  padding: 20px;
}
#first-page-boxes ul {
    list-style: none;
    width: 100%;
    margin: 0;
    text-align: center;
}
#first-page-boxes ul li {
    list-style-type: none;
    margin: 0 2px 4px;
    padding: 0 0;
    text-align: center;
    width: 49%;
    display: inline-block;
}
#first-page-boxes a:link,
#first-page-boxes a:visited {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 25px 25px 25px 25px;
    box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.5) inset, 0px 0px 50px rgba(0, 255, 237, 0.3);
    color: #5AF9A5;
    display: block;
    float: left;
    font-size: 1.9em;
    font-weight: bold;
    padding: 70px 6%;
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
    width: 100%;
}
#first-page-boxes a:hover {
  background-color: rgba(255, 190, 0, 0.9);
  box-shadow: 1px 1px 30px rgba(255, 255, 100, 0.7) inset, 0px 0px 50px rgba(255, 243, 8, 0.6);
  color: #333333;
  text-shadow: 0 0 8px #FFFFcc;
}
#first-page-boxes a.deftero:hover {
  background-color: rgba(0, 255, 255, 0.7);
  box-shadow: 1px 1px 30px #64FFFF inset, 0px 0px 50px rgba(0, 252, 234, 0.6);
}
#first-page-boxes a.trito:hover {
  background-color: rgba(185, 255, 0, 0.9);
  box-shadow: 1px 1px 30px #D1FF75 inset, 0px 0px 50px rgba(74, 254, 30, 0.6);
}
#first-page-boxes a.tetarto:hover {
  background-color: rgba(255, 145, 51, 0.7);
  box-shadow: 1px 1px 30px #ffdd00 inset, 0px 0px 50px rgba(255, 182, 8, 0.6);
}

#first-page-boxes a {
-webkit-transition: 700ms cubic-bezier(0.395, 0.000, 0.175, 1.000);
   -moz-transition: 700ms cubic-bezier(0.395, 0.000, 0.175, 1.000);
    -ms-transition: 700ms cubic-bezier(0.395, 0.000, 0.175, 1.000);
     -o-transition: 700ms cubic-bezier(0.395, 0.000, 0.175, 1.000);
        transition: 700ms cubic-bezier(0.395, 0.000, 0.175, 1.000); /* custom */
}

.node-content p.first-page-text {
    color: #9EFFE4;
    font-size: 13px;
    font-weight: bold;
    padding: 27px 0 14px 45px;
    opacity: .62;
    text-shadow: 2px 2px 7px #000;
}
.node-content p.first-page-text:hover {
    opacity: .87;
    text-shadow: 4px 4px 12px #000;
}
.node-content p.first-page-text {
-webkit-transition: 900ms cubic-bezier(0.395, 0.000, 0.175, 1.000);
   -moz-transition: 900ms cubic-bezier(0.395, 0.000, 0.175, 1.000);
    -ms-transition: 900ms cubic-bezier(0.395, 0.000, 0.175, 1.000);
     -o-transition: 900ms cubic-bezier(0.395, 0.000, 0.175, 1.000);
        transition: 900ms cubic-bezier(0.395, 0.000, 0.175, 1.000); /* custom */
}

@media only screen and (max-width: 580px) {
    #container {
        border: 0;
    }
    #primary {
        text-align: center;
    }
    #first-page-boxes ul li {
        width: 100%;
    }
    #first-page-boxes a:link,
    #first-page-boxes a:visited {
        width: 100%;
        padding: 46px 6%;
    }
}

@media only screen and (max-width: 480px) {
    #main-content,
    .page-node-3 #main-content {
      margin: 0 12px;
    }
    #nav {
      min-width: unset;
      width: 100%;
      left: 0;
      height: auto;
    }
    #nav ul.primary-links {
      margin: 4px 0;
      text-align: center;
      width: 100%;
    }
    #nav .primary-links li {
      display: inline-block;
      float: none;
      margin: 4px 1px;
    }
    #nav .primary-links li a {
      margin: 0;
      font-size: 12px;
    }
    #nav .primary-links li.active-trail a {
    }
}
