@charset "UTF-8";
/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 23, ../sass/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
/* line 38, ../sass/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
  /* @if $legacy-support-for-ie6 or $legacy-support-for-ie7 {
     *display: inline;
     *zoom: 1;
   }*/
}

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

/* Address styling not present in IE 8/9. */
/* line 58, ../sass/_normalize.scss */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _init.scss partial.
 */
/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
/* line 106, ../sass/_normalize.scss */
html {
  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  /* 1 */
  font-size: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.5em;
}

/*
@if $legacy-support-for-ie6 or $legacy-support-for-ie7 {
  // Address `font-family` inconsistency between `textarea` and other form elements.
  button,
  input,
  select,
  textarea {
    font-family: $base-font-family;
  }
}*/
/* Remove default margin. */
/* line 126, ../sass/_normalize.scss */
body {
  margin: 0;
  padding: 0;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* Address `outline` inconsistency between Chrome and other browsers. */
/* line 148, ../sass/_normalize.scss */
a:focus {
  outline: thin dotted;
}

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

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
/* line 169, ../sass/_normalize.scss */
p,
pre {
  margin: 1.5em 0;
}

/* line 173, ../sass/_normalize.scss */
blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.5em 30px;
}

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

/* line 190, ../sass/_normalize.scss */
h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* line 195, ../sass/_normalize.scss */
h3 {
  font-size: 1.17em;
  line-height: 1.28205em;
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;
}

/* line 200, ../sass/_normalize.scss */
h4 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* line 205, ../sass/_normalize.scss */
h5 {
  font-size: 0.83em;
  line-height: 1.80723em;
  margin-top: 1.80723em;
  margin-bottom: 1.80723em;
}

/* line 210, ../sass/_normalize.scss */
h6 {
  font-size: 0.67em;
  line-height: 2.23881em;
  margin-top: 2.23881em;
  margin-bottom: 2.23881em;
}

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

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

/* Address styling not present in Safari 5 and Chrome. */
/* line 228, ../sass/_normalize.scss */
dfn {
  font-style: italic;
}

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

/* Address styling not present in IE 8/9. */
/* line 242, ../sass/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

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

/* Improve readability of pre-formatted text in all browsers. */
/* line 262, ../sass/_normalize.scss */
pre {
  /*@if $legacy-support-for-ie6 or $legacy-support-for-ie7 {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
  }
  @else {*/
  white-space: pre-wrap;
  /* }*/
}

/* Set consistent quote types. */
/* line 276, ../sass/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
/* line 281, ../sass/_normalize.scss */
small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
/* line 286, ../sass/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 293, ../sass/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 296, ../sass/_normalize.scss */
sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
/* line 303, ../sass/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}

/* line 312, ../sass/_normalize.scss */
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

/* line 318, ../sass/_normalize.scss */
dd {
  margin: 0 0 0 30px;
  /* LTR */
}

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

/*
@if $legacy-support-for-ie7 {
  // Correct list images handled incorrectly in IE 7. 
  nav ul,
  nav ol {
    list-style: none;
    list-style-image: none;
  }
}*/
/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 343, ../sass/_normalize.scss */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /*@if $legacy-support-for-ie7 {
    // Improve image quality when scaled in IE 7. 
    -ms-interpolation-mode: bicubic;
  }*/
  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */
  /* Responsive images */
  max-width: 100%;
  height: auto;
  /*@if $legacy-support-for-ie8 {
    // Correct IE 8 not scaling image height when resized. 
    width: auto;
  }*/
}

/* Correct overflow displayed oddly in IE 9. */
/* line 364, ../sass/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
/* line 369, ../sass/_normalize.scss */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Correct margin displayed oddly in IE 6/7. */
/*@if $legacy-support-for-ie6 or $legacy-support-for-ie7 {
  
  form {
    margin: 0;
  }
}*/
/* Define consistent border, margin, and padding. */
/* line 385, ../sass/_normalize.scss */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-width: 0.0625em;
  border-top-style: solid;
  padding-top: 0.4625em;
  border-bottom-width: 0.0625em;
  border-bottom-style: solid;
  padding-bottom: 0.9125em;
  border-left-width: 0.0625em;
  border-left-style: solid;
  padding-left: 0.9125em;
  border-right-width: 0.0625em;
  border-right-style: solid;
  padding-right: 0.9125em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
/* line 400, ../sass/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
  /*@if $legacy-support-for-ie6 or $legacy-support-for-ie7 {
    *margin-left: -7px;   } */
}

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

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

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

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

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

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
/* line 483, ../sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  /*@if $legacy-support-for-ie7 {
    height: 13px;
    width: 13px; 
  }*/
}

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

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

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

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

/* Drupal-style form labels. */
/* line 529, ../sass/_normalize.scss */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
/* line 537, ../sass/_normalize.scss */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* Layout rules */
/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
/* line 15, ../sass/components/_misc.scss */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
/* line 39, ../sass/components/_misc.scss */
.element-invisible,
.element-focusable,
#navigation .block-menu .block__title,
#navigation .block-menu-block .block__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
/* line 45, ../sass/components/_misc.scss */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
/* line 62, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 65, ../sass/components/_misc.scss */
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/**
 * Branding header.
 */
/* Wrapping link for logo. */
/* line 81, ../sass/components/_misc.scss */
.header__logo {
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
}

/* Logo image. */
/* line 88, ../sass/components/_misc.scss */
.header__logo-image {
  vertical-align: bottom;
}

/* Wrapper for website name and slogan. */
/* line 93, ../sass/components/_misc.scss */
.header__name-and-slogan {
  float: left;
}

/* The name of the website. */
/* line 98, ../sass/components/_misc.scss */
.header__site-name {
  margin: 0;
  font-size: 2em;
  line-height: 1.5em;
}

/* The link around the name of the website. */
/* line 105, ../sass/components/_misc.scss */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
/* line 111, ../sass/components/_misc.scss */
.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

/* The slogan (or tagline) of a website. */
/* line 118, ../sass/components/_misc.scss */
.header__site-slogan {
  margin: 0;
}

/* The secondary menu (login, etc.) */
/* line 123, ../sass/components/_misc.scss */
.header__secondary-menu {
  float: right;
  /* LTR */
}

/* Wrapper for any blocks placed in the header region. */
/* line 128, ../sass/components/_misc.scss */
.header__region {
  /* Clear the logo. */
  clear: both;
}

/**
 * Navigation bar.
 */
/* line 136, ../sass/components/_misc.scss */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* overflow: hidden; */
  /* Main menu and secondary menu links and menu block links. */
}
/* line 140, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 150, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 156, ../sass/components/_misc.scss */
#navigation .links li,
#navigation .menu li {
  /* A simple method to get navigation links to appear in one line. */
  float: left;
  /* LTR */
  padding: 0 10px 0 0;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}

/**
 * Breadcrumb navigation.
 */
/* line 170, ../sass/components/_misc.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 174, ../sass/components/_misc.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/**
 * Titles.
 */
/* line 185, ../sass/components/_misc.scss */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

/**
 * Messages.
 */
/* line 197, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.5em 0;
  padding: 10px 10px 10px 50px;
  /* LTR */
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAD6UlEQVR42s2WX0xbVRzH3YwmC4k+GF/0ZS/S267/bmnX9nL7bwstZlnbjTDYyoC5GCbB0ZW5pdJCe6swbLFA6bpWIGuRMWVjKGP+21QW3SZBSAjGh4XEaTZTH82Cm/3ztS2xs7mw4KLRk3xyzj33/H6fe5Pz7zEA/yr/vUDukj9FH6drqTaqT8EoPs/UV+nX6TD1BlUh9AqLHlmgPKLcRHmoCOWmElK/FOKTYpS8UwLJkASiUyLI3pKhlClN0g46qj+qL/pbArlbrlO1q25JeiSgR2iYJ8ywXLSg/qP6LNl2ro8+Q4MMkKCd9K2t3q3KdQnkXXIF5aISkgEJzONm1F2qW52pDJN1MI2bUBIuAdVOJWSMTPNQgX6/vkjVpvpREpag6oMqWCYta1IzbsHh9ga0RJtzY8URMdRO9U/KSuWmNQUqh2pY3CtG+fvlqJyofMAFNrZAE+7e/RWR4X4cD9tgOGsA2U2CdtMDqwqyMyIzQ5KKqAKmcyaYxkzYd3YvjGNGFtXRPRj58DT+LOemRrFnrBLyITmUDmUyO/NYgu2d26ukHVJo3tXAMGpAs+cQmh0NeClan30uwN7TgnQ6nRd4r3thOGOAJqYB2UVC79AfZAnKHGUxQa8A2tNaNLW/jKvXv8Dyb8s4yryKA4O10A3roIvpUB+swTdz1/LJZ27PQBvT5lBH1RD4BChzlQ2wBNtc22aE/ULQgzRCl4P5BPcT93GMOYz9wb2QhCRgAq35d8u/L2PXe7tADVGgBlcQ+AXQtmlvsP/gzbJZvp8PMkJCFBYh8m0knyiVSsHe0YIGZz1+/uVOvt8z7QGvnwf+ST5EIRHIUyR4fh50rbp5lsDcYR4ReAXgBrng9q/Qfa0bfy035r7Ot2dvz4IX4IEIEAXwvDzscOw4zxJUd1YfEXlE4Aa4BQHMlwzSSBeI7iXvoTxWDqKPYCFsFaKmr+YVliB0JfS89DVpiuhlB9k/tSOZTuYFvq98yI7L0/MAsVWcGp0bfW61hbahwltxSeARsIKyWKesSKQSWIwvYkvvllwfx88pgOvhwthu/AzAxlVX8vz385tLbaVxwpcLZtEw0QDjsBGctzksiE4CimZFfHp++oWHbnbuUfdB0komMgHsRN1r0MWBsEmYODF5onY92/UTwcvBxuzXcN1ccHycVSn2FaPYWwzCQUDWKIt7z3utAJ5c74Hz+OLSomynY+cVfiM/xW3JiDyZpB3FuZrj4oCwE+Ad4qWMjPHjpTtL0mzMoxyZz9yM39Q7Y85Ok930icqm+k59TL2wm9l90dZv8y/8sPAigGf/iUN/Q4anM2zOsdLe+L+4VfwBVVjDs2rTYx0AAAAASUVORK5CYII=');
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border: 1px solid #be7;
}

/* line 212, ../sass/components/_misc.scss */
.messages--warning {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACuElEQVRIiWP4//8/Ay0xSYqntTpnT252zqeJBf0Njhsykrz/pyd6/e9vcNpGVQv6q2wlm0qc/r0+IPD/3UG+/61l9v9mdrjIUc2C7hqHUzc3S///eZwBjO9tF/vfWe1wjioWTKixVm8otPn38wQT3IKfxxn/t5Va/utpsNSg2ILWcttrNzdJgQ3+dpQRjEHs+9tE/zeXWt+gyILOamuTqlxrsOtPLub+7+emBsSq/88v5wL7oqHQ9H9nmbkF2RbUF1rev7lJEuziuU3i/90ddcB4UZsoJC62ifyvK7R4QJYFrcUGrmUZ5v9hYb9hosh/bzcDMN42VRgeF9W5hv8bi/XdSbagKtfs2c1NEvCIPbaQ/7+/pwkYn17Ki0hR24T/l2eZPCfJgsZ83dCiNOP/yCnn7iau/8G+5mD8aBsHSoqqyNL9X5erHUm0BcVpRm9ubhZHMoTh/4eDzP/DA23+RwTZ/P96hAlF7t5Wof8FyfpvibKgNk8noyDZ4D9quofg1Bjr/1kJlhjiIF+Upmn/r83RzCJoQXaC3qcbm8SwGMLwvybP/H8jMGlik7u7VeB/Zqz2J7wWVGdr1uTG62J1PQgfWST1/+hiCaxyIF8UJqv9r8hQrcVpQVqkzrcbG0WwGvB2H/P/lnx5MAaxsam5vYn3f2KY+jesFpSlqfZnxWjidP2OGWL/g/0swBjExu4Lhv958Ur/i5KU+lEsCA1lYI4JUv95bZ0gTo2Pt3P+z0myBmMQG5e6mxu4/kf4Kf8EmQm3oCRNebKrvSawIGPBqRG9sMOp5hjjfwdrlf/58bKT4RaUpWvtcLZV/39iscD/H0AFP46jYwYiMeP/44u4/9tbKQODSXUH3II9G7v18hI0n8YGKv+IDVT6joxj/BVx4mgcOCde/SnITPRUJAHEGlTCEkQV19TAAN8FC67hZdFXAAAAAElFTkSuQmCC');
  border-color: #ed5;
}

/* line 221, ../sass/components/_misc.scss */
.messages--error {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACpElEQVR42rWWTUgbQRiGQ0Tx4MWDeFM8eBA9iKAoggiCoCiiIiL4L3oQV1CJB0UEf6iRYFpK7UniTw9VSqL2kvQsVDBpSZrtRo35czVNW3oprRf17exSl4yzu1ikAy9h59vvedhkMrMGAGoxknAk2w8MJ/WosXThiZkZt9jdLeglPjn5ATc3mhJNuNjbK0QbG3ExMICL/n6IfX0gcxB7ekDAELu6IHZ2IlJbi1hLS1BLogmPtbUhMTv7oMSamzUlqnByMxLT0/8STQkDj9TV4ZLj5OysrODl8jIu5Gs68dFR7JG6dWkJ0fFx+TpSX89IDMnwcHU1yKec12Yz3rlc4HkeLwjkXJpPip3U3+7vIx6P4ymph4eG5PlwTQ0lMdytlmBxMWKtrXLeT0zA5XTibvj9fjxfXETkb/3N/Dz2dneVuiTZtliU/rPSUsQ5ziuxZYG03IIlJdKKUPJjdRUAKMmzuTnskB/VYbdTtd9HR4g2NCi9Z2VliDY1BSnBaUEBzsrLqXyzWCiQ9HU5HA4afniIUFWV0hOqqMBpURErOM7NxWlhIZOvCwvA7S3Uxq+DA5AnZ3pO8vJYQSArC8c5Oeqx2Rj4udeLQH6+6v2B7GxW8DkjA0JmJpONwUHY7XZGIAgCzCYTeJUewmIFfqMRfEoKlQ2yJbza2oLWcLvdeDI2hk/3+iQWKzAYkJzNjg5srq9TwJ9OJ76YTNScx+ORJT66X1/grKyEbW2NgfPp6XKd/JMZySrHaQsSU1Oe+0/w3WpVgyu5HBlR6lc+H8gioevDwz6JrWwV5+3txyoSFk5DcOX1MnCyJ4Vwfb1zt1UY9SR8aioDpuppaVpwZbPTl+hHF04dOKzk8XBF8DgJC3/woU/W/EciOtELOWi8DDwp//215Q+p7kiKh2lQSAAAAABJRU5ErkJggg==');
  border-color: #ed541d;
}

/* line 231, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

/* line 234, ../sass/components/_misc.scss */
.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
/* line 239, ../sass/components/_misc.scss */
.messages--error p.error {
  color: #333;
}

/* System status report. */
/* line 244, ../sass/components/_misc.scss */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

/* line 249, ../sass/components/_misc.scss */
.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

/* line 254, ../sass/components/_misc.scss */
.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 265, ../sass/components/_misc.scss */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  *zoom: 1;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYmJiYmJiIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: linear-gradient(to top, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbb \0/ie;
  margin: 1.5em 0;
  padding: 0 2px;
  white-space: nowrap;
}

/* line 275, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  /* LTR */
  margin: 0 3px;
}

/* line 279, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.5em;
  text-decoration: none;
}

/* Primary tabs. */
/* line 292, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  text-shadow: 1px 1px 0 #fff;
  border: 1px solid #bbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

/* line 301, ../sass/components/_misc.scss */
.tabs-primary__tab.is-active {
  border-bottom-color: #fff;
}

/* line 307, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

/* line 317, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

/* line 321, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

/* Secondary tabs. */
/* line 345, ../sass/components/_misc.scss */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.5em;
}

/* line 351, ../sass/components/_misc.scss */
.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.75em 3px;
}

/* line 358, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  -moz-border-radius: 0.75em;
  -webkit-border-radius: 0.75em;
  border-radius: 0.75em;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 0 #fff;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}

/* line 367, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

/* line 372, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
/* line 400, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 404, ../sass/components/_misc.scss */
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* The inline field label used by the Fences module. */
/* line 412, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
/* line 419, ../sass/components/_misc.scss */
.more-link {
  text-align: right;
  /* LTR */
}

/* line 422, ../sass/components/_misc.scss */
.more-help-link {
  text-align: right;
  /* LTR */
}

/* line 425, ../sass/components/_misc.scss */
.more-help-link a {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');
  background-position: 0 50%;
  /* LTR */
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
  /* LTR */
}

/**
 * Pager.
 */
/* A list of page numbers when more than 1 page of content is available. */
/* line 440, ../sass/components/_misc.scss */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

/* line 445, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis, .pager-current {
  display: inline;
  padding: 0 0.5em;
  list-style-type: none;
  background-image: none;
}

/* line 452, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis {
  /* A concatenation of several list items using an ellipsis. */
}

/* The current page's list item. */
/* line 462, ../sass/components/_misc.scss */
.pager-current {
  font-weight: bold;
}

/**
 * Blocks.
 */
/* Block wrapper. */
/* line 472, ../sass/components/_misc.scss */
.block {
  margin-bottom: 1.5em;
}

/**
 * Menus.
 */
/* line 479, ../sass/components/_misc.scss */
.menu__item.is-leaf {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHBAMAAAA2fErgAAAAD1BMVEX///+/v7+Li4sAAADAwMBFvsw8AAAAAXRSTlMAQObYZgAAAB1JREFUCFtjYAADYwMGBmYVZSDhKAwkFJWhYiAAAB2+Aa/9ugeaAAAAAElFTkSuQmCC');
  list-style-type: square;
}

/* line 486, ../sass/components/_misc.scss */
.menu__item.is-expanded {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  list-style-type: circle;
}

/* line 493, ../sass/components/_misc.scss */
.menu__item.is-collapsed {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  list-style-type: disc;
}

/* The active item in a Drupal menu. */
/* line 502, ../sass/components/_misc.scss */
.menu a.active {
  color: #000;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
/* line 511, ../sass/components/_misc.scss */
.new,
.update {
  color: #c00;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
}

/**
 * Unpublished note.
 */
/* The word "Unpublished" displayed underneath the content. */
/* line 523, ../sass/components/_misc.scss */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  /* A very nice CSS3 property. */
  word-wrap: break-word;
}

/**
 * Comments.
 */
/* Wrapper for the list of comments and its title. */
/* line 551, ../sass/components/_misc.scss */
.comments {
  margin: 1.5em 0;
}

/* Preview of the comment before submitting new or updated comment. */
/* line 556, ../sass/components/_misc.scss */
.comment-preview {
  /* Drupal core will use a #ffffea background. See #1110842. */
  background-color: #ffffea;
}

/* Wrapper for a single comment. */
/* line 562, ../sass/components/_misc.scss */
.comment {
  /* Comment's permalink wrapper. */
}
/* line 565, ../sass/components/_misc.scss */
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
/* line 572, ../sass/components/_misc.scss */
.indented {
  /* Drupal core uses a 25px left margin. */
  margin-left: 30px;
  /* LTR */
}

/**
 * Forms.
 */
/* Wrapper for a form element (or group of form elements) and its label. */
/* line 582, ../sass/components/_misc.scss */
.form-item {
  margin: 1.5em 0;
  /* Pack groups of checkboxes and radio buttons closer together. */
  /* Form items in a table. */
  /* Highlight the form elements that caused a form submission error. */
  /* The descriptive help text (separate from the label). */
}
/* line 586, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 593, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 599, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 606, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

/* line 613, ../sass/components/_misc.scss */
.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

/* The part of the label that indicates a required field. */
/* line 619, ../sass/components/_misc.scss */
.form-required {
  color: #c00;
}

/* Labels for radios and checkboxes. */
/* line 624, ../sass/components/_misc.scss */
label.option {
  display: inline;
  font-weight: normal;
}

/* Buttons used by contrib modules like Media. */
/* line 630, ../sass/components/_misc.scss */
a.button {
  -moz-appearance: button;
  -webkit-appearance: button;
}

/* Password confirmation. */
/* line 635, ../sass/components/_misc.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
/* line 641, ../sass/components/_misc.scss */
#user-login-form {
  text-align: left;
  /* LTR */
}

/**
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */
/* OpenID creates a new ul above the login form's links. */
/* line 653, ../sass/components/_misc.scss */
.openid-links {
  /* Position OpenID's ul next to the rest of the links. */
  margin-bottom: 0;
}

/* The "Log in using OpenID" and "Cancel OpenID login" links. */
/* line 659, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 1.5em;
}

/* line 663, ../sass/components/_misc.scss */
html.js #user-login-form li.openid-link,
#user-login-form li.openid-link {
  /* Un-do some of the padding on the ul list. */
  margin-left: -20px;
  /* LTR */
}

/* line 668, ../sass/components/_misc.scss */
#user-login ul {
  margin: 1.5em 0;
}

/**
 * Drupal admin tables.
 */
/* line 676, ../sass/components/_misc.scss */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
/* line 681, ../sass/components/_misc.scss */
form tbody {
  border-top: 1px solid #ccc;
}
/* line 684, ../sass/components/_misc.scss */
form table ul {
  margin: 0;
}

/* line 688, ../sass/components/_misc.scss */
tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

/* line 694, ../sass/components/_misc.scss */
tr.even {
  background-color: #fff;
}

/* Markup generated by theme_tablesort_indicator(). */
/* line 709, ../sass/components/_misc.scss */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
/* line 714, ../sass/components/_misc.scss */
td.checkbox,
th.checkbox {
  text-align: center;
}

/* Drupal core wrongly puts this in system.menus.css. Since we override that, add it back. */
/* line 720, ../sass/components/_misc.scss */
td.menu-disabled {
  background: #ccc;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
/* line 731, ../sass/components/_misc.scss */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 742, ../sass/components/_misc.scss */
html.js .collapsible .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  background-position: 5px 65%;
  /* LTR */
  background-repeat: no-repeat;
  padding-left: 15px;
  /* LTR */
}
/* line 751, ../sass/components/_misc.scss */
html.js .collapsed .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}
/* line 758, ../sass/components/_misc.scss */
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
/* line 770, ../sass/components/_misc.scss */
tr.drag {
  background-color: #fffff0;
}

/* line 773, ../sass/components/_misc.scss */
tr.drag-previous {
  background-color: #ffd;
}

/* line 776, ../sass/components/_misc.scss */
.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
/* line 785, ../sass/components/_misc.scss */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 794, ../sass/components/_misc.scss */
.progress {
  font-weight: bold;
}
/* line 797, ../sass/components/_misc.scss */
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
/* line 803, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1522332081');
}

/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {
  /* Underline all links. */
  /* line 15, ../sass/_print.scss */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  /* line 20, ../sass/_print.scss */
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

  /* line 25, ../sass/_print.scss */
  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  /* line 27, ../sass/_print.scss */
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 16px;
  }
  /* line 34, ../sass/_print.scss */
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  /* line 40, ../sass/_print.scss */
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  /* line 46, ../sass/_print.scss */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  /* line 54, ../sass/_print.scss */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  /* line 64, ../sass/_print.scss */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */
@font-face {
  font-family: "Trebuchet MS";
  src: url("../fonts/trebuchet/Trebuchet_MS.ttf");
}
@font-face {
  font-family: "Trebuchet MS Bold";
  src: url("../fonts/trebuchet/Trebuchet_MS_Bold.ttf");
}
@font-face {
  font-family: "Trebuchet MS";
  src: url("../fonts/trebuchet/Trebuchet_MS.eot");
}
@font-face {
  font-family: "Trebuchet MS Bold";
  src: url("../fonts/trebuchet/Trebuchet_MS_Bold.eot");
}
/* line 4, ../sass/headers/_extensible.scss */
.eid-button, body.page-user input#edit-submit, body.node-type-module div#teacher-student-toggle button,
body.node-type-science-module-reading div#teacher-student-toggle button,
body.node-type-science-module-section div#teacher-student-toggle button {
  display: inline;
  clear: none;
  margin: 0px;
  border-radius: 0px;
  background-color: white;
  border: 1px solid #6d6f71;
  padding: 5px 17px;
  color: #58595b;
  background-color: white;
  font-size: 0.9em;
}

/* line 17, ../sass/headers/_extensible.scss */
.module-page-main-header, body.node-type-module div.field-name-field-student-intro h2,
body.node-type-module div.field-name-field-teacher-intro h2, body.node-type-module div.field-name-field-teacher-intro h2.top,
body.node-type-module div.field-name-field-student-intro h2.top {
  font-size: 30px;
  line-height: 30px;
  color: #159ca6;
  margin-bottom: 10px;
  font-weight: bold;
  margin-top: 10px;
  padding: 0px;
  display: block;
}

/* line 29, ../sass/headers/_extensible.scss */
.subheader, .subheader-top p, body.node-type-science-module-reading div#content .field-name-field-reading-header p,
body.page-views div#content .field-name-field-reading-header p, body.node-type-science-module-section div#content div.field-name-field-header-text p, body.node-type-science-module-section div#content h3 {
  font-size: 26px;
  line-height: 28px;
  font-weight: bold;
  margin: 0px;
}

/* line 41, ../sass/headers/_extensible.scss */
.subheader-top, body.node-type-science-module-reading div#content .field-name-field-reading-header,
body.page-views div#content .field-name-field-reading-header, body.node-type-science-module-section div#content div.field-name-field-header-text {
  margin-left: 40px;
  float: left;
}

/* line 50, ../sass/headers/_extensible.scss */
.module-section-title, body.node-type-science-module-reading div#content div.field-name-field-visible-title,
body.page-views div#content div.field-name-field-visible-title, body.node-type-science-module-section div#content div.field-name-field-section-title {
  color: #1c9ca6;
  width: 710px;
  margin: 30px 0px 10px 40px;
  float: left;
  padding-bottom: 0px;
}
/* line 57, ../sass/headers/_extensible.scss */
.module-section-title p, body.node-type-science-module-reading div#content div.field-name-field-visible-title p,
body.page-views div#content div.field-name-field-visible-title p, body.node-type-science-module-section div#content div.field-name-field-section-title p {
  font-size: 30px;
  line-height: 30px;
  margin-top: 0px;
  margin-bottom: 0px;
}

/* line 64, ../sass/headers/_extensible.scss */
.content-para {
  padding-top: 0px;
  margin-top: 0px;
  font-size: 16px;
  line-height: 1.4em;
}

/* line 72, ../sass/headers/_extensible.scss */
.caption, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption, caption {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 20px;
  display: block;
  margin: 0px auto;
}

/* line 81, ../sass/headers/_extensible.scss */
.caption.moderate-width, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.moderate-width.caption {
  width: 500px;
}

/* line 84, ../sass/headers/_extensible.scss */
.caption.in-text, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.in-text.caption {
  margin-bottom: 22px;
}

/* line 87, ../sass/headers/_extensible.scss */
.credit, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.credit,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.credit {
  font-weight: bold;
  font-size: 13px;
  line-height: 15px;
  display: block;
  margin: 5px auto 0px auto;
}

/* line 95, ../sass/headers/_extensible.scss */
.credit.left, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.left.credit {
  text-align: left;
  margin-left: 0px;
  width: auto;
}

/* line 100, ../sass/headers/_extensible.scss */
.credit.margin-bottom, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.margin-bottom.credit {
  margin-bottom: 20px;
}

/* line 103, ../sass/headers/_extensible.scss */
p {
  margin-bottom: 16px;
}

/* line 106, ../sass/headers/_extensible.scss */
p.source {
  margin-bottom: 4px;
}

/* line 110, ../sass/headers/_extensible.scss */
.category-table {
  border: 1px solid #bcbec0;
  font-size: 16px;
  margin: 0px auto;
}
/* line 115, ../sass/headers/_extensible.scss */
.category-table td {
  width: 33%;
}
/* line 118, ../sass/headers/_extensible.scss */
.category-table th {
  background-color: #afb0b4;
  font-weight: normal;
  color: white;
}
/* line 124, ../sass/headers/_extensible.scss */
.category-table td:first-child {
  border-left: 1px solid #bcbec0;
}
/* line 127, ../sass/headers/_extensible.scss */
.category-table td, .category-table th {
  padding: 5px 10px 5px 10px;
  border-left: 1px solid white;
}
/* line 131, ../sass/headers/_extensible.scss */
.category-table td.category {
  font-weight: bold;
  font-style: italic;
  text-align: center;
}
/* line 138, ../sass/headers/_extensible.scss */
.category-table tr:nth-child(even) {
  background-color: #e5e4e9;
}
/* line 141, ../sass/headers/_extensible.scss */
.category-table tr:nth-child(odd) {
  background-color: #f7f7f7;
}
/* line 144, ../sass/headers/_extensible.scss */
.category-table tr:last-child {
  border-bottom: #CCC;
}
/* line 147, ../sass/headers/_extensible.scss */
.category-table td {
  text-align: left;
}

/* line 3, ../sass/sitewide/_admin.scss */
div#admin-menu-wrapper {
  font-size: 11px;
  height: 20px;
  padding: 3px 0px 7px 0px;
}

/* line 9, ../sass/sitewide/_admin.scss */
div#block-system-navigation {
  width: 200px;
}

/* line 14, ../sass/sitewide/_admin.scss */
ul.tabs-primary {
  margin: 0px auto;
  width: 1060px;
  margin-bottom: 10px;
}

/* line 20, ../sass/sitewide/_admin.scss */
.header__secondary-menu {
  margin-top: 10px;
}

/* line 4, ../sass/sitewide/_general.scss */
.image-shadow {
  -webkit-box-shadow: 8px 8px 15px -11px rgba(0, 0, 0, 0.47);
  -moz-box-shadow: 8px 8px 15px -11px rgba(0, 0, 0, 0.47);
  box-shadow: 8px 8px 15px -11px rgba(0, 0, 0, 0.47);
}

/* line 11, ../sass/sitewide/_general.scss */
html body.admin-menu.admin-menu-with-shortcuts {
  margin-top: 0px !important;
}

/* line 14, ../sass/sitewide/_general.scss */
body {
  background-color: #eaedf2;
  /*
  div.status {
    margin-bottom: -70px;
    top: -120px;
    position: relative;
  
  }*/
  font-family: "Trebuchet MS";
  /* liquid? */
  width: 100%;
}
/* line 16, ../sass/sitewide/_general.scss */
body a {
  outline: none;
}
/* line 22, ../sass/sitewide/_general.scss */
body button#cboxClose {
  top: 0px;
}
/* line 25, ../sass/sitewide/_general.scss */
body #colorbox img {
  max-width: 100%;
}
/* line 28, ../sass/sitewide/_general.scss */
body div#colorbox {
  max-width: 100%;
}
/* line 31, ../sass/sitewide/_general.scss */
body div#cboxBottomLeft,
body div#cboxBottomCenter,
body div#cboxBottomRight {
  margin-top: -2px;
}
/* line 38, ../sass/sitewide/_general.scss */
body ul.resource_links {
  margin-top: -20px;
}
/* line 41, ../sass/sitewide/_general.scss */
body div#back_to_top {
  display: none;
}
/* line 44, ../sass/sitewide/_general.scss */
body h4 {
  margin-bottom: 10px;
}
/* line 47, ../sass/sitewide/_general.scss */
body div.download_container {
  margin-bottom: 20px;
}
/* line 49, ../sass/sitewide/_general.scss */
body div.download_container.centered {
  margin: 0px auto 20px auto;
}
/* line 53, ../sass/sitewide/_general.scss */
body div.download_container.bottom_space {
  margin-bottom: 50px;
}
/* line 56, ../sass/sitewide/_general.scss */
body a.download_pdf {
  height: 20px;
  display: block;
  padding-top: 70px;
  width: 116px;
  text-align: center;
  background: url("../images/icons/download-pdf.png") center 0px no-repeat;
  font-size: 14px;
  line-height: 16px;
  padding-left: 8px;
  /*&.small {
    margin-top: -14px;
    margin-right: 16px;
    background-size: 35px 37px;
    padding-top: 40px;
    width: 50px;
    float: right;
    font-size: 12px;
    text-align: center;
    line-height: 14px;
  }*/
}
/* line 66, ../sass/sitewide/_general.scss */
body a.download_pdf.centered {
  margin: 0px auto;
}
/* line 81, ../sass/sitewide/_general.scss */
body div.download_container.two {
  width: 260px;
}
/* line 83, ../sass/sitewide/_general.scss */
body div.download_container.two a.download_pdf {
  float: left;
}
/* line 88, ../sass/sitewide/_general.scss */
body .clear-both {
  clear: both;
}
/* line 92, ../sass/sitewide/_general.scss */
body div#cboxOverlay {
  opacity: 0.7 !important;
}
/* line 95, ../sass/sitewide/_general.scss */
body div#cboxContent {
  border: 1px solid white;
}
/* line 98, ../sass/sitewide/_general.scss */
body ul.bullet-list {
  list-style-type: disc;
}
/* line 101, ../sass/sitewide/_general.scss */
body .ui-widget-content a:not(.btn) {
  color: #009ca6;
}
/* line 106, ../sass/sitewide/_general.scss */
body div#content article div ul {
  font-size: 16px;
}
/* line 110, ../sass/sitewide/_general.scss */
body div#content ul.double-spaced li {
  margin-bottom: 20px;
}
/* line 116, ../sass/sitewide/_general.scss */
body p.btn-container {
  height: 60px;
  display: block;
  border: 1px solid transparent;
}
/* line 121, ../sass/sitewide/_general.scss */
body a.btn {
  margin: 0px auto;
  font-size: 18px;
  background-color: #159ca6;
  color: white;
  width: 200px;
  height: 28px;
  display: block;
  border-radius: 4px;
  padding: 12px 5px;
  text-align: center;
  box-shadow: 0 3px 0 0 #007299;
  cursor: pointer;
}
/* line 135, ../sass/sitewide/_general.scss */
body p.btn-container.small {
  height: 40px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
/* line 140, ../sass/sitewide/_general.scss */
body p.btn-container.small a.btn {
  font-size: 18px;
  width: 140px;
  border-radius: 8px;
  padding: 5px 5px 0px 5px;
}
/* line 146, ../sass/sitewide/_general.scss */
body a.btn:active {
  box-shadow: none;
  margin-bottom: -3px;
  margin-top: 3px;
}
/* line 153, ../sass/sitewide/_general.scss */
body div#page {
  padding: 0px 0px 20px 0px;
  max-width: 1440px;
  width: 100%;
  margin: 0px auto;
  min-height: 1224px;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(102, 102, 102, 0.5);
  -moz-box-shadow: 0px 0px 7px 0px rgba(102, 102, 102, 0.5);
  box-shadow: 0px 0px 7px 0px rgba(102, 102, 102, 0.5);
  background-color: white;
  background: white;
  background: -webkit-linear-gradient(legacy-direction(180deg), white, white, #f4f7fc);
  background: linear-gradient(180deg, #ffffff, #ffffff, #f4f7fc);
}
/* line 166, ../sass/sitewide/_general.scss */
body div#page:before {
  content: '';
  max-width: 1440px;
  width: 100%;
  height: 12px;
  display: block;
  background-color: #159ca6;
}
/* line 180, ../sass/sitewide/_general.scss */
body nav.breadcrumb {
  display: none;
}
/* line 190, ../sass/sitewide/_general.scss */
body ol li {
  margin-bottom: 14px;
}
/* line 193, ../sass/sitewide/_general.scss */
body ol.margin-bottom {
  margin-bottom: 10px;
}
/* line 196, ../sass/sitewide/_general.scss */
body .shadow-reset {
  box-shadow: none;
  -webkit-box-shadow: none;
}
/* line 200, ../sass/sitewide/_general.scss */
body div.center-content {
  text-align: center;
  margin-bottom: 16px;
}
/* line 203, ../sass/sitewide/_general.scss */
body div.center-content img {
  border: 1px solid black;
}
/* line 207, ../sass/sitewide/_general.scss */
body div.center-content img:nth-child(2) {
  margin-left: 10px;
}
/* line 211, ../sass/sitewide/_general.scss */
body div.center-content img.no-border {
  border: 0px;
}
/* line 216, ../sass/sitewide/_general.scss */
body div.equation {
  margin: 15px auto;
  width: 80%;
  height: 70px;
}
/* line 221, ../sass/sitewide/_general.scss */
body div.equation div {
  float: left;
}
/* line 228, ../sass/sitewide/_general.scss */
body div.equation_right {
  width: 70%;
  margin-left: 10px;
}
/* line 232, ../sass/sitewide/_general.scss */
body div.equation_left {
  width: 20%;
  margin-left: 3%;
}
/* line 236, ../sass/sitewide/_general.scss */
body .fraction {
  text-align: center;
}
/* line 239, ../sass/sitewide/_general.scss */
body .fraction, body .top, body .bottom {
  padding: 0 5px;
}
/* line 243, ../sass/sitewide/_general.scss */
body .fraction .bottom {
  border-top: 2px solid #000;
  display: block;
  /*for top padding */
  line-height: 22px;
}
/* line 249, ../sass/sitewide/_general.scss */
body .clear-both {
  clear: both;
}
/* line 255, ../sass/sitewide/_general.scss */
body div.text-image-right {
  word-wrap: break-word;
}
/* line 259, ../sass/sitewide/_general.scss */
body div.image-left-solo {
  margin-bottom: 10px;
}
/* line 265, ../sass/sitewide/_general.scss */
body div.image-right {
  float: right;
  margin-left: 20px;
  margin-right: 0px;
  display: inline-block;
  text-align: center;
}
/* line 275, ../sass/sitewide/_general.scss */
body div.views-accordion-header {
  clear: both;
}
/* line 282, ../sass/sitewide/_general.scss */
body a {
  text-decoration: none;
  color: #009ca6;
}
/* line 286, ../sass/sitewide/_general.scss */
body footer#footer {
  background-color: #6d6f71;
  color: #fad12c;
  padding: 20px 0px 60px 0px;
  margin-top: 0px;
  max-width: 1440px;
  width: 100%;
}
/* line 291, ../sass/sitewide/_general.scss */
body footer#footer p {
  font-size: 0.9em;
}
/* line 299, ../sass/sitewide/_general.scss */
body footer#footer div#block-block-5 {
  width: 1060px;
  margin: 0px auto;
}
/* line 305, ../sass/sitewide/_general.scss */
body div#navigation {
  display: none;
}

