/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* =============================================================================
   HTML5 element display
   ========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio[controls],
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Force vertical scrollbar in non-IE
 * 3. Remove Android and iOS tap highlight color to prevent entire container being highlighted
 *    www.yuiblog.com/blog/2010/10/01/quick-tip-customizing-the-mobile-safari-tap-highlight-color/
 * 4. Prevent iOS text size adjust on device orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-size: 13px;
  line-height: 1.231;
}
body,
button,
input,
select,
textarea {
  font-family: sans-serif;
  color: #222;
}
/* =============================================================================
   Links
   ========================================================================== */
a {
  color: #00e;
}
a:focus {
  outline: thin dotted;
}
/* Improve readability when focused and hovered in all browsers: people.opera.com/patrickl/experiments/keyboard/test */
a:hover,
a:active {
  outline: 0;
}
/* =============================================================================
   Typography
   ========================================================================== */
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
blockquote {
  margin: 1em 40px;
}
dfn {
  font-style: italic;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
/* Redeclare monospace font family: en.wikipedia.org/wiki/User:Davidgothberg/Test59 */
pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}
/* Improve readability of pre-formatted text in all browsers */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
q {
  quotes: none;
}
q:before,
q:after {
  content: "";
  content: none;
}
small {
  font-size: 85%;
}
/* Position subscript and superscript content without affecting line-height: gist.github.com/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* =============================================================================
   Lists
   ========================================================================== */
ul,
ol {
  margin: 0 0 1em 0;
  padding: 0 0 0 40px;
}
dd {
  margin: 0 0 0 40px;
}
nav ul,
nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * Improve image quality when scaled in IE7
 * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}
/*
 * Correct overflow displayed oddly in IE9 
 */
svg:not(:root) {
  overflow: hidden;
}
/* =============================================================================
   Figures
   ========================================================================== */
figure {
  margin: 0;
}
/* =============================================================================
   Forms
   ========================================================================== */
form {
  margin: 0;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/* 
 * 1. Correct color not inheriting in IE6/7/8/9 
 * 2. Correct alignment displayed oddly in IE6/7 
 */
legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
}
/* Indicate that 'label' will shift focus to the associated form element */
label {
  cursor: pointer;
}
/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 * 2. Correct inner spacing displayed oddly in IE6/7
 */
button,
input {
  line-height: normal;
  *overflow: visible;
}
/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}
/*
 * Consistent box sizing and appearance
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
}
input[type="search"] {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
/* 
 * Remove inner padding and border in FF3/4
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ 
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* Remove default vertical scrollbar in IE6/7/8/9 */
textarea {
  overflow: auto;
  vertical-align: top;
}
/* Colors for form validity */
input:invalid,
textarea:invalid {
  background-color: #f0dddd;
}
/* =============================================================================
   Tables
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* =============================================================================
   Non-semantic helper classes
   Please define your styles before this section.
   ========================================================================== */
