/*
 * @file
 * Baseline SCSS file to generate CSS that can be provided to other applications 
 * that want to use the baseline giving styles
 */
button, input[type="button"], input[type="reset"], input[type="submit"],
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-font-smoothing: antialiased;
  background-color: #005293;
  border-radius: 3px;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "Calibre", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1em;
  font-weight: 600;
  line-height: 1;
  padding: 0.75em 1em;
  text-decoration: none;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

button:hover, button:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus, input[type="submit"]:hover, input[type="submit"]:focus,
button:hover,
button:focus {
  background-color: #002747;
  color: #fff;
}

button:disabled, input[type="button"]:disabled, input[type="reset"]:disabled, input[type="submit"]:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* Give Now button from header and footer */
#site-header a.give-now, #site-footer a.give-now {
  background-color: #d22630;
  border-bottom: 2px solid #a41d35;
  border-radius: 25px;
  clear: right;
  color: white;
  float: right;
  font-size: 20px;
  font-weight: 600;
  line-height: 38px;
  padding: 0 17px 0;
  transition: background-color 0.1s linear;
  white-space: nowrap;
}

#site-header a.give-now:hover, #site-footer a.give-now:hover {
  background-color: #a41d35;
}

/* Give Now button with white background */
#banner-top div.alert-wrapper a.alert-link {
  background-color: white;
  color: #d22630;
  border: 1px solid #d22630;
  border-bottom: 3px solid #d22630;
  white-space: nowrap;
}

#banner-top div.alert-wrapper a.alert-link:hover {
  background-color: #d22630;
  color: white;
}

fieldset {
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  margin: 0 0 0.75em;
  padding: 1.5em;
}

input,
label,
select {
  display: block;
  font-family: "Calibre", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1em;
}

label {
  font-weight: 600;
  margin-bottom: 0.375em;
}

label.required::after {
  content: "*";
}

label abbr {
  display: none;
}

input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]), textarea,
select[multiple=multiple],
textarea {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  font-family: "Calibre", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1em;
  margin-bottom: 0.75em;
  padding: 0.5em;
  transition: border-color;
  width: 100%;
}

input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, input:not([type]):hover, textarea:hover,
select[multiple=multiple]:hover,
textarea:hover {
  border-color: #c4c4c4;
}

input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, input:not([type]):focus, textarea:focus,
select[multiple=multiple]:focus,
textarea:focus {
  border-color: #005293;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(0, 68, 122, 0.7);
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="search"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin-right: 0.375em;
}

input[type="file"] {
  padding-bottom: 0.75em;
  width: 100%;
}

select {
  margin-bottom: 1.5em;
  max-width: 100%;
  width: auto;
}

figure {
  margin: 0;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl {
  margin-bottom: 0.75em;
}

dl dt {
  font-weight: bold;
  margin-top: 0.75em;
}

dl dd {
  margin: 0;
}

table {
  -webkit-font-feature-settings: "kern", "liga", "tnum";
  -moz-font-feature-settings: "kern", "liga", "tnum";
  -ms-font-feature-settings: "kern", "liga", "tnum";
  font-feature-settings: "kern", "liga", "tnum";
  border-collapse: collapse;
  margin: 0.75em 0;
  table-layout: fixed;
  width: 100%;
}

th {
  border-bottom: 1px solid #b7b7b7;
  font-weight: 600;
  padding: 0.75em 0;
  text-align: left;
}

td {
  border-bottom: 1px solid #ddd;
  padding: 0.75em 0;
}

tr,
td,
th {
  vertical-align: middle;
}

@font-face {
  font-family: 'Calibre';
  src: url("/cas/themes/giving/css/fonts/CalibreWeb-Light-f59849b4125e59763e293801fb776809.eot");
  src: url("/cas/themes/giving/css/fonts/CalibreWeb-Light-f59849b4125e59763e293801fb776809.eot?#iefix") format("embedded-opentype"), url("/cas/themes/giving/css/fonts/CalibreWeb-Light-f4b05f86233486200956d48f8104b3c0.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Calibre';
  src: url("/cas/themes/giving/css/fonts/CalibreWeb-Regular-b68983c4d9c345f9bbc4692d31bde678.eot");
  src: url("/cas/themes/giving/css/fonts/CalibreWeb-Regular-b68983c4d9c345f9bbc4692d31bde678.eot?#iefix") format("embedded-opentype"), url("/cas/themes/giving/css/fonts/CalibreWeb-Regular-622b085f7a0e481e013a997ec782c663.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Calibre';
  src: url("/cas/themes/giving/css/fonts/CalibreWeb-Medium-34bce5630e66badf03d8636bc4638782.eot");
  src: url("/cas/themes/giving/css/fonts/CalibreWeb-Medium-34bce5630e66badf03d8636bc4638782.eot?#iefix") format("embedded-opentype"), url("/cas/themes/giving/css/fonts/CalibreWeb-Medium-99545ff5b2d3fffb2a3c1a6c69e8ea69.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Calibre';
  src: url("/cas/themes/giving/css/fonts/CalibreWeb-Semibold-444807f71803a9da1e3c802d40435aa1.eot");
  src: url("/cas/themes/giving/css/fonts/CalibreWeb-Semibold-444807f71803a9da1e3c802d40435aa1.eot?#iefix") format("embedded-opentype"), url("/cas/themes/giving/css/fonts/CalibreWeb-Semibold-0b4634efc850d4fe937d63974b325b39.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Calibre';
  src: url("/cas/themes/giving/css/fonts/CalibreWeb-RegularItalic-28e0a739d9dffa446cec5786e12b0697.eot");
  src: url("/cas/themes/giving/css/fonts/CalibreWeb-RegularItalic-28e0a739d9dffa446cec5786e12b0697.eot?#iefix") format("embedded-opentype"), url("/cas/themes/giving/css/fonts/CalibreWeb-RegularItalic-f4823c3200b4336c4851fa05c9b133f8.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

body {
  -webkit-font-feature-settings: "kern", "liga", "pnum";
  -moz-font-feature-settings: "kern", "liga", "pnum";
  -ms-font-feature-settings: "kern", "liga", "pnum";
  font-feature-settings: "kern", "liga", "pnum";
  -webkit-font-smoothing: antialiased;
  color: #333;
  font-family: "Calibre", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  background-color: #f3f3f3;
}

body .page {
  background-color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Calibre", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 1em;
  line-height: 1.2;
  margin: 0 0 0.75em;
}

p {
  margin: 0 0 0.75em;
}

/* Darken active/focus/hovered links */
a {
  color: #005293;
  text-decoration: none;
  transition: color 0.1s linear;
}

a:active, a:focus, a:hover {
  color: #002747;
}

a:active, a:focus {
  outline: none;
}

hr {
  border-bottom: 1px solid #ddd;
  border-left: none;
  border-right: none;
  border-top: none;
  margin: 1.5em 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

a:target:before {
  display: block;
  content: "";
  height: 60px;
  margin: -60px 0 0;
}

/* Title displayed in header and footer */
#site-header a.home-link, #site-footer a.home-link {
  color: #3d3f44;
  font-size: 1.625em;
  font-weight: 600;
}

#banner-top h1#page-title {
  font-weight: 300;
  font-size: 3em;
}

/* Standard formatting for rich text areas */
/* Must be a mix-in, to work within media queries */
/* Add colors based on category taxonomies */
/* Colors for the Explore Categories list at the top of the explore page */
/* Colored wedges within the breadcrumb */
/* Colors for Impact Cards */
/* Colors for Impact Cards Header on reciept pages*/
html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
}

body main {
  max-width: 1125px;
  margin-left: auto;
  margin-right: auto;
}

body main::after {
  clear: both;
  content: "";
  display: table;
}

body.no-sidebars main section#content {
  float: left;
  display: block;
  margin-right: 1.20482%;
  width: 100%;
}

body.no-sidebars main section#content:last-child {
  margin-right: 0;
}

body.one-sidebar.sidebar-first main aside#sidebar-first {
  float: left;
  display: block;
  margin-right: 1.20482%;
  width: 32.53012%;
}

body.one-sidebar.sidebar-first main aside#sidebar-first:last-child {
  margin-right: 0;
}

@media screen and (max-width: 47.9375em) {
  body.one-sidebar.sidebar-first main aside#sidebar-first {
    float: left;
    display: block;
    margin-right: 2.94118%;
    width: 100%;
  }
  body.one-sidebar.sidebar-first main aside#sidebar-first:last-child {
    margin-right: 0;
  }
}

body.one-sidebar.sidebar-first main section#content {
  float: left;
  display: block;
  margin-right: 1.20482%;
  width: 66.26506%;
}

body.one-sidebar.sidebar-first main section#content:last-child {
  margin-right: 0;
}

@media screen and (max-width: 47.9375em) {
  body.one-sidebar.sidebar-first main section#content {
    float: left;
    display: block;
    margin-right: 2.94118%;
    width: 100%;
  }
  body.one-sidebar.sidebar-first main section#content:last-child {
    margin-right: 0;
  }
}

body.one-sidebar.sidebar-second main aside#sidebar-second {
  float: left;
  display: block;
  margin-right: 1.20482%;
  width: 32.53012%;
}

body.one-sidebar.sidebar-second main aside#sidebar-second:last-child {
  margin-right: 0;
}

body.one-sidebar.sidebar-second main section#content {
  float: left;
  display: block;
  margin-right: 1.20482%;
  width: 66.26506%;
}

body.one-sidebar.sidebar-second main section#content:last-child {
  margin-right: 0;
}

body.two-sidebars main aside#sidebar-first {
  float: left;
  display: block;
  margin-right: 1.20482%;
  width: 24.09639%;
}

