﻿/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.cssanimations #ui
{
  /* make things invisible upon start */
  opacity: 0;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1) */
  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:0.5s;
  -moz-animation-duration:0.5s;
  animation-duration:0.5s;

  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}



/**
 * Image replacement.
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
}
.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}
/**
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}
/**
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/**
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/**
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
  visibility: hidden;
}
/**
 * Clearfix: contain floats
 */
.clearfix:before,
.clearfix:after { content: " "; display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

.animate {
  -webkit-transition: all 0.3s ease-out;  /* Chrome 1-25, Safari 3.2+ */
     -moz-transition: all 0.3s ease-out;  /* Firefox 4-15 */
       -o-transition: all 0.3s ease-out;  /* Opera 10.50–12.00 */
          transition: all 0.3s ease-out;  /* Chrome 26, Firefox 16+, IE 10+, Opera 12.10+ */
}
/**
 * Chrome Frame.
 */
.chromeframe {
  background-color: #EEEEEE;
  border-bottom: 1px solid windowframe;
  color: windowtext;
  padding: 0.5em 0;
  text-align: center;
}
  .chromeframe .ui-row-inner {
    background-color: transparent;
  }

.js #js-disabled {
  display: none !important;
  visibility: hidden !important;
}



html,
body {
  font-size: 16px;
}
body {
  background: #FFFFFF;
  color: #3F4C51;
  padding: 0;
  margin: 0;
  font-family: "Monda", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.1875;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

body.sfPageEditor { background: #FFFFFF; }

img,
object,
embed {
  max-width: 100%;
  height: auto;
}

object,
embed {
  height: 100%;
}

img {
  -ms-interpolation-mode: bicubic;
}

body:focus,
div:focus,
fieldset:focus,
span:focus,
li:focus,
p:focus { outline: 0; }

/* Tables */
table {
  background: white;
  margin-bottom: 1.25em;
  border: solid 1px #dddddd;
  width: 100%;
}
  table thead,
  table tfoot {
    background: whitesmoke;
    font-weight: bold; }
    table thead tr th,
    table thead tr td,
    table tfoot tr th,
    table tfoot tr td {
      padding: 0.5em 0.625em 0.625em;
      font-size: 0.875em;
      color: #222222;
      text-align: left; }
  table tr th,
  table tr td {
    padding: 0.5625em 0.625em;
    font-size: 0.875em;
    color: #222222; }
  table tr.even, table tr.alt, table tr:nth-of-type(even) {
    background: #f9f9f9; }
  table thead tr th,
  table tfoot tr th,
  table tbody tr td,
  table tr td,
  table tfoot tr td {
    display: table-cell;
    line-height: 1.125em; }

a,
a:link,
a:visited {
  color: #C9502A;
  text-decoration: none;
}
a:hover,
a:active,
a:focus {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Monda", sans-serif;
  font-weight: 400; /* 700 */
  /*text-transform: uppercase;*/
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #A20B18;
  text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover  { color: #0572B7; }

p { margin-top: 0; }

:first-child { margin-top: 0; }

nav ul,
nav ol,
nav ul li,
nav ol li {
  margin: 0;
  padding: 0;
  list-style: none none;
}
nav li a {
  text-decoration: none;
}

a.more {
  color: #3F4C51;
  font-style: normal;
  text-decoration: none !important;
}
 .more:after { content: " \25B8"; color: #C9502A; }
a.more:hover { text-decoration: none !important; }
a.more:hover:after {}
a.more em {
  color: #C9502A;
  font-style: inherit;
  text-decoration: none;
}
a.more:hover em { text-decoration: underline; }

a.back {
  color: #3F4C51;
  font-style: normal;
  text-decoration: none !important;
}
 .back:before { content: "\25c2 "; color: #C9502A; }
a.back:hover { text-decoration: none !important; }
a.back:hover:before {}
a.back em {
  color: #C9502A;
  font-style: inherit;
  text-decoration: none;
}
a.back:hover em { text-decoration: underline; }

h1 a.more,
h2 a.more,
h3 a.more,
h4 a.more,
h5 a.more,
h6 a.more {
  text-transform: none;
  color: #C9502A;
}
h1 a.more:hover,
h2 a.more:hover,
h3 a.more:hover,
h4 a.more:hover,
h5 a.more:hover,
h6 a.more:hover  { color: #0572B7; }


a.more-button {
  background-color: #C9502A;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.25em;
  line-height: 2;
  display: inline-block;
  padding: 0 1.35em;
}

/**
 * Layout.
 */
.ui-row {}
.ui-row-inner {
  background-color: #FFFFFF;
  max-width: 1200px;
  margin: 0 auto;
}
.ui-row-padding {}


.mo-layout {
  margin-bottom: 12px;
}
.mo-layout-796-n.mo-layout-mustard { background: transparent url("../Images/bg_layout_796n_mustard.png") repeat-y 66.3333% 0; }
.mo-layout-796-n2.mo-layout-mustard { background: transparent url("../Images/bg_layout_796n2_mustard.png") repeat-y 66.3333% 0; }
.mo-layout-525-n.mo-layout-gray    { background: transparent url("../Images/bg_layout_525n_gray.png") repeat-y 43.75% 0; }
.mo-layout-n-525.mo-layout-mustard { background: transparent url("../Images/bg_layout_n525_mustard.png") repeat-y 55.25% 0; }
.mo-layout-796-n.mo-layout-mustard  .sf_2cols_2_33,
.mo-layout-796-n2.mo-layout-mustard .sf_2cols_1_67,
.mo-layout-n-525.mo-layout-mustard  .sf_2cols_1_50 { color: #97851A; }
.mo-layout img { display: block; }

@media only screen and (max-width: 768px) {
  .mo-layout-796-n.mo-layout-mustard,
  .mo-layout-796-n2.mo-layout-mustard,
  .mo-layout-525-n.mo-layout-gray,
  .mo-layout-n-525.mo-layout-mustard { background-image: none; }

  .mo-layout-796-n.mo-layout-mustard  .sf_2cols_2_33,
  .mo-layout-796-n2.mo-layout-mustard .sf_2cols_1_67,
  .mo-layout-n-525.mo-layout-mustard  .sf_2cols_1_50 { background-color: #E3D266; }
  .mo-layout-525-n.mo-layout-gray     .sf_2cols_2_50  { background-color: #F2F2F2; }
}

.mo-box-gray { background-color: #F2F2F2; }


/**
 * Page Headline.
 */
.page-title {
  text-align: center;
  padding: 0 10px;
}
.page-headline {
  font-size: 3.75em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
.page-tagline {
  font-size: 1.25em;
  line-height: 1.75;
  font-weight: bold;
  margin: 25px 0 0;
  padding: 0 15%;
}
.sf_2cols_1in_33 .page-headline,
.sf_2cols_2in_33 .page-headline { font-size: 2em; }

body.newsroom .page-headline,
body.grants .page-headline { font-size: 3.75em; }

.grant-detail .page-headline,
body.faq .page-headline {
  font-size: 1.875em  !important;
  text-transform: none;
  font-weight: bold;
}


#ui {}

#ui-header {}
#ui-header.ui-row {}
#ui-header .ui-row-inner {}
#ui-header .ui-row-padding {}

#ui-content {}
#ui-content.ui-row {}
#ui-content .ui-row-inner {}
#ui-content .ui-row-padding {}

#ui-footer {}
#ui-footer.ui-row {}
#ui-footer .ui-row-inner {
  background-color: #3F4C51;
  color: #D5D5D5;
}
#ui-footer .ui-row-padding {
  padding: 20px 35px;
}
.sfPageEditor .ui-row-padding:before {
  text-transform: uppercase;
  padding: 0.5em;
  display: block;
  background-color: #b3d4fc;
  color: #FFF;
}
.sfPageEditor #ui-header .ui-row-padding:before { content: "Header"; }
.sfPageEditor #ui-content .ui-row-padding:before { content: "Content"; }
.sfPageEditor #ui-footer .ui-row-padding:before { content: "Footer"; }
.sfPageEditor #ui-closure .ui-row-padding:before { content: "Closure"; }


#ui-logo img {
  margin: 30px 0 30px 35px;
  display: block;
  float: left;
}

.ui-search {}
.ui-search-txt {}
.ui-search-btn {}

#ui-footer-msg { padding: 2em 0 0; }
#ui-copyright,
#ui-address {
  display: inline-block;
  font-size: 0.75em;
  margin-right: 1.5em;
  line-height: 2.2;
}
#ui-copyright a,
#ui-address a {
  color: #D5D5D5;
  text-decoration: none;
  margin-right: 0.25em;
  margin-left: 0.25em;
  display: inline-block;
  vertical-align:middle;
}
#ui-copyright a:hover,
#ui-address a:hover {
  text-decoration: underline;
}
#ui-copyright a#footerLegal {
  background: transparent url("../Images/icon_cc.png") no-repeat left center;
  padding-left: 24px;
  background-size: 20px;
}
#ui-address address {
  display: inline;
  font-style: normal;
}

#P6 {
  background: transparent url("../Images/p6.png") no-repeat 0 0;
  width: 87px;
  height: 26px;
  clear: both;
  float: right;
}

/**
 *Frontpage Tiles.
 */
.mo-home-tile {
  max-width: 594px;
  position: relative;
  margin-bottom: 12px;
  color: #FFFFFF;
}
.mo-home-tile img { display: block; }
.mo-home-tile-style-program {
    -webkit-transition: all 0.3s ease-out;  /* Chrome 1-25, Safari 3.2+ */
     -moz-transition: all 0.3s ease-out;  /* Firefox 4-15 */
       -o-transition: all 0.3s ease-out;  /* Opera 10.50–12.00 */
          transition: all 0.3s ease-out;  /* Chrome 26, Firefox 16+, IE 10+, Opera 12.10+ */
}
.mo-home-tile-style-static {}
.mo-home-tile-style-color {}
.mo-home-tile-style-color-box-1 { background-color: #5B9B9E; }
.mo-home-tile-style-color-box-2 { background-color: #126063; }
.mo-home-tile-style-color-box-3 { background-color: #C9502A; }
.mo-home-tile-default,
.mo-home-tile-overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
}
.mo-home-tile-default {
  position: relative;
}
.mo-home-tile-overlay { z-index: 9; }
.mo-home-tile-link {}
.mo-home-tile-title {
  line-height: 1;
  padding: 25px;
  font-size: 30px;
}
.mo-home-tile-content {}
.mo-home-tile-style-program .mo-home-tile-title,
.mo-home-tile-style-static  .mo-home-tile-title {
  background-color: rgba(0, 0, 0, 0.5);
  color: #FFF;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  text-transform: uppercase;
}
.mo-home-tile-style-program .mo-home-tile-content,
.mo-home-tile-style-static  .mo-home-tile-content {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 45px 50px;
  color: #7d6c00;
  font-size: 30px;
  line-height: 1.2;
  overflow: hidden;
}
.mo-home-tile-style-program .mo-home-tile-content h4 {
  font-size: 30px;
  line-height: 1.333;
  margin: 0 0 0.5em;
  text-transform: none;
  font-weight: bold;
}
.mo-home-tile-style-program:hover .mo-home-tile-overlay {
  z-index: 11;
}
.mo-home-tile-style-static .mo-home-tile-title {
  font-size: 24px;
  text-transform: none;
}
.mo-home-tile-style-color a {
  color: #FFFFFF;
  text-decoration: none;
  text-align: center;
}
.mo-home-tile-style-color .mo-home-tile-title {
  line-height: 100px;
  font-weight: bold;
}
.mo-home-tile-style-color-box-1 .mo-home-tile-default {
  padding: 45px 25px;
  font-size: 30px;
  text-align: center;
  min-height: 230px;
}

.sf_2cols_1_50.mo-home-tiles-col > div.sf_colsIn {
  position: relative;
}
.mo-home-tile-clone {
  position: absolute;
  left: -99999px;
  top: -99999px;;
}
@media only screen and (max-width: 480px) {
  .mo-home-tile-shuffle {
    display: none;
  }
  .mo-home-tile-clone {
    position: static;
    display: block !important;
  }
}


/**
 * Main menu.
 */
.RadMenu_Main {
  float: left;
  margin-top: 80px;
}
.RadMenu_Main ul,
.RadMenu_Main li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.RadMenu_Main .rmHorizontal > .rmItem {
  border-left: 1px solid #c1c3c3;
  float: left;
  position: relative;
}
.RadMenu_Main .rmHorizontal > .rmItem.rmFirst { border-left: 0 none; }
.RadMenu_Main .rmHorizontal .rmItem a.rmLink { color: #3f4c51; }
.RadMenu_Main .rmHorizontal .rmItem a.rmFocused {
  color: #299199;
  font-weight: bold;
}
.RadMenu_Main .rmHorizontal > .rmItem > a.rmLink {
  font-size: 1.5em;
  text-transform: uppercase;
  padding: 0 0 0 20px;
  display: block;
  line-height: 1;
  text-decoration: none !important;
}
.RadMenu_Main .rmHorizontal > .rmItem > a.rmLink:hover { color: #299199; }
.RadMenu_Main ul li.rmItem a.rmLink span.rmText { padding: 0 20px 0 0; }
.RadMenu_Main ul.rmHorizontal li a.rmLink span.rtsOut,
.RadMenu_Main ul li a.rmLink span.rmText {}
.RadMenu_Main ul li a:hover,
.RadMenu_Main .rmGroup .rmItem a.rmLink:hover {}
.RadMenu_Main ul li a.rmLink:hover span.rtsTxt {}
.RadMenu_Main ul li a.rmSelected { /*color: #000000;*/ }
.RadMenu_Main > .rmHorizontal > .rmItem > .rmSlide {
  background: transparent url("../Images/bg_mainmenu.png") no-repeat 160px 1px;
  position: absolute;
  left: -100px;
  top: -9999em;
  z-index: 9999;
}
.RadMenu_Main .rmHorizontal .rmItem > .rmSlide > ul.rmLevel1 {
  background-color: #d1dde2;
  padding: 30px 50px;
  border-radius: 25px 0 25px 0;
  margin: 0;
  white-space: nowrap;
  /*box-shadow: 3px 3px 6px rgba(0,0,0,0.2);*/
}
.RadMenu_Main > .rmHorizontal > .rmItem > a:hover + .rmSlide,
.RadMenu_Main > .rmHorizontal > .rmItem:hover > .rmSlide {
  padding-top: 46px;
  top: 1.5em;
}
.RadMenu_Main .rmHorizontal .rmItem > .rmSlide .rmSlide {
  /*position: static;*/
  padding: 0;
  font-size: 0.8125em;
  /*white-space: normal !important;*/
  /*float: left;*/
}
.RadMenu_Main .rmVertical.rmLevel1 > .rmItem {
  display: inline;
  float: left;
  max-width: 10em;
  margin-right: 20px;
  white-space: normal;
}
.RadMenu_Main .rmVertical.rmLevel1 > .rmItem > .rmLink {
  font-size: 0.875em;
  text-transform: uppercase;
  font-weight: bold;
}
.RadMenu_Main .rmRootGroup .rmItem .rmVertical {
  float: left;
  margin: 0.5em 0;
}
.RadMenu_Main .rmVertical.rmLevel2 > .rmItem { margin-bottom: 0.5em; }

/**
 * Meta menu.
 */
.RadTabStrip_Meta {
  float: right;
  color: #3F4C51;
}
.RadTabStrip_Meta .rtsLI { border-left: 1px solid #3F4C51; }
.RadTabStrip_Meta .rtsLI.rtsFirst { border-left: 0 none; }
.RadTabStrip_Meta .rtsLI.rtsLast * { padding-right: 0; }
.RadTabStrip_Meta a { color: #3F4C51; }
.RadTabStrip_Meta a:hover { text-decoration: underline; }

/**
 * Footer menu.
 */
.RadTreeView_Footer {}
.RadTreeView_Footer * {
  margin: 0;
  padding: 0;
  list-style: none none;
}
.RadTreeView_Footer a {
  color: #E3D266;
  text-transform: uppercase;
  font-size: 1.125em;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1.5em;
}
.RadTreeView_Footer li li a {
  color: #FC7044;
  text-transform: none;
  font-size: 1em;
  font-weight: normal;
  margin-bottom: 1em;
}
.RadTreeView_Footer li ul { margin-bottom: 1em; }
.RadTreeView_Footer li.rtLast ul { display: none; }



.ui-pager {
  margin: 1em 0;
  border-top: 1px solid #d2d1d1;
  padding: 1em 0;
  color: #3F4C51;
  text-align: right;
}
.ui-pager a,
.ui-pager span.sf_PagerCurrent {
  color: #C9502A;
  text-decoration: none;
  display: inline-block;
  padding: 0.25em 0.75em;
  line-height: 1;
}
.ui-pager a:hover {
  background-color: #C9502A;
  color: #FFFFFF;
  text-decoration: none;
}
.ui-pager .sf_PagerCurrent,
.ui-pager .sf_PagerCurrent:hover {
  background-color: #FFFFFF;
  color: #3F4C51 !important;
  cursor: default;
}
.ui-pager .sf_pagerNumeric { display: inline; }
.ui-pager .sf_pagerNumeric a,
.ui-pager span.sf_PagerCurrent {
  border-left: 1px solid #829AA3;
}
.ui-pager .sf_pagerNumeric a:first-child {
  border-left: 0 none;
}

/**
 * Social Media icons.
 */
ul.social-media {
  float: right;
  height: 40px;
  margin: 0 15px 20px 0;
  padding: 0;
  width: 160px;
}
ul.social-media li {
  list-style: none none;
  float: left;
  margin: 0;
}
ul.social-media li a {
  background: transparent url("../Images/social_media.png") no-repeat 0 0;
  display: block;
  float: left;
  height: 40px;
  outline: 0 none;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 40px;
}
ul.social-media li a:hover{}
ul.social-media li.tw a{ background-position: 0 0; }
ul.social-media li.tw a:hover{}
ul.social-media li.fb a{ background-position: -40px 0; }
ul.social-media li.fb a:hover{}
ul.social-media li.yt a{ background-position: -80px 0; }
ul.social-media li.yt a:hover{}
ul.social-media li.li a{ background-position: -120px 0; }
ul.social-media li.li a:hover{}

/*
.cycle-slideshow .cycle-prev,
.cycle-slideshow .cycle-next {
  background: transparent url("../Images/bg_news_nav.png") no-repeat left center;
  display: block;
  width: 100px;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
}
.cycle-slideshow .cycle-next {
  left: auto;
  right: 0;
  background-position: right center;
}
*/
.cycle-prev,
.cycle-next {
  background-image: none;
  background-color: transparent;
  color: #FFFFFF;
  position: absolute;
  z-index: 999;
  top: 35%;
  left: 15px;
  width: 60px;
  height: 100px;
  margin: 0;
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 240px;
  font-weight: 100;
  line-height: 100px;
  text-align: center;
  text-shadow: 0 1px 1px rgba(0,0,0,.4);
  cursor: pointer;
  opacity: 0.3;
  filter: alpha(opacity=30);
  -webkit-transition: all 0.3s ease-out;  /* Chrome 1-25, Safari 3.2+ */
     -moz-transition: all 0.3s ease-out;  /* Firefox 4-15 */
       -o-transition: all 0.3s ease-out;  /* Opera 10.50–12.00 */
          transition: all 0.3s ease-out;  /* Chrome 26, Firefox 16+, IE 10+, Opera 12.10+ */
}
.cycle-next {
  right: 15px;
  left: auto;
}
.cycle-prev:hover,
.cycle-prev:focus,
.cycle-next:hover,
.cycle-next:focus {
  color: #FFFFFF;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}



/**
 * Grants.
 */
.mo-toolbar {
  background-color: #F5F5F5;
  padding: 0.5em 30px;
  margin-bottom: 12px;
  font-size: 12px;
  vertical-align: middle;
}
.mo-toolbar-tool {
  vertical-align: middle;
  padding-right: 1em;
}
.mo-toolbar-tool span label {
  display: inline-block;
  padding: 0 0.5em;
}
.mo-toolbar-tool br {
  display: none;
}
.mo-toolbar .ui-search-txt {
  width: 190px;
  float: none;
  height: 22px;
  font-size: 12px;
}
.mo-toolbar-tool .mo-button {
  background: #C9502A;
  color: #F1D3CA;
  border: 0;
  margin: 0;
  padding: 0 1em;
  outline: 0 none;
  line-height: 2;
}
.mo-toolbar #mo-toggle-view {
  background: transparent url("../Images/icon_toggleview.png") no-repeat 0 0;
  text-indent: -9999px;
  width: 55px;
  height: 18px;
  text-align: left;
  vertical-align: middle;
  float: right;
  outline: 0 none;
}
.grants-list-view .mo-toolbar #mo-toggle-view {
  background-position: left bottom;
}

.grants-list {}
.grants-group {}
.grants-list-item {
  float: left;
  max-width: 392px;
  margin-left: 12px;
  margin-bottom: 65px;
}
.grants-list-item:first-child { margin-left: 0; }
.grants-list-item h2 {
  color: #C9502A;
  font-size: 1.375em;
  margin-bottom: 0.5em;
  margin-top: 0;
  text-transform: none;
  font-weight: bold;
}
.grants-list-item h3 {
  font-size: 1.125em;
  margin: 0.25em 0;
  text-transform: none;
  font-weight: bold;
}
.grants-list-item img {
  display: block;
  width: 100% !important;
  margin-bottom: 12px;
}
.grants-list-item-details {
  font-size: 1.25em;
}

.grants-list-view .grants-list-item {
  float: none;
  max-width: 100%;
  margin: 0 0 12px;
  position: relative;
  padding-left: 232px;
  min-height: 90px;
}
.grants-list-view .grants-list-item h2,
.grants-list-view .grants-list-item h3 {
  margin: 0;
  font-size: 1em;
}
.grants-list-view .grants-list-item img,
.grants-list-view .grants-list-item .photo-credit {
  max-width: 220px;
  position: absolute;
  left: 0;
  top: 0;
}
.grants-list-view .grants-list-item .photo-credit > img {
  position: static;
}
.grants-list-view .grants-list-item .photo-credit > em {
  max-width: 200px;
  padding-left: 10px;
  padding-right: 10px;
}
.grants-list-view .grants-list-item .grants-list-item-details { font-size: 1em; }

.grants-list-msg {
  padding: 7em 0;
  text-align: center;
}

/* Details page */
h1.grant-title {
  font-size: 2.5em;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.5em;
  padding: 0 10%;
}
.grant-summary {
  font-size: 1.75em;
  line-height: 1.2;
/*  font-size: 2.625em;
  line-height: 1.45;*/
  text-align: center;
  margin: 1em 0;
  text-transform: none;
  padding: 0 5%;
}

.grant-granteeorg,
.grant-projectlead {
  background-color: #F5F5F5;
  padding: 50px 100px;
  margin: 1em 0;
}
.grant-meta {
  font-size: 1.25em;
  padding: 0.5em 0;
  line-height: 1.25;
}
.grant-meta img {
  float: left;
  margin: 0 15px 0.5em 0;
}
.grant-description {
  font-size: 20px; /* 1.25em */
  line-height: 1.5;
}
.grant-description { padding: 0 30px; }
.grant-othergrants {
  float: left;
  max-width: 650px;
  margin-bottom: 12px;
  padding-left: 30px;
}
.grant-othergrants h3 {
  font-size: 1.5em;
  font-weight: bold;
  text-transform: none;
}
.grant-othergrants-item { margin-bottom: 1.5em; }
.grant-othergrants-item-amount { padding-right: 1.5em; }
.grant-othergrants-item-date {}
.grant-othergrants-item-title { display: block; }

/* Latest Grants in footer. */
.grant-latest {
  margin-bottom: 1em;
}
.grant-latest h4 {
  color: #E3D266;
  font-size: 1.125em;
  font-weight: bold;
  text-transform: uppercase;
}
.grant-latest-item {
  border-top: 1px solid #686F71;
  padding-top: 0.5em;
  margin-bottom: 0.5em;
}
.grant-latest-items > :first-child {
  border-top: 0 none;
  padding-top: 0;
}
.grant-latest-item-title {
  display: block;
  color: #FC7044 !important;
}
.grant-latest-item-amount { padding-right: 1.5em; }
.grant-latest-item-date {}
.grant-latest-item-org {}



.ui-page-header {
  background-color: #E3D266;
  color: #97851A;
  text-transform: uppercase;
}
.ui-page-header-info {
  display: table-cell;
  text-align: center;
  width: 100%;
  height: 400px;
  vertical-align: middle;
  min-width: 392px;
  font-weight: bold;
  font-size: 1.875em;
}
.ui-page-header img { display: block; }
.ui-page-header-backlink { padding: 1em 0; }

/*
.ui-layout-1 {
  position: relative;
  width: 100%;
  clear: both;
}
.ui-layout-1 .ui-layout-img-wrapper {
  float: left;
  width: 100%;
  margin-left: -404px;
}
.ui-layout-1 .ui-layout-img { margin-left: 404px; }
.ui-layout-img img { display: block; }
.ui-layout-txt-wrapper {
  background-color: #E3D266;
  bottom: 0;
  color: #97851A;
  display: block;
  font-size: 1.875em;
  font-weight: bold;
  height: 100%;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
}
.ui-layout-1 .ui-layout-txt-wrapper {
  min-width: 392px;
}
.ui-layout-1 .ui-layout-txt {}

.ui-layout-2 {
  position: relative;
  width: 100%;
  clear: both;
}
.ui-layout-2 .ui-layout-img-wrapper {}
.ui-layout-2 .ui-layout-img {  }
.ui-layout-img img { display: block; }
.ui-layout-2 .ui-layout-txt-wrapper {}
.ui-layout-2 .ui-layout-txt {}
*/

/**
 * Staff.
 */
.staff-list {}
.staff-list-item {
  position: relative;
  float: left;
  margin: 6px;
  max-width: 288px;
  height: 288px;
}
.staff-list-item-large {
  max-width: 588px;
}
.staff-list-item a {
  text-decoration: none;
}
.staff-list-item a:hover { text-decoration: none; }
.staff-list-item h2 {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  line-height: 1;
  font-size: 1.125em;
  color: #FFFFFF;
  padding: 1em 15px;
}
.staff-list-item img { display: block; }

.staff-name .page-headline { text-transform: none; }

.staff-detail {
  background-color: #F5F5F5;
  padding: 70px 0;
  position: relative;
  margin-bottom: 6px;
}
.staff-detail .mo-layout-796-n {
  /*background: transparent url("../Images/bg_layout_796n_vrule.png") repeat-y 33.6667% 0;*/
}
.staff-detail .sf_2cols_1in_67 { padding: 0 50px; background: transparent url("../Images/bg_staff_detail.png") repeat-y 100% 0; }
.staff-detail .sf_2cols_2in_33 { padding: 0 20px; }
.staff-detail > a.close {
  font-weight: bold;
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 0.875em;
  color: #3F4C51;
}

.staff-detail h1 {
  font-size: 3em;
  font-weight: bold;
  margin: 0;
  text-transform: none;
}
.staff-detail h2 {
  font-size: 1.5em;
  margin: 0;
  text-transform: none;
}
.staff-detail-bio {
  font-size: 1.25em;
  line-height: 1.5;
}
.staff-detail-cv {
  padding: 10px 0;
  font-size: 0.875em;
}
.staff-detail-cv a {
  display: inline-block;
  color: #3F4C51;
}
.staff-detail-sidebar {
  font-size: 0.875em;
  line-height: 1.3;
}
.staff-detail-sidebar h4 {
  text-transform: none;
  margin-bottom: 0.25em;
  font-size: 1.285em;
  font-weight: bold;
}
.staff-detail-sidebar-content {
  margin-bottom: 2em;
}
.staff-social-link {
  float: left;
  margin-right: 2em;
}
.staff-social-link-li {}
.staff-social-link-tw {}
.staff-social-link-email {
  font-weight: bold;
  float: none;
  margin-right: 0;
}

/**
 * Programs.
 */
.program-teaser {
/*  padding: 70px 50px 20px; */
  min-height: 435px;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.program-teaser.environmental-conservation { background-image: url("../Images/bg_program_teaser_environmental-conservation.png"); }
.program-teaser.patient-care { background-image: url("../Images/bg_program_teaser_patient-care.png"); }
.program-teaser.science { background-image: url("../Images/bg_program_teaser_science.png"); }
.program-teaser.san-francisco-bay-area { background-image: url("../Images/bg_program_teaser_san-francisco-bay-area.png"); }
.program-teaser h2 {}
.program-desc {
  font-size: 1.25em;
  line-height: 1.5;
}
.program-detail {
  background-color: #F2F2F2;
  font-size: 1.25em;
  line-height: 1.5;
  margin-bottom: 12px;
  padding: 40px 70px;
}
.program-news {
  text-align: center;
  background: #F2F2F2 url("../Images/bg_news_small.png") no-repeat 0 0;
  min-height: 320px;
  margin-bottom: 12px;
}
.program-news > h3 {
  font-weight: bold;
  margin: 1em 0;
  font-size: 1.875em;
}
.program-news .cycle-slideshow {}
.program-news .cycle-prev,
.program-news .cycle-next {
/*  background-image: none;
  text-align: center;
  font-size: 3em;
  font-weight: bold;
  line-height: 1;
  opacity: 0.5;
  top: 0.5em;
  text-shadow: 0 0 3px #FFF;
  width: 1em;*/
  left: 0;
  text-shadow: 0 0 5px #FFF;
  color: #3F4C51;
  top: 0;
}
.program-news .cycle-next {
  left: auto;
  right: 0;
}

.program-news .cycle-slide {
  left: 0;
  right: 0;
  padding: 30px 60px;
}
.program-news .cycle-slide a {
  display: block;
  font-weight: bold;
  color: #3F4C51;
}

.program-initiatives {}
.program-initiative { border-bottom: 1px solid #D2D1D1; }
.program-initiative a {
  font-size: 1.375em;
  font-weight: bold;
  text-decoration: none;
  display: block;
  padding: 25px;
}
.program-initiative a:hover {
  background-color: #C9502A;
  color: #FFFFFF;
}
.program-initiative a img {
  margin-right: 15px;
  float: left;
}

.box-padding {
  padding: 70px 50px 20px;
}
.box-padding h2 {
  font-size: 3em;
  font-weight: bold;
  text-transform: none;
  margin-bottom: 0.5em;
}
.box-padding-content {
  font-size: 1.25em;
  line-height: 1.5;
}


/**
 * Initiative.
 */
.initiative-hero {
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.initiative-hero img {
  display: block;
  height: auto;
  width: 100%;
}
.initiative-hero-message {
  background-color: rgba(0,0,0,0.2);
  padding: 0.5em 1em;
  position: absolute;
  z-index: 100;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 2em;
  top: 20%;
  right: 10%;
  /*width: 35%;*/
  max-width: 35%;
  text-align: right;
  text-shadow: 1px 1px #3F4C51;
}
/*
.initiative-hero .cycle-slideshow {}
.initiative-hero .cycle-prev,
.initiative-hero .cycle-next {
  background-image: none;
  text-align: center;
  font-size: 3em;
  font-weight: bold;
  line-height: 1;
  opacity: 0.5;
  top: 40%;
  text-shadow: 0 0 3px #FFF;
}
.initiative-hero .cycle-prev:hover,
.initiative-hero .cycle-next:hover { opacity: 1; }
*/
.initiative-title {
  text-align: center;
  width: 80%;
  margin: 25px auto 12px;
}
.initiative-title h1 {
  font-size: 2.5em;
  font-weight: bold;
  text-transform: none;
  margin-bottom: 0.5em;
}
.initiative-title p {
  font-size: 1.75em;
  line-height: 1.2;
}
.initiative-detail {
  background-color: #F2F2F2;
  padding: 50px 100px;
  font-size: 1.25em;
  line-height: 1.5;
  margin-bottom: 12px;
}
.initiative-news {
  background: #E3D266 url("../Images/bg_news.png") no-repeat top center;
  color: #847307;
  min-height: 250px;
  margin-bottom: 12px;
  text-align: center;
}
.initiative-news > h3 {
  color: #7D6C00;
  font-weight: bold;
  font-size: 3em;
  text-transform: none;
  margin: 0.5em 0 0.25em;
}
.initiative-news .cycle-slideshow {}
.initiative-news .cycle-slideshow .cycle-prev,
.initiative-news .cycle-slideshow .cycle-next {
  color: #7D6C00;
  top: -30%;
}

.initiative-news-item {
  font-size: 1.875em;
  line-height: 1.35;
  padding: 0 200px;
  right: 0;
  left: 0;
}
.initiative-news-item a {
  color: inherit;
  font-weight: bold;
  display: block;
}

.initiative-grants-wrapper {
  position: relative;
  margin: 50px 0;
}
.initiative-grants {
/*  float: left;
  max-width: 650px;*/
}
.initiative-grants h3 {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 0.5em;
  text-transform: none;
}
.initiative-grants-item { margin-bottom: 2.5em; }
.initiative-grants-item-amount {
  font-size: 1.875em;
  font-weight: bold;
}
.initiative-grants-item-date { font-size: 1.25em; }
.initiative-grants-item-title {
  font-size: 1.25em;
  font-weight: bold;
  display: block;
}
.initiative-grants-item-org { font-size: 1.25em; }
.initiative-grants-hero {
  position: relative;
  max-width: 395px;
  max-height: 395px;
  float: right;
  z-index: 10;
}
.initiative-grants-hero img {
  position: relative;
  z-index: 11;
}
.initiative-grants-hero .photo-credit em {
  background: transparent none;
  text-align: center;
  color: #3F4C51;
  bottom: -2em;
}
.initiative-grants-mask {
  background: transparent url("../Images/mask_circle.png") no-repeat 0 0;
  background-size: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 12;
}

.initiative-team {
  margin-bottom: 12px;
}
.initiative-team-grid {
  width: auto;
  border: 0 none;
  border-spacing: 6px;
  border-collapse: separate;
  margin: 0 auto;
}
.initiative-team-grid tr { background-color: #FFFFFF; }
.initiative-team-grid td {
  background-color: #F2F2F2;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  width: 225px;
  font-size: 1.5em;
  font-weight: bold;
}
.initiative-team-grid td a {  }
.initiative-team-grid td a.name {
  color: #3F4C51;
  display: inline-block;
  width: 90%;
}
.initiative-team-grid td img { display: block; }

.initiative-team-list {
  max-width: 540px;
  margin: 0 auto;
}
.initiative-team-list > h3 {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 0.5em;
  text-transform: none;
}
.initiative-team-list-item {
  margin-bottom: 2em;
  font-size: 1.25em;
}
.initiative-team-list h4 {
  margin: 0 0 0.5em;
  text-transform: none;
  font-size: 1em;
  font-weight: bold;
}


.twitter-timeline {
  margin: 0 auto;
  display: block;
}


/**
 * Newsroom.
 */
body.newsroom {}
body.news .mo-layout-796-n.mo-layout-clear,
body.newsroom .mo-layout-796-n.mo-layout-clear,
body.press-releases .mo-layout-796-n.mo-layout-clear,
body.in-the-news .mo-layout-796-n.mo-layout-clear {
  margin-top: 2em;
}
body.news .mo-layout-796-n.mo-layout-clear .sf_2cols_2in_33 > div,
body.newsroom .mo-layout-796-n.mo-layout-clear .sf_2cols_2in_33 > div,
body.press-releases .mo-layout-796-n.mo-layout-clear .sf_2cols_2in_33 > div,
body.in-the-news .mo-layout-796-n.mo-layout-clear  .sf_2cols_2in_33 > div {
  margin-bottom: 4em;
}

h2.title-rule {
  font-size: 2.25em;
  font-weight: bold;
  text-transform: none;
  border-bottom: 1px solid #D2D1D1;
  padding-bottom: 0.25em;
  margin: 0 0 0.5em;
}


.photo-credit { position: relative; display: block; }
.photo-credit > img { display: block; }
.photo-credit > em {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  line-height: 1;
  background-color: rgba(0,0,0, 0.5);
  color: #FFFFFF;
  padding: 0.5em 1em;
  font-size: 11px;
  z-index: 20;
}


/**
 * News.
 */
.news-list {}
.news-list-titledatecontent {}
.news-list-titledatesummary {}
.news-list-titledate {}
.news-list-title {}
.news-full { width: 90%; }
.news-item { margin-bottom: 0.5em; }
.news-item-title { text-transform: none; }
.news-item-title a {}
.news-item-subheader {
  font-style: italic;
  font-size: 1.5em;
  color: #9C9C9C;
  margin-top: -0.5em;
}
.news-item-meta {
  margin-bottom: 0.5em;
  /*font-style: italic;*/
}
.news-item-meta > span {
  /*white-space: nowrap;*/
 /* display: inline-block; */
  margin-bottom: 0.35em;
}
.news-item-meta-author {}
.news-item-meta-source {}
.news-item-meta-author + .news-item-meta-source:before {
  content: ", ";
  margin-left: -0.3em;
}
.news-item-meta-date {
  display: block !important;
}
.news-item-image {}
.news-item-summary {}
.news-item-content {}
.news-item-content ul,
.news-item-content ol {
  list-style-position: inside;
}
.news-item-tags {
  color: #9C9C9C;
}
.news-item-tags a {
  color: #9C9C9C;
  display: inline-block;
  padding-right: 0.5em;
}
.news-item-tags span {
  display: inline-block;
  padding-right: 0.5em;
}
.news-item-tags span:first-child { display: none; }
.news-item-commentcount {}

/* Template: Titles only (News in footer) */
.news-list-title h4 {
  color: #E3D266;
  font-size: 1.125em;
  font-weight: bold;
  text-transform: uppercase;
}
.news-list-title .news-item {
  border-top: 1px solid #686F71;
  padding-top: 0.5em;
  margin-bottom: 0.5em;
}
.news-list-title .news-items > :first-child {
  border-top: 0 none;
  padding-top: 0;
}
.news-list-title .news-item-title {
  margin: 0;
  font-size: 1em;
}
.news-list-title .news-item-title a.more,
.news-list-title .news-item-title a.more:hover { color: #FC7044; }
.news-list-title .news-item-title a.more:after { color: #D5D5D5; }
.news-list-title .news-item-title a.more em { color: #D5D5D5; }
.news-list-title .news-list-more {
  font-size: 0.75em;
  color: #FC7044;
  margin-top: 1em;
}
.news-list-title .news-list-more a { color: #FC7044; }
/* Template: Titles, dates and full content (Featured news at Newsroom landing) */
.news-list-titledatecontent {
  background-color: #F2F2F2;
  padding: 100px 0;
  margin-bottom: 12px;
}
.news-list-titledatecontent .news-items {  }
.news-list-titledatecontent .news-items .cycle-prev,
.news-list-titledatecontent .news-items .cycle-next {
/*  background: transparent none;
  font-size: 3em;
  font-weight: bold;
  line-height: 1;
  opacity: 0.2;
  top: 40%;
  text-align: left;
  text-shadow: 0 0 5px #FFF;*/
  left: 10px;
  text-shadow: 0 0 5px #FFF;
  color: #3F4C51;
  top: 170px;
}
.news-list-titledatecontent .news-items .cycle-next {
  left: auto;
  right: 10px;
}
.news-list-titledatecontent .news-items .cycle-prev:hover,
.news-list-titledatecontent .news-items .cycle-next:hover { opacity: 1; }
.news-list-titledatecontent .news-item {
  margin: 0 70px;
}
.news-list-titledatecontent .news-item-image {
  float: left;
  margin-right: 70px;
}
.news-list-titledatecontent .news-item-image img {
  background-color: #FFF;
  width: 460px;
  height: 460px;
}
.news-list-titledatecontent .news-item-title {
  font-size: 1.875em;
  font-weight: bold;
  line-height: 1.2;
  margin: 0.35em 0;
}
.news-list-titledatecontent .news-item-meta {}
.news-list-titledatecontent .news-item-summary {
  font-size: 1.25em;
  line-height: 1.5;
  font-style: italic;
}
.news-list-titledatecontent .news-item-content {
  font-size: 1.25em;
  line-height: 1.5;
}

.news-list-titledatesummary { padding-right: 55px; }
.news-list-titledatesummary .news-items {}
.news-list-titledatesummary .news-item {
  border-top: 1px solid #d2d1d1;
  padding: 1em 0 1em 175px;
  margin: 0;
  position: relative;
}
.news-list-titledatesummary .news-item:first-child { border-top: 0 none; }
.news-list-titledatesummary .news-item-image {
/*  margin: 0 15px 0 0;
  float: left;*/
  max-width: 160px;
  position: absolute;
  top: 1em;
  left: 0;
}
.news-list-titledatesummary .news-item-meta {}
.news-list-titledatesummary .news-item-title {
  font-weight: bold;
  font-size: 1.375em;
  margin: 0 0 0.5em;
}
.news-list-titledatesummary .news-item-content {}
.news-list-titledatesummary .news-item-tags {
  font-size: 0.875em;
  padding: 0.5em 0;
}
/* Template: Full news item */
.news-full {}
.news-full .news-item-title {}
.news-full .news-item-meta {
  margin-bottom: 1.5em;
}
.news-full .news-item-image {
  margin: 0 15px 10px 0;
  float: left;
}
.news-full .news-item-summary {
  font-size: 1.25em;
  line-height: 1.5;
  font-style: italic;
}
.news-full .news-item-content {}
.news-full .news-item-tags {}

/**
 * Foundation Blog.
 */
.blogpost-list { margin-bottom: 1em; }
.blogpost-list-footer {}
.blogpost-list-more {}
.blogpost-list-more a {}
.blogpost-full { width: 90%; }
.blogpost-items { margin-bottom: 1em; }
.blogpost-item {}
.blogpost-item-title { text-transform: none; }
.blogpost-item-title a.more em { color: inherit; }
.blogpost-item-meta {
  margin-bottom: 0.5em;
  font-style: italic;
}
.blogpost-item-content {}
.blogpost-item-tag {}
.blogpost-item-commentcount {}
/* Template: Full */
.blogpost-full {}
.blogpost-full .blogpost-item-meta {}
.blogpost-full .blogpost-item-summary {
  font-size: 1.25em;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1em;
}

/* Template: Foundation Blog list (in footer) */
.blogpost-list-footer h4 {
  color: #E3D266;
  font-size: 1.125em;
  font-weight: bold;
  text-transform: uppercase;
}
.blogpost-list-footer .blogpost-item {
  border-top: 1px solid #686F71;
  padding-top: 0.5em;
  margin-bottom: 0.5em;
}
.blogpost-list-footer .blogpost-items > :first-child {
  border-top: 0 none;
  padding-top: 0;
}
.blogpost-list-footer .blogpost-item-title a.more,
.blogpost-list-footer .blogpost-item-title a.more:hover { color: #FC7044; }
.blogpost-list-footer .blogpost-item-title a.more:after { color: #D5D5D5; }
.blogpost-list-footer .blogpost-item-title a.more em { color: #D5D5D5; }
.blogpost-list-footer .blogpost-list-more {
  font-size: 0.75em;
  color: #FC7044;
  margin-top: 1em;
}
.blogpost-list-footer .blogpost-list-more a { color: #FC7044; }


.footer_cols > .sf_colsOut {}
.footer_cols > .sf_colsOut > .sf_colsIn {
  background: transparent url("../Images/bg_footer_cols.png") repeat-y 0 0;
  padding: 0 30px;
  margin: 0 !important;
}
.footer_cols > .sf_colsOut.sf_3cols_1_33 > .sf_colsIn {
  background-image: none;
  padding-left: 0;
}
.footer_cols > .sf_colsOut.sf_3cols_3_33 > .sf_colsIn {
  padding-right: 0;
}
@media only screen and (max-width: 1024px) {
  .footer_cols > .sf_colsOut > .sf_colsIn {
    background-image: none;
    padding: 0;
    height: auto !important;
    min-height: auto !important;
  }
}



/**
 * Main navigation menu.
 */
.mo-mainmenu {
  line-height: 1;
  position: relative;
  clear: both;
  float: right;
  padding-right: 20px;
}
.mo-mainmenu ul,
.mo-mainmenu li {
  margin: 0;
  padding: 0;
  list-style: none none;
}
.mo-mainmenu > ul {}
.mo-mainmenu > ul > li {
  float: left;
  padding-bottom: 46px;
  padding-top: 0.5em;
}
.mo-mainmenu > ul > li.menuitem--programs,
.mo-mainmenu > ul > li.menuitem--grants,
.mo-mainmenu > ul > li.menuitem--newsroom {
  padding-top: 0;
}
.mo-mainmenu > ul > li > a {
  border-left: 1px solid #c1c3c3;
}
.mo-mainmenu > ul > li > div {
  position: absolute;
  left: -9999em;
  top: -9999em;
  z-index: 9999;
}
.mo-mainmenu > ul > li > div > ul {
  background-color: #d1dde2;
  padding: 30px 50px;
  border-radius: 25px 0 25px 0;
  margin: 0;
}
.mo-mainmenu > ul > li > div > ul > li {
  max-width: 9.5em;
  white-space: normal;
  margin-bottom: 1em;
}
.mo-mainmenu > ul > li.menuitem--programs > div > ul { white-space: nowrap; }
.mo-mainmenu > ul > li.menuitem--programs > div > ul > li {
  float: left;
  margin-right: 2em;
  margin-bottom: 0;
}

.mo-mainmenu > ul > li > div > ul > li > a {
  font-weight: bold;
  font-size: 0.875em;
  text-transform: uppercase;
}
.mo-mainmenu > ul > li > div > ul > li > div {
  font-size: 0.8125em;
}
.mo-mainmenu > ul > li > div > ul > li ul {}
.mo-mainmenu > ul > li > div > ul > li ul li {
  border-left: 0 none;
  float: none;
  position: static;
  padding: 0.5em 0;
}
.mo-mainmenu > ul > li > div > ul > li ul li ul { margin-left: 10px; }



.mo-mainmenu > ul > li.hasChilds:hover {
  background: transparent url("../Images/bg_mainmenu.png") no-repeat bottom center;
}
.mo-mainmenu > ul > li:hover > div,
.mo-mainmenu > ul > li > a:hover + div {
  padding-top: 46px;
  top: 1.5em;
  right: auto;
  width: 17em;
  left: auto;
}
.mo-mainmenu > ul > li.menuitem--programs:hover > div,
.mo-mainmenu > ul > li.menuitem--programs > a:hover + div {
  left: -180px;
  right: auto;
  width: auto;
}
.mo-mainmenu > ul > li.menuitem--about:hover > div,
.mo-mainmenu > ul > li.menuitem--about > a:hover + div {
  right: 0;
}


/* links */
.mo-mainmenu a {
  color: #3F4C51;
  text-decoration: none !important;
  display: block;
  padding: 0 10px;
}
.mo-mainmenu a:hover { color: #299199; }
.mo-mainmenu a.sfSel {
  font-weight: bold;
  color: #299199;
}
.mo-mainmenu a span {}
.mo-mainmenu ul li ul li a {
  padding: 0;
}
.mo-mainmenu ul li ul li a span {}

/* Remove left border from the first item */
.mo-mainmenu > ul > li:first-child > a { border-left: 0 none; }
/* Remove left border from the first TitleCase menu item */
.mo-mainmenu > ul > li.menuitem--staff > a { border-left: 0 none; }

.mo-mainmenu > ul > li > a {}
.mo-mainmenu > ul > li.menuitem--programs > a,
.mo-mainmenu > ul > li.menuitem--grants > a,
.mo-mainmenu > ul > li.menuitem--newsroom > a {
  text-transform: uppercase;
  font-size: 1.5em;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.mo-mainmenu > ul > li.menuitem--programs > div > ul > li > a {
  padding-top: 60px;
  background: transparent url("../Images/icons_programs_menu.png") no-repeat top center;
}
.mo-mainmenu > ul > li.menuitem--programs > div > ul > li.menuitem--programs-environmental-conservation > a {
  background-position: 50% 0;
}
.mo-mainmenu > ul > li.menuitem--programs > div > ul > li.menuitem--programs-patient-care > a {
  background-position: 50% -100px;
}
.mo-mainmenu > ul > li.menuitem--programs > div > ul > li.menuitem--programs-science > a {
  background-position: 50% -200px;
}
.mo-mainmenu > ul > li.menuitem--programs > div > ul > li.menuitem--programs-san-francisco-bay-area > a {
  background-position: 50% -300px;
}
.mo-mainmenu > ul > li.menuitem--newsroom { padding-right: 30px; }


.mo-mainmenu > ul.k-menu .k-item {
  border: 0 none;
}
.mo-mainmenu > ul.k-menu .k-item > .k-link {
  padding: 0 10px;
  line-height: 1;
}
.mo-mainmenu > ul.k-menu > li.menuitem--programs > a,
.mo-mainmenu > ul.k-menu > li.menuitem--grants > a,
.mo-mainmenu > ul.k-menu > li.menuitem--newsroom > a {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.mo-mainmenu > ul.k-menu > li.menuitem--programs:hover > div,
.mo-mainmenu > ul.k-menu > li.menuitem--programs > a:hover + div {
  width: 840px;
}






/**
 * Footer navigation menu.
 */
.mo-footermenu {
  line-height: 1;
}
.mo-footermenu ul,
.mo-footermenu li {
  margin: 0;
  padding: 0;
  list-style: none none;
}
.mo-footermenu > ul > li { margin-bottom: 2em; }
.mo-footermenu > ul > li ul { margin-top: 2em; }
.mo-footermenu > ul > li li { margin-bottom: 1em; }
.mo-footermenu li a {
  color: #FC7044;
  font-size: 1em;
  margin-bottom: 1em;
}
.mo-footermenu > ul > li > a {
  color: #E3D266;
  text-transform: uppercase;
  font-size: 1.125em;
  font-weight: bold;
}
.mo-footermenu > ul > li.menuitem--grants > div,
.mo-footermenu > ul > li.menuitem--newsroom > div { display: none; }


.ui-search {
  padding: 20px 30px;
  position: relative;
  z-index: 20;
  margin-bottom: 8px;
}
.ui-search-active {
  background-color: #D1DDE2;
  border-bottom: 1px solid #B5BFC4;
  -webkit-transition: all 0.3s ease-out;  /* Chrome 1-25, Safari 3.2+ */
     -moz-transition: all 0.3s ease-out;  /* Firefox 4-15 */
       -o-transition: all 0.3s ease-out;  /* Opera 10.50–12.00 */
          transition: all 0.3s ease-out;  /* Chrome 26, Firefox 16+, IE 10+, Opera 12.10+ */
}
.ui-search-txt {
  border: 1px solid #E6E5E5;
  height: 30px;
  float: left;
  width: 90%;
  padding: 0 10px;
}
.ui-search-btn {
  width: 36px;
  height: 32px;
  padding: 0;
  background: transparent url("../Images/btn_search.png") no-repeat center;
  border: 0 none;
  text-indent: -9999px;
  float: left;
}
.ui-search-extra { display: none; }
.ui-search-extra a { color: #3F4C51; }

#ui-header .ui-search {
  float: right;
  width: 260px;
}
#ui-header .ui-search-txt {
  width: 202px;
}
#ui-header .ui-search-extra {
  -webkit-transition: all 0.3s ease-out;  /* Chrome 1-25, Safari 3.2+ */
     -moz-transition: all 0.3s ease-out;  /* Firefox 4-15 */
       -o-transition: all 0.3s ease-out;  /* Opera 10.50–12.00 */
          transition: all 0.3s ease-out;  /* Chrome 26, Firefox 16+, IE 10+, Opera 12.10+ */
  background-color: #D1DDE2;
  color: #3F4C51;
  border-top: 1px solid #FFFFFF;
  font-size: 0.875em;
  padding: 1em 30px;
  border-top: 1px solid inherit;
  position: absolute;
  left: 0;
  right: 0;
  top: 73px;
  z-index: 21;
}
#ui-header .ui-search-active .ui-search-extra { display: block; }


.body-content {
  padding: 2em 40px;
}


.mo-about-lastbox {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 1.9em;
  font-weight: bold;
}

.mo-about-lastbox  li {
  padding: 0.25em 0;
}




/**
 * Testing the new menu.
 */
.mo-menu {
  float: right;
}
.mo-menu .sfNavHorizontalDropDown {
  background-color: #FFFFFF;
}
.mo-menu .sfNavHorizontalDropDown li {
  border-right: 1px solid #c1c3c3;
}
.mo-menu .sfNavHorizontalDropDown .k-item > a.k-link {
  color: #3F4C51;
  line-height: 1;
}
.mo-menu .sfNavHorizontalDropDown .k-item > a.k-link span {

}
.mo-menu .sfNavHorizontalDropDown .k-item > a.k-link span.k-icon {
  display: none;
  background-image: none;
}
.mo-menu .sfNavHorizontalDropDown .k-item > .k-animation-container {

}
.mo-menu .sfNavHorizontalDropDown .k-popup {

}
.mo-menu .sfNavHorizontalDropDown .k-popup li {

}
.mo-menu .sfNavHorizontalDropDown .k-group .k-item > a.k-link {

}
.mo-menu.sfNavHorizontalDropDownWrp .k-popup .k-animation-container {

}


.related-grants {
  padding: 2em 0;
  clear: both;
}
.related-grants h3 {
  font-size: 1.5em;
  font-weight: bold;
  text-transform: none;
}

.k-block, .k-widget {
  line-height: normal;
  outline: 0;
}