/* line 313, ../sass/sitewide/_general.scss */
body.section-users div#main {
  width: 100%;
}

/* line 321, ../sass/sitewide/_general.scss */
body.node-type-timeline div#main,
body.node-type-science-article div#main,
body.section-users div#main,
body.not-logged-in.section-user.page-user div#main {
  border-top: 2px solid #bcbec0;
  margin-top: 45px;
}

/* line 337, ../sass/sitewide/_general.scss */
body div#block-block-1,
body.node-type-module div#block-block-1,
body.node-type-timeline div#block-block-1,
body.node-type-science-module-reading div#block-block-1,
body.node-type-science-module-section div#block-block-1 {
  clear: left;
  /*border: 1px solid red;*/
  width: 1060px;
  margin: 0px auto;
  margin-top: 30px;
  display: block;
  text-align: left;
  font-size: 1.6em;
  font-weight: lighter;
  padding: 0px;
  height: 60px;
  margin-bottom: -40px;
}
/* line 354, ../sass/sitewide/_general.scss */
body div#block-block-1 h1,
body.node-type-module div#block-block-1 h1,
body.node-type-timeline div#block-block-1 h1,
body.node-type-science-module-reading div#block-block-1 h1,
body.node-type-science-module-section div#block-block-1 h1 {
  padding: 0px;
  margin: 0px;
  /*border: 1px solid red;*/
}
/* line 365, ../sass/sitewide/_general.scss */
body div#block-block-1 span.inf,
body.node-type-module div#block-block-1 span.inf,
body.node-type-timeline div#block-block-1 span.inf,
body.node-type-science-module-reading div#block-block-1 span.inf,
body.node-type-science-module-section div#block-block-1 span.inf {
  color: #159ca6;
}
/* line 368, ../sass/sitewide/_general.scss */
body div#block-block-1 span.dis,
body.node-type-module div#block-block-1 span.dis,
body.node-type-timeline div#block-block-1 span.dis,
body.node-type-science-module-reading div#block-block-1 span.dis,
body.node-type-science-module-section div#block-block-1 span.dis {
  color: #a7a9ac;
}
/* line 372, ../sass/sitewide/_general.scss */
body div#block-block-1 span.inf, body div#block-block-1 span.dis,
body.node-type-module div#block-block-1 span.inf,
body.node-type-module div#block-block-1 span.dis,
body.node-type-timeline div#block-block-1 span.inf,
body.node-type-timeline div#block-block-1 span.dis,
body.node-type-science-module-reading div#block-block-1 span.inf,
body.node-type-science-module-reading div#block-block-1 span.dis,
body.node-type-science-module-section div#block-block-1 span.inf,
body.node-type-science-module-section div#block-block-1 span.dis {
  font-weight: normal;
}
/* line 383, ../sass/sitewide/_general.scss */
body div#content,
body.node-type-module div#content,
body.node-type-timeline div#content,
body.node-type-science-module-reading div#content,
body.node-type-science-module-section div#content {
  margin: 0px auto;
  width: 1060px;
}
/* line 387, ../sass/sitewide/_general.scss */
body div#content div.field-type-text-long p.caption, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body div#content div#reading_widget div.ui-accordion p.caption,
body.node-type-module div#content div.field-type-text-long p.caption,
body.node-type-module body.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.section-content body.node-type-module div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.node-type-module div#content div#reading_widget div.ui-accordion p.caption,
body.node-type-timeline div#content div.field-type-text-long p.caption,
body.node-type-timeline body.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.section-content body.node-type-timeline div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.node-type-timeline div#content div#reading_widget div.ui-accordion p.caption,
body.node-type-science-module-reading div#content div.field-type-text-long p.caption,
body.node-type-science-module-reading body.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.section-content body.node-type-science-module-reading div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.node-type-science-module-reading div#content div#reading_widget div.ui-accordion p.caption,
body.node-type-science-module-section div#content div.field-type-text-long p.caption,
body.node-type-science-module-section body.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.section-content body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.node-type-science-module-section div#content div#reading_widget div.ui-accordion p.caption {
  text-align: center;
  font-size: 14px;
}
/* line 392, ../sass/sitewide/_general.scss */
body div#content div.field-type-text-long p.caption div.field-type-text-long p.credit,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption div.field-type-text-long p.credit,
body div#content div#reading_widget div.ui-accordion p.caption div.field-type-text-long p.credit,
body.node-type-module div#content div.field-type-text-long p.caption div.field-type-text-long p.credit,
body.node-type-module div#content div#reading_widget div.ui-accordion p.caption div.field-type-text-long p.credit,
body.node-type-timeline div#content div.field-type-text-long p.caption div.field-type-text-long p.credit,
body.node-type-timeline div#content div#reading_widget div.ui-accordion p.caption div.field-type-text-long p.credit,
body.node-type-science-module-reading div#content div.field-type-text-long p.caption div.field-type-text-long p.credit,
body.node-type-science-module-reading div#content div#reading_widget div.ui-accordion p.caption div.field-type-text-long p.credit,
body.node-type-science-module-section div#content div.field-type-text-long p.caption div.field-type-text-long p.credit,
body.node-type-science-module-section div#content div#reading_widget div.ui-accordion p.caption div.field-type-text-long p.credit {
  font-size: 14px;
  font-style: italic;
}
/* line 397, ../sass/sitewide/_general.scss */
body div#content p.caption, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.node-type-module div#content p.caption,
body.node-type-module body.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.section-content body.node-type-module div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.node-type-timeline div#content p.caption,
body.node-type-timeline body.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.section-content body.node-type-timeline div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.node-type-science-module-reading div#content p.caption,
body.node-type-science-module-reading body.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.section-content body.node-type-science-module-reading div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.node-type-science-module-section div#content p.caption,
body.node-type-science-module-section body.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.section-content body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) p.caption {
  margin-top: 0px;
}
/* line 400, ../sass/sitewide/_general.scss */
body div#content p.table_note,
body.node-type-module div#content p.table_note,
body.node-type-timeline div#content p.table_note,
body.node-type-science-module-reading div#content p.table_note,
body.node-type-science-module-section div#content p.table_note {
  font-size: 16px;
  text-align: left;
  margin: 12px auto;
  width: 650px;
}

/* line 409, ../sass/sitewide/_general.scss */
.show tr:nth-child(2n) td.standout {
  background-color: #b9daf7;
}

/* line 412, ../sass/sitewide/_general.scss */
.show tr:nth-child(2n+1) td.standout {
  background-color: #c6dff4;
}

/* line 11, ../sass/sitewide/_menu.scss */
body div#block-system-main-menu,
body.node-type-module div#block-system-main-menu,
body.node-type-timeline div#block-system-main-menu,
body.node-type-science-module-reading div#block-system-main-menu,
body.node-type-science-module-section div#block-system-main-menu {
  z-index: 10;
  color: #6d6f71;
  padding: 0px;
  margin-top: 60px;
  margin-bottom: 0px;
  font-size: 0.88em;
  text-transform: uppercase;
  width: 1060px;
  margin: 0px auto;
  position: relative;
  top: 12px;
}
/* line 25, ../sass/sitewide/_menu.scss */
body ul.menu,
body.node-type-module ul.menu,
body.node-type-timeline ul.menu,
body.node-type-science-module-reading ul.menu,
body.node-type-science-module-section ul.menu {
  margin-top: 3px;
  width: 320px;
  margin-right: 7px;
  float: right;
  top: 12px;
  position: relative;
}
/* line 32, ../sass/sitewide/_menu.scss */
body ul.menu ul,
body.node-type-module ul.menu ul,
body.node-type-timeline ul.menu ul,
body.node-type-science-module-reading ul.menu ul,
body.node-type-science-module-section ul.menu ul {
  display: none;
}
/* line 35, ../sass/sitewide/_menu.scss */
body ul.menu li,
body.node-type-module ul.menu li,
body.node-type-timeline ul.menu li,
body.node-type-science-module-reading ul.menu li,
body.node-type-science-module-section ul.menu li {
  list-style: none;
  float: right;
  border-right: 2px solid #a7a9ac;
  margin-left: 0px;
  text-align: center;
  padding: 0px 10px;
  display: block;
  margin: 0px;
  font-weight: bold;
  height: 14px;
}
/* line 46, ../sass/sitewide/_menu.scss */
body ul.menu li a,
body.node-type-module ul.menu li a,
body.node-type-timeline ul.menu li a,
body.node-type-science-module-reading ul.menu li a,
body.node-type-science-module-section ul.menu li a {
  padding: 0px;
  margin-top: -6px;
  letter-spacing: 2px;
  display: block;
  color: #a7a9ac;
  text-decoration: none;
}
/* line 54, ../sass/sitewide/_menu.scss */
body ul.menu li a.active,
body.node-type-module ul.menu li a.active,
body.node-type-timeline ul.menu li a.active,
body.node-type-science-module-reading ul.menu li a.active,
body.node-type-science-module-section ul.menu li a.active {
  color: #009ca6;
}
/* line 58, ../sass/sitewide/_menu.scss */
body ul.menu li:first-child,
body.node-type-module ul.menu li:first-child,
body.node-type-timeline ul.menu li:first-child,
body.node-type-science-module-reading ul.menu li:first-child,
body.node-type-science-module-section ul.menu li:first-child {
  border-right: 0px;
}

/* line 65, ../sass/sitewide/_menu.scss */
body:not(.node-type-main-page) div#block-system-main-menu > ul.menu > li:nth-child(2) a {
  color: #009ca6;
}
/* line 69, ../sass/sitewide/_menu.scss */
body:not(.node-type-main-page) ul.menu > li.expanded > ul.menu:hover,
body:not(.node-type-main-page) ul.menu > li.expanded:hover > ul.menu,
body:not(.node-type-main-page) ul.menu > li.expanded a:hover > ul.menu {
  display: block;
  margin: 0px;
  position: absolute;
  padding-left: 0px;
  margin-left: -74px;
  margin-top: 0px;
  padding-top: 6px;
}
/* line 82, ../sass/sitewide/_menu.scss */
body:not(.node-type-main-page) ul.menu > li.expanded > ul.menu:hover li,
body:not(.node-type-main-page) ul.menu > li.expanded:hover > ul.menu li,
body:not(.node-type-main-page) ul.menu > li.expanded a:hover > ul.menu li {
  background-color: white;
  border-top: 2px solid #bcbec0;
  border-right-width: 0px;
  border-bottom-width: 0px;
  display: block;
  text-align: left;
  width: 270px;
  float: none;
  padding: 5px 4px 4px 6px;
  margin-left: 0px;
  letter-spacing: -2px;
  transition: background-color 0.2s ease;
  /*  a {
      color: $eid-midgrey;
    }
    a.active {
      color: $eid-aqua;
    }*/
}
/* line 95, ../sass/sitewide/_menu.scss */
body:not(.node-type-main-page) ul.menu > li.expanded > ul.menu:hover li a,
body:not(.node-type-main-page) ul.menu > li.expanded:hover > ul.menu li a,
body:not(.node-type-main-page) ul.menu > li.expanded a:hover > ul.menu li a {
  letter-spacing: 1.1px;
  width: 100%;
  display: block;
}
/* line 107, ../sass/sitewide/_menu.scss */
body:not(.node-type-main-page) ul.menu > li.expanded > ul.menu:hover li:last-child,
body:not(.node-type-main-page) ul.menu > li.expanded:hover > ul.menu li:last-child,
body:not(.node-type-main-page) ul.menu > li.expanded a:hover > ul.menu li:last-child {
  border-bottom: 2px solid #bcbec0;
}
/* line 110, ../sass/sitewide/_menu.scss */
body:not(.node-type-main-page) ul.menu > li.expanded > ul.menu:hover li:hover,
body:not(.node-type-main-page) ul.menu > li.expanded:hover > ul.menu li:hover,
body:not(.node-type-main-page) ul.menu > li.expanded a:hover > ul.menu li:hover {
  background-color: #eaedf2;
  transition: background-color 0.2s ease;
}

/* line 5, ../sass/sitewide/_slides.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .container {
  overflow: hidden;
  border: 1px solid #2d6c8f;
  background-color: white;
  margin: 15px auto;
  padding-bottom: 5px;
}
/* line 15, ../sass/sitewide/_slides.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slide {
  padding-top: 0px;
  text-align: center;
  overflow: hidden;
  float: left;
}
/* line 24, ../sass/sitewide/_slides.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slide img {
  display: block;
  margin: 0px auto;
}
/* line 31, ../sass/sitewide/_slides.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slide p {
  margin-top: 8px;
}
/* line 35, ../sass/sitewide/_slides.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .navpanel {
  background-color: #2d6c8f;
  height: 30px;
  overflow: hidden;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 3px;
}
/* line 43, ../sass/sitewide/_slides.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .navpanel a {
  color: white;
}
/* line 48, ../sass/sitewide/_slides.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .next_slide {
  float: right;
}
/* line 52, ../sass/sitewide/_slides.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .prev_slide {
  float: left;
}
/* line 56, ../sass/sitewide/_slides.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs body .navpanel a,
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs body .ui-widget-content .navpanel a {
  color: white;
}
/* line 61, ../sass/sitewide/_slides.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs body .navpanel a:hover,
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs body .ui-widget-content .navpanel a:hover {
  text-decoration: none;
}
/* line 67, ../sass/sitewide/_slides.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .prev_slide, body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .next_slide {
  cursor: pointer;
  text-decoration: none;
  color: white;
}
/* line 72, ../sass/sitewide/_slides.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .prev-slide:hover, body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .next_slide:hover {
  text-decoration: underline;
}
/* line 84, ../sass/sitewide/_slides.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs p.slide-image-legend {
  margin: 0px auto;
  text-align: center;
}
/* line 89, ../sass/sitewide/_slides.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .container {
  width: 659px;
  height: 356px;
}
/* line 94, ../sass/sitewide/_slides.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slide {
  padding: 30px 0px 20px 0px;
  width: 659px;
  height: 310px;
}
/* line 99, ../sass/sitewide/_slides.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div#content div.jqtabs .container .slider-wrapper p,
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slider-wrapper p {
  width: 90%;
  margin: 0px auto;
  font-size: 16px;
  line-height: 22px;
}
/* line 106, ../sass/sitewide/_slides.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slider-wrapper {
  width: 2636px;
  height: 330px;
  overflow: hidden;
}
@media screen and (min-width: 930px) and (max-width: 1110px), screen and (max-width: 800px) {
  /* line 120, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs p.slide-image-legend {
    margin: 0px auto;
    text-align: center;
  }
  /* line 127, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .container {
    width: 500px;
    height: 316px;
  }
  /* line 130, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .container img {
    width: 470px;
  }
  /* line 135, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slide {
    padding: 30px 0px 20px 0px;
    width: 500px;
    height: 270px;
  }
  /* line 141, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slider-wrapper p {
    width: 90%;
    max-width: 90%;
    margin: 5px auto;
    font-size: 16px;
    line-height: 22px;
  }
  /* line 149, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slider-wrapper {
    width: 2000px;
    height: 290px;
    overflow: hidden;
  }
}
@media screen and (max-width: 650px) {
  /* line 161, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .container {
    width: 400px;
    height: 252px;
  }
  /* line 165, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slider-wrapper {
    width: 1600px;
    height: 226px;
  }
  /* line 169, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slide {
    width: 400px;
    height: 206px;
  }
  /* line 172, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slide img {
    width: 370px;
  }
  /* line 175, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slide p {
    font-size: 16px;
    line-height: 18px;
  }
}
@media screen and (max-width: 414px) {
  /* line 189, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.equation {
    width: 100%;
    font-size: 14px;
    line-height: 14px;
  }
  /* line 194, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.equals {
    margin-left: 15px;
  }
  /* line 197, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.equation_right {
    margin-left: 20px;
    width: 50%;
  }
  /* line 202, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .container {
    width: 300px;
    height: 220px;
  }
  /* line 206, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slider-wrapper {
    width: 1200px;
    height: 194px;
  }
  /* line 210, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slide {
    padding-top: 20px;
    width: 300px;
    height: 174px;
  }
  /* line 214, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slide img {
    width: 370px;
  }
  /* line 217, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slide p {
    font-size: 13px;
    line-height: 15px;
  }
}
@media screen and (max-width: 330px) {
  /* line 227, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs table.category-table {
    font-size: 14px;
  }
  /* line 231, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.equation {
    font-size: 12px;
  }
  /* line 234, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .container {
    width: 250px;
    height: 196px;
  }
  /* line 238, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slider-wrapper {
    width: 1000px;
    height: 170px;
  }
  /* line 243, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slide {
    padding-top: 20px;
    width: 250px;
    height: 150px;
  }
  /* line 247, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slide img {
    width: 370px;
  }
  /* line 250, ../sass/sitewide/_slides.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.jqtabs .slide p {
    font-size: 12px;
    line-height: 14px;
  }
}

/* line 4, ../sass/sitewide/_tabs.scss */
body div#content div.jqtabs,
body.node-type-science-module-section div#content div.jqtabs,
body.node-type-module div#content div.jqtabs {
  font-family: "Trebuchet MS";
  margin-bottom: 30px;
  font-size: 16px;
}
/* line 10, ../sass/sitewide/_tabs.scss */
body div#content div.jqtabs p,
body.node-type-science-module-section div#content div.jqtabs p,
body.node-type-module div#content div.jqtabs p {
  margin-bottom: 15px;
}
/* line 14, ../sass/sitewide/_tabs.scss */
body div#content div.jqtabs ol,
body.node-type-science-module-section div#content div.jqtabs ol,
body.node-type-module div#content div.jqtabs ol {
  margin-top: 0px;
}
/* line 17, ../sass/sitewide/_tabs.scss */
body div#content div.jqtabs li ol,
body.node-type-science-module-section div#content div.jqtabs li ol,
body.node-type-module div#content div.jqtabs li ol {
  margin-top: 10px;
  margin-left: 0px;
}
/* line 23, ../sass/sitewide/_tabs.scss */
body div#content div.jqtabs ul, body div#content div.jqtabs ol,
body.node-type-science-module-section div#content div.jqtabs ul,
body.node-type-science-module-section div#content div.jqtabs ol,
body.node-type-module div#content div.jqtabs ul,
body.node-type-module div#content div.jqtabs ol {
  margin-left: auto;
  margin-right: auto;
}
/* line 27, ../sass/sitewide/_tabs.scss */
body div#content div.jqtabs h2, body div#content div.jqtabs h3,
body.node-type-science-module-section div#content div.jqtabs h2,
body.node-type-science-module-section div#content div.jqtabs h3,
body.node-type-module div#content div.jqtabs h2,
body.node-type-module div#content div.jqtabs h3 {
  margin-left: 0px;
  margin-bottom: 8px;
}
@media screen and (min-width: 668px) {
  /* line 32, ../sass/sitewide/_tabs.scss */
  body div#content div.jqtabs .back_to_tabs,
  body.node-type-science-module-section div#content div.jqtabs .back_to_tabs,
  body.node-type-module div#content div.jqtabs .back_to_tabs {
    display: none;
  }
}
/* line 38, ../sass/sitewide/_tabs.scss */
body div.jqtabs > ul.ui-tabs-nav,
body.node-type-science-module-section div.jqtabs > ul.ui-tabs-nav,
body.node-type-module div.jqtabs > ul.ui-tabs-nav {
  margin: 0px;
  padding: 0px;
}
/* line 43, ../sass/sitewide/_tabs.scss */
body div.jqtabs > ul.ui-tabs-nav > li,
body.node-type-science-module-section div.jqtabs > ul.ui-tabs-nav > li,
body.node-type-module div.jqtabs > ul.ui-tabs-nav > li {
  margin-left: 0px;
}
/* line 46, ../sass/sitewide/_tabs.scss */
body div.jqtabs > ul.ui-tabs-nav > li:not(.ui-tabs-active),
body.node-type-science-module-section div.jqtabs > ul.ui-tabs-nav > li:not(.ui-tabs-active),
body.node-type-module div.jqtabs > ul.ui-tabs-nav > li:not(.ui-tabs-active) {
  margin-bottom: 0px;
  padding: 0px;
}
@media screen and (max-width: 667px) {
  /* line 55, ../sass/sitewide/_tabs.scss */
  body div#content div.jqtabs > ul > li,
  body.node-type-science-module-section div#content div.jqtabs > ul > li,
  body.node-type-module div#content div.jqtabs > ul > li {
    width: 100%;
    display: block;
  }
  /* line 58, ../sass/sitewide/_tabs.scss */
  body div#content div.jqtabs > ul > li a,
  body.node-type-science-module-section div#content div.jqtabs > ul > li a,
  body.node-type-module div#content div.jqtabs > ul > li a {
    width: 100%;
    text-align: center;
  }
  /* line 64, ../sass/sitewide/_tabs.scss */
  body div.jqtabs,
  body.node-type-science-module-section div.jqtabs,
  body.node-type-module div.jqtabs {
    width: 100%;
    margin: 0px auto;
    min-width: 0px;
  }
}

/* line 5, ../sass/sitewide/_select_table.scss */
.select-table select {
  background-color: #f8f8f8;
  border: 1px solid grey;
  padding: 2px 2px 2px 10px;
  cursor: pointer;
  min-width: 150px;
  font-size: 16px;
  line-height: 1;
  border: 0;
  border-radius: 0;
  height: 25px;
  color: #000;
  background: url("../images/widgets/select-arrow.png") 0 0 no-repeat;
  background-position: top 10px right 30px;
}
/* line 22, ../sass/sitewide/_select_table.scss */
.select-table select option {
  max-width: 130px;
  display: block;
}
/* line 26, ../sass/sitewide/_select_table.scss */
.select-table div.select_container {
  overflow: hidden;
  width: 130px;
  border: 1px solid grey;
  margin-top: -22px;
  background-color: #f8f8f8;
  border-radius: 4px;
}
/* line 36, ../sass/sitewide/_select_table.scss */
.select-table .feedback_icon, .select-table td.correct::after, .select-table td.incorrect::after, .select-table td.not_tried::after {
  position: relative;
  float: right;
  margin-right: 10px;
  margin-top: -26px;
}
/* line 42, ../sass/sitewide/_select_table.scss */
.select-table td.correct::after {
  content: '\2713';
  color: green;
  font-size: 22px;
}
/* line 49, ../sass/sitewide/_select_table.scss */
.select-table td.incorrect::after {
  font-size: 24px;
  content: '\2716';
  color: red;
}
/* line 55, ../sass/sitewide/_select_table.scss */
.select-table td.not_tried::after {
  content: '?';
  color: blue;
  font-size: 20px;
  font-weight: bold;
  margin-right: 14px;
}

/* line 64, ../sass/sitewide/_select_table.scss */
div#check_btn_container {
  margin-top: -10px;
  margin-bottom: 10px;
  float: right;
}

/* line 69, ../sass/sitewide/_select_table.scss */
button#check-table {
  background-color: #159ca6;
  padding: 5px 16px;
  color: white;
  border-width: 0px;
  font-size: 16px;
}

/* line 5, ../sass/sitewide/_logos.scss */
body div#block-block-6 {
  margin-bottom: 30px;
  margin: 0px auto;
  width: 1060px;
  height: 90px;
}
/* line 16, ../sass/sitewide/_logos.scss */
body div#top_logos > div {
  height: 90px;
  float: left;
  display: block;
}
/* line 25, ../sass/sitewide/_logos.scss */
body div#nsf_logo {
  width: 330px;
  background: url("../images/logos/nsf-logo.png") 0 10px no-repeat;
  margin-right: 29px;
}
/* line 32, ../sass/sitewide/_logos.scss */
body div#edc_logo {
  background: url("../images/logos/edc-logo.svg") 100px 10px no-repeat;
  background-size: 120px 59px;
  width: 330px;
  margin-right: 29px;
}
/* line 39, ../sass/sitewide/_logos.scss */
body div#neidl_logo {
  width: 330px;
  border: 1px solid white;
  background: url("../images/logos/neidl_long-h30px.png") 0px 30px no-repeat;
  background-size: 350px 27.63px;
}

/* line 4, ../sass/headers/_extensible.scss */
.eid-button, body.page-user input#edit-submit, body.node-type-module div#teacher-student-toggle button,
body.node-type-science-module-reading div#teacher-student-toggle button,
body.node-type-science-module-section div#teacher-student-toggle button {
  display: inline;
  clear: none;
  margin: 0px;
  border-radius: 0px;
  background-color: white;
  border: 1px solid #6d6f71;
  padding: 5px 17px;
  color: #58595b;
  background-color: white;
  font-size: 0.9em;
}

/* line 17, ../sass/headers/_extensible.scss */
.module-page-main-header, body.node-type-module div.field-name-field-student-intro h2,
body.node-type-module div.field-name-field-teacher-intro h2, body.node-type-module div.field-name-field-teacher-intro h2.top,
body.node-type-module div.field-name-field-student-intro h2.top {
  font-size: 30px;
  line-height: 30px;
  color: #159ca6;
  margin-bottom: 10px;
  font-weight: bold;
  margin-top: 10px;
  padding: 0px;
  display: block;
}

/* line 29, ../sass/headers/_extensible.scss */
.subheader, .subheader-top p, body.node-type-science-module-reading div#content .field-name-field-reading-header p,
body.page-views div#content .field-name-field-reading-header p, body.node-type-science-module-section div#content div.field-name-field-header-text p, body.node-type-science-module-section div#content h3 {
  font-size: 26px;
  line-height: 28px;
  font-weight: bold;
  margin: 0px;
}

/* line 41, ../sass/headers/_extensible.scss */
.subheader-top, body.node-type-science-module-reading div#content .field-name-field-reading-header,
body.page-views div#content .field-name-field-reading-header, body.node-type-science-module-section div#content div.field-name-field-header-text {
  margin-left: 40px;
  float: left;
}

/* line 50, ../sass/headers/_extensible.scss */
.module-section-title, body.node-type-science-module-reading div#content div.field-name-field-visible-title,
body.page-views div#content div.field-name-field-visible-title, body.node-type-science-module-section div#content div.field-name-field-section-title {
  color: #1c9ca6;
  width: 710px;
  margin: 30px 0px 10px 40px;
  float: left;
  padding-bottom: 0px;
}
/* line 57, ../sass/headers/_extensible.scss */
.module-section-title p, body.node-type-science-module-reading div#content div.field-name-field-visible-title p,
body.page-views div#content div.field-name-field-visible-title p, body.node-type-science-module-section div#content div.field-name-field-section-title p {
  font-size: 30px;
  line-height: 30px;
  margin-top: 0px;
  margin-bottom: 0px;
}

/* line 64, ../sass/headers/_extensible.scss */
.content-para {
  padding-top: 0px;
  margin-top: 0px;
  font-size: 16px;
  line-height: 1.4em;
}

/* line 72, ../sass/headers/_extensible.scss */
.caption, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption, caption {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 20px;
  display: block;
  margin: 0px auto;
}

/* line 81, ../sass/headers/_extensible.scss */
.caption.moderate-width, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.moderate-width.caption {
  width: 500px;
}

/* line 84, ../sass/headers/_extensible.scss */
.caption.in-text, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.in-text.caption {
  margin-bottom: 22px;
}

/* line 87, ../sass/headers/_extensible.scss */
.credit, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.credit,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.credit {
  font-weight: bold;
  font-size: 13px;
  line-height: 15px;
  display: block;
  margin: 5px auto 0px auto;
}

/* line 95, ../sass/headers/_extensible.scss */
.credit.left, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.left.credit {
  text-align: left;
  margin-left: 0px;
  width: auto;
}

/* line 100, ../sass/headers/_extensible.scss */
.credit.margin-bottom, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.margin-bottom.credit {
  margin-bottom: 20px;
}

/* line 103, ../sass/headers/_extensible.scss */
p {
  margin-bottom: 16px;
}

/* line 106, ../sass/headers/_extensible.scss */
p.source {
  margin-bottom: 4px;
}

/* line 110, ../sass/headers/_extensible.scss */
.category-table {
  border: 1px solid #bcbec0;
  font-size: 16px;
  margin: 0px auto;
}
/* line 115, ../sass/headers/_extensible.scss */
.category-table td {
  width: 33%;
}
/* line 118, ../sass/headers/_extensible.scss */
.category-table th {
  background-color: #afb0b4;
  font-weight: normal;
  color: white;
}
/* line 124, ../sass/headers/_extensible.scss */
.category-table td:first-child {
  border-left: 1px solid #bcbec0;
}
/* line 127, ../sass/headers/_extensible.scss */
.category-table td, .category-table th {
  padding: 5px 10px 5px 10px;
  border-left: 1px solid white;
}
/* line 131, ../sass/headers/_extensible.scss */
.category-table td.category {
  font-weight: bold;
  font-style: italic;
  text-align: center;
}
/* line 138, ../sass/headers/_extensible.scss */
.category-table tr:nth-child(even) {
  background-color: #e5e4e9;
}
/* line 141, ../sass/headers/_extensible.scss */
.category-table tr:nth-child(odd) {
  background-color: #f7f7f7;
}
/* line 144, ../sass/headers/_extensible.scss */
.category-table tr:last-child {
  border-bottom: #CCC;
}
/* line 147, ../sass/headers/_extensible.scss */
.category-table td {
  text-align: left;
}

