/*
 * @file
 * global.styles
 *
 * Styles you add here will load for all device sizes, they are "global", as
 * opposed to "responsive" styles, which only load for a given breakpoint (media
 * query) that you set in theme settings. See the README for more details.
 *
 *
 * How to use this file:
 * --------------------
 *
 * There are many empty selectors and some basic styles to act as a guide.
 * Nothing is set in stone and you can change anything - even delete all of it
 * and start with your own clean slate.
 *
 * To FORCE PRINT all selectors you can search and replace a single { (opening
 * curly brace) and insert an empty comment. This is very useful in conjuction
 * with FireSass: https://addons.mozilla.org/en-US/firefox/addon/firesass-for-firebug/
 *
 * See global.base also which includes normalize.css and some additional
 * helper classes and base styles.
 */
/* =============================================================================
 *   Base
 * ========================================================================== */
/*
 * To preserve theme settings never apply font properties to the HTML element.
 * This is critically important if you are using the Responsive JavaScript
 * feature as this relies on being able to set a pseudo font family on the HTML
 * element. If you need to set default font properties of any kind use the BODY
 * element as these can be overridden using font theme settings.
 */
/* line 41, ../sass/global.styles.scss */
html {
  background: #fff;
}

/* line 45, ../sass/global.styles.scss */

/* =============================================================================
 *   HTML Elements
 * ========================================================================== */
/* line 135, ../sass/global.styles.scss */
pre,
code,
tt,
samp,
kbd,
var {
  font-family: Consolas, Monaco, "Courier New", Courier, monospace, sans-serif;
}

/* =============================================================================
 *   Wrappers
 * ========================================================================== */
/*
 * Outer wrappers:
 * - #page-wrapper: body > #page-wrapper
 * - #page: body > #page-wrapper > #page
 * - .container: body > #page-wrapper > #page.container
 *
 * The .container class holds the page width value from theme settings. You can
 * style the .container class but do not add width such as border, padding,
 * margins etc.
 */
.container{
    padding: 0 20px;
    box-sizing: border-box;
}
/*
 * Wraps all header elements - branding and .region-header
 */
/*
 * Wraps the sidebars the content column
 */
/*
 * Main content column wrapper
 */
/*
 * Wraps the main-content-header, the content region and feed-icons. Use this
 * wrapper to style the entire main content column
 */
/*
 * Wraps the content region, avoid applying styles to this wrapper, its used
 * mainly for position and invisible gutters and can be problematic to style
 */
/*
 * Footer wrapper
 */
/*
 * Panels may need additional margin wrangling when in the $content region
 */
/*
 * Full Width Wrappers
 * These are used in the optional page--full-width-wrappers.tpl.php template.
 * All have internal .container classes. In the full width wrapper template the
 * .container classes set the width or max-width - you can style this but never
 * add any width/margin/padding/borders etc to .container
 */
/*
 * Wraps the leaderboard
 */
/*
 * Wraps the header
 */
/* line 231, ../sass/global.styles.scss */
#header-wrapper {
    padding: 28px 0;
}

/*
 * Wraps the nav elements
 */
/*
 * Wraps breadcrumb
 */
/*
 * Wraps messages and help
 */
/*
 * Wraps the secondary content/preface region
 */
/*
 * Wraps the main content column
 */
/*
 * Wraps the tertiary content/postfix region
 */
/*
 * Footer wrapper
 */
/* line 289, ../sass/global.styles.scss */
#footer-wrapper {
  /* Debug styles, is this working? */
}

/* =============================================================================
 *   Branding
 * ========================================================================== */
/*
 * Wraps all the branding elements, logo, name and slogan
 */
/*
 * Logo
 */
/* line 310, ../sass/global.styles.scss */
#logo {
  padding: 0;
}
/* line 313, ../sass/global.styles.scss */
#logo img {
  vertical-align: bottom;
  max-height: 75px;
}

/*
 * Wrapper for the site name and slogan
 */
/*
 * Site name (h1)
 */
/* line 328, ../sass/global.styles.scss */
#site-name {
  margin: 0;
}
/* line 333, ../sass/global.styles.scss */
#site-name a:link, #site-name a:visited {
  text-decoration: none;
}
/* line 338, ../sass/global.styles.scss */
#site-name a:hover, #site-name a:focus {

}

/*
 * Site slogan (h2)
 */
/* line 349, ../sass/global.styles.scss */
#site-slogan {
  margin: 0;
}

/* =============================================================================
 *   Page content header
 * ========================================================================== */
/*
 * Main content header wraps the page title, tabs and actions links
 */
/*
 * The main page title (h1)
 */
/* line 367, ../sass/global.styles.scss */
#page-title {
  margin: 0;
}

/* =============================================================================
 *   Misc Global Styles
 * ========================================================================== */
/*
 * Feed icons
 */
/*
 * Aggregator feed source
 */
/* line 385, ../sass/global.styles.scss */
#aggregator .feed-source .feed-icon {
  display: inline;
  float: none;
  margin-right: 10px;
}

/* line 392, ../sass/global.styles.scss */
.feed-details dt,
.feed-details dd {
  display: inline;
  margin: 0;
}

/*
 * Generic styles for the more link
 */
/*
 * Generic styles for links. See the ul.links declaration in node and comment stylesheets
 */
