/* =============================================================================
   Globals
   ========================================================================== */
.right {
  float: right;
}
.left {
  float: left;
}
.center {
  display: block;
  text-align: center;
  margin: 0 auto;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.align-center {
  text-align: center;
}
.clear {
  clear: both;
}
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
.underline {
  border-bottom: 1px solid;
}
img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
img.alignleft,
img.left {
  float: left;
  margin: 0 10px 0 0;
}
img.alignright,
img.right {
  float: right;
  margin: 0 0 0 10px;
}
img.alignmiddle,
img.middle {
  vertical-align: middle;
}
.show {
  display: block;
}
.hide {
  display: none;
}
/* Note: Make HTML5 elements block-level for consistent styling */
abbr,
article,
aside,
audio,
canvas,
datalist,
details,
figure,
footer,
header,
hgroup,
mark,
menu,
meter,
nav,
output,
progress,
section,
time,
video {
  display: block;
}
/* Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
:focus {
  outline: 0;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: black;
  padding: 0.2em 0;
}
/* =============================================================================
   Primary Styles
   Author: Steve Ambielli
   Last modified:
   ========================================================================== */
html {
  min-height: 100%;
  height: auto;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #555;
  background: #f0f0f0;
}
h2 {
  font-family: "Roboto Slab", serif;
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 10px;
}
h3 {
  font-family: "Roboto Slab", serif;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 20px;
}
h4 {
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 20px;
}
p {
  padding-bottom: 20px;
}
ul {
  margin: 0 0 0 20px;
  padding-bottom: 20px;
}
ul li {
  list-style-type: disc;
}
ul li ul {
  margin-top: 10px;
}
ol {
  margin: -10px 0 0 25px;
  padding-bottom: 20px;
}
ol li {
  list-style-type: decimal;
}
hr {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #fff;
}
.orange {
  color: #ff9d00;
}
.blue {
  color: #00aeef;
}
.yellow {
  color: #d4b925;
}
.purple {
  color: #6860aa;
}
/* =============================================================================
   Button
   ========================================================================== */
.btn-primary {
  color: #434343;
  font-weight: 700;
  text-shadow: 0 1px 1px #fff;
  box-shadow: inset 0 1px 1px #ccc;
  border: 0;
  background: #ffcc00;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffcc00 0%, #ff8100 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffcc00), color-stop(100%, #ff8100));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffcc00 0%, #ff8100 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffcc00 0%, #ff8100 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ffcc00 0%, #ff8100 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #ffcc00 0%, #ff8100 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffcc00', endColorstr='#ff8100', GradientType=0);
  /* IE6-9 */
}
.btn-primary:hover,
.btn-primary:focus {
  color: #434343;
  text-shadow: 0 1px 1px #fff;
  box-shadow: inset 0 1px 1px #5b5b5b;
  border: 0;
  background: #ffcc00;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffcc00 0%, #ff8100 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffcc00), color-stop(100%, #ff8100));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffcc00 0%, #ff8100 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffcc00 0%, #ff8100 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ffcc00 0%, #ff8100 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #ffcc00 0%, #ff8100 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffcc00', endColorstr='#ff8100', GradientType=0);
  /* IE6-9 */
}
.btn-primary:active {
  box-shadow: inset 0 2px 1px #5b5b5b;
}
/* =============================================================================
   Header
   ========================================================================== */
header#header #meta-nav {
  background: #408bcd;
  /* Old browsers */
  background: -moz-linear-gradient(top, #408bcd 0%, #01afee 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #408bcd), color-stop(100%, #01afee));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #408bcd 0%, #01afee 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #408bcd 0%, #01afee 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #408bcd 0%, #01afee 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #408bcd 0%, #01afee 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#408bcd', endColorstr='#01afee', GradientType=0);
  /* IE6-9 */
  border-bottom: 1px solid #716fb3;
  font-size: 12px;
  padding: 5px 0;
  color: #fff;
}
header#header #meta-nav .subscribe a {
  color: #434343;
}
header#header #meta-nav .subscribe .btn {
  font-size: 12px;
  margin-left: 10px;
}
header#header #meta-nav .social-icons {
  font-size: 22px;
}
header#header #meta-nav .social-icons img {
  vertical-align: middle;
}
header#header #meta-nav .social-icons a {
  color: #fff;
  margin-left: 10px;
}
header#header #meta-nav .social-icons a:hover {
  color: #6860aa;
}
header#header #meta-nav .social-icons i {
  padding-top: 4px;
}
header#header #nav {
  border-bottom: 3px solid #00afef;
  padding: 10px 0 0 0;
  background: #eff1f4;
  /* Old browsers */
  background: -moz-linear-gradient(top, #eff1f4 0%, #e8eaeb 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eff1f4), color-stop(100%, #e8eaeb));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #eff1f4 0%, #e8eaeb 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #eff1f4 0%, #e8eaeb 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #eff1f4 0%, #e8eaeb 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #eff1f4 0%, #e8eaeb 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eff1f4', endColorstr='#e8eaeb', GradientType=0);
  /* IE6-9 */
}
header#header #nav #search {
  margin-top: -10px;
  margin-bottom: 24px;
}
header#header #nav #search form#searchform {
  position: relative;
}
header#header #nav #search form#searchform label {
  display: none;
}
header#header #nav #search form#searchform input[type="text"] {
  width: 25%;
  float: right;
  padding-right: 25px;
}
header#header #nav #search form#searchform input[type="image"] {
  position: absolute;
  top: 9px;
  right: 5px;
}
header#header #nav nav#navigation {
  clear: both;
  font-family: "Roboto Slab", serif;
  font-size: 18px;
}
header#header #nav nav#navigation .navbar-nav {
  float: none;
}
header#header #nav nav#navigation ul {
  padding-bottom: 10px;
}
header#header #nav nav#navigation ul li {
  display: inline-block;
  float: none;
  padding: 0 15px;
  border-right: 1px solid #ccc;
  position: relative;
}
header#header #nav nav#navigation ul li a {
  text-transform: uppercase;
  color: #333;
  padding: 0 0 30px 0;
  text-shadow: none;
}
header#header #nav nav#navigation ul li a:hover {
  border-top: 3px solid #6b6aae;
  text-decoration: none;
}
header#header #nav nav#navigation ul li ul {
  display: none;
  position: absolute;
  top: 24px;
  left: -184px;
  z-index: 9999;
  background: #000;
  opacity: 0.9;
  width: 300px;
  padding: 10px;
}
header#header #nav nav#navigation ul li ul li {
  border: 0;
  text-align: right;
  padding-bottom: 8px;
  display: block;
}
header#header #nav nav#navigation ul li ul li a {
  color: #fff;
}
header#header #nav nav#navigation ul li ul li a:hover {
  color: #6b6aae;
  border: 0;
}
header#header #nav nav#navigation ul li ul li.current-menu-item a,
header#header #nav nav#navigation ul li ul li.current-page-parent a {
  color: #6b6aae;
}
header#header #nav nav#navigation ul li ul li:last-child {
  padding-right: 15px;
}
header#header #nav nav#navigation ul li:hover ul {
  display: block;
}
header#header #nav nav#navigation ul li.current-menu-item a,
header#header #nav nav#navigation ul li.current-page-parent a {
  border-top: 3px solid #6b6aae;
  text-decoration: none;
}
header#header #nav nav#navigation ul li:last-child {
  border-right: 0;
  padding-right: 0;
}
header#header #nav nav#navigation ul li.current-menu-item li a,
header#header #nav nav#navigation ul li.current-page-parent li a {
  border-top: 0;
}
header#header #nav ul#menu-primary-1 {
  clear: both;
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  margin: 20px 0 0 0;
}
header#header #nav ul#menu-primary-1 li {
  display: inline-block;
  float: none;
  padding: 0 15px;
  border-right: 1px solid #ccc;
}
header#header #nav ul#menu-primary-1 li a {
  text-transform: uppercase;
  color: #333;
  padding: 0;
  text-shadow: none;
}
header#header #nav ul#menu-primary-1 li a:hover {
  border-bottom: 3px solid #6b6aae;
  text-decoration: none;
}
header#header #nav ul#menu-primary-1 li ul {
  display: none;
}
header#header #nav ul#menu-primary-1 li.current-menu-item a {
  border-bottom: 3px solid #6b6aae;
  text-decoration: none;
}
header#header #nav ul#menu-primary-1 li:last-child {
  border-right: 0;
  padding-right: 0;
}
/* =============================================================================
   Home
   ========================================================================== */
