/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */

/**
 * HTML5 display definitions
 */

/* Correct `block` display not defined in IE 8/9. */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

article, .not-front #content .view{
 padding: 0 1em;}

aside.sidebars .block .view-content {
 padding: 10px 5px;}
 
nav.header-menu{
  background: blue;
}

/* Correct `inline-block` display not defined in IE 8/9. */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 */

/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
html {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; /* 1 */

  /* Delete all but one of the following font-size declarations: */
  /* Use a 13px base font size. 16px x 81.25% = 13px 
  font-size: 81.25%; /* 3 */
  /* Use a 12px base font size. 16px x 75% = 12px 
  font-size: 75%;

  /* Use a 14px base font size. 16px x .875 = 14px */
  font-size: 87.5%; /* 3 */
  /* Use a 16px base font size. 
  font-size: 100%; /* 3 */

  -ms-text-size-adjust: 100%;     /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */

  /* Establish a vertical rhythm. */
  line-height: 1.5em;
}

/* Address `font-family` inconsistency between `textarea` and other form elements. */
button,
input,
select,
textarea {
  /**
   * The following font family declarations are available on most computers.
   *
   * A user's web browser will look at the comma-separated list and will
   * attempt to use each font in turn until it finds one that is available
   * on the user's computer. The final "generic" font (sans-serif, serif or
   * monospace) hints at what type of font to use if the web browser doesn't
   * find any of the fonts in the list.
   *
   * font-family: "Times New Roman", Times, Georgia, "DejaVu Serif", serif;
   * font-family: Times, "Times New Roman", Georgia, "DejaVu Serif", serif;
   * font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;
   *
   * font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
   * font-family: Tahoma, Verdana, "DejaVu Sans", sans-serif;
   * font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
   * font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;
   *
   * font-family: "Courier New", "DejaVu Sans Mono", monospace;
   */
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

/* Remove default margin. */
body {
  margin: 0;
  padding: 0;
}

.page-wrap{
  background: #EAF0F6;
  padding-bottom: 2em;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
a:link,
a:visited {
  color: #3366AF;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}
a:active {
}

/* Address `outline` inconsistency between Chrome and other browsers. */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
a:active,
a:hover {
  outline: 0;
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */

/* Set 1 unit of vertical rhythm on the top and bottom margin. */
p,
pre {
  margin: 1em 0;
}
blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.5em 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.5em; /* 3rem / 2em = 1.5em */
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.75em; /* 1.5rem / 2em = .75em */
  margin-bottom: 0.75em;
}

.node-type-blog h1.page__title, .node-type-press-release h1.page__title, .node-type-bay-crossings h1.page__title, .node-type-featured-stories h1.page__title {
  border: none;
}

h1.page__title {
  padding: 10px 10px 0 10px;
  border-top: 3px solid #375674;
  margin: 10px 0 25px 0;
  font-weight: 500;
}

h2 {
  font-size: 1.5em;
  line-height: 2em; /* 3rem / 1.5em = 2em */
  margin-top: 1em; /* 1.5rem / 1.5em = 1em */
  margin-bottom: 1em;
}

h2.block__title.block-title {
  border-bottom: 1px solid #375674;
  color: #405883;
  font-size: 100%;
  padding: 5px 5px 4px 10px;
  text-transform: uppercase;
  border-top: 3px solid #375674;
  font-weight: 600;}
  
h3 {
  font-size: 1.17em;
  line-height: 1.28205em; /* 1.5rem / 1.17em = 1.28205em */
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;}
  
.view-content .views-row h3, ol.search-results h3 {
  margin-top: 0;
  margin-bottom: .2em;}
  
h4 {
  margin: 0;
  font-weight: 600;}
  
.not-front h4 {
  line-height: 1.5em;
  padding: 7px 0 7px 2px;
  border-top: 3px solid #375674;
  border-bottom: 1px solid #375674;
  margin: 10px 0;
  color: #ACACAC;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 600;
}
h5 {
  font-size: 0.83em;
  line-height: 1.80723em; /* 1.5rem / 0.83em = 1.80723em */
  margin-top: 1.80723em;
  margin-bottom: 1.80723em;
}
h6 {
  font-size: 0.67em;
  line-height: 2.23881em; /* 1.5rem / 0.67em = 2.23881em */
  margin-top: 2.23881em;
  margin-bottom: 2.23881em;
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
b,
strong {
  font-weight: bold;
}

/* Address styling not present in Safari 5 and Chrome. */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.5em 0;
}

/* Address styling not present in IE 8/9. */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
  line-height: 1.5em;
}

/* Improve readability of pre-formatted text in all browsers. */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Set consistent quote types. */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}

/**
 * Lists
 */

ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 7px;
}
dd {
  margin: 0 0 0 30px; /* LTR */
}

