/**
 * @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;
}

/* 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: "Open Sans", sans-serif; 
  /* Use a 14px base font size. 16px x .875 = 14px */
  font-size: 87.5%; /* 3 */

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

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

/* 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: "Open Sans"", sans-serif;
}

/* Remove default margin. */
body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #252525;
}

/**
 * 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 {
	color: #000;
    font-family: "Open Sans",sans-serif;
    font-weight: 800;
    text-decoration: none;
}
a:visited {
	color: #000;
    font-family: "Open Sans",sans-serif;
    font-weight: 800;
    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: 1.5em 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-family: 'Alice', sans-serif;
  font-weight: 400;
  font-size: 1.750em;
  text-transform: uppercase;
  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;
}
.page-taxonomy h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-family: 'Open sans condensed', sans-serif;
  font-size: 1.750em;
  text-transform: uppercase;
  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;
  text-align: center;
}
h2 {
  font-family: 'Open sans condensed', sans-serif;
  font-size: 2em;
  text-transform: uppercase;
  line-height: 2em; /* 3rem / 1.5em = 2em */
  margin-top: 1em; /* 1.5rem / 1.5em = 1em */
  margin-bottom: 1em;
}
h3 {
  font-size: 1.17em;
  line-height: 1.28205em; /* 1.5rem / 1.17em = 1.28205em */
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;
}
h4 {
  font-size: 1em;
  line-height: 1.5em; /* 1.5rem / 1em = 1.5em */
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
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;
}
.view-header {
  font-family: 'Alice', sans-serif;
  font-weight: 400;
  font-size: 1.375em;
  text transform: uppercase;
}
.sidebar-second .view-header {
  font-family: 'Alice', sans-serif;
  font-weight: 400;
  font-size: 1emx;
  text transform: uppercase;
}
/* 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
 */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}
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;
}
/*nice menu override */
ul.nice-menu-down ul li {
  clear: both;
  white-space: nowrap;
  padding: 4px 10px;
}
ul.nice-menu-down ul li.first {
	padding-top: 20px;
}

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

/* 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: 100%; /* 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: 1.5em;
  margin-bottom: 1.5em;
}

/* sidebars first column */
#block-meetingsmags-3 {
	margin-bottom: 0;
}
#block-meetingsmags-3, #block-views-magazine-block {
	text-align: center;
}

#block-meetingsmags-3 a {
	padding-right: 8px;
}
#block-views-magazine-block .view-magazine .views-field {
	magazine-top: 10px;
}
#block-views-magazine-block .views-field .field-content a, #block-views-magazine-block .views-field-title a{
font-family: 'Open Sans Condensed', sans-serif;
font-weight: 700;
font-size: 1em;
text-transform: none;
}

._spacer {
    margin-top: 5%;
}
/* main page columns */
#block-views-issue-block .views-row,
.view-secondary-feature .views-row,
.view-display-id-secondary_section .views-row {
    clear: both;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e2e2;
}
.view-secondary-feature .views-field-field-by-line {
	text-align: center;
}
.views-field-field-by-line,
.views-field-field-by {
    color: #252525;
    font-family: "Open Sans";
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.view-display-id-home_more_articles .views-field-term-node-tid{
	clear: both;
}
#block-views-issue-block .view-id-issue .views-field-field-image,
.view-display-id-secondary_section .views-field.views-field-field-image,
.view-secondary-feature .views-field.views-field-field-image,
.view-id-events .views-field.views-field-field-image {
    float: left;
    margin-right: 20px;
    padding-bottom: 15px;
}
.view-display-id-home_more_articles .view-content .views-row-odd,
.view-content .views-row-odd.main-column {
    float: left;
    clear: left;
    width: 45%;
    padding: 15px 0;
    margin-top: 15px;
    margin-right: 10px;
    border-top: 1px solid #e2e2e2;
}
.view-display-id-home_more_articles .view-content .views-row-even,
.view-content .views-row-even.main-column {
    float: right;
    clear: right;
    width: 46%;
    margin-top: 10px;
    margin-left: 10px;
    padding: 15px 0 15px 26px;
    border-top: 1px solid #e2e2e2;
}
#block-views-taxonomy-term-b-main-section .block__title{
	line-height: 0;	
	margin-bottom: 20px;
	margin-top: 15px;
	text-align: center;
}
/* search form */
#edit-actions { 
    float: left;
    margin-right: 18px;
    margin-top: 3px;
}
#edit-search-block-form--2 {
	border: 0;
	width: 165px
}
/* taxonomy sections */
.page-taxonomy .view-display-id-b_main_section .views-field-field-image {
   text-align: center;
   margin-bottom: 15px;
 }