/* line 408, ../sass/global.styles.scss */
ul.links {
  margin: 0;
  padding: 0;
}
/* line 412, ../sass/global.styles.scss */
ul.links.inline {
  display: block;
}
/* line 416, ../sass/global.styles.scss */
ul.links li {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

/*
 * Search results are an ordered list so reset the margin
 */
/* line 427, ../sass/global.styles.scss */
.search-results {
  margin: 0;
  padding: 0;
}

/*
 * Attribution message and link
 */
/* line 436, ../sass/global.styles.scss */
.attribution {
  display: block;
  opacity: 0.65;
  padding: 1em 0;
  text-align: center;
}
/* line 442, ../sass/global.styles.scss */
.attribution a {
  text-decoration: none;
  color: inherit;
}
/* line 446, ../sass/global.styles.scss */
.attribution a:hover, .attribution a:focus {
  text-decoration: underline;
}

/* =============================================================================
 *   Regions
 * ========================================================================== */
/*
 * Standard region wrapper, don't add width to any regions, you will bork the layout - no margin, padding or borders etc
 */
/*
 * Regions have an inner div - perfect for adding margin, padding or borders
 */
/*
 * Regions can be nested, such as when using Panels
 */
/*
 * Header region, embedded in the #header
 */
/*
 * Generally used to output Drupals help block, if the help module is enabled
 */
/*
 * Secondary content
 */
/*
 * Sits above the main content header, like a content-top region
 */
/*
 * Sits below the main content, like a content-bottom region
 */
/*
 * Sidebars - targets both
 */
/*
 * First sidebar
 */
/*
 * Second sidebar
 */
/*
 * Tertiary content
 */
/*
 * Footer region
 */
/* =============================================================================
 *   Links
 * ========================================================================== */
/* line 540, ../sass/global.styles.scss */
a {
  text-decoration: none;
}
/* line 549, ../sass/global.styles.scss */
a:hover, a:focus {
  text-decoration: underline;
}

/* =============================================================================
 *   Primary, Secondary and Menu Bar region menus
 * ========================================================================== */
/* line 560, ../sass/global.styles.scss */
.nav {
  clear: both;
  margin: 10px 0;
}
/* line 564, ../sass/global.styles.scss */
.nav ul,
.nav ul.menu {
  margin: 0;
  padding: 0;
}
/* line 570, ../sass/global.styles.scss */
.nav li,
.nav ul.menu li {
  display: inline;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* line 579, ../sass/global.styles.scss */
.nav li a,
.nav ul.menu li a {
  display: block;
  white-space: nowrap;
  padding: 0 10px;
}
/* line 591, ../sass/global.styles.scss */
.nav .block {
  margin-bottom: 0;
}

/* =============================================================================
 *   Superfish
 * ========================================================================== */
/* line 601, ../sass/global.styles.scss */
ul.sf-menu {
  margin-bottom: 0;
}
/* line 604, ../sass/global.styles.scss */
ul.sf-menu a {
  border-left: 0;
  border-top: 0;
  padding: 0 10px;
  text-decoration: none;
  height: 2.5em;
  line-height: 2.5em;
}
/* line 617, ../sass/global.styles.scss */
ul.sf-menu li:hover, ul.sf-menu li.sfHover {
  outline: 0;
}
/* line 624, ../sass/global.styles.scss */
ul.sf-menu a:focus, ul.sf-menu a:hover, ul.sf-menu a:active {
  outline: 0;
}

/*
 * Superfish blocks
 */
/* line 640, ../sass/global.styles.scss */
.block-superfish ul {
  margin: 0 !important;
  padding: 0 !important;
}
/* line 651, ../sass/global.styles.scss */
.block-superfish li {
  margin: 0 !important;
  padding: 0 !important;
}

/*
 * Vertical style
 */
/* line 661, ../sass/global.styles.scss */
.sf-vertical {
  width: 100%;
}
/* line 664, ../sass/global.styles.scss */
.sf-vertical li {
  width: 100%;
}
/* line 669, ../sass/global.styles.scss */
.sf-vertical li:hover ul, .sf-vertical li.sfHover ul {
  left: 100%;
  top: 0;
  margin: 0;
  padding: 0;
}
/* line 677, ../sass/global.styles.scss */
.sf-vertical li a {
  padding: 0 10px;
}

/*
 * Navbar style
 */
/* line 687, ../sass/global.styles.scss */
.sf-navbar {
  padding-bottom: 0 !important;
}

/*
 * Sensible padding for the default style
 */
/* line 695, ../sass/global.styles.scss */
.sf-menu.sf-style-default a {
  padding: 0 10px;
}

/* =============================================================================
 *   Menu Toggles
 * ========================================================================== */
/* line 705, ../sass/global.styles.scss */
.at-mt .at-menu-toggle,
.at-mt .at-menu-toggle ul,
.at-mt .at-menu-toggle ul.menu {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}
/* line 713, ../sass/global.styles.scss */
.at-mt .at-menu-toggle-button {
  margin: 0;
}
/* line 717, ../sass/global.styles.scss */
.at-mt .at-menu-toggle ul a {
  padding: 0 10px;
  white-space: nowrap;
}

/* =============================================================================
 *   Menus, usually blocks
 * ========================================================================== */
/* line 728, ../sass/global.styles.scss */
ul.menu {
  padding-left: 15px;
}
/* line 731, ../sass/global.styles.scss */
ul.menu ul {
  padding-left: 15px;
}
/* line 739, ../sass/global.styles.scss */
ul.menu li {
  margin: 0;
}

/* If li.content exists it's a problem, so reset the padding */
/* line 768, ../sass/global.styles.scss */
.block .menu li.content {
  padding: 0;
}

/* =============================================================================
 *   Book navigation menu
 * ========================================================================== */
/* line 785, ../sass/global.styles.scss */
.book-navigation .page-up {
  /* Prevent text wrapping to a new line, assumes English "up" is used (two characters) */
  min-width: 2em;
  white-space: nowrap;
}
/* line 791, ../sass/global.styles.scss */
.book-navigation .menu {
  margin-left: 0;
}

/* =============================================================================
 *   Breadcrumbs
 * ========================================================================== */
/* line 801, ../sass/global.styles.scss */
#breadcrumb {
  margin: 10px 0;
  /* If the label is set to show in theme settings the label class is added */
}
/* line 805, ../sass/global.styles.scss */
#breadcrumb .breadcrumb-label {
  font-size: 1em;
  display: inline;
  padding-right: 10px;
}
/* line 810, ../sass/global.styles.scss */
#breadcrumb .breadcrumb-label:after {
  content: ":";
}
/* line 815, ../sass/global.styles.scss */
#breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 820, ../sass/global.styles.scss */
#breadcrumb .with-breadcrumb-label ol {
  display: inline;
}
/* line 824, ../sass/global.styles.scss */
#breadcrumb li {
  list-style: none;
  display: inline;
}

/* =============================================================================
 *   Pagers
 * ========================================================================== */
/* line 851, ../sass/global.styles.scss */
ul.pager {
  clear: both;
  margin: 0;
  text-align: center;
}

/* line 858, ../sass/global.styles.scss */
.item-list ul.pager li {
  margin: 0;
}

/* line 863, ../sass/global.styles.scss */
ul.pager li {
  background-image: none;
  display: inline;
  list-style-type: none;
  padding: .5em;
}
/* line 869, ../sass/global.styles.scss */
ul.pager li.pager-current {
  font-weight: 700;
}

/* line 875, ../sass/global.styles.scss */
.block ul.pager li {
  margin: 0;
}

/*
 * Theme the various states of pager links
 */
/* =============================================================================
 *   Skip Navigation
 * ========================================================================== */
/* line 912, ../sass/global.styles.scss */
#skip-link {
  left: 50%;
  margin-left: -6.5em;
  margin-top: 0;
  padding: 0 0.5em;
  position: absolute;
  width: 12em;
  z-index: 50;
}
/* line 921, ../sass/global.styles.scss */
#skip-link a {
  background: #444;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}
/* line 931, ../sass/global.styles.scss */
#skip-link a:link, #skip-link a:visited {
  background: #444;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}
/* line 942, ../sass/global.styles.scss */
#skip-link a:hover, #skip-link a:focus, #skip-link a:active {
  outline: 0;
}

/* =============================================================================
 *   Tabs (local tasks)
 * ========================================================================== */
/* line 955, ../sass/global.styles.scss */
#tasks {
  margin-bottom: 15px;
}

/* line 960, ../sass/global.styles.scss */
ul.primary {
  border-bottom-color: #ccc;
  margin: 20px 0;
  padding: 0 0 0 5px;
}
/* line 965, ../sass/global.styles.scss */
ul.primary li {
  display: block;
  float: left;
  margin: 0 1px -1px;
}
/* line 970, ../sass/global.styles.scss */
ul.primary li a {
  background-color: #f5f5f5;
  border-color: #ccc;
  margin-right: 1px;
  padding: 0 10px;
  display: block;
  float: left;
  height: 1.5em;
  line-height: 1.5em;
}
/* line 980, ../sass/global.styles.scss */
ul.primary li a:hover, ul.primary li a:focus {
  background-color: #eee;
  border-color: #ccc;
}
/* line 989, ../sass/global.styles.scss */
ul.primary li.active a,
ul.primary li.active a:hover,
ul.primary li.active a:focus {
  background-color: #fff;
  border-bottom-color: #fff;
}

/* line 999, ../sass/global.styles.scss */
ul.secondary {
  border-bottom: 1px solid #ccc;
  margin: 1em 0 0;
  padding: 0 .3em 1em;
}
/* line 1004, ../sass/global.styles.scss */
ul.secondary li {
  border-right: 0;
  list-style: none;
  padding: 0 10px 0 0;
}
/* line 1010, ../sass/global.styles.scss */
ul.secondary li a:hover, ul.secondary li a.active {
  border-bottom: none;
  text-decoration: underline;
}

/* =============================================================================
 *   Action links
 * ========================================================================== */
/* line 1024, ../sass/global.styles.scss */
ul.action-links {
  margin: 20px 0 0;
  list-style: none;
}

/* =============================================================================
 *  Field Styling
 * ========================================================================== */
/*
 * Wrapper for any field
 */
/*
 * Above and inline classes are on the field wrapper
 */
/*
 * When labels are set to inline in field display settings the clearfix class is automatically added
 */
/* line 1051, ../sass/global.styles.scss */
.field-label-inline {
  /* Remove the margin on inline field lables to preserve vertical formatting */
}
/* line 1054, ../sass/global.styles.scss */
.field-label-inline .field-label {
  margin: 0;
}