body.two-sidebars main aside#sidebar-first:last-child {
  margin-right: 0;
}

body.two-sidebars main aside#sidebar-second {
  float: left;
  display: block;
  margin-right: 1.20482%;
  width: 24.09639%;
}

body.two-sidebars main aside#sidebar-second:last-child {
  margin-right: 0;
}

body.two-sidebars main section#content {
  float: left;
  display: block;
  margin-right: 1.20482%;
  width: 49.39759%;
}

body.two-sidebars main section#content:last-child {
  margin-right: 0;
}

/* Setup all sections of the page for the grid layout */
.outer-wrapper {
  max-width: 1125px;
  margin-left: auto;
  margin-right: auto;
  /* Create some space on the sides when screen size is below max width... */
  /* ...but not on mobile */
}

.outer-wrapper::after {
  clear: both;
  content: "";
  display: table;
}

@media screen and (max-width: 75em) {
  .outer-wrapper {
    max-width: 94%;
    margin-left: auto;
    margin-right: auto;
  }
  .outer-wrapper::after {
    clear: both;
    content: "";
    display: table;
  }
}

@media screen and (max-width: 47.9375em) {
  .outer-wrapper {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .outer-wrapper::after {
    clear: both;
    content: "";
    display: table;
  }
}

.breadcrumb span.divider {
  display: inline-block;
  height: 11px;
  width: 20px;
  background-repeat: no-repeat;
  background-size: 6px 10.5px;
  background-position: 50%;
}

.breadcrumb a {
  color: #3d3f44;
  font-size: 0.875em;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 30px;
  text-transform: uppercase;
}

#breadcrumb a {
  color: #3d3f44;
  font-size: 0.875em;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 30px;
  text-transform: uppercase;
}

@media screen and (max-width: 47.9375em) {
  .breadcrumb {
    display: none;
  }
}

#breadcrumb form {
  display: none;
}

@media screen and (max-width: 47.9375em) {
  #breadcrumb form {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: inline-block;
  }
  #breadcrumb form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: none;
    color: transparent;
    font-size: 2.25em;
    font-weight: 300;
    height: 60px;
    width: 100%;
    margin: 0;
  }
  #breadcrumb form select::-ms-expand {
    display: none;
  }
}

body.page-taxonomy-term.Faculty--Research .breadcrumb span.divider,
body.page-taxonomy-term.Faculty--Research .block-giving-explore ul li a {
  background-image: url(/cas/themes/giving/css/images/icon_wedge_right_fr-4f36ec68b18ac3e66e87f21ed85213d9.png);
}

body.page-taxonomy-term.Schools .breadcrumb span.divider,
body.page-taxonomy-term.Schools .block-giving-explore ul li a {
  background-image: url(/cas/themes/giving/css/images/icon_wedge_right_s-713bb3b9115a1976e1e9101d0d06e738.png);
}

body.page-taxonomy-term.Unrestricted .breadcrumb span.divider,
body.page-taxonomy-term.Unrestricted .block-giving-explore ul li a {
  background-image: url(/cas/themes/giving/css/images/icon_wedge_right_u-369af3b98c93740c1da8d0727960dfcb.png);
}

body.page-taxonomy-term.Campaign-Initiatives .breadcrumb span.divider,
body.page-taxonomy-term.Campaign-Initiatives .block-giving-explore ul li a {
  background-image: url(/cas/themes/giving/css/images/icon_wedge_right_ii-b3babb4ff9a02ca01cb6c60db494d569.png);
}

body.page-taxonomy-term.Student-Aid .breadcrumb span.divider,
body.page-taxonomy-term.Student-Financial-Aid .breadcrumb span.divider,
body.page-taxonomy-term.Student-Aid .block-giving-explore ul li a,
body.page-taxonomy-term.Student-Financial-Aid .block-giving-explore ul li a {
  background-image: url(/cas/themes/giving/css/images/icon_wedge_right_sa-3973ee0d1c9e825e46dea86d3b4a1c4e.png);
}

body.page-taxonomy-term.Campus--Student-Life .breadcrumb span.divider,
body.page-taxonomy-term.Campus--Student-Life .block-giving-explore ul li a {
  background-image: url(/cas/themes/giving/css/images/icon_wedge_right_cl-2f0517f534a7c447b43f34c9919b3649.png);
}

body.page-corridor .breadcrumb a,
body.page-corridor #banner-top #breadcrumb a {
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

body.node-type-home-page #breadcrumb,
body.node-type-banner-content-page #breadcrumb,
body.page-explore #breadcrumb,
body.node-type-explore-page #breadcrumb,
body.page-search #breadcrumb,
body.page-node-done #breadcrumb {
  display: none;
}

.messages.error {
  background-color: #fbe3e4;
  color: #97161b;
  display: block;
  margin-bottom: 0.75em;
  padding: 0.75em 0.75em 0.75em 50px;
  border-radius: 5px;
}

.messages.error a {
  color: #6a0f13;
  text-decoration: underline;
}

.messages.error a:focus, .messages.error a:hover {
  color: #110203;
}

.messages.success {
  background-color: #e6efc2;
  color: #56651a;
  display: block;
  margin-bottom: 0.75em;
  padding: 0.75em 0.75em 0.75em 50px;
  border-radius: 5px;
}

.messages.success a {
  color: #333c10;
  text-decoration: underline;
}

.messages.success a:focus, .messages.success a:hover {
  color: black;
}

.messages.notice {
  background-color: #e5edf8;
  color: #244e87;
  display: block;
  margin-bottom: 0.75em;
  padding: 0.75em 0.75em 0.75em 50px;
  border-radius: 5px;
}

.messages.notice a {
  color: #19375f;
  text-decoration: underline;
}

.messages.notice a:focus, .messages.notice a:hover {
  color: #04080e;
}

.messages.warning {
  background-color: #fff6bf;
  color: #8c7800;
  display: block;
  margin-bottom: 0.75em;
  padding: 0.75em 0.75em 0.75em 50px;
  border-radius: 5px;
}

.messages.warning a {
  color: #594c00;
  text-decoration: underline;
}

.messages.warning a:focus, .messages.warning a:hover {
  color: black;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

table th {
  text-align: left;
}

table td {
  line-height: 1.5;
}

table tbody tr:hover > td, table tbody tr:hover > th {
  background-color: #fafafa;
}

table tbody tr:first-child td {
  border-top: 2px solid #ddd;
}

table thead th {
  background-color: white;
  border-bottom: 0px;
  padding: 0.75em 1em;
}

table tbody {
  background-color: #fff;
}

table tbody td {
  border-bottom: 0px;
  border-top: 1px solid #ddd;
  padding: 0.75em 1em;
}

table tbody td button {
  display: inline-block;
  font-size: .7em;
  line-height: 1.5;
  margin-bottom: .3em;
  margin-right: 0.5em;
  outline: none;
  padding: .3em 1em;
  width: 100%;
}

@media screen and (min-width: 64em) {
  table tbody td button {
    margin-bottom: 0;
    width: auto;
  }
}

.tabs.primary {
  line-height: 1.5;
  padding: 0;
  margin: 5px 0;
  border-bottom: 1px solid #ddd;
}

.tabs.primary::after {
  clear: both;
  content: "";
  display: table;
}

.tabs.primary li {
  list-style: none;
}

@media screen and (min-width: 64em) {
  .tabs.primary li {
    display: inline;
  }
}

.tabs.primary li a {
  background-image: none !important;
  background-color: #fff;
  border-top: 1px solid #ddd;
  color: #333;
  display: inline-block;
  font-weight: 400;
  padding: 0.75em 10px;
  text-decoration: none;
}

@media screen and (min-width: 64em) {
  .tabs.primary li a {
    border-top: 0;
  }
}

.tabs.primary li a:hover {
  color: #477DCA;
}

.tabs.primary li a:focus {
  outline: none;
}

.tabs.primary li a.active {
  border-bottom: 0;
}

@media screen and (min-width: 64em) {
  .tabs.primary li a.active {
    border: 1px solid #ddd;
    border-bottom-color: #fff;
    margin-bottom: -1px;
  }
}

.tabs.primary li .tab-content {
  display: none;
  padding: 1.5em 10px;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .tabs.primary li .tab-content {
    border-top: 1px solid #ddd;
    float: left;
  }
}

/* Alerts that are displayed at the top of the page */
#banner-top #giving_messages {
  max-width: 1125px;
  margin: 0 auto;
  width: 100%;
}

#banner-top div.alert-wrapper {
  display: none;
  background: url("/cas/themes/giving/css/images/icon_i_very_white-7ef0fd24df2580f56d5f24e4567140c6.png") 55px 30px no-repeat #0083a9;
  background-size: 24px;
  border-bottom: 3px solid #005293;
  border-radius: 3px;
  box-shadow: 2px 2px 8px rgba(112, 113, 112, 0.2);
  /* $mit-gray */
  color: white;
  font-size: 1.25em;
  line-height: 20px;
  margin-bottom: 20px;
  max-width: 1125px;
  padding: 20px 85px 20px 110px;
  position: relative;
}

#banner-top div.alert-wrapper::after {
  clear: both;
  content: "";
  display: table;
}

#banner-top div.alert-wrapper li {
  display: block;
  float: left;
  min-height: 40px;
  line-height: 40px;
  width: 100%;
}

#banner-top div.alert-wrapper li:not(:only-child):not(:first-child) {
  border-top: 1px solid white;
  margin-top: 15px;
  padding-top: 10px;
}

#banner-top div.alert-wrapper .alert-text {
  display: inline-block;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5px;
  vertical-align: middle;
  width: 70%;
}

#banner-top div.alert-wrapper .alert-text .alert-title {
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}

