@import url(https://fonts.googleapis.com/css?family=Merriweather);

/*! Hint.css - v1.2.1 - 2013-03-24
* http://kushagragour.in/lab/hint/
* Copyright (c) 2013 Kushagra Gour; Licensed MIT */

.hint,
[data-hint] {
  position: relative;
  display: inline-block;
}

.hint:before,
.hint:after,
[data-hint]:before,
[data-hint]:after {
  position: absolute;
  z-index: 1000000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s ease;
     -moz-transition: .3s ease;
          transition: 0.3s ease;
}

.hint:hover:before,
.hint:hover:after,
[data-hint]:hover:before,
[data-hint]:hover:after {
  opacity: 1;
  visibility: visible;
}

.hint:before,
[data-hint]:before {
  position: absolute;
  z-index: 1000001;
  background: transparent;
  border: 6px solid transparent;
  content: '';
}

.hint:after,
[data-hint]:after {
  padding: 8px 10px;
  font-size: 12px;
  line-height: 12px;
  color: #fff;
  text-shadow: 0 -1px 0 #000000;
  white-space: nowrap;
  background: #383838;
  content: attr(data-hint);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.hint--top:before {
  border-top-color: #383838;
}

.hint--bottom:before {
  border-bottom-color: #383838;
}

.hint--left:before {
  border-left-color: #383838;
}

.hint--right:before {
  border-right-color: #383838;
}

.hint--top:before {
  margin-bottom: -12px;
}

.hint--top:after {
  margin-left: -18px;
}

.hint--top:before,
.hint--top:after {
  bottom: 100%;
  left: 50%;
}

.hint--top:hover:before,
.hint--top:hover:after {
  -webkit-transform: translateY(-8px);
     -moz-transform: translateY(-8px);
          transform: translateY(-8px);
}

.hint--bottom:before {
  margin-top: -12px;
}

.hint--bottom:after {
  margin-left: -18px;
}

.hint--bottom:before,
.hint--bottom:after {
  top: 100%;
  left: 50%;
}

.hint--bottom:hover:before,
.hint--bottom:hover:after {
  -webkit-transform: translateY(8px);
     -moz-transform: translateY(8px);
          transform: translateY(8px);
}

.hint--right:before {
  margin-bottom: -6px;
  margin-left: -12px;
}

.hint--right:after {
  margin-bottom: -14px;
}

.hint--right:before,
.hint--right:after {
  bottom: 50%;
  left: 100%;
}

.hint--right:hover:before,
.hint--right:hover:after {
  -webkit-transform: translateX(8px);
     -moz-transform: translateX(8px);
          transform: translateX(8px);
}

.hint--left:before {
  margin-right: -12px;
  margin-bottom: -6px;
}

.hint--left:after {
  margin-bottom: -14px;
}

.hint--left:before,
.hint--left:after {
  right: 100%;
  bottom: 50%;
}

.hint--left:hover:before,
.hint--left:hover:after {
  -webkit-transform: translateX(-8px);
     -moz-transform: translateX(-8px);
          transform: translateX(-8px);
}

.hint--error:after {
  text-shadow: 0 -1px 0 #5a2626;
  background-color: #b34e4d;
}

.hint--error.hint--top:before {
  border-top-color: #b34e4d;
}

.hint--error.hint--bottom:before {
  border-bottom-color: #b34e4d;
}

.hint--error.hint--left:before {
  border-left-color: #b34e4d;
}

.hint--error.hint--right:before {
  border-right-color: #b34e4d;
}

.hint--warning:after {
  text-shadow: 0 -1px 0 #6d5228;
  background-color: #c09854;
}

.hint--warning.hint--top:before {
  border-top-color: #c09854;
}

.hint--warning.hint--bottom:before {
  border-bottom-color: #c09854;
}

.hint--warning.hint--left:before {
  border-left-color: #c09854;
}

.hint--warning.hint--right:before {
  border-right-color: #c09854;
}

.hint--info:after {
  text-shadow: 0 -1px 0 #193c4c;
  background-color: #3986ac;
}

.hint--info.hint--top:before {
  border-top-color: #3986ac;
}

.hint--info.hint--bottom:before {
  border-bottom-color: #3986ac;
}

.hint--info.hint--left:before {
  border-left-color: #3986ac;
}

.hint--info.hint--right:before {
  border-right-color: #3986ac;
}

.hint--success:after {
  text-shadow: 0 -1px 0 #1a331a;
  background-color: #458746;
}

.hint--success.hint--top:before {
  border-top-color: #458746;
}

.hint--success.hint--bottom:before {
  border-bottom-color: #458746;
}

.hint--success.hint--left:before {
  border-left-color: #458746;
}

.hint--success.hint--right:before {
  border-right-color: #458746;
}

.hint--always:after,
.hint--always:before {
  opacity: 1;
  visibility: visible;
}

.hint--always.hint--top:after,
.hint--always.hint--top:before {
  -webkit-transform: translateY(-8px);
     -moz-transform: translateY(-8px);
          transform: translateY(-8px);
}

.hint--always.hint--bottom:after,
.hint--always.hint--bottom:before {
  -webkit-transform: translateY(8px);
     -moz-transform: translateY(8px);
          transform: translateY(8px);
}

.hint--always.hint--left:after,
.hint--always.hint--left:before {
  -webkit-transform: translateX(-8px);
     -moz-transform: translateX(-8px);
          transform: translateX(-8px);
}

.hint--always.hint--right:after,
.hint--always.hint--right:before {
  -webkit-transform: translateX(8px);
     -moz-transform: translateX(8px);
          transform: translateX(8px);
}

.hint--rounded:after {
  border-radius: 4px;
}

/*
* Skeleton V1.1
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 8/17/2011

Less version credit: https://github.com/thatericsmith/Skeleton
*/

/* Table of Contents
==================================================
    #Base 960 Grid
    #Clearing */

/* #Base 960 Grid
================================================== */

.container {
  position: relative;
  width: 1164px;
  padding: 0;
  margin: 0 auto;
}

.container.plusfour {
  width: 1552px;
}

.container.pluseight {
  width: 1940px;
}

.column,
.columns {
  display: inline;
  float: left;
  margin-right: 7.5px !important;
  margin-left: 7.5px !important;
}

.row {
  margin-bottom: 15px;
}

/* Nested Column Classes */

.column.alpha,
.columns.alpha {
  margin-left: 0!important;
}

.column.omega,
.columns.omega {
  margin-right: 0!important;
}

.column.alpha.omega,
.columns.alpha.omega {
  margin: 0!important;
}

.container {
  /* Base Grid */

  /* Offsets */

}

.container .one.column {
  width: 82px;
}

.container .columns.two {
  width: 179px;
}

.container .columns.three {
  width: 276px;
}

.container .columns.four {
  width: 373px;
}

.container .columns.five {
  width: 470px;
}

.container .columns.six {
  width: 567px;
}

.container .columns.seven {
  width: 664px;
}

.container .columns.eight {
  width: 761px;
}

.container .columns.nine {
  width: 858px;
}

.container .columns.ten {
  width: 955px;
}

.container .columns.eleven {
  width: 1052px;
}

.container .columns.twelve {
  width: 1149px;
}

.container .columns.thirteen {
  width: 1246px;
}

.container .columns.fourteen {
  width: 1343px;
}

.container .columns.fifteen {
  width: 1440px;
}

.container .columns.sixteen {
  width: 1537px;
}

.container .columns.twenty {
  width: 1940px;
}

.container .columns.twentyfour {
  width: 2313px;
}

.container .one-third.column {
  width: 355.6666666666667px;
}

.container .two-thirds.column {
  width: 726.3333333333334px;
}

.container .one-fourth.column {
  width: 266.75px;
}

.container .offset-by-one {
  padding-left: 97px;
}

.container .offset-by-two {
  padding-left: 194px;
}

.container .offset-by-three {
  padding-left: 291px;
}

.container .offset-by-four {
  padding-left: 388px;
}

.container .offset-by-five {
  padding-left: 485px;
}

.container .offset-by-six {
  padding-left: 582px;
}

.container .offset-by-seven {
  padding-left: 679px;
}

.container .offset-by-eight {
  padding-left: 776px;
}

.container .offset-by-nine {
  padding-left: 873px;
}

.container .offset-by-ten {
  padding-left: 970px;
}

.container .offset-by-eleven {
  padding-left: 1067px;
}

.container .offset-by-twelve {
  padding-left: 1164px;
}

.container .offset-by-thirteen {
  padding-left: 1261px;
}

.container .offset-by-fourteen {
  padding-left: 1358px;
}

.container .offset-by-fifteen {
  padding-left: 1455px;
}

/*  Skeleton Continued  - paste this code before the "Clearing" code in the
"skeleton.css" document if you wish to have a responsive document  */

/* FIX FOR PLUS SIZES
================================================== */

@media only screen and (min-width: 960px) and (max-width: 1199px) {
  .container.plusfour,
  .container.pluseight {
    position: relative;
    width: 960px;
    padding: 0;
    margin: 0 auto;
  }
  .container .twenty.columns {
    width: 940px;
  }
  .container .twentyfour.columns {
    width: 940px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .container.pluseight {
    position: relative;
    width: 1200px;
    padding: 0;
    margin: 0 auto;
  }
  .container .twenty.columns {
    width: 1180px;
  }
  .container .twentyfour.columns {
    width: 1180px;
  }
}

@media only screen and (min-width: 960px) and (max-width: 1400px) {
  .container {
    width: 840px;
  }
  .container.plusfour {
    width: 840px;
  }
  .container.pluseight {
    width: 840px;
  }
  .container .column,
  .container .columns {
    margin-right: 7px !important;
    margin-left: 7px !important;
  }
  .column.alpha,
  .columns.alpha {
    margin-right: 7px !important;
    margin-left: 0!important;
  }
  .column.omega,
  .columns.omega {
    margin-right: 0!important;
    margin-left: 7px !important;
  }
  .container {
    /* Base Grid */

    /* Offsets */

  }
  .container .one.column {
    width: 56px;
  }
  .container .columns.two {
    width: 126px;
  }
  .container .columns.three {
    width: 196px;
  }
  .container .columns.four {
    width: 266px;
  }
  .container .columns.five {
    width: 336px;
  }
  .container .columns.six {
    width: 406px;
  }
  .container .columns.seven {
    width: 476px;
  }
  .container .columns.eight {
    width: 546px;
  }
  .container .columns.nine {
    width: 616px;
  }
  .container .columns.ten {
    width: 686px;
  }
  .container .columns.eleven {
    width: 756px;
  }
  .container .columns.twelve {
    width: 826px;
  }
  .container .columns.thirteen {
    width: 896px;
  }
  .container .columns.fourteen {
    width: 966px;
  }
  .container .columns.fifteen {
    width: 1036px;
  }
  .container .columns.sixteen {
    width: 1106px;
  }
  .container .columns.twenty {
    width: 1106px;
  }
  .container .columns.twentyfour {
    width: 1106px;
  }
  .container .one-third.column {
    width: 252.66666666666669px;
  }
  .container .two-thirds.column {
    width: 519.3333333333334px;
  }
  .container .one-fourth.column {
    width: 187.5px;
  }
  .container .offset-by-one {
    padding-left: 70px;
  }
  .container .offset-by-two {
    padding-left: 140px;
  }
  .container .offset-by-three {
    padding-left: 210px;
  }
  .container .offset-by-four {
    padding-left: 280px;
  }
  .container .offset-by-five {
    padding-left: 350px;
  }
  .container .offset-by-six {
    padding-left: 420px;
  }
  .container .offset-by-seven {
    padding-left: 490px;
  }
  .container .offset-by-eight {
    padding-left: 560px;
  }
  .container .offset-by-nine {
    padding-left: 630px;
  }
  .container .offset-by-ten {
    padding-left: 700px;
  }
  .container .offset-by-eleven {
    padding-left: 770px;
  }
  .container .offset-by-twelve {
    padding-left: 840px;
  }
  .container .offset-by-thirteen {
    padding-left: 910px;
  }
  .container .offset-by-fourteen {
    padding-left: 980px;
  }
  .container .offset-by-fifteen {
    padding-left: 1050px;
  }
}

/* #Tablet (Portrait)
================================================== */

/* Note: Design for a width of 768px */

@media only screen and (min-width: 768px) and (max-width: 959px) {
  .container {
    width: 720px;
  }
  .container.plusfour {
    width: 720px;
  }
  .container.pluseight {
    width: 720px;
  }
  .container .column,
  .container .columns {
    margin-right: 6px !important;
    margin-left: 6px !important;
  }
  .column.alpha,
  .columns.alpha {
    margin-right: 6px !important;
    margin-left: 0!important;
  }
  .column.omega,
  .columns.omega {
    margin-right: 0!important;
    margin-left: 6px !important;
  }
  .container {
    /* Base Grid */

    /* Offsets */

  }
  .container .one.column {
    width: 48px;
  }
  .container .columns.two {
    width: 108px;
  }
  .container .columns.three {
    width: 168px;
  }
  .container .columns.four {
    width: 228px;
  }
  .container .columns.five {
    width: 288px;
  }
  .container .columns.six {
    width: 348px;
  }
  .container .columns.seven {
    width: 408px;
  }
  .container .columns.eight {
    width: 468px;
  }
  .container .columns.nine {
    width: 528px;
  }
  .container .columns.ten {
    width: 588px;
  }
  .container .columns.eleven {
    width: 648px;
  }
  .container .columns.twelve {
    width: 708px;
  }
  .container .columns.thirteen {
    width: 768px;
  }
  .container .columns.fourteen {
    width: 828px;
  }
  .container .columns.fifteen {
    width: 888px;
  }
  .container .columns.sixteen {
    width: 948px;
  }
  .container .columns.twenty {
    width: 948px;
  }
  .container .columns.twentyfour {
    width: 948px;
  }
  .container .one-third.column {
    width: 216px;
  }
  .container .two-thirds.column {
    width: 444px;
  }
  .container .one-fourth.column {
    width: 160px;
  }
  .container .offset-by-one {
    padding-left: 60px;
  }
  .container .offset-by-two {
    padding-left: 120px;
  }
  .container .offset-by-three {
    padding-left: 180px;
  }
  .container .offset-by-four {
    padding-left: 240px;
  }
  .container .offset-by-five {
    padding-left: 300px;
  }
  .container .offset-by-six {
    padding-left: 360px;
  }
  .container .offset-by-seven {
    padding-left: 420px;
  }
  .container .offset-by-eight {
    padding-left: 480px;
  }
  .container .offset-by-nine {
    padding-left: 540px;
  }
  .container .offset-by-ten {
    padding-left: 600px;
  }
  .container .offset-by-eleven {
    padding-left: 660px;
  }
  .container .offset-by-twelve {
    padding-left: 720px;
  }
  .container .offset-by-thirteen {
    padding-left: 780px;
  }
  .container .offset-by-fourteen {
    padding-left: 840px;
  }
  .container .offset-by-fifteen {
    padding-left: 900px;
  }
}

/*  #Mobile (Portrait)
================================================== */

@media only screen and (max-width: 767px) {
  {
    /* Offsets */

  }
  .columns,
  .column {
    margin: 0!important;
  }
  .container {
    width: 300px;
  }
  .container.plusfour,
  .container.pluseight {
    width: 300px;
  }
  .container .column.one-third,
  .container .column.two-thirds,
  .container .column.one-fourth,
  .container .column.one {
    width: 300px;
  }
  .container .columns.two,
  .container .columns.three,
  .container .columns.four,
  .container .columns.five,
  .container .columns.six,
  .container .columns.seven,
  .container .columns.eight,
  .container .columns.nine,
  .container .columns.ten,
  .container .columns.eleven,
  .container .columns.twelve,
  .container .columns.thirteen,
  .container .columns.fourteen,
  .container .columns.fifteen,
  .container .columns.sixteen,
  .container .columns.twenty,
  .container .columns.twentyfour {
    width: 300px;
  }
  .container .offset-by-one,
  .container .offset-by-two,
  .container .offset-by-three,
  .container .offset-by-four,
  .container .offset-by-five,
  .container .offset-by-six,
  .container .offset-by-seven,
  .container .offset-by-eight,
  .container .offset-by-nine,
  .container .offset-by-ten,
  .container .offset-by-eleven,
  .container .offset-by-twelve,
  .container .offset-by-thirteen,
  .container .offset-by-fourteen,
  .container .offset-by-fifteen {
    padding-left: 0;
  }
}

/* #Mobile (Landscape)
================================================== */

/* Note: Design for a width of 480px */

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    width: 420px;
  }
  .container.plusfour,
  .container.pluseight {
    width: 420px;
  }
  .container .column.one-third,
  .container .column.two-thirds,
  .container .column.one-fourth,
  .container .column.one {
    width: 420px;
  }
  .container .columns.two,
  .container .columns.three,
  .container .columns.four,
  .container .columns.five,
  .container .columns.six,
  .container .columns.seven,
  .container .columns.eight,
  .container .columns.nine,
  .container .columns.ten,
  .container .columns.eleven,
  .container .columns.twelve,
  .container .columns.thirteen,
  .container .columns.fourteen,
  .container .columns.fifteen,
  .container .columns.sixteen,
  .container .columns.twenty,
  .container .columns.twentyfour {
    width: 420px;
  }
}

.thirds .one-third {
  float: left;
  width: 30%;
  margin: 2.5%;
}

.thirds .one-third:first-child {
  margin-left: 0;
}

.thirds .one-third:last-child {
  margin-right: 0;
}

.fourths .one-fourth {
  float: left;
  width: 20%;
  margin: 2.5%;
}

.fourths .one-fourth:first-child {
  margin-left: 0;
}

.fourths .one-fourth:last-child {
  margin-right: 0;
}

/* #Clearing
================================================== */

/* Self Clearing Goodness */

.container:after {
  display: block;
  height: 0;
  clear: both;
  content: "\0020";
  visibility: hidden;
}

/* Use clearfix class on parent to clear nested columns,
    or wrap each row of columns in a <div class="row"> */

.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  content: '\0020';
  visibility: hidden;
}

