/******************************************************************
Site Name:
Author:

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/******************************************************************
IMPORTS & DEPENDENCIES
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
******************************************************************/
/******************************************************************
Site Name: FRBSF
Author: FRBSF Public Web Team

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/*
** CSS Triangles
** from https://css-tricks.com/snippets/css/css-triangle/
*/
.arrow-up {
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-bottom: 0.5rem solid #333; }

.arrow-down {
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid #333; }

.arrow-right, .arrow-right-link {
  width: 0;
  height: 0;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 0.5rem solid #333; }

.arrow-right-link {
  border-left-color: #0256a5; }

.arrow-left {
  width: 0;
  height: 0;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-right: 0.5rem solid #333; }

/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
TODO: Remove duplicate font variables.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  /* nuked word break and hyphens... */
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none; }

/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: IE Grid Styles

Since the example grid is based on media queries, so rather than
setup some js library that would make IE8 and below understand
media queries, let's just add some styles that serves a fixed grid.

Again, if you want to roll your own, just remove this junk and put
whatever you use in here.

******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection.

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
/*
IMPORTANT NOTE ABOUT SASS 3.3 & UP
You can't use @extend within media queries
anymore, so just be aware that if you drop
them in here, they won't work.
*/
.banner-title {
  font-weight: 300;
  text-transform: uppercase;
  color: #6c441c;
  font-size: 2.5rem; }

/******************************************************************
H1, H2, H3, H4, H5, H6 STYLES
******************************************************************/
h1, .h1 {
  font-size: 2.25rem;
  font-weight: 300; }

/*********************
NAVIGATION STYLES
*********************/
/* .menu is clearfixed inside mixins.scss */
.menu {
  /* end .menu ul */ }
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */ }
    .menu ul li {
      /*
      plan your menus and drop-downs wisely.
      */ }
      .menu ul li a {
        /*
        you can use hover styles here even though this size
        has the possibility of being a mobile device.
        */ }

/* end .menu */
@media only screen and (min-width: 581px) {
  header.header .header-img {
    padding: 1em 2em; }
    header.header .header-img #logo-org {
      padding: 0; }

  .landing-hero p {
    margin: 2rem;
    font-size: 1.75rem;
    line-height: 1.25; } }
#nav-btn {
  top: 3em; }

#nav-menu {
  min-width: 350px; }

#search-site {
  top: 2.5em; }

header.section-header h4 {
  text-align: left;
  width: auto;
  margin: 0 0 2rem 0; }

.page-careers .quote p {
  font-size: 1.15rem; }

/* Value of College Calculator */
.page-value-of-college .scale-number {
  font-size: .75rem;
  margin-left: -50%; }

.page-value-of-college .legend {
  left: 15%;
  font-size: .75rem;
  top: 1050px; }

.page-value-of-college .x-axis-img {
  display: block;
  position: relative;
  left: 60px;
  top: -20px;
  width: 740px; }

/*********************
HEADER STYLES
*********************/
.landing-hero p {
  display: block; }

.landing-hero-our-district {
  padding-right: 0.75em; }
  .landing-hero-our-district p {
    top: 17%;
    width: auto;
    margin: 2rem; }
  .landing-hero-our-district img {
    margin-bottom: 1.5rem; }

.page-template-page-about-main-php .sf-fed-blog {
  position: relative; }
  .page-template-page-about-main-php .sf-fed-blog img {
    width: 100%; }
  .page-template-page-about-main-php .sf-fed-blog p {
    position: absolute;
    top: 35%;
    margin: 0 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    width: 90%; }

.page-template-page-about-main-php .in-the-media {
  position: relative; }
  .page-template-page-about-main-php .in-the-media img {
    width: 100%; }
  .page-template-page-about-main-php .in-the-media p {
    position: absolute;
    top: 35%;
    margin: 0 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    width: 90%; }

/*********************
POSTS & CONTENT STYLES
*********************/
/* entry content */
.entry-content {
  /* at this larger size, we can start to align images */ }
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left; }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right; }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both; }

/* end .entry-content */
/*********************
PAGE SPECIFIC STYLES
*********************/
header.header .header-img .inner-header-wrap #inner-header #search-site-mobile {
  top: 95px; }

