/* $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.
 */

/**********************************************************
 *              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
 */


#genesis-1c .two-sidebars  .content-inner {margin      : 0 260px;}
#genesis-1c .sidebar-left  .content-inner {margin-left :   240px; margin-right:10px;}
#genesis-1c .sidebar-right .content-inner {margin-right:   260px;}
#genesis-1c #sidebar-left  {width: 230px; margin-left: -100%;}
#genesis-1c #sidebar-right {width: 230px; margin-left: -230px;}

/************************ FRONT PAGE ****************************************************/
#genesis-1c .front.two-sidebars  .content-inner {margin      : 0 0 0 510px;}
#genesis-1c .front.sidebar-left  .content-inner {margin-left :   510px;}
#genesis-1c .front.sidebar-right .content-inner {margin-right:   0px;}
#genesis-1c .front #sidebar-left  {width: 410px; margin-left: -100%;}
#genesis-1c .front #sidebar-right {width: 0px; margin-left: -0px;}

.front #main-content { background: #fff; padding-top:0; }

.front #main-content h1 {
color:#81962D;
padding-top: 20px;
}



/*****************************************************************************************/

#container {
  width: 100%;     /* Width for IE6 */
  padding-top:0px;
  background: #fff url('../images/header-back.jpg') repeat-x;
}
body > #container {
  width: 100%;      /* Width for all other browsers */
  max-width: 100%; /* set a maximum width */
  min-width: 100%; /* set a minimum width */
}

body.admin-menu {
padding-top:10px;
}

/* Column wrappers */
#columns {
  width: 960px;
  margin: 0 auto;
  display:block;
}

.not-front .columns-inner {padding:0px;}

/* Content wrappers */
.not-front #content-column {
margin:0;
}

.section-search .not-front #content-column {
background: #fff;
margin:0;
padding:0px;
}

.section-search .not-front #content-column .content-inner {
margin:0;
}

.content-inner {}

/* Main content wrappers*/
#main-content {
padding-top:0px;
}
#content {
padding-top:40px;
}
.content-inner {
}

.local-tasks {
    margin-bottom: 0;
}

/**********************************************************
 *                       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 {}


#page {
  background: none;
  padding-top:0px;
  margin: 0;
  padding-bottom:20px;
}

.not-front #page {
  background: url('../images/title-back.jpg') repeat-x;
  padding-top:0px;
  margin: 0;
}

.front #page {
  background: url('../images/banner-back.jpg') repeat-x;
}

.front h1 {
display:none;
}


.not-front.page-node-27 #page {
  background: url('../images/gallery-back.jpg') repeat-x;
}

.page-node-27 #content {
  padding-top: 9px;
}

.page-node-27 .view-content {
  padding-bottom: 70px;
}

.page-node-27 table.views-view-grid td.col-2 {
  padding: 0 100px;
}

.page-node-27 .local-tasks {
  margin-bottom: 0px;
  margin-top: -90px;
  float:right;
}

/* Secondary content is a full width region between 
   the header and the main columns. */
#secondary-content {
  background: none;
  text-align:center;
  width:960px;
  margin: 0px auto;
  padding: 0px;
  background: url('../images/page-top.jpg') repeat-x;
}
#secondary-content .region-inner {
  padding: 0px;
  text-align:left;
  margin: 0 auto;
}

#secondary-content .block-content img{
  text-align:left;
  margin: 0 auto;
  vertical-align:bottom;
}

#secondary-content .block {
  margin: 0px;
  height:64px;
}

#secondary-content .block h1 {
margin:0;
padding:0;
margin-left: 30px;
text-shadow: 1px 1px 1px #fff;
line-height:64px;
font-family:arial;
font-weight:normal;
font-size:24px;
}

#page-bottom {
  background: none;
  padding:0px;
  margin: 0px
}

/* 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 { padding-top: 20px;}


/**********************************************************
 *                      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 {
  padding: 0px;
}

#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 {
   text-align: right; /* LTR */
}

/* 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 {
  height: 127px;
  width:960px;
  margin:0 auto;
  padding:0;
}

/* #branding wraps #logo, #site-name and #site-slogan. */
#branding {
  float: left; /* LTR */
  clear:none;
}

/* 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 {
  height: 95px;
  width: 184px;
  margin-top:10px;
  margin-left: 0px;
}

#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:link    {}
#site-name a:visited {}
#site-name a:hover   {}
#site-name a:focus   {}
#site-name a:active  {}

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

#slogan-inner {
  padding-top: 6px;
}

#header-blocks {
float:right;
}

#header-blocks #block-block-3.block {
margin: 20px 0 0 0;
}

#header-blocks #block-block-3 h5 {
color: #fff;
text-align:center;
font-size: 20px;
}

/**********************************************************
 *    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 */
  margin-top:9px;
}