#banner-top div.alert-wrapper input[type=submit] {
  float: right;
  margin: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}

#banner-top div.alert-wrapper .alert-close {
  background: url("/cas/themes/giving/css/images/icon_alert_close-33883b2def2f3af3ef3851a91d4e85f6.png") 0 0 no-repeat transparent;
  background-size: 19px 18px;
  display: block;
  height: 19px;
  position: absolute;
  right: 37px;
  top: 30px;
  width: 18px;
}

#banner-top div.alert-wrapper a.alert-link {
  border-radius: 20px;
  display: inline-block;
  float: right;
  font-weight: 600;
  line-height: 40px;
  padding: 0 20px;
}

@media screen and (max-width: 63.9375em) {
  #banner-top div.alert-wrapper .alert-text {
    width: 70%;
  }
}

@media screen and (max-width: 47.9375em) {
  #banner-top div.alert-wrapper {
    border-radius: 0;
    background-position: 20px 20px;
    background-size: 20px;
    margin-bottom: 0;
    margin-top: 0;
    padding: 20px 20px 20px;
    width: 100%;
  }
  #banner-top div.alert-wrapper li {
    height: auto;
  }
  #banner-top div.alert-wrapper .alert-text {
    font-size: 17px;
    margin-bottom: 10px;
    margin-left: 30px;
    width: 80%;
  }
  #banner-top div.alert-wrapper .alert-close {
    right: 20px;
    top: 20px;
  }
}

/* Special layout for Desktop regular pages, to remove too much space at top */
@media screen and (min-width: 64em) {
  body.node-type-page #banner-top div.alert-wrapper {
    margin-top: -45px;
  }
}

/* Special layout for browse pages because of search box absolutely positioned
   at the top of the pgae in mobile */
body.page-taxonomy-term #banner-top div.alert-wrapper {
  margin-top: -10px;
}

@media screen and (max-width: 47.9375em) {
  body.page-taxonomy-term #banner-top div.alert-wrapper {
    margin-top: 0;
    top: 45px;
  }
}

/* Special layout for Explore main page and Explore custom pages */
@media screen and (min-width: 48em) {
  body.page-explore #banner-top div.alert-wrapper,
  body.node-type-explore-page #banner-top div.alert-wrapper {
    margin-top: -50px;
  }
}

/* Special layout for pages with banner images - display over the image */
body.node-type-home-page #banner-top div.alert-wrapper,
body.node-type-banner-content-page #banner-top div.alert-wrapper {
  margin-top: 10px;
  max-width: 1125px;
  position: absolute;
  width: 100%;
}

@media screen and (max-width: 63.9375em) {
  body.node-type-home-page #banner-top div.alert-wrapper,
  body.node-type-banner-content-page #banner-top div.alert-wrapper {
    margin-top: 0;
  }
}

@media screen and (max-width: 47.9375em) {
  body.node-type-home-page #banner-top div.alert-wrapper,
  body.node-type-banner-content-page #banner-top div.alert-wrapper {
    position: relative;
  }
}

body div.success-wrapper {
  background: url("/cas/themes/giving/css/images/icon_i_very_white-7ef0fd24df2580f56d5f24e4567140c6.png") 55px 30px no-repeat #0083a9;
  background-size: 24px;
  border-bottom: 3px solid #21656b;
  border-radius: 3px;
  box-shadow: 2px 2px 8px rgba(112, 113, 112, 0.2);
  /* $mit-gray */
  color: white;
  font-size: 1.25em;
  line-height: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px 85px 40px 110px;
  position: relative;
}

body div.success-wrapper::after {
  clear: both;
  content: "";
  display: table;
}

body div.success-wrapper li {
  display: block;
  float: left;
  height: 40px;
  line-height: 40px;
  width: 100%;
}

body div.success-wrapper .alert-text {
  display: inline-block;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
  vertical-align: middle;
  width: 100%;
}

body div.success-wrapper .alert-text .alert-title {
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}

body div.success-wrapper input[type=submit] {
  float: right;
  margin: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}

body div.success-wrapper .alert-close {
  background: url("/cas/themes/giving/css/images/icon_alert_close-33883b2def2f3af3ef3851a91d4e85f6.png") 0 0 no-repeat transparent;
  background-size: 19px 18px;
  display: block;
  height: 19px;
  position: absolute;
  right: 37px;
  top: 30px;
  width: 18px;
}

@media screen and (max-width: 63.9375em) {
  body div.success-wrapper .alert-text {
    width: 100%;
  }
}

@media screen and (max-width: 47.9375em) {
  body div.success-wrapper {
    border-radius: 0;
    background-position: 20px 20px;
    margin-bottom: 0;
    padding: 50px 20px 20px;
    width: 100%;
  }
  body div.success-wrapper li {
    height: auto;
  }
  body div.success-wrapper .alert-text {
    width: 100%;
  }
  body div.success-wrapper .alert-close {
    right: 20px;
    top: 20px;
  }
}

body.section-account div.error-wrapper {
  background: 55px 30px no-repeat #FF0000;
  background-size: 24px;
  border-radius: 3px;
  box-shadow: 2px 2px 8px rgba(112, 113, 112, 0.2);
  /* $mit-gray */
  color: white;
  font-size: 1.25em;
  line-height: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  padding: 10px 85px 10px 85px;
  position: relative;
}

body.section-account div.error-wrapper::after {
  clear: both;
  content: "";
  display: table;
}

body.section-account div.error-wrapper li {
  display: block;
  float: left;
  height: 40px;
  line-height: 40px;
  width: 100%;
}

body.section-account div.error-wrapper .error-text {
  display: inline-block;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
  vertical-align: middle;
  width: 100%;
}

body.section-account div.error-wrapper .error-text .alert-title {
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}

body.section-account div.error-wrapper input[type=submit] {
  float: right;
  margin: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}

body.section-account div.error-wrapper .error-close {
  background: url("/cas/themes/giving/css/images/icon_alert_close-33883b2def2f3af3ef3851a91d4e85f6.png") 0 0 no-repeat transparent;
  background-size: 19px 18px;
  display: block;
  height: 19px;
  position: absolute;
  right: 37px;
  top: 30px;
  width: 18px;
}

@media screen and (max-width: 63.9375em) {
  body.section-account div.error-wrapper .error-text {
    width: 100%;
  }
}

@media screen and (max-width: 47.9375em) {
  body.section-account div.error-wrapper {
    border-radius: 0;
    background-position: 20px 20px;
    margin-bottom: 0;
    padding: 10px 60px 21px;
    width: 100%;
  }
  body.section-account div.error-wrapper li {
    height: auto;
  }
  body.section-account div.error-wrapper .error-text {
    width: 100%;
  }
  body.section-account div.error-wrapper .error-close {
    right: 20px;
    top: 20px;
  }
}

#site-header {
  background-color: white;
  /* Top and bottom borders */
  border-top: 2px solid #d3202f;
  box-shadow: 0 1px 1px rgba(112, 113, 112, 0.2);
  /* $mit-gray */
  position: relative;
  z-index: 102;
  /* Basic mobile header layout */
  /* Top left text */
  /* Top right logo and account menu */
  /* Reset the nice menus */
}

@media screen and (max-width: 47.9375em) {
  #site-header {
    background-color: white;
    border-top: none;
    height: 50px;
    position: fixed;
    width: 100%;
    z-index: 1001;
  }
  #site-header .hamburger {
    background-color: red;
    background: url("/cas/themes/giving/css/images/icon_hamburger-aeb4a9c613d19f5a43624919ee0e6975.png") 16px no-repeat;
    background-size: 19px;
    height: 50px;
    width: 50px;
  }
  #site-header .hamburger.open {
    background-image: url("/cas/themes/giving/css/images/icon_menu_close-7c861b30ec83061f54805025ae137d87.png");
  }
}

#site-header a.home-link {
  float: left;
  padding-top: 17px;
}

@media screen and (max-width: 47.9375em) {
  #site-header a.home-link {
    font-size: 1.375em;
    left: 50px;
    letter-spacing: 0;
    padding: 0;
    position: fixed;
    top: 8px;
  }
}

#site-header div.account-wrapper {
  float: right;
  padding-top: 22px;
  padding-right: 15px;
}

#site-header div.account-wrapper > a {
  width: 90px;
  background-color: #e2f2f4;
  border-radius: 2px;
  border-bottom: 2px solid #b9dfe4;
  display: inline-block;
  font-size: 1.125em;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 12px;
  margin-right: 5px;
  text-align: center;
  color: #0083a9;
}

#site-header div.account-wrapper > a:active, #site-header div.account-wrapper > a:focus, #site-header div.account-wrapper > a:hover {
  color: #00485d;
}

#site-header div.account-wrapper div#salutation {
  font-size: 0.875em;
  font-weight: 500;
  line-height: 0.875em;
  text-align: right;
}

@media screen and (max-width: 47.9375em) {
  #site-header div.account-wrapper {
    display: none;
  }
}

#site-header ul.nice-menu ul, #site-header ul.nice-menu li, #site-header ul.nice-menu li a {
  background-image: none;
  background-color: transparent;
  border: none;
  padding: 0;
}

/* Account Menu */
#site-header {
  /* Adjust padding if salutation is displayed */
}

#site-header ul.nice-menu.nice-menu-user-menu {
  float: right;
  top: 0;
  margin: 0;
  /* Login link */
}

#site-header ul.nice-menu.nice-menu-user-menu a {
  font-size: 1em;
  font-weight: 600;
  line-height: 1.375em;
  color: #0083a9;
}

#site-header ul.nice-menu.nice-menu-user-menu a:active, #site-header ul.nice-menu.nice-menu-user-menu a:focus, #site-header ul.nice-menu.nice-menu-user-menu a:hover {
  color: #00485d;
}