.row:after,
.clearfix:after {
  clear: both;
}

.row,
.clearfix {
  zoom: 1;
}

/* You can also use a <br class="clear" /> to clear columns */

.clear {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  clear: both;
  visibility: hidden;
}

.quarter {
  float: left;
  width: 25%;
}

@font-face {
  font-family: "Southern";
  font-weight: 400;
  src: url("../../_resources/fonts/56be84de-9d60-4089-8df0-0ea6ec786b84.eot?d44f19a684109620e4841471a390e818db723128aa5b82b5d2541118d00375fb4223357058fff81140d7789249dc5f67b961c454f9363b9fa75ea0a691500a49f0baef224aef3ae1c0c7c3a6c67211c2c5d696f7&projectid=74f39a9d-a5dc-405f-9690-1c1fd4590ae4");
  src: url("../../_resources/fonts/56be84de-9d60-4089-8df0-0ea6ec786b84.eot?d44f19a684109620e4841471a390e818db723128aa5b82b5d2541118d00375fb4223357058fff81140d7789249dc5f67b961c454f9363b9fa75ea0a691500a49f0baef224aef3ae1c0c7c3a6c67211c2c5d696f7&projectid=74f39a9d-a5dc-405f-9690-1c1fd4590ae4#iefix") format("embedded-opentype"), url("../../_resources/fonts/50d35bbc-dfd4-48f1-af16-cf058f69421d.woff?d44f19a684109620e4841471a390e818db723128aa5b82b5d2541118d00375fb4223357058fff81140d7789249dc5f67b961c454f9363b9fa75ea0a691500a49f0baef224aef3ae1c0c7c3a6c67211c2c5d696f7&projectid=74f39a9d-a5dc-405f-9690-1c1fd4590ae4") format("woff"), url("../../_resources/fonts/278bef59-6be1-4800-b5ac-1f769ab47430.ttf?d44f19a684109620e4841471a390e818db723128aa5b82b5d2541118d00375fb4223357058fff81140d7789249dc5f67b961c454f9363b9fa75ea0a691500a49f0baef224aef3ae1c0c7c3a6c67211c2c5d696f7&projectid=74f39a9d-a5dc-405f-9690-1c1fd4590ae4") format("truetype"), url("../../_resources/fonts/2e309b1b-08b8-477f-bc9e-7067cf0af0b3.svg?d44f19a684109620e4841471a390e818db723128aa5b82b5d2541118d00375fb4223357058fff81140d7789249dc5f67b961c454f9363b9fa75ea0a691500a49f0baef224aef3ae1c0c7c3a6c67211c2c5d696f7&projectid=74f39a9d-a5dc-405f-9690-1c1fd4590ae4#svgFontName") format("svg");
}

@font-face {
  font-family: "Southern";
  font-weight: 700;
  src: url("../../_resources/fonts/c07fef9e-a934-42d7-92ad-69205f2b8a00.eot?iefix");
  src: url("../../_resources/fonts/14ff6081-326d-4dae-b778-d7afa66166fc.woff") format("woff"), url("../../_resources/fonts/8fda1e47-19be-46c7-8d83-8d4fb35572f0.ttf") format("truetype"), url("../../_resources/fonts/f751c8ae-1057-46d9-8d74-62592e002568.svg#f751c8ae-1057-46d9-8d74-62592e002568") format("svg");
}