/* Address paddings set differently in IE 6/7. */
menu,
ol,
ul {
  padding: 0 0 0 30px; /* LTR */
}

/* Correct list images handled incorrectly in IE 7. */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Improve image quality when scaled in IE 7. */
  -ms-interpolation-mode: bicubic;

  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */

  /* Responsive images */
  max-width: 100%;
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

.pcp-image img {
  max-width: 244px;
  height: auto;}

/* Correct overflow displayed oddly in IE 9. */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
figure {
  margin: 0;
}

/**
 * Forms
 */

/* Correct margin displayed oddly in IE 6/7. */
form {
  margin: 0;
}

/* Define consistent border, margin, and padding. */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.5em 0.625em 1em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
  *margin-left: -7px; /* 3 */ /* LTR */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 90%; /* 2 */
  margin: 0; /* 3 */
  vertical-align: baseline; /* 4 */
  *vertical-align: middle; /* 4 */
  max-width: 100%; /* 5 */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
  *overflow: visible; /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
  *height: 13px; /* 3 */
  *width: 13px; /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Remove inner padding and border in Firefox 4+. */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

/* Drupal-style form labels. */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
  margin-top: 0.5em;
  margin-bottom: 0.5em;;
}
/** 
 * Views customizations
 */

#content-inner .views-field-title {
  font-size:1.4em;
  margin-bottom:1em;}
  
.left-group {
width:26%;
float: left;
}

.right-group {
  width:74%;
  float:right;
} 

#block-views-news-block-1 .right-group {
padding-top: 9px;
} 

.block  .views-field-timestamp, .block  .views-field-created, .block .views-field-created-1,
.block .view-front-teasers-bottom .views-field-phpcode-4, .block  .view-front-teasers-bottom .views-field-name{
  font-size:10px;
  line-height:6px;
  padding:5px 0;
  text-transform:uppercase;
  white-space:nowrap;}
  
#block-views-front-teasers-bottom-block-1 .views-field-created{
  padding:5px 0 1.2em 0;} 
  
.block .views-field-timestamp, .block  .views-field-created, .block  .views-field-created-1,
.block  .view-front-teasers-bottom .views-field-name{
  color:#777777;} 


#block-views-front-teasers-bottom-block-1,
#block-block-3,
#block-block-21,
#block-views-news-block-1,
#block-block-52{
  width: 49.5%;
  float: left;
}

#block-block-21{
  margin-bottom: .5em;
}

#block-block-52 img{
  margin: 1.2em 0 0 15px;
}

#block-views-front-teasers-bottom-block-1{
  margin-right: 1%;
}

.view-front-teasers-bottom .views-row, .view-E-Newsletter .views-row, 
.view-Bay-Crossings .views-row, 
.view-taxonomy-term .views-row, 
.view-Press-Releases .views-row,
.view-taxonomy-redirect .views-row,
.view-bk-in-the-news .views-row {
  border-bottom:1px solid #E0E0E0;
  padding: 1em 0;}

.view-News .views-row {
  border-bottom:1px solid #E0E0E0;
  padding: .5em 0;}  
  
#block-views-front-teasers-bottom-block-1 .views-field-title{
  font-weight: bold;
  margin-bottom: .5em;}
  
.views-row-last, 
.view-front-teasers-bottom .views-row-last, 
.view-News .views-row-last ,
.view-taxonomy-redirect .views-row-last{
  border-bottom:none;}
  
.view-taxonomy-redirect,
.view-front-teasers-bottom {
  margin-right: 1em;}

.pane-front-teasers-bottom{
  clear: both;}
  
.view-front-teasers-bottom.view-display-id-page_1 .views-row-1,
.view-taxonomy-redirect.view-display-id-page_1 .views-row-1 {
  border-top:none;
  padding-top: 0;}
  
 .views-field-field-source-value {
  font-size:12px;
  margin-right:0.75em;
  padding-right:0.75em;
}