/* line 8, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.region-reading-widget,
body.page-views div#content div.region-reading-widget {
  float: left;
}
/* line 12, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.margin-bottom,
body.page-views div#content div.margin-bottom {
  margin-bottom: 8px;
}
/* line 15, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content h2.subtitle,
body.page-views div#content h2.subtitle {
  margin-top: -10px;
  margin-bottom: 0px;
}
/* line 19, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content h3,
body.page-views div#content h3 {
  font-size: 22px;
}
/* line 22, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content .field-name-field-reading-header,
body.page-views div#content .field-name-field-reading-header {
  margin-bottom: 14px;
}
/* line 27, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.field-name-field-visible-title,
body.page-views div#content div.field-name-field-visible-title {
  width: 710px;
}
/* line 35, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.field-name-field-reading-footer,
body.node-type-science-module-reading div#content div.field-name-field-teacher-instructions,
body.node-type-science-module-reading div#content div.field-name-field-student-introduction,
body.page-views div#content div.field-name-field-reading-footer,
body.page-views div#content div.field-name-field-teacher-instructions,
body.page-views div#content div.field-name-field-student-introduction {
  width: 710px;
  float: left;
  margin-right: 0px;
  margin-left: 42px;
}
/* line 46, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.field-name-field-reading-footer div > div > p,
body.node-type-science-module-reading div#content div.field-name-field-teacher-instructions div > div > p,
body.node-type-science-module-reading div#content div.field-name-field-student-introduction div > div > p,
body.page-views div#content div.field-name-field-reading-footer div > div > p,
body.page-views div#content div.field-name-field-teacher-instructions div > div > p,
body.page-views div#content div.field-name-field-student-introduction div > div > p {
  padding-top: 0px;
  margin-top: 0px;
}
/* line 53, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.field.field-name-field-reading-footer,
body.page-views div#content div.field.field-name-field-reading-footer {
  display: none;
}
/* line 56, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.right-wrap,
body.page-views div#content div.right-wrap {
  float: right;
  display: inline-block;
}
/* line 59, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.right-wrap div.caption,
body.page-views div#content div.right-wrap div.caption {
  width: 320px;
}
/* line 63, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div p,
body.page-views div#content div p {
  font-size: 16px;
}
/* line 66, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.short-left-text,
body.page-views div#content div.short-left-text {
  width: 450px;
  float: left;
}
/* line 70, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.view-footer,
body.page-views div#content div.view-footer {
  margin-top: 20px;
}
/* line 73, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget,
body.page-views div#content div.reading_widget {
  background-color: transparent;
  float: left;
  width: 710px;
}
/* line 80, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget .field-content > ul.top,
body.page-views div#content div.reading_widget .field-content > ul.top {
  margin-top: 0px;
}
/* line 83, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget .field-content > ul,
body.page-views div#content div.reading_widget .field-content > ul {
  margin-left: 20px;
  padding-left: 5px;
  margin-bottom: 20px;
}
/* line 87, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget .field-content > ul li,
body.page-views div#content div.reading_widget .field-content > ul li {
  margin-bottom: 20px;
}
/* line 90, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget .field-content > ul li:last-child,
body.page-views div#content div.reading_widget .field-content > ul li:last-child {
  margin-bottom: 0px;
}
/* line 95, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget div.views-field-title,
body.page-views div#content div.reading_widget div.views-field-title {
  font-weight: bold;
  font-family: "Trebuchet MS";
  font-size: 26px;
}
/* line 101, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion,
body.page-views div#content div.reading_widget div.ui-accordion {
  font-family: "Trebuchet MS";
  width: 710px;
  border: 0px;
  background-color: transparent;
}
/* line 106, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion h2,
body.page-views div#content div.reading_widget div.ui-accordion h2 {
  margin: 0px;
  font-size: 24px;
}
/* line 112, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion p, body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion ul li, body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion ol li, body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.views-field > div,
body.page-views div#content div.reading_widget div.ui-accordion p,
body.page-views div#content div.reading_widget div.ui-accordion ul li,
body.page-views div#content div.reading_widget div.ui-accordion ol li,
body.page-views div#content div.reading_widget div.ui-accordion div.views-field > div {
  font-size: 16px;
  line-height: 1.4em;
}
/* line 120, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion .ui-accordion-header a,
body.page-views div#content div.reading_widget div.ui-accordion .ui-accordion-header a {
  display: block;
  margin-left: 40px;
  padding-bottom: 0px;
  line-height: 34px;
}
/* line 127, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion .ui-accordion-header a span,
body.page-views div#content div.reading_widget div.ui-accordion .ui-accordion-header a span {
  display: block;
}
/* line 132, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion .ui-accordion-header span.ui-icon,
body.page-views div#content div.reading_widget div.ui-accordion .ui-accordion-header span.ui-icon {
  height: 30px;
  width: 30px;
  margin-top: -13px;
  margin-left: -6px;
}
/* line 140, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion .ui-accordion-header span.ui-icon.ui-icon-triangle-1-e,
body.page-views div#content div.reading_widget div.ui-accordion .ui-accordion-header span.ui-icon.ui-icon-triangle-1-e {
  background: url("../images/widgets/triangle-right.png") 8px 0px no-repeat;
  background-size: 16px 30px;
}
/* line 147, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion .ui-accordion-header span.ui-icon.ui-icon-triangle-1-s,
body.page-views div#content div.reading_widget div.ui-accordion .ui-accordion-header span.ui-icon.ui-icon-triangle-1-s {
  background: url("../images/widgets/triangle-down.png") 0px 10px no-repeat;
  background-size: 30px 16px;
}
/* line 155, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget div.views-accordion-header,
body.page-views div#content div.reading_widget div.views-accordion-header {
  border: 1px solid transparent;
}
/* line 158, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion-content.ui-accordion-content-active.ui-widget-content,
body.page-views div#content div.reading_widget div.ui-accordion-content.ui-accordion-content-active.ui-widget-content {
  border: 1px solid transparent;
  padding-left: 0px;
  padding-top: 20px;
  display: inline-block;
  overflow: visible;
  background-image: none;
  transition: 0.2s padding ease;
  background-color: transparent;
  /*  div.field-content p {
      margin: 0px 0px 16px 0px;
      
    }*/
}
/* line 171, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion-content.ui-accordion-content-active.ui-widget-content div.field-content,
body.page-views div#content div.reading_widget div.ui-accordion-content.ui-accordion-content-active.ui-widget-content div.field-content {
  background-color: transparent;
  background-color: transparent !important;
}
/* line 177, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion-content.ui-accordion-content-active.ui-widget-content table,
body.page-views div#content div.reading_widget div.ui-accordion-content.ui-accordion-content-active.ui-widget-content table {
  background-color: transparent;
}
/* line 189, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget div.views-field-title,
body.page-views div#content div.reading_widget div.views-field-title {
  background: none;
  padding-left: 0px;
  margin-left: -10px;
  border: 0px;
  margin-top: 10px;
  margin-bottom: -10px;
  transition: margin 0.4s ease;
}
/* line 199, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget div.views-row,
body.page-views div#content div.reading_widget div.views-row {
  transition: 0.4s ease;
}
/* line 203, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget .ui-accordion-icons, body.node-type-science-module-reading div#content div.reading_widget .ui-accordion-header a,
body.page-views div#content div.reading_widget .ui-accordion-icons,
body.page-views div#content div.reading_widget .ui-accordion-header a {
  padding-left: 0px;
  background-position: 20px 20px;
  border: 0px;
  outline: none;
}
/* line 210, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget .views-field a span,
body.page-views div#content div.reading_widget .views-field a span {
  padding-left: 20px;
}
/* line 213, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget span.ui-icon,
body.page-views div#content div.reading_widget span.ui-icon {
  margin-right: 20px;
  margin-left: -3px;
  display: block;
  padding-left: 0px;
}
/* line 219, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading,
body.page-views div#content div.reading_widget div.view-science-reading {
  width: 710px;
  margin-top: -20px;
}
/* line 226, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.field-name-field-visible-title,
body.page-views div#content div.field-name-field-visible-title {
  font-size: 30px;
}
/* line 229, ../sass/pages/_readings.scss */
body.node-type-science-module-reading div#content div.field-name-field-visible-title a,
body.page-views div#content div.field-name-field-visible-title a {
  outline: none;
}

/* line 4, ../sass/headers/_extensible.scss */
.eid-button, body.page-user input#edit-submit, body.node-type-module div#teacher-student-toggle button,
body.node-type-science-module-reading div#teacher-student-toggle button,
body.node-type-science-module-section div#teacher-student-toggle button {
  display: inline;
  clear: none;
  margin: 0px;
  border-radius: 0px;
  background-color: white;
  border: 1px solid #6d6f71;
  padding: 5px 17px;
  color: #58595b;
  background-color: white;
  font-size: 0.9em;
}

/* line 17, ../sass/headers/_extensible.scss */
.module-page-main-header, body.node-type-module div.field-name-field-student-intro h2,
body.node-type-module div.field-name-field-teacher-intro h2, body.node-type-module div.field-name-field-teacher-intro h2.top,
body.node-type-module div.field-name-field-student-intro h2.top {
  font-size: 30px;
  line-height: 30px;
  color: #159ca6;
  margin-bottom: 10px;
  font-weight: bold;
  margin-top: 10px;
  padding: 0px;
  display: block;
}

/* line 29, ../sass/headers/_extensible.scss */
.subheader, .subheader-top p, body.node-type-science-module-reading div#content .field-name-field-reading-header p,
body.page-views div#content .field-name-field-reading-header p, body.node-type-science-module-section div#content div.field-name-field-header-text p, body.node-type-science-module-section div#content h3 {
  font-size: 26px;
  line-height: 28px;
  font-weight: bold;
  margin: 0px;
}

/* line 41, ../sass/headers/_extensible.scss */
.subheader-top, body.node-type-science-module-reading div#content .field-name-field-reading-header,
body.page-views div#content .field-name-field-reading-header, body.node-type-science-module-section div#content div.field-name-field-header-text {
  margin-left: 40px;
  float: left;
}

/* line 50, ../sass/headers/_extensible.scss */
.module-section-title, body.node-type-science-module-reading div#content div.field-name-field-visible-title,
body.page-views div#content div.field-name-field-visible-title, body.node-type-science-module-section div#content div.field-name-field-section-title {
  color: #1c9ca6;
  width: 710px;
  margin: 30px 0px 10px 40px;
  float: left;
  padding-bottom: 0px;
}
/* line 57, ../sass/headers/_extensible.scss */
.module-section-title p, body.node-type-science-module-reading div#content div.field-name-field-visible-title p,
body.page-views div#content div.field-name-field-visible-title p, body.node-type-science-module-section div#content div.field-name-field-section-title p {
  font-size: 30px;
  line-height: 30px;
  margin-top: 0px;
  margin-bottom: 0px;
}

/* line 64, ../sass/headers/_extensible.scss */
.content-para {
  padding-top: 0px;
  margin-top: 0px;
  font-size: 16px;
  line-height: 1.4em;
}

/* line 72, ../sass/headers/_extensible.scss */
.caption, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption, caption {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 20px;
  display: block;
  margin: 0px auto;
}

/* line 81, ../sass/headers/_extensible.scss */
.caption.moderate-width, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.moderate-width.caption {
  width: 500px;
}

/* line 84, ../sass/headers/_extensible.scss */
.caption.in-text, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.in-text.caption {
  margin-bottom: 22px;
}

/* line 87, ../sass/headers/_extensible.scss */
.credit, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.credit,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.credit {
  font-weight: bold;
  font-size: 13px;
  line-height: 15px;
  display: block;
  margin: 5px auto 0px auto;
}

/* line 95, ../sass/headers/_extensible.scss */
.credit.left, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.left.credit {
  text-align: left;
  margin-left: 0px;
  width: auto;
}

/* line 100, ../sass/headers/_extensible.scss */
.credit.margin-bottom, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.margin-bottom.credit {
  margin-bottom: 20px;
}

/* line 103, ../sass/headers/_extensible.scss */
p {
  margin-bottom: 16px;
}

/* line 106, ../sass/headers/_extensible.scss */
p.source {
  margin-bottom: 4px;
}

/* line 110, ../sass/headers/_extensible.scss */
.category-table {
  border: 1px solid #bcbec0;
  font-size: 16px;
  margin: 0px auto;
}
/* line 115, ../sass/headers/_extensible.scss */
.category-table td {
  width: 33%;
}
/* line 118, ../sass/headers/_extensible.scss */
.category-table th {
  background-color: #afb0b4;
  font-weight: normal;
  color: white;
}
/* line 124, ../sass/headers/_extensible.scss */
.category-table td:first-child {
  border-left: 1px solid #bcbec0;
}
/* line 127, ../sass/headers/_extensible.scss */
.category-table td, .category-table th {
  padding: 5px 10px 5px 10px;
  border-left: 1px solid white;
}
/* line 131, ../sass/headers/_extensible.scss */
.category-table td.category {
  font-weight: bold;
  font-style: italic;
  text-align: center;
}
/* line 138, ../sass/headers/_extensible.scss */
.category-table tr:nth-child(even) {
  background-color: #e5e4e9;
}
/* line 141, ../sass/headers/_extensible.scss */
.category-table tr:nth-child(odd) {
  background-color: #f7f7f7;
}
/* line 144, ../sass/headers/_extensible.scss */
.category-table tr:last-child {
  border-bottom: #CCC;
}
/* line 147, ../sass/headers/_extensible.scss */
.category-table td {
  text-align: left;
}

/* line 16, ../sass/pages/_views_tables.scss */
body.node-type-science-module-reading div#content div.view-id-immune_system_agents table.views-table.cols-3 tbody tr td p, body.node-type-science-module-reading div#content div.view-id-immune_system_agents table.views-table.cols-3 tbody tr td ul li, body.node-type-science-module-reading div#content div.view-id-immune_system_agents table.views-table.cols-3 tbody tr td thead tr th, body.node-type-science-module-reading div#content div.view-id-immune_system_agents table.views-table.cols-3 tbody tr td td p, body.node-type-science-module-reading div#content div.view-id-immune_system_agents table.views-table.cols-3 tbody tr td th p,
body.node-type-science-module-reading div#content div.view-id-immune_system_agents table.views-table.cols-3 p,
body.node-type-science-module-reading div#content div.view-id-immune_system_agents table.views-table.cols-3 ul li,
body.node-type-science-module-reading div#content div.view-id-immune_system_agents table.views-table.cols-3 thead tr th,
body.node-type-science-module-reading div#content div.view-id-immune_system_agents table.views-table.cols-3 td p,
body.node-type-science-module-reading div#content div.view-id-immune_system_agents table.views-table.cols-3 th p,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress table.views-table.cols-3 tbody tr td p,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress table.views-table.cols-3 tbody tr td ul li,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress table.views-table.cols-3 tbody tr td thead tr th,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress table.views-table.cols-3 tbody tr td td p,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress table.views-table.cols-3 tbody tr td th p,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress table.views-table.cols-3 p,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress table.views-table.cols-3 ul li,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress table.views-table.cols-3 thead tr th,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress table.views-table.cols-3 td p,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress table.views-table.cols-3 th p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents table.views-table.cols-3 tbody tr td p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents table.views-table.cols-3 tbody tr td ul li,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents table.views-table.cols-3 tbody tr td thead tr th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents table.views-table.cols-3 tbody tr td td p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents table.views-table.cols-3 tbody tr td th p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents table.views-table.cols-3 p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents table.views-table.cols-3 ul li,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents table.views-table.cols-3 thead tr th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents table.views-table.cols-3 td p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents table.views-table.cols-3 th p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table.views-table.cols-3 tbody tr td p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table.views-table.cols-3 tbody tr td ul li,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table.views-table.cols-3 tbody tr td thead tr th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table.views-table.cols-3 tbody tr td td p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table.views-table.cols-3 tbody tr td th p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table.views-table.cols-3 p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table.views-table.cols-3 ul li,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table.views-table.cols-3 thead tr th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table.views-table.cols-3 td p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table.views-table.cols-3 th p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.views-table.cols-3 tbody tr td p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.views-table.cols-3 tbody tr td ul li,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.views-table.cols-3 tbody tr td thead tr th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.views-table.cols-3 tbody tr td td p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.views-table.cols-3 tbody tr td th p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.views-table.cols-3 p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.views-table.cols-3 ul li,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.views-table.cols-3 thead tr th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.views-table.cols-3 td p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.views-table.cols-3 th p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress table.views-table.cols-3 tbody tr td p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress table.views-table.cols-3 tbody tr td ul li,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress table.views-table.cols-3 tbody tr td thead tr th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress table.views-table.cols-3 tbody tr td td p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress table.views-table.cols-3 tbody tr td th p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress table.views-table.cols-3 p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress table.views-table.cols-3 ul li,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress table.views-table.cols-3 thead tr th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress table.views-table.cols-3 td p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress table.views-table.cols-3 th p {
  font-size: 15px;
}
/* line 22, ../sass/pages/_views_tables.scss */
body.node-type-science-module-reading div#content div.view-id-immune_system_agents table.views-table.cols-11 p, body.node-type-science-module-reading div#content div.view-id-immune_system_agents table.views-table.cols-11 ul li, body.node-type-science-module-reading div#content div.view-id-immune_system_agents table.views-table.cols-11 thead tr th, body.node-type-science-module-reading div#content div.view-id-immune_system_agents table.views-table.cols-11 td p, body.node-type-science-module-reading div#content div.view-id-immune_system_agents table.views-table.cols-11 th p,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress table.views-table.cols-11 p,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress table.views-table.cols-11 ul li,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress table.views-table.cols-11 thead tr th,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress table.views-table.cols-11 td p,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress table.views-table.cols-11 th p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents table.views-table.cols-11 p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents table.views-table.cols-11 ul li,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents table.views-table.cols-11 thead tr th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents table.views-table.cols-11 td p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents table.views-table.cols-11 th p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table.views-table.cols-11 p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table.views-table.cols-11 ul li,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table.views-table.cols-11 thead tr th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table.views-table.cols-11 td p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table.views-table.cols-11 th p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.views-table.cols-11 p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.views-table.cols-11 ul li,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.views-table.cols-11 thead tr th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.views-table.cols-11 td p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.views-table.cols-11 th p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress table.views-table.cols-11 p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress table.views-table.cols-11 ul li,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress table.views-table.cols-11 thead tr th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress table.views-table.cols-11 td p,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress table.views-table.cols-11 th p {
  padding-top: 10px;
  font-size: 14px;
  line-height: 17px;
}
/* line 29, ../sass/pages/_views_tables.scss */
body.node-type-science-module-reading div#content div.view-id-immune_system_agents table td:nth-child(2),
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress table td:nth-child(2),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents table td:nth-child(2),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table td:nth-child(2),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table td:nth-child(2),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress table td:nth-child(2) {
  text-align: left;
}
@media screen and (min-width: 711px) {
  /* line 33, ../sass/pages/_views_tables.scss */
  body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress div.view-content,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress div.view-content,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress div.view-content {
    width: 650px;
    overflow-x: scroll;
    overflow-y: visible;
  }
  /* line 39, ../sass/pages/_views_tables.scss */
  body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress div.view-content table th:first-child,
  body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress div.view-content table td:first-child,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress div.view-content table th:first-child,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress div.view-content table td:first-child,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress div.view-content table th:first-child,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress div.view-content table td:first-child {
    position: absolute;
    width: 100px;
    border-right: 1px solid white;
  }
  /* line 46, ../sass/pages/_views_tables.scss */
  body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress div.view-content table tr:nth-child(even) td,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress div.view-content table tr:nth-child(even) td,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress div.view-content table tr:nth-child(even) td {
    background-color: #e5e4e9;
  }
  /* line 49, ../sass/pages/_views_tables.scss */
  body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress div.view-content table tr td:nth-child(n+3),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress div.view-content table tr td:nth-child(n+3),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress div.view-content table tr td:nth-child(n+3) {
    min-width: 120px;
  }
  /* line 52, ../sass/pages/_views_tables.scss */
  body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress div.view-content table tr th:nth-child(n+10),
  body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress div.view-content table tr td:nth-child(n+10),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress div.view-content table tr th:nth-child(n+10),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress div.view-content table tr td:nth-child(n+10),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress div.view-content table tr th:nth-child(n+10),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress div.view-content table tr td:nth-child(n+10) {
    min-width: 200px;
  }
  /* line 57, ../sass/pages/_views_tables.scss */
  body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress div.view-content table tr:nth-child(odd) td,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress div.view-content table tr:nth-child(odd) td,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress div.view-content table tr:nth-child(odd) td {
    background-color: #f7f7f7;
  }
  /* line 60, ../sass/pages/_views_tables.scss */
  body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress div.view-content table th:nth-child(2),
  body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress div.view-content table td:nth-child(2),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress div.view-content table th:nth-child(2),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress div.view-content table td:nth-child(2),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress div.view-content table th:nth-child(2),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress div.view-content table td:nth-child(2) {
    padding-left: 134px;
  }
  /* line 64, ../sass/pages/_views_tables.scss */
  body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress div.view-content table th,
  body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress div.view-content table thead tr,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress div.view-content table th,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress div.view-content table thead tr,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress div.view-content table th,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress div.view-content table thead tr {
    height: 80px;
  }
  /* line 68, ../sass/pages/_views_tables.scss */
  body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress div.view-content table td,
  body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress div.view-content table tbody tr,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress div.view-content table td,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress div.view-content table tbody tr,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress div.view-content table td,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress div.view-content table tbody tr {
    height: 100px;
  }
  /* line 72, ../sass/pages/_views_tables.scss */
  body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress div.view-content table thead tr th:first-child,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress div.view-content table thead tr th:first-child,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress div.view-content table thead tr th:first-child {
    padding-top: 25px;
    height: 65px;
  }
  /* line 76, ../sass/pages/_views_tables.scss */
  body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress div.view-content table tbody tr:not(:nth-child(3)) td:first-child,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress div.view-content table tbody tr:not(:nth-child(3)) td:first-child,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress div.view-content table tbody tr:not(:nth-child(3)) td:first-child {
    padding-top: 25px;
    height: 75px;
  }
}
/* line 83, ../sass/pages/_views_tables.scss */
body.node-type-science-module-reading div#content div.table-legend,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.table-legend,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.table-legend {
  margin-bottom: 20px;
}
/* line 85, ../sass/pages/_views_tables.scss */
body.node-type-science-module-reading div#content div.table-legend div.key,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.table-legend div.key,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.table-legend div.key {
  clear: both;
  float: left;
  width: 40px;
}
/* line 91, ../sass/pages/_views_tables.scss */
body.node-type-science-module-reading div#content div.table-legend div.statement,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.table-legend div.statement,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.table-legend div.statement {
  float: left;
  margin-left: 10px;
  width: 90%;
}
/* line 97, ../sass/pages/_views_tables.scss */
body.node-type-science-module-reading div#content div.view-id-microbe_table,
body.node-type-science-module-reading div#content div.view-id-immune_system_agents,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-microbe_table,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress {
  background-color: transparent;
  border: 1px solid #bcbec0;
  margin: 0px;
  padding-top: 0px;
  margin-bottom: 30px;
}
@media screen and (min-width: 710px) {
  /* line 97, ../sass/pages/_views_tables.scss */
  body.node-type-science-module-reading div#content div.view-id-microbe_table,
  body.node-type-science-module-reading div#content div.view-id-immune_system_agents,
  body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-microbe_table,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress {
    max-width: 650px;
  }
}
/* line 109, ../sass/pages/_views_tables.scss */
body.node-type-science-module-reading div#content div.view-id-microbe_table table,
body.node-type-science-module-reading div#content div.view-id-immune_system_agents table,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress table,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-microbe_table table,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents table,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress table {
  margin-top: 0px;
  margin-bottom: 0px;
  border: 0px;
}
/* line 117, ../sass/pages/_views_tables.scss */
body.node-type-science-module-reading div#content div.view-id-microbe_table th,
body.node-type-science-module-reading div#content div.view-id-immune_system_agents th,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-microbe_table th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress th {
  background-color: #afb0b4;
  font-weight: normal;
  color: white;
}
/* line 123, ../sass/pages/_views_tables.scss */
body.node-type-science-module-reading div#content div.view-id-microbe_table td, body.node-type-science-module-reading div#content div.view-id-microbe_table th,
body.node-type-science-module-reading div#content div.view-id-immune_system_agents td,
body.node-type-science-module-reading div#content div.view-id-immune_system_agents th,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress td,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-microbe_table td,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-microbe_table th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents td,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress td,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table td,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents td,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents th,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress td,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress th {
  padding: 5px 10px 5px 10px;
  border-left: 1px solid white;
}
/* line 127, ../sass/pages/_views_tables.scss */
body.node-type-science-module-reading div#content div.view-id-microbe_table td:first-child, body.node-type-science-module-reading div#content div.view-id-microbe_table th:first-child,
body.node-type-science-module-reading div#content div.view-id-immune_system_agents td:first-child,
body.node-type-science-module-reading div#content div.view-id-immune_system_agents th:first-child,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress td:first-child,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress th:first-child,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-microbe_table td:first-child,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-microbe_table th:first-child,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents td:first-child,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents th:first-child,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress td:first-child,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress th:first-child,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table td:first-child,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table th:first-child,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents td:first-child,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents th:first-child,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress td:first-child,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress th:first-child {
  border-left: 0px;
}
/* line 130, ../sass/pages/_views_tables.scss */
body.node-type-science-module-reading div#content div.view-id-microbe_table tr:nth-child(even),
body.node-type-science-module-reading div#content div.view-id-immune_system_agents tr:nth-child(even),
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress tr:nth-child(even),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-microbe_table tr:nth-child(even),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents tr:nth-child(even),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress tr:nth-child(even),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table tr:nth-child(even),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents tr:nth-child(even),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress tr:nth-child(even) {
  background-color: #e5e4e9;
}
/* line 133, ../sass/pages/_views_tables.scss */
body.node-type-science-module-reading div#content div.view-id-microbe_table tr:nth-child(odd),
body.node-type-science-module-reading div#content div.view-id-immune_system_agents tr:nth-child(odd),
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress tr:nth-child(odd),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-microbe_table tr:nth-child(odd),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents tr:nth-child(odd),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress tr:nth-child(odd),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table tr:nth-child(odd),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents tr:nth-child(odd),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress tr:nth-child(odd) {
  background-color: #f7f7f7;
}
/* line 136, ../sass/pages/_views_tables.scss */
body.node-type-science-module-reading div#content div.view-id-microbe_table tr:last-child,
body.node-type-science-module-reading div#content div.view-id-immune_system_agents tr:last-child,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress tr:last-child,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-microbe_table tr:last-child,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents tr:last-child,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress tr:last-child,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table tr:last-child,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents tr:last-child,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress tr:last-child {
  border-bottom: 0px;
}
/* line 139, ../sass/pages/_views_tables.scss */
body.node-type-science-module-reading div#content div.view-id-microbe_table td,
body.node-type-science-module-reading div#content div.view-id-immune_system_agents td,
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress td,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-microbe_table td,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents td,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress td,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table td,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents td,
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress td {
  text-align: center;
}
/* line 142, ../sass/pages/_views_tables.scss */
body.node-type-science-module-reading div#content div.view-id-microbe_table td:nth-child(n+3),
body.node-type-science-module-reading div#content div.view-id-immune_system_agents td:nth-child(n+3),
body.node-type-science-module-reading div#content div.view-id-causes_of_respiratory_distress td:nth-child(n+3),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-microbe_table td:nth-child(n+3),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-immune_system_agents td:nth-child(n+3),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress td:nth-child(n+3),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table td:nth-child(n+3),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents td:nth-child(n+3),
body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-causes_of_respiratory_distress td:nth-child(n+3) {
  text-align: left;
}

/*
 *  Sections - make a new file for this one.
 */
/* line 7, ../sass/pages/_activity_disc.scss */
body.content-discussion ul li p {
  color: #6d6f71;
  font-style: italic;
}

/* line 19, ../sass/pages/_activity_disc.scss */
body.node-type-science-module-section div#content div.field-name-field-student-text,
body.node-type-science-module-section div#content div.field-name-field-teacher-text,
body.node-type-science-module-section div#content div.field-name-field-general-text {
  margin-top: 0px;
  margin-left: 40px;
  float: left;
  width: 710px;
}
/* line 26, ../sass/pages/_activity_disc.scss */
body.node-type-science-module-section div#content div.field-name-field-student-text p,
body.node-type-science-module-section div#content div.field-name-field-teacher-text p,
body.node-type-science-module-section div#content div.field-name-field-general-text p {
  margin-top: 0px;
}
/* line 31, ../sass/pages/_activity_disc.scss */
body.node-type-science-module-section div#content div.field-name-field-student-text li,
body.node-type-science-module-section div#content div.field-name-field-teacher-text li,
body.node-type-science-module-section div#content div.field-name-field-general-text li {
  margin-bottom: 10px;
}
/* line 34, ../sass/pages/_activity_disc.scss */
body.node-type-science-module-section div#content div.field-name-field-student-text li p,
body.node-type-science-module-section div#content div.field-name-field-teacher-text li p,
body.node-type-science-module-section div#content div.field-name-field-general-text li p {
  margin-top: 20px;
}
/* line 41, ../sass/pages/_activity_disc.scss */
body.node-type-science-module-section div#content div.field-name-field-student-text div.jqtabs h3,
body.node-type-science-module-section div#content div.field-name-field-teacher-text div.jqtabs h3,
body.node-type-science-module-section div#content div.field-name-field-general-text div.jqtabs h3 {
  font-size: 20px;
}
/* line 45, ../sass/pages/_activity_disc.scss */
body.node-type-science-module-section div#content div.field-name-field-student-text div.jqtabs table,
body.node-type-science-module-section div#content div.field-name-field-teacher-text div.jqtabs table,
body.node-type-science-module-section div#content div.field-name-field-general-text div.jqtabs table {
  width: 100%;
}
/* line 48, ../sass/pages/_activity_disc.scss */
body.node-type-science-module-section div#content div.field-name-field-student-text div.jqtabs ul.ui-tabs-nav li,
body.node-type-science-module-section div#content div.field-name-field-teacher-text div.jqtabs ul.ui-tabs-nav li,
body.node-type-science-module-section div#content div.field-name-field-general-text div.jqtabs ul.ui-tabs-nav li {
  margin-bottom: -1px;
}
/* line 56, ../sass/pages/_activity_disc.scss */
body.node-type-science-module-section div#content div.field-name-field-general-text a.btn {
  margin: 0px auto;
  font-size: 1em;
  background-color: #159ca6;
  color: white;
  width: 200px;
  height: 28px;
  display: block;
  border-radius: 4px;
  padding: 12px 5px;
  text-align: center;
  box-shadow: 0 3px 0 0 #007299;
}
/* line 69, ../sass/pages/_activity_disc.scss */
body.node-type-science-module-section div#content div.field-name-field-general-text a.btn:active {
  box-shadow: none;
  margin-bottom: -3px;
  margin-top: 3px;
}
/* line 78, ../sass/pages/_activity_disc.scss */
body.node-type-science-module-section div#content div.field-name-field-attributions {
  margin-left: 300px;
  float: left;
}

/* line 4, ../sass/pages/_user.scss */
body.page-user,
body.page-node,
body.page-views {
  /*#page {
    min-height: 600px;
    padding-bottom: -100px;
    margin-bottom: 100px;
  }*/
}
/* line 12, ../sass/pages/_user.scss */
body.page-user footer#footer,
body.page-node footer#footer,
body.page-views footer#footer {
  height: 60px;
  margin: 0px auto;
  display: block;
  position: relative;
  bottom: 0px;
}
/* line 22, ../sass/pages/_user.scss */
body.page-user div#content,
body.page-node div#content,
body.page-views div#content {
  min-height: 600px;
  margin-bottom: 0px;
}

/* line 30, ../sass/pages/_user.scss */
body.page-user body, body.page-user html {
  min-height: 1024px;
}
/* line 34, ../sass/pages/_user.scss */
body.page-user div#main {
  width: 100%;
}
/* line 38, ../sass/pages/_user.scss */
body.page-user #page {
  min-height: 100%;
  height: 1000px;
}
/* line 45, ../sass/pages/_user.scss */
body.page-user div#content {
  min-height: 100%;
  display: block;
  height: 660px;
  margin-bottom: 0px;
}
/* line 52, ../sass/pages/_user.scss */
body.page-user h1#page-title {
  margin: 20px 0px;
}
/* line 62, ../sass/pages/_user.scss */
body.page-user footer#footer {
  height: 60px;
  margin: 0px auto;
  display: block;
}