/* Reset form element margins. */
#search-theme-form {
  margin: 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 {
height:26px;
}

#search-theme-form label {}
#search-theme-form input.form-text {
background: url('../images/search-back.png') no-repeat;
border:0;
width: 168px;
height:26px;
padding: 0 5px;
line-height:26px;
margin:0;
vertical-align:top;
}
#search-theme-form div.form-item {
margin-top:0;
margin-bottom:0;
vertical-align:top;
}
#search-theme-form .form-submit {
margin:0;
}

#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 {
  height:42px;
  margin: 0px;
  padding: 0;
  text-align:center;
  background: url('../images/menu-back.jpg') repeat-x;
}

#nav .region-inner {
 width:960px;
 margin: 0 auto;
 text-align:left;
}

/**
 * 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 {}

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

/* Modify the margin to set tab spacings. */
#nav .primary-links li {
  /*float: left;*/
  display:inline;
  line-height: 2;
  list-style: none;
  margin: 0px;

}

#nav .primary-links li a {
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  display:block;
  padding: 0 10px;
  margin-right: 5px;  
}

/* Set pseudo class styles. */
#nav .primary-links li a:hover {
  background: #7F5519;
}
#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: #7F5519;
 }


/**
 * 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 {}

/**********************************************************/

#block-views-banner-block_1 {
  height:244px;
  overflow:hidden;
}

/**********************************************************
 *                      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: 5px 0 0;
  font-size:11px;
}


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


/**********************************************************
 *                    H1 Page Title
 **********************************************************/
/* The main title on each page. */
.not-front h1#page-title {
display:block;
color: #58585A;
margin:0;
padding:0;
height: 82px;
line-height:82px;
font-size: 26px;
}


/**********************************************************
 *                     Pager 
 **********************************************************/
/* The first 2 classes provide the base pager styles. */

.item-list ul.pager    {
  clear: both;
  margin:20px auto 10px;
  padding: auto;
  background: none;
  text-align:center;
  float:left;
  position:relative; 
  left:50%;

}
.item-list ul.pager li {

  margin: 5px;
  padding: 0px;
  float:left;
  position:relative; 
  right:50%;

}

/* Theme the various states of pager links. */
.item-list ul.pager li a {
  border: 1px solid #ccc;
  margin: 0px;
  padding: 5px 10px;
  text-decoration:none;
  color: #709FCB; 
  display:block;
  
}



/* Note: .pager-current is for the current page. */
.item-list ul.pager li.pager-item     {


}
.item-list ul.pager li.first          {
  clear: left;

}
.item-list ul.pager li.last           {

  clear:right;
}
.item-list ul.pager li.pager-current  {
  border: 1px solid #ccc;
  padding: 5px 10px;
  background:#6598C7;
  color: #fff;
}
.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-first a,
.item-list ul.pager li.pager-last a {
  background: #e5e5e5;
}

.item-list ul.pager li.pager-previous a,
.item-list ul.pager li.pager-next a     {
  background: #eee;

}

.item-list ul.pager li a:hover   {
  text-decoration:none;
  color: #825420; 
  background: #fff;
}


/**********************************************************
 *               Footer, Footer Message
 **********************************************************/
#foot-wrapper {
  margin: 0;
  padding: 0;
  background: url('../images/footer-back.jpg') repeat-x;
  color: #fff;
  height: 264px;
  font-size: 10px;
}

#foot-wrapper h2 {
  font-size: 12px;
  margin: 4px 0 30px;
  color: #fff;
  height: 33px;
  line-height:35px;
  text-transform:uppercase;
  font-weight:normal;
}

#footer {
  width: 960px;
  margin: 0 auto;
  overflow:hidden;
}

#footer .region-inner {
  margin-right:-300px;
  float:left;
}

#footer-message {}

#footer a, 
#footer-message a {
  color: #fff;
}

#footer .block {
  margin-right: 0px;
  float:left;
  clear:none;
}

#footer .block table, #footer .block tbody, #footer .block tr {
  margin: 0px;
  padding: 0px;
}

#footer .block table, 
#footer .block tbody, 
#footer .block tr, 
#footer .block td {
  border: 0px;
}

#block-menu_block-1 {
margin: 0 10px 0 60px;
}