.page-taxonomy .view-display-id-attachment_2 .views-field-field-image {
	clear: left;
	float: left;
}
.views-field-term-node-tid,
.views-field-title,
.views-field-by,
.views-field-by-line,
.views-field-field-by {
	text-align: center;
	display: block;
}

#block-views-main-feature-block .view-content .views-field-title a{
	font-family: 'Alice', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 1.75em;
}
#block-views-main-feature-block .view-content .views-field-field-image{
margin-bottom: 20px
}

.view-content .views-field-title a{
	font-family: 'Alice', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 1.375em;
}

.views-field-term-node-tid, .views-field-term-node-tid a{
font-family: 'Open Sans Condensed', sans-serif;
font-size: 14px;
text-transform: uppercase;
font-weight: 300;
}

.page-taxonomy .view-display-id-attachment_2 .views-row {
	border-top: 1px solid #e2e2e2;
	margin-top: 15px;
	padding-top: 15px;
}
.page-taxonomy .view-display-id-attachment_2 .views-field-term-node-tid {
	margin-top: 8%;
}
.page-taxonomy .view-display-id-attachment_2 .views-field-term-node-tid,
.page-taxonomy .view-display-id-attachment_2 .views-field-title,
.page-taxonomy .view-display-id-attachment_2 .views-field-by,
.page-taxonomy .view-display-id-attachment_2 .views-field-by-line{
	clear: right;
    float: right;
    vertical-align: middle;
    width: 50%;	
}
.page-taxonomy .view-display-id-attachment_2 .views-field-nothing {
	clear: both;
	height: 0;
} 
/* EVENTS */
#block-views-events-block-1 .block__title{
font-size: 18px;
text-align: center;
background-color: #003f5e;
color: #fff;
font-family: 'Open sans', sans-serif;
font-weight: 300;
}
#block-views-events-block-1 .view-content{
text-align: center;
}

#block-views-events-block-1 .views-field-field-date{
font-family: 'Open Sans Condensed', sans-serif;
font-size: 14px;
text-transform: uppercase;
font-weight: 300;
margin-top: 15px;
}
#block-views-events-block-1 .views-field-title a{
font-size: 1em;
}
.view-events H3{
font-family: 'Open Sans Condensed', sans-serif;
font-size: 14px;
text-transform: uppercase;
font-weight: 300;
margin-top: 15px;
border-bottom-style: solid;
border-top-style: solid;
border-color: #acacac;
border-width: 1px;
padding: 20px 0 20px 0;
text-align: center;
background-color: transparent;
clear: both;
}

.views-field-field-when{
font-family: 'Open Sans Condensed', sans-serif;
font-size: 14px;
text-transform: uppercase;
font-weight: 300;
text-align: center;
}

.node-type-event #block-views-events-block-2 .views-row {
    border-top: 1px solid #cecece;
    margin: 15px 0;
    padding: 15px 0;

}
/* NEWS */
.region-sidebar-second h2 {
	line-height: 1.50em;
}
#block-views-popular-block-2 .block__title{
font-size: 18px;
text-align: center;
background-color: #003f5e;
color: #fff;
font-family: 'Open sans', sans-serif;
font-weight: 300;
}