/*
 * Labels are h2 in Adaptivetheme. Use a strong selector to mitigate unwanted ineritance issues
 */
/* line 1062, ../sass/global.styles.scss */
.field-label {
  font-size: 1em;
  font-weight: 700;
  font-family: inherit;
  line-height: inherit;
  margin-bottom: 0;
}

/*
 * Field types (Core)
 */
/*
 * Image fields use the <figure> and <figcaption> elements from HTML5
 */
/*
 * Taxonomy
 */
/* line 1091, ../sass/global.styles.scss */
.field-type-taxonomy-term-reference {
  /* The same bottom margin as p, blockquote, ul, ol and dl */
  margin-bottom: 1.5em;
}
/* line 1096, ../sass/global.styles.scss */
.field-type-taxonomy-term-reference.field-label-inline .field-items {
  margin: 0;
  padding: 0;
}
/* line 1101, ../sass/global.styles.scss */
.field-type-taxonomy-term-reference.field-label-inline .field-item {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

/*
 * Text
 */
/*
 * Long text
 */
/*
 * Text with summary
 */
/*
 * File
 */
/*
 * Number/Integer
 */
/*
 * Decimal
 */
/*
 * Number float
 */
/*
 * List
 */
/*
 * List boolean
 */
/*
 * List integer
 */
/*
 * List float
 */
/*
 * Field types (Contrib)
 */
/*
 * Named fields
 */
/*
 * Underscores in field name are replaced with dashes
 */
/*
 * Image Alignment Theme Settings - included here so you can easily override
 */
/*
 * Float none setting
 */
/*
 * Float left setting
 */
/* line 1215, ../sass/global.styles.scss */
.ia-l .field-type-image figure,
.iat-l .field-type-image figure {
  margin: 5px 20px 15px 0;
}

/*
 * Centered setting
 */
/* line 1224, ../sass/global.styles.scss */
.ia-c .field-type-image figure,
.iat-c .field-type-image figure {
  margin: 5px auto 15px;
}

/*
 * Float right setting
 */
/* line 1233, ../sass/global.styles.scss */
.ia-r .field-type-image figure,
.iat-r .field-type-image figure {
  margin: 5px 0 15px 20px;
}

/* =============================================================================
 *   Block Styling
 * ========================================================================== */
/*
 * Main wrapper for most blocks, block_system_main does not have it
 */
/* line 1247, ../sass/global.styles.scss */
.block {
}

/*
 * Inner wrapper for most blocks, good for margin, padding and borders, block_system_main does not have it
 */
/*
 * The first block in the region
 */
/*
 * The last block in the region
 */
/*
 * Zebra striping for each block in the region
 */
/*
 * Zebra striping for each block in the region
 */
/*
 * Block title
 */
/* line 1285, ../sass/global.styles.scss */
.block-title {
  margin: 0;
}

/*
 * Block content wrapper
 */
/*
 * Match item list and block menu margin and padding
 */
/* line 1301, ../sass/global.styles.scss */
.block-content ul,
.block-content ol {
  padding: 0 0 0 15px;
}
/* line 1306, ../sass/global.styles.scss */
.block-content li {
  margin: 0;
  padding: 0;
}

/*
 * Block for the latest news items in the first category
 */
/*
 * Block for the latest news items in the first feed
 */
/*
 * First block created with "Add block" link
 */
/*
 * "Recent blog posts" block
 */
/*
 * "Book navigation" block for the current book's table of contents
 */
/*
 * "Recent comments" block
 */
/*
 * "Active forum topics" block
 */
/*
 * "New forum topics" block
 */
/*
 * Language switcher block
 */
/*
 * Custom menu block
 */
/*
 * "Recent content" block
 */
/*
 * "Syndicate" block for primary RSS feed; see also page.css's .feed-icon
 */
/*
 * "Most recent poll" block
 */
/*
 * "Author information" block for the profile of the page's author
 */
/*
 * "Search form" block
 */
/*
 * "Shortcuts" block
 */
/*
 * "Popular content" block
 */
/*
 * "Main menu" block
 */
/*
 * "Management" block for Drupal management menu
 */
/*
 * "Navigation" block for Drupal navigation menu
 */
/*
 * "User menu" block for Drupal user menu
 */
/*
 * "System help" block
 */
/*
 * "Main page content" block
 */
/*
 * "Powered by Drupal" block
 */
/*
 * "User login form" block
 */
/*
 * "Who's new" block for a list of the newest users
 */
/*
 * "Who's online" block for a list of the online users
 */
/* =============================================================================
 *   Node Styling
 * ========================================================================== */
/* line 1479, ../sass/global.styles.scss */
.node {
}
/* line 1496, ../sass/global.styles.scss */
.node .node-title {
  margin: 0;
}

/*
 * All nodes are given a node-FOO class that describes the type of content that
 * it is. If you create a new content type called "my-custom-type", it will
 * receive a "node-my-custom-type" class.
 */
/* =============================================================================
 *   Comment Styling - Comments, comment wrapper, comment form
 * ========================================================================== */
/*
 * Wrapper for the list of comments and its titles
 */
/* line 1554, ../sass/global.styles.scss */
#comments {
  margin: 1.5em 0;
}
/* line 1558, ../sass/global.styles.scss */
#comments h2.comment-title {
  margin: 0;
}
/* line 1562, ../sass/global.styles.scss */
#comments h2.comment-form {
  margin: 0;
}

/*
 * Wrapper for a single comment
 */
/* line 1572, ../sass/global.styles.scss */
.comment {
  margin-bottom: 20px;
}

/*
 * Comment title
 */
/* line 1603, ../sass/global.styles.scss */
.comment-title {
  margin: 0;
}

/*
 * Comment states
 */
/*
 * Preview of the comment before submitting new or updated comment
 */
/*
 * "New" marker for comments that are new for the current user
 */
/* line 1635, ../sass/global.styles.scss */
.new {
  color: #c00;
}

/*
 * Nested comments are indented
 */
/* line 1643, ../sass/global.styles.scss */
.indented {
  margin-left: 40px;
}

/* =============================================================================
 *   Forms
 * ========================================================================== */
/*
 * Wrapper for a form element (or group of form elements) and its label
 */
/* line 1657, ../sass/global.styles.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 1663, ../sass/global.styles.scss */
.form-item label {
  font-weight: 700;
}
/* line 1670, ../sass/global.styles.scss */
.form-item .description {
  font-size: 0.85em;
}

/*
 * Highlight marks and form required mark
 */
/* line 1683, ../sass/global.styles.scss */
.marker,
.form-required {
  color: #c00;
}

/*
 * The submit button
 */
/* line 1697, ../sass/global.styles.scss */
.container-inline div,
.container-inline label {
  display: inline;
}

/*
 * Define consistent borders
 */
/* line 1706, ../sass/global.styles.scss */
fieldset {
  border: 1px solid #ccc;
}

/*
 * Tips for Drupal's input formats
 */
/*
 * Buttons used by contrib modules like Media
 */
/* line 1720, ../sass/global.styles.scss */
a.button {
  -moz-appearance: button;
  -webkit-appearance: button;
}

/*
 * Password confirmation
 */
/* line 1728, ../sass/global.styles.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* =============================================================================
 *   Tables
 * ========================================================================== */
/* line 1738, ../sass/global.styles.scss */
table {
  margin: 10px 0;
  padding: 0;
  width: 100%;
}
/* line 1743, ../sass/global.styles.scss */
table.sticky-header {
  z-index: 10;
}

/* line 1749, ../sass/global.styles.scss */
table,
thead,
tbody,
tr,
th,
td {
  border-color: #ccc;
}

/* line 1759, ../sass/global.styles.scss */
table,
td,
th {
  vertical-align: middle;
}