@font-face {
  font-family: "Southern";
  font-weight: 700;
  src: url("../../_resources/fonts/83d5bc89-af33-46a9-8fe3-15d87784f50e.eot?iefix");
  src: url("../../_resources/fonts/102ab74c-0e84-4fe5-a17a-b20fb643591a.woff") format("woff"), url("../../_resources/fonts/1d146b29-55e2-485b-96aa-5cb628e7e9eb.ttf") format("truetype"), url("../../_resources/fonts/d90b3358-e1e2-4abb-ba96-356983a54c22.svg#d90b3358-e1e2-4abb-ba96-356983a54c22") format("svg");
}

@font-face {
  font-family: "Goudy";
  font-weight: 400;
  src: url("../../_resources/fonts/f208f53a-73f3-4faa-b493-c89d621db635.eot?iefix");
  src: url("../../_resources/fonts/bed54157-3108-4d15-b0e0-46a0d0b0f83d.woff") format("woff"), url("../../_resources/fonts/52cff52b-c0f8-48ac-8b2e-fd27acda56b4.ttf") format("truetype"), url("../../_resources/fonts/b785125c-343d-4324-bbfa-df82f7e9255f.svg#b785125c-343d-4324-bbfa-df82f7e9255f") format("svg");
}

@font-face {
  font-family: "Goudy";
  font-style: italic;
  font-weight: 400;
  src: url("../../_resources/fonts/970062f4-d553-4dea-8230-65798e4a7395.eot?iefix");
  src: url("../../_resources/fonts/d9f36921-22a1-4384-9533-784e761ff270.woff") format("woff"), url("../../_resources/fonts/c210b1de-238e-40ff-aa49-b60af7defbe5.ttf") format("truetype"), url("../../_resources/fonts/3d881878-31e7-410c-ae28-e8d723c57320.svg#3d881878-31e7-410c-ae28-e8d723c57320") format("svg");
}

.sans {
  font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
}

.serif {
  font-family: 'Merriweather', serif;
}

/*! normalize.css v2.0.1 | MIT License | git.io/normalize */

/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined in IE 8/9.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */

audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */

[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
  font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
  /* 1 */

  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
  /* 2 */

}

/**
 * Remove default margin.
 */

body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */

a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

/**
 * Address variable `h1` font size within `section` and `article` contexts in
 * Firefox 4+, Safari 5, and Chrome.
 */

