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

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

/**
 * Remove unused styles for performace.
 */
	
/* Layout override */
/**
 * #genesis-1c
 * Unit:   px
 * Layout: Standard 3 col; left/content/right
 */

#genesis-1c .sidebar-right .content-inner {margin-right:330px;}
#genesis-1c #sidebar-right {width: 300px; margin-left: -330px;}


/**********************************************************
 *              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-[path-part] class from it. If you emulate
 * site sections using the Pathauto module this can be a 
 * powerful way to style site sections.
 */
/* .section-[path-part] {}  replace [path-part] */

/* 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 example
 * below. 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!
 */
/* .page-[example-node-path] {}  replace [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 {
  width: 980px;     /* Width for IE6 */
}
body > #container {
  width: 100%;      /* Width for all other browsers */
  max-width: 980px; /* set a maximum width */
  min-width: 760px; /* set a minimum width */
  /*background-color: #E8E0D8; *//* NRD: Should only show for #footer-message and #attribution */
  background-color: #A08F80; /* NRD: Should only show for #footer-message and #attribution */
}

/* Column wrappers */
#columns {background: #FFF;}
.columns-inner {}

/* Content wrappers */
#content-column {}
.content-inner {padding:30px;}

/* Main content wrappers*/
#main-content {padding-left: 70px;}

/* Zero main content padding. */
.section-admin      #main-content,
.section-user       #main-content,
.section-tracker    #main-content,
.section-aggregator #main-content,
.section-forum      #main-content,
.section-comment    #main-content,
.page-node-add      #main-content,
.page-node-edit     #main-content,
.page-node-delete   #main-content {
  padding-left: 0;
}

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

/**
 * 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, 
   usefull for displaying small banners. */
#header-blocks {}

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

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

/* Content top and bottom are above and below the main content, 
   within the main content column. */
#content-top {}
#content-bottom {
  padding-top: 8px; /* NRD */
  margin-top: 24px; /* NRD */
  border-top: 6px solid #EFE8E0; /* NRD */
}


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

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


/*********************************************************
*                     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: center;
}
#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: #DEF1F9;
  color: #35383D;
  height: 1.5em;
  overflow: visible;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  text-decoration:none;
}



/**********************************************************
 *                 Header Elements
 **********************************************************/
/* #header wraps #branding, #search-box-top and #header-blocks. */
#header {
                /*background:transparent url(../images/logo-symbol.png) no-repeat scroll left 10px;
		padding-bottom:30px;
		padding-left:70px; NRD */

                /*background:transparent url(../images/logo-complete.png) no-repeat scroll left 10px; *//* NRD */
                /*padding: 40px 0 50px 130px; *//* NRD */
                /*height: 60px;*/
                
                /* margin-left: -30px; */
                /* background:transparent url(../images/nrd-bridge+grasses-sketch-v2-620px.png) no-repeat scroll left top; *//* NRD */
                /* padding: 40px 0 50px 130px; *//* NRD */
                /* height: 110px; */

                /* margin-left: -30px; */
                /* background:transparent url(../images/nrd-bridge+grasses-sketch-v2-620px.png) no-repeat scroll left top; *//* NRD */
                /* padding: 40px 0 50px 130px; *//* NRD */
                /* height: 110px; */

                /*
                background:transparent url(../images/logo-colors4/nrd_logo_norm.gif) no-repeat scroll left top;
                padding: 0;
                margin: 0 0 0 48px;
                height: 96px;
		*/

		/*		
                background:transparent url(../images/logo-colors5/nrd_logo_norm_alt.gif) no-repeat scroll left top;
                padding: 0;
                margin: 0 0 0 14px;
                height: 120px;
		*/

		/*
                background:transparent url(../images/logo-colors5/nrd_logo_norm_alt_3.gif) no-repeat scroll left top;
                padding: 0;
                margin: 0 0 0 14px;
                height: 130px;
		*/
		
                background:transparent url(../images/logo-colors5/nrd_logo_norm_alt_3c.gif) no-repeat scroll left top;
                padding: 0;
                margin: 0 0 0 14px;
                height: 135px;

                
		/* border-bottom:6px solid #E6F1F3; NRD */
		/* border-bottom: 6px solid #A08F80; *//* NRD 2 */
		/*border-bottom: 6px solid #EFE8E0; *//* NRD */
		margin-bottom:30px;
		overflow:hidden;
}


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