/* line 1766, ../sass/global.styles.scss */
caption,
th,
td {
  text-align: left;
}

/* line 1773, ../sass/global.styles.scss */
thead tr {
  font-weight: 700;
  background-color: #e5e5e5;
}

/* line 1779, ../sass/global.styles.scss */
td,
th {
  border-bottom: 0;
  margin: 0;
  padding: 5px 7px;
}

/* line 1790, ../sass/global.styles.scss */
tbody tr {
  border-top: 1px solid #ccc;
}

/* line 1795, ../sass/global.styles.scss */
tr {
  /* Table row striping */
}
/* line 1797, ../sass/global.styles.scss */
tr.odd {
  background: #fff;
}
/* line 1802, ../sass/global.styles.scss */
tr.info, tr.even, tr:nth-child(2n+2) {
  border-bottom: 0;
  background-color: #f5f5f5;
}
/* line 1813, ../sass/global.styles.scss */
tr.odd td.active {
  background-color: #eee;
}
/* line 1817, ../sass/global.styles.scss */
tr.even td.active {
  background-color: #ebebeb;
}

/*
 * Forum tables
 * Core sets white-space to nowrap, which makes no sense
 */
/* line 1840, ../sass/global.styles.scss */
#forum td.created, #forum td.posts, #forum td.topics, #forum td.last-reply, #forum td.replies, #forum td.pager {
  white-space: normal;
}

/* =============================================================================
 *   Messages
 * ========================================================================== */
/* line 1856, ../sass/global.styles.scss */
div.messages {
  margin-bottom: 10px;
  margin-top: 10px;
}
/* line 1861, ../sass/global.styles.scss */
div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

/*
 * Unpublished nodes
 */
/* line 1902, ../sass/global.styles.scss */
.node-unpublished p.unpublished,
.comment-unpublished p.unpublished {
  color: pink;
  color: rgba(239, 170, 170, 0.4);
  font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  text-align: center;
  text-transform: uppercase;
  word-wrap: break-word;
}
/* line 186, ../sass/_custom.scss */
.ie6-7 .node-unpublished p.unpublished > *, .ie6-7
.comment-unpublished p.unpublished > * {
  position: relative;
}

/* =============================================================================
 *    Maintenance pages
 * ========================================================================== */
/* line 1913, ../sass/global.styles.scss */
.maintenance-page .container {
  padding: 40px 0;
}
/* line 1917, ../sass/global.styles.scss */
.maintenance-page #site-name,
.maintenance-page #page-title {
  margin: 0;
}

/* line 1925, ../sass/global.styles.scss */
.db-offline .container {
  margin: 0 auto;
  padding: 40px 0;
  width: 100%;
  max-width: 960px;
}
/* line 1932, ../sass/global.styles.scss */
.db-offline div.messages {
  margin: 20px 0 0;
}
/* line 1936, ../sass/global.styles.scss */
.db-offline #content {
  padding: 20px 0;
}

/* =============================================================================
 *   Misc overrides for contrib modules
 * ========================================================================== */
/*
 * Admin menu overrides
 */
/* line 1949, ../sass/global.styles.scss */
#admin-menu {
  margin: 0;
  padding: 0;
}

/*
 * Devel Module
 */
/* line 1958, ../sass/global.styles.scss */
.dev-query {
  background: #eee;
  padding: 30px;
}

/*
 * Styleguide module tweaks
 */
/* line 1967, ../sass/global.styles.scss */
#styleguide-header {
  padding: 0 10px;
}
/* line 1970, ../sass/global.styles.scss */
#styleguide-header .item-list {
  font-family: inherit;
  margin: 0 20px 20px 0;
  min-height: 260px;
  width: auto;
}


/* Start GCGJ Styles */
.burger{
    display: none;
}
#branding{
    float: left;
}
#sloan-logo,
.region-header{
    float: right;
}
#sloan-logo{
    width: 90px;
    margin-left: 78px;
}
#site-name,
#site-name a{
    font-family: FuturaStd-Bold;
    font-size: 28px;
    color: #000;
    line-height: 1;
}
#site-name a:hover{
    text-decoration: none;
}
#site-slogan{
    font-family: opensans;
    font-size: 18px;
    letter-spacing: 2.3px;
    text-transform: uppercase;
    margin-top: 4px;
}
.second-slogan p{
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.23;
    color: #55575A;
    margin-top: 12px;
}
.second-slogan p a{
    color: #55575A;
}
.second-slogan a:hover{
    text-decoration: none;
}

#nav-wrapper{
    border-top: solid 0.5px #000000;
    border-bottom: solid 0.5px #000000;
}
#nav-wrapper .nav ul.menu li{
    margin-right: 10px;
    position: relative;
}
#nav-wrapper .nav ul.menu li:last-child{
    margin-right: 0;
}
#nav-wrapper .nav ul.menu li a{
    font-family: FuturaStd-Bold;
    color: #55575A;
    text-transform: uppercase;
    letter-spacing: .7px;
    font-size: 19px;
    padding: 13px 25px 12px;
    line-height: 1;
}
#nav-wrapper .nav ul.menu li a.skinny{
    font-family: FuturaStd-Book;
    letter-spacing: 0.6px;
    color: #2a363b;
}
#nav-wrapper .nav ul.menu li:hover a,
#nav-wrapper .nav ul.menu li a:hover,
#nav-wrapper .nav ul.menu li a:focus,
#nav-wrapper .nav ul.menu li.active-trail a{
    background-color: #eaedef;
    border-radius: 2px;
    text-decoration: none;
}
#nav-wrapper .nav ul.menu ul{
    display: none;
    position: absolute;
    padding-top: 10px;
    z-index: 500;
}
#nav-wrapper .nav ul.menu li:hover ul{
    display: block;
}
#nav-wrapper .nav ul.menu ul li{
    display: block;
    float: none;   
    background-color: #55575A;
    margin: 0;
    border-bottom: solid 1px #35666d;
}
#nav-wrapper .nav ul.menu ul li:last-child{
    border-bottom: none;
}
#nav-wrapper nav > ul.menu > li.expanded:hover > a:after{
    content: '';
    display: block;
    position: absolute;
    height: 10px;
    width: 10px;
    -ms-transform: rotate(-315deg); /* IE 9 */
    -webkit-transform: rotate(-315deg); /* Chrome, Safari, Opera */
    transform: rotate(-315deg);
    background-color: #eaedef;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -5px;
}
#menu-bar{
    position: relative;
    margin: 0;
    padding: 10px 0;
}
#block-system-main-menu{
    float: left;
}
#menu-bar .block-google-appliance,
#menu-bar .block-search{
    position: absolute;
    width: 100%;
    right: 0;
    top: 0;
}
#nav-wrapper .nav ul.menu ul li a,
#nav-wrapper .nav ul.menu ul li a:hover{
    font-size: 16px;
}

#search-glass{
    float: right;
    z-index: 100;
    position: relative;
}
#search-glass,
#search-close{
    cursor: pointer;
    color: #55575A; 
    font-size: 26px;
    margin-top: 13px;
}
#menu-bar .block-search > form,
#google-appliance-block-form{
    position: relative;
}