h1 {
  font-size: 2em;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */

abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */

b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */

dfn {
  font-style: italic;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
  color: #000;
  background: #ff0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */

pre {
  word-wrap: break-word;
  white-space: pre;
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9.
 */

img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */

svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari 5.
 */

figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
  padding: 0.35em 0.625em 0.75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  padding: 0;
  border: 0;
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */

button,
input,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

button,
input {
  line-height: normal;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  box-sizing: border-box;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-appearance: textfield;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */

textarea {
  overflow: auto;
  /* 1 */

  vertical-align: top;
  /* 2 */

}

/* ==========================================================================
   Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
button,
input,
select,
textarea {
  color: #222;
}

body {
  font-size: 1em;
  line-height: 1.4;
  color: #444444;
  background: #efefef;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
  text-shadow: none;
  background: #b3d4fc;
}

::selection {
  text-shadow: none;
  background: #b3d4fc;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  padding: 0;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid #ccc;
}

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
  padding: 0.2em 0;
  margin: 0.2em 0;
  color: #000;
  background: #ccc;
}

/* Borrowed from:
	http://css-tricks.com/snippets/css/useful-css3-less-mixins/
	https://github.com/owzzz/Useful-Less-Mixins/blob/master/mixins.less

*/

/*!
 *  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

/* FONT PATH
 * -------------------------- */

@font-face {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  src: url('../less/font-awesome-4.0.3/fonts//fontawesome-webfont.eot?v=4.0.3');
  src: url('../less/font-awesome-4.0.3/fonts//fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'), url('../less/font-awesome-4.0.3/fonts//fontawesome-webfont.woff?v=4.0.3') format('woff'), url('../less/font-awesome-4.0.3/fonts//fontawesome-webfont.ttf?v=4.0.3') format('truetype'), url('../less/font-awesome-4.0.3/fonts//fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');
}

.fa {
  display: inline-block;
  font-family: FontAwesome;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */

.fa-lg {
  font-size: 1.3333333333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.2857142857142858em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.142857142857143em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  top: 0.14285714285714285em;
  left: -2.142857142857143em;
  width: 2.142857142857143em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.8571428571428572em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: spin 2s infinite linear;
     -moz-animation: spin 2s infinite linear;
       -o-animation: spin 2s infinite linear;
          animation: spin 2s infinite linear;
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}

@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}

@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
     -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
}

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
     -moz-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
}

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
     -moz-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
       -o-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
     -moz-transform: scale(1, -1);
      -ms-transform: scale(1, -1);
       -o-transform: scale(1, -1);
          transform: scale(1, -1);
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */

.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-asc:before {
  content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-desc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-mail-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

/*

All site-specific styles go here.

Some rules and guidelines:
	classes are better than IDs
	don't specify font-sizes more than once
	avoid making classes for one rule
	avoid using pixels for font-sizes except on body
	don't abuse less nesting

*/

body {
  width: 100%;
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.6;
  color: #fff;
  background: #222;
}

body.noscroll {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

.outer-wrap {
  background-attachment: fixed;
  background-image: url(../../_resources/images/bg-backpage.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

html,
body {
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.uc {
  text-transform: uppercase;
}

.nc {
  text-transform: none;
}

.lighter {
  font-weight: lighter;
}

.light-green {
  color: #dce269;
}

.mw {
  font-family: 'Merriweather', serif;
  text-transform: none;
}

.floatright {
  float: right;
}

.floatleft {
  float: left;
}

.transp-black {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
}

a {
  color: #dce269;
  text-decoration: none;
  border: 0;
  outline: 0 !important;
  -webkit-transition: color 0.2s;
     -moz-transition: color 0.2s;
      -ms-transition: color 0.2s;
       -o-transition: color 0.2s;
          transition: color 0.2s;
}

a:visited {
  color: #dce269;
}

a:hover {
  color: #fff;
}

.bg-white a {
  color: #333;
  text-decoration: underline;
}

.bg-white a:visited {
  color: #333;
}

.bg-white a:hover {
  color: #dce269;
}

.go-to-next {
  position: fixed;
  bottom: 20px;
  left: 50%;
  display: block;
  width: 44px;
  height: 44px;
  margin-left: -24px;
  font-size: 2.4em;
  line-height: 44px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.8s;
     -moz-transition: all 0.8s;
      -ms-transition: all 0.8s;
       -o-transition: all 0.8s;
          transition: all 0.8s;
}

.go-to-next:visited {
  color: #fff;
}

.go-to-next i {
  position: relative;
  top: 3px;
  color: #fff;
}

@media only screen and (max-width: 400px) {
  .go-to-next {
    display: none;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  .go-to-next {
    display: none;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  .go-to-next {
    display: none;
  }
}

.go-to-next.show {
  z-index: 99999;
  opacity: 0.8;
}

.go-to-next:hover {
  background: #fff;
}

.go-to-next:hover i {
  color: #444;
}

.bg-white {
  color: #444;
  background-color: #ffffff;
}

.bg-light-grey {
  background-color: #999;
}

.padded {
  padding: 1.5em;
  overflow: auto;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.padded table {
  width: 100% !important;
}

table th,
table td {
  vertical-align: top;
}

header.site-level nav.site-level #nav-filler {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 181px;
  background-image: url(../../_resources/images/nav-filler.png);
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 800px) {
  header.site-level nav.site-level #nav-filler {
    top: 0;
    left: 0;
    width: 150px;
    height: 130px;
    background-image: url('../../_resources/images/mobile-logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
  }
}

section {
  position: relative;
  min-height: 600px;
  padding: 120px 0 20px 0;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  zoom: 1;
  box-sizing: border-box;
}

section.in-view .container {
  opacity: 1;
}

section.in-view .page-title {
  margin-right: 0;
  opacity: 1;
}

section .container {
  opacity: 0;
  -webkit-transition: opacity 1.8s;
     -moz-transition: opacity 1.8s;
      -ms-transition: opacity 1.8s;
       -o-transition: opacity 1.8s;
          transition: opacity 1.8s;
}

section .page-title {
  position: absolute;
  top: 40px;
  right: 120px;
  margin: 0;
  margin-right: -20px;
  font-size: 3.8em;
  line-height: 1;
  word-spacing: -0.24em;
  text-align: right;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
  -webkit-transition: all 1s;
     -moz-transition: all 1s;
      -ms-transition: all 1s;
       -o-transition: all 1s;
          transition: all 1s;
}

@media only screen and (max-width: 400px) {
  section .page-title {
    position: relative;
    right: auto;
    font-size: 1.8em;
    text-align: left;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  section .page-title {
    position: relative;
    right: auto;
    font-size: 2.1em;
    text-align: left;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  section .page-title {
    position: relative;
    right: auto;
    font-size: 2.4em;
    text-align: left;
  }
}

section.see {
  background-image: url(../../_resources/img/section_2_bg.jpg);
}

section.see .row {
  padding-top: 120px;
}

@media only screen and (max-width: 400px) {
  section.see .row {
    padding-top: 0;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  section.see .row {
    padding-top: 0;
  }
}

section.see .btn {
  display: inline-block;
}

section.see h2 {
  font-size: 1.72em;
  line-height: 1;
}

@media only screen and (max-width: 400px) {
  section.see h2 {
    margin-top: 60px;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  section.see h2 {
    margin-top: 60px;
  }
}

section.see p {
  padding-right: 20px;
  font-size: 0.92em;
  line-height: 1.2;
  text-shadow: 1px 1px 1px #222;
}

section.contact {
  padding-bottom: 30px;
  background-image: url(../../_resources/img/section_4_bg.jpg);
  background-position: 80% top;
}

section.contact:after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 200px;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.9) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.9)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.9) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.9) 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.9) 100%);
  content: "";
}

section.contact .container {
  z-index: 9999;
  height: 100%;
}

section.contact p {
  font-size: 0.9em;
}

section.contact .row {
  margin-bottom: 0;
}

section.contact .nc {
  padding-top: 120px;
  margin-bottom: 0;
}

@media only screen and (max-width: 400px) {
  section.contact .nc {
    padding-top: 20px;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  section.contact .nc {
    padding-top: 40px;
  }
}

section.contact .page-title {
  right: 334px;
}

@media only screen and (min-width: 801px) and (max-width: 960px) {
  section.contact .page-title {
    top: 43px;
    font-size: 3.4em;
  }
}

@media only screen and (max-width: 400px) {
  section.contact .page-title {
    right: auto;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  section.contact .page-title {
    right: auto;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  section.contact .page-title {
    right: auto;
  }
}

section.contact .page-count {
  right: 224px;
}

section.admissions {
  padding-bottom: 100px;
  background-image: url(../../_resources/img/section_6_bg.jpg);
}

section.admissions .thirds {
  margin-bottom: 10px;
}

@media only screen and (min-width: 801px) and (max-width: 960px) {
  section.admissions .thirds {
    margin-bottom: 0;
  }
}

section.admissions .fourths {
  margin-bottom: 10px;
}

@media only screen and (min-width: 801px) and (max-width: 960px) {
  section.admissions .fourths {
    margin-bottom: 0;
  }
}

section.admissions .one-third {
  font-size: 1.1em;
  cursor: pointer;
}

@media only screen and (min-width: 801px) and (max-width: 960px) {
  section.admissions .one-third {
    font-size: 0.8em;
  }
}

section.admissions .one-third h3 {
  margin: 1.26em 0;
  -webkit-transition: all 0.2s;
     -moz-transition: all 0.2s;
      -ms-transition: all 0.2s;
       -o-transition: all 0.2s;
          transition: all 0.2s;
}

@media only screen and (min-width: 801px) and (max-width: 960px) {
  section.admissions .one-third h3 {
    margin: 1em 0;
  }
}

section.admissions .one-third.current {
  font-size: 1.4em;
  opacity: 1;
}

@media only screen and (min-width: 801px) and (max-width: 960px) {
  section.admissions .one-third.current {
    font-size: 1em;
  }
}

section.admissions .one-third.current h3 {
  margin: 0.8em 0;
}

section.admissions .one-third.current:hover {
  opacity: 1;
}

section.admissions .one-third:hover {
  opacity: 0.76;
}

section.admissions .one-fourth {
  font-size: 1.1em;
  cursor: pointer;
}

@media only screen and (min-width: 801px) and (max-width: 960px) {
  section.admissions .one-fourth {
    font-size: 0.8em;
  }
}

section.admissions .one-fourth h3 {
  margin: 1.26em 0;
  -webkit-transition: all 0.2s;
     -moz-transition: all 0.2s;
      -ms-transition: all 0.2s;
       -o-transition: all 0.2s;
          transition: all 0.2s;
}

@media only screen and (min-width: 801px) and (max-width: 960px) {
  section.admissions .one-fourth h3 {
    margin: 1em 0;
  }
}

section.admissions .one-fourth.current {
  font-size: 1.0;
  opacity: 1;
}

@media only screen and (min-width: 801px) and (max-width: 960px) {
  section.admissions .one-fourth.current {
    font-size: 0.9em;
  }
}

section.admissions .one-fourth.current h3 {
  margin: 0.8em 0;
}

section.admissions .one-fourth.current:hover {
  opacity: 1;
}

section.admissions .one-fourth:hover {
  opacity: 0.76;
}

section.campus-life {
  padding-top: 40px;
}

section.campus-life .campus-life-bgs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

section.campus-life .abs-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  -webkit-transition: opacity, 0.8s;
     -moz-transition: opacity, 0.8s;
      -ms-transition: opacity, 0.8s;
       -o-transition: opacity, 0.8s;
          transition: opacity, 0.8s;
}

section.campus-life .abs-bg.current {
  opacity: 1;
}

section.campus-life .slide.container {
  width: 20% !important;
  padding-left: 0;
  opacity: 0.4;
  -webkit-transition: all 0.5s;
     -moz-transition: all 0.5s;
      -ms-transition: all 0.5s;
       -o-transition: all 0.5s;
          transition: all 0.5s;
}

section.campus-life .slide.container.current {
  opacity: 1;
}

section.campus-life .eight.columns {
  padding-top: 80px;
  margin: 0;
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  section.campus-life .eight.columns {
    padding-left: 0;
  }
}

@media only screen and (max-width: 400px) {
  section.campus-life .eight.columns {
    padding-top: 10px;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  section.campus-life .eight.columns {
    padding-top: 10px;
  }
}

section.campus-life .campus-life-slider {
  position: relative;
  padding-bottom: 20px;
  overflow: hidden;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
}

section.campus-life .campus-life-slider .container .slides-container {
  position: relative;
  width: 400%;
  overflow: auto;
  -webkit-transition: margin-left 0.5s ease;
     -moz-transition: margin-left 0.5s ease;
      -ms-transition: margin-left 0.5s ease;
       -o-transition: margin-left 0.5s ease;
          transition: margin-left 0.5s ease;
}

section.campus-life .campus-life-slider .container .slides-container .slide {
  float: left;
  padding-top: 80px;
}

section.campus-life .transp-black {
  padding: 30px;
  box-sizing: border-box;
}

section.campus-life .content-piece {
  display: none;
  opacity: 0;
  -webkit-transition: all 0.8s;
     -moz-transition: all 0.8s;
      -ms-transition: all 0.8s;
       -o-transition: all 0.8s;
          transition: all 0.8s;
}

section.campus-life .current {
  display: block;
  opacity: 1;
}

section.campus-life footer.inner {
  position: absolute;
  bottom: 150px;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

section.campus-life footer.inner .container {
  padding: 0 !important;
  font-size: 0.7em;
}

section.campus-life footer.inner a {
  display: inline-block;
  padding: 12px 10px;
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  section.campus-life footer.inner a {
    padding: 6px 5px;
  }
}

@media only screen and (max-width: 400px) {
  section.campus-life footer.inner a {
    padding: 6px 5px;
  }
}

section.campus-life footer.inner a.current {
  position: relative;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

section.campus-life footer.inner a.current:after {
  position: absolute;
  top: -12px;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  margin-left: -8px;
  border: 8px solid transparent;
  border-bottom-color: #fff;
  content: "";
}

@media only screen and (max-width: 400px) {
  section.campus-life {
    height: auto;
  }
  section.campus-life .row {
    padding-top: 14px;
  }
  section.campus-life footer.inner {
    position: relative;
    bottom: 0;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  section.campus-life {
    height: auto;
  }
  section.campus-life .row {
    padding-top: 14px;
  }
  section.campus-life .slide.container {
    float: left !important;
    width: 20% !important;
  }
  section.campus-life footer.inner {
    position: relative;
    bottom: 0;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  section.campus-life .slide.container {
    float: left !important;
    width: 20% !important;
  }
}

section.finances {
  padding-top: 20px;
  background-image: url(../../_resources/img/section_8_bg.jpg);
}

@media only screen and (min-width: 1024px) {
  section.finances {
    padding-top: 200px;
  }
}

section.finances .page-title {
  position: relative;
  top: 0;
  left: -30px;
  z-index: 9999;
  margin: 0;
  font-size: 4em;
  text-align: left;
}

@media only screen and (max-width: 400px) {
  section.finances .container {
    padding: 0;
  }
  section.finances .container .page-title {
    font-size: 3em;
  }
  section.finances .container .transp-black {
    margin-top: 0;
    background: rgba(0, 0, 0, 0.3);
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  section.finances .container {
    padding: 0;
  }
  section.finances .container .page-title {
    font-size: 3em;
  }
  section.finances .container .transp-black {
    margin-top: 0;
    background: rgba(0, 0, 0, 0.3);
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  section.finances .container {
    padding: 0;
  }
  section.finances .container .page-title {
    font-size: 3em;
  }
  section.finances .container .transp-black {
    margin-top: 0;
    background: rgba(0, 0, 0, 0.3);
  }
}

@media only screen and (max-width: 800px) {
  section.finances .page-title,
  section.finances .page-count {
    margin-left: 30px;
  }
}

section.finances.in-view .page-title {
  left: 0;
}

section.finances .container {
  position: relative;
  height: 100%;
}

section.finances .five.columns.first {
  position: relative;
  bottom: 0;
  height: 100%;
  margin-right: 0 !important;
}

@media only screen and (max-width: 400px) {
  section.finances .five.columns.first {
    height: auto;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  section.finances .five.columns.first {
    height: auto;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  section.finances .five.columns.first {
    height: auto;
  }
}

section.finances .finances-trigger {
  width: 100%;
  padding: 6px 30px;
  margin-left: -30px;
  border-bottom: 1px solid transparent;
  box-sizing: content-box;
}

section.finances .finances-trigger.current {
  position: relative;
  color: #fff;
  background: rgba(127, 132, 26, 0.7);
  box-shadow: 0 0 12px #000;
}

section.finances .five.columns.last {
  position: relative;
  height: auto;
  margin-left: 0 !important;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

section.finances .five.columns.last .finances-content {
  position: absolute;
  top: 140px;
  left: 0;
  height: auto;
  padding: 36px;
  background: rgba(127, 132, 26, 0.7);
  opacity: 0;
  -webkit-transform: perspective(150) rotateY(90deg);
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
     -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
       -o-transition: all 0.3s;
          transition: all 0.3s;
  -webkit-transform-origin: 0 50%;
}

section.finances .five.columns.last .finances-content h4 {
  margin: 0;
  font-size: 1.3em;
}

@media only screen and (max-width: 400px) {
  section.finances .five.columns.last .finances-content {
    top: 0;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  section.finances .five.columns.last .finances-content {
    top: 0;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  section.finances .five.columns.last .finances-content {
    top: 0;
  }
}

section.finances .five.columns.last .finances-content.current {
  opacity: 1;
  -webkit-transform: perspective(150) rotateY(0);
  -webkit-transform-origin: 0 50%;
}

section.finances .transp-black {
  height: 100%;
  padding: 30px;
  margin-top: -30px;
  font-size: 0.9em;
}

section.finances .transp-black a {
  display: block;
  margin-bottom: 4px;
  font-weight: bold;
}

section.finances .transp-black a:after {
  position: relative;
  left: 4px;
  display: inline;
  font-family: "FontAwesome";
  content: "\f0a9";
}

section.finances .page-count {
  position: absolute;
  top: 6px;
}

section.finances .page-count:after {
  position: absolute;
  top: 50%;
  right: 47px;
  display: block;
  width: 4000px;
  height: 2px;
  margin-top: -1px;
  background: #fff;
  content: "";
}

section.finances .page-count:before {
  position: absolute;
  top: 50%;
  left: 57px;
  display: block;
  width: 40px;
  height: 2px;
  margin-top: -1px;
  background: #fff;
  content: "";
}

.page-count {
  top: 46px;
  width: 44px;
  height: 44px;
  font-size: 2.4em;
  font-weight: bold;
  line-height: 44px;
  text-align: center;
  border: 3px solid #fff;
  border-radius: 50%;
}

.page-count.top-right {
  position: absolute;
  right: 0;
}

.page-count.top-right:before {
  position: absolute;
  top: 50%;
  left: -50px;
  display: block;
  width: 40px;
  height: 2px;
  margin-top: -1px;
  background: #fff;
  content: "";
}

.page-count.top-right:after {
  position: absolute;
  top: 50%;
  left: 100%;
  display: block;
  width: 4000px;
  height: 2px;
  margin-top: -1px;
  background: #fff;
  content: "";
}

@media only screen and (max-width: 400px) {
  .page-count {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
  }
  .page-count:after {
    display: none !important;
  }
  .page-count:before {
    display: none !important;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  .page-count {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
  }
  .page-count:after {
    display: none !important;
  }
  .page-count:before {
    display: none !important;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  .page-count {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
  }
  .page-count:after {
    display: none !important;
  }
  .page-count:before {
    display: none !important;
  }
}

.top-slider {
  min-height: 480px;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
}

@media only screen and (max-width: 400px) {
  .top-slider {
    text-align: right;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  .top-slider {
    text-align: right;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  .top-slider {
    text-align: right;
  }
}

.top-slider .slide-title {
  margin-top: 100px;
  margin-bottom: 0;
  font-size: 4.4em;
}

@media only screen and (max-width: 400px) {
  .top-slider .slide-title {
    width: 90%;
    text-align: right;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  .top-slider .slide-title {
    width: 90%;
    text-align: right;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  .top-slider .slide-title {
    width: 90%;
    text-align: right;
  }
}

@media only screen and (max-width: 400px) {
  .top-slider .slide-title {
    margin-top: 40px;
    font-size: 2.6em;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  .top-slider .slide-title {
    margin-top: 60px;
    font-size: 3em;
  }
}

.top-slider .slide-title span {
  max-height: 80px;
}

.top-slider .slide-title p {
  position: relative;
  height: auto;
  margin: 0;
  font-size: 0.9em;
  font-weight: lighter;
  line-height: 0.8em;
  text-transform: none;
}

.top-slider .slide-title p span {
  position: absolute;
  display: block;
  width: 100%;
  text-align: center;
  opacity: 0;
}

@media only screen and (max-width: 400px) {
  .top-slider .slide-title p span {
    text-align: right;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  .top-slider .slide-title p span {
    text-align: right;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  .top-slider .slide-title p span {
    text-align: right;
  }
}

.top-slider .slide-title p span.current {
  opacity: 1;
  -webkit-transition: all 0.6s;
     -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
       -o-transition: all 0.6s;
          transition: all 0.6s;
}

.top-slider .slide-title .top-slider-buttons {
  position: relative;
  max-height: 112px;
  margin-top: 20px;
  margin-bottom: -20px;
}

.top-slider .slide-title .top-slider-buttons a {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 6px;
  margin: 4px;
  background: rgba(255, 255, 255, 0.3);
}

@media only screen and (max-width: 400px) {
  .top-slider .slide-title .top-slider-buttons a {
    top: 8px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  .top-slider .slide-title .top-slider-buttons a {
    top: 8px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  .top-slider .slide-title .top-slider-buttons a {
    top: 8px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
  }
}

.top-slider .slide-title .top-slider-buttons a:hover {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.6);
}

.top-slider .slide-title .top-slider-buttons a.current {
  background: rgba(220, 226, 105, 0.9);
}

.top-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  -webkit-transition: all 0.8s;
     -moz-transition: all 0.8s;
      -ms-transition: all 0.8s;
       -o-transition: all 0.8s;
          transition: all 0.8s;
}

.top-slider .slide.current {
  opacity: 1;
}

.top-slider .slide-one {
  background-image: url(../../_resources/img/slide_1.jpg);
}

.top-slider .slide-two {
  background-image: url(../../_resources/img/slide_2.jpg);
}

.top-slider .slide-three {
  background-image: url(../../_resources/img/slide_3.jpg);
}

.scroll-down {
  position: absolute;
  bottom: 50px;
  z-index: 9999999;
  display: block;
  width: 100%;
  margin-left: -4.5px;
  font-size: 1.2em;
  color: #fff;
}

@media only screen and (max-width: 400px) {
  .scroll-down {
    display: none;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  .scroll-down {
    display: none;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  .scroll-down {
    display: none;
  }
}

.scroll-down .left-side {
  position: relative;
  top: 18px;
  left: -22px;
  text-transform: uppercase;
}

.scroll-down .right-side {
  position: relative;
  top: 18px;
  right: -22px;
  text-transform: uppercase;
}

.scroll-down .fa {
  position: relative;
  top: 20px;
  display: inline-block;
  width: 54px;
  height: 54px;
  font-size: 2em;
  line-height: 54px;
  color: #dce269;
  border: 3px solid #fff;
  border-radius: 50%;
}

.scroll-down .fa:hover {
  color: #222;
  background: #dce269;
  border-color: #222;
}

.instagram {
  position: relative;
  min-height: 500px;
  padding-top: 0;
  text-align: center;
  box-sizing: border-box;
}

.instagram.in-view h1 {
  opacity: 1;
  -webkit-filter: none;
  -webkit-transform: none;
     -moz-transform: none;
      -ms-transform: none;
       -o-transform: none;
}

.instagram h1 {
  position: relative;
  z-index: 999;
  padding-top: 130px;
  font-size: 4em;
  font-weight: lighter;
  text-align: center;
  text-shadow: 0 0 20px #000;
  pointer-events: none;
  opacity: 0;
  -webkit-filter: blur(10px);
  -webkit-transform: translate(0, -20px) scale(1.2);
      -ms-transform: translate(0, -20px) scale(1.2);
          transform: translate(0, -20px) scale(1.2);
  -webkit-transition: all 0.6s;
     -moz-transition: all 0.6s;
      -ms-transition: all 0.6s;
       -o-transition: all 0.6s;
          transition: all 0.6s;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

@media only screen and (max-width: 400px) {
  .instagram h1 {
    font-size: 2em;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  .instagram h1 {
    font-size: 2.4em;
  }
}

.instagram .btn.btn-primary {
  position: relative;
  z-index: 999;
  padding: 1.6em;
  letter-spacing: 0;
  background: rgba(0, 0, 0, 0.8);
}

.instagram img {
  display: inline-block;
  opacity: 1;
  -webkit-transition: all 0.8s;
     -moz-transition: all 0.8s;
      -ms-transition: all 0.8s;
       -o-transition: all 0.8s;
          transition: all 0.8s;
}

.instagram .instagram-hold {
  position: absolute;
  top: -5%;
  width: 110%;
  height: 110%;
  margin-left: -5%;
  font-size: 0;
}

@media only screen and (max-width: 400px) {
  .instagram .instagram-hold img {
    max-width: 33%;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  .instagram .instagram-hold img {
    max-width: 25%;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  .instagram .instagram-hold img {
    max-width: 25%;
  }
}

@media only screen and (min-width: 801px) and (max-width: 960px) {
  .instagram .instagram-hold img {
    max-width: 20%;
  }
}

@media only screen and (min-width: 961px) and (max-width: 1200px) {
  .instagram .instagram-hold img {
    max-width: 16.6%;
  }
}

@media only screen and (min-width: 1201px) {
  .instagram .instagram-hold img {
    max-width: 12.5%;
  }
}

.btn {
  text-decoration: none !important;
  -webkit-transition: all 0.2s;
     -moz-transition: all 0.2s;
      -ms-transition: all 0.2s;
       -o-transition: all 0.2s;
          transition: all 0.2s;
  -webkit-background-clip: padding-box;
     -moz-background-clip: padding;
          background-clip: padding-box;
}

.btn.btn-primary {
  padding: 12px 11px 11px 11px;
  font-size: 0.8em;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid #dce269;
  border-radius: 5px;
  outline: none;
}

.btn.btn-primary:hover {
  color: #222;
  background: #dce269;
}

.btn.btn-large {
  padding: 11px 9px 9px 9px;
  font-size: 1.2em;
  letter-spacing: none;
}

.contact h3.uc {
  max-height: 60px;
  margin-bottom: 0;
}

.contact p {
  padding: 16px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  box-shadow: inset 0 0 10px rgba(220, 226, 105, 0.2);
  box-sizing: border-box;
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  .contact .page-title {
    font-size: 1.8em;
  }
  .contact .page-title,
  .contact h3 {
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  }
}

@media only screen and (max-width: 400px) {
  .contact .page-title {
    font-size: 2em;
  }
  .contact .page-title,
  .contact h3 {
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  }
}

.contact form input[type=text],
.contact form input[type=email],
.contact form input[type=tel],
.contact form textarea {
  display: block;
  width: 100%;
  max-height: 54px;
  padding: 16px;
  margin: 12px 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.62);
  border: none;
  border: 2px solid transparent;
  border-radius: 3px;
  outline: none;
  box-sizing: border-box;
}

.contact form input[type=text]:focus,
.contact form input[type=email]:focus,
.contact form input[type=tel]:focus,
.contact form textarea:focus {
  border: 2px solid #dce269;
}

.contact form input[name=firstname] {
  display: block;
  float: left;
  width: 47%;
  margin-right: 3%;
}

.contact form input[name=lastname] {
  display: block;
  float: left;
  width: 47%;
  margin-left: 3%;
}

.contact form textarea {
  height: 120px;
  max-height: 120px;
  resize: none;
}

.admissions-thumbgrid a {
  display: block;
  float: left;
  width: 72px;
  height: 72px;
  margin: 0 12px 12px 0;
  background-color: rgba(255, 255, 255, 0.4);
  background-size: cover;
  opacity: 0.9;
  -webkit-transition: all 0.8s;
     -moz-transition: all 0.8s;
      -ms-transition: all 0.8s;
       -o-transition: all 0.8s;
          transition: all 0.8s;
}

.admissions-thumbgrid a:hover {
  background-color: rgba(143, 149, 29, 0.5);
  opacity: 1;
}

footer.site-level {
  position: relative;
  z-index: 9999999;
  background-image: url(../../_resources/img/footer_bg.jpg);
  background-position: center;
  background-size: cover;
}

footer.site-level > .container:first-child {
  padding: 64px 30px 44px;
  margin-bottom: 0;
}

footer.site-level > .container:first-child .row {
  margin: 0;
}

footer.site-level .btn-large {
  position: relative;
  display: inline-block;
  padding: 0.8em 1em;
  margin-top: 30px;
}

footer.site-level h4 {
  margin: 3px 0;
  font-size: 1.1em;
  color: #dce269;
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  footer.site-level .columns {
    float: left;
    width: 46% !important;
  }
}

footer.site-level .columns {
  width: 18%;
}

footer.site-level ul {
  padding: 0;
  list-style: none;
}

footer.site-level ul li a {
  position: relative;
  display: block;
  padding: 12px 0;
  font-size: 0.9em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.2s;
     -moz-transition: all 0.2s;
      -ms-transition: all 0.2s;
       -o-transition: all 0.2s;
          transition: all 0.2s;
}

footer.site-level ul li a:visited {
  color: #fff;
}

@media only screen and (max-width: 400px) {
  footer.site-level ul li a {
    padding: 3px 0;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  footer.site-level ul li a {
    padding: 6px 0;
  }
}

footer.site-level ul li a:after {
  position: relative;
  left: 4px;
  display: inline;
  font-family: "FontAwesome";
  content: "\f0a9";
}

footer.site-level ul li a:hover {
  left: 8px;
  color: #dce269;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

footer.site-level div hr {
  width: 40%;
}

@media only screen and (max-width: 400px) {
  footer.site-level div hr {
    display: none;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  footer.site-level div hr {
    display: none;
  }
}

@media only screen and (max-width: 400px) {
  footer.site-level .btn {
    display: inline-block;
    margin-bottom: 100px;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  footer.site-level .btn {
    display: inline-block;
    margin-bottom: 100px;
  }
}

footer.site-level .copyright {
  padding: 30px 0;
  margin-top: 100px;
  font-size: 0.8em;
  color: #898989;
  background: #000;
}

footer.site-level .copyright p {
  margin: 0;
}

.quarter .color {
  width: 100%;
  height: 0;
  border: 10px dashed #000;
  border-radius: 20px;
  opacity: 0.4;
  -webkit-transition: all 1.2s;
     -moz-transition: all 1.2s;
      -ms-transition: all 1.2s;
       -o-transition: all 1.2s;
          transition: all 1.2s;
}

.in-view .quarter .color {
  width: 100%;
  height: 100%;
  border: 0 solid transparent;
  border-radius: 0;
  opacity: 1;
}

.quarter-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.academics {
  min-height: 700px !important;
  padding: 0;
  box-sizing: border-box;
}

@media only screen and (max-width: 400px) {
  .academics {
    min-height: 1880px !important;
  }
  .academics .container {
    width: 100%;
    padding: 20px 20px 0 20px;
    box-sizing: border-box;
  }
  .academics .page-title {
    top: 0;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  .academics {
    min-height: 1880px !important;
  }
  .academics .container {
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  .academics {
    min-height: 1880px !important;
  }
  .academics .container {
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
  }
}

@media only screen and (min-width: 801px) and (max-width: 960px) {
  .academics {
    padding-top: 30px;
  }
  .academics .page-count {
    top: 0;
  }
  .academics .page-title {
    top: 0;
    font-size: 3.2em;
  }
}

@media only screen and (min-width: 961px) and (max-width: 1200px) {
  .academics {
    padding-top: 30px;
  }
  .academics .page-count {
    top: 0;
  }
  .academics .page-title {
    top: 0;
    font-size: 3.2em;
  }
}

@media only screen and (max-width: 800px) {

}

.academics h1 {
  position: relative;
  z-index: 999;
}

.academics .container {
  -webkit-transition: none;
     -moz-transition: none;
      -ms-transition: none;
       -o-transition: none;
          transition: none;
}

.academics .page-count {
  z-index: 999;
}

.quarter {
  position: relative;
  height: 100%;
  background-position: center;
  background-size: cover;
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
}

@media only screen and (min-width: 801px) and (max-width: 960px) {
  .quarter {
    width: 50%;
    height: 50%;
  }
}

@media only screen and (min-width: 961px) and (max-width: 1200px) {
  .quarter {
    width: 50%;
    height: 50%;
  }
}

.quarter:after {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.9) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.9)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.9) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.9) 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.9) 100%);
  content: "";
}

.quarter a,
.quarter a:visited {
  color: #fff;
}

@media only screen and (max-width: 400px) {
  .quarter {
    width: 100%;
    height: 460px;
  }
  .quarter:first-child {
    height: 500px;
  }
  .quarter.academic-majors:hover .color {
    height: 500px;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  .quarter {
    width: 100%;
    height: 460px;
  }
  .quarter:first-child {
    height: 500px;
  }
  .quarter.academic-majors:hover .color {
    height: 500px;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  .quarter {
    width: 100%;
    height: 460px;
  }
  .quarter:first-child {
    height: 500px;
  }
  .quarter.academic-majors:hover .color {
    height: 500px;
  }
}

.quarter p {
  font-size: 0.8em;
}

.quarter .bottom {
  position: absolute;
  bottom: -200px;
  width: 100%;
  height: 370px;
  padding: 26px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.8s;
     -moz-transition: all 0.8s;
      -ms-transition: all 0.8s;
       -o-transition: all 0.8s;
          transition: all 0.8s;
}

@media only screen and (max-width: 800px) {
  .quarter .bottom {
    height: auto;
  }
}

@media only screen and (max-width: 400px) {
  .quarter .bottom {
    bottom: 20px;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  .quarter .bottom {
    bottom: 20px;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  .quarter .bottom {
    bottom: 20px;
  }
}

.quarter .bottom p {
  margin-bottom: 0;
}

.quarter .bottom .uc {
  position: relative;
  font-size: 1.7em;
  font-weight: bold;
  line-height: 1;
}

.quarter .bottom .uc:after {
  position: absolute;
  right: -24px;
  bottom: 6px;
  display: block;
  width: 0;
  height: 0;
  border: 9px solid transparent;
  border-bottom-color: rgba(255, 255, 255, 0.4);
  content: "";
}

@media only screen and (max-width: 400px) {
  .quarter .bottom .uc {
    font-size: 1em;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  .quarter .bottom .uc {
    font-size: 1.2em;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {

}

@media only screen and (min-width: 801px) and (max-width: 960px) {
  .quarter .bottom .uc {
    font-size: 1.4em;
  }
}

.quarter .bottom .uc .lighter {
  font-weight: lighter;
}

.quarter .color {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9999;
  -webkit-transition: all 0.8s;
     -moz-transition: all 0.8s;
      -ms-transition: all 0.8s;
       -o-transition: all 0.8s;
          transition: all 0.8s;
}

@media only screen and (min-width: 800px) {
  .quarter p {
    color: transparent;
  }
}

@media only screen and (max-width: 799px) {
  .quarter .bottom {
    bottom: 20px;
  }
  .quarter .bottom a:last-child {
    color: #dce269;
  }
}

@media only screen and (min-width: 800px) {
  .quarter:hover .bottom .uc,
  .quarter.active .bottom .uc {
    color: #fff;
  }
  .quarter:hover .color,
  .quarter.active .color {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 370px;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .quarter:hover p,
  .quarter.active p {
    color: #fff;
  }
  .quarter:hover .bottom,
  .quarter.active .bottom {
    bottom: 0;
  }
  .quarter:hover .bottom a,
  .quarter.active .bottom a {
    color: #dce269;
  }
}

@media only screen and (min-width: 800px) and screen only and (max-width: 800px) {
  .quarter:hover .bottom .uc:before,
  .quarter.active .bottom .uc:before {
    display: none;
  }
}

@media only screen and (min-width: 800px) and screen only and (min-width: 800px) {
  .quarter:hover .bottom .uc,
  .quarter.active .bottom .uc {
    font-size: 1.4em;
  }
  .quarter:hover .bottom .uc:after,
  .quarter.active .bottom .uc:after {
    display: none;
  }
  .quarter:hover .bottom .uc:before,
  .quarter.active .bottom .uc:before {
    position: absolute;
    top: -24px;
    left: -12px;
    display: block;
    width: 0;
    height: 0;
    border: 16px solid transparent;
    border-top-color: #dce269;
    content: "";
  }
}

@media only screen and (min-width: 800px) and only screen and (min-width: 1201px) {
  .quarter:hover .color,
  .quarter.active .color {
    height: 420px;
  }
}

@media only screen and (min-width: 800px) and only screen and (max-width: 400px) {
  .quarter:hover .color,
  .quarter.active .color {
    height: 440px;
  }
}

@media only screen and (min-width: 800px) and only screen and (min-width: 401px) and (max-width: 600px) {
  .quarter:hover .color,
  .quarter.active .color {
    height: 440px;
  }
}

@media only screen and (min-width: 800px) and only screen and (min-width: 601px) and (max-width: 800px) {
  .quarter:hover .color,
  .quarter.active .color {
    height: 440px;
  }
}

.academic-majors {
  background-image: url(../../_resources/img/academic_1.jpg);
}

.academic-majors .color {
  background-color: rgba(128, 23, 105, 0.5);
}

.study-abroad {
  background-image: url(../../_resources/img/academic_2.jpg);
}

.study-abroad .color {
  background-color: rgba(0, 100, 157, 0.5);
}

.academic-resources {
  background-image: url(../../_resources/img/academic_3.jpg);
}

.academic-resources .color {
  background-color: rgba(68, 68, 68, 0.5);
}

.our-professors {
  background-image: url(../../_resources/img/academic_4.jpg);
}

.our-professors .color {
  background-color: rgba(82, 85, 16, 0.45);
}

.admissions {
  padding-top: 60px;
}

.admissions .content {
  position: relative;
  height: 250px;
}

.admissions .content p {
  position: absolute;
  top: 0;
  left: 30%;
  width: 40%;
  padding: 20px auto;
  text-align: left;
  opacity: 0;
  -webkit-filter: blur(4px);
  -webkit-transition: opacity, -webkit-filter 0.4s;
     -moz-transition: opacity, -webkit-filter 0.4s;
      -ms-transition: opacity, -webkit-filter 0.4s;
       -o-transition: opacity, -webkit-filter 0.4s;
          transition: opacity, -webkit-filter 0.4s;
}

.admissions .content p.current {
  position: relative;
  z-index: 999;
  display: block;
  opacity: 1;
  -webkit-filter: none;
}

.admissions .content p strong {
  display: block;
}

.admissions .content .btn {
  display: block;
  width: 180px;
  margin: 20px auto;
  text-align: center;
}

.admissions .page-count {
  line-height: 42px;
  text-indent: -3px;
}

.admissions .thirds {
  height: 140px;
  padding: 120px 30px 0;
}

.admissions .fourths {
  height: 140px;
  padding: 120px 30px 0;
}

.admissions h3 {
  font-size: 1.8em;
  line-height: 0.7em;
  text-align: center;
}

@media only screen and (min-width: 961px) and (max-width: 1200px) {
  .admissions h3 {
    font-size: 1.6em;
  }
}

@media only screen and (min-width: 1201px) {
  .admissions h3 {
    font-size: 2em;
  }
}

.admissions h3 small {
  display: block;
  font-size: 0.6em;
  font-weight: lighter;
  color: #dce269;
}

.admissions .indicator {
  position: relative;
  display: block;
  width: 100%;
}

.admissions .indicator .arrow {
  position: relative;
  left: -39%;
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border: 40px solid transparent;
  border-top-color: #fff;
  border-right-width: 34px;
  border-left-width: 34px;
  -webkit-transition: all 0.3s;
     -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
       -o-transition: all 0.3s;
          transition: all 0.3s;
}

.admissions .indicator .arrow.position-1 {
  left: -39%;
}

.admissions .indicator .arrow.position-2 {
  left: -14%;
}

.admissions .indicator .arrow.position-3 {
  left: 10%;
}

.admissions .indicator .arrow.position-4 {
  left: 34%;
}

.admissions .indicator .arrow:after {
  position: absolute;
  top: -20px;
  right: 70px;
  display: block;
  width: 4000px;
  height: 1px;
  margin-top: -1px;
  background: #fff;
  content: "";
}

.admissions .indicator .arrow:before {
  position: absolute;
  top: -20px;
  left: 70px;
  display: block;
  width: 4000px;
  height: 1px;
  margin-top: -1px;
  background: #fff;
  content: "";
}

.admissions .non-desktop {
  display: none;
}

@media only screen and (max-width: 400px) {
  .admissions {
    text-align: center;
  }
  .admissions .page-title {
    font-size: 1.6em;
  }
  .admissions .page-title i {
    display: none;
  }
  .admissions .page-title span {
    display: block;
  }
  .admissions .non-desktop {
    display: block;
  }
  .admissions .desktop {
    display: none;
  }
  .admissions p {
    padding: 4px 30px;
    margin: 0;
  }
  .admissions .btn {
    display: block;
    width: 110px;
    margin: 20px auto;
    font-size: 0.8em;
    text-align: center;
  }
  .admissions h3 {
    margin: 120px auto 0 auto;
    font-size: 1.6em;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  .admissions {
    text-align: center;
  }
  .admissions .page-title {
    font-size: 2em;
  }
  .admissions .non-desktop {
    display: block;
  }
  .admissions .desktop {
    display: none;
  }
  .admissions p {
    padding: 4px 30px;
    margin: 0;
  }
  .admissions .btn {
    display: block;
    width: 110px;
    margin: 20px auto;
    font-size: 0.8em;
    text-align: center;
  }
  .admissions h3 {
    margin: 120px auto 0 auto;
    font-size: 1.6em;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  .admissions {
    text-align: center;
  }
  .admissions .non-desktop {
    display: block;
  }
  .admissions .desktop {
    display: none;
  }
  .admissions p {
    padding: 4px 30px;
    margin: 0;
  }
  .admissions .btn {
    display: block;
    width: 110px;
    margin: 20px auto;
    font-size: 0.8em;
    text-align: center;
  }
  .admissions h3 {
    margin: 120px auto 0 auto;
    font-size: 1.6em;
  }
}

@media only screen and (min-width: 801px) and (max-width: 960px) {
  .admissions .page-title {
    font-size: 3.3em;
  }
  .admissions .page-count {
    top: 38px;
  }
}

#Email.control-group {
  clear: both;
}

a.expand:before {
  display: inline-block;
  padding-right: 10px;
  font-weight: bold;
  content: "+";
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(20, 21, 4, 0.8);
  opacity: 0;
  -webkit-transition: all, 0.3s;
     -moz-transition: all, 0.3s;
      -ms-transition: all, 0.3s;
       -o-transition: all, 0.3s;
          transition: all, 0.3s;
}

.modal ::-webkit-input-placeholder {
  color: #444;
}

.modal :-moz-placeholder {
  /* Firefox 18- */

  color: #444;
}

.modal ::-moz-placeholder {
  /* Firefox 19+ */

  color: #444;
}

.modal :-ms-input-placeholder {
  color: #444;
}

.modal #visit-dates-available {
  display: none;
}

.modal.show {
  z-index: 10000000;
  opacity: 1;
}

.modal fieldset {
  position: relative;
  top: 15%;
  width: 50%;
  height: auto;
  max-width: 600px;
  max-height: 80%;
  min-width: 300px;
  min-height: 50%;
  padding: 20px;
  margin: 0 auto;
  overflow: scroll;
  background: rgba(0, 0, 0, 0.7);
  border: 4px solid rgba(220, 226, 105, 0.5);
  border-radius: 4px;
  box-sizing: border-box;
}

.modal fieldset input,
.modal fieldset textarea {
  display: block;
  width: 87%;
  padding: 16px;
  margin: 12px 0;
  color: #fff;
  background-color: rgba(230, 230, 230, 0.9);
  border: none;
  border: 2px solid transparent;
  border-radius: 4px;
  outline: none;
  box-sizing: border-box;
  -webkit-transition: background, 0.3s;
     -moz-transition: background, 0.3s;
      -ms-transition: background, 0.3s;
       -o-transition: background, 0.3s;
          transition: background, 0.3s;
}

.modal fieldset input:focus,
.modal fieldset textarea:focus {
  color: #fff;
  background-color: #333;
  border: 2px solid #dce269;
}

.modal fieldset input:focus::-webkit-input-placeholder,
.modal fieldset textarea:focus::-webkit-input-placeholder {
  color: #aaa;
}

.modal fieldset input:focus:-moz-placeholder,
.modal fieldset textarea:focus:-moz-placeholder {
  /* Firefox 18- */

  color: #aaa;
}

.modal fieldset input:focus::-moz-placeholder,
.modal fieldset textarea:focus::-moz-placeholder {
  /* Firefox 19+ */

  color: #aaa;
}

.modal fieldset input:focus:-ms-input-placeholder,
.modal fieldset textarea:focus:-ms-input-placeholder {
  color: #aaa;
}

.modal fieldset input[type=submit] {
  margin-bottom: 0;
  color: #444;
  background: #dce269;
  box-shadow: 0 1px 0 #666, 0 2px 0 #666, 0 3px 0 #666;
}

.modal fieldset input[type=submit]:hover {
  background: #f7fd81;
}

.modal fieldset input[type=submit]:active {
  position: relative;
  top: 3px;
  box-shadow: 0 0 1px #888, inset 0 0 12px #dadada;
}

.modal fieldset textarea {
  height: 140px;
}

.modal fieldset .inline strong {
  display: block;
  float: none;
  clear: both;
}

.modal fieldset .inline label {
  display: inline-block;
  width: auto;
  margin-right: 15px;
}

.modal fieldset .inline label input[type='checkbox'],
.modal fieldset .inline label input[type="radio"] {
  display: inline-block;
  width: auto;
}

@media only screen and (min-width: 801px) and (max-width: 960px) {
  .modal fieldset .row {
    margin-bottom: 12px 0;
  }
  .modal fieldset .row label {
    padding: 16px 0;
  }
  .modal fieldset .row > * {
    float: left;
    width: 37.5%;
    margin-top: 0;
    margin-bottom: 0;
  }
  .modal fieldset .row > *:first-child {
    margin-right: 2.5%;
  }
  .modal fieldset .row > *:last-child {
    margin-left: 2.5%;
  }
}

@media only screen and (min-width: 961px) and (max-width: 1200px) {
  .modal fieldset .row {
    margin-bottom: 12px 0;
  }
  .modal fieldset .row label {
    padding: 16px 0;
  }
  .modal fieldset .row > * {
    float: left;
    width: 37.5%;
    margin-top: 0;
    margin-bottom: 0;
  }
  .modal fieldset .row > *:first-child {
    margin-right: 2.5%;
  }
  .modal fieldset .row > *:last-child {
    margin-left: 2.5%;
  }
}

@media only screen and (min-width: 1201px) {
  .modal fieldset .row {
    margin-bottom: 12px 0;
  }
  .modal fieldset .row label {
    padding: 16px 0;
  }
  .modal fieldset .row > * {
    float: left;
    width: 47.5%;
    margin-top: 0;
    margin-bottom: 0;
  }
  .modal fieldset .row > *:first-child {
    margin-right: 2.5%;
  }
  .modal fieldset .row > *:last-child {
    margin-left: 2.5%;
  }
}

.form-kill,
.close-contact {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #444;
  border-radius: 50%;
}

.form-kill:hover,
.close-contact:hover {
  cursor: pointer;
  background: #aaa;
}

@media only screen and (max-width: 400px) {
  .columns {
    width: 100% !important;
  }
  .container {
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
  }
  .backpage .outer-wrap .container {
    padding: 0;
  }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
  .container {
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
  }
  .columns {
    width: 100% !important;
  }
  .backpage .outer-wrap .container {
    padding: 0;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  .container {
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
  }
  .columns {
    width: 100% !important;
  }
  .backpage .outer-wrap .container {
    padding: 0;
  }
}

.contact-holder {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.contact-holder .contact-thumb {
  float: left;
  width: 80px;
  margin: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.4);
}

.contact-card {
  position: relative;
  top: -150px;
  width: 80%;
  max-width: 500px;
  max-height: 400px;
  min-width: 300px;
  padding: 16px;
  margin: 0 auto;
  background: #444;
  border-radius: 4px;
  opacity: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all, 0.3s;
     -moz-transition: all, 0.3s;
      -ms-transition: all, 0.3s;
       -o-transition: all, 0.3s;
          transition: all, 0.3s;
}

.contact-card h5 {
  margin: 0;
  font-size: 1.4em;
  line-height: 1;
}

.contact-card p {
  padding-left: 80px;
  margin: 0;
  font-size: 0.8em;
}

.resp-indicator {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999999999;
  padding: 10px;
  color: #fff;
  background: black;
}

.hint--top:after {
  margin-left: -70%;
  font-weight: bold;
  color: #444;
  text-shadow: none;
  background-color: #dce269;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.hint--top:before {
  border-top-color: #dce269;
}

/* Backpag eStyles */

.backpage {
  -webkit-font-smoothing: antialiased;
}

.mobile {
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

@media only screen and (max-width: 800px) {
  .mobile {
    height: auto;
    visibility: visible;
  }
}

.mobile.navigation-trigger {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 999999999;
  font-size: 2em;
  line-height: 32px;
  cursor: pointer;
}

#sidebar-wrap {
  position: relative;
  padding-top: 220px;
  padding-bottom: 100px;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: padding 0.25s ease;
     -moz-transition: padding 0.25s ease;
      -ms-transition: padding 0.25s ease;
       -o-transition: padding 0.25s ease;
          transition: padding 0.25s ease;
}

@media only screen and (min-width: 960px) {
  #sidebar-wrap {
    min-height: 1000px;
  }
}

#sidebar-wrap #sidebar-nav-wrap.fixed {
  position: fixed;
}

#sidebar-wrap #sidebar-nav-wrap.bottom {
  position: absolute !important;
  bottom: 100px;
}

@media only screen and (min-width: 960px) {
  #sidebar-wrap #sidebar-nav-wrap {
    width: ;
  }
}

@media only screen and (min-width: 1200px) {
  #sidebar-wrap #sidebar-nav-wrap {
    width: 266px;
  }
}

@media only screen and (min-width: 1400px) {
  #sidebar-wrap #sidebar-nav-wrap {
    width: 373px;
  }
}

@media only screen and (max-width: 800px) {
  #sidebar-wrap {
    height: 0 !important;
    padding: 0 !important;
  }
  #sidebar-wrap.mobile-active {
    height: auto !important;
    padding-top: 150px !important;
    padding-bottom: 50px !important;
  }
  #sidebar-wrap.mobile-active ul {
    height: auto !important;
    overflow: visible;
  }
  #sidebar-wrap.mobile-active #sidebar-nav-wrap {
    height: auto !important;
  }
  #sidebar-wrap ul {
    height: 0 !important;
    overflow: hidden;
  }
  #sidebar-wrap #sidebar-nav-wrap {
    height: 0 !important;
  }
}

#sidebar-wrap ul {
  padding: 0;
  margin: 0;
}

#sidebar-wrap ul li {
  height: 2.5em;
  padding: 0 0 0 2em;
  margin: 0.2em 0 0 0;
  overflow: hidden;
  list-style-type: none;
  -webkit-transition: height 0.3s ease;
     -moz-transition: height 0.3s ease;
      -ms-transition: height 0.3s ease;
       -o-transition: height 0.3s ease;
          transition: height 0.3s ease;
}

#sidebar-wrap ul li a {
  display: block;
  padding: 0 0.5em;
  font-size: 1.4em;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
}

#sidebar-wrap ul li a.active {
  color: #dce269;
}

#sidebar-wrap ul li.active {
  height: auto !important;
  padding: 0 0 0 1.8em;
  margin-bottom: 2em;
  border-left: 0.2em solid #dce269;
}

#sidebar-wrap ul li.active a.main-level {
  color: #dce269;
}

#sidebar-wrap ul li.expanded {
  margin-bottom: 2em;
}

#sidebar-wrap ul li.expanded a.main-level {
  color: #dce269;
}

#sidebar-wrap ul li ul {
  margin: 0;
}

#sidebar-wrap ul li ul li {
  height: auto;
  padding: 0 !important;
}

#sidebar-wrap ul li ul li.active {
  margin: 0.2em auto !important;
  border-left: 0 solid transparent;
}

#sidebar-wrap ul li ul li a {
  font-size: 1.1em;
  color: #fff;
  text-transform: none;
}

#sidebar-wrap ul li ul li a:hover {
  background-color: rgba(51, 51, 51, 0.5);
}

#sidebar-wrap ul li ul li a.active {
  display: block;
  padding: 0.4em 0.5em;
  margin: 0.2em auto !important;
  background-color: #333;
}

#sidebar-wrap ul.bottom-menu {
  padding: 0;
  margin: 2em 0 0 2em;
  margin-top: 2em;
  font-weight: bold;
  text-transform: uppercase;
}

#sidebar-wrap ul.bottom-menu li {
  height: auto;
  padding: 0;
}

#sidebar-wrap ul.bottom-menu a.apply {
  display: inline-block;
  width: 7.5em;
  padding: 0.75em 1em;
  margin-top: 1em;
  font-size: 1.2em;
  line-height: 1.1;
  text-align: center;
  border: 2px solid #dce269;
  border-radius: 5px;
}

#sidebar-wrap ul.bottom-menu a.apply:hover {
  color: #055629;
  background-color: #dce269;
}

.bold {
  font-weight: bold;
}

#content-wrap {
  padding-top: 165px;
  overflow: auto;
  font-size: 0.9em;
}

@media only screen and (max-width: 800px) {
  #content-wrap {
    padding-top: 100px;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}

#content-wrap .bg-white {
  overflow: auto;
}

@media only screen and (min-width: 960px) {
  #content-wrap .bg-white {
    min-height: 1000px;
  }
}

#content-wrap .columns {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

#content-wrap .columns.two p {
  font-size: 0.8em !important;
}

#content-wrap .header-image {
  background-color: #222;
  background-image: url(../../_resources/images/bg-academic-majors.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#content-wrap .header-content {
  padding: 13em 1.5em 3em 1.5em;
  overflow: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#content-wrap .header-content h1 {
  padding: 0;
  margin: 0;
  font-size: 2em;
  font-weight: normal;
  color: #dce269;
}

#content-wrap .header-content h1 span {
  font-weight: bold;
  color: #fff;
}

#content-wrap .header-content p {
  padding: 0;
  margin: 0;
  line-height: 1.4em;
  color: #ffffff;
}

#content-wrap .header-content a {
  color: #dce269 !important;
  text-decoration: none !important;
}

#content-wrap .content-top {
  overflow: auto;
  background-color: #444;
}

#content-wrap .padded a {
  color: #666;
  text-decoration: underline;
}

#content-wrap form fieldset {
  padding: 0;
  margin: 0;
  border-top: 1px solid #ccc;
  border-right: none;
  border-bottom: none;
  border-left: none;
}

#content-wrap form input {
  width: 100%;
  padding: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1.5em;
  background-color: none;
  border: 2px solid #dce269;
  border-radius: 5px;
  box-shadow: none;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

#content-wrap form input[type=email],
#content-wrap form input[type=tel] {
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

#content-wrap form textarea {
  width: 100%;
  padding: 1em;
  margin: 1em 0;
  border: 2px solid #dce269;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

#content-wrap form select {
  padding: 1em;
}

#content-wrap form input[type=submit] {
  clear: both;
  font-size: 1.5em;
  font-weight: bold;
  color: #055629;
  background-color: #dce269;
  border-radius: 5px;
}

#content-wrap #visit-dates-available {
  display: none;
}