/* line 6, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#content div#assessment_blurb {
  border-top: 2px solid #a7a9ac;
  margin-bottom: 20px;
  clear: both;
  padding-top: 16px;
}
/* line 11, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#content div#assessment_blurb h3#assessment_header {
  font-size: 18px;
  margin: 0px 0px 5px 0px;
}
/* line 20, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#block-views-module-list-block div.views-field-field-module-number,
body.node-type-main-page div#block-views-detailed-module-list-block div.views-field-field-module-number {
  width: 48px;
  height: 48px;
  margin-right: 8px;
  float: left;
  margin-bottom: 0px;
  clear: both;
}
/* line 27, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#block-views-module-list-block div.views-field-field-module-number span.mod_number,
body.node-type-main-page div#block-views-detailed-module-list-block div.views-field-field-module-number span.mod_number {
  background: url("../images/icons/folder.svg") 0 0 no-repeat;
  color: white;
  display: block;
  width: 24px;
  height: 36px;
  padding-left: 16px;
  padding-top: 10px;
  font-size: 1.2em;
  float: left;
}
/* line 40, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#block-views-module-list-block div.views-field-field-tagline,
body.node-type-main-page div#block-views-detailed-module-list-block div.views-field-field-tagline {
  clear: both;
  float: left;
  margin-top: 0px;
  margin-left: 0px;
  margin-bottom: 10px;
}
/* line 47, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#block-views-module-list-block div.views-field-field-tagline .field-content p,
body.node-type-main-page div#block-views-detailed-module-list-block div.views-field-field-tagline .field-content p {
  font-family: "Trebuchet MS";
}
@media screen and (max-width: 414px) {
  /* line 53, ../sass/pages/_main_pages.scss */
  body.node-type-main-page div#block-views-module-list-block div.views-field-title,
  body.node-type-main-page div#block-views-detailed-module-list-block div.views-field-title {
    font-size: 14px;
  }
}
/* line 59, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#block-views-module-list-block div.views-field-field-module-list-image,
body.node-type-main-page div#block-views-detailed-module-list-block div.views-field-field-module-list-image {
  float: left;
  margin-right: 20px;
  height: 95px;
}
/* line 67, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#block-views-module-list-block p,
body.node-type-main-page div#block-views-detailed-module-list-block p {
  margin: 0px;
  padding: 0px;
  font-family: "Trebuchet MS";
}
/* line 73, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#block-views-module-list-block div.views-field-title,
body.node-type-main-page div#block-views-detailed-module-list-block div.views-field-title {
  margin-top: 9px;
  float: none;
  display: block;
  float: left;
}
/* line 78, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#block-views-module-list-block div.views-field-title span,
body.node-type-main-page div#block-views-detailed-module-list-block div.views-field-title span {
  width: 40px;
  padding-top: 10px;
}
/* line 81, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#block-views-module-list-block div.views-field-title span a,
body.node-type-main-page div#block-views-detailed-module-list-block div.views-field-title span a {
  font-size: 1.3em;
  white-space: nowrap;
  width: 500px;
  overflow: visible;
}
/* line 92, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#cboxMiddleLeft {
  border: 0px;
  margin-left: -1px;
}
/* line 98, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#cboxLoadedContent {
  padding: 0px 8px;
}
/* line 100, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#cboxLoadedContent h1 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 24px;
}
/* line 105, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#cboxLoadedContent p {
  font-size: 18px;
}
/* line 115, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-2 {
  clear: both;
  color: #6d6f71;
  opacity: 0.75;
  font-size: 1.45em;
  line-height: 1.3em;
  height: 40px;
  display: block;
  padding-bottom: 20px;
  margin: 0px auto 30px auto;
  max-width: 1060px;
  width: 100%;
  height: auto;
  display: block;
}
/* line 130, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-2 p {
  margin: 0px auto;
  display: block;
  padding: 0px;
  max-width: 1060px;
  width: 100%;
  margin: 0px;
}

/* line 145, ../sass/pages/_main_pages.scss */
body.node-type-main-page h1#page-title {
  display: none;
}
/* line 148, ../sass/pages/_main_pages.scss */
body.node-type-main-page ul {
  margin-left: 0px;
  padding-left: 0px;
  margin-top: 3px;
  margin-bottom: 21px;
}
/* line 154, ../sass/pages/_main_pages.scss */
body.node-type-main-page ul li {
  list-style-type: none;
  margin-bottom: 10px;
}
/* line 162, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-7 {
  margin-bottom: 10px;
}
/* line 165, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-3,
body.node-type-main-page #block-block-4,
body.node-type-main-page #block-views-module-list-block,
body.node-type-main-page #block-block-8 {
  width: 330px;
  overflow: visible;
  margin-left: 29px;
  float: left;
}
/* line 175, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-3 h1,
body.node-type-main-page #block-block-4 h1,
body.node-type-main-page #block-views-module-list-block h1,
body.node-type-main-page #block-block-8 h1 {
  margin-bottom: 10px;
}
/* line 178, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-3 p,
body.node-type-main-page #block-block-4 p,
body.node-type-main-page #block-views-module-list-block p,
body.node-type-main-page #block-block-8 p {
  margin-top: 0px;
  line-height: 20px;
}
/* line 183, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-3 h2,
body.node-type-main-page #block-block-4 h2,
body.node-type-main-page #block-views-module-list-block h2,
body.node-type-main-page #block-block-8 h2 {
  margin: 0px;
  padding: 0px;
  font-size: 1.45em;
}
/* line 189, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-3 p,
body.node-type-main-page #block-block-4 p,
body.node-type-main-page #block-views-module-list-block p,
body.node-type-main-page #block-block-8 p {
  font-size: 1em;
  line-height: 1.3em;
}
/* line 195, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-8 {
  margin-left: 0px;
  margin-right: 20px;
  color: #159ca6;
}
/* line 201, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-9 {
  width: 660px;
  float: right;
  margin-right: 30px;
}
/* line 205, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-9 h2 {
  margin-bottom: 0px;
}
/* line 208, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-9 p {
  margin-top: 0px;
}
/* line 219, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner {
  margin: 0px auto 0px auto;
  max-width: 1440px;
  width: 100%;
  height: auto;
  display: inline-block;
  clear: both;
  overflow: visible;
  padding: 0px;
}
/* line 228, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div:last-child {
  margin-right: -7%;
  position: absolute;
}
/* line 233, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline1 {
  position: relative;
  z-index: 1;
  transition: 0.35s ease;
  margin-left: 0px;
  margin-right: 0px;
}
/* line 239, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline1 img {
  width: 100%;
  transition: width 0.35s ease;
}
/* line 243, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline1:hover {
  background-size: 100% 100%;
  transition: 0.35s ease;
  transition-delay: 0.35s;
  -webkit-transition-delay: 0.35s;
  width: 21.4%;
  height: auto;
  margin-right: -0.7%;
  margin-left: -0.7%;
  margin-top: -10.395px;
  margin-bottom: -10.395px;
  z-index: 100;
}
/* line 255, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline1:hover img {
  width: 100%;
  height: auto;
  transition: width 0.35s ease;
  transition-delay: 0.35s;
}
/* line 233, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline2 {
  position: relative;
  z-index: 1;
  transition: 0.35s ease;
  margin-left: 0px;
  margin-right: 0px;
}
/* line 239, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline2 img {
  width: 100%;
  transition: width 0.35s ease;
}
/* line 243, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline2:hover {
  background-size: 100% 100%;
  transition: 0.35s ease;
  transition-delay: 0.35s;
  -webkit-transition-delay: 0.35s;
  width: 21.4%;
  height: auto;
  margin-right: -0.7%;
  margin-left: -0.7%;
  margin-top: -10.395px;
  margin-bottom: -10.395px;
  z-index: 100;
}
/* line 255, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline2:hover img {
  width: 100%;
  height: auto;
  transition: width 0.35s ease;
  transition-delay: 0.35s;
}
/* line 233, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline3 {
  position: relative;
  z-index: 1;
  transition: 0.35s ease;
  margin-left: 0px;
  margin-right: 0px;
}
/* line 239, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline3 img {
  width: 100%;
  transition: width 0.35s ease;
}
/* line 243, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline3:hover {
  background-size: 100% 100%;
  transition: 0.35s ease;
  transition-delay: 0.35s;
  -webkit-transition-delay: 0.35s;
  width: 21.4%;
  height: auto;
  margin-right: -0.7%;
  margin-left: -0.7%;
  margin-top: -10.395px;
  margin-bottom: -10.395px;
  z-index: 100;
}
/* line 255, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline3:hover img {
  width: 100%;
  height: auto;
  transition: width 0.35s ease;
  transition-delay: 0.35s;
}
/* line 233, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline4 {
  position: relative;
  z-index: 1;
  transition: 0.35s ease;
  margin-left: 0px;
  margin-right: 0px;
}
/* line 239, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline4 img {
  width: 100%;
  transition: width 0.35s ease;
}
/* line 243, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline4:hover {
  background-size: 100% 100%;
  transition: 0.35s ease;
  transition-delay: 0.35s;
  -webkit-transition-delay: 0.35s;
  width: 21.4%;
  height: auto;
  margin-right: -0.7%;
  margin-left: -0.7%;
  margin-top: -10.395px;
  margin-bottom: -10.395px;
  z-index: 100;
}
/* line 255, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline4:hover img {
  width: 100%;
  height: auto;
  transition: width 0.35s ease;
  transition-delay: 0.35s;
}
/* line 233, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline5 {
  position: relative;
  z-index: 1;
  transition: 0.35s ease;
  margin-left: 0px;
  margin-right: 0px;
}
/* line 239, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline5 img {
  width: 100%;
  transition: width 0.35s ease;
}
/* line 243, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline5:hover {
  background-size: 100% 100%;
  transition: 0.35s ease;
  transition-delay: 0.35s;
  -webkit-transition-delay: 0.35s;
  width: 21.4%;
  height: auto;
  margin-right: -0.7%;
  margin-left: -0.7%;
  margin-top: -10.395px;
  margin-bottom: -10.395px;
  z-index: 100;
}
/* line 255, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline5:hover img {
  width: 100%;
  height: auto;
  transition: width 0.35s ease;
  transition-delay: 0.35s;
}
/* line 266, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline5 {
  margin-right: -2.8%;
}
/* line 269, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner div#timeline5:hover {
  margin-right: -4.2%;
}
/* line 274, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner > div {
  width: 20%;
  height: auto;
  float: left;
  cursor: pointer;
}
/* line 279, ../sass/pages/_main_pages.scss */
body.node-type-main-page div#timeline_banner > div div {
  display: none;
}
/* line 289, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-3 {
  margin-left: 0px;
  color: #159ca6;
}
/* line 292, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-3 p {
  margin: 0px 0px 16px 0px;
  padding: 0px;
}
/* line 299, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-4 h3 {
  color: #1368a3;
  padding: 0px;
  margin: 0px 0px 5px 0px;
}
/* line 305, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-4 p {
  padding: 0px;
  margin: 0px 0px 20px 0px;
}
/* line 309, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-4 h4 {
  font-size: 1.2em;
  margin: 0px 0px 8px 0px;
  padding: 0px;
  /*height: 40px;*/
  line-height: 1.2em;
  display: block;
}
/* line 316, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-4 h4 a {
  color: #1368a3;
  padding-left: 44px;
  background: url("../images/icons/resource.svg") 0 center no-repeat;
  padding-top: 0px;
  display: block;
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
}
/* line 327, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-4 h4 a:before {
  content: 'a';
  color: white;
  position: absolute;
  top: 14px;
  left: 14px;
  line-height: 18px;
}
/* line 337, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-4 a.res-b::before {
  top: 16px;
  content: 'b';
}
/* line 341, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-4 a.res-c::before {
  top: 16px;
  content: 'c';
}
/* line 345, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-4 a.res-d::before {
  top: 18px;
  content: 'd';
}
/* line 350, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-4 div#bridge-to-modules h4 {
  font-size: 1em;
}
/* line 353, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-4 div#bridge-to-modules h4 {
  font-weight: normal;
  font-size: 1em;
}
/* line 358, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-4 div#bridge-to-modules h4 a {
  display: inline;
  color: #159ca6;
  background-image: none;
  padding-left: 0px;
  height: 27px;
  padding-top: 5px;
}
/* line 365, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-4 div#bridge-to-modules h4 a:hover {
  text-decoration: underline;
}
/* line 370, ../sass/pages/_main_pages.scss */
body.node-type-main-page #block-block-4 div#bridge-to-modules div.colorbox-content {
  display: none;
}

/* line 5, ../sass/pages/_module_list.scss */
body.page-node-4 {
  /* div#top_logos {
    // width: $content-width;
     height: 100px;
     margin: 0px auto;
     //border: 1px solid green;
   }*/
}
/* line 7, ../sass/pages/_module_list.scss */
body.page-node-4 div.views-row {
  display: block;
  float: left;
  clear: both;
  height: auto;
}
/* line 18, ../sass/pages/_module_list.scss */
body.page-node-4 div#block-views-detailed-module-list-block h2.block-title {
  margin-bottom: 20px;
}
/* line 21, ../sass/pages/_module_list.scss */
body.page-node-4 div#block-views-detailed-module-list-block div.views-field-title {
  margin-top: 0px;
  display: block;
}
/* line 27, ../sass/pages/_module_list.scss */
body.page-node-4 div#block-views-detailed-module-list-block div.views-field-field-module-number {
  margin-top: -10px;
}
/* line 30, ../sass/pages/_module_list.scss */
body.page-node-4 div#block-views-detailed-module-list-block div.views-field-field-tagline,
body.page-node-4 div#block-views-detailed-module-list-block div.views-field-field-description {
  position: relative;
}
/* line 37, ../sass/pages/_module_list.scss */
body.page-node-4 div#block-views-detailed-module-list-block div.views-field-field-tagline {
  font-weight: bold;
  margin-bottom: 5px;
}
/* line 49, ../sass/pages/_module_list.scss */
body.page-node-4 div#block-views-module-list-block div.views-field-field-module-list-image,
body.page-node-4 div#block-views-detailed-module-list-block div.views-field-field-module-list-image {
  float: left;
  margin-right: 20px;
  height: 95px;
}
/* line 54, ../sass/pages/_module_list.scss */
body.page-node-4 div#block-views-module-list-block p,
body.page-node-4 div#block-views-detailed-module-list-block p {
  margin: 0px;
  padding: 0px;
  font-family: "Trebuchet MS";
}
/* line 60, ../sass/pages/_module_list.scss */
body.page-node-4 div#block-views-module-list-block div.views-field-title,
body.page-node-4 div#block-views-detailed-module-list-block div.views-field-title {
  margin-top: 0px;
}
/* line 63, ../sass/pages/_module_list.scss */
body.page-node-4 div#block-views-module-list-block div.views-row,
body.page-node-4 div#block-views-detailed-module-list-block div.views-row {
  margin-bottom: 20px;
}
/* line 67, ../sass/pages/_module_list.scss */
body.page-node-4 div#block-views-module-list-block div.views-field-field-description,
body.page-node-4 div#block-views-detailed-module-list-block div.views-field-field-description {
  font-family: "Trebuchet MS Light";
  margin-left: 0px;
  clear: both;
  float: left;
}
/* line 74, ../sass/pages/_module_list.scss */
body.page-node-4 .views-field-field-module-number {
  float: left;
}
/* line 78, ../sass/pages/_module_list.scss */
body.page-node-4 .views-field-field-tagline {
  margin-bottom: 0px;
}

/* line 8, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-item h3, body.section-content div#content h3,
body.node-type-science-module-reading.section-content div#content div.field-item h3,
body.node-type-science-module-reading.section-content div#content h3 {
  margin-top: 10px;
  font-size: 24px;
  margin-bottom: 16px;
}
/* line 15, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) p,
body.section-content div#content div.field-type-text-long:nth-child(n+5) ul li,
body.section-content div#content div.field-type-text-long:nth-child(n+5) ol li,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) ul li,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) ol li {
  line-height: 1.4em;
  font-size: 16px;
}
/* line 22, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) table,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) table {
  font-size: 15px;
}
/* line 29, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption {
  margin-top: 0px;
}
/* line 34, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) ul,
body.section-content div#content div.field-type-text-long:nth-child(n+5) ol,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) ul,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) ol {
  margin-top: 0px;
}
/* line 37, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) ul li,
body.section-content div#content div.field-type-text-long:nth-child(n+5) ol li,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) ul li,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) ol li {
  margin-bottom: 10px;
}
/* line 40, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) ul li:last-child,
body.section-content div#content div.field-type-text-long:nth-child(n+5) ol li:last-child,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) ul li:last-child,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) ol li:last-child {
  margin-bottom: 0px;
}
/* line 43, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) ul li ol,
body.section-content div#content div.field-type-text-long:nth-child(n+5) ol li ol,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) ul li ol,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) ol li ol {
  margin-top: 10px;
}
/* line 47, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) ol, body.section-content div#content div.field-type-text-long:nth-child(n+5) ul, body.section-content div#content div.field-type-text-long:nth-child(n+5) ul.dash-list,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) ol,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) ul,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) ul.dash-list {
  padding-left: 20px;
}
/* line 51, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) .jqtabs ul.ui-tabs-nav,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) .jqtabs ul.ui-tabs-nav {
  padding-left: 0px;
}
/* line 54, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) .jqtabs ul li,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) .jqtabs ul li {
  margin-bottom: 0px;
}
/* line 57, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) .jqtabs ul.answer_key li,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) .jqtabs ul.answer_key li {
  margin-bottom: 10px;
}
/* line 61, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) p.list-intro,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.list-intro {
  margin-bottom: 0px;
}
/* line 65, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) p,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p {
  margin-bottom: 20px;
}
/* line 68, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) p.video-intro,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.video-intro {
  margin-bottom: 10px;
}
/* line 71, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) p.table-legend,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.table-legend {
  margin-bottom: 6px;
}
/* line 74, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) p.source,
body.section-content div#content div.field-type-text-long:nth-child(n+5) p.desc,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.source,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.desc {
  font-size: 16px;
}
/* line 78, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) p.source,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.source {
  margin-bottom: 4px;
}
/* line 81, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) p.desc,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.desc {
  margin-top: 0px;
}
/* line 84, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) p.source span,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.source span {
  white-space: nowrap;
}
/* line 88, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) .answer_key,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) .answer_key {
  color: #6d6f71;
  font-style: italic;
}
/* line 92, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) .answer_key.margin_left,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) .answer_key.margin_left {
  margin-left: 38px;
}
/* line 97, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) ul.answer_key,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) ul.answer_key {
  list-style-type: disc;
  margin-top: 10px;
}
/* line 103, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment th:first-child,
body.section-content div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment td:first-child,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment th:first-child,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment td:first-child {
  width: 78%;
}
/* line 107, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment th:nth-child(n+2),
body.section-content div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment td:nth-child(n+2),
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment th:nth-child(n+2),
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment td:nth-child(n+2) {
  max-width: 7%;
}
/* line 111, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment td:nth-child(n+2)::after,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment td:nth-child(n+2)::after {
  display: block;
  margin: 0px auto;
  width: 10px;
  text-align: center;
}
/* line 121, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr.no td:nth-child(2):after,
body.section-content div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr.low td:nth-child(3):after,
body.section-content div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr.high td:nth-child(4):after,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr.no td:nth-child(2):after,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr.low td:nth-child(3):after,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr.high td:nth-child(4):after {
  content: 'X';
}
/* line 127, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.field-type-text-long:nth-child(n+5) h3.assessment_header,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) h3.assessment_header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0px;
  padding-top: 0px;
}
/* line 135, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content h3:nth-child(n+2),
body.node-type-science-module-reading.section-content div#content h3:nth-child(n+2) {
  margin-top: 20px;
  height: auto;
  margin-bottom: 14px;
}
/* line 143, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content h3.intro,
body.node-type-science-module-reading.section-content div#content h3.intro {
  margin-top: 0px;
}
/* line 146, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content h4,
body.node-type-science-module-reading.section-content div#content h4 {
  font-size: 20px;
  margin-top: 8px;
  margin-bottom: 12px;
}
/* line 151, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content h4.second,
body.node-type-science-module-reading.section-content div#content h4.second {
  margin-top: -10px;
}
/* line 154, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.video-wrapper h3,
body.node-type-science-module-reading.section-content div#content div.video-wrapper h3 {
  margin-bottom: 5px;
}
/* line 157, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content h3.video-header,
body.node-type-science-module-reading.section-content div#content h3.video-header {
  font-size: 22px;
  margin-bottom: 4px;
}
/* line 161, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content h3.video-header.in-text,
body.node-type-science-module-reading.section-content div#content h3.video-header.in-text {
  margin-top: 20px;
}
/* line 164, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.video-wrapper,
body.node-type-science-module-reading.section-content div#content div.video-wrapper {
  overflow: hidden;
  margin-bottom: 20px;
}
/* line 168, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.video-wrapper.centered,
body.node-type-science-module-reading.section-content div#content div.video-wrapper.centered {
  text-align: center;
}
/* line 171, ../sass/pages/_content_page_body_text.scss */
body.section-content div#content div.video-wrapper.khan iframe,
body.node-type-science-module-reading.section-content div#content div.video-wrapper.khan iframe {
  margin-top: -28px;
}

/* line 8, ../sass/pages/_content_pages.scss */
.module-number, body.node-type-module div.field-name-field-module-number,
body.node-type-module div.field-name-field-parent-module-number,
body.node-type-module div.field-name-field-science-module-number,
body.node-type-science-module-reading div.field-name-field-module-number,
body.node-type-science-module-reading div.field-name-field-parent-module-number,
body.node-type-science-module-reading div.field-name-field-science-module-number,
body.node-type-science-module-section div.field-name-field-module-number,
body.node-type-science-module-section div.field-name-field-parent-module-number,
body.node-type-science-module-section div.field-name-field-science-module-number, body.logged-in div.field-name-field-module-number,
body.logged-in div.field-name-field-parent-module-number,
body.logged-in div.field-name-field-science-module-number {
  color: white;
}

/* line 12, ../sass/pages/_content_pages.scss */
body span.launch_timeline {
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
}

/* line 18, ../sass/pages/_content_pages.scss */
ul.dash-list {
  list-style-type: none;
  padding-left: 20px;
  margin-top: 0px;
}

/* line 24, ../sass/pages/_content_pages.scss */
ul.dash-list > li:first-child {
  margin-top: 12px;
}

/* line 28, ../sass/pages/_content_pages.scss */
ul.dash-list > li:before {
  content: '–';
  margin-right: -5px;
  position: relative;
  border: 1px solid transparent;
  /* height: 30px;*/
  width: 20px;
  float: left;
  display: block;
  margin-left: -15px;
  padding-left: 0px;
  list-style-type: none;
}

/* line 42, ../sass/pages/_content_pages.scss */
ul.checkmark > li {
  font-size: 16px;
  /* this determines the size of the list text and therefore checkmark size*/
  list-style-type: none;
  /* remove default list style*/
  margin-bottom: 1em;
  /* lists need to be able to breathe*/
  padding: 0.25em 0 0 0.3em;
  /* make room for the circle*/
  position: relative;
  /* because we want to position the circle in an absolute fashion*/
}

/* line 55, ../sass/pages/_content_pages.scss */
ul.checkmark > li:before {
  content: " ";
  /* the circle itself is empty */
  display: block;
  border: solid 0.8em white;
  /*create a colored area...*/
  border-radius: .8em;
  /* ... and turn it into a circle*/
  height: 0;
  width: 0;
  position: absolute;
  /* the circle is then put into place*/
  left: -1.5em;
  top: 40%;
  margin-top: -0.5em;
}

/* line 72, ../sass/pages/_content_pages.scss */
ul.checkmark > li:after {
  content: " ";
  display: block;
  width: 0.3em;
  /* the short bar of the mark is half as long as the long bar*/
  height: 0.6em;
  border: solid #159ca6;
  border-width: 0em 0.2em 0.2em 0em;
  /* creates the inverted "L" shape*/
  position: absolute;
  left: -1em;
  top: 40%;
  margin-top: -0.2em;
  -webkit-transform: rotate(45deg);
  /* tilts the shape*/
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* line 92, ../sass/pages/_content_pages.scss */
ul li ol {
  margin-top: 10px;
}

/* line 96, ../sass/pages/_content_pages.scss */
body.content-activity.section-content, body.node-type-module.section-content {
  /*ul.eid-module-nav {
    background: url("../images/art/ebola_measles_graphic.png") 0 0 no-repeat;
    background-position: left 0px bottom 110px;
  }*/
}
/* line 97, ../sass/pages/_content_pages.scss */
body.content-activity.section-content div.field-name-field-header-text p, body.node-type-module.section-content div.field-name-field-header-text p {
  background: url("../images/icons/intro-arrow.png") 0 center no-repeat;
  padding-left: 50px;
  min-height: 35px;
}
/* line 102, ../sass/pages/_content_pages.scss */
body.content-activity.section-content h3.activity_instructions, body.node-type-module.section-content h3.activity_instructions {
  padding-left: 50px;
  background: url("../images/icons/information.png") 0 center no-repeat;
  height: 36px;
  padding-top: 4px;
}
/* line 108, ../sass/pages/_content_pages.scss */
body.content-activity.section-content h4, body.node-type-module.section-content h4 {
  font-size: 20px;
}
/* line 111, ../sass/pages/_content_pages.scss */
body.content-activity.section-content h3.activity_instructions.long_title,
body.content-activity.section-content h3.activity_instructions:nth-child(n+2), body.node-type-module.section-content h3.activity_instructions.long_title,
body.node-type-module.section-content h3.activity_instructions:nth-child(n+2) {
  margin-bottom: 30px;
  height: 56px;
  background-position: 0px center;
  padding-top: 0px;
}
/* line 122, ../sass/pages/_content_pages.scss */
body.content-activity.section-content ul.resource-list, body.node-type-module.section-content ul.resource-list {
  margin-top: 6px;
}

/* line 128, ../sass/pages/_content_pages.scss */
body.content-discussion div.field-name-field-header-text p {
  background: url("../images/icons/discussion-41h.png") 0 center no-repeat;
  min-height: 35px;
  padding-left: 65px;
}

/* line 135, ../sass/pages/_content_pages.scss */
body.node-type-module,
body.node-type-science-module-reading,
body.node-type-science-module-section {
  /*  ul.eid-module-nav {
      float: left;
      clear: both;
      width: $nav-width;
      list-style: none;
      padding-left: 0px;
      padding-bottom: 400px;
      li.sidebar_summary {
        top: 270px;
        position: relative;
        color: $eid-aqua;
        margin-bottom: -122px;
        width: 200px;
        height: 120px;
        padding-top: 0px;
      }
      li {
        margin-left: 0px;
        a {
          padding-left: 10px;
          background-color: $eid-midgrey;
          color: white;
          display: block;
          width: $nav-width - 10px;
          padding-top: 5px;
          padding-bottom: 5px;
          border-top: 1px solid $eid-menu-aqua;
          transition: background-color 0.2s ease;
          &:hover {
            background-color: $eid-lightgrey;
            transition: background-color 0.2s ease;
          }
        }
      }
      li.active a {
        background-color: $eid-lightblack;
        color: $eid-link-yellow;
      }
      li:first-child a {
        background-color: transparent;
        color: $eid-lightblack;
        text-transform: uppercase;
      }
      li:first-child.active a {
        color: $eid-menu-aqua;
      }
      li:first-child:after {
        content: 'CORE MATERIAL';
        height: 20px;
        width: $nav-width - 10px;
        display: block;
        padding-left: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
        background-color: $eid-midgrey;
        border-top: 1px solid $eid-menu-aqua;
        color: white;
      }
      li:nth-child(n+2) a {
        padding-left: 30px;
        padding-right: 10px;
        width: $nav-width - 40px;
      }
    }
    // delete block-block-12 when you refresh DB on your local
    div#block-block-12,
    div#block-block-10 {
      border-top: 2px solid $eid-lightgrey;
      margin-top: 45px;
    }*/
}
/* line 138, ../sass/pages/_content_pages.scss */
body.node-type-module div.field-name-field-header-text,
body.node-type-module div.field-name-field-reading-header,
body.node-type-science-module-reading div.field-name-field-header-text,
body.node-type-science-module-reading div.field-name-field-reading-header,
body.node-type-science-module-section div.field-name-field-header-text,
body.node-type-science-module-section div.field-name-field-reading-header {
  margin-bottom: 10px;
  padding-top: 0px;
}
/* line 143, ../sass/pages/_content_pages.scss */
body.node-type-module div.field-name-field-header-text p,
body.node-type-module div.field-name-field-reading-header p,
body.node-type-science-module-reading div.field-name-field-header-text p,
body.node-type-science-module-reading div.field-name-field-reading-header p,
body.node-type-science-module-section div.field-name-field-header-text p,
body.node-type-science-module-section div.field-name-field-reading-header p {
  padding-top: 5px;
  padding-bottom: 0px;
}
/* line 150, ../sass/pages/_content_pages.scss */
body.node-type-module div.field-name-field-section-title,
body.node-type-science-module-reading div.field-name-field-section-title,
body.node-type-science-module-section div.field-name-field-section-title {
  /*font-weight: bold;*/
}
/* line 152, ../sass/pages/_content_pages.scss */
body.node-type-module div.field-name-field-section-title span,
body.node-type-science-module-reading div.field-name-field-section-title span,
body.node-type-science-module-section div.field-name-field-section-title span {
  height: 40px;
  display: inline-block;
  padding-top: 5px;
}
/* line 157, ../sass/pages/_content_pages.scss */
body.node-type-module div.field-name-field-section-title span.disc,
body.node-type-science-module-reading div.field-name-field-section-title span.disc,
body.node-type-science-module-section div.field-name-field-section-title span.disc {
  padding-left: 70px;
  background: url("../images/icons/discussion.png") 0 center no-repeat;
  min-height: 35px;
}
/* line 162, ../sass/pages/_content_pages.scss */
body.node-type-module div.field-name-field-section-title span.activity,
body.node-type-science-module-reading div.field-name-field-section-title span.activity,
body.node-type-science-module-section div.field-name-field-section-title span.activity {
  padding-left: 50px;
  background: url("../images/icons/intro-arrow.png") 0 center no-repeat;
  min-height: 35px;
}
/* line 167, ../sass/pages/_content_pages.scss */
body.node-type-module div.field-name-field-section-title span.reading,
body.node-type-science-module-reading div.field-name-field-section-title span.reading,
body.node-type-science-module-section div.field-name-field-section-title span.reading {
  padding-left: 50px;
  background: url("../images/icons/reading.png") 0 center no-repeat;
}
/* line 178, ../sass/pages/_content_pages.scss */
body.node-type-module article > .module-content, body.node-type-module body.node-type-science-module-reading div#content article > div.region-reading-widget, body.node-type-science-module-reading div#content body.node-type-module article > div.region-reading-widget,
body.node-type-module body.page-views div#content article > div.region-reading-widget,
body.page-views div#content body.node-type-module article > div.region-reading-widget, body.node-type-module body.node-type-science-module-reading div#content article > div.field-name-field-reading-footer, body.node-type-science-module-reading div#content body.node-type-module article > div.field-name-field-reading-footer,
body.node-type-module body.node-type-science-module-reading div#content article > div.field-name-field-teacher-instructions,
body.node-type-science-module-reading div#content body.node-type-module article > div.field-name-field-teacher-instructions,
body.node-type-module body.node-type-science-module-reading div#content article > div.field-name-field-student-introduction,
body.node-type-science-module-reading div#content body.node-type-module article > div.field-name-field-student-introduction,
body.node-type-module body.page-views div#content article > div.field-name-field-reading-footer,
body.page-views div#content body.node-type-module article > div.field-name-field-reading-footer,
body.node-type-module body.page-views div#content article > div.field-name-field-teacher-instructions,
body.page-views div#content body.node-type-module article > div.field-name-field-teacher-instructions,
body.node-type-module body.page-views div#content article > div.field-name-field-student-introduction,
body.page-views div#content body.node-type-module article > div.field-name-field-student-introduction,
body.node-type-science-module-reading article > .module-content,
body.node-type-science-module-reading div#content article > div.region-reading-widget,
body.page-views div#content body.node-type-science-module-reading article > div.region-reading-widget,
body.node-type-science-module-reading div#content article > div.field-name-field-reading-footer,
body.node-type-science-module-reading div#content article > div.field-name-field-teacher-instructions,
body.node-type-science-module-reading div#content article > div.field-name-field-student-introduction,
body.page-views div#content body.node-type-science-module-reading article > div.field-name-field-reading-footer,
body.page-views div#content body.node-type-science-module-reading article > div.field-name-field-teacher-instructions,
body.page-views div#content body.node-type-science-module-reading article > div.field-name-field-student-introduction,
body.node-type-science-module-section article > .module-content,
body.node-type-science-module-section body.node-type-science-module-reading div#content article > div.region-reading-widget,
body.node-type-science-module-reading div#content body.node-type-science-module-section article > div.region-reading-widget,
body.node-type-science-module-section body.page-views div#content article > div.region-reading-widget,
body.page-views div#content body.node-type-science-module-section article > div.region-reading-widget,
body.node-type-science-module-section body.node-type-science-module-reading div#content article > div.field-name-field-reading-footer,
body.node-type-science-module-reading div#content body.node-type-science-module-section article > div.field-name-field-reading-footer,
body.node-type-science-module-section body.node-type-science-module-reading div#content article > div.field-name-field-teacher-instructions,
body.node-type-science-module-reading div#content body.node-type-science-module-section article > div.field-name-field-teacher-instructions,
body.node-type-science-module-section body.node-type-science-module-reading div#content article > div.field-name-field-student-introduction,
body.node-type-science-module-reading div#content body.node-type-science-module-section article > div.field-name-field-student-introduction,
body.node-type-science-module-section body.page-views div#content article > div.field-name-field-reading-footer,
body.page-views div#content body.node-type-science-module-section article > div.field-name-field-reading-footer,
body.node-type-science-module-section body.page-views div#content article > div.field-name-field-teacher-instructions,
body.page-views div#content body.node-type-science-module-section article > div.field-name-field-teacher-instructions,
body.node-type-science-module-section body.page-views div#content article > div.field-name-field-student-introduction,
body.page-views div#content body.node-type-science-module-section article > div.field-name-field-student-introduction {
  width: 700px;
  margin-left: 40px;
}
/* line 182, ../sass/pages/_content_pages.scss */
body.node-type-module div.field-name-field-parent-module-number,
body.node-type-module div.field-name-field-science-module-number,
body.node-type-science-module-reading div.field-name-field-parent-module-number,
body.node-type-science-module-reading div.field-name-field-science-module-number,
body.node-type-science-module-section div.field-name-field-parent-module-number,
body.node-type-science-module-section div.field-name-field-science-module-number {
  left: 18px;
  margin-bottom: -30px;
}
/* line 187, ../sass/pages/_content_pages.scss */
body.node-type-module div#content,
body.node-type-science-module-reading div#content,
body.node-type-science-module-section div#content {
  min-height: 700px;
}
/* line 190, ../sass/pages/_content_pages.scss */
body.node-type-module h1#page-title,
body.node-type-science-module-reading h1#page-title,
body.node-type-science-module-section h1#page-title {
  color: #1c9ca6;
  padding-left: 0px;
  font-weight: normal;
  font-size: 40px;
  line-height: 45px;
  background: url("../images/icons/folder-48px.png") 0 0 no-repeat;
}
/* line 197, ../sass/pages/_content_pages.scss */
body.node-type-module h1#page-title:first-letter,
body.node-type-science-module-reading h1#page-title:first-letter,
body.node-type-science-module-section h1#page-title:first-letter {
  font-size: 20px;
  display: block;
  float: left;
  text-align: center;
  margin-right: 10px;
  color: white;
  height: 30px;
  padding: 0px 20px;
  position: relative;
  margin-top: 14px;
  line-height: 20px;
}
@-moz-document url-prefix() {
  /* line 197, ../sass/pages/_content_pages.scss */
  body.node-type-module h1#page-title:first-letter,
  body.node-type-science-module-reading h1#page-title:first-letter,
  body.node-type-science-module-section h1#page-title:first-letter {
    margin-top: 16px;
  }
}
/* line 214, ../sass/pages/_content_pages.scss */
body.node-type-module h1#page-title.loading,
body.node-type-science-module-reading h1#page-title.loading,
body.node-type-science-module-section h1#page-title.loading {
  padding-left: 0px;
  background: none;
}
/* line 288, ../sass/pages/_content_pages.scss */
body.node-type-module div#teacher-student-toggle,
body.node-type-science-module-reading div#teacher-student-toggle,
body.node-type-science-module-section div#teacher-student-toggle {
  margin: 0px auto;
  width: 1060px;
  height: 30px;
  margin-top: 16px;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-end;
}
/* line 296, ../sass/pages/_content_pages.scss */
body.node-type-module div#teacher-student-toggle div.btn-container,
body.node-type-science-module-reading div#teacher-student-toggle div.btn-container,
body.node-type-science-module-section div#teacher-student-toggle div.btn-container {
  margin: 0px;
  float: right;
  display: inline-block;
  margin-right: 0px;
}
/* line 302, ../sass/pages/_content_pages.scss */
body.node-type-module div#teacher-student-toggle div.btn-container:nth-child(2),
body.node-type-science-module-reading div#teacher-student-toggle div.btn-container:nth-child(2),
body.node-type-science-module-section div#teacher-student-toggle div.btn-container:nth-child(2) {
  margin-right: 20px;
}
/* line 308, ../sass/pages/_content_pages.scss */
body.node-type-module div#teacher-student-toggle button.active,
body.node-type-science-module-reading div#teacher-student-toggle button.active,
body.node-type-science-module-section div#teacher-student-toggle button.active {
  background-color: #58595b;
  color: #fad12c;
}