#home #slideshow {
  position: relative;
  width: 100%;
  height: 489px;
  display: block;
}
#home #slideshow .cycle-prev {
  position: absolute;
  left: -40px;
  top: 40%;
  font-size: 50px;
  color: #fff;
  text-shadow: 0 1px 1px #444;
  opacity: 0.8;
}
#home #slideshow .cycle-next {
  position: absolute;
  right: -40px;
  top: 40%;
  font-size: 50px;
  color: #fff;
  text-shadow: 0 1px 1px #444;
  opacity: 0.8;
}
#home #slideshow .cycle-prev:hover,
#home #slideshow .cycle-next:hover {
  opacity: 1;
}
#home #slideshow .cycle-prev:active,
#home #slideshow .cycle-next:active {
  top: 40.3%;
}
#home #slideshow .left-shadow {
  position: absolute;
  top: 0;
  left: -1px;
}
#home #slideshow .right-shadow {
  position: absolute;
  top: 0;
  right: -1px;
}
#home #slideshow div.slide {
  /*background-size: cover !important;*/
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  height: 486px;
  position: relative;
}
#home #slideshow div.slide p.video iframe {
  width: 100%;
  height: 486px;
}
#home #slideshow div.slide p.desc {
  background: #000;
  opacity: 0.9;
  color: #fff;
  font-family: "Roboto Slab", serif;
  font-size: 24px;
  line-height: 30px;
  padding: 10px 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