#content-wrap .form {
  position: static;
  z-index: 1;
  display: block;
  background-color: transparent;
  opacity: 1;
}

#content-wrap .form a {
  text-decoration: none;
}

#content-wrap .form a:hover {
  color: #dce269;
}

#content-wrap .form fieldset {
  position: static;
  top: auto;
  width: 100%;
  max-width: none;
  max-height: none;
  overflow: visible;
  background: transparent;
  border: 0 none;
}

#content-wrap .form fieldset textarea {
  height: 140px;
}

#content-wrap .form fieldset input,
#content-wrap .form fieldset textarea {
  display: block;
  width: 100%;
  padding: 16px;
  margin: 12px 0;
  font-size: 1em;
  border-radius: 4px;
  outline: none;
  box-sizing: border-box;
  -webkit-transition: background, 0.3s;
     -moz-transition: background, 0.3s;
      -ms-transition: background, 0.3s;
       -o-transition: background, 0.3s;
          transition: background, 0.3s;
}

#content-wrap .form .row > * {
  float: left;
  width: 47.5%;
  margin-top: 0;
  margin-bottom: 0;
}

#content-wrap .form .row input {
  margin-right: 3%;
}

#content-wrap .form .row input:last-child {
  margin-right: 0;
}

#content-wrap .form fieldset .row label {
  display: inline-block;
  width: auto;
  margin-right: 15px;
}