#block-views-popular-block-2 .views-field-title a{
	font-size: 1em;
}
#block-views-popular-block-2 .views-row{
	margin-top: 15px;
}
/*events page */
.page-events .field.field-name-body.field-type-text-with-summary.field-label-hidden {
    padding-right: 15px;
    float: left;
    width: 70%;
}
.page-events .required-fields.event_info {
    float: left;
    width: 25%;
    margin-top: 18px;
}
.node-event .event_info{
font-family: 'Open Sans Condensed', sans-serif;
font-size: 18px;
}
.node-event .field-type-text-with-summary{
	float: left;
	margin-right:20px;
}
.views-field-field-date{
font-family: 'Open Sans Condensed', sans-serif;
font-size: 14px;
text-transform: uppercase;
font-weight: 300;
text-align: center;
}
/* issue page */
.node-type-issue h1 {
	font-family: 'Open sans condensed', sans-serif;
	font-size: 2em;
	font-weight: 800;
	text-align: center;
	text-tranform: uppercase;	
}
.node-type-issue ul {
	list-style: none;
}
.node-type-issue .field-name-field-digital-edition {
	text-align: center;
}
.node-type-issue #block-block-1 {
	border-top: 1px solid #cecece;
	border-bottom: 1px solid #cecece;
}
.node-type-issue .field.field-name-field-digital-edition.field-type-link-field.field-label-hidden {
    border-top: 1px solid #cecece;
    clear: both;
    margin: 15px 0 0 10px;
    padding: 25px 0 0 0;
}
.node-type-issue .node-issue .field-name-field-digital-edition a {
	font-weight: 400;
	font-size: 24px;
}
.node-type-issue .field.field-name-field-image.field-type-image.field-label-hidden {
    float: left;
    padding-right: 15px;
    padding-bottom: 15px;
}
.node-type-issue .views-field-field-by-line {
	text-align: center;
}
.view-content H3{
font-family: 'Open Sans Condensed', sans-serif;
font-size: 14px;
text-transform: uppercase;
font-weight: 300;
margin-top: 15px;
border-bottom-style: solid;
border-top-style: solid;
border-color: #acacac;
border-width: 1px;
padding: 20px 0 20px 0;
text-align: center;
background-color: transparent;
clear: both;
}
/* center advertisement */
#block-meetingsmags-4 {
   clear: both;
   float: left;
   margin-left: 25px;
}
#block-meetingsmags-5 {
	float: left;
	margin-left: 10px;
}
#block-meetingsmags-4 h2, 
#block-meetingsmags-5 h2 {
	color: #6f6f6f;
    font-size: 10px;
    text-align: center;
    text-transform: none;
}
/* national block issue */
#block-views-national-issues-block #flexslider-1 .flex-control-nav {
	display: none;
}
#flexslider-1 .flex-active-slide,
#flexslider-2 li {
	text-align: center;
}
.view-main-feature .flex-direction-nav .flex-prev a {
	position: relative;
	margin-top: -350px;
}
#block-views-national-issues-block .view-national-issues {
	text-align: center;
}
#block-views-national-issues-block .view-national-issues a {
    font-family: 'Open Sans Condensed',sans-serif;
    font-size: 1em;
    font-weight: 700;
    text-transform: none;
}
/* national current issues */
.page-current-issues #content .view-national-issues table {
	width: 100%;
	text-align: center;
}
.page-current-issues #content .view-national-issues a {
	font-family: "Open Sans Condensed", sans-serif;
	font-size: 0.875em;
}
/* article page */
#block-views-article-top-block-1 .row-clear {
	clear: both;
}
#block-views-article-top-block-1 .views-row {
	border-bottom: 3px solid #cecece;
	margin-bottom: 15px;
}
#block-views-article-top-block .flex-control-nav {
	bottom: -5px;
}
#block-views-article-top-block .views-field-field-by-line,
#block-views-article-top-block .views-field-field-issue {
	display: inline-table;
	margin-left: 35px;
	font-family: "Open Sans";
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #252525;
}
#block-views-article-top-block .views-field-nothing-1,
#block-views-article-top-block .views-field-nothing {
    margin-top: 15px;
 	clear: both;
 	border-top: 1px solid #cecece;
 }