/* For image replacement */
.ir {
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}
.ir br {
  display: none;
}
/* Hide for both screenreaders and browsers:
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden {
  display: none;
  visibility: hidden;
}
/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden;
}
/*
// GRID SYSTEM
// -----------

// Fixed (940px)
#gridSystem > .generate(@gridColumns, @gridColumnWidth, @gridGutterWidth);

// Fluid (940px)
#fluidGridSystem > .generate(@gridColumns, @fluidGridColumnWidth, @fluidGridGutterWidth);
*/
body {
  width: 100%;
  *zoom: 1;
}
body:before,
body:after {
  content: "";
  display: table;
}
body:after {
  clear: both;
}
body:before,
body:after {
  display: table;
  content: "";
}
body:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}
.two_frame .left_frame {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.two_frame .left_frame ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.two_frame .left_frame ul li {
  margin: 0 5px 28px 0;
}
.two_frame .left_frame ul li .txt_block {
  padding: 0 0 0 5px;
}
.two_frame .left_frame ul li .txt_block h4 {
  margin-top: 5px;
}
.two_frame .left_frame ul li .txt_block h4 a {
  margin: 0;
  padding: 9px 0;
  font-size: 13px;
  font-weight: bold;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #333;
}
.two_frame .left_frame ul li .txt_block h4 a:hover {
  color: #900;
}
.two_frame .left_frame ul li .txt_block p {
  margin: 0;
  padding: 0;
  color: #333;
  font-size: 13px;
}
.two_frame .left_frame ul li .image_block img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.two_frame .left_frame ul li.last {
  margin: 0;
}
.two_frame .left_frame .second_block,
.two_frame .left_frame .first_block {
  width: 90%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.two_frame .left_frame .second_block ul li,
.two_frame .left_frame .first_block ul li {
  list-style: none;
}
.two_frame .left_frame .block_header {
  width: 710px;
  float: left;
  padding: 26px 0 13px;
  display: inline;
}
.two_frame .left_frame .block_header h3 {
  margin: 0;
  padding: 0;
  font-size: 11px;
  font-family: Helvetica, sans-serif;
  color: #999;
  font-weight: normal;
}
.two_frame .left_frame .first_block_no_border .text_frame {
  padding: 12px 0 2px;
}
.two_frame .left_frame .first_block_no_border p {
  margin: 0 0 15px;
  font-size: 13px;
  font-family: Helvetica, sans-serif;
  color: #333;
  float: none;
  display: block;
  padding: 0px;
}
.two_frame .left_frame .first_block_no_border .image {
  display: block;
}
.two_frame .left_frame .first_block_no_border .image .take_action {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.two_frame .left_frame .first_block_no_border .image .take_action a {
  color: white;
  text-align: center;
  width: 50%;
  max-width: 200px;
}
.two_frame .left_frame .first_block_no_border .image img {
  background: white;
  border: 1px solid #E8E8E8;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 4px;
  margin-bottom: 10px;
}
.two_frame .left_frame .first_block_no_border h2 {
  font-size: 24px;
  font-family: Georgia, "Times New Roman", Times, serif;
  margin: 10px 0 13px;
  padding: 0;
  color: #333;
}
.two_frame .right_frame {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.two_frame .right_frame .no_border_right {
  border-top: none;
}
.two_frame .right_frame .link_block {
  margin-bottom: 10px;
}
.two_frame .right_frame .link_block label {
  font-size: 14px;
  font-weight: bold;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #1a1a1a;
}
.two_frame .right_frame .link_block .little_white_box {
  background: white;
  border: 1px solid #D4D4D4;
  border-radius: 4px;
  *zoom: 1;
  clear: both;
}
.two_frame .right_frame .link_block .little_white_box:before,
.two_frame .right_frame .link_block .little_white_box:after {
  content: "";
  display: table;
}
.two_frame .right_frame .link_block .little_white_box:after {
  clear: both;
}
.two_frame .right_frame .link_block .little_white_box:before,
.two_frame .right_frame .link_block .little_white_box:after {
  display: table;
  content: "";
}
.two_frame .right_frame .link_block .little_white_box:after {
  clear: both;
}
@media screen and (min-width: 543px) {
  .two_frame .left_frame ul li {
    float: left;
  }
}
@media screen and (min-width: 960px) {
  .title {
    border-top: 1px solid #ccc;
    padding: 15px 0;
  }
  #content {
    width: 964px;
  }
  #content .two_frame.full .left_frame {
    /* display: inline; */
    float: left;
    width: 97.91666666666666%;
    margin: 0 1.0416666666666665%;
  }
  #content .two_frame.full .left_frame ul li .image_block img {
    max-width: 290px;
    max-height: 290px;
  }
  #content .two_frame .image {
    float: left;
    width: 224px;
    height: 170px;
    padding-right: 25px;
  }
  #content .two_frame .image img {
    background: white;
    border: 1px solid #E8E8E8;
    padding: 4px;
    display: block;
    margin: 0 auto;
    width: 216px;
    height: 160px;
  }
  #content .two_frame .left_frame {
    /* display: inline; */
    float: left;
    width: 72.91666666666666%;
    margin: 0 1.0416666666666665%;
    margin: 0 15px 0 0;
  }
  #content .two_frame .left_frame ul {
    display: block;
    width: 102.77777777777777%;
    margin: 0 -1.3888888888888888%;
    *zoom: 1;
  }
  #content .two_frame .left_frame ul:before,
  #content .two_frame .left_frame ul:after {
    content: "";
    display: table;
  }
  #content .two_frame .left_frame ul:after {
    clear: both;
  }
  #content .two_frame .left_frame ul:before,
  #content .two_frame .left_frame ul:after {
    display: table;
    content: "";
  }
  #content .two_frame .left_frame ul:after {
    clear: both;
  }
  #content .two_frame .left_frame ul li {
    /* display: inline; */
    float: left;
    width: 30.555555555555557%;
    margin: 0 1.3888888888888888%;
  }
  #content .two_frame .left_frame ul li .image_block {
    width: 100%;
    max-width: 100%;
    float: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #content .two_frame .left_frame ul li .image_block img {
    width: 100%;
    max-width: 216px;
    max-height: 160px;
  }
  #content .two_frame .left_frame .first_block,
  #content .two_frame .left_frame .second_block {
    width: 100%;
  }
  #content .two_frame .right_frame {
    width: 226px;
    margin-left: 20px;
    margin-right: 0;
  }
  #content .two_frame .right_frame .no_border_right {
    border-top: none;
  }
  #content .two_frame .right_frame .link_block {
    float: left;
    width: 100%;
    padding: 55px 0 10px;
    display: inline;
  }
  #content .two_frame .right_frame .link_block label {
    font-size: 14px;
    font-weight: bold;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #1a1a1a;
    padding: 0 0 20px 0;
    float: left;
  }
  #content .two_frame .right_frame .link_block .little_white_box {
    float: left;
    background: white;
    border: 1px solid #D4D4D4;
    border-radius: 4px;
    behavior: url(/static/js/PIE/PIE.htc);
  }
  #content .two_frame .right_frame .link_block .title {
    border-top: 1px solid #ccc;
    float: left;
    width: 100%;
    padding: 18px 0 0;
    display: inline;
  }
}
/* pop up box */
.popup {
  display: none;
}
.index_page .twitter_stream iframe {
  height: 264px;
  overflow: hidden;
}
/* end index page*/
/* DESKTOP ! */
@media screen and (min-width: 960px) {
  /* POPUP CSS */
  .popup#home_popup .reveal_tab {
    /*float:left;*/
    position: relative;
    left: 0px;
    /*by default, animated to the right on click*/
    width: 55px;
    /* was 45px, 55px with shadow */
    height: 140px;
    /* was 120px, 140px with shadow */
    display: block;
    background: url(../images/popup_side_join_us_shadow.png) no-repeat;
    text-indent: -9999px;
    margin-top: -1px;
    /* added negative margin for shadow */
    cursor: pointer;
  }
  .popup .black_box {
    float: left;
    width: 337px;
    height: 255px;
    border: 1px solid #4c4c4c;
    background: #1d1e1e;
    padding: 15px 18px 20px 20px;
    position: relative;
    left: -377px;
    z-index: 1337;
    *zoom: 1;
  }
  .popup .black_box:before,
  .popup .black_box:after {
    content: "";
    display: table;
  }
  .popup .black_box:after {
    clear: both;
  }
  .popup .black_box:before,
  .popup .black_box:after {
    display: table;
    content: "";
  }
  .popup .black_box:after {
    clear: both;
  }
  .popup .black_box .title_close {
    float: left;
    width: 337px;
    border-bottom: 1px solid #4c4c4c;
    padding: 4px 0 10px;
    display: inline;
  }
  .popup .black_box .title_close label {
    float: left;
    clear: right;
    margin-top: -7px;
    font-size: 24px;
    font-family: Helvetica, sans-serif;
    font-weight: normal;
    color: #fff;
  }
  .popup .black_box .title_close a.close {
    float: right;
    margin: 0px;
    display: block;
    width: 17px;
    height: 17px;
    text-decoration: none;
    text-indent: -9999px;
    background: url(../images/popup_btn_close.gif) no-repeat;
  }
  .popup .black_box div.list {
    float: left;
    width: 337px;
    padding: 15px 0 0 0;
    display: inline;
  }
  .popup .black_box div.list ul {
    float: left;
    width: 337px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .popup .black_box div.list ul li {
    float: left;
    width: 337px;
    margin: 0 0 10px;
    display: inline;
  }
  .popup .black_box div.list ul li label.left {
    float: left;
    width: 80px;
    padding: 6px 0;
    display: inline;
    font-size: 14px;
    font-style: italic;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #ccc;
  }
  .popup .black_box div.list ul li label.error {
    color: red;
  }
  .popup .black_box div.list ul li input.input_txt {
    background: url(../images/popup_input.gif) no-repeat;
    width: 250px;
    height: 30px;
    float: left;
    border: none;
    padding: 0 0 0 5px;
  }
  .popup .black_box div.list ul li input.input_txt {
    background: url(../images/popup_input.gif) no-repeat;
    width: 250px;
    height: 30px;
    float: left;
    border: none;
    padding: 0 0 0 5px;
  }
  .popup .black_box div.list ul li label.privacy {
    font-family: Helvetica, sans-serif;
    font-size: 10px;
    color: #666;
    width: 110px;
    float: left;
  }
  .popup .black_box div.list ul li label.privacy a.privacy {
    font-family: Helvetica, sans-serif;
    font-size: 10px;
    color: #666;
    text-decoration: underline;
  }
  .popup .black_box div.list ul li.three_links {
    margin: 5px 0 0 0;
  }
  .popup .black_box div.list ul li.three_links .btn_join {
    border: none;
    display: block;
    text-decoration: none;
    margin-left: 5px;
    text-indent: -9999px;
    width: 103px;
    height: 29px;
    float: left;
    background: url(../images/popup_btn_join_now.gif) no-repeat;
  }
  .popup .black_box div.list ul li.three_links a.btn_cancel {
    display: block;
    text-decoration: none;
    text-indent: -9999px;
    width: 103px;
    height: 29px;
    margin: 0 6px;
    float: left;
    background: url(../images/popup_btn_cancel.gif) no-repeat;
  }
  .popup#home_popup {
    float: left;
    display: block;
    height: 260px;
    position: absolute;
    z-index: 100;
    top: 213px;
    left: 0px;
  }
  .popup#home_popup.active {
    z-index: 102;
  }
  .popup#home_popup.active .reveal_tab {
    position: relative;
    left: 377px;
    -webkit-transition: left 500ms ease;
    -moz-transition: left 500ms ease;
    -ms-transition: left 500ms ease;
    -o-transition: left 500ms ease;
    transition: left 500ms ease;
  }
  .popup#home_popup.active .black_box {
    left: 0px;
    -webkit-transition: left 500ms ease;
    -moz-transition: left 500ms ease;
    -ms-transition: left 500ms ease;
    -o-transition: left 500ms ease;
    transition: left 500ms ease;
  }
  /* End pop up box */
  /* index page */
  .index_page {
    padding: 7px 0;
    float: left;
    width: 940px;
    display: inline;
  }
  .index_page .frame_content {
    padding: 23px 0;
    float: left;
    width: 940px;
    display: inline;
  }
  /* frontpage_belowfold */
  .index_page .frontpage_belowfold {
    width: 964px;
    float: left;
    display: inline;
  }
  .index_page .frontpage_belowfold .frontpage_row {
    border-bottom: 1px solid #ccc;
    height: 290px;
  }
  .index_page .frontpage_belowfold .frontpage_row > .frontpage_quadrant {
    max-height: 245px;
  }
  .index_page .frontpage_belowfold .frontpage_quadrant {
    width: 455px;
    float: left;
    padding: 6px 10px 13px 0;
    display: inline;
    border-right: 1px solid #ccc;
    margin-top: 15px;
  }
  .index_page .frontpage_belowfold .frontpage_quadrant {
    float: left;
    width: 471px;
    padding: 0px;
  }
  .index_page .frontpage_belowfold .frontpage_quadrant.left {
    padding-right: 10px;
  }
  .index_page .frontpage_belowfold .frontpage_quadrant.right {
    padding-left: 10px;
    border-right: none;
  }
  .index_page .frontpage_belowfold .frontpage_quadrant h3 {
    margin: 0;
    padding: 0;
    font-size: 11px;
    font-family: Helvetica, sans-serif;
    color: #999;
    font-weight: normal;
    text-transform: uppercase;
    width: 400px;
    float: left;
    display: inline;
    padding-bottom: 5px;
  }
  .index_page .frontpage_belowfold .frontpage_quadrant .image_block {
    float: left;
    width: 225px;
    margin: 0 15px 0 0;
    display: inline;
  }
  .index_page .frontpage_belowfold .frontpage_quadrant .image_block img {
    background: white;
    border: 1px solid #E8E8E8;
    width: 216px;
    height: 162px;
    padding: 4px;
    display: inline;
    display: block;
  }
  .index_page .frontpage_belowfold .frontpage_quadrant .txt_block {
    float: left;
    width: 205px;
  }
  .index_page .frontpage_belowfold .frontpage_quadrant .txt_block h4 {
    margin: 0;
    float: left;
    width: 220px;
    font-size: 16px;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #333;
    font-weight: normal;
  }
  .index_page .frontpage_belowfold .frontpage_quadrant .txt_block h4 a {
    margin: 0;
    padding: 0 0 14px;
    float: left;
    width: 220px;
    font-size: 18px;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #333;
    font-weight: normal;
  }
  .index_page .frontpage_belowfold .frontpage_quadrant .txt_block h4 a:hover {
    color: #900;
  }
  .index_page .frontpage_belowfold .frontpage_quadrant .txt_block p {
    margin: 0;
    color: #333;
    line-height: 16px;
  }
  .index_page .frontpage_belowfold .frontpage_quadrant .txt_block p a {
    /*color:#333;*/
    /*text-decoration:underline;*/
  }
  .index_page .frontpage_belowfold .frontpage_quadrant .txt_block .light_gray {
    color: #666;
    display: inline;
  }
  .index_page .frontpage_belowfold .frontpage_quadrant .txt_block .dark_gray {
    color: #333;
    display: inline;
  }
  .index_page .frontpage_quadrant#our_mission {
    float: left;
    border-right: none;
  }
  .index_page .frontpage_quadrant#our_mission .grey_box {
    padding: 10px 20px;
    background: #707070;
    border: 1px solid #AAA;
    float: left;
  }
  .index_page .frontpage_quadrant#our_mission p {
    margin: 0 0 5px;
    font-size: 18px;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #b7b7b7;
    line-height: 26px;
  }
  .index_page .frontpage_quadrant#our_mission p a {
    color: #a01111;
  }
  .index_page .txt_block#recent_news {
    width: 471px;
  }
  /* twitter stream */
  .index_page .twitter_stream {
    float: left;
    width: 213px;
    color: #333;
    line-height: 13px;
    font-size: 11px;
    padding-right: 10px;
  }
  .index_page .twitter_stream iframe {
    height: 250px;
    overflow: hidden;
  }
  /* facebook likebox */
  .index_page .frontpage_belowfold .frontpage_quadrant.right .facebook_likebox {
    margin-left: 10px;
    max-width: 235px;
    height: 220px;
    border: 1px solid #AAA;
    background: white;
    float: left;
    overflow: hidden;
    display: block;
  }
  .index_page .frontpage_belowfold .frontpage_quadrant.right .facebook_likebox span iframe {
    height: 217px !important;
  }
  /* end facebook */
}
#content.about_page {
  padding: 14px 0;
  clear: both;
}
#content.about_page .our_mission {
  border: 1px solid #AAA;
  padding: 10px;
  background: #707070;
  color: #B7B7B7;
  margin-bottom: 10px;
}
#content.about_page .our_mission p {
  font-size: 18px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #b7b7b7;
  padding: 0px;
  line-height: 24px;
}
#content.about_page .slideshows_block {
  border-bottom: 1px solid #CCC;
  padding-top: 15px;
  padding-bottom: 24px;
  display: block;
  clear: left;
}
#content.about_page .left_frame {
  width: 90%;
  display: block;
  margin: 0 auto;
  *zoom: 1;
}
#content.about_page .left_frame:before,
#content.about_page .left_frame:after {
  content: "";
  display: table;
}
#content.about_page .left_frame:after {
  clear: both;
}
#content.about_page .left_frame:before,
#content.about_page .left_frame:after {
  display: table;
  content: "";
}
#content.about_page .left_frame:after {
  clear: both;
}
#content.about_page .left_frame label.grey {
  font-family: Helvetica, sans-serif;
  font-size: 11px;
  padding: 5px 0;
  color: #999;
  display: block;
}
#content.about_page .left_frame .paragraph_bordered {
  width: 100%;
}
#content.about_page .left_frame .half_width {
  width: 100%;
}
#content.about_page .left_frame .white_block {
  padding: 20px 20px 0;
  background: white;
  border-radius: 5px;
  margin-bottom: 10px;
  *zoom: 1;
}
#content.about_page .left_frame .white_block:before,
#content.about_page .left_frame .white_block:after {
  content: "";
  display: table;
}
#content.about_page .left_frame .white_block:after {
  clear: both;
}
#content.about_page .left_frame .white_block:before,
#content.about_page .left_frame .white_block:after {
  display: table;
  content: "";
}
#content.about_page .left_frame .white_block:after {
  clear: both;
}
#content.about_page .left_frame .white_block .text_block {
  font-size: 13px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #333;
}
#content.about_page .left_frame .white_block .featured_member {
  height: 165px;
}
#content.about_page .left_frame .white_block .featured_member .photo {
  position: relative;
  top: -44px;
}
#content.about_page .left_frame .white_block img {
  width: 150px;
  float: left;
  margin-right: 10px;
}
#content.about_page .left_frame .white_block span.quote {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: normal;
  padding: 5px 0;
  color: #333;
  clear: both;
}
#content.about_page .left_frame .white_block .slideshow {
  min-height: 205px;
  display: block;
  clear: both;
}
#content.about_page .left_frame .white_block .cube {
  float: right;
  margin: 10px 0;
  padding: 0;
  display: inline;
  z-index: 100;
  *zoom: 1;
}
#content.about_page .left_frame .white_block .cube:before,
#content.about_page .left_frame .white_block .cube:after {
  content: "";
  display: table;
}
#content.about_page .left_frame .white_block .cube:after {
  clear: both;
}
#content.about_page .left_frame .white_block .cube:before,
#content.about_page .left_frame .white_block .cube:after {
  display: table;
  content: "";
}
#content.about_page .left_frame .white_block .cube:after {
  clear: both;
}
#content.about_page .left_frame .white_block .cube a {
  float: left;
  margin: 0 5px 0 0;
  display: block;
  background: url(../images/featured_grey_box.gif) no-repeat;
  width: 12px;
  height: 12px;
  text-decoration: none;
  text-indent: -9999px;
}
#content.about_page .left_frame .white_block .cube a.activeSlide,
#content.about_page .left_frame .white_block .cube a:hover {
  background: url(../images/featured_orange_box.gif) no-repeat;
}
#content.about_page .left_frame .white_block .photo {
  float: left;
}
#content.about_page .left_frame p.orange {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: bold;
  padding-bottom: 5px;
  color: #f63;
  display: block;
}
#content.about_page p {
  padding-bottom: 10px;
}
#content.about_page .right_frame {
  display: block;
  width: 90%;
  margin: 0 auto;
}
#content.about_page .right_frame h3 {
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}
#content.about_page .right_frame ul.staff_list {
  list-style-type: none;
  color: #1A1A1A;
  float: left;
  padding: 0;
}
#content.about_page .right_frame ul.staff_list a {
  color: #F63;
}
#content.about_page .right_frame ul.staff_list li {
  padding-bottom: 10px;
}
#content.about_page .right_frame ul.staff_list li p {
  padding: 0;
  margin: 0 0 10px;
}
#content.about_page .right_frame ul.staff_list .more_text {
  display: none;
}
#content.about_page .right_frame ul.staff_list .less_link {
  display: none;
}
@media screen and (min-width: 960px) {
  #content.about_page {
    *zoom: 1;
    width: 964px;
  }
  #content.about_page:before,
  #content.about_page:after {
    content: "";
    display: table;
  }
  #content.about_page:after {
    clear: both;
  }
  #content.about_page:before,
  #content.about_page:after {
    display: table;
    content: "";
  }
  #content.about_page:after {
    clear: both;
  }
  #content.about_page .left_frame {
    /* display: inline; */
    float: left;
    width: 72.91666666666666%;
    margin: 0 1.0416666666666665%;
  }
  #content.about_page .left_frame .slideshows_block {
    *zoom: 1;
  }
  #content.about_page .left_frame .slideshows_block:before,
  #content.about_page .left_frame .slideshows_block:after {
    content: "";
    display: table;
  }
  #content.about_page .left_frame .slideshows_block:after {
    clear: both;
  }
  #content.about_page .left_frame .slideshows_block:before,
  #content.about_page .left_frame .slideshows_block:after {
    display: table;
    content: "";
  }
  #content.about_page .left_frame .slideshows_block:after {
    clear: both;
  }
  #content.about_page .left_frame .slideshows_block .slideshow {
    min-height: 135px;
  }
  #content.about_page .left_frame .half_width {
    /* display: inline; */
    float: left;
    width: 47.91666666666667%;
    margin: 0 1.0416666666666665%;
  }
  #content.about_page .right_frame {
    margin-top: 10px;
    /* display: inline; */
    float: left;
    width: 22.916666666666664%;
    margin: 0 1.0416666666666665%;
    display: block;
  }
}
#content.campaign_page {
  clear: both;
}
#content.campaign_page .campaign_areas {
  text-transform: uppercase;
  color: #999;
  font-weight: bold;
  margin-top: 15px;
}
#content.campaign_page .take_action {
  color: white;
}
#content.campaign_page .little_white_box.shadow ul.link {
  margin: 0;
  padding: 0;
  list-style: none;
}
#content.campaign_page .little_white_box.shadow ul.link li.first {
  background: none;
  clear: both;
}
#content.campaign_page .little_white_box.shadow ul.link > li {
  padding: 10px 0;
  border-bottom: 1px solid #D4D4D4;
}
#content.campaign_page .little_white_box.shadow ul.link > li a {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #1a1a1a;
  text-decoration: none;
  display: block;
  font-size: 14px;
  font-weight: bold;
}
#content.campaign_page .little_white_box.shadow ul.link > li .content_box {
  margin-top: 10px;
  padding-top: 10px;
  background: url(../images/right_box_separator_dotted.gif) repeat-x;
}
#content.campaign_page .little_white_box.shadow ul.link > li .content_box ul.link_descriptions {
  margin: 0;
  padding: 0;
  list-style: none;
}
#content.campaign_page .little_white_box.shadow ul.link > li .content_box ul.link_descriptions li {
  background: none;
  border: none;
}
#content.campaign_page .little_white_box.shadow ul.link > li .content_box ul.link_descriptions li a {
  font-size: 12px;
  font-weight: normal;
}
#content.campaign_page .little_white_box.shadow ul.link > li .header_box {
  padding: 0 10px;
  position: relative;
}
#content.campaign_page .little_white_box.shadow ul.link > li .header_box label {
  padding: 0;
  color: #1A1A1A;
  max-width: 140px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: bold;
}
#content.campaign_page .little_white_box.shadow ul.link > li .header_box a.arrow_down {
  position: absolute;
  right: 10px;
  bottom: 6px;
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
  padding: 0;
}
#content.campaign_page .little_white_box.shadow ul.link > li .header_box a.arrow_up {
  position: absolute;
  right: 10px;
  bottom: 6px;
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
  padding: 0;
}
#content.campaign_page .little_white_box.shadow ul.link li.last {
  border: none;
}
#content.campaign_page .little_white_box.shadow .link .button {
  clear: both;
  color: white;
}
#content.campaign_page .image .meta {
  color: #999;
  margin-top: 3px;
  display: block;
}
#content.campaign_page p#campaign_start_date {
  font-style: normal;
  text-transform: uppercase;
}
#content.campaign_page .campaign_title {
  padding: 5px 0;
  margin: 4px 0px;
  padding: 5px 10px 0 10px;
}
@media screen and (min-width: 960px) {
  #content.campaign_page ul.link {
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline;
  }
  #content.campaign_page ul.link li.first {
    background: none;
  }
  #content.campaign_page ul.link > li {
    display: inline;
    float: left;
    margin: 4px 0px;
    border-bottom: 1px solid #D4D4D4;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #content.campaign_page ul.link > li .content_box {
    float: left;
    padding: 10px 20px 2px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #content.campaign_page ul.link > li .header_box {
    float: left;
    padding: 0px 15px;
    width: 100%;
    max-width: 190px;
  }
  #content.campaign_page ul.link > li .header_box label {
    padding: 0;
    color: #1A1A1A;
    float: left;
    width: 140px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 14px;
    font-weight: bold;
  }
  #content.campaign_page ul.link > li .header_box a.arrow_down {
    position: absolute;
    right: 10px;
    bottom: 6px;
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid black;
  }
  #content.campaign_page ul.link > li .header_box a.arrow_up {
    position: absolute;
    right: 10px;
    bottom: 6px;
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid black;
  }
  #content.campaign_page ul.link li.last {
    border: none;
  }
  #content.campaign_page ul.link_descriptions {
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  #content.campaign_page ul.link_descriptions li {
    background: none;
    display: inline;
    width: 100%;
    float: left;
    border: none;
    font-size: 12px;
  }
  #content.campaign_page .campaign_title {
    padding-left: 0;
  }
}
@media screen and (min-width: 960px) {
  .campaign_areas {
    text-transform: uppercase;
    color: #999;
    font-weight: bold;
    margin-top: 15px;
  }
  p#campaign_start_date {
    font-style: normal;
    text-transform: uppercase;
  }
  .text {
    float: right;
    width: 450px;
  }
  ul.link {
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline;
  }
  ul.link li.first {
    background: none;
  }
  ul.link > li {
    display: inline;
    float: left;
    margin: 4px 0px;
    border-bottom: 1px solid #D4D4D4;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  ul.link > li .content_box {
    float: left;
    padding: 10px 20px 2px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  ul.link > li .header_box {
    float: left;
    padding: 0px 15px;
    width: 100%;
    max-width: 190px;
  }
  ul.link > li .header_box label {
    padding: 0;
    color: #1A1A1A;
    float: left;
    width: 140px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 14px;
    font-weight: bold;
  }
  ul.link > li .header_box a.arrow_down {
    position: absolute;
    right: 10px;
    bottom: 6px;
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid black;
  }
  ul.link > li .header_box a.arrow_up {
    position: absolute;
    right: 10px;
    bottom: 6px;
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid black;
  }
  ul.link li.last {
    border: none;
  }
  ul.link_descriptions {
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  ul.link_descriptions li {
    background: none;
    display: inline;
    width: 100%;
    float: left;
    border: none;
    font-size: 12px;
  }
}
/* page Blog */
.blog_page .frame_content {
  display: block;
  /* display: inline; */
  float: left;
  width: 97.91666666666666%;
  margin: 0 1.0416666666666665%;
  margin-top: 20px;
}
/* left frame */
.blog_page .frame_content .left_frame {
  margin: 0 auto;
  width: 90%;
  display: block;
}
.blog_page .frame_content .left_frame .blog_post {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}
.blog_page .frame_content .left_frame .blog_post .post_header {
  width: 100%;
}
.blog_page .frame_content .left_frame .blog_post .post_header span.date {
  font-size: 10px;
  font-family: Helvetica, sans-serif;
  color: #333;
  padding: 0 0 10px;
  display: block;
}
.blog_page .frame_content .left_frame .blog_post .post_header .block_title {
  font-size: 18px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #333;
  margin-bottom: 10px;
  z-index: 101;
  position: relative;
}
.blog_page .frame_content .left_frame .blog_post .post_header .block_title a {
  font-size: 18px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #333;
  float: left;
  padding: 0 0 17px;
  display: inline;
}
.blog_page .frame_content .left_frame .blog_post .post_block .social_share {
  clear: left;
}
.blog_page .frame_content .left_frame .blog_post .post_block .image_block {
  float: right;
  background: white;
  padding: 2px;
  border: 1px solid #999;
  width: 215px;
  margin-left: 10px;
}
.blog_page .frame_content .left_frame .blog_post .post_block .image_override {
  clear: both;
  margin: 0 auto 10px;
  width: auto;
  text-align: center;
}
.blog_page .frame_content .left_frame .blog_post .post_block .image_override iframe {
  clear: both;
}
.blog_page .frame_content .left_frame .blog_post.white_block {
  padding: 10px 20px;
  background: white;
  border-radius: 5px;
}
.blog_page .frame_content .left_frame .blog_post.white_block .post_block .image_block {
  float: left;
  margin-right: 10px;
  margin-left: 0px;
}
.blog_page.post_search .blog_post.white_block {
  width: 83%;
  background: none;
  border: none;
  padding: 20px 0;
  box-shadow: none;
  border-bottom: 1px solid #CCC;
}
.blog_page.post_search .frame_content .left_frame .content_title .search_term {
  color: #9a679a;
  font-style: italic;
}
/* regular blog posts */
.blog_page .frame_content .left_frame .blog_post .post_block .text_block {
  float: left;
}
.blog_page .frame_content .left_frame .blog_post .post_block .text_block p {
  padding-bottom: 10px;
  float: none;
}
.blog_page .frame_content .left_frame .blog_post span.more {
  font-size: 13px;
}
.blog_page .frame_content .left_frame .blog_post span.more a {
  color: #990000;
  text-decoration: none;
}
.blog_page .frame_content .left_frame .blog_post .bottom {
  margin: 5px 0px;
}
.blog_page .frame_content .left_frame .blog_post .bottom span.tags {
  font-size: 11px;
  color: #333;
}
.blog_page .frame_content .left_frame .blog_post .bottom a {
  font: 11px sans-serif;
  color: #333333;
}
.blog_page .frame_content .left_frame .blog_post .social_share .st_sharethis_custom {
  background: url(../images/ico_share.png) no-repeat scroll left top transparent;
  padding: 0px 60px 7px 0;
  position: relative;
  top: -3px;
}
.blog_page .frame_content .left_frame .blog_post .social_share .social_comments {
  position: relative;
  top: 5px;
}
.blog_page .frame_content .left_frame .blog_post .social_share .social_comment_count {
  position: relative;
  left: -17px;
  top: -5px;
}
/* end regular blog posts */
p.pagination {
  float: none;
  clear: left;
  text-align: center;
  padding-top: 10px;
}
.blog_page .right_frame {
  display: block;
  width: 90%;
  margin: 0 auto;
  float: none;
}
.blog_page .right_frame {
  *zoom: 1;
}
.blog_page .right_frame:before,
.blog_page .right_frame:after {
  content: "";
  display: table;
}
.blog_page .right_frame:after {
  clear: both;
}
.blog_page .right_frame:before,
.blog_page .right_frame:after {
  display: table;
  content: "";
}
.blog_page .right_frame:after {
  clear: both;
}
.blog_page .right_frame .rss_feed_block {
  color: #9a679a;
  padding: 10px 5px;
}
.blog_page .right_frame .rss_feed_block ul {
  list-style-type: none;
  padding: 0;
}
.blog_page .right_frame .rss_feed_block img {
  vertical-align: middle;
}
.blog_page .right_frame .rss_feed_block li {
  padding: 0;
  margin-bottom: 5px;
}
.blog_page .right_frame .rss_feed_block li.last {
  margin: 0;
}
.blog_page .right_frame #search_block {
  display: block;
  width: 100%;
}
.blog_page .right_frame #search_block form input {
  vertical-align: middle;
}
.blog_page .right_frame #search_block form input[type=text] {
  width: 73%;
}
.blog_page .right_frame .little_text_block {
  padding: 12px 0;
  display: block;
}
.blog_page .right_frame .little_text_block label {
  font-size: 14px;
  font-weight: bold;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #1a1a1a;
  padding: 0 0 20px 0;
}
.blog_page .right_frame .little_text_block p {
  font-size: 12px;
  font-family: Helvetica, sans-serif;
  color: #1a1a1a;
  margin: 0 0 2px;
}
.blog_page .right_frame .little_text_block p a {
  font-size: 12px;
  font-family: Helvetica, sans-serif;
}
.blog_page .right_frame .tags_block {
  display: none;
}
.blog_page .right_frame .tags_block label {
  font-size: 14px;
  display: block;
  font-weight: bold;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #1a1a1a;
  padding: 0 0 10px 0;
}
.blog_page .right_frame .tags_block ul {
  margin: 0 0 10px 0;
  padding: 0;
  list-style: none;
}
.blog_page .right_frame .tags_block ul li {
  display: block;
  margin: 0 5px 0 0;
}
.blog_page .right_frame .tags_block ul li a {
  font-size: 12px;
  font-family: Helvetica, sans-serif;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 20px;
}
.blog_page .right_frame .tags_block ul li a.important {
  font-size: 16px;
  font-family: Helvetica, sans-serif;
  color: #1a1a1a;
}
.blog_page .right_frame .tags_block a.read_more {
  /*text-decoration:underline;*/
  font-size: 12px;
  font-family: Helvetica, sans-serif;
  color: #1a1a1a;
}
.blog_page .right_frame .tags_block a.read_more:hover {
  text-decoration: none;
}
/* end tags */
/* latest actions */
.blog_page .right_frame .latest_actions_block {
  border: 1px solid #D4D4D4;
  border-radius: 5px;
  background: white;
  display: block;
  *zoom: 1;
}
.blog_page .right_frame .latest_actions_block:before,
.blog_page .right_frame .latest_actions_block:after {
  content: "";
  display: table;
}
.blog_page .right_frame .latest_actions_block:after {
  clear: both;
}
.blog_page .right_frame .latest_actions_block:before,
.blog_page .right_frame .latest_actions_block:after {
  display: table;
  content: "";
}
.blog_page .right_frame .latest_actions_block:after {
  clear: both;
}
.blog_page .right_frame .latest_actions_block .title h2 {
  margin: 0;
  padding: 10px;
  display: block;
  font-size: 12px;
  color: #969;
  text-transform: uppercase;
  font-weight: normal;
}
.blog_page .right_frame .latest_actions_block .actions_list .blog_page .right_frame .latest_actions_block .actions_list a.arrow_down {
  background: url(../images/arrow_down_last_page.gif) no-repeat 50% 2px;
  text-decoration: none;
  margin-left: 100px;
}
.blog_page .right_frame .latest_actions_block .actions_list .blog_page .right_frame .latest_actions_block .actions_list a.arrow_up {
  background: url(../images/arrow_down_last_page.gif) no-repeat 50% 2px;
  text-decoration: none;
  margin-left: 100px;
}
.blog_page .right_frame .latest_actions_block .actions_list ul {
  margin: 0;
  padding: 0 10px;
  list-style: none;
  display: block;
}
.blog_page .right_frame .latest_actions_block .actions_list ul li {
  margin: 0 0 5px;
  padding: 0;
  display: block;
}
.blog_page .right_frame .latest_actions_block .actions_list ul li span.info {
  font-size: 14px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: normal;
}
.blog_page .right_frame .latest_actions_block .actions_list ul li span.info span.black {
  color: #333;
}
.blog_page .right_frame .latest_actions_block .actions_list ul li span.info a.violet {
  color: #969;
  margin: 0 0 0 2px;
}
.blog_page .right_frame .latest_actions_block .actions_list ul li span.elapsed_time {
  color: #999;
  font-family: Georgia, "Times New Roman", Times, serif;
  display: block;
}
.blog_page .right_frame .latest_actions_block .actions_list ul li span.quote_top {
  background: url(../images/quote_up.png);
  width: 12px;
  height: 14px;
  margin-left: 20px;
  display: block;
}
.blog_page .right_frame .latest_actions_block .actions_list ul li span.quote_text {
  height: 40px;
  display: block;
  padding: 10px;
  color: #fff;
  font-size: 12px;
  font-family: helvetica;
  background: #9a679a;
  border-radius: 2px;
}
.blog_page .right_frame .latest_actions_block .actions_list ul li a.remove_comment_link {
  color: red;
  padding: 1px 5px;
}
.blog_page .right_frame .latest_actions_block .actions_list ul li.last {
  background: none;
  margin: 0;
  padding: 0;
}
.blog_page .frame_content .right_frame .blog_archive_block {
  border-top: 1px solid #ccc;
  padding: 20px 0;
  display: block;
}
.blog_page .frame_content .right_frame .blog_archive_block label {
  font-size: 14px;
  font-weight: bold;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #1a1a1a;
  padding: 0 0 20px 0;
  display: block;
}
.blog_page .frame_content .right_frame .blog_archive_block .little_white_box {
  background: white;
  border-radius: 5px;
  width: 100%;
}
.blog_page .frame_content .right_frame .blog_archive_block .little_white_box .top {
  height: 6px;
  line-height: 6px;
}
.blog_page .frame_content .right_frame .blog_archive_block .little_white_box .bottom {
  height: 6px;
  line-height: 6px;
}
.blog_page .frame_content .right_frame .blog_archive_block ul.year {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog_page .frame_content .right_frame .blog_archive_block ul.year li {
  margin: 0 0 5px 0;
  background: url(../images/right_box_separator_solid.gif) no-repeat;
}
.blog_page .frame_content .right_frame .blog_archive_block ul.year li.first {
  background: none;
}
.blog_page .frame_content .right_frame .blog_archive_block ul.year li .header_box {
  padding: 0 10px;
  position: relative;
}
.blog_page .frame_content .right_frame .blog_archive_block ul.year li .header_box label {
  padding: 0;
  color: #1A1A1A;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: bold;
}
.blog_page .frame_content .right_frame .blog_archive_block ul.year li .header_box a.arrow_up {
  position: absolute;
  right: 10px;
  bottom: 6px;
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
}
.blog_page .frame_content .right_frame .blog_archive_block ul.year li .header_box a.arrow_down {
  position: absolute;
  right: 10px;
  bottom: 6px;
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
}
.blog_page .frame_content .right_frame .blog_archive_block ul.year a {
  font-size: 12px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #1a1a1a;
  text-decoration: none;
}
.blog_page .frame_content .right_frame .blog_archive_block ul.year .content_box {
  background: url(../images/right_box_separator_dotted.gif) no-repeat;
  padding: 10px 20px 2px;
  width: 100%;
  display: none;
}
.blog_page .frame_content .right_frame .blog_archive_block ul.year .content_box ul.month {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog_page .frame_content .right_frame .blog_archive_block ul.year .content_box ul.month li {
  background: none;
}
@media screen and (min-width: 960px) {
  .popup#blog_popup .reveal_tab {
    /*float:left;*/
    position: relative;
    left: 0px;
    /*by default, animated to the right on click*/
    width: 55px;
    /* was 45px, 55px with shadow */
    height: 140px;
    /* was 120px, 140px with shadow */
    top: 1px;
    display: block;
    background: url(../images/popup_side_join_us_purple_shadow.png) no-repeat;
    text-indent: -9999px;
    margin-top: -1px;
    /* added negative margin for shadow */
    cursor: pointer;
  }
  .blog_page .frame_content .left_frame {
    margin: 0 auto;
    width: 90%;
    display: block;
  }
  .blog_page .frame_content .left_frame .title {
    float: left;
    width: 710px;
    padding-bottom: 10px;
    display: inline;
  }
  .blog_page .frame_content .left_frame .title label a {
    font-size: 11px;
    color: #999;
  }
  .blog_page .frame_content .left_frame .content_title {
    width: 650px;
    background: white;
    padding: 10px 20px;
    color: #333;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 24px;
    border-radius: 5px;
  }
  .blog_page.post_search .blog_post.white_block {
    /* override white background settings for featured posts on search page */
    width: 700px!important;
    background: none !important;
    border: none !important;
    padding: 20px 0 !important;
    box-shadow: none;
    border-bottom: 1px solid #CCC !important;
  }
  .blog_page.post_search .frame_content .left_frame .content_title .search_term {
    color: #9a679a;
    font-style: italic;
  }
  /* regular blog posts */
  .blog_page .frame_content .left_frame .blog_post {
    float: left;
    width: 700px;
    padding: 20px 0;
    display: inline;
    border-bottom: 1px solid #ccc;
  }
  .blog_page .frame_content .left_frame .blog_post .post_header {
    float: left;
    width: 710px;
  }
  .blog_page .frame_content .left_frame .blog_post .post_header span.date {
    font-size: 10px;
    font-family: Helvetica, sans-serif;
    color: #333;
    width: 710px;
    float: left;
    padding: 0 0 10px;
  }
  .blog_page .frame_content .left_frame .blog_post .post_header .block_title a {
    font-size: 24px;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #333;
    width: 710px;
    float: left;
    padding: 0 0 17px;
    display: inline;
  }
  .blog_page .frame_content .left_frame .blog_post .post_block .image_block {
    float: right;
    background: white;
    padding: 2px;
    border: 1px solid #999;
    width: 215px;
    margin-left: 10px;
  }
  .blog_page .frame_content .left_frame .blog_post.white_block .post_block .image_block {
    float: left;
    margin-right: 10px;
    margin-left: 0px;
  }
  .blog_page .frame_content .left_frame .blog_post .post_block .image_override {
    clear: both;
    margin: 0 auto 10px;
    width: auto;
    text-align: center;
  }
  .blog_page .frame_content .left_frame .blog_post .post_block .image_override iframe {
    clear: both;
  }
  .blog_page .frame_content .left_frame .blog_post .post_block .text_block {
    float: left;
  }
  .blog_page .frame_content .left_frame .blog_post .post_block .text_block p {
    padding-bottom: 10px;
    float: none;
  }
  .blog_page .frame_content .left_frame .blog_post span.more {
    font-size: 13px;
    float: left;
  }
  .blog_page .frame_content .left_frame .blog_post span.more a {
    color: #990000;
    text-decoration: none;
  }
  .blog_page .frame_content .left_frame .blog_post .bottom {
    float: left;
    clear: left;
    width: 670px;
    margin: 5px 0px;
  }
  .blog_page .frame_content .left_frame .blog_post .bottom span.tags {
    font-size: 11px;
    color: #333;
  }
  .blog_page .frame_content .left_frame .blog_post .bottom a {
    font: 11px sans-serif;
    color: #333333;
    /*text-decoration:underline;*/
  }
  .blog_page .frame_content .left_frame .blog_post {
    float: left;
    display: inline;
  }
  .blog_page .frame_content .left_frame .blog_post .comments {
    color: #820101!important;
    text-decoration: none!important;
  }
  .blog_page .frame_content .left_frame .blog_post .social_share {
    clear: left;
  }
  .blog_page .frame_content .left_frame .blog_post .social_share .st_sharethis_custom {
    background: url(../images/ico_share.png) no-repeat scroll left top transparent;
    padding: 0px 60px 7px 0;
    position: relative;
    top: -3px;
  }
  .blog_page .frame_content .left_frame .blog_post .social_share .social_comments {
    position: relative;
    top: 5px;
  }
  .blog_page .frame_content .left_frame .blog_post .social_share .social_comment_count {
    position: relative;
    left: -17px;
    top: -5px;
  }
  /* end regular blog posts */
  /* featured blog posts posts */
  .blog_page .frame_content .left_frame .blog_post.white_block {
    float: left;
    width: 690px;
    background: white;
    border-radius: 5px;
  }
  .blog_page .frame_content .left_frame .blog_post.white_block .top_border {
    float: left;
    width: 710px;
    height: 6px;
    line-height: 6px;
  }
  .blog_page .frame_content .left_frame .blog_post.white_block {
    float: left;
    padding: 10px 20px;
    display: inline;
    width: 660px;
  }
  .blog_page .frame_content .left_frame .blog_post.white_block .post_header {
    float: left;
    width: 660px;
  }
  .blog_page .frame_content .left_frame .blog_post.white_block .post_header span.date {
    font-size: 10px;
    font-family: Helvetica, sans-serif;
    color: #333;
    width: 660px;
    float: left;
    padding: 0 0 10px;
  }
  .blog_page .frame_content .left_frame .blog_post.white_block .post_header .block_title a {
    font-size: 24px;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #333;
    width: 660px;
    float: left;
    padding: 0 0 17px;
    display: inline;
  }
  .blog_page .frame_content .left_frame .blog_post.white_block .post_header .block_title {
    font-size: 24px;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #333;
    width: 660px;
    float: left;
    display: inline;
    margin-bottom: 10px;
  }
  .blog_page .frame_content .left_frame .blog_post.white_block .bottom_border {
    float: left;
    width: 710px;
    height: 6px;
    line-height: 6px;
  }
  .blog_page #disqus_thread {
    color: black;
  }
  p.pagination {
    float: none;
    clear: left;
    text-align: center;
    padding-top: 10px;
  }
  .blog_page .frame_content {
    padding: 10px 0;
    float: left;
    width: 940px;
    display: inline;
  }
  /*left frame */
  .blog_page .frame_content .left_frame {
    margin: 0 15px 0 0;
    width: 714px;
    float: left;
    display: inline;
  }
  /* end left frame*/
  /* right frame*/
  .blog_page .frame_content .right_frame {
    display: block;
    float: left;
    width: 210px;
    margin-top: 0px;
  }
  .blog_page .right_frame {
    margin: 25px 0 0;
  }
  .blog_page .right_frame .rss_feed_block {
    color: #9a679a;
    padding: 10px 5px;
  }
  .blog_page .right_frame .rss_feed_block img {
    vertical-align: middle;
  }
  .blog_page .right_frame #search_block form input {
    vertical-align: middle;
  }
  .blog_page .right_frame #search_block form input[type=text] {
    width: 56%;
    border-radius: 0;
  }
  .blog_page .right_frame #search_block form button.button {
    font-size: 9px;
  }
  .blog_page .frame_content .right_frame .little_text_block {
    float: left;
    width: 210px;
    padding: 12px 0;
    display: inline;
  }
  .blog_page .frame_content .right_frame .little_text_block label {
    font-size: 14px;
    font-weight: bold;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #1a1a1a;
    padding: 0 0 20px 0;
    float: left;
    width: 210px;
  }
  .blog_page .frame_content .right_frame .little_text_block p {
    font-size: 12px;
    font-family: Helvetica, sans-serif;
    color: #1a1a1a;
    margin: 0 0 2px;
  }
  .blog_page .frame_content .right_frame .little_text_block p a {
    font-size: 12px;
    font-family: Helvetica, sans-serif;
    /*color:#1a1a1a;*/
    /*text-decoration:underline;*/
  }
  /* tags block */
  .blog_page .frame_content .right_frame .tags_block {
    border-top: 1px solid #ccc;
    float: left;
    width: 210px;
    padding: 20px 0;
    display: inline;
  }
  .blog_page .frame_content .right_frame .tags_block label {
    font-size: 14px;
    font-weight: bold;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #1a1a1a;
    padding: 0 0 10px 0;
    float: left;
    width: 210px;
  }
  .blog_page .frame_content .right_frame .tags_block ul {
    float: left;
    width: 210px;
    margin: 0 0 10px 0;
    padding: 0;
    list-style: none;
  }
  .blog_page .frame_content .right_frame .tags_block ul li {
    display: inline;
    margin: 0 5px 0 0;
  }
  .blog_page .frame_content .right_frame .tags_block ul li a {
    font-size: 12px;
    font-family: Helvetica, sans-serif;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 20px;
  }
  .blog_page .frame_content .right_frame .tags_block ul li a.important {
    font-size: 16px;
    font-family: Helvetica, sans-serif;
    color: #1a1a1a;
  }
  .blog_page .frame_content .right_frame .tags_block a.read_more {
    /*text-decoration:underline;*/
    font-size: 12px;
    font-family: Helvetica, sans-serif;
    color: #1a1a1a;
  }
  .blog_page .frame_content .right_frame .tags_block a.read_more:hover {
    text-decoration: none;
  }
  /* end tags */
  /* latest actions */
  /* latest actions */
  .blog_page .right_frame .latest_actions_block {
    width: 210px;
    float: left;
    *zoom: 1;
  }
  .blog_page .right_frame .latest_actions_block:before,
  .blog_page .right_frame .latest_actions_block:after {
    content: "";
    display: table;
  }
  .blog_page .right_frame .latest_actions_block:after {
    clear: both;
  }
  .blog_page .right_frame .latest_actions_block:before,
  .blog_page .right_frame .latest_actions_block:after {
    display: table;
    content: "";
  }
  .blog_page .right_frame .latest_actions_block:after {
    clear: both;
  }
  .blog_page .right_frame .latest_actions_block .title h2 {
    float: left;
    width: 200px;
    margin: 0;
    padding: 10px;
    display: inline;
    font-size: 12px;
    color: #969;
    text-transform: uppercase;
    font-weight: normal;
  }
  .blog_page .right_frame .latest_actions_block .actions_list {
    float: left;
    width: 200px;
  }
  .blog_page .right_frame .latest_actions_block .actions_list a.arrow_down {
    background: url(../images/arrow_down_last_page.gif) no-repeat 50% 2px;
    text-decoration: none;
    margin-left: 100px;
  }
  .blog_page .right_frame .latest_actions_block .actions_list a.arrow_up {
    background: url(../images/arrow_down_last_page.gif) no-repeat 50% 2px;
    text-decoration: none;
    margin-left: 100px;
  }
  .blog_page .right_frame .latest_actions_block .actions_list ul {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
  }
  .blog_page .right_frame .latest_actions_block .actions_list ul li {
    margin: 0 0 5px;
    padding: 0;
    float: left;
    display: inline;
  }
  .blog_page .right_frame .latest_actions_block .actions_list ul li span.info {
    float: left;
    display: inline;
    padding: 0 10px;
    font-size: 12px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-weight: normal;
  }
  .blog_page .right_frame .latest_actions_block .actions_list ul li span.info span.black {
    color: #333;
    float: left;
  }
  .blog_page .right_frame .latest_actions_block .actions_list ul li span.info a.violet {
    color: #969;
    margin: 0 0 0 2px;
    display: inline;
  }
  .blog_page .right_frame .latest_actions_block .actions_list ul li span.elapsed_time {
    color: #999;
    font-family: Georgia, "Times New Roman", Times, serif;
    display: block;
    float: left;
    font-size: 14px;
    padding: 0px 10px;
  }
  .blog_page .right_frame .latest_actions_block .actions_list ul li span.quote {
    float: left;
    *zoom: 1;
  }
  .blog_page .right_frame .latest_actions_block .actions_list ul li span.quote:before,
  .blog_page .right_frame .latest_actions_block .actions_list ul li span.quote:after {
    content: "";
    display: table;
  }
  .blog_page .right_frame .latest_actions_block .actions_list ul li span.quote:after {
    clear: both;
  }
  .blog_page .right_frame .latest_actions_block .actions_list ul li span.quote:before,
  .blog_page .right_frame .latest_actions_block .actions_list ul li span.quote:after {
    display: table;
    content: "";
  }
  .blog_page .right_frame .latest_actions_block .actions_list ul li span.quote:after {
    clear: both;
  }
  .blog_page .right_frame .latest_actions_block .actions_list ul li span.quote span.quote_top {
    background: url(../images/quote_up.png);
    width: 12px;
    height: 14px;
    margin-left: 20px;
    display: block;
    float: left;
  }
  .blog_page .right_frame .latest_actions_block .actions_list ul li span.quote span.quote_text {
    height: auto;
    float: left;
    width: 190px;
    padding: 5px 10px;
    color: white;
    font-size: 12px;
    font-family: helvetica;
    background: #9A679A;
    border-radius: 2px;
  }
  .blog_page .right_frame .latest_actions_block .actions_list ul li a.remove_comment_link {
    color: red;
    padding: 1px 5px;
  }
  .blog_page .right_frame .latest_actions_block .actions_list ul li.last {
    background: none;
    margin: 0;
    padding: 0;
  }
  /*end latest actions */
  /* blog archive block */
  .blog_page .frame_content .right_frame .blog_archive_block {
    border-top: 1px solid #ccc;
    float: left;
    width: 210px;
    padding: 20px 0;
    display: inline;
  }
  .blog_page .frame_content .right_frame .blog_archive_block label {
    font-size: 14px;
    font-weight: bold;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #1a1a1a;
    padding: 0 0 20px 0;
    float: left;
    width: 210px;
  }
  .blog_page .frame_content .right_frame .blog_archive_block .little_white_box {
    float: left;
    width: 210px;
    background: white;
    border-radius: 5px;
  }
  .blog_page .frame_content .right_frame .blog_archive_block .little_white_box .top {
    float: left;
    width: 213px;
    height: 6px;
    line-height: 6px;
  }
  .blog_page .frame_content .right_frame .blog_archive_block .little_white_box .center {
    float: left;
    width: 213px;
  }
  .blog_page .frame_content .right_frame .blog_archive_block .little_white_box .bottom {
    float: left;
    width: 213px;
    height: 6px;
    line-height: 6px;
  }
  .blog_page .frame_content .right_frame .blog_archive_block ul.year {
    float: left;
    width: 210px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline;
  }
  .blog_page .frame_content .right_frame .blog_archive_block ul.year li {
    display: inline;
    float: left;
    width: 210px;
    margin: 0 0 5px 0;
    background: url(../images/right_box_separator_solid.gif) no-repeat;
  }
  .blog_page .frame_content .right_frame .blog_archive_block ul.year li.first {
    background: none;
  }
  .blog_page .frame_content .right_frame .blog_archive_block ul.year li .header_box {
    float: left;
    padding: 8px 20px 5px 20px;
    width: 170px;
  }
  .blog_page .frame_content .right_frame .blog_archive_block ul.year li .header_box label {
    padding: 0;
    color: #1A1A1A;
    float: left;
    width: 140px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 14px;
    font-weight: bold;
  }
  .blog_page .frame_content .right_frame .blog_archive_block ul.year li a {
    font-size: 12px;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #1a1a1a;
    text-decoration: none;
  }
  .blog_page .frame_content .right_frame .blog_archive_block ul.year li .content_box {
    background: url(../images/right_box_separator_dotted.gif) no-repeat;
    float: left;
    padding: 10px 20px 2px;
    display: inline;
    width: 170px;
  }
  .blog_page .frame_content .right_frame .blog_archive_block ul.year li .content_box ul.month {
    float: left;
    width: 150px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .blog_page .frame_content .right_frame .blog_archive_block ul.year li .content_box ul.month li {
    background: none;
    display: inline;
    width: 150px;
  }
}
#press_releases,
#press_clips {
  list-style: none;
  margin: 0;
  padding: 0;
}
#press_releases .press_release,
#press_clips .press_release,
#press_releases .press_clip,
#press_clips .press_clip {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  -webkit-box-shadow: 0 1px 0 #FFF;
  -moz-box-shadow: 0 1px 0 #FFF;
  box-shadow: 0 1px 0 #FFF;
  *zoom: 1;
}
#press_releases .press_release:before,
#press_clips .press_release:before,
#press_releases .press_clip:before,
#press_clips .press_clip:before,
#press_releases .press_release:after,
#press_clips .press_release:after,
#press_releases .press_clip:after,
#press_clips .press_clip:after {
  content: "";
  display: table;
}
#press_releases .press_release:after,
#press_clips .press_release:after,
#press_releases .press_clip:after,
#press_clips .press_clip:after {
  clear: both;
}
#press_releases .press_release:before,
#press_clips .press_release:before,
#press_releases .press_clip:before,
#press_clips .press_clip:before,
#press_releases .press_release:after,
#press_clips .press_release:after,
#press_releases .press_clip:after,
#press_clips .press_clip:after {
  display: table;
  content: "";
}
#press_releases .press_release:after,
#press_clips .press_release:after,
#press_releases .press_clip:after,
#press_clips .press_clip:after {
  clear: both;
}
#press_releases .press_release.last,
#press_clips .press_release.last,
#press_releases .press_clip.last,
#press_clips .press_clip.last {
  border-bottom: none;
  box-shadow: none;
}
figure {
  position: relative;
}
figcaption {
  position: absolute;
  bottom: 0;
  padding: 5px;
  text-shadow: none;
  background: black;
  background: rgba(0, 0, 0, 0.5);
  display: block;
  color: white;
  font-size: .8em;
  min-width: 100%;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.press_page .frame_content {
  padding: 23px 0;
}
.press_page .frame_content .left_frame {
  display: block;
  margin: 0 auto;
  width: 90%;
}
.press_page .frame_content .left_frame .press_release_text p {
  margin-top: 5px;
  clear: left;
  padding: 0;
}
.press_page .frame_content .left_frame .link_block .list {
  border-top: 1px solid #bebebe;
  border-bottom: 1px solid #bebebe;
  margin-bottom: 15px;
}
.press_page .frame_content .left_frame .link_block .list ul {
  margin: 0;
  padding: 9px 0 0;
  list-style: none;
}
.press_page .frame_content .left_frame .link_block .list ul li {
  border-bottom: 1px dotted #bebebe;
}
.press_page .frame_content .left_frame .link_block .list ul li .pr_content .date_header span.block_title {
  float: none;
}
.press_page .frame_content .left_frame .link_block .list ul li .pr_content .date_header span.date {
  display: block;
  float: none;
}
.press_page .frame_content .left_frame .link_block .list ul li .pr_content .ico {
  float: left;
  width: 30px;
  padding: 4px 0 0;
  display: inline;
}
.press_page .frame_content .left_frame .link_block .list ul li .pr_content .ico img {
  float: left;
  width: 23px;
  height: 28px;
  display: block;
}
.press_page .frame_content .left_frame .link_block .list ul li a {
  color: #333;
  text-decoration: none;
  font-weight: normal;
}
.press_page .frame_content .left_frame .link_block .list ul li a:hover {
  color: #F90;
}
.press_page .frame_content .left_frame .link_block .list ul li span.block_title {
  font-size: 14px;
  font-family: Helvetica, sans-serif;
  color: #333;
  padding: 0;
  display: inline;
}
.press_page .frame_content .left_frame .link_block .list ul li .pr_image {
  border: 1px solid black;
  float: left;
  margin-right: 10px;
}
.press_page .frame_content .left_frame .link_block .list ul li .pr_image img {
  height: 60px;
  width: 60px;
}
.press_page .frame_content .left_frame .link_block .list ul li span.date {
  font-size: 10px;
  font-family: Helvetica, sans-serif;
  text-transform: uppercase;
  color: #333;
  padding: 0 0 5px;
}
.press_page .frame_content .left_frame .link_block .list ul li.last {
  border-bottom: none;
  margin: 0;
}
.press_page .frame_content .left_frame .link_block .right_link {
  float: right;
  padding: 0px 10px;
  display: inline;
}
.press_page .frame_content .left_frame .link_block .right_link a.big_link {
  display: block;
  font-size: 18px;
  font-family: Georgia, "Times New Roman", Times, serif;
  background: url(../images/arrow_left.gif) no-repeat 100% 8px;
  padding: 0 12px;
}
.press_page .frame_content .left_frame .white_box {
  *zoom: 1;
  background: white;
  border-radius: 5px;
  color: black;
  padding: 10px 10px;
  margin-bottom: 10px;
}
.press_page .frame_content .left_frame .white_box:before,
.press_page .frame_content .left_frame .white_box:after {
  content: "";
  display: table;
}
.press_page .frame_content .left_frame .white_box:after {
  clear: both;
}
.press_page .frame_content .left_frame .white_box:before,
.press_page .frame_content .left_frame .white_box:after {
  display: table;
  content: "";
}
.press_page .frame_content .left_frame .white_box:after {
  clear: both;
}
.press_page .frame_content .left_frame .white_box .featured_content img {
  border: 1px solid black;
  background: white;
  padding: 2px;
  margin: 0 auto;
  display: block;
  width: 216px;
  height: 160px;
}
.press_page .frame_content .left_frame .white_box .featured_content p {
  float: none;
  margin-left: 10px;
  padding: 0;
}
.press_page .frame_content .left_frame .white_box .featured_content .more-link {
  display: inline-block;
  margin-top: 10px;
  margin-left: 10px;
}
.press_page .frame_content .left_frame .white_box span.block_title {
  font-size: 20px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #333;
  padding: 0 0 12px;
  display: block;
  margin-bottom: 10px;
}
.press_page .frame_content .left_frame .white_box span.block_title a {
  color: #333;
  text-decoration: none;
  font-weight: normal;
}
.press_page .frame_content .left_frame .white_box span.block_title a:hover {
  color: #F90;
}
.press_page .frame_content .left_frame .white_box span.date {
  font-size: 10px;
  font-family: Helvetica, sans-serif;
  text-transform: uppercase;
  color: #333;
  display: block;
  padding: 0 0 5px;
}
.press_page .frame_content .left_frame .title h3 {
  font-size: 14px;
  font-weight: normal;
  color: #1a1a1a;
  margin: 10px 0 5px 0;
}
.press_page .frame_content .left_frame .title h3.date {
  font-style: italic;
}
.press_page .frame_content .left_frame .title h2 {
  font-size: 24px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: normal;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  padding: 0px;
}
.press_page .frame_content .right_frame {
  display: block;
  margin: 0 auto;
  width: 90%;
  *zoom: 1;
}
.press_page .frame_content .right_frame:before,
.press_page .frame_content .right_frame:after {
  content: "";
  display: table;
}
.press_page .frame_content .right_frame:after {
  clear: both;
}
.press_page .frame_content .right_frame:before,
.press_page .frame_content .right_frame:after {
  display: table;
  content: "";
}
.press_page .frame_content .right_frame:after {
  clear: both;
}
.press_page .frame_content .right_frame .no_border_right {
  border-top: none;
}
.press_page .frame_content .right_frame #search_block {
  display: block;
  width: 100%;
}
.press_page .frame_content .right_frame #search_block form input {
  vertical-align: middle;
}
.press_page .frame_content .right_frame #search_block form input[type=text] {
  width: 56%;
}
.press_page .frame_content .right_frame #search_block form button {
  font-size: 9px;
}
.press_page .frame_content .right_frame .little_text_block {
  margin-top: 40px;
  padding: 0px 0px 10px 0;
  display: block;
}
.press_page .frame_content .right_frame .little_text_block label {
  font-size: 14px;
  font-weight: bold;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #1a1a1a;
}
.press_page .frame_content .right_frame .little_text_block p {
  font-size: 12px;
  font-family: Helvetica, sans-serif;
  color: #1a1a1a;
  margin: 0 0 2px;
}
.press_page .frame_content .right_frame .little_text_block p a {
  font-size: 12px;
  font-family: Helvetica, sans-serif;
}
.press_page .frame_content .right_frame .press_archive_block {
  margin-bottom: 10px;
  display: inline;
}
.press_page .frame_content .right_frame .press_archive_block ul.year {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
.press_page .frame_content .right_frame .press_archive_block ul.year li {
  border-bottom: 1px solid #DDD;
  display: block;
  width: 100%;
  padding: 5px 0;
}
.press_page .frame_content .right_frame .press_archive_block ul.year li:last-child {
  border-bottom: none;
}
.press_page .frame_content .right_frame .press_archive_block ul.year li a {
  font-size: 12px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: normal;
}
.press_page .frame_content .right_frame .press_archive_block ul.year li .content_box {
  background: url(../images/right_box_separator_dotted.gif) no-repeat;
  padding: 0 10px;
}
.press_page .frame_content .right_frame .press_archive_block ul.year li .content_box ul.month {
  margin: 0;
  padding: 0;
  list-style: none;
}
.press_page .frame_content .right_frame .press_archive_block ul.year li .content_box ul.month li {
  background: none;
}
.press_page .frame_content .right_frame .press_archive_block ul.year li .header_box {
  padding: 8px 10px;
  position: relative;
  *zoom: 1;
}
.press_page .frame_content .right_frame .press_archive_block ul.year li .header_box:before,
.press_page .frame_content .right_frame .press_archive_block ul.year li .header_box:after {
  content: "";
  display: table;
}
.press_page .frame_content .right_frame .press_archive_block ul.year li .header_box:after {
  clear: both;
}
.press_page .frame_content .right_frame .press_archive_block ul.year li .header_box:before,
.press_page .frame_content .right_frame .press_archive_block ul.year li .header_box:after {
  display: table;
  content: "";
}
.press_page .frame_content .right_frame .press_archive_block ul.year li .header_box:after {
  clear: both;
}
.press_page .frame_content .right_frame .press_archive_block ul.year li .header_box label {
  padding: 0;
  color: #1A1A1A;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: bold;
}
.press_page .frame_content .right_frame .press_archive_block ul.year li .header_box a.arrow_down {
  position: absolute;
  right: 10px;
  bottom: 8px;
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
}
.press_page .frame_content .right_frame .press_archive_block ul.year li .header_box a.arrow_up {
  position: absolute;
  right: 10px;
  bottom: 8px;
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
}
.press_page .frame_content .right_frame .press_archive_block label {
  font-size: 14px;
  font-weight: bold;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #1a1a1a;
  padding: 0 0 20px 0;
}
.press_page .frame_content .right_frame .press_archive_block .little_white_box {
  background: white;
  border-radius: 4px;
  behavior: url(/static/js/PIE/PIE.htc);
  border: 1px solid #d4d4d4;
}
.press_page .frame_content .right_frame .press_archive_block .little_white_box .bottom {
  height: 6px;
  line-height: 6px;
}
.press_page .frame_content .right_frame .press_archive_block .little_white_box .top {
  height: 6px;
  line-height: 6px;
}
.pr_credit {
  float: left;
  color: #333;
}
.pr_credit a {
  display: inline-block;
}
@media screen and (min-width: 960px) {
  /* page press */
  .press_page {
    width: 964px;
  }
  .press_page .frame_content .left_frame {
    /* display: inline; */
    float: left;
    width: 72.91666666666666%;
    margin: 0 1.0416666666666665%;
  }
  .press_page .frame_content .left_frame .white_box .featured_content img {
    float: left;
    margin: 0 10px 0 0;
  }
  .press_page .frame_content .left_frame .white_box .featured_content p {
    margin-left: 10px;
  }
  .press_page .frame_content .right_frame {
    /* display: inline; */
    float: left;
    width: 22.916666666666664%;
    margin: 0 1.0416666666666665%;
  }
  .press_page .frame_content .right_frame .little_text_block {
    margin-top: 0;
    *zoom: 1;
  }
  .press_page .frame_content .right_frame .little_text_block:before,
  .press_page .frame_content .right_frame .little_text_block:after {
    content: "";
    display: table;
  }
  .press_page .frame_content .right_frame .little_text_block:after {
    clear: both;
  }
  .press_page .frame_content .right_frame .little_text_block:before,
  .press_page .frame_content .right_frame .little_text_block:after {
    display: table;
    content: "";
  }
  .press_page .frame_content .right_frame .little_text_block:after {
    clear: both;
  }
}
.contact_page {
  *zoom: 1;
}
.contact_page:before,
.contact_page:after {
  content: "";
  display: table;
}
.contact_page:after {
  clear: both;
}
.contact_page:before,
.contact_page:after {
  display: table;
  content: "";
}
.contact_page:after {
  clear: both;
}
.contact_page .large_txt_block {
  width: 90%;
  display: block;
  margin: 0 auto;
}
.contact_page .large_txt_block .text_contact p {
  font-size: 13px;
  line-height: 20px;
  margin: 0 0 5px;
}
.contact_page .large_white_block_contact {
  width: 90%;
  display: block;
  margin: 15px auto 0 auto;
  background: white;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  behavior: url(/static/js/PIE/PIE.htc);
  *zoom: 1;
}
.contact_page .large_white_block_contact:before,
.contact_page .large_white_block_contact:after {
  content: "";
  display: table;
}
.contact_page .large_white_block_contact:after {
  clear: both;
}
.contact_page .large_white_block_contact:before,
.contact_page .large_white_block_contact:after {
  display: table;
  content: "";
}
.contact_page .large_white_block_contact:after {
  clear: both;
}
.contact_page .large_white_block_contact .center {
  padding: 20px;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact {
  background-color: #ebeaea;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two {
  padding: 22px;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact ul {
  margin: 0;
  padding: 16px 0;
  list-style: none;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact ul li {
  margin: 0 0 10px;
  display: block;
  max-width: 262px;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact ul li label.error {
  color: red;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact ul li input.little_input {
  height: 32px;
  border: none;
  padding: 0 0 0 5px;
  font-size: 12px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #313131;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact ul li label.title {
  font-size: 14px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  padding: 6px 0;
  display: block;
  color: #666;
  border: 0;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact ul li input.big_input {
  height: 30px;
  line-height: 14px;
  border: none;
  padding: 2px 0 0 5px;
  margin: 0;
  font-size: 12px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #313131;
  padding: 8px 0 0 5px;
  height: 27px;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact ul li select.little_select {
  border: 1px solid #DDD;
  color: #313131;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 12px;
  height: 30px;
  padding: 7px 1px 5px 7px;
  width: 154px;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact label.nb {
  font-size: 12px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  color: #666;
  margin-bottom: 15px;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact label.green {
  font-size: 20px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #393;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact {
  margin: 0 0 0 35px;
  display: inline;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact ul.button {
  padding: 47px 0 5px;
  list-style: none;
  display: inline;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact ul.button li.first {
  margin: 0;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact ul.button li {
  float: right;
  width: 105px;
  display: inline;
  margin: 0 15px 0 0;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact ul.button li a.cancel {
  display: block;
  width: 103px;
  height: 29px;
  background: url(../images/btn_cancel_grey.png) no-repeat;
  text-decoration: none;
  text-indent: -9999px;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact ul {
  margin: 0;
  padding: 16px 0;
  list-style: none;
  display: inline;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact ul li {
  margin: 0 0 10px;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact ul li .comment_txt {
  padding: 10px 15px;
  max-width: 385px;
  border: none;
  font-size: 12px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #313131;
  overflow: hidden;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact ul li select.big_select {
  border: 1px solid #DDD;
  color: #313131;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 12px;
  height: 30px;
  padding: 7px 1px 5px 7px;
  width: 154px;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact input[type="submit"] {
  float: right;
  display: block;
  margin-right: 20px;
  width: 103px;
  height: 29px;
}
.contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact label.green {
  font-size: 20px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #393;
}
.contact_page .large_white_block_contact .bottom {
  height: 6px;
  line-height: 6px;
}
.contact_page .large_white_block_contact .top {
  height: 4px;
  line-height: 4px;
}
@media screen and (min-width: 960px) {
  .contact_page .large_txt_block {
    width: 100%;
    margin: 0;
  }
  .contact_page .text_contact {
    display: inline;
    float: left;
    padding: 6px 0 13px;
    width: 942px;
    color: #1a1a1a;
    line-height: 20px;
  }
  .contact_page .text_contact p {
    color: #1a1a1a;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 20px;
    margin: 0 0 5px;
  }
  .contact_page .large_white_block_contact {
    float: left;
    width: 942px;
    margin-top: 15px;
    background: white;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    behavior: url(/static/js/PIE/PIE.htc);
  }
  .contact_page .large_white_block_contact .disclaimer {
    color: #666;
    display: inline-block;
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 8px;
    font-style: italic;
    line-height: 12px;
    text-transform: uppercase;
    vertical-align: middle;
    float: right;
    width: 47px;
    padding: 0px;
  }
  .contact_page .large_white_block_contact .center {
    display: inline;
    float: left;
    padding: 20px;
    width: 905px;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact {
    float: left;
    width: 964px;
    background-color: transparent;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two {
    background: url("../images/two_grey_box_contact_center.gif") repeat-y;
    display: inline;
    float: left;
    padding: 22px;
    width: 854px;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact {
    float: left;
    width: 430px;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact ul {
    float: left;
    width: 400px;
    margin: 0;
    padding: 16px 0;
    list-style: none;
    display: inline;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact ul li {
    float: left;
    width: 400px;
    display: inline;
    margin: 0 0 10px;
    max-width: 100%;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact ul li label.error {
    color: red;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact ul li input.little_input {
    float: left;
    width: 156px;
    height: 32px;
    border: none;
    padding: 0 0 0 5px;
    font-size: 12px;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #313131;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact ul li label.title {
    float: left;
    width: 85px;
    font-size: 14px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
    padding: 6px 0;
    display: inline;
    color: #666;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact ul li input.big_input {
    float: left;
    width: 278px;
    height: 30px;
    line-height: 14px;
    border: none;
    padding: 2px 0 0 5px;
    margin: 0;
    font-size: 12px;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #313131;
    height: 27px;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact ul li select.little_select {
    border: 1px solid #DDD;
    color: #313131;
    float: left;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 12px;
    height: 30px;
    padding: 7px 1px 5px 7px;
    width: 154px;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact label.nb {
    float: left;
    display: block;
    width: 400px;
    font-size: 12px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
    color: #666;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .left_grey_box_contact label.green {
    font-size: 20px;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #393;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact {
    float: left;
    margin: 0 0 0 35px;
    width: 385px;
    display: inline;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact ul.button {
    float: left;
    width: 385px;
    margin-left: 186pxpx;
    padding: 47px 0 5px;
    list-style: none;
    display: inline;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact ul.button li.first {
    margin: 0;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact ul.button li {
    float: right;
    width: 105px;
    display: inline;
    margin: 0 15px 0 0;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact ul.button li a.cancel {
    display: block;
    width: 103px;
    height: 29px;
    background: url(../images/btn_cancel_grey.png) no-repeat;
    text-decoration: none;
    text-indent: -9999px;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact ul {
    float: left;
    width: 385px;
    margin: 0;
    padding: 16px 0;
    list-style: none;
    display: inline;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact ul li {
    float: left;
    width: 385px;
    display: inline;
    margin: 0 0 10px;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact ul li .comment_txt {
    float: left;
    height: 227px;
    padding: 10px 15px;
    width: 365px;
    border: none;
    font-size: 12px;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #313131;
    overflow: hidden;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact ul li select.big_select {
    border: 1px solid #DDD;
    color: #313131;
    float: left;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 12px;
    height: 30px;
    padding: 7px 1px 5px 7px;
    width: 154px;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact input[type="submit"] {
    float: right;
    display: block;
    margin-right: 20px;
    width: 103px;
    height: 29px;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .center_two .right_grey_box_contact label.green {
    font-size: 20px;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #393;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .top_two {
    background: url("../images/two_grey_box_contact_top.gif") no-repeat;
    float: left;
    height: 5px;
    line-height: 5px;
    width: 897px;
  }
  .contact_page .large_white_block_contact .center .two_grey_box_contact .bottom_two {
    background: url("../images/two_grey_box_contact_bottom.gif") no-repeat;
    float: left;
    height: 6px;
    line-height: 6px;
    width: 897px;
  }
  .contact_page .large_white_block_contact .center .join_grey_box_info {
    float: right;
    width: 440px;
  }
  .contact_page .large_white_block_contact .bottom {
    float: left;
    height: 6px;
    line-height: 6px;
    width: 939px;
  }
  .contact_page .large_white_block_contact .top {
    float: left;
    height: 4px;
    line-height: 4px;
    width: 939px;
  }
}
.wrapper_inner #content.search {
  width: 90%;
  margin: 20px auto;
}
.wrapper_inner #content.search .highlighted {
  background: yellow;
}
.wrapper_inner #content.search form {
  *zoom: 1;
}
.wrapper_inner #content.search form:before,
.wrapper_inner #content.search form:after {
  content: "";
  display: table;
}
.wrapper_inner #content.search form:after {
  clear: both;
}
.wrapper_inner #content.search form:before,
.wrapper_inner #content.search form:after {
  display: table;
  content: "";
}
.wrapper_inner #content.search form:after {
  clear: both;
}
.wrapper_inner #content.search form label {
  font-size: 14px;
  display: inline-block;
  margin-right: 10px;
}
.wrapper_inner #content.search form input[type=checkbox] {
  width: auto;
}
.wrapper_inner #content.search form input[type=submit] {
  max-width: 120px;
  float: right;
}
.wrapper_inner #content.search .results {
  *zoom: 1;
  clear: both;
  padding-top: 20px;
}
.wrapper_inner #content.search .results:before,
.wrapper_inner #content.search .results:after {
  content: "";
  display: table;
}
.wrapper_inner #content.search .results:after {
  clear: both;
}
.wrapper_inner #content.search .results:before,
.wrapper_inner #content.search .results:after {
  display: table;
  content: "";
}
.wrapper_inner #content.search .results:after {
  clear: both;
}
.wrapper_inner #content.search .results ul {
  list-style: none;
  padding-left: 0;
}
.wrapper_inner #content.search .results ul li {
  margin: 10px 0;
  border-top: 1px solid #222;
  position: relative;
}
.wrapper_inner #content.search .results ul h3 {
  display: inline-block;
  margin-right: 10px;
  max-width: 75%;
  float: left;
}
.wrapper_inner #content.search .results ul .meta {
  float: left;
  clear: left;
  min-width: 150px;
}
.wrapper_inner #content.search .results ul .meta time,
.wrapper_inner #content.search .results ul .meta p {
  text-align: left;
}
.wrapper_inner #content.search .results ul .tease {
  clear: both;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 80%;
}
.wrapper_inner #content.search .results ul a {
  color: #cc0000;
}
@media screen and (min-width: 728px) {
  .wrapper_inner #content.search .results ul .meta {
    padding: 0;
    position: absolute;
    top: 15px;
    right: 0;
  }
}
#content.jobs_page {
  font-family: Helvetica, sans-serif;
  font-size: 13px;
  color: #1A1A1A;
}
#content.jobs_page .left_frame .paragraph_no_border {
  width: 90%;
  margin: 0 auto;
  display: block;
}
#content.jobs_page ul#jobs_list {
  list-style-type: none;
  padding: 0;
  color: #333;
}
#content.jobs_page ul#jobs_list > li {
  margin-bottom: 10px;
  border-bottom: 1px dotted gray;
  padding: 10px 0px;
  *zoom: 1;
}
#content.jobs_page ul#jobs_list > li:before,
#content.jobs_page ul#jobs_list > li:after {
  content: "";
  display: table;
}
#content.jobs_page ul#jobs_list > li:after {
  clear: both;
}
#content.jobs_page ul#jobs_list > li:before,
#content.jobs_page ul#jobs_list > li:after {
  display: table;
  content: "";
}
#content.jobs_page ul#jobs_list > li:after {
  clear: both;
}
#content.jobs_page ul#jobs_list > li .more_info {
  display: none;
}
#content.jobs_page .date {
  font-size: 10px;
  font-family: Helvetica, sans-serif;
  text-transform: uppercase;
  color: #333;
  padding: 0 0 5px;
}
#content.jobs_page .block_title {
  font-size: 14px;
  font-family: Helvetica, sans-serif;
  color: #333;
  padding: 0 0 12px;
}
#content.jobs_page .more_link {
  cursor: pointer;
}
#content.jobs_page .right_frame {
  width: 90%;
  margin: 0 auto;
  display: block;
}
#content.jobs_page .right_frame .little_text_block {
  float: left;
  width: 210px;
  padding: 10px 0px 10px 0;
  border-bottom: 1px solid #BEBEBE;
  display: inline;
}
#content.jobs_page .right_frame .little_text_block label {
  font-size: 14px;
  font-weight: bold;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #1a1a1a;
  padding: 0 0 20px 0;
  float: left;
  width: 210px;
}
#content.jobs_page .right_frame .little_text_block p {
  font-size: 12px;
  font-family: Helvetica, sans-serif;
  color: #1a1a1a;
}
#content.jobs_page .right_frame .little_text_block p a {
  font-size: 12px;
  font-family: Helvetica, sans-serif;
}
@media screen and (min-width: 960px) {
  .jobs_page ul#jobs_list > li {
    margin-bottom: 10px;
    border-bottom: 1px dotted gray;
    padding: 10px 0px;
    float: left;
  }
  .jobs_page ul#jobs_list > li .more_info {
    display: none;
    float: left;
  }
  .jobs_page .date {
    width: 660px;
    float: left;
    padding: 0 0 5px;
  }
  .jobs_page .block_title {
    width: 100%;
    float: left;
    padding: 0 0 12px;
    display: inline;
  }
  .jobs_page .right_frame {
    float: left;
    width: 210px;
    margin-top: 0px;
  }
  .jobs_page .right_frame .little_text_block {
    float: left;
    width: 210px;
    padding: 10px 0px 10px 0;
    border-bottom: 1px solid #BEBEBE;
    display: inline;
  }
  .jobs_page .right_frame .little_text_block label {
    padding: 0 0 20px 0;
    float: left;
    width: 210px;
  }
}
@font-face {
  font-family: "House Slant";
  src: url('../fonts/HouseSlant.eot');
  src: url("../fonts/HouseSlant.eot?#iefix") format("embedded-opentype"), url("../fonts/HouseSlant.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}
#wrapper_paintedword {
  min-width: 420px;
  background-color: white;
  box-sizing: border-box;
  overflow: auto;
  /* end photo upload wrapper */
}
#wrapper_paintedword h3#test-slantfont {
  font-family: "House Slant", script;
  text-rendering: optimizeLegibility;
  font-weight: normal;
}
#wrapper_paintedword .button {
  max-width: 250px;
}
#wrapper_paintedword .actionkit-widget label {
  display: none;
}
#wrapper_paintedword #stage-one {
  width: 100%;
}
#wrapper_paintedword .header-box {
  box-sizing: border-box;
  text-align: center;
  width: 100%;
  float: left;
}
#wrapper_paintedword .title {
  font-weight: 200;
  border-top: 0px;
  font-family: Helvetica, sans-serif;
  border-bottom: 2px solid #dc0000;
  padding-bottom: 20px;
  margin-bottom: 0px;
  margin-top: 7px;
}
#wrapper_paintedword .disclaimer {
  font-size: 12px;
  line-height: 14px;
  margin-top: 17px;
  padding-top: 17px;
  border-top: 1px solid #B3B2B2;
}
#wrapper_paintedword .photo-upload-wrapper {
  background-color: #E8E8E8;
  box-shadow: inset 0px 0px 3px #B3B2B2;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 15px;
  font-family: Helvetica, sans-serif;
  position: relative;
}
#wrapper_paintedword .photo-upload-wrapper h2 {
  font-size: 16px;
  font-family: Helvetica, sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0px;
  padding-bottom: 15px;
  padding-top: 5px;
}
#wrapper_paintedword .photo-upload-wrapper #examplePhoto img {
  max-width: 640px;
  width: 100%;
  transition: opacity .3s;
  -webkit-transition: opacity .3s;
}
#wrapper_paintedword .photo-upload-wrapper #examplePhoto #example-photo-overlay {
  background-color: white;
  border-radius: 50px;
  padding: 10px 19px;
  box-sizing: border-box;
  position: absolute;
  left: 33%;
  width: 33%;
  text-align: center;
  top: 50%;
  opacity: 0;
  transition: opacity .3s;
  -webkit-transition: opacity .3s;
}
#wrapper_paintedword .photo-upload-wrapper #examplePhoto:hover {
  cursor: pointer !important;
}
#wrapper_paintedword .photo-upload-wrapper #examplePhoto:hover img {
  opacity: .8;
  cursor: pointer !important;
}
#wrapper_paintedword .photo-upload-wrapper #examplePhoto:hover #example-photo-overlay {
  opacity: .8;
  cursor: pointer !important;
}
#wrapper_paintedword .panel {
  float: left;
}
#wrapper_paintedword input#id_photo {
  border: 0px;
  box-shadow: none;
}
#wrapper_paintedword .canvas-container {
  min-height: 390px;
  margin-bottom: 20px;
}
#wrapper_paintedword #upload .field {
  padding-bottom: 15px;
}
#wrapper_paintedword #upload a.pw-btn,
#share-modal .social-buttons-container a.pw-btn {
  color: white;
  padding: 7px 10px 5px 10px;
  margin: 10px 10px 20px 0px;
  border-bottom: 3px;
  line-height: 34px;
}
#wrapper_paintedword #upload a#download-save {
  color: #C00;
}
#wrapper_paintedword #upload a#startOver,
#share-modal .social-buttons-container #modal_cancel {
  background-color: #C00;
}
#wrapper_paintedword #upload a#previewShare,
#wrapper_paintedword #upload a#share-to-facebook,
#share-modal .social-buttons-container #modal_facebook_share {
  background-color: #3B5998;
}
#share-modal {
  font-size: 14px;
}
#share-modal .social-buttons-container {
  text-align: right;
}
#share-modal .social-buttons-container .pw-btn {
  margin-right: 0px;
  margin-left: 20px;
}
#wrapper_paintedword #upload a#share-to-twitter {
  background-color: #55ACEE;
}
#wrapper_paintedword #canvas-foreground {
  z-index: 1;
  background: transparent;
  position: absolute;
}
#wrapper_paintedword #canvas {
  position: absolute;
}
#wrapper_paintedword #thank-you {
  display: none;
  text-align: center;
  box-sizing: border-box;
  padding-top: 25px;
  margin-top: 25px;
  -webkit-box-shadow: 0px -5px 18px -7px #292929;
  -moz-box-shadow: 0px -5px 18px -7px #292929;
  box-shadow: 0px -5px 18px -7px #292929;
  width: 70%;
  margin: 25px 15% 25px 15%;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  float: left;
  padding-bottom: 50px;
}
#wrapper_paintedword #thank-you h1 {
  font-family: Helvetica Neu, Helvetica, sans-serif;
  font-weight: 200;
}
#wrapper_paintedword #thank-you a#download:hover {
  cursor: pointer;
}
#wrapper_paintedword #thank-you .petition-body {
  margin-top: 15px;
}
@media screen and (min-width: 800px) {
  #wrapper_paintedword {
    font-size: 16px;
    line-height: 22px;
  }
  #wrapper_paintedword .header-box {
    padding: 10px 30px;
    margin-bottom: 20px;
  }
  #wrapper_paintedword .panel {
    box-sizing: border-box;
  }
  #wrapper_paintedword .left.panel {
    width: 50%;
    padding: 0px 30px 20px 30px;
  }
  #wrapper_paintedword .right.panel {
    width: 50%;
    padding: 0px 30px 20px 10px;
  }
}
@media screen and (max-width: 800px) {
  #preview .cropControls {
    display: none;
  }
  #wrapper_paintedword {
    font-size: 22px;
    line-height: 32px;
  }
  #wrapper_paintedword .title {
    font-size: 32px;
    line-height: 38px;
  }
  #wrapper_paintedword .header-box {
    padding: 20px 20px;
  }
  #wrapper_paintedword .title {
    border-bottom: 0px;
  }
  #wrapper_paintedword .panel {
    box-sizing: border-box;
    padding: 0px 15px 20px 15px;
  }
  #wrapper_paintedword .left.panel {
    width: 100%;
  }
  #wrapper_paintedword .right.panel {
    width: 100%;
  }
  #wrapper_paintedword .right.panel .photo-upload-wrapper .field input#name {
    box-sizing: border-box;
    padding: 10px 16px;
  }
  #wrapper_paintedword .right.panel .photo-upload-wrapper span#charcount {
    width: 90%;
    display: block;
    font-size: 12px;
    text-align: right;
    padding-right: 10%;
  }
  #wrapper_paintedword .photo-upload-wrapper h2 {
    font-size: 24px;
  }
  #wrapper_paintedword #thank-you {
    width: 88%;
    margin: 25px 6% 25px 6%;
  }
  #wrapper_paintedword #thank-you h1 {
    padding: 0px 15px;
    font-size: 38px;
  }
  #share-modal {
    font-size: 20px;
    line-height: 30px;
  }
}
.clear {
  clear: both;
}
#share-modal {
  background-color: white;
  background-color: #E8E8E8;
  box-sizing: border-box;
  padding: 22px;
}
#share-modal #close_modal {
  position: relative;
}
#share-modal #close_modal span {
  position: absolute;
  top: -6px;
  right: -3px;
  font-size: 20px;
}
#share-modal #close_modal span:hover {
  cursor: pointer;
}
#modal_message {
  width: 100%;
}
#modal_message textarea {
  width: 100%;
  background-color: #F8F8F8;
  box-sizing: border-box;
  padding: 9px;
}
#modal_message textarea:focus {
  box-shadow: none;
  outline: none;
}
#modal_image_preview {
  max-width: 390px;
  margin: 12px auto;
}
#modal_image_preview img {
  width: 100%;
}
#simplemodal-overlay {
  background-color: #000;
}
#content.radio_page {
  /* list layout */
  /* ==================================================================
    BREADCRUMBS
================================================================== */
  /* ==================================================================
    PAGINATION
================================================================== */
  /* ==================================================================
    MAP
================================================================== */
  /* ==================================================================
    GUIDE CSS
================================================================== */
  /* ==================================================================
    MEDIA QUERIES
================================================================== */
}
#content.radio_page a.arrow_down {
  position: absolute;
  right: 10px;
  bottom: 6px;
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
}
#content.radio_page a.arrow_up {
  position: absolute;
  right: 10px;
  bottom: 6px;
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
}
#content.radio_page ul.link {
  margin: 0;
  padding: 0;
  list-style: none;
}
#content.radio_page ul.link li.first {
  background: none;
  clear: both;
}
#content.radio_page ul.link > li {
  padding: 10px 0;
  border-bottom: 1px solid #D4D4D4;
}
#content.radio_page ul.link > li a {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #1a1a1a;
  text-decoration: none;
  display: block;
  font-size: 14px;
  font-weight: bold;
}
#content.radio_page ul.link > li .content_box {
  margin-top: 10px;
  padding-top: 10px;
  background: url(../images/right_box_separator_dotted.gif) repeat-x;
  float: left;
  padding: 10px 20px 2px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#content.radio_page ul.link > li .content_box .link_description {
  font-size: 12px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #1a1a1a;
  text-decoration: none;
}
#content.radio_page ul.link > li .content_box .link_description a {
  font-size: 12px;
  font-weight: normal;
  text-decoration: underline;
  color: #cc0000;
}
#content.radio_page ul.link > li .content_box .link_description a .button {
  clear: both;
  color: white;
}
#content.radio_page ul.link > li .header_box {
  padding: 0 10px;
  position: relative;
}
#content.radio_page ul.link > li .header_box label {
  padding: 0;
  color: #1A1A1A;
  display: inline-block;
  max-width: 320px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: bold;
}
#content.radio_page ul.link > li .header_box a.arrow_down {
  position: absolute;
  right: 10px;
  bottom: 6px;
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
  padding: 0;
}
#content.radio_page ul.link > li .header_box a.arrow_up {
  position: absolute;
  right: 10px;
  bottom: 6px;
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
  padding: 0;
}
#content.radio_page ul.link li.last {
  border: none;
}
#content.radio_page form {
  clear: both;
}
#content.radio_page form button {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #dc0000;
  background-image: -moz-linear-gradient(top, #f50000, #b80000);
  background-image: -ms-linear-gradient(top, #f50000, #b80000);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f50000), to(#b80000));
  background-image: -webkit-linear-gradient(top, #f50000, #b80000);
  background-image: -o-linear-gradient(top, #f50000, #b80000);
  background-image: linear-gradient(top, #f50000, #b80000);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f50000', endColorstr='#b80000', GradientType=0);
  display: inline-block;
  padding: 0 12px;
  margin-bottom: 10px;
  line-height: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-right-color: rgba(0, 0, 0, 0.25);
  color: #FFF;
  font-size: 11px;
  text-transform: uppercase;
  font-family: arial, sans-serif;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.15);
}
#content.radio_page form button:hover {
  color: white;
}
#content.radio_page form input[name=zip] {
  margin-bottom: 10px;
}
#content.radio_page .frame_content .left_frame {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
#content.radio_page .frame_content .left_frame .blog_post {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  *zoom: 1;
}
#content.radio_page .frame_content .left_frame .blog_post:before,
#content.radio_page .frame_content .left_frame .blog_post:after {
  content: "";
  display: table;
}
#content.radio_page .frame_content .left_frame .blog_post:after {
  clear: both;
}
#content.radio_page .frame_content .left_frame .blog_post:before,
#content.radio_page .frame_content .left_frame .blog_post:after {
  display: table;
  content: "";
}
#content.radio_page .frame_content .left_frame .blog_post:after {
  clear: both;
}
#content.radio_page .frame_content .left_frame .blog_post .post_header {
  width: 100%;
}
#content.radio_page .frame_content .left_frame .blog_post .post_header span.date {
  font-size: 10px;
  font-family: Helvetica, sans-serif;
  color: #333;
  padding: 0 0 10px;
  display: block;
}
#content.radio_page .frame_content .left_frame .blog_post .post_header span.block_title {
  font-size: 18px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #333;
  margin-bottom: 10px;
}
#content.radio_page .frame_content .left_frame .blog_post .post_header span.block_title a {
  font-size: 18px;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #333;
  padding: 0 0 17px;
  display: inline;
}
#content.radio_page .frame_content .left_frame .blog_post .post_block .social_share {
  clear: left;
}
#content.radio_page .frame_content .left_frame .blog_post .post_block .image_block {
  float: right;
  background: white;
  padding: 2px;
  border: 1px solid #999;
  width: 215px;
  margin-left: 10px;
}
#content.radio_page .frame_content .left_frame .blog_post .post_block .image_override {
  clear: both;
  margin: 0 auto 10px;
  width: auto;
  text-align: center;
}
#content.radio_page .frame_content .left_frame .blog_post .post_block .image_override iframe {
  clear: both;
}
#content.radio_page .frame_content .left_frame .blog_post.white_block {
  padding: 10px 20px;
  background: white;
  border-radius: 5px;
}
#content.radio_page .frame_content .left_frame .blog_post.white_block .post_block .image_block {
  float: left;
  margin-right: 10px;
  margin-left: 0px;
}
#content.radio_page .frame_content .right_frame .tags_block {
  display: none;
}
#content.radio_page .first_block ul {
  border-bottom: 1px solid #ccc;
  padding: 0 0 1.5em 0;
}
#content.radio_page .backlink {
  margin-bottom: 10px;
  font-size: 14px;
  color: #cc0000;
  padding: 7px;
  background: #fff;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