#econletter {
  margin-left: .5rem; }

#er-publication-action-icons.mobile {
  display: none; }
#er-publication-action-icons.desktop {
  display: block; }
#er-publication-action-icons a {
  padding-right: 2rem; }

#pub_title {
  font-size: 2.7em; }

/* Unreserved Columns */
.page-unreserved .section-hed {
  font-size: 2.5rem; }
.page-unreserved .tagline {
  font-size: 1.2rem;
  padding-bottom: 0; }

.page-our-district #careers-highlight .landing-careers-our-district img {
  width: 100%;
  min-height: 3rem; }

/* specific to PCE Inflation Dispersion */
#pce #tabDiv2, #pce #tabDiv3, #pce #tabDiv4, #pce #tabDiv5, #pce #tabDiv6,
#pce #tabDesc2, #pce #tabDesc3, #pce #tabDesc4, #pce #tabDesc5, #pce #tabDesc6 {
  display: none; }

#pce div.tabs ul,
#tax div.tabs ul,
#dnr div.tabs ul,
#term_premium div.tabs ul,
#tips div.tabs ul {
  display: block;
  margin: 0; }

/*********************
FOOTER STYLES
*********************/
/*
check your menus here. do they look good?
do they need tweaking?
*/
/* end .footer-links */
.page-template-page-weather-employment #plotly-div {
  padding-left: 0; }

@media (min-width: 528px) {
  .page-template-page-weather-employment .note {
    top: -65px; } }
/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/******************************************************************
H1, H2, H3, H4, H5, H6 STYLES
******************************************************************/
h1, .h1 {
  font-size: 2.5rem; }

/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  max-width: 850px; }

/*********************
HEADER STYLES
*********************/
.landing-section-title {
  width: 36%;
  margin-top: 2rem;
  margin-bottom: 2rem; }

.landing-hero-our-district p {
  top: 25%; }

.landing-hero-data p {
  top: 1rem;
  left: 2rem; }

.page-total-factor-productivity-tfp .landing-hero-data p, .page-pce-personal-consumption-expenditure-price-index-pcepi .landing-hero-data p {
  top: 0;
  left: 0; }

.page-nominal-wage-rigidity .landing-hero-data p {
  top: 0.25rem;
  left: 0; }

.landing-careers-our-district img {
  margin-bottom: 1.5rem; }
.landing-careers-our-district p {
  position: absolute;
  width: auto;
  top: 10%;
  margin: 2rem; }

/*********************
NAVIGATION STYLES
*********************/
.nav {
  border: 0;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */ }
  .nav ul {
    background: #333;
    margin-top: 0; }
  .nav li {
    float: left;
    position: relative;
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */ }
    .nav li a {
      border-bottom: 0;
      /*
      you can use hover styles here even though this size
      has the possibility of being a mobile device.
      */ }
      .nav li a:hover, .nav li a:focus {
        color: #fff;
        text-decoration: underline; }
    .nav li ul.sub-menu,
    .nav li ul.children {
      margin-top: 0;
      border: 1px solid #ccc;
      border-top: 0;
      position: absolute;
      visibility: hidden;
      z-index: 8999;
      /* highlight sub-menu current page */ }
      .nav li ul.sub-menu li,
      .nav li ul.children li {
        /*
        if you need to go deeper, go nuts
        just remember deeper menus suck
        for usability. k, bai.
        */ }
        .nav li ul.sub-menu li a,
        .nav li ul.children li a {
          padding-left: 10px;
          border-right: 0;
          display: block;
          width: 180px;
          border-bottom: 1px solid #ccc; }
        .nav li ul.sub-menu li:last-child a,
        .nav li ul.children li:last-child a {
          border-bottom: 0; }
        .nav li ul.sub-menu li ul,
        .nav li ul.children li ul {
          top: 0;
          left: 100%; }
    .nav li:hover > ul {
      top: auto;
      visibility: visible; }

/* end .nav */
/*********************
POSTS & CONTENT STYLES
*********************/
/* entry content */
.entry-content {
  margin: 0 auto; }

/* end .entry-content */
.frbsf_widget_cta {
  width: 200px; }

.post-nonperforming-loan-ratio-asset-quality-measures-in-asia td {
  border: 1px #eee solid;
  padding: 1em; }
.post-nonperforming-loan-ratio-asset-quality-measures-in-asia td:last-child {
  border-right: 1; }

/*********************
PAGE SPECIFIC STYLES
*********************/
/* Homepage */
.page-template-home .el_container_outer .el_container_inner_text {
  margin: 2rem;
  padding: 3rem; }

.page-template-home .blog_container_outer .blog_container_inner .blog_container_inner_text .blog_text {
  padding: 1rem 3rem;
  margin: 0 4rem; }

.page-template-home .stories_container_outer {
  padding: 2em 0; }

.page-template-page-education-home-php section {
  margin-bottom: 3rem; }

#search-site-mobile {
  display: none; }