/* ARCHIVE PAGE */
.page-archive .views-field-title a {
	font-family: 'Open Sans Condensed', sans-serif;
font-weight: 700;
font-size: 1em;
text-transform: uppercase;
}
.page-archive table{
	width: 100%;
}
.page-archive td{
	padding-right: 10px;
	padding-left: 10px;
	text-align: center;
}
/* national current issues */
.section-current-issues h1{
    line-height: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    margin-top: 15px;
    text-align: center;
    font-family: 'Open sans condensed', sans-serif;
    text-transformation: uppercase;
    border-bottom: 1px solid #cecece;
}
 /* share links */
 #block-block-5 {
 	text-align: center;
}
/*footer area */
#footer p {
	margin: 1.5em 0 0;
}
#footer ul {
	list-style: none outside none;
}
#footer_wrapper {
	width: 100%;
    text-align:center
}
#footer_subscription{
	float: left;
	margin-left: 50px;
}
#footer_magazine {
	display:inline-block;
}
#footer_social {
	float: right;
	margin-right: 50px;
}
#footer_wrapper a {
	font-weight: 400;
}
#footer .footer_header {
	font-weight: 800;
}
#block-block-2 {
	background-color: #fff;
	padding-bottom: 1.75em;
	margin-bottom: 0;
}
#block-menu-menu-footer-menu{
	clear: both;
	text-align: center;
	border-bottom: 1px solid #cecece;
    border-top: 1px solid #cecece;
    background-color: #fff;
}
#footer #block-menu-menu-footer-menu ul.menu {
	display: inline-block;
	margin: 10px;
}

/* national base colors */
p a:link, p a:visited, li.calendar a, .page-blogs .view-blog .views-field-name a, .submitted a, .node-type-article ul.links a, .node-type-blog ul.links a{
 	color:#003f5e;
 }
 
.topnav ul li.mountain a span.menu_ar{
	background-color: #fff;
	color: #000;
}
#primary .active a,
#primary a:hover,
.view-cycle-pager li a.activeSlide{
	color: #FFFFFF;
	background-color: #003f5e;
}  

#mainNav,
h3,
#block-views-popular-block_1 .title {
	background-color: #003f5e;
}

.view-expert-forum .views-field-title a:hover,
.view-NEWS .views-field-title a:hover,
.view-events .views-field-title a:hover,
.view-blog .views-field-title a:hover,
#block-views-popular-block_1 a:hover,
.view-id-checklist .views-field-title .field-content a:hover,
.view-events-calendar .views-field-title a:hover,
.view-id-locales .item-list .pager .pager-next a,
.view-id-locales .item-list .pager .pager-last a,
.view-id-locales .item-list .pager .pager-first a,
.view-id-locales .item-list .pager .pager-previous a,
.view-events-calendar .views-field-title a:hover,
.view-archive .views-field-title a:hover,
.view-id-locales .field-content a:hover,
.newsTitle,
#block-views-expert_forum-block_1 h2.title,
.page-expert-advice h2.title,
.view-expert-forum .views-field-view-node a,
.view-locales h2.title a,
.field-field-article-reference a{
	color: #003f5e;
}
#subscribe_free {
    border: 1px solid #003f5e;
    padding: 18px;
}

/* writers page */
.section-writers h1 {
    border-bottom: 1px solid #cecece;
    font-family: "Open sans condensed";
    font-size: 2em;
    font-weight: 800;
    line-height: 0.75em;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-align: center;
}
.section-writers .view-author-names .views-row {
  clear: both;
}
.section-writers .view-author-names .views-field-field-image {
	display: table-cell;
	float: left;
	width: 50%;
}
.section-writers .view-author-names .views-field-field-position {
	display: table-cell;
	vertical-align: middle;
	width: 50%
}
.section-writers .view-author-names .views-field-field-first-name a, 
.section-writers .view-author-names .views-field-field-last-name a{
	font-family: 'Alice', sans-serif;
  font-weight: 400;
  font-size: 1.750em;
  text-transform: capitalize;
  line-height: 1.5em; 
}