/* line 322, ../sass/pages/_content_pages.scss */
body.logged-in div.field-name-field-module-number {
  left: -222px;
}

/* line 327, ../sass/pages/_content_pages.scss */
h2, p.comment {
  clear: both;
}

/* line 331, ../sass/pages/_content_pages.scss */
p.comment {
  margin-top: 20px;
  display: block;
}

/* line 5, ../sass/pages/_module_nav.scss */
body.node-type-module,
body.node-type-science-module-reading,
body.node-type-science-module-section {
  /* div#teacher-student-toggle {
     margin: 0px auto;
     width: $content-width;
     height: 30px;
     margin-top: 16px;
     margin-bottom: 20px;
     div.btn-container {
       margin: 0px;
       float: right;
       display: inline-block;
       margin-right: 0px;
     }
     div.btn-container:first-child {
       margin-right: 20px;
     }
     button {
       @extend .eid-button;
       float: right;
     }
     button.active {
       background-color: $eid-lightblack;
       color: $eid-yellow;
     }
   }*/
}
/* line 9, ../sass/pages/_module_nav.scss */
body.node-type-module ul.eid-module-nav,
body.node-type-science-module-reading ul.eid-module-nav,
body.node-type-science-module-section ul.eid-module-nav {
  float: left;
  clear: both;
  width: 290px;
  list-style: none;
  padding-left: 0px;
  padding-bottom: 400px;
  font-size: 15px;
  background: url("../images/art/ebola_measles_graphic.png") 0 0 no-repeat;
  background-position: left 20px bottom 110px;
}
@media screen and (min-width: 931px) {
  /* line 9, ../sass/pages/_module_nav.scss */
  body.node-type-module ul.eid-module-nav,
  body.node-type-science-module-reading ul.eid-module-nav,
  body.node-type-science-module-section ul.eid-module-nav {
    height: auto !important;
  }
}
/* line 24, ../sass/pages/_module_nav.scss */
body.node-type-module ul.eid-module-nav li.sidebar_summary,
body.node-type-science-module-reading ul.eid-module-nav li.sidebar_summary,
body.node-type-science-module-section ul.eid-module-nav li.sidebar_summary {
  top: 270px;
  position: relative;
  color: #159ca6;
  margin-bottom: -122px;
  width: 200px;
  height: 120px;
  padding-top: 0px;
}
/* line 33, ../sass/pages/_module_nav.scss */
body.node-type-module ul.eid-module-nav li,
body.node-type-science-module-reading ul.eid-module-nav li,
body.node-type-science-module-section ul.eid-module-nav li {
  margin-left: 0px;
}
/* line 35, ../sass/pages/_module_nav.scss */
body.node-type-module ul.eid-module-nav li a,
body.node-type-science-module-reading ul.eid-module-nav li a,
body.node-type-science-module-section ul.eid-module-nav li a {
  padding-left: 10px;
  background-color: #a7a9ac;
  color: white;
  display: block;
  width: 280px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-top: 1px solid #1c9ca6;
  transition: background-color 0.2s ease;
}
/* line 45, ../sass/pages/_module_nav.scss */
body.node-type-module ul.eid-module-nav li a:hover,
body.node-type-science-module-reading ul.eid-module-nav li a:hover,
body.node-type-science-module-section ul.eid-module-nav li a:hover {
  background-color: #bcbec0;
  transition: background-color 0.2s ease;
}
/* line 51, ../sass/pages/_module_nav.scss */
body.node-type-module ul.eid-module-nav li.active a,
body.node-type-science-module-reading ul.eid-module-nav li.active a,
body.node-type-science-module-section ul.eid-module-nav li.active a {
  background-color: #58595b;
  color: #ddbb30;
}
/* line 55, ../sass/pages/_module_nav.scss */
body.node-type-module ul.eid-module-nav li:first-child a,
body.node-type-science-module-reading ul.eid-module-nav li:first-child a,
body.node-type-science-module-section ul.eid-module-nav li:first-child a {
  background-color: transparent;
  color: #58595b;
  text-transform: uppercase;
}
/* line 60, ../sass/pages/_module_nav.scss */
body.node-type-module ul.eid-module-nav li:first-child.active a,
body.node-type-science-module-reading ul.eid-module-nav li:first-child.active a,
body.node-type-science-module-section ul.eid-module-nav li:first-child.active a {
  color: #1c9ca6;
}
/* line 63, ../sass/pages/_module_nav.scss */
body.node-type-module ul.eid-module-nav li:first-child:after,
body.node-type-science-module-reading ul.eid-module-nav li:first-child:after,
body.node-type-science-module-section ul.eid-module-nav li:first-child:after {
  content: 'CORE MATERIAL';
  height: 20px;
  width: 280px;
  display: block;
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #a7a9ac;
  border-top: 1px solid #1c9ca6;
  color: white;
}
/* line 75, ../sass/pages/_module_nav.scss */
body.node-type-module ul.eid-module-nav li:nth-child(n+2) a,
body.node-type-science-module-reading ul.eid-module-nav li:nth-child(n+2) a,
body.node-type-science-module-section ul.eid-module-nav li:nth-child(n+2) a {
  padding-left: 30px;
  padding-right: 10px;
  width: 250px;
}
/* line 82, ../sass/pages/_module_nav.scss */
body.node-type-module div#block-block-12,
body.node-type-module div#block-block-10,
body.node-type-science-module-reading div#block-block-12,
body.node-type-science-module-reading div#block-block-10,
body.node-type-science-module-section div#block-block-12,
body.node-type-science-module-section div#block-block-10 {
  border-top: 2px solid #bcbec0;
  margin-top: 45px;
}

/* line 120, ../sass/pages/_module_nav.scss */
body.logged-in div.field-name-field-module-number {
  left: -222px;
}

/* line 125, ../sass/pages/_module_nav.scss */
h2, p.comment {
  clear: both;
}

/* line 129, ../sass/pages/_module_nav.scss */
p.comment {
  margin-top: 20px;
  display: block;
}

/* line 5, ../sass/pages/_content_page_table.scss */
table.category-table {
  border: 2px solid #e5e4e9;
  font-size: 16px;
  margin: 0px auto 30px auto;
}
/* line 9, ../sass/pages/_content_page_table.scss */
table.category-table th {
  background-color: #afb0b4;
  font-weight: normal;
  color: white;
}
/* line 14, ../sass/pages/_content_page_table.scss */
table.category-table td, table.category-table th {
  padding: 5px 10px 5px 10px;
  border-left: 1px solid white;
}
/* line 18, ../sass/pages/_content_page_table.scss */
table.category-table tr:nth-child(even) {
  background-color: #e5e4e9;
}
/* line 21, ../sass/pages/_content_page_table.scss */
table.category-table tr:nth-child(odd) {
  background-color: #f7f7f7;
}
/* line 24, ../sass/pages/_content_page_table.scss */
table.category-table tr:last-child {
  border-bottom: #CCC;
}
/* line 27, ../sass/pages/_content_page_table.scss */
table.category-table td {
  text-align: left;
}

/* line 32, ../sass/pages/_content_page_table.scss */
table.category-table.table-left {
  margin-left: 0px;
  margin-bottom: 30px;
  width: 560px;
}
/* line 36, ../sass/pages/_content_page_table.scss */
table.category-table.table-left td:first-child {
  width: 420px;
}
/* line 39, ../sass/pages/_content_page_table.scss */
table.category-table.table-left td:nth-child(2) {
  text-align: center;
}

/* line 44, ../sass/pages/_content_page_table.scss */
table.category-table.col-4-answer td:nth-child(4) {
  color: transparent;
}

/* line 49, ../sass/pages/_content_page_table.scss */
table.category-table.col-4-answer.show td:nth-child(4) {
  color: black;
}

/* line 4, ../sass/headers/_extensible.scss */
.eid-button, body.page-user input#edit-submit, body.node-type-module div#teacher-student-toggle button,
body.node-type-science-module-reading div#teacher-student-toggle button,
body.node-type-science-module-section div#teacher-student-toggle button {
  display: inline;
  clear: none;
  margin: 0px;
  border-radius: 0px;
  background-color: white;
  border: 1px solid #6d6f71;
  padding: 5px 17px;
  color: #58595b;
  background-color: white;
  font-size: 0.9em;
}

/* line 17, ../sass/headers/_extensible.scss */
.module-page-main-header, body.node-type-module div.field-name-field-student-intro h2,
body.node-type-module div.field-name-field-teacher-intro h2, body.node-type-module div.field-name-field-teacher-intro h2.top,
body.node-type-module div.field-name-field-student-intro h2.top {
  font-size: 30px;
  line-height: 30px;
  color: #159ca6;
  margin-bottom: 10px;
  font-weight: bold;
  margin-top: 10px;
  padding: 0px;
  display: block;
}

/* line 29, ../sass/headers/_extensible.scss */
.subheader, .subheader-top p, body.node-type-science-module-reading div#content .field-name-field-reading-header p,
body.page-views div#content .field-name-field-reading-header p, body.node-type-science-module-section div#content div.field-name-field-header-text p, body.node-type-science-module-section div#content h3 {
  font-size: 26px;
  line-height: 28px;
  font-weight: bold;
  margin: 0px;
}

/* line 41, ../sass/headers/_extensible.scss */
.subheader-top, body.node-type-science-module-reading div#content .field-name-field-reading-header,
body.page-views div#content .field-name-field-reading-header, body.node-type-science-module-section div#content div.field-name-field-header-text {
  margin-left: 40px;
  float: left;
}

/* line 50, ../sass/headers/_extensible.scss */
.module-section-title, body.node-type-science-module-reading div#content div.field-name-field-visible-title,
body.page-views div#content div.field-name-field-visible-title, body.node-type-science-module-section div#content div.field-name-field-section-title {
  color: #1c9ca6;
  width: 710px;
  margin: 30px 0px 10px 40px;
  float: left;
  padding-bottom: 0px;
}
/* line 57, ../sass/headers/_extensible.scss */
.module-section-title p, body.node-type-science-module-reading div#content div.field-name-field-visible-title p,
body.page-views div#content div.field-name-field-visible-title p, body.node-type-science-module-section div#content div.field-name-field-section-title p {
  font-size: 30px;
  line-height: 30px;
  margin-top: 0px;
  margin-bottom: 0px;
}

/* line 64, ../sass/headers/_extensible.scss */
.content-para {
  padding-top: 0px;
  margin-top: 0px;
  font-size: 16px;
  line-height: 1.4em;
}

/* line 72, ../sass/headers/_extensible.scss */
.caption, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption, caption {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 20px;
  display: block;
  margin: 0px auto;
}

/* line 81, ../sass/headers/_extensible.scss */
.caption.moderate-width, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.moderate-width.caption {
  width: 500px;
}

/* line 84, ../sass/headers/_extensible.scss */
.caption.in-text, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.in-text.caption {
  margin-bottom: 22px;
}

/* line 87, ../sass/headers/_extensible.scss */
.credit, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.credit,
body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.credit {
  font-weight: bold;
  font-size: 13px;
  line-height: 15px;
  display: block;
  margin: 5px auto 0px auto;
}

/* line 95, ../sass/headers/_extensible.scss */
.credit.left, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.left.credit {
  text-align: left;
  margin-left: 0px;
  width: auto;
}

/* line 100, ../sass/headers/_extensible.scss */
.credit.margin-bottom, body.section-content div#content div.field-type-text-long:nth-child(n+5) p.margin-bottom.credit {
  margin-bottom: 20px;
}

/* line 103, ../sass/headers/_extensible.scss */
p {
  margin-bottom: 16px;
}

/* line 106, ../sass/headers/_extensible.scss */
p.source {
  margin-bottom: 4px;
}

/* line 110, ../sass/headers/_extensible.scss */
.category-table {
  border: 1px solid #bcbec0;
  font-size: 16px;
  margin: 0px auto;
}
/* line 115, ../sass/headers/_extensible.scss */
.category-table td {
  width: 33%;
}
/* line 118, ../sass/headers/_extensible.scss */
.category-table th {
  background-color: #afb0b4;
  font-weight: normal;
  color: white;
}
/* line 124, ../sass/headers/_extensible.scss */
.category-table td:first-child {
  border-left: 1px solid #bcbec0;
}
/* line 127, ../sass/headers/_extensible.scss */
.category-table td, .category-table th {
  padding: 5px 10px 5px 10px;
  border-left: 1px solid white;
}
/* line 131, ../sass/headers/_extensible.scss */
.category-table td.category {
  font-weight: bold;
  font-style: italic;
  text-align: center;
}
/* line 138, ../sass/headers/_extensible.scss */
.category-table tr:nth-child(even) {
  background-color: #e5e4e9;
}
/* line 141, ../sass/headers/_extensible.scss */
.category-table tr:nth-child(odd) {
  background-color: #f7f7f7;
}
/* line 144, ../sass/headers/_extensible.scss */
.category-table tr:last-child {
  border-bottom: #CCC;
}
/* line 147, ../sass/headers/_extensible.scss */
.category-table td {
  text-align: left;
}

/* line 6, ../sass/pages/_module_about.scss */
body.node-type-module div.field-name-field-module-number {
  left: -242px;
}
/* line 13, ../sass/pages/_module_about.scss */
body.node-type-module div.field-name-field-teacher-intro div.lesson_plan {
  /*p {
    margin-bottom: 12px;
  }*/
}
/* line 17, ../sass/pages/_module_about.scss */
body.node-type-module div.field-name-field-teacher-intro div.lesson_plan h4 {
  margin-bottom: 10px;
  margin-top: 20px;
}
/* line 23, ../sass/pages/_module_about.scss */
body.node-type-module div.field-name-field-student-intro,
body.node-type-module div.field-name-field-teacher-intro {
  width: 710px;
  margin-top: 14px;
  margin-left: 40px;
  float: left;
}
/* line 30, ../sass/pages/_module_about.scss */
body.node-type-module div.field-name-field-student-intro p, body.node-type-module div.field-name-field-student-intro li,
body.node-type-module div.field-name-field-teacher-intro p,
body.node-type-module div.field-name-field-teacher-intro li {
  font-size: 16px;
  line-height: 1.4em;
}
/* line 34, ../sass/pages/_module_about.scss */
body.node-type-module div.field-name-field-student-intro h2,
body.node-type-module div.field-name-field-teacher-intro h2 {
  padding: 0px;
}
/* line 41, ../sass/pages/_module_about.scss */
body.node-type-module div.resources {
  margin-top: 10px;
}
/* line 45, ../sass/pages/_module_about.scss */
body.node-type-module div.resources h2 {
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
  color: black;
}
/* line 54, ../sass/pages/_module_about.scss */
body.node-type-module div.field-name-field-teacher-intro,
body.node-type-module div.field-name-field-student-intro {
  /*
  li ul > li:before {
     content: "\00BB";
     left: -0.5em;
     margin-left: 0px;
     position: relative;
     font-size: 30px;
     top: 2px;
     margin-right: -10px;
  
  }*/
  /*ul >  li:before { 
    content: "";
  
    border-color: transparent #111;
    border-style: solid;
    border-width: 0.35em 0 0.35em 0.45em;
    display: block;
    height: 0;
    width: 0;
    left: -1.5em;
    margin-left: 10px;
    top: 1em;
    position: relative;
  
  }*/
}
/* line 62, ../sass/pages/_module_about.scss */
body.node-type-module div.field-name-field-teacher-intro li,
body.node-type-module div.field-name-field-student-intro li {
  margin-top: 0px;
  margin-bottom: 10px;
}
/* line 68, ../sass/pages/_module_about.scss */
body.node-type-module div.field-name-field-teacher-intro p,
body.node-type-module div.field-name-field-student-intro p {
  margin: 0px 0px 12px 0px;
}
/* line 71, ../sass/pages/_module_about.scss */
body.node-type-module div.field-name-field-teacher-intro sup,
body.node-type-module div.field-name-field-student-intro sup {
  font-size: 10px;
}
/* line 75, ../sass/pages/_module_about.scss */
body.node-type-module div.field-name-field-teacher-intro ul,
body.node-type-module div.field-name-field-student-intro ul {
  margin: 0.3em 0 1em 0;
  padding: 0 1em;
}
/* line 80, ../sass/pages/_module_about.scss */
body.node-type-module div.field-name-field-teacher-intro ul > li,
body.node-type-module div.field-name-field-student-intro ul > li {
  margin-left: 6px;
}
/* line 82, ../sass/pages/_module_about.scss */
body.node-type-module div.field-name-field-teacher-intro ul > li ol, body.node-type-module div.field-name-field-teacher-intro ul > li ul li,
body.node-type-module div.field-name-field-student-intro ul > li ol,
body.node-type-module div.field-name-field-student-intro ul > li ul li {
  margin-top: 10px;
  margin-bottom: 16px;
  margin-left: 0px;
}
/* line 89, ../sass/pages/_module_about.scss */
body.node-type-module div.field-name-field-teacher-intro li ul,
body.node-type-module div.field-name-field-student-intro li ul {
  list-style-type: none;
}
/* line 92, ../sass/pages/_module_about.scss */
body.node-type-module div.field-name-field-teacher-intro li ul li:first-child,
body.node-type-module div.field-name-field-student-intro li ul li:first-child {
  margin-top: 10px;
}
/* line 95, ../sass/pages/_module_about.scss */
body.node-type-module div.field-name-field-teacher-intro li ul li,
body.node-type-module div.field-name-field-student-intro li ul li {
  margin-bottom: 10px;
}

/* line 8, ../sass/pages/_article.scss */
body.node-type-science-article h1#page-title {
  margin-top: 50px;
  font-size: 36px;
  color: #1368a3;
}
/* line 13, ../sass/pages/_article.scss */
body.node-type-science-article div#content {
  margin-top: -35px;
}
/* line 16, ../sass/pages/_article.scss */
body.node-type-science-article div.field-name-field-publication-name {
  font-size: 20px;
  font-weight: light;
  font-style: italic;
  color: #a7a9ac;
  margin: 20px 0px 10px 0px;
}
/* line 21, ../sass/pages/_article.scss */
body.node-type-science-article div.field-name-field-publication-name p {
  margin: 0px;
}
/* line 26, ../sass/pages/_article.scss */
body.node-type-science-article div.field-name-field-author-name,
body.node-type-science-article div.field-name-field-article-date {
  font-size: 20px;
  float: left;
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 10px;
}
/* line 33, ../sass/pages/_article.scss */
body.node-type-science-article div.field-name-field-author-name p,
body.node-type-science-article div.field-name-field-article-date p {
  margin: 0px;
}
/* line 38, ../sass/pages/_article.scss */
body.node-type-science-article div.field-name-field-article-date {
  margin-left: 10px;
}
/* line 42, ../sass/pages/_article.scss */
body.node-type-science-article div.field-name-body {
  clear: both;
}
/* line 44, ../sass/pages/_article.scss */
body.node-type-science-article div.field-name-body p {
  margin-bottom: 20px;
}
/* line 48, ../sass/pages/_article.scss */
body.node-type-science-article div.field-name-field-ip-info {
  font-size: 14px;
}

/* line 11, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section ul.disease-items {
  margin-left: 0px;
  padding-left: 0px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 50px;
}
/* line 20, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section ul.disease-items li {
  margin-right: 20px;
  font-size: 16px;
  background-color: white;
  border: 2px solid black;
  display: inline-block;
  height: 100px;
  width: 140px;
  text-align: center;
  padding: 5px;
  list-style-type: none;
  cursor: pointer;
  position: relative;
  box-shadow: 2px 2px 3px rgba(68, 68, 68, 0.4);
}
/* line 38, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section ul.disease-items li.dragging {
  box-shadow: 4px 4px 4px rgba(68, 68, 68, 0.3);
}
/* line 41, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section div#sort_activity {
  border: 1px solid transparent;
}
/* line 45, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section div#answer_section {
  max-width: 710px;
  width: 100%;
  margin-bottom: 20px;
}
/* line 54, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section div.form-group {
  margin-bottom: 10px;
}
/* line 57, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section div.form-group label {
  margin-left: 0px;
  font-size: 16px;
  font-weight: normal;
}
/* line 62, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section div.form-group label input {
  margin-right: 10px;
  width: 20px;
}
/* line 69, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section div#two_columns div {
  width: 324px;
}
/* line 73, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section div#three_columns {
  display: none;
}
/* line 76, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section div#three_columns div {
  width: 216px;
}
/* line 80, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section div#two_columns,
body.node-type-science-module-section div#three_columns {
  display: flex;
  justify-content: space-between;
  clear: both;
  margin-bottom: 40px;
}
/* line 87, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section div#two_columns div,
body.node-type-science-module-section div#three_columns div {
  display: block;
  height: 500px;
  border: 2px solid #159ca6;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding-top: 10px;
  margin-top: 10px;
  font-size: 16px;
}
/* line 99, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section div#two_columns div:not(:first-child),
body.node-type-science-module-section div#three_columns div:not(:first-child) {
  margin-left: 20px;
}
/* line 103, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section p.answer_key {
  margin-top: 300px;
  clear: both;
}
/* line 108, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section p.comment {
  width: 760px;
}
/* line 114, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section div.card_instructions p {
  margin-bottom: 14px;
}
/* line 117, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section div.card_instructions p:last-child {
  margin-bottom: -6px;
}
/* line 123, ../sass/pages/_card_sort.scss */
body.node-type-science-module-section div.field-name-field-general-text p.answer_key {
  margin-top: 120px;
  display: block;
}

/* line 130, ../sass/pages/_card_sort.scss */
body.section-content div#content div.field-type-text-long:nth-child(n) ul.disease-items.random li,
body.section-content div#content div.field-type-text-long:nth-child(n+5) ul.disease-items.random li {
  margin-bottom: -20px;
}

/* line 140, ../sass/pages/_card_sort.scss */
input[type="radio"] {
  display: none;
}

/* line 143, ../sass/pages/_card_sort.scss */
input[type="radio"] + label {
  color: black;
  font-family: Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 5px;
  height: 20px;
  padding-top: 4px;
  padding-bottom: 4px;
}