#menu-bar .block-search.search-js-processed input[type='submit'],
#google-appliance-block-form.search-js-processed input[type='submit'],
#menu-bar .block-search.search-js-processed .form-item-search-keys,
#google-appliance-block-form.search-js-processed .form-item-search-keys{
    display: none;
}
#menu-bar .block-search.search-js-processed .form-item-search-keys,
#google-appliance-block-form.search-js-processed .form-item-search-keys{
    position: absolute;
    z-index: 101;
    top: 0;
    right: 0;
    margin: 0;
    padding-right: 17px;
    width: 100%;
    background-color: #FFF;
    margin-top: 1px;
}
#search-close{
    position: absolute;
    right: 0;
}
#menu-bar .block-search.search-js-processed input[type='search'],
#google-appliance-block-form.search-js-processed input[type='text']{
    outline: none;
    border: none;
    padding: 20px 20px 20px;
    box-sizing: border-box;
    width: 100%;
    font-size: 19px;
    font-family: FuturaStd-Bold;
    color: #9b9b9b;
}
.google-appliance-results-control-bar{
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-radius: 0;
    background-color: transparent;
    border-left: none;
    border-right: none;
    padding: 15px 0; 
    margin-bottom: 50px;
}
.google-appliance-results-control-bar:nth-of-type(2){
    display: none;
}
.page-gsearch .pager{
    margin-top: 70px;
    text-align: left;
}
.search-results li{
    margin-bottom: 50px;
}
.search-results .title{
    margin-bottom: 10px;
    margin-top: 0;
}
.search-results .title a{
    color: #55575A;
}
.search-results .search-snippet-info{
    padding-left: 0;
    max-width: 780px;
}
/* Search Results */

#main-content #search-results-heading,
#main-content .search-google-appliance-search-form{
    display: none;
}

/* Search */

.page-search #search-form input[type="text"]{
    width: 73%;
    max-width: 400px;
    margin-bottom: 20px;
}

#search-form label{
    display: none;
}

.gsc-control-cse{
    padding: 0 !important;
}

.gsc-control-cse table,
.gsc-control-cse tbody,
.gsc-control-cse tbody tr{
    border: none ;
    margin: 0;
    padding: 0;
}
.gsc-above-wrapper-area{
    border: none !important;
    border-top: 1px solid #000 !important;
    border-bottom: 1px solid #000 !important;
    font-size: 18px !important;
    color: #333 !important;
    padding: 0 !important;
    border: 1px solid #ddd;
    margin-bottom: 30px;
}
.gsc-result-info{
    font-size: 18px !important;
    color: #333 !important;
    font-family: 'FuturaStd-Book' !important;  
}
.gsc-selected-option-container{
    background-color: #FFF !important;
    font-size: 16px !important;
    font-weight: normal !important;
    background-image: none !important;
    box-shadow: none !important;
    border-radius: 6px !important;
}
.gsc-webResult .gsc-result{
    margin-bottom: 35px !important;
    padding: 0 0 30px 0 !important;
    border-bottom: 1px dashed #cecece !important;
}
.gs-result .gs-title{
    height: auto !important;
    overflow: visible !important; 
    margin-bottom: 15px !important;
    text-decoration: none !important;
    font-family: 'FuturaStd-Book' !important;
}
.gs-result .gs-title *{
    font-size: 21.6px !important;
    font-weight: normal !important;
    color: #007fa2 !important;
    text-decoration: none !important;
}
.gs-webResult div.gs-visibleUrl, .gs-imageResult div.gs-visibleUrl{
    color: #888 !important;
    font-size: 15.3px !important;
}
.gsc-control-cse .gsc-table-result{
    font-size: 18px !important;
    font-family: 'FuturaStd-Book' !important;
    margin: 5px 0 0 0 !important;
}
.gsc-table-cell-thumbnail, .gs-promotion-image-cell{
    display: none !important;
}
.gsc-table-result, .gsc-thumbnail-inside, .gsc-url-top{
    padding: 0 !important;
}
.gcsc-branding{
    display: none !important;
}
.gsc-results .gsc-cursor-box{
    text-align: center;
    margin-bottom: 30px !important;
}
.gsc-results .gsc-cursor-box .gsc-cursor-page{
    margin: .3em !important;
    font-size: 18px;
    font-weight: bold;
    color: #A80230 !important;
    display: inline-block !important;
}
.gsc-results .gsc-cursor-box .gsc-cursor-current-page{
    text-decoration: underline !important;
}
.gsc-orderby-container{
    padding-right: 8px;
    font-family: 'FuturaStd-Book' !important;
}

/* Home Mission Splash */
#secondary-content-wrapper{
    background-size: cover;
    background-position: top center;
}
.view-home-splash{
    padding-top: 100px;
    padding-bottom: 165px;
}
.view-home-splash .views-field-title{
    max-width: 750px;
    color: #FFF;
    font-size: 60px;
    font-family: FuturaStd-Bold;
    text-transform: uppercase;
    line-height: 1.07;
    letter-spacing: -.1px;
}
.view-home-splash .views-field-field-mission-link{
    margin-top: 55px;
}
.view-home-splash .views-field-field-mission-link a{
    display: inline-block;
    font-size: 16px;
    font-family: FuturaStd-Bold;
    line-height: 1.06;
    color: #FFF;
    border-radius: 6px;
    border: solid 1px #ffffff;
    text-transform: uppercase;
    padding: 28px 30px;
}
.view-home-splash .views-field-field-mission-link a:hover{
    text-decoration: none;
}

/* Home Main Content */
.front #main-content{
    padding-top: 82px;
}

.front .view-whats-new{
    margin-bottom: 114px;
}

.front .intro-block{
    font-size: 18px;
    max-width: 700px;
    line-height: 1.44;
    margin-bottom: 45px;
}

/* Teaser Cards */

.node-teaser-card{
    max-width: 620px;
}