#content.radio_page .backlink a {
  color: #cc0000;
  font-size: 1.7em;
}
#content.radio_page .backlink a:hover,
#content.radio_page .backlink a.active {
  text-decoration: underline;
}
#content.radio_page .backlink a.child {
  font-size: 1em;
  display: block;
  padding: .7em 0 0 0;
}
#content.radio_page .paginator {
  display: block;
  clear: both;
  padding-top: 15px;
}
#content.radio_page .paginator .step-links .next {
  float: right;
}
#content.radio_page .paginator .step-links .prev {
  float: left;
}
#content.radio_page.map .left_frame,
#content.radio_page.map .right_frame {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
#content.radio_page.map .left_frame iframe {
  width: 100%;
  max-width: 710px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#content.radio_page.map .right_frame h3 {
  padding-top: 10px;
}
#content.radio_page.map input#address {
  width: 200px;
}
#content.radio_page.map ul.legend {
  clear: both;
  list-style-type: none;
  padding: 0;
}
#content.radio_page.map ul.legend li {
  *zoom: 1;
  display: inline;
  color: #333;
  margin-left: 5px;
}
#content.radio_page.map ul.legend li:before,
#content.radio_page.map ul.legend li:after {
  content: "";
  display: table;
}
#content.radio_page.map ul.legend li:after {
  clear: both;
}
#content.radio_page.map ul.legend li:before,
#content.radio_page.map ul.legend li:after {
  display: table;
  content: "";
}
#content.radio_page.map ul.legend li:after {
  clear: both;
}
#content.radio_page.map ul.legend li img {
  float: none;
}
#content.radio_page.map .right_frame .paragraph_no_border {
  clear: both;
}
#content.radio_page p#campaign_start_date {
  font-style: normal;
  text-transform: uppercase;
}
#content.radio_page.guide .paragraph_bordered {
  border: none;
}
#content.radio_page.guide .section-title {
  position: relative;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #ccc;
}
#content.radio_page.guide .section-title:last-child {
  border-bottom: 10px solid #ccccdd c;
}
#content.radio_page.guide .section-title .arrow_up,
#content.radio_page.guide .section-title .arrow_down {
  bottom: 10px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #000;
}
#content.radio_page.guide .subsection-title:after {
  content: "+";
  margin-left: 5px;
}
#content.radio_page.guide .subsection-title.active:after {
  content: "-";
  margin-left: 5px;
}
#content.radio_page.guide .section,
#content.radio_page.guide .subsection {
  list-style-type: none;
  padding: 0;
}
#content.radio_page.guide .section-content,
#content.radio_page.guide .subsection,
#content.radio_page.guide .subsection-content {
  display: none;
}
@media screen and (min-width: 543px) {
  #content.radio_page .two_frame .left_frame ul li {
    float: left;
  }
}
@media screen and (min-width: 960px) {
  #content.radio_page {
    /* list layout */
  }
  #content.radio_page ul.link {
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline;
  }
  #content.radio_page ul.link li.first {
    background: none;
  }
  #content.radio_page ul.link > li {
    display: inline;
    float: left;
    margin: 4px 0px;
    border-bottom: 1px solid #D4D4D4;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #content.radio_page ul.link > li .header_box {
    float: left;
    padding: 0px 15px;
    width: 100%;
    max-width: 190px;
  }
  #content.radio_page ul.link > li .header_box label {
    padding: 0;
    color: #1A1A1A;
    float: left;
    width: 140px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 14px;
    font-weight: bold;
  }
  #content.radio_page ul.link li.last {
    border: none;
  }
  #content.radio_page.map .left_frame {
    width: 775px;
    iframe: 100%;
  }
  #content.radio_page.map .right_frame {
    width: 150px;
    color: black;
  }
  #content.radio_page.map input#address {
    width: 200px;
  }
  #content.radio_page.map ul.legend {
    clear: both;
    list-style-type: none;
    padding: 0;
  }
  #content.radio_page.map ul.legend li {
    display: inline;
    color: #333;
    margin-left: 10px;
  }
  #content.radio_page.map ul.legend li img {
    margin-right: 10px;
    float: none;
  }
  #content.radio_page .right_frame .paragraph_no_border {
    width: 150px;
    clear: both;
    float: left;
  }
  #content.radio_page.guide .paragraph_bordered {
    border: none;
  }
  #content.radio_page.guide .section-title {
    position: relative;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #ccc;
  }
  #content.radio_page.guide .section-title:last-child {
    border-bottom: 10px solid #ccccdd c;
  }
  #content.radio_page.guide .section-title .arrow_up,
  #content.radio_page.guide .section-title .arrow_down {
    bottom: 10px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #000;
  }
  #content.radio_page.guide .subsection-title:after {
    content: "+";
    margin-left: 5px;
  }
  #content.radio_page.guide .subsection-title.active:after {
    content: "-";
    margin-left: 5px;
  }
  #content.radio_page.guide .section,
  #content.radio_page.guide .subsection {
    list-style-type: none;
    padding: 0;
  }
  #content.radio_page.guide .section-content,
  #content.radio_page.guide .subsection,
  #content.radio_page.guide .subsection-content {
    display: none;
  }
  #content.radio_page .frame_content .left_frame {
    margin: 0 15px 0 0;
    width: 714px;
    float: left;
    display: inline;
  }
  #content.radio_page .frame_content .left_frame .blog_post.white_block {
    float: left;
    width: 690px;
    background: white;
    border-radius: 5px;
    padding: 10px;
  }
  #content.radio_page .frame_content .left_frame .blog_post.white_block .post_block .image_block {
    float: left;
    margin-right: 10px;
    margin-left: 0px;
  }
  #content.radio_page .frame_content .left_frame .blog_post {
    width: 700px;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    float: left;
    display: inline;
  }
  #content.radio_page .frame_content .left_frame .blog_post .post_header {
    float: left;
    width: 710px;
  }
  #content.radio_page .frame_content .left_frame .blog_post .post_header span.block_title a {
    font-size: 24px;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #333;
    width: 710px;
    padding: 0 0 17px;
    display: inline;
  }
  #content.radio_page .frame_content .left_frame .blog_post .post_header span.date {
    font-size: 10px;
    font-family: Helvetica, sans-serif;
    color: #333;
    width: 710px;
    float: left;
    padding: 0 0 10px;
  }
  #content.radio_page .frame_content .left_frame .blog_post span.more {
    font-size: 13px;
    float: left;
  }
  #content.radio_page .frame_content .left_frame .blog_post span.more a {
    color: #990000;
    text-decoration: none;
  }
  #content.radio_page .frame_content .left_frame .blog_post .bottom {
    float: left;
    clear: left;
    width: 670px;
    margin: 5px 0px;
  }
  #content.radio_page .frame_content .left_frame .blog_post .bottom a {
    font: 11px sans-serif;
    color: #333333;
  }
  #content.radio_page .frame_content .left_frame .blog_post .bottom span.tags {
    font-size: 11px;
    color: #333;
  }
  #content.radio_page .frame_content .left_frame .blog_post .post_block .text_block {
    float: left;
  }
  #content.radio_page .frame_content .left_frame .blog_post .post_block .text_block p {
    padding-bottom: 10px;
    float: none;
  }
  #content.radio_page .frame_content .left_frame .blog_post .post_block .image_block {
    float: right;
    background: white;
    padding: 2px;
    border: 1px solid #999;
    width: 215px;
    margin-left: 10px;
  }
  #content.radio_page .frame_content .left_frame .blog_post .post_block .image_override {
    clear: both;
    margin: 0 auto 10px;
    width: auto;
    text-align: center;
  }
  #content.radio_page .frame_content .left_frame .blog_post .post_block .image_override iframe {
    clear: both;
  }
  #content.radio_page .frame_content .right_frame .tags_block {
    display: block;
  }
  #content.radio_page .frame_content .right_frame .tags_block ul {
    float: left;
    width: 210px;
    margin: 0 0 10px 0;
    padding: 0;
    list-style: none;
  }
  #content.radio_page .frame_content .right_frame .tags_block ul li {
    display: inline;
    margin: 0 5px 0 0;
  }
  #content.radio_page .frame_content .right_frame .tags_block h2 {
    font-size: 14px;
    font-weight: bold;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #1A1A1A;
    padding: 0 0 10px 0;
    float: left;
    width: 210px;
  }
  #content.radio_page .right_frame {
    padding: 20px 0 0 0;
  }
}
/* For fluid grid */
/* ==========================
   Main Styles
   =========================*/