#site-header ul.nice-menu.nice-menu-user-menu > li > a {
  background: url("/cas/themes/giving/css/images/icon_account_arrow-48168a9f129d0fd9fdb5a47beb761ad3.png") right 6px no-repeat;
  background-size: 11px 9px;
  padding-right: 18px;
  padding-bottom: 22px;
}

#site-header ul.nice-menu.nice-menu-user-menu ul {
  background-color: #eaf3f4;
  border-bottom: 2px solid #2294a5;
  border-radius: 5px;
  margin-top: 5px;
  margin-left: -27px;
  padding: 12px 0 5px;
  width: 150px;
}

#site-header ul.nice-menu.nice-menu-user-menu ul:before {
  content: "";
  display: block;
  position: absolute;
  top: -15px;
  height: 15px;
  width: 150px;
  background-color: transparent;
}

#site-header ul.nice-menu.nice-menu-user-menu ul:after {
  content: "";
  display: block;
  height: 30px;
  width: 30px;
  background-color: #eaf3f4;
  position: absolute;
  top: -8px;
  right: 18px;
  transform: rotate(45deg);
}

#site-header ul.nice-menu.nice-menu-user-menu ul li {
  box-sizing: border-box;
  background-color: none;
  padding: 4px 20px;
  width: 150px;
}

#site-header ul.nice-menu.nice-menu-user-menu ul li:last-child {
  margin-top: 5px;
  padding-top: 12px;
  border-top: 1px solid #ced4d3;
}

#site-header a.header-logo {
  float: right;
  padding-top: 22px;
  width: 56px;
}

@media screen and (max-width: 47.9375em) {
  #site-header a.header-logo {
    display: none;
  }
}

#site-header #salutation + ul.nice-menu.nice-menu-user-menu > li > a {
  padding-bottom: 0;
}

/* Main Menu */
#site-header ul.nice-menu.nice-menu-main-menu {
  clear: left;
  float: left;
  max-width: 600px;
  padding-top: 17px;
  /* Get out of the way when the search box is focused */
  /* Mobile Menu */
}

#site-header ul.nice-menu.nice-menu-main-menu > li {
  float: left;
  padding-right: 60px;
}

#site-header ul.nice-menu.nice-menu-main-menu > li:nth-child(3), #site-header ul.nice-menu.nice-menu-main-menu > li:last-child {
  padding-right: 0;
}

#site-header ul.nice-menu.nice-menu-main-menu > li:nth-child(2) > a:after, #site-header ul.nice-menu.nice-menu-main-menu > li:nth-child(3) > a:after {
  content: " +";
}

@media screen and (min-width: 48em) {
  #site-header ul.nice-menu.nice-menu-main-menu > li.mobile-only {
    display: none;
  }
}

#site-header ul.nice-menu.nice-menu-main-menu > li.no-dropdown {
  /* ul {
					display: none !important;
				} */
}

#site-header ul.nice-menu.nice-menu-main-menu > li > a {
  color: #707171;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.075em;
  padding-bottom: 16px;
  text-transform: uppercase;
}

@media screen and (min-width: 48em) {
  #site-header ul.nice-menu.nice-menu-main-menu > li > a.active, #site-header ul.nice-menu.nice-menu-main-menu > li > a:hover, #site-header ul.nice-menu.nice-menu-main-menu > li > a.hovering {
    color: #d3202f;
    border-bottom: 4px solid #ee3d4d;
    padding-bottom: 12px;
  }
}

#site-header ul.nice-menu.nice-menu-main-menu ul {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  background-color: #f3f3f3;
  border-bottom: 2px solid #acaeac;
  margin-top: 14px;
  padding: 8px 0 5px;
  box-shadow: 0 1px 4px rgba(112, 113, 112, 0.2);
  /* $mit-gray */
}

#site-header ul.nice-menu.nice-menu-main-menu ul li {
  box-sizing: border-box;
  background-color: none;
  padding: 1px 0 2px;
  width: 100%;
  white-space: nowrap;
  /* No border above the first category heading */
}

#site-header ul.nice-menu.nice-menu-main-menu ul li span.nolink {
  border-top: 1px solid #bfbeb4;
  color: #9a999a;
  display: inline-block;
  font-size: 0.875em;
  font-weight: 600;
  letter-spacing: 0.075em;
  margin-top: 10px;
  padding: 11px 16px 4px;
  text-transform: uppercase;
  width: 100%;
}

#site-header ul.nice-menu.nice-menu-main-menu ul li:first-child span.nolink {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

#site-header ul.nice-menu.nice-menu-main-menu ul li a {
  color: #555;
  padding: 0 16px;
  font-size: 1.125em;
  font-weight: 500;
}

#site-header ul.nice-menu.nice-menu-main-menu ul li a.active, #site-header ul.nice-menu.nice-menu-main-menu ul li a:hover {
  color: #d3202f;
}

#site-header ul.nice-menu.nice-menu-main-menu ul li ul li {
  display: none;
}

#site-header ul.nice-menu.nice-menu-main-menu.expanded-search {
  padding-top: 0;
}

#site-header ul.nice-menu.nice-menu-main-menu.expanded-search li {
  display: none;
}

@media screen and (max-width: 75em) {
  #site-header ul.nice-menu.nice-menu-main-menu > li {
    padding-right: 47px;
  }
}

@media screen and (max-width: 47.9375em) {
  #site-header ul.nice-menu.nice-menu-main-menu {
    /* Hide unless selected */
    background-color: white;
    border-bottom: 3px solid #d3202f;
    padding: 0;
    position: fixed;
    top: 95px;
    width: 100%;
    max-width: none;
    /* Suppress the second-level menu and remove "+" */
  }
  #site-header ul.nice-menu.nice-menu-main-menu:not(.open) {
    display: none;
  }
  #site-header ul.nice-menu.nice-menu-main-menu.search-open {
    display: none;
    /* Hide if search typeahead open */
  }
  #site-header ul.nice-menu.nice-menu-main-menu li {
    padding: 0;
    width: 100%;
  }
  #site-header ul.nice-menu.nice-menu-main-menu li:not(:last-child) {
    border-bottom: 1px solid #bfbeb4;
  }
  #site-header ul.nice-menu.nice-menu-main-menu li a {
    display: block;
    line-height: 60px;
    padding: 0 0 0 20px;
    width: 100%;
  }
  #site-header ul.nice-menu.nice-menu-main-menu li ul {
    display: none !important;
  }
  #site-header ul.nice-menu.nice-menu-main-menu li:nth-child(2) a:after,
  #site-header ul.nice-menu.nice-menu-main-menu li:nth-child(3) a:after {
    content: "";
  }
}

#site-header .sticky-account-wrapper {
  display: none;
}

/* No dropdown menus on tablet */
html.touch #site-header ul.nice-menu.nice-menu-main-menu ul {
  display: none !important;
}

html.touch #site-header ul.nice-menu.nice-menu-main-menu li:nth-child(2) a:after,
html.touch #site-header ul.nice-menu.nice-menu-main-menu li:nth-child(3) a:after {
  content: "";
}

/* If user logged in, share Logout menu item with same row as My Account menu item */
@media screen and (max-width: 47.9375em) {
  body.logged-in #site-header ul.nice-menu.nice-menu-main-menu li.mobile-only {
    width: 50%;
    border-bottom: none;
  }
  body.logged-in #site-header ul.nice-menu.nice-menu-main-menu li.mobile-only:last-child {
    border-left: 1px solid #bfbeb4;
  }
  body.logged-in #site-header ul.nice-menu.nice-menu-main-menu li.mobile-only a {
    color: #0083a9;
  }
}

/* Give Now button */
#site-header a.give-now {
  margin-bottom: 10px;
  position: relative;
}

@media screen and (max-width: 47.9375em) {
  #site-header a.give-now {
    font-size: 1.125em;
    line-height: 35px;
    margin: 6px 6px 0;
    position: fixed;
    right: 0;
    top: 0;
  }
}

#site-header a.give-now div.num {
  background-color: #a41d35;
  border-radius: 7.5px;
  font-size: 12px;
  height: 15px;
  line-height: 15px;
  position: absolute;
  right: 5px;
  text-align: center;
  top: 5px;
  width: 15px;
}

/* Sticky menu on scroll for tablet and up */
@media screen and (min-width: 48em) {
  #site-header.sticking {
    position: fixed;
    top: 0;
    width: 100%;
    height: 62px;
    z-index: 15;
    /* More than impact cards overlay */
  }
  #site-header.sticking a.home-link,
  #site-header.sticking .header-logo,
  #site-header.sticking .account-wrapper {
    display: none;
  }
  #site-header.sticking ul.nice-menu.nice-menu-main-menu li:nth-child(3n) {
    padding-right: 0;
  }
  #site-header.sticking #giving-search-form {
    margin-right: 0px;
    width: 32px;
  }
  #site-header.sticking #giving-search-form .form-item {
    padding: 18px 0 8px;
  }
  #site-header.sticking #giving-search-form input {
    width: 30px;
    padding-left: 30px;
    /* Hide placeholder text */
  }
  #site-header.sticking #giving-search-form.expanded-search {
    width: 60%;
  }
  #site-header.sticking #giving-search-form.expanded-search .form-item {
    width: 80%;
  }
  #site-header.sticking #giving-search-form.expanded-search input {
    width: 100%;
    padding-right: 0;
  }
  #site-header.sticking .sticky-account-wrapper {
    display: block;
    float: right;
    padding: 0 6px 0 0;
  }
  #site-header.sticking .sticky-account-wrapper .header-logo {
    display: block;
    padding-top: 15px;
    width: 52px;
    height: auto;
  }
  #site-header.sticking .sticky-account-wrapper ul.nice-menu-user-menu {
    float: left;
    height: 25px;
    margin: 15px 26px 15px 0;
    padding: 5px 10px 5px 0;
    border-right: 1px solid #bfbeb4;
  }
  #site-header.sticking .sticky-account-wrapper ul.nice-menu-user-menu > li {
    width: 40px;
  }
  #site-header.sticking .sticky-account-wrapper ul.nice-menu-user-menu > li > a {
    padding: 10px;
    background: url("/cas/themes/giving/css/images/icon_account_menu-d37bc5b03716038a47b2a7874f5c9e14.png") 0 0 no-repeat;
    background-size: 30.5px 16px;
    overflow: hidden;
    text-indent: 101%;
    white-space: nowrap;
  }
  #site-header.sticking .sticky-account-wrapper ul.nice-menu-user-menu ul {
    margin-left: -92px;
  }
  #site-header.sticking a.give-now {
    margin-top: 10px;
  }
}