.group-card-type-date{
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.group-card-type-date > div{
    display: inline-block;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #000;
    line-height: 1;
    letter-spacing: .9px;
}
.group-card-type-date > div:last-child{
    margin-right: 0;
    border-right: 0;
    padding-right: 0;
}
.group-card-top img{
    border-radius: 6px 6px 0 0;
    vertical-align: bottom;
}
.group-card-bottom{
    background-color: #ffffff;
    border: solid 1px #979797;
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-sizing: border-box;
    padding: 22px 22px 30px;
}
.group-card-bottom .node-title,
.group-card-bottom .node-title a{
    font-family: FuturaStd-Bold;
    line-height: 1.2;
    font-size: 20px;
    font-weight: normal;
    color: #288dc0;
}
.group-card-bottom .node-title{
    margin-bottom: 12px;
}
.group-card-bottom .node-title a:hover{
    text-decoration: none;
}
.group-card-bottom .field-name-body{
    font-size: 14px;
    line-height: 1.57;
}

/* Card Grid */
.node-type-sub-topic-landing-page .field-type-entityreference{
    margin-bottom: 75px;
    margin-top: 50px;
}
.node-type-sub-topic-landing-page .field-type-entityreference:last-of-type{
    margin-bottom: 0;
}

.node-type-sub-topic-landing-page .field-type-entityreference > .field-items:after,
.card-grid .view-content:after{
    display: block;
    content: '';
    clear: both;
}
.node-type-sub-topic-landing-page .field-type-entityreference > .field-items > .field-item,
.card-grid .views-row{
    float: left;
    box-sizing: border-box;
    width: 31.66%;
    margin-right: 2.5%;
    margin-bottom: 2.5%;
}

.sub-topics.card-grid .views-row{
    margin-bottom: 60px;
}

.node-type-sub-topic-landing-page .field-type-entityreference > .field-items > .field-item{
    margin-bottom: 60px;
}

.node-type-sub-topic-landing-page .field-type-entityreference > .field-items > .field-item:nth-child(3n+3),
.card-grid .views-row:nth-child(3n+3){
    margin-right: 0;
}

/* CTA Blocks */
.bold-cta-title h2.block-title{
    font-size: 22px;
    text-transform: uppercase;
}
.bold-cta-title h2.block-title:before{
    display: none;
}
.cta-list .views-row{
    margin-bottom: 70px;
}
.node-teaser-card-large .node-content{
    position: relative;
}
.group-large-card-right{
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: 0 2px 40px 0 rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  padding: 45px 40px;
  max-width: 470px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: 0;
  position: absolute;
}
.group-large-card-right:before{
    content: '';
    width: 33px;
    height: 33px;
    position: absolute;
    top: 18px;
    left: 18px;
    display: block;
    background-image: url('images/blue-corner-1.png');
}
.group-large-card-right:after{
    content: '';
    width: 33px;
    height: 33px;
    display: block;
    position: absolute;
    right: 18px;
    bottom: 18px;
    background-image: url('images/blue-corner-2.png');
}
.blue .group-large-card-right:before{
    background-image: url('images/blue-corner-1.png');
}
.blue .group-large-card-right:after{
    background-image: url('images/blue-corner-2.png');
}
.red .group-large-card-right:before{
    background-image: url('images/magenta-corner-1.png');
}
.red .group-large-card-right:after{
    background-image: url('images/magenta-corner-2.png');
}
.orange .group-large-card-right:before{
    background-image: url('images/orange-corner-1.png');
}
.orange .group-large-card-right:after{
    background-image: url('images/orange-corner-2.png');
}
.purple .group-large-card-right:before{
    background-image: url('images/purple-corner-1.png');
}
.purple .group-large-card-right:after{
    background-image: url('images/purple-corner-2.png');
}
.green .group-large-card-right:before{
    background-image: url('images/green-corner-1.png');
}
.green .group-large-card-right:after{
    background-image: url('images/green-corner-2.png');
}
.views-row-even .group-large-card-right{
    left: 0;
}
.views-row-even .group-large-card-left{
    text-align: right;
}
.node-teaser-card-large h2.node-title{
    margin-bottom: 15px;
}
.node-teaser-card-large h2.node-title,
.node-teaser-card-large h2.node-title a{
    font-size: 24px;
    line-height: 1.33;
    font-family: FuturaStd-Bold;
    font-weight: normal;
}
.field-name-field-cta-link{
    margin-top: 25px;
}
.field-name-field-cta-link a{
    max-width: 279px;
    display: block;
    box-sizing: border-box;
    text-align: center;
    color: #FFF;
    font-family: FuturaStd-Bold;
    font-size: 14px;
    font-weight: normal;
    background-color: #ccc;
    text-transform: uppercase;
    border-radius: 6px;
    padding: 14px 0 13px;
}
.field-name-field-cta-link a:hover{
    text-decoration: none;
}
.blue .field-name-field-cta-link a{
    background-color: #288dc0;
}
.red .field-name-field-cta-link a{
    background-color: #ec0044;
}
.orange .field-name-field-cta-link a{
    background-color: #ed7700;
}
.purple .field-name-field-cta-link a{
    background-color: #68418a;
}
.green .field-name-field-cta-link a{
    background-color: #a8ac21;
}

/* People Listing */

.people-listing .views-row{
    margin-bottom: 30px;
}
.member-card{
    border: 1px solid #c6c5c7;
    max-width: 750px;
    box-sizing: border-box;
    padding: 32px 35px 40px;
    border-radius: 0 0 6px 6px;
    cursor: pointer;
}
.member-card .views-field-body{
    display: none;
    padding-top: 40px;
}
.member-left,
.member-right{
    display: table-cell;
    vertical-align: middle;
}
.member-right .views-field-title{
    font-size: 20px;
    font-family: FuturaStd-Bold;
    font-weight: normal;
    text-transform: uppercase;
    color: #006b67;
}
.member-right{
    font-size: 18px;
    line-height: 1.67;
}
.member-left{
    padding-right: 50px;
}
.member-right .views-field-field-job-title{
    line-height: 1.4;
    margin-bottom: 5px;
}
/* Front Twitter */
.front #tertiary-content-wrapper{
    background-color: #288dc0;
    padding-top: 104px;
    padding-bottom: 90px;
}

.view-twitter-feed{
    padding-top: 112px;
    background-repeat: no-repeat;
    background-image: url('images/twitter-logo-white.png');
    background-position: center top;
}

.view-twitter-feed .views-row{
    background-color: #FFF;
    border-radius: 0 0 3px 3px;
    padding: 10px 20px 20px;
    font-family: HelveticaNeue, Arial;
}

.views-field-field-tweet-creation-date{
    border-bottom: solid 1px #979797;
    text-align: right;
    padding: 15px 0 15px 32px;
    line-height: 1;
    margin-bottom: 15px;
    background-repeat: no-repeat;
    background-image: url('images/twitter-logo-blue.png');
    background-position: left center;
}
.views-field-field-tweet-contents p{
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.5;
}
.views-field-field-tweet-contents a{
    color: #288dc0;
}

.view-twitter-feed .view-footer{
    margin-top: 80px;
}

/* General Page Styles */
.not-front #columns{
    padding-top: 90px;
    padding-bottom: 90px;
}
#header-content-wrapper,
.not-front .full-color-title #full-title-experience{
    padding-top: 90px;
    padding-bottom: 120px;
    background-color: #288dc0;
}
.not-front .full-color-title #secondary-content-wrapper,
.not-front .full-color-title #columns{
    padding-top: 70px;
}
.not-front .resource-search-page #columns{
    padding-top: 0;
}
.resource-filter-mobile,
.mobile-filter-close{
    display: none;
}
#header-content-wrapper h2.block-title,
.special-title .node-full > .node-content > h2.node-title,
h1#page-title{
    font-family: FuturaStd-Bold;
    font-size: 60px;
    font-weight: normal;
    line-height: 1.07;
    letter-spacing: -.1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