header.header .header-img .inner-header-wrap #inner-header {
  position: relative;
  min-height: 100px; }
  header.header .header-img .inner-header-wrap #inner-header #nav-btn {
    top: 1.75rem; }
  header.header .header-img .inner-header-wrap #inner-header #search-site {
    display: block;
    position: absolute;
    right: 0;
    top: 2.75rem;
    padding-right: 0;
    text-align: right; }
    header.header .header-img .inner-header-wrap #inner-header #search-site form.search-form input[type="text"] {
      max-width: 10rem; }
  header.header .header-img .inner-header-wrap #inner-header .desktop #nav-btn.fixed {
    position: fixed;
    top: 0;
    z-index: 99999999; }
  header.header .header-img .inner-header-wrap #inner-header .desktop #search-site.fixed {
    position: fixed;
    top: 1rem;
    margin: 0 auto;
    width: 94%;
    max-width: 1344px;
    left: 0;
    right: 0;
    z-index: 9999999; }
    header.header .header-img .inner-header-wrap #inner-header .desktop #search-site.fixed input[type="text"] {
      background-color: #e1dddb; }
  header.header .header-img .inner-header-wrap #inner-header #search-site-mobile {
    float: right;
    width: 50px;
    margin-top: 1.25rem; }

.mission_text p {
  margin: 0 20%; }

.bio-image {
  float: left; }

.bio-text {
  margin-left: 9rem;
  padding: 1rem 2rem; }

.page-template-home .el_container_outer .el_container_inner .el_container_inner_text {
  padding: 2rem 7rem;
  margin: 3rem auto; }

#er-publication-action-icons {
  float: right;
  display: block; }

#share-links {
  display: block; }

.news_column {
  padding: 2rem 0 0 0; }

.stories_container_inner_text {
  margin: 3rem auto; }

.stories_image_pullquote img {
  float: left;
  margin: 0 2rem 0 0; }

/* Careers */
.page-careers .slideshow_thumb {
  display: block;
  max-width: 100%;
  margin: 0 auto; }
.page-careers .quote {
  clear: both; }

/* Landing pages */
.landing {
  max-width: 800px; }

.landing-hero p {
  margin: 3rem 5rem;
  font-size: 1.85rem;
  color: white;
  line-height: 1.25;
  text-align: center; }

/* Landing pages: Add greater than symbol to links when on desktop */
.view-more a::after {
  content: " >"; }

/* Value of College Calculator */
.calculator-container {
  border: 1px #eee solid;
  min-height: 930px;
  padding-right: 0; }
  .calculator-container .container {
    padding-right: 0.75em;
    padding-left: 30px; }

.page-value-of-college .container img.calculator-yaxis {
  display: block;
  width: 30px !important;
  position: absolute;
  top: 33px;
  left: 20px; }
.page-value-of-college h2 {
  font-size: 1.75rem;
  line-height: 1;
  text-align: left; }
.page-value-of-college .calculator-container img.banner-image {
  height: auto !important;
  min-height: 118px; }
.page-value-of-college .scale-value {
  bottom: -10px; }
.page-value-of-college .reference-area {
  bottom: 31px; }
.page-value-of-college .scale-number {
  bottom: -50px;
  font-size: 1rem; }
.page-value-of-college .legend {
  top: 817px;
  text-align: center;
  font-size: 1rem; }
.page-value-of-college .note {
  max-width: 850px;
  margin: 0 auto;
  margin-top: 1rem; }