#content-wrap .form fieldset .inline strong {
  display: block;
  float: none;
  clear: both;
}

#content-wrap .form fieldset .inline label input[type="radio"] {
  display: inline-block;
  width: auto;
}

.majors h2 {
  padding: 0;
  margin: 0 0 1em 0;
  font-size: 1.3em;
  color: #fff;
}

.majors .columns {
  padding: 0;
  margin: 0 !important;
}

.major-list {
  padding: 0;
  margin: 0;
  font-size: 1em;
}

.major-list li {
  position: relative;
  padding: 0 0 0 0.8em;
  margin: 0 0 0.8em 0;
  line-height: 1.1em;
  list-style-type: none;
}

.major-list li:after {
  position: absolute;
  top: 3px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #dce269;
  content: "";
}

.major-list li a {
  padding: 0;
  margin: 0;
  font-weight: bold;
  color: #fff !important;
  text-decoration: none !important;
}

.backpage h2 {
  display: block;
  clear: both;
  font-size: 1.5em;
  color: #222;
}

.backpage h3 {
  display: block;
  padding-top: 0.8em;
  margin-top: 1em;
  margin-bottom: 0.6em;
  clear: both;
  font-size: 1.25em;
  line-height: 1.2em;
  color: #222;
}

.backpage h3 a {
  color: #222;
  text-decoration: none !important;
}