#header-content-wrapper h2.block-title:before{
    display: none;
}
.header-block .block-content p,
.node-type-event .field-name-field-pub-date,
.field-name-field-intro-text,
.title-intro-text{
    font-family: FuturaStd-Light;
    font-size: 36px;
    font-weight: normal;
    line-height: 1.33;
    padding-bottom: 70px;
    border-bottom: .5px solid #000000;
    margin-bottom: 60px;
}
#full-title-experience .title-intro-text{
    padding-bottom: 0;
    margin-bottom: 0;
}
.header-block .block-content p,
.title-intro-text{
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
    color: #FFF;
}
.node-type-event .field-name-field-pub-date{
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.field-name-field-intro-text .field-items{
    max-width: 990px;
}

.field-name-body img{
    margin-bottom: 40px;
    vertical-align: bottom;
}
.node-full .field-name-body{
    max-width: 750px;
    margin-top: 40px;
}

/* General Block Styles */
h2.block-title:before{
    content: '';
    display: block;
    width: 77px;
    height: 3px;
    background-color: #ec0044;
    margin-bottom: 5px;
}
.orange h2.block-title:before{
    background-color: #ed7700;
}
.purple h2.block-title:before{
    background-color: #68418a;
}
.green h2.block-title:before{
    background-color: #a8ac21;
}
h2.block-title{
    font-size: 36px;
    text-transform: uppercase;
    font-family: FuturaStd-Bold;
    font-weight: normal;
    margin-bottom: 15px;
}
.small-title h2.block-title{ 
    font-size: 18px;
    line-height: 1.67;
    margin-bottom: 25px;
}
.small-title h2.block-title:before{
    display: none;
}
.contact-block{
    margin-top: 80px;
    max-width: 730px;
}

/* Whats New Page */
.link-button-filters .views-exposed-widgets{
    margin-bottom: 80px;
}
.link-button-filters .form-type-bef-link{
    display: inline-block;
    margin-right: 6px;
}
.link-button-filters .form-type-bef-link:last-child{
    margin-right: 0;
}
.link-button-filters .form-type-bef-link a{
    font-size: 19px;
    color: #55575A;
    line-height: 1;
    text-transform: uppercase;
    border: 1px solid #55575A;
    border-radius: 2px;
    padding: 10px 25px;
    display: inline-block;
}
.link-button-filters .form-type-bef-link a.active{
    background-color: #55575A;
    color: #FFF;
}
.link-button-filters .form-type-bef-link a:hover{
    text-decoration: none;
}

/* Blog, News, Events detail pages */
.group-full-type-date{
    margin-left: 3px;
}
.group-full-type-date > div{
    display: inline-block;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #000;
    line-height: 1;
    letter-spacing: .9px;
    font-family: FuturaStd-Bold;
    font-weight: normal;
    font-size: 14px;
    text-transform: uppercase;
}
.group-full-type-date > div:last-child{
    margin-right: 0;
    border-right: 0;
    padding-right: 0;
}
.node-type-news .node-full h2.node-title{
    border-bottom: .5px solid #000;
    padding-bottom: 40px;
}



/* Buttons */
.more-red .more-link a:hover{
    text-decoration: none;
}
.more-red .more-link a{
    display: block;
    border-radius: 6px;
    background-color: #ec0044;
    color: #FFF;
    text-transform: uppercase;
    font-family: FuturaStd-Bold;
    font-weight: normal;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    max-width: 360px;
    box-sizing: border-box;
    margin: 25px auto 0;
    padding: 30px 0 28px;
}
.view-footer .twitter-more:hover{
    text-decoration: none;
}
.view-footer .twitter-more{
    display: block;
    max-width: 360px;
    font-size: 16px;
    font-family: FuturaStd-Bold;
    line-height: 1.06;
    color: #FFF;
    border-radius: 6px;
    border: solid 1px #ffffff;
    text-transform: uppercase;
    padding: 28px 30px;
    color: #FFF;
    text-align: center;
    margin: auto;
    box-sizing: border-box;
}

/* Footer */
#footer{
    padding-top: 40px;
    padding-bottom: 90px;
}
.front #footer{
    margin-top: 50px;
}
#footer .footer-social-media{
    float: right;
}
#footer .block-footer-logos,
#footer .footer-name-slogan{
    float: left;
}
.footer-logo{
    margin-top: 2px;
}
#footer .mailchimp-block{
    float: right;
    width: 360px;
}
#fourth-content-wrapper{
    background-color: #cecece;
    padding: 30px 0;
}
#mc_embed_signup{
    background: transparent !important;
}
#mc_embed_signup .button{
    background-color: #A41F35 !important;
}
#mc_embed_signup .button:hover{
    background-color: #d02d48 !important;
}
#mc_embed_signup div#mce-responses > div{
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-weight: normal;
    line-height: 1.4;
}
#mc_embed_signup div#mce-responses{
    float: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: left;
}
#mc_embed_signup #mce-success-response{
    color: #000 !important;
    font-weight: bold;
}
.chimp-fields:after{
    content: '';
    clear: both;
    display: block;
}
.chimp-text,
.chimp-fields{
    display: inline-block;
    width: 50%;
    vertical-align: middle;
    margin-right: -4px;
    box-sizing: border-box;
}
.chimp-text{
    padding-right: 40px;
}
.chimp-fields{
    text-align: right;
}
#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error{
    position: absolute;
    left: 0;
    margin-top: 4px;
}
.mailchimp-block #mc_embed_signup h2{
    font-weight: normal;
    font-size: 18px;
    margin: 0 0 10px;
}
.mailchimp-block #mc_embed_signup p{
    font-size: 16px;
    line-height: 1.4;
}
.mailchimp-block #mc_embed_signup form{
    margin: 0;
    padding: 0;
}
.mailchimp-block .submit-button{
    width: 116px;
    display: table-cell;
    vertical-align: middle;
    margin-top: 1px;
}
#mc_embed_signup .button{
    margin-bottom: 0 !important;
}
.mailchimp-block #mc_embed_signup .mc-field-group{
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 0 !important;
    min-height: 0 !important;
    padding-right: 20px;
}
.view-social-media .view-content .views-row{
    display: inline-block;
    margin-right: 6px;
}
.view-social-media .view-content .views-row img{
    vertical-align: bottom;
}
.view-social-media .view-content .views-row:last-child{
    margin-right: 0;
}
.footer-name,
.footer-name a{
    font-family: FuturaStd-Bold;
    font-size: 28px;
    color: #000;
    line-height: 1;
}
.footer-name a:hover{
    text-decoration: none;
}
.footer-slogan{
    font-family: opensans;
    font-size: 18px;
    letter-spacing: 2.3px;
    text-transform: uppercase;
    margin-top: 4px;
}
.footer-address{
    clear: both;
    padding: 30px 0;
}
.footer-address p{
    font-size: 16px;
    line-height: 1.5;
}
#footer .sloan-logo{
    float: left;
    width: 105px;
}
#footer .mit-logo{
    float: right;
}

.footer-logo a,
.footer-logo span{
    display: inline-block;
    vertical-align: middle;
}
.footer-logo img{
    height: 75px;
    vertical-align: bottom;
}
.footer-logo .sloan-footer-logo img{
    height: 45px;
}
.footer-logo .logo-divider{
    width: 1px;
    height: 59px;
    background-color: #6d6e71;
    margin: 0 20px;
}

/* Main Topic Styles */

.orange #header-content-wrapper{
    background-color: #ed7700;
}
.purple #header-content-wrapper{
    background-color: #68418a;
}
.green #header-content-wrapper{
    background-color: #a8ac21;
}

.node-sub-topic-landing-page.node-teaser-card-2 .group-teaser-2-top{
    border-bottom: 7px solid;
}
.orange .node-sub-topic-landing-page.node-teaser-card-2 .group-teaser-2-top{
    border-color: #ed7700;
}
.purple .node-sub-topic-landing-page.node-teaser-card-2 .group-teaser-2-top{
    border-color: #68418a;
}
.green .node-sub-topic-landing-page.node-teaser-card-2 .group-teaser-2-top{
    border-color: #a8ac21;
}
.node-sub-topic-landing-page.node-teaser-card-2 .group-teaser-2-top img{
    vertical-align: bottom;
    border-radius: 4px 4px 0 0;
    width: 100%;
}

.node-sub-topic-landing-page.node-teaser-card-2 .group-teaser-2-bottom{
    padding-top: 10px;
}

.node-sub-topic-landing-page.node-teaser-card-2 .node-title{
    margin-bottom: 5px;
}
.node-sub-topic-landing-page.node-teaser-card-2 .node-title a{
    font-size: 20px;
    text-transform: uppercase;
}
.orange .node-sub-topic-landing-page.node-teaser-card-2 .node-title a{
    color: #ed7700;
}
.purple .node-sub-topic-landing-page.node-teaser-card-2 .node-title a{
    color: #68418a;
}
.green .node-sub-topic-landing-page.node-teaser-card-2 .node-title a{
    color: #a8ac21;
}

.node-sub-topic-landing-page.node-teaser-card-2 .field-name-body p{
    font-size: 14px;
    line-height: 1.57;
}

.sidebar-first .content-inner{
    padding-left: 90px;
    box-sizing: border-box;
}
.resource-search-page .region-sidebar-first{
    border-radius: 2px;
    background-color: #f7f7f7;
    padding: 35px 30px;
    box-sizing: border-box;
    margin-top: 20px;
}
.resource-search-page .region-sidebar-first .region-inner:before{
    content: 'Filter';
    font-size: 18px;
    font-family: FuturaSTD-Bold;
    display: block;
    margin-bottom: 20px;
}
.block-facetapi:first-of-type:before{
    content: 'Topics';
    display: block;
    margin-bottom: 10px;
}
.block-facetapi.resource-filter:before{
    content: 'Resource Type';
    display: block;
    margin-bottom: 10px;
    margin-top: 30px;
}

.block-facetapi{
    margin-bottom: 12px;
}

.block-facetapi .block-inner{
    border: solid 1px #dcd8d8;
    background-color: #FFF;
    padding: 14px;
}

.block-facetapi h2.block-title:before{
    display: none;
}
.block-facetapi h2.block-title{
    font-size: 14px;
    margin-bottom: 0px;
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}
.block-facetapi h2.block-title:after{
    content: '';
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url('images/filter-arrow-orange.png');
    background-repeat: no-repeat;
    background-position: center;
}
.block-facetapi h2.block-title.collapsed:after{
    -ms-transform: rotate(-90deg); /* IE 9 */
    -webkit-transform: rotate(-90deg); /* Chrome, Safari, Opera */
    transform: rotate(-90deg);
}
.block-facetapi .block-content{
    margin-top: 8px;
}