#inner-content .calculator-input-outputs-bar .col1, #inner-content .calculator-input-outputs-bar .col2, #inner-content .calculator-input-outputs-bar .col3, #inner-content .calculator-input-outputs-bar .col4 {
  float: left;
  padding: 0 .5em 0 .25em;
  text-align: left; }
#inner-content .calculator-input-outputs-bar .col1 label {
  line-height: 1; }
#inner-content .calculator-input-outputs-bar .break-even-surplus label, #inner-content .calculator-input-outputs-bar .break-even-surplus-output {
  text-align: center; }
#inner-content .calculator-input-outputs-bar .break-even-surplus-output {
  padding: 0 18px;
  margin-top: 0;
  color: #3fe1e0;
  font-size: 50px; }

.scale-wrap {
  width: 33px;
  margin-left: 20px; }

.lost-earning {
  width: 3%;
  left: 112px; }

.tuition-costs {
  width: 3%;
  left: 112px; }

.x-axis-line {
  width: 712px;
  top: 374px;
  left: 110px; }

/* Blog and Podcast landing pages styles */
.page-sf-fed-blog h1, .page-blog h1, .page-pacific-exchange-blog h1, .post-type-archive-frbsf_podcast h1 {
  text-align: center; }
.page-sf-fed-blog p.meta.date, .page-blog p.meta.date, .page-pacific-exchange-blog p.meta.date, .post-type-archive-frbsf_podcast p.meta.date {
  text-align: center; }

.page-template-page-about-main-php .sf-fed-blog {
  position: relative; }
  .page-template-page-about-main-php .sf-fed-blog img {
    width: 100%; }
  .page-template-page-about-main-php .sf-fed-blog p {
    position: absolute;
    top: 25%;
    margin: 2rem;
    color: white;
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    width: 82%; }

.page-template-page-about-main-php .in-the-media {
  position: relative; }
  .page-template-page-about-main-php .in-the-media img {
    width: 100%; }
  .page-template-page-about-main-php .in-the-media p {
    position: absolute;
    top: 25%;
    margin: 2rem;
    color: white;
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    width: 82%; }

.desktop {
  display: block; }

.mobile {
  display: none; }

/* Careers heading text on tablet and above */
header.banner-image h1 {
  position: absolute;
  top: 38%;
  left: 3%;
  color: #fff; }

/* Unreserved Columns */
.page-unreserved .ur-content-area .t-4of12, .page-unreserved .ur-content-area .d-4of12 {
  width: 31.5%; }
.page-unreserved .ur-content-area .ur-3col {
  min-height: 34rem;
  width: 48%; }

/* Cash Game, and other Game styles */
.cash-game-container, .game-container {
  padding: 2rem; }
  .cash-game-container .cg-results, .game-container .cg-results {
    padding: 1rem; }

/* responsive tables */
table.data-table {
  display: table; }
  table.data-table thead {
    display: table-header-group; }
  table.data-table th {
    text-align: left;
    border-bottom: 2px solid #eee;
    vertical-align: bottom;
    padding: 0 10px 10px 10px; }
  table.data-table tr {
    border-bottom: 1px solid #eee;
    padding-bottom: 11px;
    margin-bottom: 11px; }
  table.data-table td {
    border: 1px #eee solid;
    padding: 1em !important; }
  table.data-table td:first-child {
    font-weight: 400;
    margin-bottom: 6px;
    color: #333; }
  table.data-table thead {
    display: table-header-group; }
  table.data-table tbody {
    display: table-row-group; }
  table.data-table tr {
    display: table-row; }
  table.data-table th, table.data-table td {
    display: table-cell; }
  table.data-table th[data-title]:before, table.data-table td[data-title]:before {
    content: ""; }
  table.data-table td:last-child {
    border: 1px #eee solid; }

/*********************
SIDEBARS & ASIDES
*********************/
.sidebar {
  margin-top: 2.2em; }

.widgettitle {
  border-bottom: 2px solid #444;
  margin-bottom: 0.75em; }

.widget {
  padding: 0 10px;
  margin: 2.2em 0; }
  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */ }
    .widget ul li ul {
      margin-top: 0.75em;
      padding-left: 1em; }

/* links widget */
/* meta widget */
/* pages widget */
/* recent-posts widget */
/* archives widget */
/* tag-cloud widget */
/* calendar widget */
/* category widget */
/* recent-comments widget */
/* search widget */
/* text widget */
/*********************
FOOTER STYLES
*********************/
/*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
.footer-links ul li {
  /*
  be careful with the depth of your menus.
  it's very rare to have multi-depth menus in
  the footer.
  */ }

/* end .footer-links */
/* Weather Employment Page */
.page-template-page-weather-employment .note {
  top: -65px;
  left: 0; }

.page-weather-adjusted-employment-change .landing-hero-data p {
  top: 0.2rem; }

/******************************************************************
Site Name:
Author:

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
.wrap {
  max-width: 1040px; }

.two-column {
  float: left;
  width: 46%;
  padding-right: 60px; }

/* Cash diary quiz */
.page-payment-diary-game .cg-buttons .answer {
  width: 48%; }
  .page-payment-diary-game .cg-buttons .answer.debit, .page-payment-diary-game .cg-buttons .answer.check {
    float: right; }

/* Easter egg quiz */
.frbsf_sf_fed_blog-presidents-speech-easter-egg-hunt .cg-buttons .answer {
  width: 48%;
  margin-right: 2%; }

/* Social links */
#share-links.desktop {
  display: block; }