/* 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-family:"Arial";
		font-size:55px;
		font-weight:bold;
		letter-spacing:-3px;
		line-height:50px;
		padding-bottom:5px;
		text-transform:lowercase; NRD */

		
		/*font-family:"Arial";
		font-size: 55px;
		font-weight:bold;
		letter-spacing:-5px;
		line-height:50px;
		padding-bottom:5px;
		text-transform:lowercase; NRD 2 */
		display: none;
		
}
/* Override default pseudo class styles. */
#site-name a:link,
#site-name a:visited,
#site-name a:hover   {color:#272D36;text-decoration:none;}
#site-name a:focus   {}
#site-name a:active  {}

/* Site slogan. */
#site-slogan {
		color:#2ABADA;
		display:block;
		font-family:"Arial";
		font-size:14px;
		/*font-weight:bold;NRD*/
		letter-spacing:-1px;
		line-height:14px;
}


/**********************************************************
 *    Search box, Advanced search form, Search results
 *          For the search block see blocks.css
 **********************************************************/
	
#search-rss {
		/* background:#3D96D5 url(../images/search-bkg.png) no-repeat scroll left bottom; NRD */
		background-color: #484840; /* NRD */
		overflow:hidden;
		padding:15px;
		right:0;
}

/* Reset form element margins and float the search form. */
#search-theme-form {
		/* background:#2ABADA; NRD */
		background-color: #3F3F37; /* NRD */
  /* border:1px solid #3AC6E5; NRD */
                border: 1px solid #4F4F47; /* NRD */
  padding:6px 10px 10px;
		margin-bottom: 5px;
}

/* 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 {
  position: absolute;
  top: -9999em;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
#search-theme-form input {}
#search-theme-form .form-item {}
#search-theme-form .form-submit {
		background:transparent url(../images/search-button.png) no-repeat scroll 0 0;
		border:medium none;
		cursor:pointer;
		height:24px;
		margin-left:-1px;
		width:26px;
		
}

#edit-search-theme-form-1 {
		background:transparent url(../images/search-input.png) no-repeat scroll 0 0;
		border:medium none;
		color:#666666;
		margin-right:2px;
		padding:5px 3px 5px 65px;
		width:145px;
		float: left;
}

/* 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-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 {
  clear: both; 
  margin: 30px 0 0 0;
		/* background:#DEF1F9 none repeat scroll 0 0; NRD */
  background-color: #E8E0D8;  /* NRD */
		overflow:hidden;
		/* padding:10px 0 0 100px; NRD */
		padding:6px 0 0 100px; /* NRD */
		
}

/**
 * Primary Links Style
 * Example styles to get you started.
 */
#nav .primary-links {
  margin: 0;
  padding: 0;
}

/* Modify the margin to set tab spacings. */
#nav .primary-links li {
  display: inline;
  list-style: none;
  margin: 0;
  padding: 0;
		float:left;
		font-family:"Arial";
		/* font-size:14px; NRD */
		font-size:15px; /* NRD */
		font-weight:bold;
		height:28px;
		letter-spacing:-1px;
		line-height:15px;
}

#nav .primary-links li a,
#nav .primary-links li a:visited {
		color:#272D36;
		float:left;
		margin-right:5px;
		padding:4px 6px 10px;
		text-decoration: none;
}

/* Set pseudo class styles. */
#nav .primary-links li a:hover,
/* #nav .primary-links li a:focus {background: #fff; color:#0099cc; text-decoration: none;} NRD */
#nav .primary-links li a:focus {background: #fff; color:#3F3F37; text-decoration: none;}

#nav .primary-links li a:active {}


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