::-moz-selection {
  background: #444;
}
::selection {
  background: #444;
}
html {
  color: #444;
}
body {
  line-height: 24px;
  font: 12px Helvetica, sans-serif;
}
#wrapper {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: #e0e0e0;
  background-image: -moz-linear-gradient(top, #cccccc, #ffffff);
  background-image: -ms-linear-gradient(top, #cccccc, #ffffff);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#cccccc), to(#ffffff));
  background-image: -webkit-linear-gradient(top, #cccccc, #ffffff);
  background-image: -o-linear-gradient(top, #cccccc, #ffffff);
  background-image: linear-gradient(top, #cccccc, #ffffff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#ffffff', GradientType=0);
  *zoom: 1;
}
#wrapper:before,
#wrapper:after {
  content: "";
  display: table;
}
#wrapper:after {
  clear: both;
}
#wrapper:before,
#wrapper:after {
  display: table;
  content: "";
}
#wrapper:after {
  clear: both;
}
.wrapper_inner {
  margin: 0 auto;
  *zoom: 1;
}
.wrapper_inner:before,
.wrapper_inner:after {
  content: "";
  display: table;
}
.wrapper_inner:after {
  clear: both;
}
.wrapper_inner:before,
.wrapper_inner:after {
  display: table;
  content: "";
}
.wrapper_inner:after {
  clear: both;
}
#wrapper:after {
  content: "";
  display: block;
  overflow: visible;
}
h1,
h2,
h3,
h4 {
  font-family: Georgia, serif;
  font-weight: normal;
}
h1 a,
h2 a,
h3 a,
h4 a {
  text-decoration: none;
}
h1 a:link,
h2 a:link,
h3 a:link,
h4 a:link,
h1 a:visited,
h2 a:visited,
h3 a:visited,
h4 a:visited {
  color: #333;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover {
  color: #900;
}
h4 {
  font-weight: bold;
}
p {
  word-break: break-word;
}
img {
  max-width: 100%;
}
a,
a:visited {
  color: #C00;
  text-decoration: none;
}
iframe[style] {
  width: 100% !important;
}
/* Basic Form Styles */
fieldset {
  margin: 0;
  padding: 0;
  border: none;
}
form {
  margin: 0;
  padding: 0;
  border: none;
}
form legend {
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-family: Georgia, serif;
}
form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
form li {
  margin-bottom: 5px;
  padding: 5px 0;
}
form label {
  display: block;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: .8em;
}
form select {
  padding: 5px;
  height: 30px;
  border: 1px solid #CCC;
}
form input,
form select,
form textarea {
  padding: 5px;
  border: 1px solid #AAA;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 75%;
}
form input[type="submit"] {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0);
  -moz-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0);
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
form textarea {
  width: 100%;
}
form span.hint {
  color: #ddd;
  font-family: Georgia, serif;
  font-size: .8em;
  font-style: italic;
}
input[type="submit"],
input[type="button"],
a.take_action {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #dc0000;
  background-image: -moz-linear-gradient(top, #f50000, #b80000);
  background-image: -ms-linear-gradient(top, #f50000, #b80000);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f50000), to(#b80000));
  background-image: -webkit-linear-gradient(top, #f50000, #b80000);
  background-image: -o-linear-gradient(top, #f50000, #b80000);
  background-image: linear-gradient(top, #f50000, #b80000);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f50000', endColorstr='#b80000', GradientType=0);
  display: inline-block;
  padding: 0 12px;
  margin-bottom: 10px;
  line-height: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-right-color: rgba(0, 0, 0, 0.25);
  color: #FFF;
  font-size: 11px;
  text-transform: uppercase;
  font-family: arial, sans-serif;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.15);
}
input[type="submit"]:hover,
input[type="button"]:hover,
a.take_action:hover {
  color: white;
}
.primary,
.secondary {
  padding-bottom: 20px;
}
.secondary a:line,
.secondary a:active {
  text-decoration: none;
}
.secondary a:hover,
.secondary a:active {
  text-decoration: underline;
}
.secondary section {
  margin-bottom: 20px;
}
/* Stylistic Classes */
.meta {
  margin: 0;
  font-size: .8em;
  text-transform: uppercase;
}
.callout,
.feature {
  background: #FFF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 20px 0;
  position: relative;
  *zoom: 1;
}
.callout:before,
.feature:before,
.callout:after,
.feature:after {
  content: "";
  display: table;
}
.callout:after,
.feature:after {
  clear: both;
}
.callout:before,
.feature:before,
.callout:after,
.feature:after {
  display: table;
  content: "";
}
.callout:after,
.feature:after {
  clear: both;
}
a.button {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #dc0000;
  background-image: -moz-linear-gradient(top, #f50000, #b80000);
  background-image: -ms-linear-gradient(top, #f50000, #b80000);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f50000), to(#b80000));
  background-image: -webkit-linear-gradient(top, #f50000, #b80000);
  background-image: -o-linear-gradient(top, #f50000, #b80000);
  background-image: linear-gradient(top, #f50000, #b80000);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f50000', endColorstr='#b80000', GradientType=0);
  display: inline-block;
  padding: 0 12px;
  margin-bottom: 10px;
  line-height: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-right-color: rgba(0, 0, 0, 0.25);
  color: #FFF;
  font-size: 11px;
  text-transform: uppercase;
  font-family: arial, sans-serif;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.15);
}
a.button:hover {
  color: white;
}
a.social_icon {
  text-indent: -9999px;
  display: inline-block;
  width: 19px;
  height: 19px;
  line-height: 19px;
  overflow: hidden;
  background-image: url(https://s3.amazonaws.com/s3.colorofchange.org/ak-media/social_icons.jpg);
  background-repeat: no-repeat;
  vertical-align: middle;
}
a.social_icon.facebook {
  background-position: -19px -19px;
}
a.social_icon.facebook:hover {
  background-position: -19px 0;
}
a.social_icon.twitter {
  background-position: 0 -19px;
}
a.social_icon.twitter:hover {
  background-position: 0 0;
}
.group {
  *zoom: 1;
}
.group:before,
.group:after {
  content: "";
  display: table;
}
.group:after {
  clear: both;
}
.group:before,
.group:after {
  display: table;
  content: "";
}
.group:after {
  clear: both;
}
a.arrow_down,
a.arrow_up {
  display: inline-block;
  text-decoration: none;
  color: #000;
  float: right;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: transform .2s linear;
}
a.arrow_down {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
/* Responsive Video */
.image_override.video_container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16/9 ratio */
  padding-top: 30px;
  /* IE6 workaround*/
  height: 0;
  overflow: hidden;
}
.image_override.video_container iframe,
.image_override.video_container object,
.image_override.video_container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Frontpage */
.image_block {
  float: left;
  max-width: 50%;
  margin: 0 1em .5em 0;
  border: 3px solid white;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.feature .image_block {
  max-width: 100%;
}
.tweet_list {
  background: #F5F5F5;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.tweet_list li {
  margin-bottom: 10px;
  padding: 7px 5px;
  font-size: 14px;
}
.tweet_even {
  background: #DDD;
}
.frontpage_quadrant {
  width: 90%;
  margin: 0 auto;
  *zoom: 1;
}
.frontpage_quadrant:before,
.frontpage_quadrant:after {
  content: "";
  display: table;
}
.frontpage_quadrant:after {
  clear: both;
}
.frontpage_quadrant:before,
.frontpage_quadrant:after {
  display: table;
  content: "";
}
.frontpage_quadrant:after {
  clear: both;
}
.frontpage_quadrant .sociallinks {
  margin: 10px auto;
}
.frontpage_quadrant .sociallinks a {
  display: inline-block;
  *display: inline-block;
  height: 32px;
  width: 32px;
  margin: 0 9px;
  text-indent: -9999px;
}
.frontpage_quadrant .twitter_stream ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.frontpage_quadrant .facebook_likebox {
  display: none;
  /* hide in narrow view */
}
/* End Frontpage */
/*  header */
#topright {
  display: none;
}
#topright ul.top_links li {
  display: inline;
  width: 50px;
  padding: 2px 5px 2px 0px;
  background: url(../images/footer_separator.gif) no-repeat 100% 5px;
}
#topright ul.top_links li a {
  color: #999;
  font-size: 11px;
  font-weight: normal;
  text-decoration: none;
  padding: 7px 5px;
}
#topright ul.top_links li a:hover {
  color: #FFF;
  text-decoration: none;
  font-weight: normal;
}
#topright ul.top_links li.last {
  background: none;
}
#header {
  padding: 0 10px;
  min-height: 113px;
  background-color: #222222;
  background-image: -moz-linear-gradient(top, #171717, #333333);
  background-image: -ms-linear-gradient(top, #171717, #333333);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#171717), to(#333333));
  background-image: -webkit-linear-gradient(top, #171717, #333333);
  background-image: -o-linear-gradient(top, #171717, #333333);
  background-image: linear-gradient(top, #171717, #333333);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#171717', endColorstr='#333333', GradientType=0);
  -webkit-box-shadow: 0px 0px 150px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0px 0px 150px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 0px 150px rgba(0, 0, 0, 0.7);
}
#header .logo {
  display: block;
  padding: 10px 0 0 10px;
}
.logo h1 {
  margin: 0 auto;
  display: block;
  height: 68px;
  padding-right: 20px;
}
.logo h1 a {
  display: block;
  text-decoration: none;
  height: 100%;
  text-indent: -9999px;
  background-image: url(../images/logo_red.png);
  background-repeat: no-repeat;
  background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
}
/* navigation block */
#header nav {
  float: left;
  width: 100%;
  display: inline;
}
#menu-icon {
  color: #999;
  width: 42px;
  height: 25px;
  background: #ecebeb url(../images/menu-icon.png) no-repeat 10px center;
  padding: 8px 10px 0 42px;
  cursor: pointer;
  border: solid 1px #666;
  display: block;
  float: right;
  position: relative;
  left: 10px;
}
#header-nav {
  clear: both;
  position: absolute;
  top: 113px;
  right: 0;
  width: 160px;
  z-index: 10000;
  padding: 5px 0;
  background: #EEE;
  border: solid 1px #999;
  display: none;
}
#header-nav li {
  font-size: 18px;
  padding: 5px 0;
  border-bottom: 1px solid #DDD;
  width: 100%;
}
#header-nav li:last-child {
  border: 0;
}
#header-nav li a {
  color: #999;
  margin-left: 5px;
}
/* content */
.wrapper_inner {
  max-width: 964px;
  margin: 0 auto;
  display: block;
  *zoom: 1;
}
.wrapper_inner:before,
.wrapper_inner:after {
  content: "";
  display: table;
}
.wrapper_inner:after {
  clear: both;
}
.wrapper_inner:before,
.wrapper_inner:after {
  display: table;
  content: "";
}
.wrapper_inner:after {
  clear: both;
}
.wrapper_inner #content {
  width: 100%;
  clear: left;
  float: left;
  padding: 14px 0;
  display: inline;
  *zoom: 1;
}
.wrapper_inner #content:before,
.wrapper_inner #content:after {
  content: "";
  display: table;
}
.wrapper_inner #content:after {
  clear: both;
}
.wrapper_inner #content:before,
.wrapper_inner #content:after {
  display: table;
  content: "";
}
.wrapper_inner #content:after {
  clear: both;
}
/* common UI elements */
/* featured content*/
.large_white_block {
  border: 1px solid #D4D4D4;
  border-radius: 4px;
  background: white;
  width: 90%;
  margin: 15px auto 0 auto;
  padding: 5px 10px;
  clear: left;
}
.large_white_block a.take_action {
  display: block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #dc0000;
  background-image: -moz-linear-gradient(top, #f50000, #b80000);
  background-image: -ms-linear-gradient(top, #f50000, #b80000);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f50000), to(#b80000));
  background-image: -webkit-linear-gradient(top, #f50000, #b80000);
  background-image: -o-linear-gradient(top, #f50000, #b80000);
  background-image: linear-gradient(top, #f50000, #b80000);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f50000', endColorstr='#b80000', GradientType=0);
  display: inline-block;
  padding: 0 12px;
  margin-bottom: 10px;
  line-height: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-right-color: rgba(0, 0, 0, 0.25);
  color: #FFF;
  font-size: 11px;
  text-transform: uppercase;
  font-family: arial, sans-serif;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.15);
}
.large_white_block a.take_action:hover {
  color: white;
}
.large_white_block .center .two_part .txt_block label.grey {
  font-size: 11px;
  color: #818181;
  font-family: Helvetica, sans-serif;
}
.large_white_block .center .two_part .txt_block p {
  font-size: 13px;
  line-height: 18px;
  margin: 0 0 20px;
  color: #333;
  font-family: Helvetica, sans-serif;
}
.large_white_block .center .two_part .txt_block p a.submit {
  background: url(../images/btn_submit.png) no-repeat;
  text-indent: -9999px;
  text-decoration: none;
  display: block;
}
.large_white_block .center .two_part .txt_block h2 a {
  margin: 0;
  padding: 10px 0 17px;
  font-size: 24px;
  color: #333;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: normal;
}
.large_white_block .center .two_part .txt_block h2 a:hover {
  color: #900;
}
.large_white_block .center .two_part .left_image img {
  background: white;
  border: 1px solid #E8E8E8;
  display: block;
  margin: 0 auto 15px auto;
}
/* end featured content */
/* end common UI elements */
/* page defaults */
h2 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 24px;
  color: #1a1a1a;
  margin: 0;
  padding: 10px 0 20px;
  font-weight: normal;
}
/*  footer */
@font-face {
  font-family: "Creative Commons";
  src: url(cc-icons.ttf);
}
#footer {
  display: block;
  background: #222222;
  text-align: center;
  padding: 10px 5px;
  color: #999;
  font-weight: normal;
  text-decoration: none;
  font-size: 15px;
}
#footer .wrapper_inner {
  width: 90%;
}
#footer .wrapper_inner .copyright {
  display: none;
  margin-bottom: 10px;
}
#footer .wrapper_inner .copyright span.creative_commons {
  font-family: "Creative Commons";
}
#footer .wrapper_inner .copyright a {
  color: #999;
}
#footer .wrapper_inner .copyright a:hover {
  color: #FFF;
}
#footer .wrapper_inner .copyright.mobile {
  margin-top: 10px;
  display: block;
}
#footer .wrapper_inner .footer_menu ul {
  margin: 10px 0;
  padding: 0;
  *zoom: 1;
}
#footer .wrapper_inner .footer_menu ul:before,
#footer .wrapper_inner .footer_menu ul:after {
  content: "";
  display: table;
}
#footer .wrapper_inner .footer_menu ul:after {
  clear: both;
}
#footer .wrapper_inner .footer_menu ul:before,
#footer .wrapper_inner .footer_menu ul:after {
  display: table;
  content: "";
}
#footer .wrapper_inner .footer_menu ul:after {
  clear: both;
}
#footer .wrapper_inner .footer_menu ul li {
  display: block;
  padding: 10px;
  background: #EEE;
  border: 1px solid #DDD;
  position: relative;
  vertical-align: top;
}
#footer .wrapper_inner .footer_menu ul li a {
  color: #999;
}
#footer .wrapper_inner .footer_menu ul li a:hover {
  color: #FFF;
}
#footer .wrapper_inner .footer_menu ul li label {
  color: #999;
  font-size: 15px;
}
#footer .wrapper_inner .footer_menu ul li.first {
  display: block;
}
#footer .wrapper_inner .footer_menu ul li.last {
  display: none;
  bottom: 2px;
}
#footer .wrapper_inner .footer_menu ul li a.social_icon {
  width: 19px;
  height: 0;
  padding: 19px 0px 0px 0px;
  overflow: hidden;
  background-image: url(https://s3.amazonaws.com/s3.colorofchange.org/ak-media/social_icons.jpg);
  background-repeat: no-repeat;
  vertical-align: middle;
}
#footer .wrapper_inner .footer_menu ul li a.social_icon.twitter {
  background-position: 0 -19px;
}
#footer .wrapper_inner .footer_menu ul li a.social_icon.twitter:hover {
  background-position: 0 0;
}
#footer .wrapper_inner .footer_menu ul li a.social_icon.facebook {
  background-position: -19px -19px;
}
#footer .wrapper_inner .footer_menu ul li a.social_icon.facebook:hover {
  background-position: -19px 0;
}
/* Tablet */
@media screen and (min-width: 800px) {
  .mobile {
    display: none !important;
  }
  #menu-icon {
    display: none;
  }
  /* Nav!! */
  #footer .wrapper_inner .footer_menu ul {
    margin: 10px 0;
    *zoom: 1;
  }
  #footer .wrapper_inner .footer_menu ul:before,
  #footer .wrapper_inner .footer_menu ul:after {
    content: "";
    display: table;
  }
  #footer .wrapper_inner .footer_menu ul:after {
    clear: both;
  }
  #footer .wrapper_inner .footer_menu ul:before,
  #footer .wrapper_inner .footer_menu ul:after {
    display: table;
    content: "";
  }
  #footer .wrapper_inner .footer_menu ul:after {
    clear: both;
  }
  #footer .wrapper_inner .footer_menu ul li {
    padding: 0;
    display: inline-block;
    background: transparent;
  }
  #footer .wrapper_inner .footer_menu ul li:after {
    content: "|";
    margin-left: 5px;
  }
  #footer .wrapper_inner .footer_menu ul li a {
    color: #999;
  }
  #footer .wrapper_inner .footer_menu ul li a:hover {
    color: #FFF;
  }
  #footer .wrapper_inner .footer_menu ul li label {
    color: #999;
    font-size: 15px;
  }
  #footer .wrapper_inner .footer_menu ul li.first {
    display: none;
  }
  #footer .wrapper_inner .footer_menu ul li.last {
    display: inline-block;
  }
  padd #footer .wrapper_inner .footer_menu ul li.last:after {
    content: "";
  }
  #footer .wrapper_inner .footer_menu ul li a.social_icon {
    width: 19px;
    height: 0;
    padding: 19px 0px 0px 0px;
    overflow: hidden;
    background-image: url(https://s3.amazonaws.com/s3.colorofchange.org/ak-media/social_icons.jpg);
    background-repeat: no-repeat;
    vertical-align: middle;
  }
  #footer .wrapper_inner .footer_menu ul li a.social_icon.twitter {
    background-position: 0 -19px;
  }
  #footer .wrapper_inner .footer_menu ul li a.social_icon.twitter:hover {
    background-position: 0 0;
  }
  #footer .wrapper_inner .footer_menu ul li a.social_icon.facebook {
    background-position: -19px -19px;
  }
  #footer .wrapper_inner .footer_menu ul li a.social_icon.facebook:hover {
    background-postion: -19px 0;
  }
  #footer .wrapper_inner .first {
    display: none;
  }
  #footer .wrapper_inner .footer_menu ul li.last a.social_icon {
    display: inline-block;
  }
  #header-nav {
    display: block;
    position: static;
    background: transparent;
    border: 0;
  }
  #header nav ul.list-nav {
    padding: 0 2px 0 0;
    display: block;
    width: 100%;
    margin-left: 15%;
  }
  #header nav ul li {
    float: left;
    display: inline;
    padding: 0 0 0 2px;
    border: 0;
    width: auto;
  }
  #header nav ul li a {
    display: block;
    text-decoration: none;
    padding: 8px 0px;
    font-size: 16px;
    color: #fff;
    width: 100px;
    text-align: center;
    border-radius: 3px;
  }
  /* rainbow navigator */
  /*orange*/
  nav ul li.orange a.active {
    background: #f63;
  }
  nav ul li.orange a:hover {
    background: #f63;
  }
  nav ul li.orange a.selected {
    background: #f63;
  }
  /* red */
  nav ul li.red a.active {
    background: #c33;
  }
  nav ul li.red a:hover {
    background: #c33;
  }
  nav ul li.red a.selected {
    background: #c33;
  }
  /* purple */
  nav ul li.purple a.active {
    background: #9a679a;
  }
  nav ul li.purple a:hover {
    background: #9a679a;
  }
  nav ul li.purple a.selected {
    background: #9a679a;
  }
  /* yellow, was ffcd32 */
  nav ul li.yellow a.active {
    background: #ec990d;
  }
  nav ul li.yellow a:hover {
    background: #ec990d;
  }
  nav ul li.yellow a.selected {
    background: #ec990d;
  }
  /* blue */
  nav ul li.blue a.active {
    background: #09C;
  }
  nav ul li.blue a:hover {
    background: #09C;
  }
  nav ul li.blue a.selected {
    background: #09C;
  }
  /* green */
  nav ul li.green a.active {
    background: #1D8B32;
  }
  nav ul li.green a:hover {
    background: #1D8B32;
  }
  nav ul li.green a.selected {
    background: #1D8B32;
  }
  /* CSS Dropshadows, not supported in IE < 9 */
  .shadow {
    -moz-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.075);
    -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.075);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.075);
  }
  /* FOOTER !!! */
  #footer .wrapper_inner {
    clear: both;
    *zoom: 1;
    font-size: 11px;
  }
  #footer .wrapper_inner:before,
  #footer .wrapper_inner:after {
    content: "";
    display: table;
  }
  #footer .wrapper_inner:after {
    clear: both;
  }
  #footer .wrapper_inner:before,
  #footer .wrapper_inner:after {
    display: table;
    content: "";
  }
  #footer .wrapper_inner:after {
    clear: both;
  }
  #footer .wrapper_inner .copyright {
    display: block;
    float: left;
    margin-top: 13px;
  }
  #footer .wrapper_inner .footer_menu {
    float: right;
  }
  #footer .wrapper_inner .footer_menu ul li {
    border: 0;
  }
  #footer .wrapper_inner .footer_menu ul li.last:after {
    content: "";
  }
  #footer .wrapper_inner .footer_menu ul li.last label {
    font-size: 11px;
  }
}
/* DESKTOP ! */
@media screen and (min-width: 960px) {
  #topright {
    position: absolute;
    right: 0;
    width: 200px;
    height: 101px;
    display: block;
    border: 0;
  }
  #topright ul.top_links {
    position: absolute;
    right: 10px;
    list-style-type: none;
    width: 110px;
    margin-top: 1em;
    display: block;
  }
  body {
    background-color: white;
  }
  #wrapper {
    margin: 0 auto;
    padding: 0;
    max-width: 1100px;
    width: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
  }
  #content {
    color: #222;
    *zoom: 1;
  }
  #content:before,
  #content:after {
    content: "";
    display: table;
  }
  #content:after {
    clear: both;
  }
  #content:before,
  #content:after {
    display: table;
    content: "";
  }
  #content:after {
    clear: both;
  }
  /* page defaults */
  h2 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 24px;
    color: #1a1a1a;
    margin: 0;
    padding: 10px 0 20px;
    font-weight: normal;
  }
  .left_frame {
    margin: 0 15px 0 0;
    width: 714px;
    float: left;
    display: inline;
  }
  .left_frame p {
    font-family: Helvetica, sans-serif;
    font-size: 13px;
    line-height: 20px;
    color: #1a1a1a;
    padding: 0 0 5px;
    margin: 0;
    display: block;
  }
  .left_frame .paragraph_bordered {
    float: left;
    width: 710px;
    border-bottom: 1px solid #ccc;
  }
  .left_frame .paragraph_no_border {
    float: left;
    width: 710px;
    padding: 10px 0;
    display: inline;
  }
  /* right frame */
  .right_frame {
    float: left;
    width: 210px;
  }
  .right_frame h3 {
    font-size: 18px;
    color: #1a1a1a;
    font-family: Georgia, "Times New Roman", Times, serif;
    margin: 0;
    padding: 0 0 20px;
    float: left;
    font-weight: normal;
  }
  .right_frame p {
    float: left;
    margin: 0 0 22px;
    padding: 0;
    font-family: Helvetica, sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #1a1a1a;
  }
  .right_frame p a {
    font-size: 12px;
    /*color:#1a1a1a;*/
    /*text-decoration:underline; */
  }
  /* end default page*/
  ul.list-nav {
    width: 100%;
    margin-left: 0;
  }
  /* Header Styles */
  #header {
    display: block;
    margin: 0 auto;
    min-height: 150px;
    width: 100%;
  }
  #header nav {
    padding-top: 20px;
  }
  #header nav ul li a {
    width: 133px;
    /* 940 / 6 */
    margin-left: 0;
  }
  #header nav ul.list-nav {
    margin-left: 0;
  }
  #header .logo h1 {
    margin: 0;
    padding: 0;
  }
  #header .logo h1 a {
    text-decoration: none;
    display: block;
    width: 422px;
    height: 68px;
    text-indent: -9999px;
    background-size: contain;
    moz-background-size: contain;
    o-background-size: contain;
  }
  /* End Header Styles */
  /* donate button */
  #topright a.button {
    float: right;
    width: 142px;
    height: 110px;
    text-decoration: none;
    display: block;
    text-indent: -9999px;
    position: relative;
    top: -10px;
    left: 17px;
  }
  #topright ul.top_links {
    right: 150px;
  }
  #topright a.button#donate {
    background: url(../images/donate_button.png) no-repeat;
    border: 0;
  }
  #topright a.button#vote {
    background: url(../images/vote_button.png) no-repeat;
    border: 0;
  }
  #header .logo {
    float: left;
    width: 100%;
    padding: 30px 0 0 10px;
    display: inline;
  }
  .logo h1 {
    margin: 0 auto;
    display: block;
    max-width: 70%;
  }
  .logo h1 a {
    display: block;
    text-decoration: none;
    height: 68px;
    text-indent: -9999px;
    background-image: url(../images/logo_red.png);
    background-repeat: no-repeat;
  }
  /* large white block */
  .large_white_block {
    float: left;
    width: 942px;
    border: 1px solid #D4D4D4;
    border-radius: 4px;
    behavior: url(/static/js/PIE/PIE.htc);
    background: white;
  }
  .large_white_block .center {
    float: left;
    font-size: 13px;
    width: 905px;
    padding: 10px 20px;
    display: inline;
  }
  .large_white_block .center .two_part {
    float: left;
    width: 900px;
  }
  .large_white_block .center .two_part .txt_block {
    float: left;
    width: 500px;
    margin: 0 0 0 20px;
    display: inline;
  }
  .large_white_block .center .two_part .txt_block label.grey {
    font-size: 11px;
    color: #818181;
    font-family: Helvetica, sans-serif;
    width: 500px;
    float: left;
  }
  .large_white_block .center .two_part .txt_block p {
    font-size: 13px;
    line-height: 18px;
    margin: 0 0 20px;
    color: #333;
    font-family: Helvetica, sans-serif;
    width: 500px;
    float: left;
    display: inline;
  }
  .large_white_block .center .two_part .txt_block p a.take_action {
    text-decoration: none;
    display: inline-block;
    min-width: 84px;
    float: left;
  }
  .large_white_block .center .two_part .txt_block p a.submit {
    background: url(../images/btn_submit.png) no-repeat;
    text-indent: -9999px;
    text-decoration: none;
    display: block;
    width: 103px;
    height: 29px;
    float: left;
  }
  .large_white_block .center .two_part .txt_block h2 a {
    margin: 0;
    padding: 10px 0 17px;
    font-size: 24px;
    color: #333;
    font-family: Georgia, "Times New Roman", Times, serif;
    float: left;
    width: 500px;
    font-weight: normal;
  }
  .large_white_block .center .two_part .txt_block h2 a:hover {
    color: #900;
  }
  .large_white_block .center .two_part .left_image {
    float: left;
    width: 370px;
    max-height: 300px;
    overflow: hidden;
  }
  .large_white_block .center .two_part .left_image img {
    background: white;
    border: 1px solid #E8E8E8;
    padding: 4px;
    width: 360px;
    height: auto;
    display: block;
  }
  .large_white_block .center .two_part .left_image iframe {
    width: 360px;
    height: 268px;
  }
  /*end large_white_block */
}
/*** Themes

/*
 * Themes
 */