/* line 153, ../sass/pages/_card_sort.scss */
input[type="radio"] + label span {
  display: inline-block;
  width: 19px;
  height: 19px;
  margin: 0px 6px 4px 0;
  vertical-align: middle;
  cursor: pointer;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

/* line 164, ../sass/pages/_card_sort.scss */
input[type="radio"] + label span {
  background-color: #bcbec0;
}

/* line 168, ../sass/pages/_card_sort.scss */
input[type="radio"]:checked + label span {
  background-color: #159ca6;
}

/* line 172, ../sass/pages/_card_sort.scss */
input[type="radio"] + label span,
input[type="radio"]:checked + label span {
  -webkit-transition: background-color 0.4s linear;
  -o-transition: background-color 0.4s linear;
  -moz-transition: background-color 0.4s linear;
  transition: background-color 0.4s linear;
}

@media screen and (min-width: 931px) and (max-width: 1110px) {
  /* line 13, ../sass/tablet/_large_tablet_general.scss */
  body div#content,
  body div#block-system-main-menu,
  body div#block-block-5,
  body div#block-block-6,
  body div#block-block-1,
  body.node-type-module div#content,
  body.node-type-module div#block-system-main-menu,
  body.node-type-module div#block-block-5,
  body.node-type-module div#block-block-6,
  body.node-type-module div#block-block-1,
  body.node-type-timeline div#content,
  body.node-type-timeline div#block-system-main-menu,
  body.node-type-timeline div#block-block-5,
  body.node-type-timeline div#block-block-6,
  body.node-type-timeline div#block-block-1,
  body.node-type-science-module-reading div#content,
  body.node-type-science-module-reading div#block-system-main-menu,
  body.node-type-science-module-reading div#block-block-5,
  body.node-type-science-module-reading div#block-block-6,
  body.node-type-science-module-reading div#block-block-1,
  body.node-type-science-module-section div#content,
  body.node-type-science-module-section div#block-system-main-menu,
  body.node-type-science-module-section div#block-block-5,
  body.node-type-science-module-section div#block-block-6,
  body.node-type-science-module-section div#block-block-1,
  body.node-type-science-article div#content,
  body.node-type-science-article div#block-system-main-menu,
  body.node-type-science-article div#block-block-5,
  body.node-type-science-article div#block-block-6,
  body.node-type-science-article div#block-block-1,
  body.node-type-main-page div#content,
  body.node-type-main-page div#block-system-main-menu,
  body.node-type-main-page div#block-block-5,
  body.node-type-main-page div#block-block-6,
  body.node-type-main-page div#block-block-1 {
    width: 95%;
  }
  /* line 25, ../sass/tablet/_large_tablet_general.scss */
  body div#block-block-6,
  body.node-type-module div#block-block-6,
  body.node-type-timeline div#block-block-6,
  body.node-type-science-module-reading div#block-block-6,
  body.node-type-science-module-section div#block-block-6,
  body.node-type-science-article div#block-block-6,
  body.node-type-main-page div#block-block-6 {
    height: 50px;
  }
  /* line 20, ../sass/tablet/_tablet.scss */
  body div#block-block-6 div,
  body.node-type-module div#block-block-6 div,
  body.node-type-timeline div#block-block-6 div,
  body.node-type-science-module-reading div#block-block-6 div,
  body.node-type-science-module-section div#block-block-6 div,
  body.node-type-science-article div#block-block-6 div,
  body.node-type-main-page div#block-block-6 div {
    height: 70px;
  }
  /* line 23, ../sass/tablet/_tablet.scss */
  body div#block-block-6 div#nsf_logo,
  body.node-type-module div#block-block-6 div#nsf_logo,
  body.node-type-timeline div#block-block-6 div#nsf_logo,
  body.node-type-science-module-reading div#block-block-6 div#nsf_logo,
  body.node-type-science-module-section div#block-block-6 div#nsf_logo,
  body.node-type-science-article div#block-block-6 div#nsf_logo,
  body.node-type-main-page div#block-block-6 div#nsf_logo {
    background-size: 264.35px 48.45px;
    background-position: 0px 10px;
  }
  /* line 27, ../sass/tablet/_tablet.scss */
  body div#block-block-6 div#edc_logo,
  body.node-type-module div#block-block-6 div#edc_logo,
  body.node-type-timeline div#block-block-6 div#edc_logo,
  body.node-type-science-module-reading div#block-block-6 div#edc_logo,
  body.node-type-science-module-section div#block-block-6 div#edc_logo,
  body.node-type-science-article div#block-block-6 div#edc_logo,
  body.node-type-main-page div#block-block-6 div#edc_logo {
    background-position: center 6px;
    background-size: 101px 50px;
  }
  /* line 31, ../sass/tablet/_tablet.scss */
  body div#block-block-6 div#neidl_logo,
  body.node-type-module div#block-block-6 div#neidl_logo,
  body.node-type-timeline div#block-block-6 div#neidl_logo,
  body.node-type-science-module-reading div#block-block-6 div#neidl_logo,
  body.node-type-science-module-section div#block-block-6 div#neidl_logo,
  body.node-type-science-article div#block-block-6 div#neidl_logo,
  body.node-type-main-page div#block-block-6 div#neidl_logo {
    background-size: 297.5px 23.46px;
    background-position: 0px 25px;
  }
  /* line 30, ../sass/tablet/_large_tablet_general.scss */
  body div#block-block-1,
  body.node-type-module div#block-block-1,
  body.node-type-timeline div#block-block-1,
  body.node-type-science-module-reading div#block-block-1,
  body.node-type-science-module-section div#block-block-1,
  body.node-type-science-article div#block-block-1,
  body.node-type-main-page div#block-block-1 {
    font-size: 1.4em;
    top: 8px;
    position: relative;
  }
  /* line 35, ../sass/tablet/_large_tablet_general.scss */
  body div#nsf_logo,
  body div#edc_logo,
  body.node-type-module div#nsf_logo,
  body.node-type-module div#edc_logo,
  body.node-type-timeline div#nsf_logo,
  body.node-type-timeline div#edc_logo,
  body.node-type-science-module-reading div#nsf_logo,
  body.node-type-science-module-reading div#edc_logo,
  body.node-type-science-module-section div#nsf_logo,
  body.node-type-science-module-section div#edc_logo,
  body.node-type-science-article div#nsf_logo,
  body.node-type-science-article div#edc_logo,
  body.node-type-main-page div#nsf_logo,
  body.node-type-main-page div#edc_logo {
    margin-right: 1%;
  }
  /* line 39, ../sass/tablet/_large_tablet_general.scss */
  body div#nsf_logo,
  body div#neidl_logo,
  body div#edc_logo,
  body.node-type-module div#nsf_logo,
  body.node-type-module div#neidl_logo,
  body.node-type-module div#edc_logo,
  body.node-type-timeline div#nsf_logo,
  body.node-type-timeline div#neidl_logo,
  body.node-type-timeline div#edc_logo,
  body.node-type-science-module-reading div#nsf_logo,
  body.node-type-science-module-reading div#neidl_logo,
  body.node-type-science-module-reading div#edc_logo,
  body.node-type-science-module-section div#nsf_logo,
  body.node-type-science-module-section div#neidl_logo,
  body.node-type-science-module-section div#edc_logo,
  body.node-type-science-article div#nsf_logo,
  body.node-type-science-article div#neidl_logo,
  body.node-type-science-article div#edc_logo,
  body.node-type-main-page div#nsf_logo,
  body.node-type-main-page div#neidl_logo,
  body.node-type-main-page div#edc_logo {
    width: 32%;
  }
  /* line 46, ../sass/tablet/_large_tablet_general.scss */
  body div#neidl_logo,
  body.node-type-module div#neidl_logo,
  body.node-type-timeline div#neidl_logo,
  body.node-type-science-module-reading div#neidl_logo,
  body.node-type-science-module-section div#neidl_logo,
  body.node-type-science-article div#neidl_logo,
  body.node-type-main-page div#neidl_logo {
    margin-left: 0px;
  }
  /* line 49, ../sass/tablet/_large_tablet_general.scss */
  body footer#footer div#block-block-5,
  body.node-type-module footer#footer div#block-block-5,
  body.node-type-timeline footer#footer div#block-block-5,
  body.node-type-science-module-reading footer#footer div#block-block-5,
  body.node-type-science-module-section footer#footer div#block-block-5,
  body.node-type-science-article footer#footer div#block-block-5,
  body.node-type-main-page footer#footer div#block-block-5 {
    margin-left: 2.5%;
    display: block;
  }

  /* line 9, ../sass/tablet/_large_tablet_content_pages.scss */
  body.node-type-module div#teacher-student-toggle,
  body.node-type-module div#block-system-main-menu,
  body.node-type-timeline div#teacher-student-toggle,
  body.node-type-timeline div#block-system-main-menu,
  body.node-type-science-module-reading div#teacher-student-toggle,
  body.node-type-science-module-reading div#block-system-main-menu,
  body.node-type-science-module-section div#teacher-student-toggle,
  body.node-type-science-module-section div#block-system-main-menu {
    width: 95%;
  }
  /* line 13, ../sass/tablet/_large_tablet_content_pages.scss */
  body.node-type-module span.hide-tablet,
  body.node-type-timeline span.hide-tablet,
  body.node-type-science-module-reading span.hide-tablet,
  body.node-type-science-module-section span.hide-tablet {
    display: none;
  }
  /* line 17, ../sass/tablet/_large_tablet_content_pages.scss */
  body.node-type-module div#content article,
  body.node-type-timeline div#content article,
  body.node-type-science-module-reading div#content article,
  body.node-type-science-module-section div#content article {
    width: 100%;
  }
}
@media screen and (min-width: 931px) and (max-width: 1110px) and (max-width: 960px) {
  /* line 22, ../sass/tablet/_large_tablet_content_pages.scss */
  body.node-type-module div#content ul.eid-module-nav,
  body.node-type-timeline div#content ul.eid-module-nav,
  body.node-type-science-module-reading div#content ul.eid-module-nav,
  body.node-type-science-module-section div#content ul.eid-module-nav {
    width: 30%;
  }
  /* line 24, ../sass/tablet/_large_tablet_content_pages.scss */
  body.node-type-module div#content ul.eid-module-nav li,
  body.node-type-timeline div#content ul.eid-module-nav li,
  body.node-type-science-module-reading div#content ul.eid-module-nav li,
  body.node-type-science-module-section div#content ul.eid-module-nav li {
    width: 100%;
  }
  /* line 27, ../sass/tablet/_large_tablet_content_pages.scss */
  body.node-type-module div#content ul.eid-module-nav li a,
  body.node-type-timeline div#content ul.eid-module-nav li a,
  body.node-type-science-module-reading div#content ul.eid-module-nav li a,
  body.node-type-science-module-section div#content ul.eid-module-nav li a {
    width: 97%;
    font-size: 14px;
  }
  /* line 33, ../sass/tablet/_large_tablet_content_pages.scss */
  body.node-type-module div#content ul.eid-module-nav li:nth-child(n+2) a,
  body.node-type-timeline div#content ul.eid-module-nav li:nth-child(n+2) a,
  body.node-type-science-module-reading div#content ul.eid-module-nav li:nth-child(n+2) a,
  body.node-type-science-module-section div#content ul.eid-module-nav li:nth-child(n+2) a {
    width: 89%;
    padding-left: 20px;
  }
  /* line 37, ../sass/tablet/_large_tablet_content_pages.scss */
  body.node-type-module div#content ul.eid-module-nav li:first-child::after,
  body.node-type-timeline div#content ul.eid-module-nav li:first-child::after,
  body.node-type-science-module-reading div#content ul.eid-module-nav li:first-child::after,
  body.node-type-science-module-section div#content ul.eid-module-nav li:first-child::after {
    width: 89%;
    padding-right: 20px;
  }
}
@media screen and (min-width: 931px) and (max-width: 1110px) {
  /* line 45, ../sass/tablet/_large_tablet_content_pages.scss */
  body.node-type-module div#content div.field-type-text-long,
  body.node-type-module div#content div.field-type-text,
  body.node-type-module div#content div.field-name-field-teacher-intro,
  body.node-type-module div#content article > div.field-name-field-teacher-instructions,
  body.node-type-module div#content article > div.field-name-field-student-introduction,
  body.node-type-module div#content div.field-name-field-reading-header,
  body.node-type-module div#content div.field-name-field-teacher-text,
  body.node-type-timeline div#content div.field-type-text-long,
  body.node-type-timeline div#content div.field-type-text,
  body.node-type-timeline div#content div.field-name-field-teacher-intro,
  body.node-type-timeline div#content article > div.field-name-field-teacher-instructions,
  body.node-type-timeline div#content article > div.field-name-field-student-introduction,
  body.node-type-timeline div#content div.field-name-field-reading-header,
  body.node-type-timeline div#content div.field-name-field-teacher-text,
  body.node-type-science-module-reading div#content div.field-type-text-long,
  body.node-type-science-module-reading div#content div.field-type-text,
  body.node-type-science-module-reading div#content div.field-name-field-teacher-intro,
  body.node-type-science-module-reading div#content article > div.field-name-field-teacher-instructions,
  body.node-type-science-module-reading div#content article > div.field-name-field-student-introduction,
  body.node-type-science-module-reading div#content div.field-name-field-reading-header,
  body.node-type-science-module-reading div#content div.field-name-field-teacher-text,
  body.node-type-science-module-section div#content div.field-type-text-long,
  body.node-type-science-module-section div#content div.field-type-text,
  body.node-type-science-module-section div#content div.field-name-field-teacher-intro,
  body.node-type-science-module-section div#content article > div.field-name-field-teacher-instructions,
  body.node-type-science-module-section div#content article > div.field-name-field-student-introduction,
  body.node-type-science-module-section div#content div.field-name-field-reading-header,
  body.node-type-science-module-section div#content div.field-name-field-teacher-text {
    width: 64%;
    margin-left: 2%;
  }

  /* line 8, ../sass/tablet/_large_tablet_main_pages.scss */
  body.node-type-main-page div#block-block-2,
  body.node-type-main-page div#block-block-5,
  body.node-type-main-page div#block-block-6,
  body.node-type-main-page div#block-block-1,
  body.node-type-science-article div#block-block-2,
  body.node-type-science-article div#block-block-5,
  body.node-type-science-article div#block-block-6,
  body.node-type-science-article div#block-block-1 {
    width: 95%;
  }
  /* line 17, ../sass/tablet/_large_tablet_main_pages.scss */
  body.node-type-main-page div#block-block-2,
  body.node-type-science-article div#block-block-2 {
    font-size: 1.4em;
  }
  /* line 25, ../sass/tablet/_large_tablet_main_pages.scss */
  body.node-type-main-page div.views-field-title,
  body.node-type-science-article div.views-field-title {
    margin-right: -30px;
  }
  /* line 28, ../sass/tablet/_large_tablet_main_pages.scss */
  body.node-type-main-page div#block-block-3,
  body.node-type-main-page div#block-block-4,
  body.node-type-main-page div#block-views-module-list-block,
  body.node-type-science-article div#block-block-3,
  body.node-type-science-article div#block-block-4,
  body.node-type-science-article div#block-views-module-list-block {
    width: 31%;
  }
  /* line 33, ../sass/tablet/_large_tablet_main_pages.scss */
  body.node-type-main-page div#block-block-4,
  body.node-type-main-page div#block-views-module-list-block,
  body.node-type-science-article div#block-block-4,
  body.node-type-science-article div#block-views-module-list-block {
    margin-left: 2%;
  }
  /* line 37, ../sass/tablet/_large_tablet_main_pages.scss */
  body.node-type-main-page div#block-views-module-list-block,
  body.node-type-science-article div#block-views-module-list-block {
    margin-right: 0px;
  }
  /* line 41, ../sass/tablet/_large_tablet_main_pages.scss */
  body.node-type-main-page div#block-block-2,
  body.node-type-science-article div#block-block-2 {
    font-size: 1.35em;
  }
}
@media screen and (max-width: 1110px) {
  /* line 4, ../sass/tablet/_tablet_phone_readings.scss */
  body.node-type-science-module-reading div#content div.reading_widget {
    width: 100%;
  }
  /* line 6, ../sass/tablet/_tablet_phone_readings.scss */
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion {
    width: 100%;
  }
  /* line 14, ../sass/tablet/_tablet_phone_readings.scss */
  body.node-type-science-module-reading div#content div.image-right {
    float: none;
    margin: 0px auto 20px auto;
    display: block;
  }

  /* line 9, ../sass/tablet/_tablet_card_sort.scss */
  body.node-type-science-module-section ul.disease-items li {
    height: 80px;
    font-size: 13px;
    line-height: 15px;
    margin-right: 2%;
  }
  /* line 15, ../sass/tablet/_tablet_card_sort.scss */
  body.node-type-science-module-section div#two_columns div {
    width: 47%;
  }
  /* line 17, ../sass/tablet/_tablet_card_sort.scss */
  body.node-type-science-module-section div#two_columns div:not(:first-child) {
    margin-left: 3%;
  }
  /* line 21, ../sass/tablet/_tablet_card_sort.scss */
  body.node-type-science-module-section div#three_columns {
    display: none;
  }
  /* line 25, ../sass/tablet/_tablet_card_sort.scss */
  body.node-type-science-module-section div#three_columns div:not(:first-child) {
    margin-left: 2%;
  }
  /* line 29, ../sass/tablet/_tablet_card_sort.scss */
  body.node-type-science-module-section div#two_columns,
  body.node-type-science-module-section div#three_columns {
    margin-bottom: 0px;
    width: 100%;
  }
}
@media screen and (min-width: 957px) and (max-width: 1024px) {
  /* line 56, ../sass/tablet/_tablet.scss */
  body div#block-block-2,
  body.node-type-module div#block-block-2,
  body.node-type-timeline div#block-block-2,
  body.node-type-science-module-reading div#block-block-2,
  body.node-type-science-module-section div#block-block-2,
  body.node-type-main-page div#block-block-2 {
    font-size: 1.28em;
  }
  /* line 60, ../sass/tablet/_tablet.scss */
  body div#block-block-6,
  body.node-type-module div#block-block-6,
  body.node-type-timeline div#block-block-6,
  body.node-type-science-module-reading div#block-block-6,
  body.node-type-science-module-section div#block-block-6,
  body.node-type-main-page div#block-block-6 {
    height: 40px;
  }
  /* line 20, ../sass/tablet/_tablet.scss */
  body div#block-block-6 div,
  body.node-type-module div#block-block-6 div,
  body.node-type-timeline div#block-block-6 div,
  body.node-type-science-module-reading div#block-block-6 div,
  body.node-type-science-module-section div#block-block-6 div,
  body.node-type-main-page div#block-block-6 div {
    height: 60px;
  }
  /* line 23, ../sass/tablet/_tablet.scss */
  body div#block-block-6 div#nsf_logo,
  body.node-type-module div#block-block-6 div#nsf_logo,
  body.node-type-timeline div#block-block-6 div#nsf_logo,
  body.node-type-science-module-reading div#block-block-6 div#nsf_logo,
  body.node-type-science-module-section div#block-block-6 div#nsf_logo,
  body.node-type-main-page div#block-block-6 div#nsf_logo {
    background-size: 248.8px 45.6px;
    background-position: 0px 8px;
  }
  /* line 27, ../sass/tablet/_tablet.scss */
  body div#block-block-6 div#edc_logo,
  body.node-type-module div#block-block-6 div#edc_logo,
  body.node-type-timeline div#block-block-6 div#edc_logo,
  body.node-type-science-module-reading div#block-block-6 div#edc_logo,
  body.node-type-science-module-section div#block-block-6 div#edc_logo,
  body.node-type-main-page div#block-block-6 div#edc_logo {
    background-position: center 6px;
    background-size: 101px 50px;
  }
  /* line 31, ../sass/tablet/_tablet.scss */
  body div#block-block-6 div#neidl_logo,
  body.node-type-module div#block-block-6 div#neidl_logo,
  body.node-type-timeline div#block-block-6 div#neidl_logo,
  body.node-type-science-module-reading div#block-block-6 div#neidl_logo,
  body.node-type-science-module-section div#block-block-6 div#neidl_logo,
  body.node-type-main-page div#block-block-6 div#neidl_logo {
    background-size: 280px 22.08px;
    background-position: 0px 23px;
  }
}
/*
@media screen and (max-width:940px) {
  body.node-type-main-page {
  div#block-block-3,
  div#block-block-4,
  div#block-views-module-list-block {
    float: none;
    width: 100%;
    margin: 0px auto;
    
    h4 {
      margin-top: 0px;
    }
    h4 a {
      padding-top: 10px;
    //  border: 1px solid red;
      padding-bottom: 5px;
     // padding-bottom: 0px;
    }

  }
  // quote
  div#block-block-2 {
    font-size: 1.1em;
  }
  div#block-block-1 {
  font-size: 1.3em;
   top: 12px;
  }
  div#block-block-6 {
    height: 30px;
    @include scale_logo(0.75, 50px, 4px);
  }
 }
 // site title

}
@media screen and (max-width:850px) {
  body.node-type-main-page {
    div#block-block-1 {
     font-size: 1.2em;
     top: 17px;
    }
     // quote
  div#block-block-2 {
    font-size: 1em;
  }
    div#block-block-6 {
    height: 10px;
    @include scale_logo(0.70, 45px, 2px);
  }
 }
 // site title

}
@media screen and (max-width:810px) {
  body.node-type-main-page {
    div#block-block-1 {
     font-size: 1.1em;
     top: 20px;
    }
  
  div#block-block-6 {
   height: 0px;
    @include scale_logo(0.65, 42px, 0px);
  }
 }
}
*/
@media screen and (max-width: 930px) {
  /* line 3, ../sass/phone/_phone_extensible.scss */
  .reset, body header#header,
  body div#page,
  body div#main,
  body div#content,
  body div#block-views-module-list-block,
  body div#block-system-main-menu,
  body footer#footer,
  body.node-type-module header#header,
  body.node-type-module div#page,
  body.node-type-module div#main,
  body.node-type-module div#content,
  body.node-type-module div#block-views-module-list-block,
  body.node-type-module div#block-system-main-menu,
  body.node-type-module footer#footer,
  body.node-type-science-article header#header,
  body.node-type-science-article div#page,
  body.node-type-science-article div#main,
  body.node-type-science-article div#content,
  body.node-type-science-article div#block-views-module-list-block,
  body.node-type-science-article div#block-system-main-menu,
  body.node-type-science-article footer#footer,
  body.node-type-main-page header#header,
  body.node-type-main-page div#page,
  body.node-type-main-page div#main,
  body.node-type-main-page div#content,
  body.node-type-main-page div#block-views-module-list-block,
  body.node-type-main-page div#block-system-main-menu,
  body.node-type-main-page footer#footer,
  body.node-type-science-module-reading header#header,
  body.node-type-science-module-reading div#page,
  body.node-type-science-module-reading div#main,
  body.node-type-science-module-reading div#content,
  body.node-type-science-module-reading div#block-views-module-list-block,
  body.node-type-science-module-reading div#block-system-main-menu,
  body.node-type-science-module-reading footer#footer,
  body.node-type-science-module-section header#header,
  body.node-type-science-module-section div#page,
  body.node-type-science-module-section div#main,
  body.node-type-science-module-section div#content,
  body.node-type-science-module-section div#block-views-module-list-block,
  body.node-type-science-module-section div#block-system-main-menu,
  body.node-type-science-module-section footer#footer,
  body.node-type-timeline header#header,
  body.node-type-timeline div#page,
  body.node-type-timeline div#main,
  body.node-type-timeline div#content,
  body.node-type-timeline div#block-views-module-list-block,
  body.node-type-timeline div#block-system-main-menu,
  body.node-type-timeline footer#footer, body.node-type-main-page div#block-block-2,
  body.node-type-main-page div#block-block-3,
  body.node-type-main-page div#block-block-4,
  body.node-type-main-page div#block-block-6,
  body.node-type-main-page div#block-block-8,
  body.node-type-main-page div#block-block-9,
  body.node-type-science-article div#block-block-2,
  body.node-type-science-article div#block-block-3,
  body.node-type-science-article div#block-block-4,
  body.node-type-science-article div#block-block-6,
  body.node-type-science-article div#block-block-8,
  body.node-type-science-article div#block-block-9,
  body.node-type-module div#teacher-student-toggle,
  body.node-type-module article,
  body.node-type-module ul.eid-module-nav,
  body.node-type-module div.field-name-field-teacher-intro,
  body.node-type-module div.field-name-field-student-intro,
  body.node-type-module div.field-name-field-reading-header,
  body.node-type-module div.field-name-field-visible-title,
  body.node-type-module div.field-name-field-teacher-instructions,
  body.node-type-module div.field-name-field-header-text,
  body.section-content div#content,
  body.section-content div#teacher-student-toggle,
  body.section-content article,
  body.section-content ul.eid-module-nav,
  body.section-content div.field-name-field-teacher-intro,
  body.section-content div.field-name-field-student-intro,
  body.section-content div.field-name-field-reading-header,
  body.section-content div.field-name-field-visible-title,
  body.section-content div.field-name-field-teacher-instructions,
  body.section-content div.field-name-field-header-text,
  body.node-type-science-module-reading.section-content div#content,
  body.node-type-science-module-reading.section-content div#teacher-student-toggle,
  body.node-type-science-module-reading.section-content article,
  body.node-type-science-module-reading.section-content ul.eid-module-nav,
  body.node-type-science-module-reading.section-content div.field-name-field-teacher-intro,
  body.node-type-science-module-reading.section-content div.field-name-field-student-intro,
  body.node-type-science-module-reading.section-content div.field-name-field-reading-header,
  body.node-type-science-module-reading.section-content div.field-name-field-visible-title,
  body.node-type-science-module-reading.section-content div.field-name-field-teacher-instructions,
  body.node-type-science-module-reading.section-content div.field-name-field-header-text,
  body.node-type-science-module-section div#teacher-student-toggle,
  body.node-type-science-module-section article,
  body.node-type-science-module-section ul.eid-module-nav,
  body.node-type-science-module-section div.field-name-field-teacher-intro,
  body.node-type-science-module-section div.field-name-field-student-intro,
  body.node-type-science-module-section div.field-name-field-reading-header,
  body.node-type-science-module-section div.field-name-field-visible-title,
  body.node-type-science-module-section div.field-name-field-teacher-instructions,
  body.node-type-science-module-section div.field-name-field-header-text {
    height: auto;
    position: relative;
    top: 0px;
    left: 0px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    float: none;
  }

  /* line 13, ../sass/phone/_phone_extensible.scss */
  .reset-header, body div#block-block-1,
  body.node-type-module div#block-block-1,
  body.node-type-science-article div#block-block-1,
  body.node-type-main-page div#block-block-1,
  body.node-type-science-module-reading div#block-block-1,
  body.node-type-science-module-section div#block-block-1,
  body.node-type-timeline div#block-block-1 {
    height: auto;
    position: relative;
    top: 0px;
    left: 0px;
    padding: 0px;
    float: none;
  }

  /* line 7, ../sass/phone/_phone_general.scss */
  body,
  body.node-type-module,
  body.node-type-science-article,
  body.node-type-main-page,
  body.node-type-science-module-reading,
  body.node-type-science-module-section,
  body.node-type-timeline {
    width: 100%;
    min-width: 320px;
  }
  /* line 20, ../sass/phone/_phone_general.scss */
  body div.download_container,
  body.node-type-module div.download_container,
  body.node-type-science-article div.download_container,
  body.node-type-main-page div.download_container,
  body.node-type-science-module-reading div.download_container,
  body.node-type-science-module-section div.download_container,
  body.node-type-timeline div.download_container {
    margin-top: 20px;
  }
  /* line 24, ../sass/phone/_phone_general.scss */
  body div#block-block-6,
  body.node-type-module div#block-block-6,
  body.node-type-science-article div#block-block-6,
  body.node-type-main-page div#block-block-6,
  body.node-type-science-module-reading div#block-block-6,
  body.node-type-science-module-section div#block-block-6,
  body.node-type-timeline div#block-block-6 {
    display: none;
  }
  /* line 28, ../sass/phone/_phone_general.scss */
  body div#block-block-5,
  body.node-type-module div#block-block-5,
  body.node-type-science-article div#block-block-5,
  body.node-type-main-page div#block-block-5,
  body.node-type-science-module-reading div#block-block-5,
  body.node-type-science-module-section div#block-block-5,
  body.node-type-timeline div#block-block-5 {
    margin: 0px;
    padding: 10px;
  }
  /* line 33, ../sass/phone/_phone_general.scss */
  body div#block-block-1,
  body.node-type-module div#block-block-1,
  body.node-type-science-article div#block-block-1,
  body.node-type-main-page div#block-block-1,
  body.node-type-science-module-reading div#block-block-1,
  body.node-type-science-module-section div#block-block-1,
  body.node-type-timeline div#block-block-1 {
    margin: 10px auto 0px auto;
    width: 90%;
    margin-bottom: 0px;
    top: 0px;
  }
  /* line 40, ../sass/phone/_phone_general.scss */
  body div#block-block-1 h1,
  body.node-type-module div#block-block-1 h1,
  body.node-type-science-article div#block-block-1 h1,
  body.node-type-main-page div#block-block-1 h1,
  body.node-type-science-module-reading div#block-block-1 h1,
  body.node-type-science-module-section div#block-block-1 h1,
  body.node-type-timeline div#block-block-1 h1 {
    margin-left: 0px;
    position: relative;
    display: inline-block;
    font-size: 38px;
    line-height: 48px;
    height: auto;
    display: block;
  }
}
@media screen and (max-width: 930px) and (max-width: 375px) {
  /* line 40, ../sass/phone/_phone_general.scss */
  body div#block-block-1 h1,
  body.node-type-module div#block-block-1 h1,
  body.node-type-science-article div#block-block-1 h1,
  body.node-type-main-page div#block-block-1 h1,
  body.node-type-science-module-reading div#block-block-1 h1,
  body.node-type-science-module-section div#block-block-1 h1,
  body.node-type-timeline div#block-block-1 h1 {
    font-size: 33px;
    line-height: 40px;
  }
}
@media screen and (max-width: 930px) {
  /* line 56, ../sass/phone/_phone_general.scss */
  body div#admin-menu-wrapper,
  body.node-type-module div#admin-menu-wrapper,
  body.node-type-science-article div#admin-menu-wrapper,
  body.node-type-main-page div#admin-menu-wrapper,
  body.node-type-science-module-reading div#admin-menu-wrapper,
  body.node-type-science-module-section div#admin-menu-wrapper,
  body.node-type-timeline div#admin-menu-wrapper {
    width: 100%;
  }
  /* line 59, ../sass/phone/_phone_general.scss */
  body .block,
  body.node-type-module .block,
  body.node-type-science-article .block,
  body.node-type-main-page .block,
  body.node-type-science-module-reading .block,
  body.node-type-science-module-section .block,
  body.node-type-timeline .block {
    margin: 0px;
  }
  /* line 75, ../sass/phone/_phone_general.scss */
  body header#header p.table_note,
  body div#page p.table_note,
  body div#main p.table_note,
  body div#content p.table_note,
  body div#block-views-module-list-block p.table_note,
  body div#block-system-main-menu p.table_note,
  body footer#footer p.table_note,
  body.node-type-module header#header p.table_note,
  body.node-type-module div#page p.table_note,
  body.node-type-module div#main p.table_note,
  body.node-type-module div#content p.table_note,
  body.node-type-module div#block-views-module-list-block p.table_note,
  body.node-type-module div#block-system-main-menu p.table_note,
  body.node-type-module footer#footer p.table_note,
  body.node-type-science-article header#header p.table_note,
  body.node-type-science-article div#page p.table_note,
  body.node-type-science-article div#main p.table_note,
  body.node-type-science-article div#content p.table_note,
  body.node-type-science-article div#block-views-module-list-block p.table_note,
  body.node-type-science-article div#block-system-main-menu p.table_note,
  body.node-type-science-article footer#footer p.table_note,
  body.node-type-main-page header#header p.table_note,
  body.node-type-main-page div#page p.table_note,
  body.node-type-main-page div#main p.table_note,
  body.node-type-main-page div#content p.table_note,
  body.node-type-main-page div#block-views-module-list-block p.table_note,
  body.node-type-main-page div#block-system-main-menu p.table_note,
  body.node-type-main-page footer#footer p.table_note,
  body.node-type-science-module-reading header#header p.table_note,
  body.node-type-science-module-reading div#page p.table_note,
  body.node-type-science-module-reading div#main p.table_note,
  body.node-type-science-module-reading div#content p.table_note,
  body.node-type-science-module-reading div#block-views-module-list-block p.table_note,
  body.node-type-science-module-reading div#block-system-main-menu p.table_note,
  body.node-type-science-module-reading footer#footer p.table_note,
  body.node-type-science-module-section header#header p.table_note,
  body.node-type-science-module-section div#page p.table_note,
  body.node-type-science-module-section div#main p.table_note,
  body.node-type-science-module-section div#content p.table_note,
  body.node-type-science-module-section div#block-views-module-list-block p.table_note,
  body.node-type-science-module-section div#block-system-main-menu p.table_note,
  body.node-type-science-module-section footer#footer p.table_note,
  body.node-type-timeline header#header p.table_note,
  body.node-type-timeline div#page p.table_note,
  body.node-type-timeline div#main p.table_note,
  body.node-type-timeline div#content p.table_note,
  body.node-type-timeline div#block-views-module-list-block p.table_note,
  body.node-type-timeline div#block-system-main-menu p.table_note,
  body.node-type-timeline footer#footer p.table_note {
    width: 100%;
  }
  /* line 80, ../sass/phone/_phone_general.scss */
  body div#main,
  body.node-type-module div#main,
  body.node-type-science-article div#main,
  body.node-type-main-page div#main,
  body.node-type-science-module-reading div#main,
  body.node-type-science-module-section div#main,
  body.node-type-timeline div#main {
    border-top: 0px;
  }
  /* line 84, ../sass/phone/_phone_general.scss */
  body div#page:before,
  body.node-type-module div#page:before,
  body.node-type-science-article div#page:before,
  body.node-type-main-page div#page:before,
  body.node-type-science-module-reading div#page:before,
  body.node-type-science-module-section div#page:before,
  body.node-type-timeline div#page:before {
    height: 8px;
  }
  /* line 87, ../sass/phone/_phone_general.scss */
  body footer#footer,
  body.node-type-module footer#footer,
  body.node-type-science-article footer#footer,
  body.node-type-main-page footer#footer,
  body.node-type-science-module-reading footer#footer,
  body.node-type-science-module-section footer#footer,
  body.node-type-timeline footer#footer {
    padding: 10px 0px;
  }
  /* line 92, ../sass/phone/_phone_general.scss */
  body header#header,
  body div#page,
  body div#page:before,
  body div#main,
  body.node-type-module header#header,
  body.node-type-module div#page,
  body.node-type-module div#page:before,
  body.node-type-module div#main,
  body.node-type-science-article header#header,
  body.node-type-science-article div#page,
  body.node-type-science-article div#page:before,
  body.node-type-science-article div#main,
  body.node-type-main-page header#header,
  body.node-type-main-page div#page,
  body.node-type-main-page div#page:before,
  body.node-type-main-page div#main,
  body.node-type-science-module-reading header#header,
  body.node-type-science-module-reading div#page,
  body.node-type-science-module-reading div#page:before,
  body.node-type-science-module-reading div#main,
  body.node-type-science-module-section header#header,
  body.node-type-science-module-section div#page,
  body.node-type-science-module-section div#page:before,
  body.node-type-science-module-section div#main,
  body.node-type-timeline header#header,
  body.node-type-timeline div#page,
  body.node-type-timeline div#page:before,
  body.node-type-timeline div#main {
    width: 100%;
  }
  /* line 98, ../sass/phone/_phone_general.scss */
  body div#content,
  body.node-type-module div#content,
  body.node-type-science-article div#content,
  body.node-type-main-page div#content,
  body.node-type-science-module-reading div#content,
  body.node-type-science-module-section div#content,
  body.node-type-timeline div#content {
    width: 95%;
  }
  /* line 101, ../sass/phone/_phone_general.scss */
  body div#back_to_top,
  body.node-type-module div#back_to_top,
  body.node-type-science-article div#back_to_top,
  body.node-type-main-page div#back_to_top,
  body.node-type-science-module-reading div#back_to_top,
  body.node-type-science-module-section div#back_to_top,
  body.node-type-timeline div#back_to_top {
    display: block;
    width: 30px;
    text-align: left;
    color: #eeeef0;
    font-size: 10px;
    line-height: 12px;
    border-radius: 5px 0px 0px 5px;
    background-color: #595a5c;
    padding: 9px 6px 9px 44px;
    height: 24px;
    background-image: url("../images/mobile/back-to-top-arrow.png");
    background-position: 6px 6px;
    background-repeat: no-repeat;
    right: 0px;
    position: fixed;
    bottom: 70px;
    z-index: 10;
    opacity: 0;
    transition: 0.5s ease;
  }
  /* line 122, ../sass/phone/_phone_general.scss */
  body div#back_to_top.visible,
  body.node-type-module div#back_to_top.visible,
  body.node-type-science-article div#back_to_top.visible,
  body.node-type-main-page div#back_to_top.visible,
  body.node-type-science-module-reading div#back_to_top.visible,
  body.node-type-science-module-section div#back_to_top.visible,
  body.node-type-timeline div#back_to_top.visible {
    cursor: pointer;
    opacity: 1;
    transition: 0.5s ease;
  }

  /* line 9, ../sass/phone/_phone_footer.scss */
  body.page-node footer#footer {
    height: 140px;
    padding-bottom: 0px;
    width: 100%;
  }
  /* line 14, ../sass/phone/_phone_footer.scss */
  body.page-node footer#footer div#block-block-5 {
    width: 92%;
    margin: 0px auto;
    left: 0px;
    font-size: 14px;
    line-height: 18px;
  }
  /* line 22, ../sass/phone/_phone_footer.scss */
  body.page-node div#mobile-branding {
    height: 70px;
    background: url("../images/mobile/nsf-logo-mobile.png") center 0px no-repeat;
  }
  /* line 26, ../sass/phone/_phone_footer.scss */
  body.page-node div#mobile-nsf-logo {
    margin: 0px auto;
    width: 100%;
    height: 60px;
  }
  /* line 31, ../sass/phone/_phone_footer.scss */
  body.page-node div#mobile-neidl-logo {
    background: url("../images/mobile/neidl-logo-mobile.png") -4px 14px no-repeat;
    float: left;
    width: 100px;
    height: 60px;
  }
  /* line 37, ../sass/phone/_phone_footer.scss */
  body.page-node div#mobile-edc-logo {
    background: url("../images/logos/edc-logo-white.svg") 0 14px no-repeat;
    float: right;
    width: 100px;
    height: 60px;
    background-size: 101px 50px;
  }
}
@media screen and (max-width: 930px) and (min-width: 768px) {
  /* line 11, ../sass/phone/_phone_main_pages.scss */
  body.node-type-main-page div#block-block-7 {
    margin-top: -17px;
  }
}
@media screen and (max-width: 930px) and (max-width: 767px) {
  /* line 18, ../sass/phone/_phone_main_pages.scss */
  body.node-type-main-page div#timeline_banner {
    display: none;
  }
}
@media screen and (max-width: 930px) {
  /* line 24, ../sass/phone/_phone_main_pages.scss */
  body.node-type-main-page div#block-block-4 h4 a {
    min-height: 40px;
  }
}
@media screen and (max-width: 930px) and (min-width: 600px) and (max-width: 960px) {
  /* line 29, ../sass/phone/_phone_main_pages.scss */
  body.node-type-main-page div#block-block-4 h4 a {
    line-height: 40px;
  }
}
@media screen and (max-width: 930px) and (max-width: 320px) {
  /* line 35, ../sass/phone/_phone_main_pages.scss */
  body.node-type-main-page div.views-field-title {
    font-size: 15px;
  }
}
@media screen and (max-width: 930px) {
  /* line 40, ../sass/phone/_phone_main_pages.scss */
  body.node-type-main-page div#block-block-2 {
    font-size: 18px;
  }
  /* line 42, ../sass/phone/_phone_main_pages.scss */
  body.node-type-main-page div#block-block-2 p {
    width: 100%;
  }
  /* line 46, ../sass/phone/_phone_main_pages.scss */
  body.node-type-main-page div#block-block-3 {
    width: 100%;
  }

  /* line 10, ../sass/phone/_phone_home_about.scss */
  body.node-type-main-page div#content,
  body.node-type-science-article div#content {
    width: 100%;
  }
  /* line 24, ../sass/phone/_phone_home_about.scss */
  body.node-type-main-page div#block-block-2,
  body.node-type-main-page div#block-block-3,
  body.node-type-main-page div#block-block-4,
  body.node-type-main-page div#block-block-6,
  body.node-type-main-page div#block-block-8,
  body.node-type-main-page div#block-block-9,
  body.node-type-main-page div#block-views-module-list-block,
  body.node-type-science-article div#block-block-2,
  body.node-type-science-article div#block-block-3,
  body.node-type-science-article div#block-block-4,
  body.node-type-science-article div#block-block-6,
  body.node-type-science-article div#block-block-8,
  body.node-type-science-article div#block-block-9,
  body.node-type-science-article div#block-views-module-list-block {
    width: 90%;
    margin-bottom: 20px;
  }
  /* line 39, ../sass/phone/_phone_home_about.scss */
  body.node-type-main-page div#block-block-4 h4 a,
  body.node-type-science-article div#block-block-4 h4 a {
    min-height: 40px;
  }
  /* line 43, ../sass/phone/_phone_home_about.scss */
  body.node-type-main-page div#block-block-1,
  body.node-type-science-article div#block-block-1 {
    margin-top: 10px;
  }

  /* line 10, ../sass/phone/_phone_module_list.scss */
  body.node-type-main-page.page-node-4 div#assessment_blurb {
    width: 90%;
    margin: 0px auto;
  }
  /* line 14, ../sass/phone/_phone_module_list.scss */
  body.node-type-main-page.page-node-4 div.views-field-field-module-list-image {
    display: none;
  }
  /* line 18, ../sass/phone/_phone_module_list.scss */
  body.node-type-main-page.page-node-4 div#content div.view-content > div {
    width: 100%;
  }
  /* line 21, ../sass/phone/_phone_module_list.scss */
  body.node-type-main-page.page-node-4 div#content h2.block-title {
    width: 90%;
    margin: 0px auto;
  }
  /* line 26, ../sass/phone/_phone_module_list.scss */
  body.node-type-main-page.page-node-4 div#content div.view-content div {
    margin: 0px auto 10px auto;
  }
  /* line 31, ../sass/phone/_phone_module_list.scss */
  body.node-type-main-page.page-node-4 div#content div.view-content div.views-row {
    padding: 0px;
    height: auto;
    min-height: 0px;
    margin: 0px auto;
    margin-left: 5%;
    width: 90%;
  }
  /* line 39, ../sass/phone/_phone_module_list.scss */
  body.node-type-main-page.page-node-4 div#content div.view-content div.views-row p {
    margin: 0px;
  }
  /* line 45, ../sass/phone/_phone_module_list.scss */
  body.node-type-main-page.page-node-4 div#content div.view-content div.views-field-field-module-number {
    width: 50px;
    margin-right: 4px;
  }
  /* line 50, ../sass/phone/_phone_module_list.scss */
  body.node-type-main-page.page-node-4 div#content div.view-content div.views-field-title {
    width: 70%;
    clear: none;
    margin-top: 8px;
  }
  /* line 57, ../sass/phone/_phone_module_list.scss */
  body.node-type-main-page.page-node-4 div#content div.view-content div.views-field.views-field-field-tagline {
    clear: both;
  }

  /* line 3, ../sass/phone/_phone_extensible.scss */
  .reset, body header#header,
  body div#page,
  body div#main,
  body div#content,
  body div#block-views-module-list-block,
  body div#block-system-main-menu,
  body footer#footer,
  body.node-type-module header#header,
  body.node-type-module div#page,
  body.node-type-module div#main,
  body.node-type-module div#content,
  body.node-type-module div#block-views-module-list-block,
  body.node-type-module div#block-system-main-menu,
  body.node-type-module footer#footer,
  body.node-type-science-article header#header,
  body.node-type-science-article div#page,
  body.node-type-science-article div#main,
  body.node-type-science-article div#content,
  body.node-type-science-article div#block-views-module-list-block,
  body.node-type-science-article div#block-system-main-menu,
  body.node-type-science-article footer#footer,
  body.node-type-main-page header#header,
  body.node-type-main-page div#page,
  body.node-type-main-page div#main,
  body.node-type-main-page div#content,
  body.node-type-main-page div#block-views-module-list-block,
  body.node-type-main-page div#block-system-main-menu,
  body.node-type-main-page footer#footer,
  body.node-type-science-module-reading header#header,
  body.node-type-science-module-reading div#page,
  body.node-type-science-module-reading div#main,
  body.node-type-science-module-reading div#content,
  body.node-type-science-module-reading div#block-views-module-list-block,
  body.node-type-science-module-reading div#block-system-main-menu,
  body.node-type-science-module-reading footer#footer,
  body.node-type-science-module-section header#header,
  body.node-type-science-module-section div#page,
  body.node-type-science-module-section div#main,
  body.node-type-science-module-section div#content,
  body.node-type-science-module-section div#block-views-module-list-block,
  body.node-type-science-module-section div#block-system-main-menu,
  body.node-type-science-module-section footer#footer,
  body.node-type-timeline header#header,
  body.node-type-timeline div#page,
  body.node-type-timeline div#main,
  body.node-type-timeline div#content,
  body.node-type-timeline div#block-views-module-list-block,
  body.node-type-timeline div#block-system-main-menu,
  body.node-type-timeline footer#footer, body.node-type-main-page div#block-block-2,
  body.node-type-main-page div#block-block-3,
  body.node-type-main-page div#block-block-4,
  body.node-type-main-page div#block-block-6,
  body.node-type-main-page div#block-block-8,
  body.node-type-main-page div#block-block-9,
  body.node-type-science-article div#block-block-2,
  body.node-type-science-article div#block-block-3,
  body.node-type-science-article div#block-block-4,
  body.node-type-science-article div#block-block-6,
  body.node-type-science-article div#block-block-8,
  body.node-type-science-article div#block-block-9,
  body.node-type-module div#teacher-student-toggle,
  body.node-type-module article,
  body.node-type-module ul.eid-module-nav,
  body.node-type-module div.field-name-field-teacher-intro,
  body.node-type-module div.field-name-field-student-intro,
  body.node-type-module div.field-name-field-reading-header,
  body.node-type-module div.field-name-field-visible-title,
  body.node-type-module div.field-name-field-teacher-instructions,
  body.node-type-module div.field-name-field-header-text,
  body.section-content div#content,
  body.section-content div#teacher-student-toggle,
  body.section-content article,
  body.section-content ul.eid-module-nav,
  body.section-content div.field-name-field-teacher-intro,
  body.section-content div.field-name-field-student-intro,
  body.section-content div.field-name-field-reading-header,
  body.section-content div.field-name-field-visible-title,
  body.section-content div.field-name-field-teacher-instructions,
  body.section-content div.field-name-field-header-text,
  body.node-type-science-module-reading.section-content div#content,
  body.node-type-science-module-reading.section-content div#teacher-student-toggle,
  body.node-type-science-module-reading.section-content article,
  body.node-type-science-module-reading.section-content ul.eid-module-nav,
  body.node-type-science-module-reading.section-content div.field-name-field-teacher-intro,
  body.node-type-science-module-reading.section-content div.field-name-field-student-intro,
  body.node-type-science-module-reading.section-content div.field-name-field-reading-header,
  body.node-type-science-module-reading.section-content div.field-name-field-visible-title,
  body.node-type-science-module-reading.section-content div.field-name-field-teacher-instructions,
  body.node-type-science-module-reading.section-content div.field-name-field-header-text,
  body.node-type-science-module-section div#teacher-student-toggle,
  body.node-type-science-module-section article,
  body.node-type-science-module-section ul.eid-module-nav,
  body.node-type-science-module-section div.field-name-field-teacher-intro,
  body.node-type-science-module-section div.field-name-field-student-intro,
  body.node-type-science-module-section div.field-name-field-reading-header,
  body.node-type-science-module-section div.field-name-field-visible-title,
  body.node-type-science-module-section div.field-name-field-teacher-instructions,
  body.node-type-science-module-section div.field-name-field-header-text {
    height: auto;
    position: relative;
    top: 0px;
    left: 0px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    float: none;
  }

  /* line 13, ../sass/phone/_phone_extensible.scss */
  .reset-header, body div#block-block-1,
  body.node-type-module div#block-block-1,
  body.node-type-science-article div#block-block-1,
  body.node-type-main-page div#block-block-1,
  body.node-type-science-module-reading div#block-block-1,
  body.node-type-science-module-section div#block-block-1,
  body.node-type-timeline div#block-block-1 {
    height: auto;
    position: relative;
    top: 0px;
    left: 0px;
    padding: 0px;
    float: none;
  }

  /* line 31, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module div#content div.field-name-field-section-title p,
  body.node-type-module div#content div.field-name-field-visible-title p,
  body.section-content div#content div.field-name-field-section-title p,
  body.section-content div#content div.field-name-field-visible-title p,
  body.node-type-science-module-reading.section-content div#content div.field-name-field-section-title p,
  body.node-type-science-module-reading.section-content div#content div.field-name-field-visible-title p,
  body.node-type-science-module-section div#content div.field-name-field-section-title p,
  body.node-type-science-module-section div#content div.field-name-field-visible-title p {
    font-size: 27px;
  }
  /* line 40, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) img,
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) div.credit,
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) p.credit,
  body.node-type-module body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.credit,
  body.node-type-science-module-reading.section-content body.node-type-module div#content div.field-type-text-long:nth-child(n+5) p.credit,
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) p.caption,
  body.node-type-module body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
  body.node-type-science-module-reading.section-content body.node-type-module div#content div.field-type-text-long:nth-child(n+5) p.caption,
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) div.caption,
  body.section-content div#content div.field-type-text-long:nth-child(n+5) img,
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.credit,
  body.section-content div#content div.field-type-text-long:nth-child(n+5) p.credit,
  body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.credit,
  body.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
  body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.caption,
  body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) img,
  body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) div.credit,
  body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.credit,
  body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
  body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) div.caption,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) img,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.credit,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) p.credit,
  body.node-type-science-module-section body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.credit,
  body.node-type-science-module-reading.section-content body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) p.credit,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) p.caption,
  body.node-type-science-module-section body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) p.caption,
  body.node-type-science-module-reading.section-content body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) p.caption,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.caption {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    float: none;
  }
  /* line 52, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) ol,
  body.section-content div#content div.field-type-text-long:nth-child(n+5) ol,
  body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) ol,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) ol {
    padding-left: 25px;
  }
  /* line 55, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) a.back_to_tabs,
  body.section-content div#content div.field-type-text-long:nth-child(n+5) a.back_to_tabs,
  body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) a.back_to_tabs,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) a.back_to_tabs {
    margin-top: 16px;
    display: block;
  }
  /* line 59, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) div.launch_timeline,
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.launch_timeline,
  body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) div.launch_timeline,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.launch_timeline {
    margin-bottom: 40px;
  }
  /* line 63, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) span.hide-phone,
  body.section-content div#content div.field-type-text-long:nth-child(n+5) span.hide-phone,
  body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) span.hide-phone,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) span.hide-phone {
    display: none;
    color: red;
  }
  /* line 69, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) div.field-name-field-header-text p,
  body.section-content div#content div.field-type-text-long:nth-child(n+5) div.field-name-field-header-text p,
  body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) div.field-name-field-header-text p,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.field-name-field-header-text p {
    width: 85%;
  }
  /* line 73, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) h3.activity_instructions.long_title,
  body.section-content div#content div.field-type-text-long:nth-child(n+5) h3.activity_instructions.long_title,
  body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) h3.activity_instructions.long_title,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) h3.activity_instructions.long_title {
    margin-bottom: 30px;
    min-height: 50px;
  }
}
@media screen and (max-width: 930px) and (min-width: 741px) and (max-width: 768px) {
  /* line 77, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) h3.activity_instructions.long_title.ipad_port_long,
  body.section-content div#content div.field-type-text-long:nth-child(n+5) h3.activity_instructions.long_title.ipad_port_long,
  body.node-type-science-module-reading.section-content div#content div.field-type-text-long:nth-child(n+5) h3.activity_instructions.long_title.ipad_port_long,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) h3.activity_instructions.long_title.ipad_port_long {
    padding-top: 25px;
  }
}
@media screen and (max-width: 930px) and (max-width: 530px) {
  /* line 91, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module .jqtabs ul.ui-tabs-nav > li,
  body.node-type-module .jqtabs ul.ui-tabs-nav > li.ui-tabs-active,
  body.section-content .jqtabs ul.ui-tabs-nav > li,
  body.section-content .jqtabs ul.ui-tabs-nav > li.ui-tabs-active,
  body.node-type-science-module-reading.section-content .jqtabs ul.ui-tabs-nav > li,
  body.node-type-science-module-reading.section-content .jqtabs ul.ui-tabs-nav > li.ui-tabs-active,
  body.node-type-science-module-section .jqtabs ul.ui-tabs-nav > li,
  body.node-type-science-module-section .jqtabs ul.ui-tabs-nav > li.ui-tabs-active {
    padding-left: 0px;
  }
  /* line 95, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module .jqtabs ul.ui-tabs-nav > li a,
  body.node-type-module .jqtabs ul.ui-tabs-nav > li.ui-tabs-active a,
  body.section-content .jqtabs ul.ui-tabs-nav > li a,
  body.section-content .jqtabs ul.ui-tabs-nav > li.ui-tabs-active a,
  body.node-type-science-module-reading.section-content .jqtabs ul.ui-tabs-nav > li a,
  body.node-type-science-module-reading.section-content .jqtabs ul.ui-tabs-nav > li.ui-tabs-active a,
  body.node-type-science-module-section .jqtabs ul.ui-tabs-nav > li a,
  body.node-type-science-module-section .jqtabs ul.ui-tabs-nav > li.ui-tabs-active a {
    padding-left: 0px;
  }
  /* line 101, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module .jqtabs h2,
  body.section-content .jqtabs h2,
  body.node-type-science-module-reading.section-content .jqtabs h2,
  body.node-type-science-module-section .jqtabs h2 {
    font-size: 22px;
    line-height: 26px;
  }
  /* line 105, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module .jqtabs h3,
  body.section-content .jqtabs h3,
  body.node-type-science-module-reading.section-content .jqtabs h3,
  body.node-type-science-module-section .jqtabs h3 {
    font-size: 20px;
    line-height: 24px;
  }
  /* line 109, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module .jqtabs h4,
  body.section-content .jqtabs h4,
  body.node-type-science-module-reading.section-content .jqtabs h4,
  body.node-type-science-module-section .jqtabs h4 {
    font-size: 18px;
    line-height: 22px;
  }
}
@media screen and (max-width: 930px) {
  /* line 117, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module div.field-name-field-reading-header,
  body.node-type-module div.field-name-field-visible-title,
  body.section-content div.field-name-field-reading-header,
  body.section-content div.field-name-field-visible-title,
  body.node-type-science-module-reading.section-content div.field-name-field-reading-header,
  body.node-type-science-module-reading.section-content div.field-name-field-visible-title,
  body.node-type-science-module-section div.field-name-field-reading-header,
  body.node-type-science-module-section div.field-name-field-visible-title {
    width: 90%;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  /* line 123, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module div.field-name-field-reading-header p,
  body.node-type-module div.field-name-field-visible-title p,
  body.section-content div.field-name-field-reading-header p,
  body.section-content div.field-name-field-visible-title p,
  body.node-type-science-module-reading.section-content div.field-name-field-reading-header p,
  body.node-type-science-module-reading.section-content div.field-name-field-visible-title p,
  body.node-type-science-module-section div.field-name-field-reading-header p,
  body.node-type-science-module-section div.field-name-field-visible-title p {
    float: none;
    top: 0px;
  }
  /* line 131, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module div#block-block-10,
  body.section-content div#block-block-10,
  body.node-type-science-module-reading.section-content div#block-block-10,
  body.node-type-science-module-section div#block-block-10 {
    margin-top: 0px;
    border-top-width: 0px;
    text-align: center;
    height: 50px;
  }
  /* line 138, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module div#teacher-student-toggle,
  body.section-content div#teacher-student-toggle,
  body.node-type-science-module-reading.section-content div#teacher-student-toggle,
  body.node-type-science-module-section div#teacher-student-toggle {
    height: 30px;
    justify-content: center;
    margin: 10px auto 30px auto;
    width: 100%;
  }
  /* line 143, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module div#teacher-student-toggle div.btn-container:nth-child(2),
  body.section-content div#teacher-student-toggle div.btn-container:nth-child(2),
  body.node-type-science-module-reading.section-content div#teacher-student-toggle div.btn-container:nth-child(2),
  body.node-type-science-module-section div#teacher-student-toggle div.btn-container:nth-child(2) {
    margin-right: 0px;
  }
  /* line 147, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module h1#page-title,
  body.section-content h1#page-title,
  body.node-type-science-module-reading.section-content h1#page-title,
  body.node-type-science-module-section h1#page-title {
    font-size: 30px;
    position: relative;
    bottom: 0px;
    float: none;
    margin: 10px auto 5px auto;
    width: 93%;
  }
  /* line 159, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module ul.eid-module-nav,
  body.section-content ul.eid-module-nav,
  body.node-type-science-module-reading.section-content ul.eid-module-nav,
  body.node-type-science-module-section ul.eid-module-nav {
    width: 93%;
    overflow: hidden;
    display: block;
    background-image: none;
  }
  /* line 165, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module ul.eid-module-nav li a,
  body.section-content ul.eid-module-nav li a,
  body.node-type-science-module-reading.section-content ul.eid-module-nav li a,
  body.node-type-science-module-section ul.eid-module-nav li a {
    width: 97%;
    padding: 5px 0 5px 3%;
  }
  /* line 169, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module ul.eid-module-nav li:nth-child(n+2) a,
  body.section-content ul.eid-module-nav li:nth-child(n+2) a,
  body.node-type-science-module-reading.section-content ul.eid-module-nav li:nth-child(n+2) a,
  body.node-type-science-module-section ul.eid-module-nav li:nth-child(n+2) a {
    width: 90%;
    padding: 5px 0 5px 10%;
  }
  /* line 173, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module ul.eid-module-nav li:first-child::after,
  body.section-content ul.eid-module-nav li:first-child::after,
  body.node-type-science-module-reading.section-content ul.eid-module-nav li:first-child::after,
  body.node-type-science-module-section ul.eid-module-nav li:first-child::after {
    padding-bottom: 10px;
    overflow: hidden;
    display: block;
    width: 97%;
    padding-left: 3%;
    cursor: pointer;
    background-image: url("../images/mobile/down-arrow.png");
    background-repeat: no-repeat;
    background-position: 99% 6px;
  }
  /* line 184, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module ul.eid-module-nav li:first-child.up_arrow::after,
  body.section-content ul.eid-module-nav li:first-child.up_arrow::after,
  body.node-type-science-module-reading.section-content ul.eid-module-nav li:first-child.up_arrow::after,
  body.node-type-science-module-section ul.eid-module-nav li:first-child.up_arrow::after {
    background-image: url("../images/mobile/up-arrow.png");
  }
  /* line 189, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module h1#page-title,
  body.node-type-module div.field-name-field-section-title p,
  body.section-content h1#page-title,
  body.section-content div.field-name-field-section-title p,
  body.node-type-science-module-reading.section-content h1#page-title,
  body.node-type-science-module-reading.section-content div.field-name-field-section-title p,
  body.node-type-science-module-section h1#page-title,
  body.node-type-science-module-section div.field-name-field-section-title p {
    margin-top: 20px;
    font-size: 28px;
  }
}
@media screen and (max-width: 930px) and (max-width: 460px) {
  /* line 189, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module h1#page-title,
  body.node-type-module div.field-name-field-section-title p,
  body.section-content h1#page-title,
  body.section-content div.field-name-field-section-title p,
  body.node-type-science-module-reading.section-content h1#page-title,
  body.node-type-science-module-reading.section-content div.field-name-field-section-title p,
  body.node-type-science-module-section h1#page-title,
  body.node-type-science-module-section div.field-name-field-section-title p {
    font-size: 20px;
  }
}
@media screen and (max-width: 930px) {
  /* line 202, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module div#content article,
  body.section-content div#content article,
  body.node-type-science-module-reading.section-content div#content article,
  body.node-type-science-module-section div#content article {
    width: 100%;
  }
  /* line 207, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module div#content div.field-type-text-long,
  body.node-type-module div#content div.field-type-text,
  body.node-type-module div#content div.field-name-field-teacher-intro,
  body.node-type-module div#content article > div.field-name-field-teacher-instructions,
  body.node-type-module div#content article > div.field-name-field-student-introduction,
  body.node-type-module div#content div.field-name-field-reading-header,
  body.node-type-module div#content div.field-name-field-visible-title,
  body.node-type-module div#content div.field-name-field-teacher-text,
  body.section-content div#content div.field-type-text-long,
  body.section-content div#content div.field-type-text,
  body.section-content div#content div.field-name-field-teacher-intro,
  body.section-content div#content article > div.field-name-field-teacher-instructions,
  body.section-content div#content article > div.field-name-field-student-introduction,
  body.section-content div#content div.field-name-field-reading-header,
  body.section-content div#content div.field-name-field-visible-title,
  body.section-content div#content div.field-name-field-teacher-text,
  body.node-type-science-module-reading.section-content div#content div.field-type-text-long,
  body.node-type-science-module-reading.section-content div#content div.field-type-text,
  body.node-type-science-module-reading.section-content div#content div.field-name-field-teacher-intro,
  body.node-type-science-module-reading.section-content div#content article > div.field-name-field-teacher-instructions,
  body.node-type-science-module-reading.section-content div#content article > div.field-name-field-student-introduction,
  body.node-type-science-module-reading.section-content div#content div.field-name-field-reading-header,
  body.node-type-science-module-reading.section-content div#content div.field-name-field-visible-title,
  body.node-type-science-module-reading.section-content div#content div.field-name-field-teacher-text,
  body.node-type-science-module-section div#content div.field-type-text-long,
  body.node-type-science-module-section div#content div.field-type-text,
  body.node-type-science-module-section div#content div.field-name-field-teacher-intro,
  body.node-type-science-module-section div#content article > div.field-name-field-teacher-instructions,
  body.node-type-science-module-section div#content article > div.field-name-field-student-introduction,
  body.node-type-science-module-section div#content div.field-name-field-reading-header,
  body.node-type-science-module-section div#content div.field-name-field-visible-title,
  body.node-type-science-module-section div#content div.field-name-field-teacher-text {
    width: 93%;
    float: none;
    margin: 10px auto;
  }
  /* line 226, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module div#content div.field-name-field-header-text,
  body.section-content div#content div.field-name-field-header-text,
  body.node-type-science-module-reading.section-content div#content div.field-name-field-header-text,
  body.node-type-science-module-section div#content div.field-name-field-header-text {
    width: 80%;
    margin-left: 3.5%;
  }
  /* line 231, ../sass/phone/_phone_content_pages.scss */
  body.node-type-module div#content div.field-name-field-visible-title,
  body.section-content div#content div.field-name-field-visible-title,
  body.node-type-science-module-reading.section-content div#content div.field-name-field-visible-title,
  body.node-type-science-module-section div#content div.field-name-field-visible-title {
    margin-top: 10px;
  }

  /* line 242, ../sass/phone/_phone_content_pages.scss */
  body.node-type-science-module-reading div#content div.field-name-field-reading-footer {
    display: inline-block;
  }
  /* line 245, ../sass/phone/_phone_content_pages.scss */
  body.node-type-science-module-reading div#content div.field-name-student-introduction {
    margin-top: 20px;
  }
  /* line 248, ../sass/phone/_phone_content_pages.scss */
  body.node-type-science-module-reading div#content div#reading_widget {
    margin-bottom: 40px;
  }
  /* line 252, ../sass/phone/_phone_content_pages.scss */
  body.node-type-science-module-reading div#content img,
  body.node-type-science-module-reading div#content div.credit,
  body.node-type-science-module-reading div#content div.caption {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    float: none;
  }
  /* line 262, ../sass/phone/_phone_content_pages.scss */
  body.node-type-science-module-reading div#content div.image-left-solo {
    text-align: center;
  }
  /* line 265, ../sass/phone/_phone_content_pages.scss */
  body.node-type-science-module-reading div#content div.credit,
  body.node-type-science-module-reading div#content div.caption {
    width: 90%;
  }
  /* line 273, ../sass/phone/_phone_content_pages.scss */
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading h2,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion h2 {
    font-size: 16px;
  }
  /* line 276, ../sass/phone/_phone_content_pages.scss */
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table {
    width: 100%;
    margin: 0px auto;
    max-width: 100%;
    display: block;
  }
  /* line 284, ../sass/phone/_phone_content_pages.scss */
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading .ui-accordion-content,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion .ui-accordion-content {
    padding: 0px;
  }
  /* line 288, ../sass/phone/_phone_content_pages.scss */
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.views-field-title,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.views-field-title {
    font-size: 24px;
    margin-left: -6px;
  }
  /* line 291, ../sass/phone/_phone_content_pages.scss */
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.views-field-title a,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.views-field-title a {
    padding-left: 0px;
    margin-left: 28px;
  }

  /* line 3, ../sass/phone/_phone_extensible.scss */
  .reset, body header#header,
  body div#page,
  body div#main,
  body div#content,
  body div#block-views-module-list-block,
  body div#block-system-main-menu,
  body footer#footer,
  body.node-type-module header#header,
  body.node-type-module div#page,
  body.node-type-module div#main,
  body.node-type-module div#content,
  body.node-type-module div#block-views-module-list-block,
  body.node-type-module div#block-system-main-menu,
  body.node-type-module footer#footer,
  body.node-type-science-article header#header,
  body.node-type-science-article div#page,
  body.node-type-science-article div#main,
  body.node-type-science-article div#content,
  body.node-type-science-article div#block-views-module-list-block,
  body.node-type-science-article div#block-system-main-menu,
  body.node-type-science-article footer#footer,
  body.node-type-main-page header#header,
  body.node-type-main-page div#page,
  body.node-type-main-page div#main,
  body.node-type-main-page div#content,
  body.node-type-main-page div#block-views-module-list-block,
  body.node-type-main-page div#block-system-main-menu,
  body.node-type-main-page footer#footer,
  body.node-type-science-module-reading header#header,
  body.node-type-science-module-reading div#page,
  body.node-type-science-module-reading div#main,
  body.node-type-science-module-reading div#content,
  body.node-type-science-module-reading div#block-views-module-list-block,
  body.node-type-science-module-reading div#block-system-main-menu,
  body.node-type-science-module-reading footer#footer,
  body.node-type-science-module-section header#header,
  body.node-type-science-module-section div#page,
  body.node-type-science-module-section div#main,
  body.node-type-science-module-section div#content,
  body.node-type-science-module-section div#block-views-module-list-block,
  body.node-type-science-module-section div#block-system-main-menu,
  body.node-type-science-module-section footer#footer,
  body.node-type-timeline header#header,
  body.node-type-timeline div#page,
  body.node-type-timeline div#main,
  body.node-type-timeline div#content,
  body.node-type-timeline div#block-views-module-list-block,
  body.node-type-timeline div#block-system-main-menu,
  body.node-type-timeline footer#footer, body.node-type-main-page div#block-block-2,
  body.node-type-main-page div#block-block-3,
  body.node-type-main-page div#block-block-4,
  body.node-type-main-page div#block-block-6,
  body.node-type-main-page div#block-block-8,
  body.node-type-main-page div#block-block-9,
  body.node-type-science-article div#block-block-2,
  body.node-type-science-article div#block-block-3,
  body.node-type-science-article div#block-block-4,
  body.node-type-science-article div#block-block-6,
  body.node-type-science-article div#block-block-8,
  body.node-type-science-article div#block-block-9,
  body.node-type-module div#teacher-student-toggle,
  body.node-type-module article,
  body.node-type-module ul.eid-module-nav,
  body.node-type-module div.field-name-field-teacher-intro,
  body.node-type-module div.field-name-field-student-intro,
  body.node-type-module div.field-name-field-reading-header,
  body.node-type-module div.field-name-field-visible-title,
  body.node-type-module div.field-name-field-teacher-instructions,
  body.node-type-module div.field-name-field-header-text,
  body.section-content div#content,
  body.section-content div#teacher-student-toggle,
  body.section-content article,
  body.section-content ul.eid-module-nav,
  body.section-content div.field-name-field-teacher-intro,
  body.section-content div.field-name-field-student-intro,
  body.section-content div.field-name-field-reading-header,
  body.section-content div.field-name-field-visible-title,
  body.section-content div.field-name-field-teacher-instructions,
  body.section-content div.field-name-field-header-text,
  body.node-type-science-module-reading.section-content div#content,
  body.node-type-science-module-reading.section-content div#teacher-student-toggle,
  body.node-type-science-module-reading.section-content article,
  body.node-type-science-module-reading.section-content ul.eid-module-nav,
  body.node-type-science-module-reading.section-content div.field-name-field-teacher-intro,
  body.node-type-science-module-reading.section-content div.field-name-field-student-intro,
  body.node-type-science-module-reading.section-content div.field-name-field-reading-header,
  body.node-type-science-module-reading.section-content div.field-name-field-visible-title,
  body.node-type-science-module-reading.section-content div.field-name-field-teacher-instructions,
  body.node-type-science-module-reading.section-content div.field-name-field-header-text,
  body.node-type-science-module-section div#teacher-student-toggle,
  body.node-type-science-module-section article,
  body.node-type-science-module-section ul.eid-module-nav,
  body.node-type-science-module-section div.field-name-field-teacher-intro,
  body.node-type-science-module-section div.field-name-field-student-intro,
  body.node-type-science-module-section div.field-name-field-reading-header,
  body.node-type-science-module-section div.field-name-field-visible-title,
  body.node-type-science-module-section div.field-name-field-teacher-instructions,
  body.node-type-science-module-section div.field-name-field-header-text {
    height: auto;
    position: relative;
    top: 0px;
    left: 0px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    float: none;
  }

  /* line 13, ../sass/phone/_phone_extensible.scss */
  .reset-header, body div#block-block-1,
  body.node-type-module div#block-block-1,
  body.node-type-science-article div#block-block-1,
  body.node-type-main-page div#block-block-1,
  body.node-type-science-module-reading div#block-block-1,
  body.node-type-science-module-section div#block-block-1,
  body.node-type-timeline div#block-block-1 {
    height: auto;
    position: relative;
    top: 0px;
    left: 0px;
    padding: 0px;
    float: none;
  }
}
@media screen and (max-width: 930px) and (max-width: 460px) {
  /* line 9, ../sass/phone/_phone_content_pages_plus.scss */
  body.content-discussion div.field-name-field-header-text p {
    background-size: 40px 30px;
    min-height: 30px;
    padding-left: 50px;
  }

  /* line 14, ../sass/phone/_phone_content_pages_plus.scss */
  body.content-activity div.field-name-field-header-text div.field-items p {
    background-size: 35px 30px;
    min-height: 30px;
    padding-left: 44px;
  }

  /* line 20, ../sass/phone/_phone_content_pages_plus.scss */
  body.node-type-science-module-reading.section-content div#content div.reading_widget div.ui-accordion div.views-field-title,
  body.node-type-science-module-reading.section-content div#content div.reading_widget div.ui-accordion .ui-accordion-header a {
    font-size: 19px;
    line-height: 24px;
  }

  /* line 30, ../sass/phone/_phone_content_pages_plus.scss */
  body.node-type-module div#content h3.video-header,
  body.section-content div#content h3.video-header,
  body.node-type-science-module-reading.section-content div#content h3.video-header,
  body.node-type-science-module-section div#content h3.video-header {
    font-size: 18px;
    text-align: center;
    margin: 0px auto 4px auto;
    height: auto;
    padding: 0px;
    min-height: 0px;
  }
  /* line 37, ../sass/phone/_phone_content_pages_plus.scss */
  body.node-type-module div#content h3.video-header.khan,
  body.section-content div#content h3.video-header.khan,
  body.node-type-science-module-reading.section-content div#content h3.video-header.khan,
  body.node-type-science-module-section div#content h3.video-header.khan {
    margin-bottom: 0px;
  }
  /* line 41, ../sass/phone/_phone_content_pages_plus.scss */
  body.node-type-module div#content h3.video-header a,
  body.section-content div#content h3.video-header a,
  body.node-type-science-module-reading.section-content div#content h3.video-header a,
  body.node-type-science-module-section div#content h3.video-header a {
    margin-left: auto;
    margin-right: auto;
  }
  /* line 47, ../sass/phone/_phone_content_pages_plus.scss */
  body.node-type-module h1#page-title::first-letter,
  body.section-content h1#page-title::first-letter,
  body.node-type-science-module-reading.section-content h1#page-title::first-letter,
  body.node-type-science-module-section h1#page-title::first-letter {
    margin-right: 4px;
  }
  /* line 50, ../sass/phone/_phone_content_pages_plus.scss */
  body.node-type-module h1#page-title.title.phone_pos,
  body.section-content h1#page-title.title.phone_pos,
  body.node-type-science-module-reading.section-content h1#page-title.title.phone_pos,
  body.node-type-science-module-section h1#page-title.title.phone_pos {
    font-size: 20px;
  }
}
@media screen and (max-width: 930px) and (max-width: 460px) and (max-width: 340px) {
  /* line 50, ../sass/phone/_phone_content_pages_plus.scss */
  body.node-type-module h1#page-title.title.phone_pos,
  body.section-content h1#page-title.title.phone_pos,
  body.node-type-science-module-reading.section-content h1#page-title.title.phone_pos,
  body.node-type-science-module-section h1#page-title.title.phone_pos {
    font-size: 19px;
  }
}
@media screen and (max-width: 930px) and (max-width: 460px) {
  /* line 58, ../sass/phone/_phone_content_pages_plus.scss */
  body.node-type-module div#content div.field-name-field-section-title p,
  body.section-content div#content div.field-name-field-section-title p,
  body.node-type-science-module-reading.section-content div#content div.field-name-field-section-title p,
  body.node-type-science-module-section div#content div.field-name-field-section-title p {
    font-size: 27px;
  }
  /* line 63, ../sass/phone/_phone_content_pages_plus.scss */
  body.node-type-module div#content,
  body.section-content div#content,
  body.node-type-science-module-reading.section-content div#content,
  body.node-type-science-module-section div#content {
    /* div.field-name-field-header-text p.video,
     div.field-name-field-reading-header p {
       min-height: 0px;
     }*/
  }
  /* line 65, ../sass/phone/_phone_content_pages_plus.scss */
  body.node-type-module div#content article div.field-item h2,
  body.node-type-module div#content div.field-name-field-section-title p,
  body.node-type-module div#content div.field-name-field-header-text p,
  body.node-type-module div#content article div.field-item h3,
  body.section-content div#content article div.field-item h2,
  body.section-content div#content div.field-name-field-section-title p,
  body.section-content div#content div.field-name-field-header-text p,
  body.section-content div#content article div.field-item h3,
  body.node-type-science-module-reading.section-content div#content article div.field-item h2,
  body.node-type-science-module-reading.section-content div#content div.field-name-field-section-title p,
  body.node-type-science-module-reading.section-content div#content div.field-name-field-header-text p,
  body.node-type-science-module-reading.section-content div#content article div.field-item h3,
  body.node-type-science-module-section div#content article div.field-item h2,
  body.node-type-science-module-section div#content div.field-name-field-section-title p,
  body.node-type-science-module-section div#content div.field-name-field-header-text p,
  body.node-type-science-module-section div#content article div.field-item h3 {
    font-size: 19px;
    line-height: 22px;
    width: 90%;
  }
  /* line 80, ../sass/phone/_phone_content_pages_plus.scss */
  body.node-type-module div#content article div h3:nth-child(n+2),
  body.section-content div#content article div h3:nth-child(n+2),
  body.node-type-science-module-reading.section-content div#content article div h3:nth-child(n+2),
  body.node-type-science-module-section div#content article div h3:nth-child(n+2) {
    margin-top: 0px;
    padding: 0px;
    min-height: 0px;
    font-size: 19px;
  }
  /* line 88, ../sass/phone/_phone_content_pages_plus.scss */
  body.node-type-module div#content article div h3:nth-child(n+2).activity_instructions,
  body.section-content div#content article div h3:nth-child(n+2).activity_instructions,
  body.node-type-science-module-reading.section-content div#content article div h3:nth-child(n+2).activity_instructions,
  body.node-type-science-module-section div#content article div h3:nth-child(n+2).activity_instructions {
    padding-left: 44px;
    background-position: 0px center;
    background-size: 35px 35px;
  }
  /* line 96, ../sass/phone/_phone_content_pages_plus.scss */
  body.node-type-module div#content article div h3.video-header,
  body.section-content div#content article div h3.video-header,
  body.node-type-science-module-reading.section-content div#content article div h3.video-header,
  body.node-type-science-module-section div#content article div h3.video-header {
    margin-bottom: 2px;
  }
  /* line 99, ../sass/phone/_phone_content_pages_plus.scss */
  body.node-type-module div#content article div h3.left,
  body.section-content div#content article div h3.left,
  body.node-type-science-module-reading.section-content div#content article div h3.left,
  body.node-type-science-module-section div#content article div h3.left {
    text-align: left;
    margin-left: 0px;
  }
}
@media screen and (max-width: 930px) {
  /* line 8, ../sass/phone/_phone_science_article.scss */
  body.node-type-science-article.section-content div#main {
    border-top: 0px;
  }
  /* line 11, ../sass/phone/_phone_science_article.scss */
  body.node-type-science-article.section-content h1, body.node-type-science-article.section-content article {
    width: 93%;
    margin: 0px auto;
  }
  /* line 15, ../sass/phone/_phone_science_article.scss */
  body.node-type-science-article.section-content h1 {
    font-size: 20px;
  }
  /* line 18, ../sass/phone/_phone_science_article.scss */
  body.node-type-science-article.section-content div#content div.field-type-text.field-name-field-author-name,
  body.node-type-science-article.section-content div#content div.field-type-text.field-name-field-publication-name {
    width: 100%;
  }
  /* line 22, ../sass/phone/_phone_science_article.scss */
  body.node-type-science-article.section-content p,
  body.node-type-science-article.section-content div.field-name-field-publication-name p,
  body.node-type-science-article.section-content div.field-name-field-author-name p {
    width: 93%;
    margin: 0px auto;
  }

  /* line 12, ../sass/phone/_phone_navigation.scss */
  body.node-type-main-page div#block-system-main-menu > ul.menu,
  body.node-type-module div#block-system-main-menu > ul.menu,
  body.node-type-science-article div#block-system-main-menu > ul.menu,
  body.node-type-science-module-reading div#block-system-main-menu > ul.menu,
  body.node-type-science-module-section div#block-system-main-menu > ul.menu,
  body.node-type-timeline div#block-system-main-menu > ul.menu {
    display: block;
  }
  /* line 16, ../sass/phone/_phone_navigation.scss */
  body.node-type-main-page div#block-system-main-menu,
  body.node-type-module div#block-system-main-menu,
  body.node-type-science-article div#block-system-main-menu,
  body.node-type-science-module-reading div#block-system-main-menu,
  body.node-type-science-module-section div#block-system-main-menu,
  body.node-type-timeline div#block-system-main-menu {
    background-color: #159ca6;
    color: white;
    width: 100%;
    margin: 10px auto 20px auto;
    height: 40px;
    position: none;
    text-align: center;
  }
  /* line 24, ../sass/phone/_phone_navigation.scss */
  body.node-type-main-page div#block-system-main-menu div.contextual-links-wrapper,
  body.node-type-module div#block-system-main-menu div.contextual-links-wrapper,
  body.node-type-science-article div#block-system-main-menu div.contextual-links-wrapper,
  body.node-type-science-module-reading div#block-system-main-menu div.contextual-links-wrapper,
  body.node-type-science-module-section div#block-system-main-menu div.contextual-links-wrapper,
  body.node-type-timeline div#block-system-main-menu div.contextual-links-wrapper {
    position: relative;
    display: none;
  }
  /* line 28, ../sass/phone/_phone_navigation.scss */
  body.node-type-main-page div#block-system-main-menu ul.menu > li > ul,
  body.node-type-module div#block-system-main-menu ul.menu > li > ul,
  body.node-type-science-article div#block-system-main-menu ul.menu > li > ul,
  body.node-type-science-module-reading div#block-system-main-menu ul.menu > li > ul,
  body.node-type-science-module-section div#block-system-main-menu ul.menu > li > ul,
  body.node-type-timeline div#block-system-main-menu ul.menu > li > ul {
    display: none;
  }
  /* line 31, ../sass/phone/_phone_navigation.scss */
  body.node-type-main-page div#block-system-main-menu ul.menu,
  body.node-type-module div#block-system-main-menu ul.menu,
  body.node-type-science-article div#block-system-main-menu ul.menu,
  body.node-type-science-module-reading div#block-system-main-menu ul.menu,
  body.node-type-science-module-section div#block-system-main-menu ul.menu,
  body.node-type-timeline div#block-system-main-menu ul.menu {
    padding: 0px;
    width: 100%;
    margin: 0px auto;
    float: none;
  }
  /* line 38, ../sass/phone/_phone_navigation.scss */
  body.node-type-main-page div#block-system-main-menu ul.menu li:not(:last-child):after,
  body.node-type-module div#block-system-main-menu ul.menu li:not(:last-child):after,
  body.node-type-science-article div#block-system-main-menu ul.menu li:not(:last-child):after,
  body.node-type-science-module-reading div#block-system-main-menu ul.menu li:not(:last-child):after,
  body.node-type-science-module-section div#block-system-main-menu ul.menu li:not(:last-child):after,
  body.node-type-timeline div#block-system-main-menu ul.menu li:not(:last-child):after {
    content: '';
    height: 16px;
    width: 2px;
    margin-left: -2px;
    background-color: white;
    float: left;
    position: relative;
    top: -30px;
  }
  /* line 49, ../sass/phone/_phone_navigation.scss */
  body.node-type-main-page div#block-system-main-menu ul.menu li:not(:last-child):after ul,
  body.node-type-module div#block-system-main-menu ul.menu li:not(:last-child):after ul,
  body.node-type-science-article div#block-system-main-menu ul.menu li:not(:last-child):after ul,
  body.node-type-science-module-reading div#block-system-main-menu ul.menu li:not(:last-child):after ul,
  body.node-type-science-module-section div#block-system-main-menu ul.menu li:not(:last-child):after ul,
  body.node-type-timeline div#block-system-main-menu ul.menu li:not(:last-child):after ul {
    display: none;
  }
  /* line 54, ../sass/phone/_phone_navigation.scss */
  body.node-type-main-page div#block-system-main-menu ul.menu li:nth-child(2) a,
  body.node-type-module div#block-system-main-menu ul.menu li:nth-child(2) a,
  body.node-type-science-article div#block-system-main-menu ul.menu li:nth-child(2) a,
  body.node-type-science-module-reading div#block-system-main-menu ul.menu li:nth-child(2) a,
  body.node-type-science-module-section div#block-system-main-menu ul.menu li:nth-child(2) a,
  body.node-type-timeline div#block-system-main-menu ul.menu li:nth-child(2) a {
    color: white;
  }
  /* line 57, ../sass/phone/_phone_navigation.scss */
  body.node-type-main-page div#block-system-main-menu ul.menu li:nth-child(2):after,
  body.node-type-module div#block-system-main-menu ul.menu li:nth-child(2):after,
  body.node-type-science-article div#block-system-main-menu ul.menu li:nth-child(2):after,
  body.node-type-science-module-reading div#block-system-main-menu ul.menu li:nth-child(2):after,
  body.node-type-science-module-section div#block-system-main-menu ul.menu li:nth-child(2):after,
  body.node-type-timeline div#block-system-main-menu ul.menu li:nth-child(2):after {
    left: -6px;
  }
  /* line 60, ../sass/phone/_phone_navigation.scss */
  body.node-type-main-page div#block-system-main-menu ul.menu li,
  body.node-type-module div#block-system-main-menu ul.menu li,
  body.node-type-science-article div#block-system-main-menu ul.menu li,
  body.node-type-science-module-reading div#block-system-main-menu ul.menu li,
  body.node-type-science-module-section div#block-system-main-menu ul.menu li,
  body.node-type-timeline div#block-system-main-menu ul.menu li {
    height: 40px;
    padding: 0px;
    margin: -10px 0 0 0;
    width: 33.3%;
    border: 0px;
    float: right;
    left: 0px;
    right: 0px;
  }
  /* line 71, ../sass/phone/_phone_navigation.scss */
  body.node-type-main-page div#block-system-main-menu ul.menu li a,
  body.node-type-module div#block-system-main-menu ul.menu li a,
  body.node-type-science-article div#block-system-main-menu ul.menu li a,
  body.node-type-science-module-reading div#block-system-main-menu ul.menu li a,
  body.node-type-science-module-section div#block-system-main-menu ul.menu li a,
  body.node-type-timeline div#block-system-main-menu ul.menu li a {
    color: white;
    height: 34px;
    margin: 0px;
    padding: 6px 0px 0px 0px;
  }
  /* line 77, ../sass/phone/_phone_navigation.scss */
  body.node-type-main-page div#block-system-main-menu ul.menu li a.active,
  body.node-type-module div#block-system-main-menu ul.menu li a.active,
  body.node-type-science-article div#block-system-main-menu ul.menu li a.active,
  body.node-type-science-module-reading div#block-system-main-menu ul.menu li a.active,
  body.node-type-science-module-section div#block-system-main-menu ul.menu li a.active,
  body.node-type-timeline div#block-system-main-menu ul.menu li a.active {
    color: #eaedf2;
  }

  /* line 97, ../sass/phone/_phone_navigation.scss */
  body.node-type-module div#block-system-main-menu ul.menu li.is-expanded a,
  body.node-type-science-article div#block-system-main-menu ul.menu li.is-expanded a,
  body.node-type-science-module-reading div#block-system-main-menu ul.menu li.is-expanded a,
  body.node-type-science-module-section div#block-system-main-menu ul.menu li.is-expanded a,
  body.node-type-timeline div#block-system-main-menu ul.menu li.is-expanded a {
    color: #eaedf2;
  }
}
@media screen and (max-width: 710px) {
  /* line 1, ../sass/phone/_phone_table_extensible.scss */
  .cell-label, .stacked-table table tr td:nth-child(n+3)::before, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(n+3)::before,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(n+3)::before,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td:nth-child(n+3)::before,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(n+3)::before,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td:nth-child(n+3)::before,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(n+3)::before,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(n+3)::before,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(n+3)::before,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td:nth-child(n+3)::before,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(n+3)::before,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td:nth-child(n+3)::before,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(n+3)::before, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:nth-child(n+3)::before,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:nth-child(n+3)::before, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(n+2)::before,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(n+2)::before,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(n+2)::before,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(n+2)::before,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(n+2)::before,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(n+2)::before, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:nth-child(n+2)::before,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:nth-child(n+2)::before {
    content: attr(title);
    display: inline-block;
    font-weight: bold;
    float: left;
    border: 1px solid transparent;
    margin-left: 5px;
    width: 95px;
    text-align: left;
  }

  /* line 11, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table {
    font-size: 14px;
    border: 0px;
  }
  /* line 14, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table thead tr:first-child, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table thead tr:first-child,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents thead tr:first-child,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table thead tr:first-child,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents thead tr:first-child,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table thead tr:first-child,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents thead tr:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table thead tr:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents thead tr:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table thead tr:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents thead tr:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table thead tr:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents thead tr:first-child, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress thead tr:first-child,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table thead tr:first-child {
    display: none;
  }
  /* line 17, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table h1, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table h1,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents h1,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table h1,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents h1,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table h1,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents h1,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table h1,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents h1,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table h1,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents h1,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table h1,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents h1, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress h1,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table h1 {
    min-width: 0px;
  }
  /* line 20, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table div#gap_map, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table div#gap_map,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents div#gap_map,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table div#gap_map,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents div#gap_map,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table div#gap_map,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents div#gap_map,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table div#gap_map,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents div#gap_map,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table div#gap_map,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents div#gap_map,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table div#gap_map,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents div#gap_map, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress div#gap_map,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table div#gap_map,
  .stacked-table table,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table,
  .stacked-table tbody,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table tbody,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents tbody,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table tbody,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents tbody,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table tbody,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents tbody,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table tbody,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents tbody,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table tbody,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents tbody,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table tbody,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents tbody,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress tbody,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table tbody {
    min-width: 0px;
    width: 100%;
    float: none;
    margin: 0px auto;
    padding: 0px;
  }
  /* line 29, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table {
    width: 100%;
  }
  /* line 31, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table img, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table img,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table img,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table img,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table img,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table img,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table img,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table img,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table img,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table img,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table img,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table img,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table img, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table img,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table img {
    width: auto;
  }
  /* line 35, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table td.views-field-field-structural-image img, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table td.views-field-field-structural-image img,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table td.views-field-field-structural-image img,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table td.views-field-field-structural-image img,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table td.views-field-field-structural-image img,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table td.views-field-field-structural-image img,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table td.views-field-field-structural-image img,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table td.views-field-field-structural-image img,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table td.views-field-field-structural-image img,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table td.views-field-field-structural-image img,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table td.views-field-field-structural-image img,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table td.views-field-field-structural-image img,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table td.views-field-field-structural-image img, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table td.views-field-field-structural-image img,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table td.views-field-field-structural-image img {
    max-width: 150px;
  }
  /* line 39, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table tr, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table tr,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents tr,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table tr,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents tr,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table tr,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents tr,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table tr,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents tr,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table tr,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents tr,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table tr,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents tr, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress tr,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table tr {
    margin-bottom: 20px;
    padding: 0px;
    display: block;
    border: 1px solid #bcbec0;
  }
  /* line 45, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table tr td, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td {
    display: block;
    border-width: 0px;
  }
  /* line 55, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table tr td:nth-child(n+3), body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(n+3),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(n+3),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td:nth-child(n+3),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(n+3),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td:nth-child(n+3),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td:nth-child(n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td:nth-child(n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(n+3), body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:nth-child(n+3),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:nth-child(n+3) {
    display: inline-block;
    width: 100%;
    padding: 0px;
  }
  /* line 66, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table tr td:nth-child(2) span, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(2) span,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(2) span,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td:nth-child(2) span,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(2) span,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td:nth-child(2) span,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(2) span,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(2) span,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(2) span,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td:nth-child(2) span,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(2) span,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td:nth-child(2) span,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(2) span, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:nth-child(2) span,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:nth-child(2) span,
  .stacked-table table tr td ul,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td ul,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td ul,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td ul,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td ul,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td ul,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td ul,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td ul,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td ul,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td ul,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td ul,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td ul,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td ul,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td ul,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td ul,
  .stacked-table table tr td p,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td p,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td p,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td p,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td p,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td p {
    display: inline-block;
    border: 1px solid transparent;
    width: 70%;
    margin: 5px 2%;
  }
  /* line 73, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table tr td:nth-child(2) span:after, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(2) span:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(2) span:after,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td:nth-child(2) span:after,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(2) span:after,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td:nth-child(2) span:after,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(2) span:after,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(2) span:after,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(2) span:after,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td:nth-child(2) span:after,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(2) span:after,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td:nth-child(2) span:after,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(2) span:after, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:nth-child(2) span:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:nth-child(2) span:after,
  .stacked-table table tr td ul:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td ul:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td ul:after,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td ul:after,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td ul:after,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td ul:after,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td ul:after,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td ul:after,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td ul:after,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td ul:after,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td ul:after,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td ul:after,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td ul:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td ul:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td ul:after,
  .stacked-table table tr td p:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td p:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td p:after,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td p:after,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td p:after,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td p:after,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td p:after,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td p:after,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td p:after,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td p:after,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td p:after,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td p:after,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td p:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td p:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td p:after {
    content: '';
    clear: both;
    display: block;
  }
  /* line 79, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table tr td span, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td span,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td span,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td span,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td span, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td span,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td span {
    display: inline-block;
    padding-left: 5px;
  }
  /* line 83, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table tr td p, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td p,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td p,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td p,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td p, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td p,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td p {
    padding-left: 10px;
  }
  /* line 86, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table tr td:nth-child(n+2), body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(n+2),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(n+2),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td:nth-child(n+2),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(n+2),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td:nth-child(n+2),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(n+2),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(n+2),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(n+2),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td:nth-child(n+2),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(n+2),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td:nth-child(n+2),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(n+2), body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:nth-child(n+2),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:nth-child(n+2) {
    border-bottom: 1px solid #bcbec0;
  }
  /* line 89, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table tr td:nth-child(2n), body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(2n),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(2n),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td:nth-child(2n),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(2n),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td:nth-child(2n),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(2n),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(2n),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(2n),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td:nth-child(2n),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(2n),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td:nth-child(2n),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(2n), body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:nth-child(2n),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:nth-child(2n) {
    background-color: #f7f7f7;
  }
  /* line 92, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table tr td:nth-child(2n+3), body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(2n+3),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(2n+3),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td:nth-child(2n+3),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(2n+3),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td:nth-child(2n+3),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(2n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(2n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(2n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td:nth-child(2n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(2n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td:nth-child(2n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(2n+3), body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:nth-child(2n+3),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:nth-child(2n+3) {
    background-color: #e5e4e9;
  }

  /* line 16, ../sass/phone/_phone_microbe_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td span,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td span,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td span,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td span {
    width: 75%;
  }
}
@media screen and (max-width: 710px) and (max-width: 500px) {
  /* line 16, ../sass/phone/_phone_microbe_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td span,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td span,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td span,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td span {
    width: 64%;
  }
}
@media screen and (max-width: 710px) and (max-width: 365px) {
  /* line 16, ../sass/phone/_phone_microbe_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td span,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td span,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td span,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td span {
    width: 58%;
  }
}
@media screen and (max-width: 710px) {
  /* line 29, ../sass/phone/_phone_microbe_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:first-child::before,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td:first-child::before,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td:first-child::before,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:first-child::before,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td:first-child::before,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td:first-child::before {
    content: attr(title);
  }
  /* line 32, ../sass/phone/_phone_microbe_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:first-child,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td:first-child,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td:first-child {
    background-color: #afb0b4;
    color: white;
  }
  /* line 38, ../sass/phone/_phone_microbe_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td img,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td img,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td img,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td img,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td img,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td img {
    display: block;
  }
  /* line 41, ../sass/phone/_phone_microbe_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:first-child,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:first-child,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:first-child {
    padding: 0px;
    border-bottom: 1px solid #bcbec0;
  }
  /* line 45, ../sass/phone/_phone_microbe_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:first-child span,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:first-child span,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:first-child span,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:first-child span,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:first-child span,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:first-child span {
    display: block;
    background-color: #afb0b4;
    color: white;
    width: 100%;
    padding: 2px 0px;
  }
}
@media screen and (max-width: 710px) and (max-width: 544px) {
  /* line 53, ../sass/phone/_phone_microbe_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.cols-3 tr:nth-child(n+2) td::before,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table.cols-3 tr:nth-child(n+2) td::before,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table.cols-3 tr:nth-child(n+2) td::before,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.cols-3 tr:nth-child(n+2) td::before,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table.cols-3 tr:nth-child(n+2) td::before,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table.cols-3 tr:nth-child(n+2) td::before {
    margin-top: 4px;
    width: 100%;
  }
}
@media screen and (max-width: 710px) {
  /* line 58, ../sass/phone/_phone_microbe_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(2),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(2),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(2),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(2),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(2),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(2) {
    padding: 0px;
  }
  /* line 66, ../sass/phone/_phone_microbe_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr th,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr th,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr th,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr th,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr th,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr th {
    padding: 0px;
  }
  /* line 70, ../sass/phone/_phone_microbe_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.cols-3 tr td:first-child,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table.cols-3 tr td:first-child,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table.cols-3 tr td:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.cols-3 tr td:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table.cols-3 tr td:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table.cols-3 tr td:first-child {
    background-color: #f7f7f7;
  }
  /* line 73, ../sass/phone/_phone_microbe_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.cols-3 tr td:nth-child(2n),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table.cols-3 tr td:nth-child(2n),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table.cols-3 tr td:nth-child(2n),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.cols-3 tr td:nth-child(2n),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table.cols-3 tr td:nth-child(2n),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table.cols-3 tr td:nth-child(2n) {
    background-color: #e5e4e9;
  }
  /* line 76, ../sass/phone/_phone_microbe_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.cols-3 tr td:nth-child(2n+1),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table.cols-3 tr td:nth-child(2n+1),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table.cols-3 tr td:nth-child(2n+1),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table.cols-3 tr td:nth-child(2n+1),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table.cols-3 tr td:nth-child(2n+1),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table.cols-3 tr td:nth-child(2n+1) {
    background-color: #f7f7f7;
  }

  /* line 1, ../sass/phone/_phone_table_extensible.scss */
  .cell-label, .stacked-table table tr td:nth-child(n+3)::before, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(n+3)::before,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(n+3)::before,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td:nth-child(n+3)::before,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(n+3)::before,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td:nth-child(n+3)::before,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(n+3)::before,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(n+3)::before,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(n+3)::before,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td:nth-child(n+3)::before,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(n+3)::before,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td:nth-child(n+3)::before,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(n+3)::before, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:nth-child(n+3)::before,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:nth-child(n+3)::before, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(n+2)::before,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(n+2)::before,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(n+2)::before,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(n+2)::before,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(n+2)::before,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(n+2)::before, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:nth-child(n+2)::before,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:nth-child(n+2)::before {
    content: attr(title);
    display: inline-block;
    font-weight: bold;
    float: left;
    border: 1px solid transparent;
    margin-left: 5px;
    width: 95px;
    text-align: left;
  }

  /* line 11, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table {
    font-size: 14px;
    border: 0px;
  }
  /* line 14, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table thead tr:first-child, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table thead tr:first-child,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents thead tr:first-child,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table thead tr:first-child,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents thead tr:first-child,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table thead tr:first-child,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents thead tr:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table thead tr:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents thead tr:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table thead tr:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents thead tr:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table thead tr:first-child,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents thead tr:first-child, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress thead tr:first-child,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table thead tr:first-child {
    display: none;
  }
  /* line 17, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table h1, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table h1,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents h1,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table h1,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents h1,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table h1,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents h1,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table h1,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents h1,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table h1,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents h1,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table h1,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents h1, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress h1,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table h1 {
    min-width: 0px;
  }
  /* line 20, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table div#gap_map, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table div#gap_map,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents div#gap_map,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table div#gap_map,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents div#gap_map,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table div#gap_map,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents div#gap_map,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table div#gap_map,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents div#gap_map,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table div#gap_map,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents div#gap_map,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table div#gap_map,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents div#gap_map, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress div#gap_map,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table div#gap_map,
  .stacked-table table,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table,
  .stacked-table tbody,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table tbody,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents tbody,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table tbody,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents tbody,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table tbody,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents tbody,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table tbody,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents tbody,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table tbody,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents tbody,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table tbody,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents tbody,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress tbody,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table tbody {
    min-width: 0px;
    width: 100%;
    float: none;
    margin: 0px auto;
    padding: 0px;
  }
  /* line 29, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table {
    width: 100%;
  }
  /* line 31, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table img, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table img,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table img,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table img,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table img,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table img,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table img,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table img,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table img,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table img,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table img,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table img,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table img, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table img,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table img {
    width: auto;
  }
  /* line 35, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table td.views-field-field-structural-image img, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table td.views-field-field-structural-image img,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table td.views-field-field-structural-image img,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table td.views-field-field-structural-image img,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table td.views-field-field-structural-image img,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table td.views-field-field-structural-image img,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table td.views-field-field-structural-image img,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table td.views-field-field-structural-image img,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table td.views-field-field-structural-image img,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table td.views-field-field-structural-image img,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table td.views-field-field-structural-image img,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table td.views-field-field-structural-image img,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table td.views-field-field-structural-image img, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table td.views-field-field-structural-image img,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table td.views-field-field-structural-image img {
    max-width: 150px;
  }
  /* line 39, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table tr, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table tr,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents tr,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table tr,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents tr,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table tr,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents tr,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table tr,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents tr,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table tr,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents tr,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table tr,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents tr, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress tr,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table tr {
    margin-bottom: 20px;
    padding: 0px;
    display: block;
    border: 1px solid #bcbec0;
  }
  /* line 45, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table tr td, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td {
    display: block;
    border-width: 0px;
  }
  /* line 55, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table tr td:nth-child(n+3), body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(n+3),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(n+3),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td:nth-child(n+3),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(n+3),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td:nth-child(n+3),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td:nth-child(n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td:nth-child(n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(n+3), body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:nth-child(n+3),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:nth-child(n+3) {
    display: inline-block;
    width: 100%;
    padding: 0px;
  }
  /* line 66, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table tr td:nth-child(2) span, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(2) span,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(2) span,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td:nth-child(2) span,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(2) span,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td:nth-child(2) span,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(2) span,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(2) span,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(2) span,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td:nth-child(2) span,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(2) span,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td:nth-child(2) span,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(2) span, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:nth-child(2) span,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:nth-child(2) span,
  .stacked-table table tr td ul,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td ul,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td ul,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td ul,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td ul,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td ul,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td ul,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td ul,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td ul,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td ul,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td ul,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td ul,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td ul,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td ul,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td ul,
  .stacked-table table tr td p,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td p,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td p,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td p,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td p,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td p {
    display: inline-block;
    border: 1px solid transparent;
    width: 70%;
    margin: 5px 2%;
  }
  /* line 73, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table tr td:nth-child(2) span:after, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(2) span:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(2) span:after,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td:nth-child(2) span:after,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(2) span:after,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td:nth-child(2) span:after,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(2) span:after,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(2) span:after,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(2) span:after,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td:nth-child(2) span:after,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(2) span:after,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td:nth-child(2) span:after,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(2) span:after, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:nth-child(2) span:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:nth-child(2) span:after,
  .stacked-table table tr td ul:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td ul:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td ul:after,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td ul:after,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td ul:after,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td ul:after,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td ul:after,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td ul:after,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td ul:after,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td ul:after,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td ul:after,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td ul:after,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td ul:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td ul:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td ul:after,
  .stacked-table table tr td p:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td p:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td p:after,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td p:after,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td p:after,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td p:after,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td p:after,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td p:after,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td p:after,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td p:after,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td p:after,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td p:after,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td p:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td p:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td p:after {
    content: '';
    clear: both;
    display: block;
  }
  /* line 79, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table tr td span, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td span,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td span,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td span,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td span,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td span, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td span,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td span {
    display: inline-block;
    padding-left: 5px;
  }
  /* line 83, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table tr td p, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td p,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td p,
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td p,
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td p,
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td p, body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td p,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td p {
    padding-left: 10px;
  }
  /* line 86, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table tr td:nth-child(n+2), body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(n+2),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(n+2),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td:nth-child(n+2),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(n+2),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td:nth-child(n+2),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(n+2),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(n+2),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(n+2),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td:nth-child(n+2),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(n+2),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td:nth-child(n+2),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(n+2), body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:nth-child(n+2),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:nth-child(n+2) {
    border-bottom: 1px solid #bcbec0;
  }
  /* line 89, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table tr td:nth-child(2n), body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(2n),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(2n),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td:nth-child(2n),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(2n),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td:nth-child(2n),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(2n),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(2n),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(2n),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td:nth-child(2n),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(2n),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td:nth-child(2n),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(2n), body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:nth-child(2n),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:nth-child(2n) {
    background-color: #f7f7f7;
  }
  /* line 92, ../sass/phone/_phone_table_extensible.scss */
  .stacked-table table tr td:nth-child(2n+3), body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(2n+3),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(2n+3),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-microbe_table table tr td:nth-child(2n+3),
  body.node-type-science-module-section div#content div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(2n+3),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-microbe_table table tr td:nth-child(2n+3),
  body.node-type-science-module-section div#content div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(2n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-microbe_table table tr td:nth-child(2n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.field-type-text-long:nth-child(n+5) div.jqtabs div.view-id-immune_system_agents table tr td:nth-child(2n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-microbe_table table tr td:nth-child(2n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.view-science-reading div.view-id-immune_system_agents table tr td:nth-child(2n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-microbe_table table tr td:nth-child(2n+3),
  body.node-type-science-module-reading div#content div.reading_widget div.ui-accordion div.view-id-immune_system_agents table tr td:nth-child(2n+3), body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:nth-child(2n+3),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:nth-child(2n+3) {
    background-color: #e5e4e9;
  }

  /* line 9, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.table-legend div.statement {
    width: 80%;
  }
  /* line 13, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td span {
    width: 100%;
  }
}
@media screen and (max-width: 710px) and (max-width: 448px) {
  /* line 13, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td span {
    width: 64%;
  }
}
@media screen and (max-width: 710px) and (max-width: 365px) {
  /* line 13, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td span {
    width: 58%;
  }
}
@media screen and (max-width: 710px) {
  /* line 28, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td {
    display: inline-block;
    width: 100%;
    padding: 0px;
  }
  /* line 33, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:first-child,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:first-child {
    padding-bottom: 10px;
    color: white;
    background-color: #afb0b4;
  }
  /* line 37, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:first-child p,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:first-child p {
    padding-left: 0px;
  }
  /* line 41, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:nth-child(n+2)::before,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:nth-child(n+2)::before {
    float: left;
    line-height: 20px;
    margin-top: 8px;
  }
  /* line 47, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div.view-id-causes_of_respiratory_distress table tr td:nth-child(n+2) p,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tr td:nth-child(n+2) p {
    float: left;
    width: 50%;
    border: 1px;
    padding: 0px;
    margin-top: 0px;
    display: inline-block;
  }
  /* line 57, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) button#check-table {
    position: fixed;
    right: 0px;
    bottom: 60px;
    border-radius: 5px 0px 0px 5px;
    width: 80px;
    z-index: 10;
    opacity: 0;
    transition: 0.5s ease;
    cursor: auto;
  }
  /* line 67, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) button#check-table.visible {
    opacity: 1;
    transition: 0.5s ease;
    cursor: pointer;
  }
  /* line 75, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table {
    border: 0px;
  }
  /* line 78, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tbody tr {
    font-size: 15px;
    line-height: 17px;
  }
  /* line 82, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tbody tr td:first-child {
    text-align: center;
    padding: 5px 0px;
  }
  /* line 86, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tbody tr td:nth-child(n+2)::before {
    width: 190px;
    margin-top: 0px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 710px) and (max-width: 500px) {
  /* line 86, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tbody tr td:nth-child(n+2)::before {
    width: 40%;
    border: 1px solid transparent;
  }
}
@media screen and (max-width: 710px) {
  /* line 97, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tbody tr td:nth-child(n+2) {
    padding: 10px 0px 5px 0px;
  }
  /* line 100, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tbody tr td:nth-child(n+2) span {
    display: inline-block;
    margin-top: 0px;
    margin-left: 0px;
    border: 1px solid transparent;
    width: 50%;
  }
}
@media screen and (max-width: 710px) and (max-width: 500px) {
  /* line 100, ../sass/phone/_phone_resp_table.scss */
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) div#disease-select-table table tbody tr td:nth-child(n+2) span {
    width: 45%;
  }
}

