/**
 * @file
 * Layout Styling (DIV Positioning)
 *
 * 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
 */

html { /** LR ** force scroll-bar so banner won't move on short pages */
  overflow-y: scroll;
}

/*
 * Body
 */
body { /** LR **/
  background-color: #c08548; /******** page background color (also footer) ********/
}

#page-wrapper, /** LR **/
.region-page-closure {
  min-width: 760px; /* (was 960) */
  max-width: 3000px; /* (added) */
}

#page {
}

/*
 * Header
 */
#header {
}

#header .section { /** banner ** LR **/
  background-color: #a0c86f; /******** header background color ********/
  text-align: center; /* center the logo */
  border-bottom: 1px solid black; /******** header separator ********/
}

#logo { /** NOTE: OVERRIDES PAGES.CSS ** LR **/
  float: none; /* allow logo to be centered */
  margin: 0;
  padding: 0;
}

#search-box {
}

#search-block-form { /** LR **/
  padding-bottom: 10px;
}

#header-table table { /* a table is used to center the top buttons */
  margin: 0 auto;
}

#header-table .block ul {
  margin: 0;
}

.region-header {
  clear: both; /* Clear the logo */
}

.region-highlight { /** yellow-box ** LR **/
  background-color: yellow;
  width: 480px;
  padding: 0;
  margin: 0 auto 10px auto;
  border: 1px solid;
  text-align: center;
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
  position: relative;
}

#main { /**** sidebar/main background color image ** LR ****/
/**** LR **** Hide sidebar separator **** background-image: url(../images/EHS-page-background3d.png); *****/
  background-color: #e4d68c; /******** body color if no image ********/
}

/*
 * Content
 */
#content {
  float: left; /* LTR */
  width: 100%;
  margin-left: 0; /* LTR */
  margin-right: -100%; /* LTR */ /* Negative value of #content's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #content .section. */
}

#content .section,
.no-sidebars #content .section {
  margin: 0;
  padding: 0;
}

#content-area .node-teaser { /** LR **/
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dotted; /******** main content separator ********/
}

.sidebar .block { /** LR **/
  margin-top: 10px;
  border-bottom: solid 1px; /******** sidebar block separator ********/
}

.sidebar .block.last { /** LR **/
  padding-bottom: 10px;
  border-bottom: none; /* (no separator below the last block) */
}

.sidebar-first #content .section { /** LR ** was 200 and 0 **/ 
  padding-left: 250px; /* LTR */ /* The width + left margin of .region-sidebar-first. */
  padding-right: 10px; /* LTR */
}

.sidebar-second #content .section { /** LR ** was 0 and 200 **/
  padding-left: 10px; /* LTR */
  padding-right: 250px; /* LTR */ /* The width + right margin of .region-sidebar-second. */
}

.two-sidebars #content .section { /** LR ** was 200 **/
  padding-left: 250px; /* The width + left margin of .region-sidebar-first. */
  padding-right: 250px; /* The width + right margin of .region-sidebar-second. */
}

.ical-link, .feed-icons { /** LR ** do not display **/
  display: none;
}

/*
 * Navigation
 */
#navigation {
  float: left; /* LTR */
  width: 100%;
  margin-left: 0; /* LTR */
  margin-right: -100%; /* LTR */ /* Negative value of #navigation's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #navigation .section. */
  height: 2.3em; /* The navigation can have any arbritrary height. We picked one
                    that is the line-height plus 1em: 1.3 + 1 = 2.3
                    Set this to the same value as the margin-top below. */
}

.with-navigation #content,
.with-navigation .region-sidebar-first,
.with-navigation .region-sidebar-second {
  margin-top: 2.3em; /* Set this to the same value as the navigation height above. */
}

#navigation .section {
}

#navigation ul /* Primary and secondary links */ {
  margin: 0;
  padding: 0;
  text-align: left; /* LTR */
}

#navigation li /* A simple method to get navigation links to appear in one line. */ {
  float: left; /* LTR */
  padding: 0 10px 0 0; /* LTR */
}

/*
 * The active item in a Drupal menu
 */
.block li a.active { /** LR ** overrides navigation.css **/
  text-decoration: none;
  font-weight: bold;
  color: #000;
}

.block-nice_menus .content li.active-trail a { /** LR **/
  background-color: #eeeeee; /******** button active color ********/
  color: #000;
}

/*
 * Views_Slideshow style overrides ** LR **
 */
.views_slideshow_singleframe_pager div a img { /** LR ** make images 500:300 **/
  width: 100px;
  height: 60px;
}

a.views_slideshow_pause, a.views_slideshow_play { /** LR ** separate the controls **/
  padding: 20px;
}

