/* -------------------------------- 
	BASE
-------------------------------- */
*,
*::after,
*::before {
  box-sizing: border-box;
}
body,
html,
main {
  /* important */
  height: 100%;
}
a {
  text-decoration: none;
}
a.link {
  text-decoration: underline;
  color: #1a64ab;
  padding: 0;
  margin: 0;
  font-weight: normal;
}
a.link:hover {
  color: #000000;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #ffffff;
}
.content,
.content-interior {
  position: relative;
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 1;
  transition: transform .5s;
}
.content {
  top: 80px;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .content {
    top: 60px;
  }
}
.content-interior {
  top: 0;
}
.textBlock.padding-20 {
  padding: 15px;
}
/* -------------------  CONTAINERS --------------------- */
.module,
.sectionHeader,
.sectionContent {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.module {
  min-height: 400px;
}
.full {
  position: relative;
  width: 100%;
  text-align: left;
  margin: 0;
  padding: 50px 0;
}
.half {
  position: relative;
  width: 50%;
  padding: 0;
  float: left;
  margin: 0;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .half {
    width: 100%;
    padding: 0;
    margin: 0;
    min-height: auto;
    float: none;
    clear: both;
  }
  .module {
    min-height: 300px;
  }
}
/* ------------------- FIXES --------------------- */
.paddingText {
  padding: 40px 60px;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .paddingText {
    padding: 50px 20px;
    overflow: hidden;
  }
}
.paddingContact {
  margin: 75px auto;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .paddingContent {
    padding: 30px 20px;
  }
}
.text-block {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.5em;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .text-block {
    width: 95%;
    max-width: auto;
    padding: 0 20px;
    text-align: center;
  }
  .mlc-model {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
  }
}
.right {
  float: right;
}
.left {
  float: left;
}
.center {
  text-align: center;
}
.txtRight {
  text-align: right;
}
.txtLeft {
  text-align: left;
}
.txtJustify {
  text-align: justify;
}
.elevator {
  height: 60px;
}
.elevator-30 {
  height: 30px;
}
.elevator-20 {
  height: 20px;
}
.elevator-10 {
  height: 10px;
}
.padding20 {
  padding: 0 20px 0 0;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
/* -----------------------  CONTENT ----------------------- */
.header {
  width: 100%;
  height: 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  background: #ffffff;
  position: absolute;
  z-index: 5;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .header {
    height: 60px;
    position: fixed;
    box-shadow: none;
    border-bottom: 1px solid rgba(152, 152, 152, 0.7);
    margin: 0;
    padding: 0;
  }
}
.header.is-fixed {
  position: fixed;
  height: 60px;
  left: 0;
  top: 0;
  transition: all .3s;
}
.logo-home {
  position: relative;
  top: 0;
  width: 230px;
  height: 100px;
  transition: all .3s;
}
.logo-home img {
  width: 70%;
  transition: all .3s;
  height: auto;
}
.logo-home.is-small {
  position: relative;
  top: 0;
  width: 140px;
  height: 60px;
}
.logo-home.is-small img {
  width: 90%;
  height: auto;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .logo-home,
  .logo-home.is-small {
    position: absolute;
    width: 110px;
    height: auto;
    right: 8px;
    top: 7px;
  }
  .logo-home img,
  .logo-home.is-small img {
    width: 90%;
    height: auto;
  }
}
/* -----------  ANIMATED CONTENT ----------------- */
.leftModule {
  transform: translateX(-150px);
  padding: 30px 0;
}
.rightModule {
  transform: translateX(150px);
  padding: 30px 0;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .leftModule,
  .rightModule {
    transform: translateX(0px);
  }
}
.come-in-left {
  transform: translateX(-150px);
  animation: come-in-left 0.7s ease forwards;
}
.come-in-right {
  transform: translateX(150px);
  animation: come-in-right 0.7s ease forwards;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .come-in-left,
  .come-in-right {
    transform: translateX(0px);
  }
}
.already-visible {
  transform: translateX(0);
  animation: none;
}
@keyframes come-in-left {
  to {
    transform: translateX(0);
  }
}
@keyframes come-in-right {
  to {
    transform: translateX(0);
  }
}
main {
  z-index: 1;
}
.fixed-bg {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 100%;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 50% 60%, center;
  z-index: 1;
}
.scrolling-bg {
  position: relative;
  height: auto;
  padding: 75px 0;
  z-index: 1;
}
#footer {
  background: #1a64ab;
  min-height: 600px;
  padding: 50px 0;
  text-align: center;
  position: relative;
}
#copyrights {
  width: 100%;
  height: 75px;
  background: #2a2a2a;
  padding: 5px 0;
  display: table;
}
#copyrights p {
  color: #f2f2f2;
  display: table-cell;
  vertical-align: middle;
  font-size: .95em;
  line-height: 75px;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  #copyrights {
    padding-top: 15px;
    text-align: center;
  }
  #copyrights p {
    font-size: 1.2em;
    line-height: 30px;
  }
}
/* FONTS */
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/Light/OpenSans-Light.woff') format('woff'), url('../fonts/Light/OpenSans-Light.ttf') format('truetype'), url('../fonts/Light/OpenSans-Light.svg#OpenSansLight') format('svg');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/Regular/OpenSans-Regular.woff') format('woff'), url('../fonts/Regular/OpenSans-Regular.ttf') format('truetype'), url('../fonts/Regular/OpenSans-Regular.svg#OpenSansRegular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/Semibold/OpenSans-Semibold.woff') format('woff'), url('../fonts/Semibold/OpenSans-Semibold.ttf') format('truetype'), url('../fonts/Semibold/OpenSans-Semibold.svg#OpenSansSemibold') format('svg');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'fontello';
  src: url('../fonts/fontello/fontello.woff?58255448') format('woff'), url('../fonts/fontello/fontello.ttf?58255448') format('truetype'), url('../fonts/fontello/fontello.svg?58255448#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'FuturaStd-Bold';
  src: url('../fonts/futura-bold/FuturaStd-Bold.woff') format('woff'), url('../fonts/futura-bold/FuturaStd-Bold.ttf') format('truetype'), url('../fonts/futura-bold/FuturaStd-Bold.svg#FuturaStd-Bold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Futura-Medium';
  src: url('../fonts/futura-medium/Futura-Medium.woff') format('woff'), url('../fonts/futura-medium/Futura-Medium.ttf') format('truetype'), url('../fonts/futura-medium/Futura-Medium.svg#Futura-Medium') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'futura_bookregular';
  src: url('../fonts/futura-book/futura-book-webfont.woff') format('woff'), url('../fonts/futura-book/futura-book-webfont.ttf') format('truetype'), url('../fonts/futura-book/futura-book-webfont.svg#futura_bookregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.light {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}
.regular {
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
}
.semiBold {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}
.futura {
  font-family: 'futura_bookregular', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
}
.futuraMd {
  font-family: 'Futura-Medium', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
}
.futuraBd {
  font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
}
p {
  font-size: 1.125em;
  font-size: 18px;
  margin: 0 0 10px 0;
}
.firstcharacter {
  color: #424242;
  float: left;
  font-family: 'futura_bookregular', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  font-size: 50px;
  line-height: 50px;
  padding-top: 0;
  padding-right: 6px;
  padding-left: 0;
}
h1 {
  font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  font-size: 2.225em;
  line-height: 1.4em;
  margin-bottom: 10px;
}
h2 {
  font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  font-size: 2em;
  margin: 0;
}
h3 {
  font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  font-size: 1.5em;
  line-height: 1.3em;
  margin: 0 0 5px 0;
}
h4 {
  font-family: 'Futura-Medium', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  font-size: 1.35em;
  line-height: 1.5;
  margin: 0;
}
h4 span {
  font-family: 'Futura-Medium', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  font-size: 1em;
  line-height: 1.5;
  margin: 0;
}
h5 {
  font-family: 'futura_bookregular', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  font-size: 1.35em;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  h1 {
    font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-weight: normal;
    font-size: 1.5em;
    line-height: 1.5em;
    margin: 0 0 20px 0;
  }
  h2 {
    font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-weight: normal;
    font-size: 2em;
    margin: 0;
  }
  h3 {
    font-size: 1.5em;
    line-height: 1.3em;
  }
  h4 {
    font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-weight: normal;
    font-size: 1.2em;
    margin: 0;
  }
}
.tagline {
  position: absolute;
  left: 85%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-85%) translateY(-40%);
  -moz-transform: translateX(-85%) translateY(-40%);
  -ms-transform: translateX(-85%) translateY(-40%);
  -o-transform: translateX(-85%) translateY(-40%);
  transform: translateX(-85%) translateY(-40%);
}
.tagline h1 {
  font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  text-align: center;
  font-size: 3rem;
  color: #ffffff;
  padding: 10px 50px;
  z-index: 3;
  background: rgba(251, 189, 27, 0.9);
  margin: 0;
  white-space: nowrap;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .tagline {
    left: 50%;
    top: 80%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-80%);
    -moz-transform: translateX(-50%) translateY(-80%);
    -ms-transform: translateX(-50%) translateY(-80%);
    -o-transform: translateX(-50%) translateY(-80%);
    transform: translateX(-50%) translateY(-80%);
  }
  .tagline h1 {
    font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-weight: normal;
    text-align: center;
    font-size: 1.5rem;
    color: #ffffff;
    padding: 10px 40px;
    z-index: 3;
    background: rgba(251, 189, 27, 0.9);
    margin: 0;
    white-space: nowrap;
  }
  .tagline h2 {
    font-size: 1.5em;
    font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-weight: normal;
    text-align: center;
    color: #ffffff;
    padding: 10px 40px;
    z-index: 3;
    background: rgba(26, 100, 171, 0.7);
    margin: 0;
    white-space: nowrap;
  }
}
.slide-tagline {
  position: absolute;
  bottom: auto;
  right: auto;
}
.slide-tagline.first {
  left: 50%;
  top: 60%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-40%);
  -ms-transform: translateX(-50%) translateY(-40%);
  -o-transform: translateX(-50%) translateY(-40%);
  transform: translateX(-50%) translateY(-40%);
}
.slide-tagline h1 {
  font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  text-align: center;
  font-size: 2.75rem;
  color: #ffffff;
  padding: 10px 40px;
  background: rgba(26, 100, 171, 0.7);
  margin: 0;
  white-space: nowrap;
}
.slide-tagline h1.tab {
  margin-left: 60px;
  margin-right: -60px;
}
.slide-tagline .cta {
  text-align: center;
  max-width: 275px;
  margin: 30px auto;
  white-space: nowrap;
  color: #ffffff;
  font-family: 'Futura-Medium', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  font-size: 1.5em;
  text-transform: uppercase;
  padding: 15px 20px;
  background: #d42c27;
  border: none;
  transition: all .3s;
  cursor: pointer;
}
.slide-tagline .cta:hover {
  background: #000000;
}
.small {
  font-size: 16px;
}
#slideshow {
  position: relative;
  width: 100%;
  top: 80px;
  left: 0;
  bottom: 0;
  margin: 0;
  z-index: 1;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  #slideshow {
    top: 60px;
  }
}
/* --------------------------  HOME SLIDER IMAGES ------------------------------ */
.slide1,
.slide2,
.slide3,
.slide4 {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  position: relative;
}
.slide1 {
  background: url("../images/MLC-1500x900-slide-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
.slide2 {
  background: url("../images/MLC-1500x900-teaching.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slide3 {
  background: url("../images/MLC-1500x900-leadership.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.slide4 {
  background: url("../images/MLC-1500x900-engagement.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .slide1,
  .slide2,
  .slide3,
  .slide4 {
    width: 100%;
    height: 100%;
    min-height: 550px;
    position: relative;
  }
  .slide1 {
    background: url("../images/MLC-640x920-slide-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .slide2 {
    background: url("../images/MLC-640x920-teaching.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .slide3 {
    background: url("../images/MLC-640x920-leadership.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .slide4 {
    background: url("../images/MLC-640x920-engagement.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}
/* --------------------------  PARALLAX IMAGES -------------------------------- */
.fixed-bg.bg-1 {
  background-image: url("../images/MLC-1500x900-teaching.jpg");
  background-position: center center;
}
.fixed-bg.bg-2 {
  background-image: url("../images/MLC-1500x900-leadership.jpg");
}
.fixed-bg.bg-3 {
  background-image: url("../images/MLC-1500x900-engagement.jpg");
  background-position: center right;
}
/* --------------------------  HOME SCROLLING IMAGES  ------------------------- */
.students-one {
  height: 500px;
  width: 100%;
  background: url("../images/MLC-900x600-teachers-one.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.students-two {
  height: 500px;
  width: 100%;
  background: url("../images/MLC-900x600-students-one.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .students-two {
    height: 600px;
    width: 100%;
    background: url("../images/MLC-640x920-students-one-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.logos {
  margin: 60px auto 0 auto;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .logos {
    margin: 20px auto 0 auto;
    padding: 0 20px;
  }
}
.homeImages {
  position: relative;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  width: 200px;
  margin: 0 auto 0 auto;
  height: 200px;
  z-index: 1;
}
.homeImages.school {
  background: url("../images/MLC-500x500-home-school.jpg");
  background-position: center;
  background-size: contain;
}
.homeImages.teachers {
  background: url("../images/MLC-500x500-home-teachers.jpg");
  background-position: center;
  background-size: contain;
}
.homeImages.students {
  background: url("../images/MLC-500x500-home-students.jpg");
  background-position: center;
  background-size: contain;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .homeImages {
    margin: 0 auto 20px auto;
  }
  .home3 {
    margin-bottom: 30px;
  }
}
/* --------------------------  INTERIOR SECTION IMAGES  ------------------------- */
.sectionImages {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 300px;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 1;
}
.sectionImages.about {
  background: url("../images/MLC-900x300-about.jpg");
  background-position: center;
}
.sectionImages.staff {
  background: url("../images/MLC-900x300-staff.jpg");
  background-position: center;
}
.sectionImages.impact {
  background: url("../images/MLC-900x300-impact.jpg");
  background-position: center;
}
.sectionImages.contact {
  background: url("../images/MLC-900x300-hoberman-1.jpg");
  background-position: center;
}
.sectionImages.k12-initiative {
  background: url("../images/MLC-900x300-k12initiative.jpg");
  background-position: center;
}
.diagram {
  padding: 40px 0;
  width: 350px;
  margin: 0 auto;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .diagram {
    width: 90%;
    padding: 50px 0;
    margin: 0 auto;
    clear: right;
  }
}
.mlc-model {
  width: 75%;
  height: 75%;
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}
.mlc-model-circular {
  width: 60%;
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}
@media only screen and (min-width: 641px) and (max-width: 1023px) {
  .mlc-model-circular {
    width: 85%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .mlc-model-circular {
    width: 100%;
    padding: 10px;
    margin: 0;
  }
}
.mlc-generic-image {
  max-width: 100%;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 10px 0 20px 0;
  text-align: center;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .mlc-model {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0 50px 0;
  }
}
.mlc-char {
  margin: 30px auto 0 auto;
  text-align: center;
}
.partner-logos {
  width: 100%;
  height: auto;
  margin: 10px auto 40px auto;
}
.network-logos {
  width: 100%;
  max-width: 300px;
  margin: 10px auto 40px auto;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .partner-logos {
    min-width: 70%;
    height: auto;
    margin: 20px 0 0;
  }
}
.small-charts {
  width: 160px;
  height: 90px;
  margin: 15px auto;
}
.bg-white {
  background-color: #ffffff;
}
.bg-black {
  background-color: #000000;
}
.bg-yellow {
  background-color: #fbbd1b;
}
.bg-red {
  background-color: #d42c27;
}
.bg-blue {
  background-color: #1a64ab;
}
.bg-green {
  background-color: #67a944;
}
.bg-gray {
  background-color: #f2f2f2;
}
.bg-muteGray {
  background-color: #c8c8c8;
}
.white {
  color: #ffffff;
}
.black {
  color: #000000;
}
.gray {
  color: #424242;
}
.yellow {
  color: #fbbd1b;
}
.red {
  color: #d42c27;
}
.blue {
  color: #1a64ab;
}
.green {
  color: #67a944;
}
.muteGray {
  color: #c8c8c8;
}
/* --------------------- SECTION NAVIGATION --------------------- */
#sectionNav {
  float: right;
  padding: 30px 50px 0 0;
  max-width: 350px;
}
#sectionNav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#sectionNav a,
#sectionNav p {
  display: block;
  margin: 0;
  color: #989898;
  font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  font-size: 1.35em;
  text-align: right;
  padding: 0 0 15px;
  text-decoration: none;
  text-transform: uppercase;
}
#sectionNav a:hover {
  color: #000000;
}
#sectionNav li {
  margin: 1px 0;
}
#sectionNav li li a {
  display: block;
  text-align: right;
  font-size: 1em;
  margin-top: -15px;
  padding: 0;
  line-height: 2.75em;
  text-decoration: none;
}
#sectionNav a.selected,
#sectionNav p.selected {
  color: #000000;
}
/* --------------------- NAVIGATION FOR DESKTOP  --------------------- */
.navigation {
  width: auto;
  float: right;
  padding-top: 30px;
  transition: padding-top 0.5s;
}
.navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.navigation li {
  display: inline-block;
  line-height: 16px;
  padding: 0 1.5em;
}
.navigation li:last-child {
  border-right: none;
  padding-right: 0;
}
.navigation li a {
  font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  color: #989898;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1em;
}
.navigation li a:hover {
  color: #000000;
}
.navigation .selected {
  color: #000000 !important;
}
.navigation.navFixed {
  padding-top: 18px;
}
/* --------------------- NAVIGATION FOR MOBILE  --------------------- */
.nav-open content {
  transform: translateX(-280px);
  overflow: hidden;
}
.nav-trigger {
  position: fixed;
  z-index: 12;
  top: 8px;
  left: 12px;
  height: 44px;
  width: 44px;
  color: #fff;
  padding-top: 12px;
  text-indent: -60px;
  text-decoration: none;
  transition: color .3s;
  /*overflow: hidden;*/
  white-space: nowrap;
  text-indent: 100%;
}
.nav-trigger span,
.nav-trigger span::before,
.nav-trigger span::after {
  position: absolute;
  height: 2px;
  width: 30px;
  background: #1a64ab;
}
.nav-trigger span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background .3s;
}
.nav-trigger span::before,
.nav-trigger span::after {
  content: '';
  top: 0;
  left: 0;
  transition: background .3s, transform .3s;
}
.nav-trigger span::before {
  transform: translateY(-9px);
}
.nav-trigger span::after {
  transform: translateY(9px);
}
.nav-trigger:hover span,
.nav-trigger:hover span::before,
.nav-trigger:hover span::after {
  background: #1a64ab;
}
.nav-open .nav-trigger span {
  background: transparent;
}
.nav-open .nav-trigger {
  color: transparent;
}
.nav-open .nav-trigger span::before,
.nav-open .nav-trigger span::after {
  background: #ffffff;
}
.nav-open .nav-trigger span::before {
  transform: rotate(-45deg);
}
.nav-open .nav-trigger span::after {
  transform: rotate(45deg);
}
.overlay {
  position: fixed;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 100, 171, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s, visibility .5s;
}
.nav-open .overlay {
  opacity: .95;
  visibility: visible;
}
.nav-container {
  position: fixed;
  z-index: 12;
  top: 0;
  right: 0;
  height: 100%;
  width: 90%;
  max-width: 280px;
  padding: 2em 3.5em;
  background: #F3F3F3;
  overflow: hidden;
  transform: translateZ(0);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.07, 0.23, 0.34, 1);
}
.nav-open .nav-container {
  transform: translateX(0);
}
.nav-container h2 {
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #AAAAAA;
  margin: 1.5em 0;
}
.nav {
  list-style: none;
  padding: 0;
}
.nav a {
  display: block;
  font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  padding: .5em 0;
  font-size: 1.5em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000000;
  transform: translateZ(0);
  transition: transform .2s, color .2s;
}
.nav a:hover {
  transform: translateX(15px);
  color: #000000;
}
.nav-open .nav a {
  animation: slide-in 0.4s 0.2s backwards;
}
.nav-open .nav li:nth-of-type(2) a {
  animation-delay: .3s;
}
.nav-open .nav li:nth-of-type(3) a {
  animation-delay: .4s;
}
.nav-open .nav li:nth-of-type(4) a {
  animation-delay: .5s;
}
.nav-open .nav li:nth-of-type(5) a {
  animation-delay: .6s;
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.social-icons {
  text-align: center;
  margin: 20px auto 0 auto;
  padding: 0;
}
.social-icons li {
  list-style-type: none;
  display: inline-block;
  padding: 0 .5em;
  font-family: fontello;
  font-size: 3em;
}
.social-icons li a {
  display: block;
  text-decoration: none;
  color: #fbbd1b;
  transition: all .3s;
}
.social-icons li a:hover {
  transform: scale(1.25);
  color: #000000;
}
.social-icons li:nth-of-type(1) a:before {
  content: "\e801";
}
.social-icons li:nth-of-type(2) a:before {
  content: "\e800";
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .social-icons {
    padding-top: 0;
    float: none;
    margin: 30px 0 0 0;
  }
  .social-icons li {
    padding: 0 .75em;
    font-family: fontello;
    font-size: 3em;
  }
  .social-icons li:first-child {
    margin-left: 0px;
  }
}
.colorKey {
  position: relative;
  font-size: 1.125em;
  margin: 20px 0;
}
.square {
  width: 15px;
  height: 15px;
  vertical-align: middle;
  display: inline-block;
  margin: -5px 15px 0 0;
}
.chart-col {
  max-width: 100%;
  margin: 30px auto;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .chart-col {
    top: 0;
    margin: 50px auto;
  }
}
.chart-col.half {
  width: 45%;
  margin: 0 10px;
}
.chart-col.full {
  width: 80%;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .chart-col.half {
    width: 100%;
    margin: 0 0 40px 0;
  }
}
.graph-container {
  position: relative;
  top: 0;
  padding: 0;
  margin: 0;
}
.graph-container-xsmall {
  height: 150px;
  margin-bottom: 0;
}
.graph-container-small {
  height: 230px;
}
.graph-container-mid {
  height: 250px;
}
.graph-container-large {
  height: 270px;
}
.graph-container.wide {
  height: 200px;
}
.graph-title {
  text-align: center;
  font-family: 'Futura-Medium', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  padding: 5px 0;
}
.graph-container .graph-bar {
  position: absolute;
  width: 30%;
  max-width: 130px;
  min-width: 80px;
  padding-top: 10px;
  bottom: -110%;
}
.graph-container .graph-bar span {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1em;
  color: #ffffff;
  font-family: 'Futura-Medium', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  top: 5px;
  margin: 0;
}
.graph-container .graph-bar p {
  font-family: 'Futura-Medium', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  text-align: center;
  font-size: 2em;
  display: none;
  position: relative;
  top: -55px;
  left: 10px;
}
.graph-container .graph-bar.placebo-bar {
  background: #989898;
  border: none;
  background-size: cover;
}
.graph-container .graph-bar.creon-bar {
  background: #d42c27;
  background-size: cover;
}
.bar-overflow {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 260px;
  bottom: 0;
}
.graph-container .graph-bar.placebo-bar {
  left: 15%;
}
.graph-container .graph-bar.creon-bar {
  left: 55%;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .graph-container .graph-bar.placebo-bar {
    left: 10%;
  }
  .graph-container .graph-bar.creon-bar {
    left: 55%;
  }
}
.footNote {
  color: #000000;
  margin-top: 20px;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .footNote {
    margin-top: 30px;
  }
}
table.presentations {
  color: #424242;
  font-family: Helvetica, Arial, sans-serif;
  width: 100%;
  padding-bottom: 40px;
  border-collapse: collapse;
  border-spacing: 0;
}
table.presentations tr th {
  width: 50%;
  border: 0 none;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1.125em;
  background: #fbbd1b;
  border-left: 1px solid #ffffff;
  height: 50px;
}
table.presentations tr td {
  background: rgba(251, 189, 27, 0.1);
  border-left: 1px solid #ffffff;
  font-size: 1em;
  vertical-align: top;
  text-align: left;
  padding: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  color: #000000;
}
table.goals {
  color: #333;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.125em;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 60px;
  padding-bottom: 40px;
  /* Table reset stuff */
  border-collapse: collapse;
  border-spacing: 0;
}
table.goals th {
  border: 0 none;
  color: #ffffff;
  font-family: 'Futura-Medium', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  font-size: 1.225em;
  background: #fbbd1b;
  height: 50px;
}
table.goals td {
  background: #989898;
  text-align: left;
  padding: 10px 20px 0 20px;
}
table.goals td span {
  color: #1a64ab;
  font-size: 1.125em;
}
table.goals tr td:first-child {
  background: #f2f2f2;
  vertical-align: top;
  text-align: right;
  padding-right: 40px;
  padding-top: 28px;
  width: 200px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: #424242;
}
table.goals tr th:first-child {
  background: #1a64ab;
  text-align: center;
  padding-right: 10px;
  width: 150px;
}
table.goals li {
  line-height: 1.5em;
  margin-bottom: 10px;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  table.goals {
    width: auto;
  }
  table.goals td {
    padding: 20px 0;
    width: 100px;
  }
  table.goals th {
    font-size: 1em;
    background: #fbbd1b;
    height: 60px;
    width: 300px;
  }
  table.goals td span {
    color: #1a64ab;
    font-size: .95em;
    padding: 0;
  }
  table.goals tr td:first-child {
    padding: 0;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1em;
    color: #424242;
  }
  table.goals tr th:first-child {
    background: #1a64ab;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  table.goals ol {
    margin-top: -20px;
  }
}
/* --------------------- INTERIOR SUB NAV --------------------- */
.accordion-menu {
  position: relative;
  top: 0px;
  bottom: auto;
  width: 100%;
  background: transparent;
  padding: 0;
  margin: 0;
  border-top: 2px white solid;
}
.accordion-menu ol,
.accordion-menu ul,
.accordion-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.accordion-menu ul {
  /* by default hide all sub menus */
  display: none;
}
.accordion-menu li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.accordion-menu .selected {
  color: #000000;
  background: rgba(255, 255, 255, 0.7);
}
.accordion-menu input[type=checkbox] {
  /* hide native checkbox */
  position: absolute;
  opacity: 0;
}
.accordion-menu label {
  cursor: pointer;
}
.accordion-menu label,
.accordion-menu a {
  position: relative;
  display: block;
  padding: 10px 0 10px 40px;
  color: #ffffff;
  font-size: 1.225rem;
  font-family: 'Futura-Medium', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
}
.accordion-menu ul label,
.accordion-menu ul a {
  background: transparent;
  padding-left: 60px;
  list-style: none;
  margin: 0;
}
.accordion-menu label::before,
.accordion-menu label::after,
.accordion-menu a::after {
  /* icons */
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.accordion-menu label::before {
  background-image: url(../images/icons.svg);
  background-repeat: no-repeat;
}
.accordion-menu label::before {
  /* arrow icon */
  left: 10px;
  top: 28px;
  background-position: 0 0;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.accordion-menu input[type=checkbox]:checked + label::before {
  /* rotate arrow */
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.accordion-menu input[type=checkbox]:checked + label + ul,
.accordion-menu input[type=checkbox]:checked + label:nth-of-type(n) + ul {
  /* use label:nth-of-type(n) to fix a bug on safari (<= 8.0.8) with multiple adjacent-sibling selectors*/
  /* show children when item is checked */
  display: block;
}
/*END*/
.no-touch .accordion-menu label:hover,
.no-touch .accordion-menu a:hover {
  background: #000000;
}
.no-touch .accordion-menu ul label:hover,
.no-touch.accordion-menu ul a:hover {
  background: transparent;
}
.no-touch .accordion-menu ul label:hover,
.no-touch.accordion-menu ul a:hover {
  background: transparent;
}
.accordion-menu.animated label::before {
  /* this class is used if you're using jquery to animate the accordion */
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
/* --------------------- FOOTER SUB NAV --------------------- */
.subnav {
  max-width: 60%;
  height: auto;
  min-height: 200px;
  margin: 50px auto 0 auto;
  padding: 0;
  clear: both;
}
.subnav .segment {
  width: 50%;
  float: left;
  text-align: center;
}
.subnav .segment h3 {
  font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  font-size: 1.5em;
  margin: 0;
  padding: 0;
  color: #fbbd1b;
  text-transform: uppercase;
}
.subnav .segment ul {
  margin-top: 15px;
  list-style: none;
  padding-left: 0;
  line-height: 2em;
}
.subnav .segment li {
  font-family: 'Futura-Medium', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  color: #ffffff;
  font-size: 1.125em;
}
.subnav .segment li:hover {
  color: #000000;
  cursor: pointer;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .subnav {
    max-width: 90%;
    margin: 30px auto;
    clear: both;
  }
  .subnav .segment {
    width: 100%;
    float: none;
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .subnav .segment ul {
    margin-top: 5px;
  }
  .subnav .segment li {
    font-family: 'futura_bookregular', Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-weight: normal;
    font-size: 1.4em;
    line-height: 1.75em;
  }
}
/* ------------------- INTERIOR HEADER --------------------- */
.sectionHeader {
  width: 100%;
  position: relative;
  top: 80px;
  margin-bottom: 80px;
}
.sectionLeft {
  position: relative;
  width: 40%;
  float: left;
  height: 300px;
  margin: 0;
  padding: 0;
}
.sectionLeft h1,
.sectionLeft h2 {
  font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.7);
  font-size: 72px;
  line-height: 72px;
  text-transform: uppercase;
  position: absolute;
  margin: 0;
  padding: 0;
  bottom: 20px;
  right: 50px;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .sectionLeft h2 {
    font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.2em;
    line-height: 1em;
    text-transform: uppercase;
    position: absolute;
    margin: 0;
    padding: 0;
    bottom: 10px;
    right: 25px;
  }
}
.sectionRight {
  width: 60%;
  float: left;
  height: 300px;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .sectionHeader {
    top: 60px;
    height: auto;
    padding: 0;
    margin-bottom: 0 0 60px 0;
  }
  .sectionLeft {
    position: relative;
    width: 100%;
    float: none;
    height: 100%;
    min-height: 95px;
    margin: 0;
    padding: 0;
  }
  .sectionLeft h1 {
    font-size: 3em;
    top: 25px;
    right: 25px;
  }
}
/* ------------------- CONTENT --------------------- */
.sectionRightContent {
  width: 60%;
  float: left;
  height: auto;
  padding-right: 4%;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .sectionRightContent {
    width: 100%;
    float: none;
    padding: 10px;
  }
}
/* ------------------  SOME COLORED BOXES FOR HIGHLIGHT SECTIONS ------------------ */
.boxes {
  position: relative;
  min-height: 450px;
  width: 100%;
}
.cta-small {
  position: relative;
  height: 40px;
  width: auto;
  max-width: 140px;
  line-height: 35px;
  text-align: center;
  background: transparent;
  border: 2px solid #ffffff;
  margin: 15px 0 0 0;
  font-family: 'Futura-Medium', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  clear: both;
  transition: all .3s;
}
.cta-small:hover {
  background: #000000;
  color: #ffffff;
  transition: all .3s;
  border: 1px solid #000000;
}
.programsBox {
  float: left;
  width: 45%;
  padding: 0;
  margin: 40px 20px 40px 0;
}
.programsBox .pTop {
  float: left;
  margin: 0;
  padding: 10px 0;
  text-align: center;
  width: 100%;
  -webkit-border-radius: 10px 10px 0px 0px;
  -moz-border-radius: 10px 10px 0px 0px;
  border-radius: 10px 10px 0px 0px;
}
.programsBox .pBottom {
  float: left;
  width: 100%;
  height: auto;
  background: #f2f2f2;
  text-align: center;
  margin: 0;
  padding: 20px 15px 15px 15px;
  -webkit-border-radius: 0px 0px 10px 10px;
  -moz-border-radius: 0px 0px 10px 10px;
  border-radius: 0px 0px 10px 10px;
}
.programsBox .pBottom p {
  font-family: 'Futura-Medium', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  font-size: 1.125em;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .programsBox {
    float: none;
    width: 100%;
    margin-bottom: 0;
  }
  .programsBox .pTop,
  .programsBox .pBottom {
    float: none;
    padding: 10px;
  }
}
.read-more {
  width: 60%;
  max-width: 80%;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1em;
  color: #ffffff;
  background: #d42c27;
  padding: 6px;
  margin: 20px auto;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-align: center;
  transition: all .3s;
}
.read-more:hover {
  background: #000000;
}
.coloredBox {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto 20px auto;
  background: #f2f2f2;
}
.coloredBox .mission {
  margin: 0;
  text-align: center;
  width: 100%;
  height: auto;
  padding: 2px 0;
  color: #ffffff;
  -webkit-border-radius: 10px 10px 0px 0;
  -moz-border-radius: 10px 10px 0px 0;
  border-radius: 10px 10px 0px 0;
}
.coloredBox .missionTxt {
  padding: 20px;
}
.coloredBox p {
  font-size: 1.225em;
  margin: 0;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .coloredBox {
    float: none;
    width: 100%;
    margin: 0 auto 40px auto;
  }
  .coloredBox h1 {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 70px;
    height: 50px;
    line-height: 70px;
    -webkit-border-radius: 10px 10px 0px 0px;
    -moz-border-radius: 10px 10px 0px 0px;
    border-radius: 10px 10px 0px 0px;
  }
  .coloredBox p {
    width: 100%;
    height: auto;
    -webkit-border-radius: 0px 0px 10px 10px;
    -moz-border-radius: 0px 0px 10px 10px;
    border-radius: 0px 0px 10px 10px;
  }
}
/* ------------------  STAFF & ADVISORY BOARD LIST ------------------ */
.teamMember {
  max-width: 80%;
  overflow: hidden;
  margin: 30px 0 30px 0;
}
.teamMember a {
  display: block;
  overflow: hidden;
  height: 100%;
}
.teamMember a h2 {
  font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  font-size: 1.5em;
  line-height: 1.5em;
  margin: 0;
  padding-left: 20px;
}
.teamMember a h3 {
  font-family: 'FuturaStd-Bold', Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  color: #424242;
  font-size: 1.125em;
  line-height: 1.5em;
  margin: 0;
  padding-left: 25px;
}
.teamMember a:hover {
  background: #f2f2f2;
}
.team-mugshot {
  float: left;
  height: auto;
  max-width: 20%;
  min-width: 150px;
  padding: 0 20px 0 10px;
}
#team1,
#team2,
#team3,
#team4 {
  width: 500px;
  height: auto;
  background-color: #FDFDFD;
  color: #424242;
  padding: 25px;
  display: none;
}
.borderRight {
  border-right: 3px solid #fbbd1b;
}
.borderLeft {
  border-left: 3px solid #fbbd1b;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  #team1,
  #team2,
  #team3,
  #team4 {
    width: 100%;
    height: auto;
    background-color: #FDFDFD;
    color: #424242;
    margin-top: 0;
    padding: 20px 15px;
    display: none;
  }
  .teamMember {
    max-width: 100%;
    margin-top: 50px;
    padding: 0 20px 20px 20px;
    border-bottom: 1px solid #fbbd1b;
    text-align: center;
  }
  .teamMember .team-mugshot {
    float: none;
    max-width: 80%;
    margin: 0 auto 20px auto;
    padding: 0;
  }
  .teamMember a h2,
  .teamMember1 h2,
  .teamMember2 h2 {
    text-align: left;
    padding-left: 0;
    font-size: 1.5em;
  }
  .teamMember a h3,
  .teamMember1 h3,
  .teamMember2 h3 {
    text-align: left;
    padding-bottom: 10px;
    line-height: 1.5em;
    padding-left: 0px;
    font-size: 1.125em;
  }
  .team-mugshot {
    float: left;
    max-width: 100px;
    margin: 0 15px 0 0;
  }
  .borderRight {
    border-right: none;
  }
  .borderLeft {
    border-left: none;
    padding: 0;
  }
}
.tableHeader {
  font-size: 1.125em;
  width: 100%;
  margin: 0 1px;
  padding: 5px 20px;
  text-align: center;
  background: #1a64ab;
  color: #ffffff;
}
.tableBody {
  margin: 30px 0;
  width: 100%;
  background: rgba(26, 100, 171, 0.1);
  position: relative;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .tableCol {
    margin-bottom: 0;
    border-bottom: 30px solid #ffffff;
  }
}
/* ------------------  LISTS / CHECKLIST ------------------ */
.ordered,
.small-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
ul.small-list {
  margin: 0;
  padding: 10px 20px;
  list-style-type: disc;
}
ul.small-list li {
  padding: 5px 10px;
  margin-left: 20px;
  list-style-position: inside;
  padding-left: 0em;
  font-size: 0.90em;
  text-indent: -1.5em;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  ul.small-list {
    padding: 20px;
    margin-bottom: 30px;
  }
}
.ordered li {
  counter-increment: step-counter;
  font-size: 1.125em;
  margin: 0;
  list-style-position: inside;
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.ordered li::before {
  content: counter(step-counter) ".";
  margin-right: 10px;
  font-size: 1.125em;
  color: #1a64ab;
  font-weight: bold;
}
.small-cite {
  width: 85%;
  margin: 20px auto;
  font-size: 0.85em;
  color: #1a64ab;
  text-align: left;
  padding: 5px 10px;
  background: rgba(26, 100, 171, 0.1);
  border: 1px solid rgba(26, 100, 171, 0.4);
}
/* plus list styling */
ul.plus {
  margin-top: 10px;
  padding: 0;
  list-style-type: none;
}
ul.plus li {
  text-indent: -1.5em;
  padding-left: 2em;
  font-size: 1.125em;
  line-height: 1.5em;
  margin: 0 0 15px 0;
}
ul.plus li:before {
  position: relative;
  font-family: fontello;
  content: "\e803";
  color: #1a64ab;
  top: 3px;
  font-weight: bold;
  font-size: 1.4em;
  padding-right: 12px;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .plus li {
    text-indent: -1.5em;
    padding-left: 0.5em;
  }
  .plus li.plusSign {
    margin-left: 1em;
  }
}
/* ------------------  PARTNERS ------------------ */
.logoContainer {
  margin: 30px 0 50px 0;
}
.partnerLogos {
  display: inline;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
}
.partnerLogos img {
  max-width: 100%;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .partnerLogos {
    display: block;
    padding: 0 0 20px 0;
  }
}
/* ------------------  IMPACT/PRESENTATIONS ------------------ */
.download {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  color: #ffffff;
  background: #1a64ab;
  clear: both;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-align: left;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2);
  transition: all .3s;
  position: relative;
}
.download span {
  position: absolute;
  width: 100%;
  height: 100%;
  left: -50px;
  top: 0;
  background: url("../images/icon-download.svg") no-repeat 0;
  z-index: 30;
}
.download a {
  color: #ffffff;
  position: absolute;
  width: auto;
  height: 100%;
  width: 80%;
  z-index: 40;
}
.download:hover {
  background: #000000;
  position: relative;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .download span {
    top: -10px;
  }
}
.download.small {
  max-width: 340px;
  min-height: 50px;
  line-height: 50px;
  padding: 0 0 0 65px;
  margin: 0;
}
.download.large {
  max-width: 70%;
  min-height: 50px;
  line-height: 50px;
  padding: 0 0 0 30px;
  margin: 0;
}
@media only screen and (min-width: 320px) and (max-width: 640px), only screen and (min-width: 641px) and (max-width: 1023px) {
  .download.small,
  .download.large {
    width: 100%;
    line-height: 30px;
    padding: 10px 15px 10px 70px;
    margin: 0 auto;
    font-size: 1em;
  }
}
.presentation-award {
  width: 40%;
  float: left;
  height: auto;
  padding: 0;
  margin: 40px auto;
  display: block;
}
.presentation-title {
  width: 100%;
  float: left;
  height: auto;
  padding: 0;
  margin: 0 auto 20px auto;
  display: block;
}
.presentation-title h3 {
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  background: #fbbd1b;
  padding: 10px 15px;
  margin: 0;
  font-size: 1.125em;
}
.presentation-title p {
  background: rgba(251, 189, 27, 0.25);
  color: #424242;
  margin: 0;
  padding: 10px 15px;
  display: block;
  font-size: 1em;
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  line-height: 1.5em;
}
@media only screen and (min-width: 320px) and (max-width: 640px), only screen and (min-width: 641px) and (max-width: 1023px) {
  .presentation-award {
    width: 100%;
    float: none;
  }
  .presentation-title {
    width: 100%;
    margin: 30px 0;
  }
  .presentation-title p {
    min-height: 50px;
  }
}
.grayBox {
  width: 46%;
  min-width: 45%;
  height: auto;
  background: #989898;
  border: 1px solid #f2f2f2;
  text-align: center;
  margin: 20px 2% 0 0;
  padding: 20px;
  float: left;
}
@media only screen and (min-width: 320px) and (max-width: 640px), only screen and (min-width: 641px) and (max-width: 1023px) {
  .grayBox {
    width: 100%;
  }
}
/* ------------------- AWARDS --------------------- */
.award-image {
  position: relative;
  white-space: nowrap;
  height: 150px;
  width: 150px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-left: 40px;
  background: #989898;
}
.award-image.california-council {
  background: url(../images/california-council-teacher-education.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.award-image:before {
  position: absolute;
  content: url(../images/wreath-left.svg);
  top: -33px;
  left: -42px;
}
.award-image:after {
  position: absolute;
  content: url(../images/wreath-left.svg);
  -moz-transform: scaleX(-1);
  top: -33px;
  right: -42px;
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: “FlipH”;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .award-image {
    margin: 40px auto;
  }
}
.blueBtn {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  color: #ffffff;
  background: #1a64ab;
  clear: both;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-align: center;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2);
  transition: all .3s;
  position: relative;
  max-width: 180px;
  min-height: 50px;
  line-height: 50px;
  padding: 0px 10px;
  margin: 0;
}
.blueBtn:hover {
  background: #000000;
  position: relative;
}
@media only screen and (min-width: 320px) and (max-width: 640px) {
  .blueBtn {
    max-width: 100%;
  }
}
blockquote.data,
blockquote.home {
  font-family: Georgia, serif;
  font-style: italic;
  text-align: left;
  line-height: 1.5;
  position: relative;
  color: #ffffff;
}
blockquote.data.halfQuote,
blockquote.home.halfQuote {
  width: 47%;
}
blockquote.data.fullQuote,
blockquote.home.fullQuote {
  width: 100%;
}
blockquote.data cite,
blockquote.home cite {
  color: #ffffff;
  float: right;
  text-align: right;
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin: 20px;
}
blockquote.data cite:before,
blockquote.home cite:before {
  content: "\2014 \2009";
}
blockquote.data:before,
blockquote.home:before {
  display: block;
  content: "\201C";
  font-size: 5em;
  position: absolute;
}
/* ------------------- MISC --------------------- */
blockquote.data {
  font-size: 1.225em;
  margin: 20px 10px;
  padding: 1.5em 1.5em .5em 4em;
  overflow: hidden;
}
blockquote.data:before {
  left: 15px;
  top: -10px;
  color: #fbbd1b;
}
blockquote.home {
  font-size: 1.5em;
  margin: 0;
  padding: 0 1em 0 3.5em;
}
blockquote.home:before {
  opacity: .7;
  left: 15px;
  top: -48px;
  color: #ffffff;
}
@media only screen and (min-width: 320px) and (max-width: 640px), only screen and (min-width: 641px) and (max-width: 1023px) {
  blockquote.home,
  blockquote.data {
    padding-bottom: 30px;
    overflow: hidden;
    float: none;
    margin: 20px 0;
  }
  blockquote.home.halfQuote,
  blockquote.data.halfQuote {
    width: 100%;
    margin: 20px auto;
  }
  blockquote.home {
    font-size: 1.225em;
    font-weight: bold;
    padding: 0 1em 0 3em;
  }
  blockquote.home:before {
    font-size: 4em;
    opacity: .7;
    left: 0;
    top: -30px;
    color: #ffffff;
  }
  blockquote.home cite {
    font-size: 16px;
  }
}
/* CSS Document @import "reset"; */