.download-link {
  display: inline-block;
  padding: 0.5em 1em;
  font-size: 0.8em;
  font-weight: bold;
  color: #222 !important;
  text-decoration: none !important;
  background-color: #dce269;
  border-radius: 4px;
}

.download-link:hover {
  color: #222;
  background-color: #dce269;
}

a.top-to {
  position: relative;
  display: block;
  padding-left: 15px;
  font-size: 0.6em;
  font-weight: bold;
  color: #444 !important;
  text-transform: uppercase;
}

a.top-to:hover {
  color: #444 !important;
}

a.top-to:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #ccc;
  border-left: 5px solid transparent;
  content: "";
}

h4.trigger {
  margin: 0 0 1em 0;
}

h4.trigger a {
  position: relative;
  display: block;
  padding: 0.5em 3.5em 0.5em 1em;
  font-weight: bold;
  color: #444;
  text-decoration: none !important;
  border: 2px solid #dce269;
  border-radius: 4px;
  -webkit-transition: all 0.1s ease;
     -moz-transition: all 0.1s ease;
      -ms-transition: all 0.1s ease;
       -o-transition: all 0.1s ease;
          transition: all 0.1s ease;
}

h4.trigger a:hover,
h4.trigger a.active {
  color: #444;
  background-color: #dce269;
}

