@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600');
html, body {
  height: 100%;
}
body {
  background: #fff;
  padding: 0;
  margin: 0;
  font: 1em "Source Sans Pro","Helvetica Neue", Helvetica, Arial, sans-serif;
}
#container {
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  overflow: hidden;
  padding-top: 60px;
  position: relative;
  box-shadow: 0 0 20px #999;
}


/* ------------------------------------------ */
/* ----------------- HEADER ----------------- */
/* ------------------------------------------ */
#nameplate {
  text-align: center;
  padding: 40px 40px 0 40px;
}

#nameplate h1 {
  font-size: 1.8em;
  font-weight: 300;
  padding: 0;
  border: none;
  margin: 0;
}

#nameplate h1 a {
  text-shadow:
   -1px -1px 0 #fff,  
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
     1px 1px 0 #fff;
}
#nameplate h1 a:hover {
  text-decoration: none;
}

/* --------------------------------------- */
/* ----------------- NAV ----------------- */
/* --------------------------------------- */
#siteNav {
  text-align: center;
  z-index: 1;
}

#siteNav_links h3 {
  position: absolute;
  left: -999em;
}

#siteNav_links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#siteNav_links ul li {
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  margin: .5em;
}

#siteNav_links ul li a {
  color: #444;
  border-bottom: none;
  font-weight: 400;
  font-size: 1.1em;
  text-shadow:
   -1px -1px 0 #fff,  
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
     1px 1px 0 #fff;
}

/* ------------------------------------------- */
/* ----------------- CONTENT ----------------- */
/* ------------------------------------------- */
#pageBody {
  display: flex;
  flex-direction: column;
  flex: 1;
}
#mainContent {
  padding: 50px 80px 60px;
  line-height: 1.3;
  flex: 1;
}

h1 {
  color: #333;
  font-size: 2.4em;
  font-weight: 300;
  text-align: center;
}

#mainContent h1:nth-of-type(1) {
  margin-top: 0;
}

h2 {
  color: #333;
  font-size: 1.6em;
  font-weight: 400;
  margin-top: 1.5em;
}

h3 {
  color: #333;
  font-size: 1.2em;
  margin-top: 1.5em;
}

h4 {
  font-size: 1em;
  margin-bottom: .5em;
  margin-top: 1.5em;
}

a {
  color: #b12;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
#footer {
  clear: both;
  padding: 25px;
  background: #efefef;
  text-align: center;
  font-size: 90%;
}
.program-links {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #dfdfdf;
}
.program-links p {
  margin: 0;
  display: flex;
  line-height: 50px;
  justify-content: center;
}
.program-links p > * {
  padding: 0 5px;
  margin: 0 5px;
  color: #888;
  text-transform: uppercase;
  font-size: .9em;
}
.program-links a {
  border-bottom: 2px solid transparent;
  transition: .5s;
}
.program-links a.active {
  border-color: #ccc;
}
.program-links a:hover {
  border-color: #ccc;
  text-decoration: none
}
/* ---------------------------------------- */
/* ----------------- MISC ----------------- */
/* ---------------------------------------- */
#accessLinks {
  position: absolute;
  top: -999px;
  left: 0;
  width: 80%;
  z-index: 999;
}

#accessLinks a {
  position: absolute;
  top: 0;
  left: 0;
}

.crazyIEfix:active, #accessLinks a:focus, #accessLinks a:active {
  top: 999px;
  background-color: #434343;
  color: #f0e4d4;
  padding: 2px 4px;
  border: 1px solid #000;
  margin: 5px;
  white-space: nowrap;
}

.floatRight {
  float: right;
  margin: 0 0 2em 2em;
}

.floatLeft {
  float: left;
  margin: 0 2em 2em 0;
}

figcaption {
  color: #555;
  font-size: 12px;
}

figcaption a {
  color: inherit;
}

/* ----------------------------------------- */
/* ----------------- MEDIA ----------------- */
/* ----------------------------------------- */
@media screen and (max-width: 900px) {
  #mainContent {
    padding: 20px 40px;
  }
}

@media screen and (max-width: 620px) {
  #nameplate {
    padding: 20px;
  }
}

@media screen and (min-width: 621px) {
  #nameplate h1 strong {
    position: relative;
  }
  #nameplate h1 strong:before {
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    background: url(https://www.reed.edu/global_assets/images/logo/circular-griffin/200px.000000.30.png) center no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: -65px;
    z-index: -1;
  }
}