/* Active trail classes. */
#nav .primary-links li.active a {
  /* background:#272D36 url(../images/menu-on-bkg.png) repeat-x scroll center bottom; NRD */
  background:#272D36 url(../images/menu-on-alt-bkg.png) repeat-x scroll center bottom; /* NRD */
  color:#FFF;
}
#nav .primary-links li.active-trail {}
#nav .primary-links li.active-trail a {}


/**
 * Secondary Links Style
 */
#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;
  padding: 0;
}

#nav .secondary-links li a {
  padding: 0 1em;
  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 {
		margin:8px 0 16px 70px;
		width: 516px;
		/* padding: 24px 0 0 24px;  */
		/* position:relative; */
		/* top:-30px; */
		/* color: #3F3F37 */
		/* border-top: 6px solid #EFE8E0; *//* NRD */
		
		/* background-color: #efefe7; */
}

#breadcrumb a {
  text-decoration: none;
  /* background-color: #939598; */
  /* background-color: #E8E0D8; */
  color: #f0f0f0;
  padding: 4px;
}

#breadcrumb a {
  background-color: #5F5F57;
}
#breadcrumb a + a {
  background-color: #7F7F77;
}
#breadcrumb a + a + a {
  background-color: #9F9F97;
}


#breadcrumb a:hover {
		/* text-decoration: underline; NRD*/
		
}


/**********************************************************
 *                       Mission
 **********************************************************/
#mission-header-blocks  {
		/* background:#57ABE6 url(../images/about-bkg.png) no-repeat scroll left top; NRD */
		background:#A08F80 url(../images/sidebar-about-background-v2.png) no-repeat scroll left bottom; /* NRD */
/*		background-color: #A08F80; *//* NRD */
/*		background-color: #A08C56; *//* NRD */
		color:#EFE8E0; /* NRD */
		/* color: #3F3F37; *//* NRD */
/*		padding:20px 15px 15px; NRD */
		padding:20px 15px 15px; /* NRD */
		min-height: 100px;
		font-size: 0.9em; /* NRD */
}

#mission {
		/* background:#57ABE6; */ 
}

h2.mission {
  font-size:2.0em;
  font-weight: normal; /* NRD */
  letter-spacing:-1px;
}


/**********************************************************
 *                    H1 Page Title
 **********************************************************/
/* The main title on each page. */
h1#page-title {
/* NRD: This should match .node .title in nodes.css
		color:#272D36;
		font-family:"Helvetica";
		font-size:34px;
		font-weight:normal;
		letter-spacing:-1px;
		line-height:34px; NRD */
  color:#272D36;
  font-family:"Helvetica, Arial";
  font-size:34px; 
  /*font-weight:bold;NRD*/
  font-weight:normal;
  letter-spacing:-2px; 
  line-height: 44px;
  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
 **********************************************************/
#footer,
#footer-message {
  clear: both;
}

#footer {}
#footer-message {}

#footer a, 
#footer-message a {}


/**********************************************************
 *                 RSS Feed Icon
 **********************************************************/
#rss {
		background:transparent url(../images/SynIco.png) no-repeat scroll left center;
		font-family:'Arial';
		font-size:16px;
		font-weight:bold;
		letter-spacing:-1px;
		line-height:16px;
		list-style-type:none;
		margin:0 5px 0 0;
		padding:3px 0 3px 15px;
}

#rss a {color:#FFCC66; text-decoration: none;}
#rss a span {color: #fff;}
#rss a span:hover {text-decoration: underline;;}

#footer-message {
		color:#1C3E4D;
		/* font-size:11px; NRD */
		font-size: 0.9em; /* NRD */
		margin:0 0 0 100px;
		/*padding: 0; NRD */
		padding:10px 0 10px 0; /* NRD */
}

#attribution {
  color:#6C8E9D;
  padding-top:2px;
		margin:0 0 0 100px;
		font-size:11px;
}
#attribution p {}
#attribution a {color:#6C8E9D; text-decoration: none;}
#attribution a:hover {text-decoration:underline;}