#home #slideshow div.slide p.desc a {
  font-family: Arial, sans-serif;
  font-size: 21px;
}
#home .widget {
  margin: 40px 0;
}
#home .widget .content {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #ccc;
  border-bottom: 2px solid #ccc;
  padding: 10px 15px;
}
#home .widget .content i {
  font-size: 28px;
  line-height: 32px;
  color: #ff7518;
  display: inline-block;
}
#home .widget .content h4 {
  font-size: 26px;
  line-height: 32px;
  color: #00afef;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
}
#home .widget .content iframe {
  margin: 0 auto !important;
  width: 100%;
}
/* =============================================================================
   Main
   ========================================================================== */
#main {
  background: url(../images/bg-main.jpg) center -20px no-repeat;
}
h1.page-title {
  font-family: "Roboto Slab", serif;
  font-size: 40px;
  font-weight: 700;
  margin: 20px 0;
}
article h1.page-title {
  font-family: "Roboto Slab", serif;
  font-size: 40px;
  font-weight: 700;
  margin: 20px 0;
}
article .entry-content {
  position: relative;
  padding: 20px;
  background: #fafafa;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fafafa 0%, #f0f0f0 45%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fafafa), color-stop(45%, #f0f0f0));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fafafa 0%, #f0f0f0 45%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fafafa 0%, #f0f0f0 45%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fafafa 0%, #f0f0f0 45%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fafafa 0%, #f0f0f0 45%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa', endColorstr='#f0f0f0', GradientType=0);
  /* IE6-9 */
}
article .entry-content img.program-logo {
  position: absolute;
  top: -80px;
  right: 15px;
}
article .entry-content .col-md-9 img.program-logo {
  position: absolute;
  top: -100px;
  right: -280px;
}
article .entry-content img.aligncenter,
article .entry-content img.alignleft,
article .entry-content img.alignright {
  border: 2px solid #ccc;
}
article img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */
}
article ul,
article ol {
  margin-left: 40px;
  margin-top: -8px;
}
article .stats h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
article .stats p {
  font-size: 17px;
  line-height: 22px;
  font-weight: 700;
  text-align: center;
}
article .panel-group .panel-default {
  border: 1px solid #00afef;
}
article .panel-group .panel-default .panel-heading {
  border-radius: 0;
  background: #00afef;
  /* Old browsers */
  background: -moz-linear-gradient(top, #00afef 0%, #20bcf7 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #00afef), color-stop(100%, #20bcf7));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #00afef 0%, #20bcf7 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #00afef 0%, #20bcf7 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #00afef 0%, #20bcf7 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #00afef 0%, #20bcf7 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00afef', endColorstr='#20bcf7', GradientType=0);
  /* IE6-9 */
  border: 0;
}
article .panel-group .panel-default .panel-heading h4 {
  font-size: 18px;
  padding: 0;
  margin: 0;
  color: #fff;
  text-shadow: 0 1px 1px #555;
}
article .panel-group .panel-default ul {
  margin-top: 0;
}
article #sidebar .widget {
  margin-bottom: 20px;
}
article #sidebar .widget h4 {
  border-top: 3px solid #6b6aae;
  padding-top: 5px;
  margin-bottom: 10px;
}
article #sidebar .widget p,
article #sidebar .widget ul li,
article #sidebar .widget ol li {
  font-size: 14px;
}
article #sidebar .widget ul,
article #sidebar .widget ol {
  margin-bottom: -10px;
  margin-left: 15px;
}
/* =============================================================================
   Footer
   ========================================================================== */