.red_border {
  border-top: 2px solid #c00;
}
.red_border a {
  color: #c00;
}
.red_border a:hover {
  color: #990000;
}
.red_border #header .logo h1 a {
  background-image: url(../images/logo_red.png);
  background-repeat: no-repeat;
}
.red_border .button,
.red_border input[type="submit"],
.red_border input[type="button"] {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #dc0000;
  background-image: -moz-linear-gradient(top, #f50000, #b80000);
  background-image: -ms-linear-gradient(top, #f50000, #b80000);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f50000), to(#b80000));
  background-image: -webkit-linear-gradient(top, #f50000, #b80000);
  background-image: -o-linear-gradient(top, #f50000, #b80000);
  background-image: linear-gradient(top, #f50000, #b80000);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f50000', endColorstr='#b80000', GradientType=0);
  display: inline-block;
  padding: 0 12px;
  margin-bottom: 10px;
  line-height: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-right-color: rgba(0, 0, 0, 0.25);
  color: #FFF;
  font-size: 11px;
  text-transform: uppercase;
  font-family: arial, sans-serif;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.15);
}
.red_border .button:hover,
.red_border input[type="submit"]:hover,
.red_border input[type="button"]:hover {
  color: white;
}
.orange_border {
  border-top: 2px solid #f63;
}
.orange_border a {
  color: #ff6633;
}
.orange_border a:hover {
  color: #cc3300;
}
.orange_border #header .logo h1 a {
  background-image: url(../images/logo_orange.png);
  background-repeat: no-repeat;
}
.orange_border .button,
.orange_border input[type="submit"],
.orange_border input[type="button"] {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #ff7243;
  background-image: -moz-linear-gradient(top, #ff855c, #ff571f);
  background-image: -ms-linear-gradient(top, #ff855c, #ff571f);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ff855c), to(#ff571f));
  background-image: -webkit-linear-gradient(top, #ff855c, #ff571f);
  background-image: -o-linear-gradient(top, #ff855c, #ff571f);
  background-image: linear-gradient(top, #ff855c, #ff571f);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff855c', endColorstr='#ff571f', GradientType=0);
  display: inline-block;
  padding: 0 12px;
  margin-bottom: 10px;
  line-height: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-right-color: rgba(0, 0, 0, 0.25);
  color: #FFF;
  font-size: 11px;
  text-transform: uppercase;
  font-family: arial, sans-serif;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.15);
}
.orange_border .button:hover,
.orange_border input[type="submit"]:hover,
.orange_border input[type="button"]:hover {
  color: white;
}
.purple_border {
  border-top: 2px solid #9a679a;
}
.purple_border a {
  color: #9a679a;
}
.purple_border a:hover {
  color: #663366;
}
.purple_border #header .logo h1 a {
  background-image: url(../images/logo_purple.png);
  background-repeat: no-repeat;
}
.purple_border .button,
.purple_border input[type="submit"],
.purple_border input[type="button"] {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #9f729f;
  background-image: -moz-linear-gradient(top, #aa80aa, #8e5e8e);
  background-image: -ms-linear-gradient(top, #aa80aa, #8e5e8e);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#aa80aa), to(#8e5e8e));
  background-image: -webkit-linear-gradient(top, #aa80aa, #8e5e8e);
  background-image: -o-linear-gradient(top, #aa80aa, #8e5e8e);
  background-image: linear-gradient(top, #aa80aa, #8e5e8e);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#aa80aa', endColorstr='#8e5e8e', GradientType=0);
  display: inline-block;
  padding: 0 12px;
  margin-bottom: 10px;
  line-height: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-right-color: rgba(0, 0, 0, 0.25);
  color: #FFF;
  font-size: 11px;
  text-transform: uppercase;
  font-family: arial, sans-serif;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.15);
}
.purple_border .button:hover,
.purple_border input[type="submit"]:hover,
.purple_border input[type="button"]:hover {
  color: white;
}
.yellow_border {
  border-top: 2px solid #ec990d;
}
.yellow_border a {
  color: #ec990d;
}
.yellow_border a:hover {
  color: #ec990d;
}
.yellow_border #header .logo h1 a {
  background-image: url(../images/logo_yellow.png);
  background-repeat: no-repeat;
}
.yellow_border .button,
.yellow_border input[type="submit"],
.yellow_border input[type="button"] {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #e99e21;
  background-image: -moz-linear-gradient(top, #f4aa2e, #d98c0c);
  background-image: -ms-linear-gradient(top, #f4aa2e, #d98c0c);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4aa2e), to(#d98c0c));
  background-image: -webkit-linear-gradient(top, #f4aa2e, #d98c0c);
  background-image: -o-linear-gradient(top, #f4aa2e, #d98c0c);
  background-image: linear-gradient(top, #f4aa2e, #d98c0c);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4aa2e', endColorstr='#d98c0c', GradientType=0);
  display: inline-block;
  padding: 0 12px;
  margin-bottom: 10px;
  line-height: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-right-color: rgba(0, 0, 0, 0.25);
  color: #FFF;
  font-size: 11px;
  text-transform: uppercase;
  font-family: arial, sans-serif;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.15);
}
.yellow_border .button:hover,
.yellow_border input[type="submit"]:hover,
.yellow_border input[type="button"]:hover {
  color: white;
}
.blue_border a {
  color: #0099cc;
}
.blue_border #header .logo h1 a {
  background-image: url(../images/logo_blue.png);
  background-repeat: no-repeat;
}
.blue_border .button,
.blue_border input[type="submit"],
.blue_border input[type="button"] {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #00a5dc;
  background-image: -moz-linear-gradient(top, #00b8f5, #008ab8);
  background-image: -ms-linear-gradient(top, #00b8f5, #008ab8);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#00b8f5), to(#008ab8));
  background-image: -webkit-linear-gradient(top, #00b8f5, #008ab8);
  background-image: -o-linear-gradient(top, #00b8f5, #008ab8);
  background-image: linear-gradient(top, #00b8f5, #008ab8);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00b8f5', endColorstr='#008ab8', GradientType=0);
  display: inline-block;
  padding: 0 12px;
  margin-bottom: 10px;
  line-height: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-right-color: rgba(0, 0, 0, 0.25);
  color: #FFF;
  font-size: 11px;
  text-transform: uppercase;
  font-family: arial, sans-serif;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.15);
}
.blue_border .button:hover,
.blue_border input[type="submit"]:hover,
.blue_border input[type="button"]:hover {
  color: white;
}
.green_border {
  border-top: 2px solid #1D8B32;
}
.green_border a {
  color: #339933;
}
.green_border a:hover {
  color: #006600;
}
.green_border #header .logo h1 a {
  background-image: url(../images/logo_green.png);
  background-repeat: no-repeat;
}
.green_border .button,
.green_border input[type="submit"],
.green_border input[type="button"] {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #37a537;
  background-image: -moz-linear-gradient(top, #3db83d, #2e8a2e);
  background-image: -ms-linear-gradient(top, #3db83d, #2e8a2e);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#3db83d), to(#2e8a2e));
  background-image: -webkit-linear-gradient(top, #3db83d, #2e8a2e);
  background-image: -o-linear-gradient(top, #3db83d, #2e8a2e);
  background-image: linear-gradient(top, #3db83d, #2e8a2e);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3db83d', endColorstr='#2e8a2e', GradientType=0);
  display: inline-block;
  padding: 0 12px;
  margin-bottom: 10px;
  line-height: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-right-color: rgba(0, 0, 0, 0.25);
  color: #FFF;
  font-size: 11px;
  text-transform: uppercase;
  font-family: arial, sans-serif;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.15);
}
.green_border .button:hover,
.green_border input[type="submit"]:hover,
.green_border input[type="button"]:hover {
  color: white;
}