@media only screen and (min-width: 1024px) {
  h4.trigger a:after {
    position: absolute;
    top: 40%;
    right: 20px;
    z-index: 100;
    width: 0;
    height: 0;
    border-top: 10px solid rgba(68, 68, 68, 0.30000000000000004);
    border-right: 10px solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 10px solid transparent;
    content: "";
  }
  h4.trigger a.active:after {
    border-top: 0 solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(68, 68, 68, 0.30000000000000004);
    border-left: 10px solid transparent;
  }
}

h4.trigger.highlighted a {
  background-color: rgba(220, 226, 105, 0.6);
}

h4.trigger.highlighted a:hover,
h4.trigger.highlighted a.active {
  color: #444;
  background-color: #dce269;
}

.toggle_container {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.2s ease;
     -moz-transition: height 0.2s ease;
      -ms-transition: height 0.2s ease;
       -o-transition: height 0.2s ease;
          transition: height 0.2s ease;
}

.info-box {
  padding: 0 1em;
  margin: 0 0 2em 0;
  font-size: 0.9em;
  color: #444;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.info-box p {
  padding: 0;
}

img.right {
  float: right;
  margin: 0 0 1em 1em;
}

img.left {
  float: left;
  margin: 0 1em 1em 0;
}

img.responsive {
  width: 100%;
}

p.note {
  font-size: 0.9em;
  font-style: italic;
}

.c-dialog {
  color: black;
}

/*
 * Image replacement
 */

.ir {
  overflow: hidden;
  *text-indent: -9999px;
  background-color: transparent;
  border: 0;
}

.ir:before {
  display: block;
  width: 0;
  height: 150%;
  content: "";
}

/*
 * 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 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/*
 * 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 {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
  visibility: hidden;
}

@media print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  {
    /* Style adjustments for high resolution devices */

  }
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
  {
    /*
         * Don't show links for images, or javascript/internal links
         */

  }
  * {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
    /* h5bp.com/t */

  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page  {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