#site-footer {
  background-color: #f3f3f3;
  border-top: 3px solid #d3202f;
  padding-bottom: 60px;
}

@media screen and (max-width: 47.9375em) {
  #site-footer {
    margin-top: 50px;
  }
}

#site-footer a.home-link {
  float: left;
  display: block;
  margin-right: 1.20482%;
  width: 40.96386%;
  margin-top: 3px;
  padding-top: 18px;
}

#site-footer a.home-link:last-child {
  margin-right: 0;
}

@media screen and (max-width: 63.9375em) {
  #site-footer a.home-link {
    margin-left: 8.43373%;
    font-size: 1.625em;
  }
}

@media screen and (max-width: 47.9375em) {
  #site-footer a.home-link {
    display: none;
  }
}

#site-footer a.give-now {
  margin-top: 23px;
  position: relative;
}

@media screen and (max-width: 47.9375em) {
  #site-footer a.give-now {
    display: none;
  }
}

#site-footer a.give-now div.num {
  background-color: #a41d35;
  border-radius: 7.5px;
  font-size: 12px;
  height: 15px;
  line-height: 15px;
  position: absolute;
  right: 5px;
  text-align: center;
  top: 5px;
  width: 15px;
}

#site-footer .row {
  clear: both;
  padding-top: 30px;
  /* Layout for Information For and Contact footer items */
  /* Layout for Information For and Contact footer in mobile views
        Use a mixin instead of 'extend' here because it needs to be
        used within a media query */
  /* Assuming that the container spans the full width, create a
       horizontal line that spans most of the width */
  /* The menu */
  /* Information for.. */
  /* Contact Information */
}

@media screen and (max-width: 47.9375em) {
  #site-footer .row {
    padding-top: 0;
  }
}

#site-footer .row .footer-information-for, #site-footer .row .footer-contact {
  font-weight: 600;
}

#site-footer .row .footer-information-for h4, #site-footer .row .footer-contact h4 {
  font-size: 1em;
  letter-spacing: 0.1em;
  padding-bottom: 13px;
  padding-top: 4px;
  margin: 0;
  text-transform: uppercase;
}

#site-footer .row .footer-information-for li, #site-footer .row .footer-contact li {
  padding-bottom: 8px;
}

#site-footer .row .footer-information-for a, #site-footer .row .footer-contact a {
  font-size: 1.125em;
  line-height: 1.625em;
  color: #3d3f44;
}

#site-footer .row .footer-information-for a:active, #site-footer .row .footer-contact a:active, #site-footer .row .footer-information-for a:focus, #site-footer .row .footer-contact a:focus, #site-footer .row .footer-information-for a:hover, #site-footer .row .footer-contact a:hover {
  color: #191a1c;
}

#site-footer .row .menu {
  float: left;
  display: block;
  margin-right: 1.20482%;
  width: 15.66265%;
}

#site-footer .row .menu:last-child {
  margin-right: 0;
}

#site-footer .row .menu li {
  padding-bottom: 6px;
}

#site-footer .row .menu li ul, #site-footer .row .menu li.mobile-only {
  display: none;
}

#site-footer .row .menu a {
  color: #3d3f44;
  font-size: 1.25em;
  font-weight: 600;
}

#site-footer .row .menu a:active, #site-footer .row .menu a:focus, #site-footer .row .menu a:hover {
  color: #191a1c;
}

@media screen and (max-width: 63.9375em) {
  #site-footer .row .menu {
    float: left;
    display: block;
    margin-right: 1.20482%;
    width: 24.09639%;
    margin-left: 8.43373%;
  }
  #site-footer .row .menu:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 47.9375em) {
  #site-footer .row .menu {
    float: left;
    display: block;
    margin-right: 2.94118%;
    width: 100%;
    margin-left: 0%;
    float: left;
    display: block;
    margin-right: 2.94118%;
    width: 100%;
    padding-left: 0;
    padding-top: 22px;
    display: block;
    padding-top: 11px;
  }
  #site-footer .row .menu:last-child {
    margin-right: 0;
  }
  #site-footer .row .menu:last-child {
    margin-right: 0;
  }
  #site-footer .row .menu h4, #site-footer .row .menu li {
    padding-left: 20px;
  }
  #site-footer .row .menu li:last-child {
    padding-bottom: 8px;
  }
  #site-footer .row .menu:after {
    width: 90%;
    height: 1px;
    margin: 0 auto;
    background-color: #bfbeb4;
    display: block;
    content: "";
    visibility: visible;
  }
}

#site-footer .row .footer-information-for {
  float: left;
  display: block;
  margin-right: 1.20482%;
  width: 24.09639%;
  padding-left: 6.25%;
}

#site-footer .row .footer-information-for:last-child {
  margin-right: 0;
}

@media screen and (max-width: 63.9375em) {
  #site-footer .row .footer-information-for {
    float: left;
    display: block;
    margin-right: 1.20482%;
    width: 32.53012%;
  }
  #site-footer .row .footer-information-for:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 47.9375em) {
  #site-footer .row .footer-information-for {
    float: left;
    display: block;
    margin-right: 2.94118%;
    width: 100%;
    float: left;
    display: block;
    margin-right: 2.94118%;
    width: 100%;
    padding-left: 0;
    padding-top: 22px;
    display: block;
  }
  #site-footer .row .footer-information-for:last-child {
    margin-right: 0;
  }
  #site-footer .row .footer-information-for:last-child {
    margin-right: 0;
  }
  #site-footer .row .footer-information-for h4, #site-footer .row .footer-information-for li {
    padding-left: 20px;
  }
  #site-footer .row .footer-information-for li:last-child {
    padding-bottom: 8px;
  }
  #site-footer .row .footer-information-for:after {
    width: 90%;
    height: 1px;
    margin: 0 auto;
    background-color: #bfbeb4;
    display: block;
    content: "";
    visibility: visible;
  }
}

#site-footer .row .footer-contact {
  /* Thus funky value is to make the vertical gray bar show up in
         the middle of the column between contact info and social links */
  float: left;
  display: block;
  margin-right: 1.20482%;
  width: 20.63855%;
}

#site-footer .row .footer-contact:last-child {
  margin-right: 0;
}

@media screen and (min-width: 64em) {
  #site-footer .row .footer-contact {
    border-right: 1px solid #bfbeb4;
  }
}

#site-footer .row .footer-contact a {
  padding-left: 25px;
  background-repeat: no-repeat;
  background-position: 2px 6px;
  background-size: 15px;
}

#site-footer .row .footer-contact .phone {
  letter-spacing: 0.075em;
  background-image: url("/cas/themes/giving/css/images/icon_phone-7d0d0ca561bb2d2d2ff90358f82c43e8.png");
}

#site-footer .row .footer-contact .email {
  background-image: url("/cas/themes/giving/css/images/icon_mail-de3cfddd19ab805dc8190b3966870558.png");
}

@media screen and (max-width: 47.9375em) {
  #site-footer .row .footer-contact {
    float: left;
    display: block;
    margin-right: 2.94118%;
    width: 100%;
    float: left;
    display: block;
    margin-right: 2.94118%;
    width: 100%;
    padding-left: 0;
    padding-top: 22px;
  }
  #site-footer .row .footer-contact:last-child {
    margin-right: 0;
  }
  #site-footer .row .footer-contact:last-child {
    margin-right: 0;
  }
  #site-footer .row .footer-contact h4, #site-footer .row .footer-contact li {
    padding-left: 20px;
  }
  #site-footer .row .footer-contact li:last-child {
    padding-bottom: 8px;
  }
}

#site-footer .row .footer-social-links {
  float: left;
  display: block;
  margin-right: 1.20482%;
  width: 24.09639%;
  /* See note above in .footer-contact for explanation of this funky number */
  margin-left: 3.45783%;
  font-size: 0.875em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#site-footer .row .footer-social-links:last-child {
  margin-right: 0;
}

#site-footer .row .footer-social-links a {
  color: #3d3f44;
}

#site-footer .row .footer-social-links a:active, #site-footer .row .footer-social-links a:focus, #site-footer .row .footer-social-links a:hover {
  color: #191a1c;
}

#site-footer .row .footer-social-links .circles {
  padding-top: 7px;
}

#site-footer .row .footer-social-links .circles a {
  margin-right: 11px;
}

@media screen and (max-width: 63.9375em) {
  #site-footer .row .footer-social-links .circles a {
    margin-right: 16px;
  }
}

#site-footer .row .footer-social-links .circles a:last-child {
  margin-right: 0 !important;
}

#site-footer .row .footer-social-links .circles img {
  height: 22px;
  width: 22px;
}