ul.facetapi-facetapi-links{
    padding: 0;
    margin: 0;
}
ul.facetapi-facetapi-links li.leaf{
    list-style: none;
    margin-left: 0;
}

.orange ul.facetapi-facetapi-links li.leaf a{
    color: #ed7700;
}
.purple ul.facetapi-facetapi-links li.leaf a{
    color: #68418a;
}
.green ul.facetapi-facetapi-links li.leaf a{
    color: #a8ac21;
}

.node-resource .field-type-taxonomy-term-reference{
    margin-bottom: 2px;
}
.node-resource .field-type-taxonomy-term-reference ul{
    padding: 0;
    margin: 0;
}
.node-resource .field-type-taxonomy-term-reference ul li{
    list-style: none;
    font-size: 11px;
    line-height: 25px;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.node-resource .node-title{
    margin-bottom: 3px;
}
.field-name-field-link-to-target a,
.node-generic-featured .node-title a,
.node-resource .node-title a{
    display: block;
    padding-left: 30px;
    background-image: url('images/orange-download.png');
    background-repeat: no-repeat;
    background-position: left center;
    padding-top: 3px;
}

.green .field-name-field-link-to-target a,
.green .node-generic-featured .node-title a,
.green .node-resource .node-title a{
    background-image: url('images/green-download.png');
}
.purple .field-name-field-link-to-target a,
.purple .node-generic-featured .node-title a,
.purple .node-resource .node-title a{
    background-image: url('images/purple-download.png');
}

.orange .field-name-field-link-to-target a,
.orange .node-generic-featured .node-title a,
.orange .node-resource .field-type-taxonomy-term-reference ul li,
.orange .node-resource .node-title a{
    color: #ed7700;
}
.purple .field-name-field-link-to-target a,
.purple .node-generic-featured .node-title a,
.purple .node-resource .field-type-taxonomy-term-reference ul li,
.purple .node-resource .node-title a{
    color: #68418a;
}
.green .field-name-field-link-to-target a,
.green .node-generic-featured .node-title a,
.green .node-resource .field-type-taxonomy-term-reference ul li,
.green .node-resource .node-title a{
    color: #a8ac21;
}

.resource-list .views-row{
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #c6c5c7;
}

.node-generic-featured.node-teaser .field-name-body{
    margin-top: 0;
}
.node-generic-featured.node-teaser .field-name-body p,
.node-resource .field-name-field-summary{
    font-size: 14px;
    line-height: 22px;
}

.resource-list .view-header{
    font-size: 18px;
    line-height: 1.39;
    margin-top: 13px;
    margin-bottom: 20px;
}
.resource-list .view-filters{

}
.resource-list .view-content{
    clear: both;
    padding-top: 30px;
}

#edit-search-api-views-fulltext-wrapper label{
    display: none;
}

.form-item-search-api-views-fulltext input{
    border: solid 1px #4a4a4a;
    padding: 15px;
    max-width: 210px;
}
.views-exposed-form .views-exposed-widget{
    padding-right: 6px;
    padding-top: 0;
}
.views-exposed-form .views-exposed-widget:last-child{
    padding-right: 0;
}
.views-exposed-form .views-exposed-widget .form-submit{
    border: 1px solid #4a4a4a;
    background: #4a4a4a;
    color: #FFF;
    padding: 15px;
    margin-top: 0;
}
.orange .views-exposed-form .views-exposed-widget .form-submit{
    border: 1px solid #ed7700;
    background: #ed7700;
}

.purple .views-exposed-form .views-exposed-widget .form-submit{
    border: 1px solid #68418a;
    background: #68418a;
}

.green .views-exposed-form .views-exposed-widget .form-submit{
    border: 1px solid #a8ac21;
    background: #a8ac21;
}
/* Sub Topic Pages */
.view-sub-topic-title .views-field-field-main-topic{
    font-size: 14px;
    font-family: FuturaStd-Bold;
    text-transform: uppercase;
    color: #FFF;
    margin-bottom: 5px;
    margin-left: 2px;
}

.node-type-sub-topic-landing-page .node-teaser .links{
    display: none;
}
.node-generic-featured.node-teaser .node-title,
.field-name-field-featured-resources .node-resource .node-title{
    margin-bottom: 6px;
}
.node-generic-featured.node-teaser .group-resource-teaser-title .node-title a,
.field-name-field-featured-resources .node-resource .group-resource-teaser-title .node-title a{
    background-image: none;
    padding-left: 0;
    padding-top: 0;
}
.node-generic-featured.node-teaser,
.field-name-field-featured-resources .node-resource{
    border-top: 7px solid #000;
    padding-top: 12px;
}
.node-generic-featured.node-teaser .field-type-taxonomy-term-reference,
.field-name-field-featured-resources .node-resource .field-type-taxonomy-term-reference{
    margin-bottom: 6px;
}
.node-generic-featured.node-teaser .field-name-field-link-to-target,
.node-resource .node-title.download-link{
    border-top: solid 1px #9b9b9b;
    padding-top: 10px;
    margin-top: 30px;
}
.node-generic-featured.node-teaser .field-name-field-link-to-target a,
.node-resource .node-title.download-link a{
    font-size: 15px;
    text-transform: uppercase;
    font-size: 18px;
    font-family: FuturaStd-Bold;
}

.field-name-field-also-worth-reading .download-link,
.field-name-field-also-worth-reading .field-name-field-resource-type{
    display: none;
}

/* Form Elements */

.webform-component{
    margin-bottom: 35px;
}

.webform-component label{
    margin-bottom: 10px;
}

.webform-component input[type="text"],
.webform-component input[type="email"]{
    padding: 26px 18px;
    border-radius: 6px;
    border: 1px solid #c6c5c7;
    width: 100%;
    box-sizing: border-box;
    max-width: 727px;
}
.webform-component textarea{
    border-radius: 6px;
    border: 1px solid #c6c5c7;
}
.webform-component .grippie{
    display: none;
}
.webform-submit{
    background-color: #ec0044;
    border: none;
    border-radius: 6px;
    color: #FFF;
    text-transform: uppercase;
    font-family: FuturaStd-Bold;
    text-align: center;
    padding: 25px 54px;
    box-sizing: border-box;
}

/* Pagerer */

.ajax-progress-throbber {
  display: none;
}

table.pagerer{
    width: 100%;
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 0;
    font-weight: 500;
}

.pagerer-page{
    border: 1px solid #55575A;
    padding: 13px 14px 12px;
    color: #55575A;
    background: #FFF;
    border-radius: 2px;
}

.orange .pagerer-page{
    color: #ed7700;
    border-color: #ed7700;
}

.green .pagerer-page{
    color: #a8ac21;
    border-color: #a8ac21;
}

.purple .pagerer-page{
    color: #68418a;
    border-color: #68418a;
}

.pager .pager-next a,
.pager .pager-previous a{
    height: 0;
    padding-top: 50px;
    width: 50px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    background-color: #55575A;
    border-radius: 2px;
}

.orange .pager .pager-next a,
.orange .pager .pager-previous a{
    background-color: #ed7700;
}

.green .pager .pager-next a,
.green .pager .pager-previous a{
    background-color: #a8ac21;
}

.purple .pager .pager-next a,
.purple .pager .pager-previous a{
    background-color: #68418a;
}

table.pagerer tbody tr td div.item-list ul.pager li.pager-next,
table.pagerer tbody tr td div.item-list ul.pager li.pager-previous{
    display: inline-block;
    margin-top: 6px;
}
table.pagerer tbody tr td div.item-list ul.pager li.pager-previous{
    margin-right: 13px;
}

.pager .pager-next a{
    background-image: url(images/right-arrow.png);
}

.pager .pager-previous a{
    background-image: url(images/left-arrow.png);
}
.view-whats-new .pagerer-left .pager{
    text-align: center;
}