footer#footer {
  background: #59596c;
  border-top: 1px solid #464660;
  padding: 30px 0 20px 0;
  font-size: 14px;
  color: #fff;
}
footer#footer a {
  color: #fff;
  text-decoration: underline;
}
footer#footer img {
  margin-bottom: 10px;
}
/* =============================================================================
   Media Queries
   ========================================================================== */
/* Tablets (portrait) ----------- */
@media only screen and (max-width: 1180px) {
  ul#menu-primary {
    font-size: 16px !important;
  }
  ul#menu-primary li {
    padding: 0 7px 0 7px !important;
  }
  .col-md-9 img.program-logo {
    right: -200px !important;
  }
}
/* Tablets (portrait) ----------- */
@media only screen and (max-width: 979px) {
  header#header #nav #search form input[type="text"] {
    width: 40%;
  }
  header#header ul#menu-primary {
    font-size: 16px !important;
  }
  header#header ul#menu-primary li {
    padding: 0 7px 0 7px !important;
  }
  ul#menu-primary-1 {
    font-size: 16px !important;
  }
  ul#menu-primary-1 li {
    padding: 0 7px 0 7px !important;
  }
  .col-md-9 img.program-logo {
    right: -40px !important;
  }
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 767px) {
  .social-icons {
    text-align: left !important;
  }
  .cycle-prev,
  .cycle-next,
  .left-shadow,
  .right-shadow {
    display: none;
  }
  ul#menu-primary-1 {
    font-size: 16px !important;
  }
  ul#menu-primary-1 li {
    padding: 0 7px 0 7px !important;
  }
  img.program-logo {
    display: none !important;
  }
}
@media only screen and (max-width: 550px) {
  header#header #nav #search {
    margin-bottom: 5px !important;
  }
  ul#menu-primary-1,
  ul#menu-primary {
    font-size: 16px !important;
  }
  ul#menu-primary-1 li:hover ul,
  ul#menu-primary li:hover ul {
    display: none !important;
  }
}
@media only screen and (max-width: 480px) {
  header#header #nav #search {
    margin-bottom: 5px !important;
  }
  header#header #nav #search form input[type="text"] {
    width: 100%;
  }
  ul#menu-primary-1 {
    font-size: 13px !important;
  }
  ul#menu-primary-1 li {
    padding: 0 7px 10px 7px !important;
  }
}
@media only screen and (max-width: 340px) {
  header#header #nav #search {
    margin-bottom: 5px !important;
  }
  ul#menu-primary-1 {
    font-size: 12px !important;
  }
  ul#menu-primary-1 li {
    padding: 0 7px 10px 7px !important;
  }
}
/* =============================================================================
   Non-Semantic Helper Classes
   ========================================================================== */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}
.ir br {
  display: none;
}
.hidden {
  display: none !important;
  visibility: hidden;
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.invisible {
  visibility: hidden;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/* =============================================================================
   Print Styles
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  /* Black prints faster: h5bp.com/s */
  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: "";
  }
  /* Don't show links for images, or javascript/internal links */
  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;
  }
  #meta-nav,
  header.header,
  #left-col {
    display: none;
  }
  #sub-container {
    border: none;
  }
  article {
    width: 900px;
  }
}