#block-views-HomePageSlideshow-block_2 {/** LR ** home-page slideshow captions **/
  font-size: 80%;
  /* line-height: 120%; */
  text-align: center;
}

/*
 * First sidebar
 */
.region-sidebar-first { /** LR ** was 200 ***/
  float: left; /* LTR */
  width: 250px;
  margin-left: 0; /* LTR */
  margin-right: -250px; /* LTR */ /* Negative value of .region-sidebar-first's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-first .section. */
}

.region-sidebar-first .section { /** LR ** add left margin **/
  /* background-color: #b5df81; ******** sidebar color if no image ********/
  margin: 0 10px 0 10px; /* LTR */
  padding: 0 10px 0 0;
  /* border-right: 1px solid black; ******** left sidebar separator ********/
}

/*
 * Second sidebar
 */
.region-sidebar-second { /** LR ** was 200 ***/
  float: right; /* LTR */
  width: 250px;
  margin-left: -250px; /* LTR */ /* Negative value of .region-sidebar-second's width + right margin. */
  margin-right: 0; /* LTR */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-second .section. */
}

.region-sidebar-second .section { /** LR **/
  margin: 0 10px 0 10px; /* LTR */
  padding: 0 0 0 10px;
  /* border-left: 1px solid black; ******** right sidebar separator ********/
}

/*
 * Footer
 */
#footer { /** LR **/
  border-top: solid 1px black; /******** footer separator ********/
  font-size: .75em;
  line-height: 1.25em;
}

#footer .section {
}

/*
 * Closure
 */
.region-page-closure /* See also the #page-wrapper declaration above that this div shares. */ {
}

/*
 * Prevent overflowing content
 */
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer,
.region-page-closure {
  overflow: visible;
  word-wrap: break-word; /* A very nice CSS3 property */
}

#navigation {
  overflow: hidden; /* May need to be removed if using a dynamic drop-down menu */
}

/*
 * This is the CSS for Nice_Menus (replaces nice_menus_default.css)
 */

/* Left button-bar styling */
#nice-menu-1 {
  padding-left: 15px;
  font-size: 120%;
}

ul.nice-menu-right li.menuparent a:after {
  content: url(../images/arrow-right.png);
}

ul.nice-menu-right li.menuparent li a:after {
  content: none;
}

/* Top button-bar styling */
#nice-menu-2 {
  padding-left: 0;
}

ul.nice-menu-down li.menuparent a:after {
  content: url(../images/arrow-down.png);
}

ul.nice-menu-down li.menuparent li a:after {
  content: none;
}

/** Global CSS for ALL menu types **/

ul.nice-menu,
ul.nice-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.nice-menu li {
  padding: 0;
  margin: 0;
  background-image: none;
}

ul.nice-menu a {
  padding: 0.3em 5px 0.3em 5px;
  margin: 3px;
  text-align: center;
  background-color: white;
  border: 1px solid black;
}

ul.nice-menu ul {
  top: 1.8em;
  left: -1px;
  margin-right: 0;
}

ul.nice-menu ul li {
  width: 190px;
}

/** VERTICAL (left/right) menus **/

/* (This is the default width of all vertical menus) */
ul.nice-menu-right, ul.nice-menu-left,
ul.nice-menu-right li, ul.nice-menu-left li {
  width: 190px;
}

/* VERTICAL menus where submenus pop RIGHT (default). */
ul.nice-menu-right ul {
  width: 190px;
  left: 190px;
  top: -1px;
  background-color: white;
}

ul.nice-menu-right ul ul {
  width: 190px;
  left: 190px;
  top: -1px;
  background-color: white;
}

/* VERTICAL menus where submenus pop LEFT. */
ul.nice-menu-left li ul {
  width: 190px;
  left: -195px;
  top: -1px;
  background-color: white;
}

ul.nice-menu-left li ul li ul {
  width: 190px;
  left: -195px;
  top: -1px;
  background-color: white;
}

ul.nice-menu-left a, ul.nice-menu-left ul a {
  padding-left: 14px; /* ?? */
}

/** HORIZONTAL (down) menus **/

ul.nice-menu-down {
  border: 0;
}

ul.nice-menu-down li {
  float: left;
}

ul.nice-menu-down li li {
  background-color: white;
}

ul.nice-menu-down ul {
  left: 0;
}

ul.nice-menu-down ul li {
  clear: both;
  background-color: white;
}

ul.nice-menu-down li ul li ul {
  left: 190px;
  top: -1px;
}

/*
 * If a div.clearfix 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-wrapper div.
 */
/*
#page-wrapper {
  overflow-y: hidden;
}