@media screen and (max-width: 63.9375em) {
  #site-footer .row .footer-social-links {
    float: left;
    display: block;
    margin-right: 1.20482%;
    width: 45.18072%;
    margin-left: 8.43373%;
    padding-top: 8px;
    text-align: center;
  }
  #site-footer .row .footer-social-links:last-child {
    margin-right: 0;
  }
  #site-footer .row .footer-social-links .circles img {
    height: 30px;
    width: 30px;
  }
}

@media screen and (max-width: 47.9375em) {
  #site-footer .row .footer-social-links {
    float: left;
    display: block;
    margin-right: 2.94118%;
    width: 100%;
    margin-left: 0%;
    margin-bottom: 22px;
    padding-top: 16px;
    display: block;
  }
  #site-footer .row .footer-social-links:last-child {
    margin-right: 0;
  }
  #site-footer .row .footer-social-links .circles {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  #site-footer .row .footer-social-links .circles a {
    margin-right: 25px;
  }
  #site-footer .row .footer-social-links:after {
    width: 90%;
    height: 1px;
    margin: 0 auto;
    background-color: #bfbeb4;
    display: block;
    content: "";
    visibility: visible;
  }
}

#site-footer .row a.footer-logo {
  float: left;
  display: block;
  margin-right: 1.20482%;
  width: 7.22892%;
  /* Make it shrink a bit rather than wrapping when width of image is
         greater than the width of one column in larger screen sizes */
  max-width: 71px;
  /* There are two copies of the logo in the HTML.
         Show the last one on larger sizes and the first one on smaller sizes */
}

#site-footer .row a.footer-logo:last-child {
  margin-right: 0;
}

#site-footer .row a.footer-logo.desktop {
  margin-right: 0;
}

#site-footer .row a.footer-logo.tablet {
  display: none;
}

@media screen and (max-width: 63.9375em) {
  #site-footer .row a.footer-logo {
    float: left;
    display: block;
    margin-right: 1.20482%;
    width: 15.66265%;
    margin-left: 8.43373%;
    padding-top: 10px;
  }
  #site-footer .row a.footer-logo.desktop {
    display: none;
  }
  #site-footer .row a.footer-logo.tablet {
    display: block;
  }
  #site-footer .row a.footer-logo:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 47.9375em) {
  #site-footer .row a.footer-logo.tablet {
    display: none;
  }
  #site-footer .row a.footer-logo.desktop {
    display: block;
    position: relative;
    float: none;
    margin: 0 auto 20px;
    max-width: none;
    width: 58px;
    height: 30px;
  }
}

#banner-top {
  /* Adjust the position of the main content when we switch to
	   having a sticky top menu on tablet and larger */
  background-color: #f3f3f3;
  box-shadow: 0 2px 2px rgba(102, 106, 124, 0.2);
  /* $mit-gray */
  padding-top: 63px;
}

@media screen and (min-width: 48em) {
  #banner-top.sticking {
    margin-top: 118px;
  }
}

@media screen and (max-width: 47.9375em) {
  #banner-top {
    padding: 0;
    position: relative;
    top: 50px;
  }
}

@media screen and (max-width: 75em) {
  #banner-top {
    padding-top: 40px;
  }
}

@media screen and (max-width: 47.9375em) {
  #banner-top {
    padding-top: 40px;
  }
}

#banner-top h1#page-title {
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 47.9375em) {
  #banner-top h1#page-title {
    font-size: 2.25em;
  }
}

#banner-top .block-giving-jump-menu {
  display: none;
  position: absolute;
  top: 0;
  width: 94%;
}

#banner-top .block-giving-jump-menu select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("/cas/themes/giving/css/images/icon_wedge_down-6f5d34fe44e03117d7a8c4ea7560a152.png") 20px -20px no-repeat white;
  background-position: right 20px top 50%;
  background-size: 13px 7px;
  border: none;
  border-bottom: 3px solid #0083a9;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  color: #3d3f44;
  font-size: 1.125em;
  font-weight: 600;
  height: 45px;
  padding-left: 20px;
  width: 100%;
}

#banner-top .block-giving-jump-menu select::-ms-expand {
  display: none;
}

main {
  /* Adjust the position of the main content when we switch to
	   having a sticky top menu on tablet and larger */
}

@media screen and (min-width: 48em) {
  main.sticking {
    margin-top: 135px;
  }
}

@media screen and (max-width: 47.9375em) {
  main {
    top: 50px;
    position: relative;
  }
}

/* Search always displays at the top of the page in mobile
   on particular screens. */
@media screen and (max-width: 47.9375em) {
  body.page-explore #giving-search-form,
  body.page-search.no-sidebars.no-sidebars #giving-search-form {
    display: block;
  }
  body.page-explore #banner-top,
  body.page-search.no-sidebars.no-sidebars #banner-top {
    padding-top: 45px;
  }
  body.page-explore #banner-top h1,
  body.page-search.no-sidebars.no-sidebars #banner-top h1 {
    padding: 25px 0;
  }
}

#giving-search-form {
  float: right;
  padding: 0;
}

@media screen and (min-width: 64em) {
  #giving-search-form {
    padding-right: 5px;
  }
}

#giving-search-form .form-item {
  padding: 10px 30px 0 0;
  margin: 0;
  float: left;
}

#giving-search-form input {
  border: none;
  box-shadow: none;
  font-weight: 400;
  font-size: 1.25em;
  margin: 0;
  padding: 0 0 10px 30px;
  width: 90px;
  background: url("/cas/themes/giving/css/images/icon_search-f3f76b4dca5e3de9740430c032e7f1e8.png") left 2px no-repeat;
  background-size: 18px;
}

@media screen and (max-width: 63.9375em) {
  #giving-search-form input {
    width: 30px;
    padding-left: 30px;
    /* Hide placeholder text */
  }
}

#giving-search-form .search-close {
  background: url("/cas/themes/giving/css/images/icon_search_close-a80386ef0f884ba00dd56e1b259f18d6.png") 0 0 no-repeat;
  background-size: 13px;
  float: right;
  height: 13px;
  margin-top: 22px;
  width: 13px;
  display: none;
}

#giving-search-form.expanded-search {
  float: left;
  clear: left;
  margin-left: 35px;
  width: 900px;
  background: url("/cas/themes/giving/css/images/icon_search_close-a80386ef0f884ba00dd56e1b259f18d6.png") right no-repeat;
  background-size: 13px;
}

@media screen and (max-width: 75em) {
  #giving-search-form.expanded-search {
    width: 700px;
  }
}

@media screen and (max-width: 63.9375em) {
  #giving-search-form.expanded-search {
    width: 500px;
  }
}

@media screen and (max-width: 47.9375em) {
  #giving-search-form.expanded-search {
    width: 100%;
  }
}

#giving-search-form.expanded-search input {
  width: 100%;
}

@media screen and (max-width: 47.9375em) {
  #giving-search-form {
    /* Hide unless selected */
    background-color: #b2b4b2;
    position: fixed;
    top: 50px;
    width: 100% !important;
  }
  #giving-search-form:not(.open) {
    display: none;
  }
  #giving-search-form .form-item {
    width: 100%;
    padding: 5px;
  }
  #giving-search-form input {
    background-color: white;
    background-position: 10px 8px;
    padding: 7px 5px 9px 35px;
    width: 100%;
    font-size: 1em;
  }
  #giving-search-form.expanded-search {
    background-image: none;
  }
}

/* Hide close icon on touch devices, since in that case
   you would exit the text field by closing the onscreen
   keyboard */
html.touch #giving-search-form.expanded-search {
  background-image: none;
}

/* Typeahead dropdown menu for header search */
span.twitter-typeahead {
  width: 100%;
}

.tt-menu {
  z-index: 1002 !important;
  /* More than mobile menu */
  background-color: #f3f3f3;
  border-bottom: 2px solid #d3202f;
  box-shadow: 0 2px 6px rgba(112, 113, 112, 0.2);
  /* $mit-gray */
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  margin-top: 6px;
  margin-left: -45px;
  padding-top: 15px;
  width: 975px;
}

@media screen and (max-width: 75em) {
  .tt-menu {
    width: 775px;
  }
}

@media screen and (max-width: 63.9375em) {
  .tt-menu {
    width: 575px;
  }
}

@media screen and (max-width: 47.9375em) {
  .tt-menu {
    width: 100%;
    margin: 5px 0 0 -5px;
    padding-right: 10px;
    box-sizing: content-box;
  }
}

.tt-menu .tt-dataset-categories .tt-suggestion:last-child {
  margin-bottom: 20px;
}

.tt-menu .tt-dataset-nodes .tt-suggestion:first-child {
  margin-top: 20px;
}

.tt-menu .tt-suggestion {
  color: #0083a9;
  cursor: pointer;
  font-size: 1.25em;
  letter-spacing: 0.01em;
  line-height: 25px;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 70px;
  padding-right: 70px;
}

.tt-menu .tt-suggestion strong {
  font-weight: 600;
}

@media screen and (max-width: 47.9375em) {
  .tt-menu .tt-suggestion {
    box-sizing: border-box;
    font-size: 1.125em;
    padding-left: 15px;
    padding-right: 10px;
    width: 100%;
  }
}

.tt-menu .tt-cursor,
.tt-menu .tt-suggestion:hover {
  background-color: #0083a9;
  color: white;
}

.tt-menu .search-view-all {
  background-color: #9a999a;
  font-size: 1.25em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 46px;
  margin-top: 20px;
  text-transform: uppercase;
}

.tt-menu .search-view-all a {
  color: white;
  display: block;
  padding-left: 70px;
}

@media screen and (max-width: 47.9375em) {
  .tt-menu .search-view-all {
    margin-top: 15px;
    width: 100%;
    padding-left: 15px;
  }
  .tt-menu .search-view-all a {
    padding-left: 0;
  }
}