.page-user h1 {
	display: none;
}
.page-user .profile h3 {
	display: none;
}
.page-user .field-name-field-position {
	font-family: "Open Sans condensed", sans-serif;
	font-size: 14px;
	text-align: center;
	padding-right: 30px;
}
.page-user .field-name-field-first-name {
	float: right;
	padding-right: 6px;
	font-family: "Alice", sans-serif;
	font-weight: 400;
	font-size: 1.750em;
	text-transform: capitalize;
	line-height: 1.5em; 
}
.page-user .field-name-field-last-name {
	font-family: "Alice", sans-serif;
	font-weight: 400;
	font-size: 1.750em;
	text-transform: capitalize;
	line-height: 1.5em; 
}
.page-user .field-name-field-image {
	float: left;
	padding-right: 15px;
}
.page-user dt,
.page-user dd {
	display: none;
}
.page-user #block-views-contributed-articles-block h2 {
	border-top: 1px solid #cecece;
	border-bottom: 1px solid #cecece;
	text-align: center;
}
.page-user #block-views-contributed-articles-block .views-row {
	clear: both;
}
.page-user #block-views-contributed-articles-block .views-field-field-image {
	float: left;
	padding-right: 20px;
}
.page-user #block-views-contributed-articles-block .views-field-title-1 a {
	font-family: "Alice", sans-serif;
	font-size: 1.750em;
	font-weight: normal;
}
.pager-load-more a{
	color: #fff;
	line-height: 1.5em;
	font-family: "Open sans",sans-serif;
    font-size: 18px;
    font-weight: 300;
}
/* second sidebar */
#block-block-4 {
	border-bottom: 1px solid #cecece;
	margin-bottom: 15px;
	line-height: 0;
}
#block-meetingsmags-1,
#block-views-popular-block-2,
#block-views-events-block-1 {
    border-bottom: 1px solid #cecece;
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-align: center;
}
.pager-load-more {
	background-color: #003f5e;
}


/* node-special-promotion-page */

#flexslider-1 .flex-control-nav.flex-control-paging {
	position: relative;
	top: -86px;
}

#flexslider-1 .flex-caption {
	position: relative;
	color: #fff;
	top: -50px;
}

.view-special-promo .views-field-title {
    font-size: 20px;
    line-height: 24px;
    font-family: "Alice",sans-serif;
    border-bottom: 1px solid;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.view-special-promo .views-row {
	clear: both;
}

#block-views-special-promo-block-1 .view-special-promo .views-field-field-image {
	display: inline-table;
	width: 36%;
 	float: left;
}

.node-type-special-promotion-page .flex-direction-nav .flex-next {
    margin-right: -170px;
}

.node-type-special-promotion-page .flex-direction-nav a {
    top: -254px;
}
.node-type-special-promotion-page .flex-control-nav {
	bottom: 0;
}
.view-special-promo .views-field-body {
	display: inline-table;
	width: 63%;
}


.view-special-promo .views-field-body .field-content {
    font-size: 14px;
}

.view-special-promo .views-field-field-phonesp {
	font-size: 14px;
	padding-top: 10px;
	display: inline-table;
	width: 46%;
	float: left;
}

.view-special-promo .views-field-field-more-information {
	display: inline-table;
	width: 73%;
	text-align: center;
	clear: both;
}

.view-special-promo .views-field-field-more-information .field-content {
	margin-top: 15px;
	border: 1px solid #C3C3C3;
	float: right;
	margin-top: 10px;
	padding: 10px;
	text-align: center;
	width: 288px;
}

.view-special-promo .views-field-field-more-information a {
	cursor: pointer;
	font-family: Arial,Helvetica,sans-serif;
	font-size: 14px;
	font-weight: bold;
	line-height: 100%;
	text-align: center;
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
	text-transform: uppercase;
}

.view-special-promo .views-field-nothing {
	margin-top: 25px;
	clear: both;
}

.view-special-promo .views-field-field-disclaimer p{
	margin: .5em 0px;
} 