#share-links.mobile {
  display: none; }

/* Unreserved Landing Page */
.ur-content-area {
  padding: 1rem; }

/* Unreserved Columns */
.page-unreserved .ur-content-area .ur-3col {
  width: 31.5%; }

/* Unreserved blockquote/pullquotes */
.page-unreserved blockquote.pullquote, .single-fed_stories blockquote.pullquote {
  line-height: 3rem; }
  .page-unreserved blockquote.pullquote:before, .page-unreserved blockquote.pullquote:after, .single-fed_stories blockquote.pullquote:before, .single-fed_stories blockquote.pullquote:after {
    top: 0.85em;
    top: 4.5rem; }

/* Landing Pages */
/* Careers heading text on tablet and above */
header.banner-image h1 {
  position: absolute;
  top: 58%;
  left: 3%;
  color: #fff; }

.page-careers .slideshow_large {
  max-width: 1040px;
  padding: 0;
  min-height: 370px; }
  .page-careers .slideshow_large img {
    padding-bottom: 0; }
.page-careers .work-story .quote {
  padding-top: 1rem;
  margin-left: 1em; }
  .page-careers .work-story .quote p {
    margin-top: .5rem;
    margin-bottom: 0; }
  .page-careers .work-story .quote p.quote-author {
    text-align: right; }
.page-careers .slideshow_thumb img {
  margin-right: 10px; }
.page-careers .slideshow_thumb #slide5_thumb img {
  margin-right: 0; }
.page-careers .slideshow_thumb .slide_thumb {
  margin-right: 0; }
.page-careers #jp_container_1, .page-careers #jp_container_2, .page-careers #jp_container_3, .page-careers #jp_container_4, .page-careers #jp_container_5 {
  margin-top: 1em; }

.non-active {
  display: none; }

/* Value of College Calculator */
.calculator-container {
  min-height: 930px;
  max-width: 850px;
  margin: 2em auto; }

.page-value-of-college .legend {
  top: 845px; }

/* CD Vantage Point Map */
#map-cd-vantage-point {
  height: 725px; }

#areaInfo {
  position: absolute;
  top: 0;
  width: 400px;
  height: 725px; }

.map-cd-container {
  position: relative; }

/*********************
Product Page Styles
*********************/
.product-page .module-2-flex {
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap; }

.product-text-box-flex {
  padding: 2rem 2rem 1rem 2rem;
  -webkit-flex: 0 0 50%;
  flex: 0 1 50%;
  -webkit-order: 1;
  order: 1; }

.product-image-container-flex {
  -webkit-flex: 0 0 50%;
  flex: 0 1 50%;
  -webkit-order: 2;
  order: 2; }

/*
you can call the larger styles if you want, but there's really no need
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/

/*# sourceMappingURL=ie.css.map */