#giving-search-form-footer-d, #giving-search-form-footer-m {
  clear: left;
}

#giving-search-form-footer-d .form-item, #giving-search-form-footer-m .form-item {
  padding: 0;
  margin: 5px 0;
}

#giving-search-form-footer-d input, #giving-search-form-footer-m input {
  background: url("/cas/themes/giving/css/images/icon_search-f3f76b4dca5e3de9740430c032e7f1e8.png") 8px 6px no-repeat white;
  background-size: 18px;
  border: none;
  font-weight: 400;
  font-size: 1em;
  height: 1.875em;
  line-height: 1.875em;
  padding: 0 0 0 35px;
}

#giving-search-form-footer-d {
  float: left;
  display: block;
  margin-right: 1.20482%;
  width: 19.87952%;
}

#giving-search-form-footer-d:last-child {
  margin-right: 0;
}

@media screen and (max-width: 63.9375em) {
  #giving-search-form-footer-d {
    display: none;
  }
}

#giving-search-form-footer-m {
  float: left;
  display: block;
  margin-right: 1.20482%;
  width: 83.13253%;
  margin-left: 8.43373%;
  border-bottom: 1px solid #bfbeb4;
  margin-bottom: 12px;
  padding-bottom: 12px;
}

#giving-search-form-footer-m:last-child {
  margin-right: 0;
}

@media screen and (min-width: 64em) {
  #giving-search-form-footer-m {
    display: none;
  }
}

@media screen and (max-width: 47.9375em) {
  #giving-search-form-footer-m {
    /* This breaks out of the grid */
    width: 90%;
    margin: 0 5%;
  }
  #giving-search-form-footer-m input {
    width: 105%;
    margin-left: -2.5%;
  }
}

#giving-search-form-category input {
  background: url("/cas/themes/giving/css/images/icon_search-f3f76b4dca5e3de9740430c032e7f1e8.png") 8px 8px no-repeat white;
  background-size: 18px;
  border-color: transparent;
  border-radius: 2px;
  border-style: none;
  border-bottom-style: solid;
  box-shadow: none;
  padding-left: 30px;
}

#giving-search-form-category input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #3d3f44;
  font-size: 16px;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0;
}

#giving-search-form-category input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #3d3f44;
  opacity: 1;
  font-size: 16px;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0;
}

#giving-search-form-category input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #3d3f44;
  opacity: 1;
  font-size: 16px;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0;
}

#giving-search-form-category input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #3d3f44;
  line-height: 16px;
  font-size: 16px;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0;
}

#giving-search-form-category .tt-menu {
  margin-top: -10px;
  margin-left: -300px;
  width: 600px;
}

@media screen and (max-width: 47.9375em) {
  #giving-search-form-category .tt-menu {
    width: 100%;
    margin: 5px 0 0 -5px;
    padding-right: 10px;
    box-sizing: content-box;
  }
}

/* Colored search icons */
body.Faculty--Research #giving-search-form-category input,
body.faculty-amp-research #giving-search-form-category input {
  background-image: url(/cas/themes/giving/css/images/search_fecb00-d57b60e5a050ae3dc25425674115e94b.png);
}

body.Schools #giving-search-form-category input {
  background-image: url(/cas/themes/giving/css/images/search_ffa02f-696f68fcccd2294373bef5d26b608c14.png);
}

body.Unrestricted #giving-search-form-category input {
  background-image: url(/cas/themes/giving/css/images/search_00a3d9-4fb6ae75c1f01a8f4dad655d16002855.png);
}

body.Campaign-Initiatives #giving-search-form-category input {
  background-image: url(/cas/themes/giving/css/images/search_ff6738-d09adf3a20dc77fdc9edbf194351756f.png);
}

body.Student-Aid #giving-search-form-category input,
body.student-financial-aid #giving-search-form-category input {
  background-image: url(/cas/themes/giving/css/images/search_a8b400-3fcbae3f51dd6c8ed66058d5aba39fe0.png);
}

body.Campus--Student-Life #giving-search-form-category input {
  background-image: url(/cas/themes/giving/css/images/search_9b61a0-1aa8907f6f53ea163241e99f3f481059.png);
}

/* Sticky menu adjustments - make it look like it's under the sticky menu */
#site-header.sticking .tt-menu {
  margin-top: 8px;
  box-shadow: inset 0 1px 1px rgba(112, 113, 112, 0.2);
}

/* Search results */
body.page-search.no-sidebars #banner-top h1#page-title,
body.page-search.no-sidebars main #content {
  float: left;
  display: block;
  margin-right: 1.20482%;
  width: 74.6988%;
  margin-left: 12.6506%;
  padding-bottom: 50px;
}

body.page-search.no-sidebars #banner-top h1#page-title:last-child,
body.page-search.no-sidebars main #content:last-child {
  margin-right: 0;
}

@media screen and (max-width: 63.9375em) {
  body.page-search.no-sidebars #banner-top h1#page-title,
  body.page-search.no-sidebars main #content {
    float: none;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
    max-width: 800px;
  }
  body.page-search.no-sidebars #banner-top h1#page-title::after,
  body.page-search.no-sidebars main #content::after {
    clear: both;
    content: "";
    display: table;
  }
}

@media screen and (max-width: 47.9375em) {
  body.page-search.no-sidebars #banner-top h1#page-title,
  body.page-search.no-sidebars main #content {
    width: 100%;
    margin-left: 0;
  }
}

body.page-search.no-sidebars #banner-top {
  /* fiddle with title vertical spacing with and without alerts */
  padding-top: 55px;
}

body.page-search.no-sidebars #banner-top #giving_messages .alert-wrapper {
  margin-top: -30px;
}

@media screen and (max-width: 47.9375em) {
  body.page-search.no-sidebars #banner-top #giving_messages .alert-wrapper {
    margin-top: 0;
  }
}

body.page-search.no-sidebars #banner-top h1#page-title {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 0;
  text-align: left;
}

@media screen and (max-width: 47.9375em) {
  body.page-search.no-sidebars #banner-top h1#page-title {
    font-size: 30px;
    margin: 25px 0;
    padding: 0 5%;
    text-align: center;
  }
}

body.page-search.no-sidebars form.search-form {
  display: none;
}

body.page-search.no-sidebars .view-fund-search-results .view-header {
  color: #707171;
  font-weight: 600;
  font-size: 1.5em;
  letter-spacing: 0.1em;
  padding: 35px 0 20px;
  text-transform: uppercase;
}

body.page-search.no-sidebars .view-fund-search-results .view-header span {
  color: #3d3f44;
}

@media screen and (max-width: 47.9375em) {
  body.page-search.no-sidebars .view-fund-search-results .view-header {
    font-size: 18px;
    padding: 20px 5%;
  }
}

body.page-search.no-sidebars .view-fund-search-results.view-display-id-block::after {
  clear: both;
  content: "";
  display: table;
}

body.page-search.no-sidebars .view-fund-search-results.view-display-id-block .view-header a.collapse-all,
body.page-search.no-sidebars .view-fund-search-results.view-display-id-block .view-header a.expand-all {
  float: right;
  display: none;
}

body.page-search.no-sidebars .view-fund-search-results.view-display-id-block .view-header a.collapse-all.show,
body.page-search.no-sidebars .view-fund-search-results.view-display-id-block .view-header a.expand-all.show {
  display: block;
}

body.page-search.no-sidebars .view-fund-search-results.view-display-id-block .views-row {
  display: none;
}

body.page-search.no-sidebars .view-fund-search-results.view-display-id-block .views-row .views-field-field-blurb {
  border-color: #bfbeb4;
}

body.page-search.no-sidebars .view-fund-search-results.view-display-id-block .views-row:nth-child(1), body.page-search.no-sidebars .view-fund-search-results.view-display-id-block .views-row:nth-child(2), body.page-search.no-sidebars .view-fund-search-results.view-display-id-block .views-row:nth-child(3), body.page-search.no-sidebars .view-fund-search-results.view-display-id-block .views-row:nth-child(4) {
  display: block;
}

body.page-search.no-sidebars .view-fund-search-results.view-display-id-block.show-all .views-row {
  display: block;
}

body.page-search.no-sidebars .view-fund-search-results.view-display-id-block .view-footer a {
  background-color: #eaf3f4;
  border-bottom: 1px solid #0083a9;
  border-top: 1px solid #0083a9;
  color: #0083a9;
  display: block;
  float: left;
  font-size: 1.125em;
  font-weight: 600;
  line-height: 60px;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}

body.page-search.no-sidebars .view-fund-search-results.view-display-id-block .view-footer a.less-funds {
  display: none;
}

body.page-search.no-sidebars .view-fund-search-results.view-display-id-block_1 {
  margin-bottom: 40px;
}

body.page-search.no-sidebars .view-fund-search-results.view-display-id-block_1::after {
  clear: both;
  content: "";
  display: table;
}