@media screen and (max-width: 710px) {
      /*
      div.view-id-microbe_table {
       table tr td:first-child::before {
         content: attr(title);
       }
       table tr td:first-child {
        background-color: $table-header;
        color: white;
      }
    }
    div.view-id-immune_system_agents {
      table tr td img {
        display: block;
      }
      table tr td:first-child {
        padding: 0px;
        border-bottom: 1px solid $eid-lightgrey;
      }
      table tr td:first-child span {
        display: block;
        background-color: $table-header;
        color: white;
        width: 100%;
        padding: 2px 0px;
      }
      table tr td:nth-child(2) {
        padding: 0px;
      }
      table tr td:nth-child(n+2)::before {
       @extend .cell-label;

     }
     table tr td:nth-child(2n) {
      background-color: $table-row-even;
    }
    table tr td:nth-child(2n+1) {
    background-color: $table-row-odd;
    }

   }
 }
}
}
}*/
}
@media screen and (max-width: 530px) {
  /* line 6, ../sass/phone/_phone_card_sort.scss */
  body.section-content div#content div.field-type-text-long:nth-child(n) ul.disease-items.random li,
  body.section-content div#content div.field-type-text-long:nth-child(n+5) ul.disease-items.random li {
    margin-bottom: -40px;
  }

  /* line 12, ../sass/phone/_phone_card_sort.scss */
  body.node-type-science-module-section ul.disease-items {
    margin-bottom: 60px;
  }
  /* line 15, ../sass/phone/_phone_card_sort.scss */
  body.node-type-science-module-section ul.disease-items.random li {
    margin-top: -40px;
    font-size: 13px;
    margin-left: 0px;
    margin-top: 0px;
    width: 100px;
  }
  /* line 22, ../sass/phone/_phone_card_sort.scss */
  body.node-type-science-module-section div#answer_section {
    width: 90%;
  }
}
@media screen and (max-width: 530px) and (min-width: 931px) {
  /* line 22, ../sass/phone/_phone_card_sort.scss */
  body.node-type-science-module-section div#answer_section {
    width: 55%;
  }
}
@media screen and (max-width: 530px) {
  /* line 28, ../sass/phone/_phone_card_sort.scss */
  body.node-type-science-module-section div#two_columns div {
    width: 46%;
  }
  /* line 30, ../sass/phone/_phone_card_sort.scss */
  body.node-type-science-module-section div#two_columns div:not(:first-child) {
    margin-left: 3%;
    margin-right: 0px;
  }
  /* line 36, ../sass/phone/_phone_card_sort.scss */
  body.node-type-science-module-section div.form-group label {
    font-size: 12px;
    display: block;
  }
  /* line 40, ../sass/phone/_phone_card_sort.scss */
  body.node-type-science-module-section div#three_columns {
    display: none;
  }
  /* line 43, ../sass/phone/_phone_card_sort.scss */
  body.node-type-science-module-section div#three_columns div {
    width: 30%;
  }
  /* line 45, ../sass/phone/_phone_card_sort.scss */
  body.node-type-science-module-section div#three_columns div:not(:first-child) {
    margin-left: 2%;
  }
  /* line 50, ../sass/phone/_phone_card_sort.scss */
  body.node-type-science-module-section div#two_columns,
  body.node-type-science-module-section div#three_columns {
    clear: both;
    margin-bottom: 0px;
    width: 100%;
  }
  /* line 55, ../sass/phone/_phone_card_sort.scss */
  body.node-type-science-module-section div#two_columns div,
  body.node-type-science-module-section div#three_columns div {
    font-size: 12px;
  }
  /* line 59, ../sass/phone/_phone_card_sort.scss */
  body.node-type-science-module-section p.comment {
    width: 80%;
  }
}
@media screen and (max-width: 556px) {
  /* line 29, ../sass/phone/_phone_video.scss */
  iframe {
    /* @include scale(0.7);
     width: 380px;
     position: relative;*/
    max-width: 100%;
    height: 300px;
    zoom: 0.8;
  }

  /*.jqtabs  iframe {
    //@include scale(0.7);
      max-width: 100%;
 

  }*/
}
@media screen and (max-width: 500px) {
  /*.jqtabs iframe {
    position: relative;
    left: -60px;

    //height: 200px;
   // height: auto;
   // border: 4px solid purple;
  }*/
  /* line 60, ../sass/phone/_phone_video.scss */
  iframe {
    height: 270px;
  }

  /* line 63, ../sass/phone/_phone_video.scss */
  div.khan iframe {
    height: 320px;
  }
}
@media screen and (max-width: 320px) {
  /* line 70, ../sass/phone/_phone_video.scss */
  iframe {
    zoom: 0.65;
  }
}
@media screen and (max-width: 600px) {
  /* line 14, ../sass/phone/_phone_tables.scss */
  body.node-type-module table.category-table,
  body.node-type-module table.category-table.assessment,
  body.node-type-science-module-reading table.category-table,
  body.node-type-science-module-reading table.category-table.assessment,
  body.node-type-science-module-section table.category-table,
  body.node-type-science-module-section table.category-table.assessment {
    font-size: 12px;
    max-width: 100%;
  }
  /* line 22, ../sass/phone/_phone_tables.scss */
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr td,
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr th,
  body.node-type-science-module-reading div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr td,
  body.node-type-science-module-reading div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr th,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr td,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr th {
    max-width: none;
  }
  /* line 27, ../sass/phone/_phone_tables.scss */
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr th:first-child,
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr td:first-child,
  body.node-type-science-module-reading div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr th:first-child,
  body.node-type-science-module-reading div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr td:first-child,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr th:first-child,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr td:first-child {
    width: 50%;
  }
  /* line 33, ../sass/phone/_phone_tables.scss */
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment thead tr:first-child::after,
  body.node-type-science-module-reading div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment thead tr:first-child::after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment thead tr:first-child::after {
    background-color: #afb0b4;
    color: white;
    content: 'Risk Level';
    padding: 10px 0px;
    display: block;
  }
  /* line 42, ../sass/phone/_phone_tables.scss */
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr td:nth-child(n+2),
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr th:nth-child(n+2),
  body.node-type-science-module-reading div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr td:nth-child(n+2),
  body.node-type-science-module-reading div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr th:nth-child(n+2),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr td:nth-child(n+2),
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr th:nth-child(n+2) {
    display: none;
  }
  /* line 46, ../sass/phone/_phone_tables.scss */
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr::after,
  body.node-type-science-module-reading div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr::after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr::after {
    width: auto;
    color: #6d6f71;
    text-align: center;
    padding-left: 20px;
    display: block;
  }
  /* line 56, ../sass/phone/_phone_tables.scss */
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tbody tr::after,
  body.node-type-science-module-reading div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tbody tr::after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tbody tr::after {
    font-style: italic;
    padding-top: 8px;
  }
  /* line 60, ../sass/phone/_phone_tables.scss */
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr.low::after,
  body.node-type-science-module-reading div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr.low::after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr.low::after {
    content: 'Low Risk Exposure';
  }
  /* line 63, ../sass/phone/_phone_tables.scss */
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr.high::after,
  body.node-type-science-module-reading div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr.high::after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr.high::after {
    content: 'High Risk Exposure';
  }
  /* line 66, ../sass/phone/_phone_tables.scss */
  body.node-type-module div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr.no:after,
  body.node-type-science-module-reading div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr.no:after,
  body.node-type-science-module-section div#content div.field-type-text-long:nth-child(n+5) table.category-table.assessment tr.no:after {
    content: 'No Risk Exposure';
  }
}