.views-field-field-source-value{
  color:#A61700;
  font-style:italic;}
 
.view-front-teasers-bottom .views-field-blog_img {
  margin-left: 5px;}
/** 
 * Misc design features
 */  
#block-views-front-teasers-bottom-block-1{
  border-top: 3px solid #375674;}

.clear-block:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;}

.field .field-label {
  font-weight: normal;
}

aside.sidebars .views-row{
  margin-top: .5em;}  

#content .node-page img, #content .node-articles img, #content .node-blog img {
  -moz-border-radius: 3px 3px 3px 3px;
  margin-left: .8em;
  margin-right: .8em;
  padding: 4px;}

#block-views-related-content-block-1 .views-row{
  border-bottom: 1px dotted #D6D6B6;
  margin-bottom: .5em;
  padding-bottom: .5em;}
  
.view-Press-Releases .views-field-field-tag, .view-header .ot{
  font-style: italic;
  color: #A61700;
  margin: 5px 0 10px 0;}

.view-header .newsletter {
  background: none repeat scroll 0 0 #FFECB0;
  border: 3px solid #FFDD6F;
  padding: 10px;
  text-align: center;}

.view-bk-in-the-news .views-field-taxonomy-vocabulary-3  {
  margin-bottom: 10px;}

.view-bk-in-the-news .views-field-field-headline-1 {
  width: 100%;
  text-align: right;}  

.view-bk-in-the-news .views-field-field-headline-1  a{
  background: #ECEADD;
  color: #333333;
  margin-top: 7px;
  padding: 5px;
  font-size: 10px;
  text-transform: uppercase;}
  
ul.menu{
  padding: 0 0 0 5px;}  

.node-featured-stories .field-name-field-blog-image img{
  margin-left: 21px;}
  
#crm-container.crm-public .crm-section, .crm-section{
  margin-bottom: 6px;
  margin-top: 6px;}
  
/** 
 * Contact and social block - homepage
 */  
span.social{
  float: right;
  width: 50%;}
  
span.social, .meta, aside.sidebars .block .view-content, .menu-block-wrapper, table.tax-list a, #block-views-news-block-1 .views-field-item-title-url{  
font-size: 90%;}  
  
span.reporting{
  float:left;
  margin-top:0.2em;
  text-align: center;
  width:50%;} 

#block-block-3 .report{
  padding: 9px 0;}

#block-block-3.block{
  margin-bottom: 0;}  
  