body.page-search.no-sidebars .view-fund-search-results.view-display-id-block_1 .views-field-title {
  color: #0083a9;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

body.page-search.no-sidebars .view-fund-search-results.view-display-id-block_1 .views-field-body {
  font-size: 20px;
  font-weight: 400;
}

body.page-search.no-sidebars .view-fund-search-results.view-display-id-block_1 .views-field-path {
  font-size: 14px;
  line-height: 18px;
  margin-top: 10px;
}

body.page-search.no-sidebars .view-fund-search-results.view-display-id-block_1 .views-field-path a {
  color: #707171;
}

body.page-search.no-sidebars .view-fund-search-results.view-display-id-block_1 .views-row {
  margin-bottom: 20px;
}

@media screen and (max-width: 47.9375em) {
  body.page-search.no-sidebars .view-fund-search-results.view-display-id-block_1 {
    padding: 0 5%;
  }
  body.page-search.no-sidebars .view-fund-search-results.view-display-id-block_1 .view-header {
    padding: 20px 0;
  }
  body.page-search.no-sidebars .view-fund-search-results.view-display-id-block_1 .views-row {
    border-top: 1px solid #bfbeb4;
    margin-bottom: 0;
    padding: 20px 0;
  }
  body.page-search.no-sidebars .view-fund-search-results.view-display-id-block_1 .views-row .views-field-path {
    display: none;
  }
}

/*
  This file contains the basic logic for nice menus, and should not be
  edited.  To customize the menus, it's recommended to create a custom CSS
  file using nice_menus_default.css as a template, then configure the module
  to use your custom CSS file (this is done in the global settings tab of
  the theme administration.)
*/
/* Below should fix menu being a few pixels away in some themes, and menus disappearing behind other stuff. */
.block-nice-menus {
  line-height: normal;
  z-index: 10;
}

ul.nice-menu,
ul.nice-menu ul {
  z-index: 5;
  position: relative;
}

ul.nice-menu li {
  position: relative;
}

ul.nice-menu a {
  display: block;
  /*Default to Blue, but override as necessary*/
  color: #027ac6;
}

ul.nice-menu ul,
#header-region ul.nice-menu ul {
  position: absolute;
  visibility: hidden;
}

ul.nice-menu li.over ul {
  visibility: visible;
}

ul.nice-menu ul li {
  display: block;
}

ul.nice-menu:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* Show submenus when over their parents. */
ul.nice-menu li:hover ul,
ul.nice-menu li.menuparent li:hover ul,
ul.nice-menu li.menuparent li.menuparent li:hover ul,
ul.nice-menu li.menuparent li.menuparent li.menuparent li:hover ul,
ul.nice-menu li.over ul,
ul.nice-menu li.menuparent li.over ul,
ul.nice-menu li.menuparent li.menuparent li.over ul,
ul.nice-menu li.menuparent li.menuparent li.menuparent li.over ul,
#header-region ul.nice-menu li:hover ul,
#header-region ul.nice-menu li.menuparent li:hover ul,
#header-region ul.nice-menu li.menuparent li.menuparent li:hover ul,
#header-region ul.nice-menu li.over ul,
#header-region ul.nice-menu li.menuparent li.over ul,
#header-region ul.nice-menu li.menuparent li.menuparent li.over ul {
  visibility: visible;
}

/* Hide sub-menus initially. */
ul.nice-menu li:hover ul ul,
ul.nice-menu li:hover ul ul ul,
ul.nice-menu li:hover li:hover ul ul,
ul.nice-menu li:hover li:hover ul ul ul,
ul.nice-menu li:hover li:hover li:hover ul ul,
ul.nice-menu li:hover li:hover li:hover ul ul ul,
ul.nice-menu li.over ul ul,
ul.nice-menu li.over ul ul ul,
ul.nice-menu li.over li.over ul ul,
ul.nice-menu li.over li.over ul ul ul,
ul.nice-menu li.over li.over li.over ul ul,
ul.nice-menu li.over li.over li.over ul ul ul,
#header-region ul.nice-menu li:hover ul ul,
#header-region ul.nice-menu li:hover ul ul ul,
#header-region ul.nice-menu li:hover li:hover ul ul,
#header-region ul.nice-menu li:hover li:hover ul ul ul,
#header-region ul.nice-menu li:hover li:hover li:hover ul ul,
#header-region ul.nice-menu li:hover li:hover li:hover ul ul ul,
#header-region ul.nice-menu li.over ul ul,
#header-region ul.nice-menu li.over ul ul ul,
#header-region ul.nice-menu li.over li.over ul ul,
#header-region ul.nice-menu li.over li.over ul ul ul,
#header-region ul.nice-menu li.over li.over li.over ul ul,
#header-region ul.nice-menu li.over li.over li.over ul ul ul {
  visibility: hidden;
}

/***************
 IE 6 Fixes
***************/
/* Iframe to fix z-index bug when menu hovers over <select> fields. */
ul.nice-menu li.menuparent ul,
#header-region ul.nice-menu li.menuparent ul {
  overflow: visible !important;
}

ul.nice-menu li.menuparent ul iframe,
#header-region ul.nice-menu li.menuparent ul iframe {
  display: none;
  display/**/: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  filter: mask();
  width: 20px;
  height: 20px;
}

/*
  This is the default layout template for nice menus, and will provide
  a starting point for the look of your menus. To customize, it's
  recommended to create a custom CSS file using this file as a template,
  then configure the module to use your custom CSS file
  (this is done in the global settings tab of the theme administration.)

  See README.txt and the handbook page (http://drupal.org/node/185543)
  for more information on using the CSS.
*/
/******************************
 Global CSS for ALL menu types
******************************/
ul.nice-menu,
ul.nice-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #ccc;
}

ul.nice-menu li {
  border: 1px solid #ccc;
  border-top: 0;
  float: left;
  /* LTR */
  background-color: #eee;
}

ul.nice-menu a {
  padding: 0.3em 5px 0.3em 5px;
}

ul.nice-menu ul {
  top: 1.8em;
  left: -1px;
  /* LTR */
  border: 0;
  border-top: 1px solid #ccc;
  margin-right: 0;
  /* LTR */
}

ul.nice-menu ul li {
  width: 12.5em;
}

/******************************
 VERTICAL (left/right) menus
******************************/
/* This is the default width of all vertical menus. */
ul.nice-menu-right,
ul.nice-menu-left,
ul.nice-menu-right li,
ul.nice-menu-left li {
  width: 12.5em;
}

/* VERTICAL menus where submenus pop RIGHT (default). */
ul.nice-menu-right ul {
  width: 12.5em;
  left: 12.5em;
  top: -1px;
}

ul.nice-menu-right ul ul {
  width: 12.5em;
  left: 12.5em;
  top: -1px;
}

ul.nice-menu-right li.menuparent,
ul.nice-menu-right li li.menuparent {
  background: #eee url("../images/arrow-right.png") right center no-repeat;
}

ul.nice-menu-right li.menuparent:hover,
ul.nice-menu-right li li.menuparent:hover {
  background: #ccc url("../images/arrow-right.png") right center no-repeat;
}

/* VERTICAL menus where submenus pop LEFT. */
ul.nice-menu-left li ul {
  width: 12.5em;
  left: -12.65em;
  top: -1px;
}

ul.nice-menu-left li ul li ul {
  width: 12.5em;
  left: -12.65em;
  top: -1px;
}

ul.nice-menu-left li.menuparent,
ul.nice-menu-left li li.menuparent {
  background: #eee url("../images/arrow-left.png") left center no-repeat;
}

ul.nice-menu-left li.menuparent:hover,
ul.nice-menu-left li li.menuparent:hover {
  background: #ccc url("../images/arrow-left.png") left center no-repeat;
}

ul.nice-menu-left a,
ul.nice-menu-left ul a {
  padding-left: 14px;
}

/******************************
 HORIZONTAL (down) menus
******************************/
ul.nice-menu-down {
  float: left;
  /* LTR */
  border: 0;
}

ul.nice-menu-down li {
  border-top: 1px solid #ccc;
}

ul.nice-menu-down li li {
  border-top: 0;
}

ul.nice-menu-down ul {
  left: 0;
  /* LTR */
}

ul.nice-menu-down ul li {
  clear: both;
}

ul.nice-menu-down li ul li ul {
  left: 12.5em;
  /* LTR */
  top: -1px;
}

ul.nice-menu-down .menuparent a {
  padding-right: 15px;
  /* LTR */
}

ul.nice-menu-down li.menuparent {
  background: #eee url("../images/arrow-down.png") right center no-repeat;
  /* LTR */
}

ul.nice-menu-down li.menuparent:hover {
  background: #ccc url("../images/arrow-down.png") right center no-repeat;
  /* LTR */
}

ul.nice-menu-down li li.menuparent {
  background: #eee url("../images/arrow-right.png") right center no-repeat;
  /* LTR */
}

ul.nice-menu-down li li.menuparent:hover {
  background: #ccc url("../images/arrow-right.png") right center no-repeat;
  /* LTR */
}

/******************************
 Garland-specific CSS
******************************/
/**
 * Global CSS for ALL menu types
 */
ul.nice-menu li {
  margin: 0;
  padding-left: 0;
  /* LTR */
  background-image: none;
}

#header-region ul.nice-menu li {
  margin: 0;
  /* Padding rules are needed to deal with Garland's header line-height. */
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  background: #eee;
}

#header-region ul.nice-menu ul {
  top: 1.8em;
  left: -1px;
  /* LTR */
  border: 0;
  border-top: 1px solid #ccc;
  margin-right: 0;
  /* LTR */
}

#header-region ul.nice-menu ul {
  top: 1.7em;
}

/**
 * HORIZONTAL (down) menus
 */
#header-region ul.nice-menu-down li ul li ul {
  left: 12.5em;
  /* LTR */
  top: -1px;
}

#header-region ul.nice-menu-down li.menuparent {
  background: #eee url("../images/arrow-down.png") right center no-repeat;
  /* LTR */
}

#header-region ul.nice-menu-down li.menuparent:hover {
  background: #ccc url("../images/arrow-down.png") right center no-repeat;
  /* LTR */
}

#header-region ul.nice-menu-down li li.menuparent {
  background: #eee url("../images/arrow-right.png") right center no-repeat;
  /* LTR */
}

#header-region ul.nice-menu-down li li.menuparent:hover {
  background: #ccc url("../images/arrow-right.png") right center no-repeat;
  /* LTR */
}

/*# sourceMappingURL=maps/giving_baseline.css.map */