#footer .menu-block-1 ul {
width: 575px;
margin: 0;
}

#footer .menu-block-1 ul ul {
width: auto;
margin: 8px 0 0;
}

#footer .menu-block-1 ul ul ul {
width: auto;
margin: 0 0 0 10px;
list-style:disc;
}

#footer .menu-block-1 ul li {
float:left;
display:block;
width: 180px;
margin: 0 10px 0 0;
padding:0;
font-size: 12px;
}

#footer .menu-block-1 li li {
float:none;
margin: 0;
font-size: 10px;
}

#footer .menu-block-1 li li li {
float:none;
display:list-item;
margin: 0 0 0 5px;
font-size: 10px;
list-style:disc;
}

#footer .menu-block-1 li a {
text-transform:uppercase;
text-decoration:none;
padding-bottom: 2px;
border-bottom: 1px solid #A4A5A9;
}

#footer .menu-block-1 li li a {
text-transform: none;
text-decoration: none;
border:0;
padding:0;
}

#footer .menu-block-1 li a:hover,
#footer a:hover {
color:#D3E973;
}

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


/************************************************************
*                 flickr
*************************************************************/

.flickr-photo-img {
  float: left;
  margin: 0 7px 7px 0;
}





/************************************************************
*                  MAIN MENU
*************************************************************/

.sf-menu {
margin:0;
}

ul.sf-menu,
ul.sf-menu ul {
list-style: none;
padding: 0 0 0 2px;
float:left;
margin: 0;
height:42px;
background: url('../images/menu-div.jpg') no-repeat;
/* border-top: 1px solid #ccc; */
}

.sf-menu li:hover, .sf-menu li.sfHover, .sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
    background: none repeat scroll 0 0 transparent;
    outline: 0 none;
}

ul.sf-menu li,
ul.sf-menu li:hover,
ul.sf-menu li.sfHover {
border-right: 0px;
border-top: 0;
float: left;
margin: 0;
padding: 0 1px 0 0;
height:42px;
background: url('../images/menu-div.jpg') no-repeat right top;
}

ul.sf-menu li li,
ul.sf-menu li:hover li,
ul.sf-menu li.sfHover li {
border-right: 0px;
border-top: 0;
float: left;
margin: 0;
padding: 0px;
height: auto;
background: none no-repeat right top;
}

ul.sf-menu li.last {
/*border: 0px;*/
}


ul.sf-menu li a {
/*height: 36px;*/
font-size: 13px;
padding: 0 10px;
margin: 0px;
display: block;
height:42px;
line-height:42px;
color: #fff;
font-weight:normal;
background: transparent;
border: 0;
}

ul.sf-menu li a:visited {
color: #fff;
}

ul.sf-menu li a:hover, 
ul.sf-menu li.sfHover a,
ul.sf-menu li.active-trail a {
background: url('../images/menu-hover.jpg') repeat-x;
text-decoration: none;
border: 0;
}

ul.sf-menu li a.active {
background: url('../images/menu-hover.jpg') repeat-x;
border: 0;
}


/* Sub Menu Placement and border */
ul.sf-menu li ul {
border: 0;
border-top: 0px solid transparent; 
margin:13px 0 0;
padding: 0;
left: 0px;
}


/* Sub Menu width */
ul.sf-menu li ul li {
width: 160px;
margin: 0;
padding-left: 0px;
left: 0px;
}

ul.sf-menu li ul li ul {
left: 160px;
top: -3px;
padding-left: 0px;
margin:0 0 0 0px;
}

ul.sf-menu li ul li ul li {
border-left: 1px solid #fff;
}

/******************************
HORIZONTAL (down) menus
******************************/

/* Sub Menu borders */
ul.sf-menu li ul li {
border-top: 0px solid #f5f5f5;
border-bottom: 1px solid #d5d5d5;
border-left: 0px solid #d5d5d5;
border-right: 0px solid #d5d5d5;
background:#6B6C6E;
padding:0;
height:auto;
}

ul.sf-menu li ul li a,
ul.sf-menu li.sfHover ul li a,
ul.sf-menu li.active-trail ul li a {
background: none;
padding: 3px 10px;
line-height:normal;
margin: 0px;
text-align:left;
height:auto;
font-weight:normal;
font-size:12px;
background:#6B6C6E none;
}

ul.sf-menu li ul li a:hover,
ul.sf-menu li.sfHover ul li a:hover {
background: #879C37;
color: #fff;
}

ul.sf-menu li ul li a.active {
background: #879C37;
color: #fff;
}