input#rb,
input.form-submit,
.search-form input.form-submit,
.q-inner input.form-submit  {
background-image: -webkit-gradient(
	linear,
	left top,
	left bottom,
	color-stop(0, #FFFFFF),
	color-stop(0.67, #EDEDED)
);
background-image: -o-linear-gradient(bottom, #FFFFFF 0%, #EDEDED 67%);
background-image: -moz-linear-gradient(bottom, #FFFFFF 0%, #EDEDED 67%);
background-image: -webkit-linear-gradient(bottom, #FFFFFF 0%, #EDEDED 67%);
background-image: -ms-linear-gradient(bottom, #FFFFFF 0%, #EDEDED 67%);
background-image: linear-gradient(to bottom, #FFFFFF 0%, #EDEDED 67%);
border: 1px solid #CCCCCC;
cursor: pointer;
text-decoration: none;}

input#rb, 
.search-form input.form-submit{
text-transform: uppercase;}

input#rb{
padding: 7px 30px;}

.search-form input.form-submit{
padding: 7px;}

input#rb:hover, .search-form input.form-submit:hover, input.form-submit:hover, .q-inner input.form-submit:hover{
background-image: -webkit-gradient(
	linear,
	left top,
	left bottom,
	color-stop(0, #FFFFFF),
	color-stop(0.85, #E0E0E0)
);
background-image: -o-linear-gradient(bottom, #FFFFFF 0%, #E0E0E0 85%);
background-image: -moz-linear-gradient(bottom, #FFFFFF 0%, #E0E0E0 85%);
background-image: -webkit-linear-gradient(bottom, #FFFFFF 0%, #E0E0E0 85%);
background-image: -ms-linear-gradient(bottom, #FFFFFF 0%, #E0E0E0 85%);
background-image: linear-gradient(to bottom, #FFFFFF 0%, #E0E0E0 85%);}

#block-block-3 table{
  border-collapse: inherit;} 

#content-area span.social ul{
  margin:1.6em 0 0 1px;
  padding-left:0;
  text-align:left;}

span.social li{
  list-style:none;
  margin-bottom:0.9em;
  margin-left:5px;}

span.social li a{
  color:#4C647D;
  padding-bottom:3px;
  padding-left:30px;
  padding-top:3px;}
  
li.facebook a{
  background:url("/files/images/facebook.png") no-repeat scroll left center transparent;}
  
li.twitter a{
  background:url("/files/images/twitter.png") no-repeat scroll left center transparent;
  padding-left:20px;}

li.rss a{
  background:url("/files/images/rss.png") no-repeat scroll left center transparent;
  padding-left:20px;}  
/** 
 * Featured Campaigns block
 */  
table.tax-list {
  margin:0;
  width:100%;}

span.tax-icon {
  background:url("/files/images/bk_icons.gif") no-repeat scroll 22px 17px transparent;
  float:left;
  height:17px;
  margin-right:10px;
  width:22px;}

span.icon-vessel { background-position:0px 0px;}

span.icon-industry { background-position:-22px 0px;}

span.icon-fish { background-position:-44px 0px;}

span.icon-stormwater { background-position:-66px 0px;}

span.icon-sewage { background-position:-88px 0px;}

span.icon-toxic { background-position:-110px 0px;}

span.icon-delta { background-position:-132px 0px;}

span.icon-climate { background-position: -177px 0px;}
  
table.tax-list a{ 
  display:block;
  line-height:15px;
  padding:10px 0 9px 10px;}

table.tax-list {
  margin:0;
  width:100%;}

table.tax-list tr{
  border-bottom:1px solid #E0E0E0;
  padding:0;}
  
 table.tax-list tr.row-last{
  border-bottom:none;
  padding:0;}

/** 
 * Views Slideshow Block
 */    
.views_slideshow_cycle_teaser_section,
.views-slideshow-cycle-main-frame-row,
.views-slideshow-cycle-main-frame {
  height: 300px;
  width: 100% !important;
  z-index: 0;}
 
.views_slideshow_cycle_slide .views-field-body {
  background: #254E64;
  float: left;
  opacity: 0.85;
  padding: 10px 0;
  position: relative;
  top: -48px;
  width: 658px;}

span.views-field-view-node a, .more-link a{
  -moz-border-radius: 3px;
  font-size: 10px;
  opacity: 50;
  padding: 3px 5px;
  position: relative;
  text-transform: uppercase;
  background: #203845;
  color: #FFFFFF;}

.more-link a {
background: #D8E5F2;
color: #333333;
}

.more-link a:hover {
background: #D75A20;
text-decoration: none;
color: #ffffff;
}  

span.views-field-view-node a:hover{
  background: #D75A20;
  text-decoration: none;}

span.views-field-view-node{
float: right;
margin-right: 5px;
z-index: 5;}

span.vsc-title {
  margin-left: 10px;}

span.vsc-title a{
  font-size: 111%;
  color: white;}
/** 
 * Footer Block
 */  
#footer {
  border-top: 1px solid #375674;
  border-bottom: 1px solid #375674;
  margin-top: 2em;
  margin-bottom: 2em;}
 
#block-block-22 {
  margin-bottom: 0;
  margin-left: 1.5em;
  margin-right: 1.5em;
  overflow: hidden;}

#block-block-22 #foot_left {
  float: left;}
  
#block-block-22 #foot_left ul li {
  float: left;
  list-style: none outside none;
  margin: 0 20px 0 0;
  padding: 0;}  

#block-block-22 #foot_right {
  float: right;}

#block-block-22 #foot_right p {
  color: #666666;
  font-size: 11px;
  text-align: right;}

#block-block-22 #social {
  float: right;
  margin-bottom: 10px;}

#block-block-22 #social ul {
  margin: 0;}

#block-block-22 #social ul li.earth_share, #social ul li.one_percent {
  margin-right: 41px;
  margin-top: -7px;}
  
#block-block-22 #social ul li {
  float: left;
  list-style: none;}
  
#social ul li a {
margin: 0 10px 0 0;}

/** 
* Search Box
*/ 
.head_search{
text-align: right;}
  
.search-form label{ display: none;}

.search-form input {
  font-size: 11px;}

.search-form input.form-submit{
color: #555555;
cursor: pointer;
}
/** 
* Highlighted Donate Block
*/ 
#block-views-front-slideshow-2-block-1 {
  width: 658px;
  float: left;
}
#block-block-20 {
  float: right;
  width: 252px;
  height: 270px;
  background: #F5F5F5;
  padding: 15px;
  font-family: 'Open Sans', "Helvetica Neue",Helvetica,Arial,sans-serif;}

#block-block-20 p{
  font-weight: 400;
  font-style: italic;
  color: #3B4553;
  text-align: center;
  margin: 3% 0 12% 0; }
  
#block-block-20 .newsletter{
  padding-top: 7%;
  text-align: center;}
  
.donate-button {
  font-style: normal;
  padding-top: 3%;
  text-align: center;}

.donate-button a {
  background: #FED221;
  border: 1px solid #C9AF4C;
  color: #000000;
  padding: 10px 21px;
  -moz-border-radius: 3px;
  font-size: 110%;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-style: italic;}

.donate-button a:hover {
  background: #ECCD5B;}

#block-block-20  .newsletter table {
  margin: 10px;}

input#email[type="text"], .newsletter .q-inner, input[type="text"], input[type="email"], textarea, .search-form input.form-submit {
border-style: none;
border-width: 0;
border: 1px solid transparent;
border-top: none;
border-bottom: 1px solid #DDD;
box-shadow: inset 0 1px 2px rgba(0,0,0,.39), 0 -1px 1px #FFF, 0 1px 0 #FFF;}

input#email[type="text"], .newsletter .q-inner, input[type="text"], input[type="email"]{
height: 29px;
padding-left: 5px;}

.panel-pane input#email {
  float: left;
  width: 100%;}

#block-block-20  .newsletter .q-inner {
  padding: 3px;
  height: 22px;}
  
#block-block-24  input.form-submit {
  padding: 5px;
  margin: 5px 0 0 102px;}
  
#block-block-24  .newsletter{
  margin-top: 1em;}  
  
.newsletter input#ns {
  border: medium none;
  cursor: pointer;
  background: transparent;}

.newsletter form tbody {
  border-top: none;}
  
.newsletter tr {
  text-align: center;}  

#block-block-24 p{
  margin: 1.3em 0 0 0}  
/** 
* Donate Button Block
*/   
#block-block-31 h2.title{
  background: #F4EAAE;
  padding: 0 20px;
  margin-top: 0;}

#block-block-31 a {
  color: #9E8F34;}
  
#block-block-31 {
  padding: 0;
  margin: 0;}
/** 
* Taxonomy term pages
*/   
.view-display-id-page .views-field-type, .view-display-id-page .views-field-created, h4.press, .view-front-teasers-bottom.view-display-id-page_1 .views-field-type, .view-taxonomy-redirect.view-display-id-page_1 .views-field-type {
  color: #858585;
  text-transform: capitalize;
  margin-bottom: .5em;}  
/** 
* Contact Page
*/   
.gmap {
float: right;
margin-left: 1em;
}  
#webform-client-form-379 .form-item label, #webform-client-form-380 .form-item label {
float: left;
margin: 0 12px 0 0;
text-align: right;
width: 105px;
font-weight: normal;
}
#webform-client-form-379 input.form-text, #webform-client-form-379 input.form-item, #webform-client-form-380 input.form-text, #webform-client-form-379 input.form-item, #webform-client-form-380 input.form-file {
display: block;
float: none;
margin: 5px 0;
width: 450px;
padding: 6px;
}
#webform-client-form-379 .form-item, #webform-client-form-380 .form-item , .form-actions{
clear: both;
position: relative;
}
#webform-client-form-379 .webform-component-textfield, #webform-client-form-379 .webform-component-email {
padding-bottom: 2em;
}
#webform-client-form-379 .resizable-textarea, #webform-client-form-380 .resizable-textarea {
display: block;
float: left;
font-family: Helvetica,Arial,sans-serif;
margin-bottom: 5px;
margin-right: 8px;
margin-top: 5px;
width: 450px;
-moz-border-radius: 4px 4px 0 0px;
}
#webform-client-form-380 .webform-submit, #webform-client-form-379 .webform-submit {
-moz-border-radius: 20px 20px 20px 20px;
background: none repeat scroll 0 0 #E8B967;
border: medium none;
cursor: pointer;
font-size: 18px;
font-weight: normal;
margin-left: 310px;
margin-top: 2em;
padding: 3px 10px;
}
