/*
 * University of Houston
 * Responsive Style Sheet
 * Created Fall 2012 by the UH Marketing & Communications Web Team
 * 
 * Based on the following:
 * -----------------------
 * HTML5 Boilerplate (http://html5boilerplate.com/)
 * Normalize (http://necolas.github.com/normalize.css/)
 * Twitter Bootstrap (http://twitter.github.com/bootstrap/)
 * 
 * Table of Contents:
 * ------------------
 * UH Bootstrap
 * Responsive Grid
 * Chrome Frame Prompt
 * Base
 * Links
 * Typography
 * Lists
 * Embedded Content
 * Grid
 * Header
 * Primary Navigation
 * UH Home Navigation
 * Left Navigation
 * Breadcrumbs
 * Footer
 * Content Wrapper
 * Primary Content
 * Sidebar
 * Articles
 * Cascade Server WYSIWYG Generated Classes
 * Home Page
 * Home Page Emergency
 * Home Page Feature
 * Gallery
 * Small Feature
 * Modules
 * News Module
 * Events Module
 * Twitter Module
 * SPIFF Module
 * Links List
 * Page-Specific Styles
 * Media Queries
 * Non-Semantic Helper Classes
 * Internet Explorer Styles
 * Print Styles
 * 
 */


/* ========================================================================
   UH Bootstrap (includes normalize.css)
   ======================================================================== */

@import url('bootstrap.css');


/* ========================================================================
   Responsive Grid and other goodies
   ======================================================================== */

/*@import url('bootstrap-responsive.css');*/

.container-fluid {
    margin: 0 2.4389%;
}

/* fixed stuff in the fluid grid */

header[role="banner"] .logo a,
footer .bottom-bar .copyright {
    width: 456px;
}

header[role="banner"] button {
    float: right !important;
}

/* Comment this out for full maximum potential */
@media (min-width: 984px) { .container-fluid { margin: 0 auto; max-width: 936px; } }

.boxsizing select,
/*.boxsizing textarea,*/
.boxsizing input[type="text"],
.boxsizing input[type="password"],
.boxsizing input[type="datetime"],
.boxsizing input[type="datetime-local"],
.boxsizing input[type="date"],
.boxsizing input[type="month"],
.boxsizing input[type="time"],
.boxsizing input[type="week"],
.boxsizing input[type="number"],
.boxsizing input[type="email"],
.boxsizing input[type="url"],
.boxsizing input[type="search"],
.boxsizing input[type="tel"],
.boxsizing input[type="color"],
.boxsizing .uneditable-input {
    height: 36px;
}

.boxsizing select[multiple],
.boxsizing select[size] {
    height: auto;
}

.boxsizing input[type="text"],
.boxsizing textarea,
.boxsizing .uneditable-input {
    width: 216px;
}

.boxsizing input.span12,
.boxsizing textarea.span12,
.boxsizing .uneditable-input.span12 {
    width: 934px;
}

.boxsizing input.span11,
.boxsizing textarea.span11,
.boxsizing .uneditable-input.span11 {
    width: 854px;
}

.boxsizing input.span10,
.boxsizing textarea.span10,
.boxsizing .uneditable-input.span10 {
    width: 774px;
}

.boxsizing input.span9,
.boxsizing textarea.span9,
.boxsizing .uneditable-input.span9 {
    width: 694px;
}

.boxsizing input.span8,
.boxsizing textarea.span8,
.boxsizing .uneditable-input.span8 {
    width: 614px;
}

.boxsizing input.span7,
.boxsizing textarea.span7,
.boxsizing .uneditable-input.span7 {
    width: 534px;
}

.boxsizing input.span6,
.boxsizing textarea.span6,
.boxsizing .uneditable-input.span6 {
    width: 454px;
}

.boxsizing input.span5,
.boxsizing textarea.span5,
.boxsizing .uneditable-input.span5 {
    width: 374px;
}

.boxsizing input.span4,
.boxsizing textarea.span4,
.boxsizing .uneditable-input.span4 {
    width: 294px;
}

.boxsizing input.span3,
.boxsizing textarea.span3,
.boxsizing .uneditable-input.span3 {
    width: 214px;
}

.boxsizing input.span2,
.boxsizing textarea.span2,
.boxsizing .uneditable-input.span2 {
    width: 134px;
}

.boxsizing input.span1,
.boxsizing textarea.span1,
.boxsizing .uneditable-input.span1 {
    width: 54px;
}

.boxsizing .btn,
.boxsizing input[type="submit"] {
    padding: 5px 14px;
}


/* ========================================================================
   Chrome Frame Prompt
   ======================================================================== */

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


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

/* 
 * Apply a natural box layout model to all elements:
 * http://paulirish.com/2012/box-sizing-border-box-ftw/ 
 */

* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
        -ms-box-sizing: border-box;
}

/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 * 2. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 */

html {
    background: white url('/css/backgrounds/topbar-bg.png');
    font-size: 100%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
    color: #333;
    font-family: sans-serif;
}

html,
body {
    overflow-x: hidden;
}

body {
    background: white url('/css/backgrounds/body-bg.png');
    font-size: 15px;
    line-height: 21px;
    margin: 0;
}

.red {
    color: #c00;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate.
 */

::-moz-selection {
    background: #c00;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #c00;
    color: #fff;
    text-shadow: none;
}


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

a {
    color: #c00;
    font-weight: inherit;
}

a:visited {
    color: #c00;
}

a:hover {
    color: #c00;
}

a:focus {
    outline: thin dotted;
}

/*
 * Improve readability when focused and hovered in all browsers: h5bp.com/h
 */

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


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

/* Generated by Font Squirrel (http://www.fontsquirrel.com) on August 20, 2012 */

@font-face {
    font-family: 'TeXGyreAdventor';
    font-style: normal;
    font-weight: normal;
    src: url('https://uh.edu/css/webfonts/texgyreadventor-regular-webfont.eot');
    src: url('https://uh.edu/css/webfonts/texgyreadventor-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('https://uh.edu/css/webfonts/texgyreadventor-regular-webfont.woff') format('woff'),
         url('https://uh.edu/css/webfonts/texgyreadventor-regular-webfont.ttf') format('truetype'),
         url('https://uh.edu/css/webfonts/texgyreadventor-regular-webfont.svg#TeXGyreAdventor') format('svg');
}

@font-face {
    font-family: 'TexGyreAdventor';
    font-style: normal;
    font-weight: bold;
    src: url('https://uh.edu/css/webfonts/texgyreadventor-bold-webfont.eot');
    src: url('https://uh.edu/css/webfonts/texgyreadventor-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('https://uh.edu/css/webfonts/texgyreadventor-bold-webfont.woff') format('woff'),
         url('https://uh.edu/css/webfonts/texgyreadventor-bold-webfont.ttf') format('truetype'),
         url('https://uh.edu/css/webfonts/texgyreadventor-bold-webfont.svg#texgyreadventorbold') format('svg');
}

@font-face {
    font-family: 'Pictos';
    font-style: normal;
    font-weight: normal;
    src: url('https://uh.edu/css/webfonts/pictos-web.eot');
    src: url('https://uh.edu/css/webfonts/pictos-web.eot?#iefix') format('embedded-opentype'),
         url('https://uh.edu/css/webfonts/pictos-web.woff') format('woff'),
         url('https://uh.edu/css/webfonts/pictos-web.ttf') format('truetype'),
         url('https://uh.edu/css/webfonts/pictos-web.svg#Pictos') format('svg');
}

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

b,
strong,
b a,
strong a {
    font-weight: bold;
}

blockquote {
    /* margin: 1em 40px; */
}

dfn {
    font-style: italic;
}

hr {
   /* border: 0; */
   /* border-top: 1px dashed #999; */
   /* display: block; */
   /* height: 1px; */
   /* margin: 24px 0; */
   /* padding: 0; */
}

ins {
    background: #ff9;
    color: #000;
    text-decoration: none;
}

mark {
    background: #ff0;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

p {
    line-height: 24px;
    margin-top: 6px;
}

/*
 * Redeclare monospace font family: h5bp.com/j
 */

pre,
code,
kbd,
samp {
    font-family: monospace, serif;
    /* font-size: 1em; */
    _font-family: 'courier new', monospace;
}

/*
 * Improve readability of pre-formatted text
 */

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

q {
    quotes: none;
}

q:before,
q:after {
    content: "";
    content: none;
}

/* small {
    font-size: 85%; */

/*
 * Position subscript and superscript content without affecting line-height: h5bp.com/k
 */

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

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
    /* font-family: 'TexGyreAdventor', sans-serif; */
    /* font-weight: bold; */
    /* margin-top: 12px; */
    /* text-transform: none; */
}

/* h1 + *,
h2 + *,
h3 + *,
h4 + *,
h5 + * {
    margin-top: 18px; */

/* * + h1,
* + h2,
* + h3,
* + h4,
* + h5 {
    margin-top: 24px; */

h1 {
    color: #333;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 0 19px;
    /* text-transform: uppercase; */
}


/* ========================================================================
   Lists
   ======================================================================== */

ul,
ol {
    margin: 0 0 12px;
    padding: 0 0 0 24px;
}

ul ul,
ol ol,
ol ul,
ul ol {
    margin: 0;
}

dt {
    font-weight: bold;
}

dd + dt {
    margin-top: 18px;
}

dd {
    margin: 0;
}

nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
    margin: 0;
    padding: 0;
}

li {
    margin-bottom: 9px;
}


/* ========================================================================
   Embedded Content
   ======================================================================== */

/*
 * 1. Improve image quality when scaled in IE7: h5bp.com/d
 * 2. Remove the gap between images and borders on image containers: h5bp.com/i/440
 */

img {
    border: 0;
    height: auto;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

/*
 * Correct overflow not hidden in IE9
 */

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

iframe,
object {
    /* height: auto; */ /* commented out because of http://www.coe.uh.edu/directory/department-listing */
    margin: 0 0 18px;
    max-width: 100%;
}

iframe.youtube {
    margin-top:    12px;
    margin-bottom: 12px;
}


/* ========================================================================
   Grid
   Based on 960 Grid System - http://960.gs/
   ======================================================================== */

body {
    /* min-width: 984px; */
}

.container {
    clear: both;
    margin-right: auto;
    margin-left: auto;
    width: 936px;
    *zoom: 1;
}

.container:before,
.container:after {
    content: "";
    display: table;
}

.container:after {
    clear: both;
}


/* ========================================================================
   Header
   ======================================================================== */

header[role="banner"] {
    background: white url('/css/backgrounds/body-bg.png') repeat;
    clear: both;
    *zoom: 1;
}

header[role="banner"]:before,
header[role="banner"]:after {
    content: "";
    display: table;
}

header[role="banner"]:after {
    clear: both;
}

.lt-ie8 header[role="banner"] {
    padding-bottom: 24px;
}

.lt-ie8 header.no-primary {
    padding-bottom: 0;
}

header[role="banner"] h1 {
    display: block;
    height: 48px;
    line-height: 48px;
    margin: 0;
    padding-bottom: 0;
    text-transform: none;
}

header[role="banner"] .logo {
    clear: both;
    padding: 36px 0;
    *zoom: 1;
}

header[role="banner"] .logo:before,
header[role="banner"] .logo:after {
    content: "";
    display: table;
}

header[role="banner"] .logo:after {
    clear: both;
}

header[role="banner"] .logo a {
    /* display: inline; */
    /* float: left; */
    height: 48px;
    /* margin-right: 12px; */
    /* margin-left: 12px; */
    /* width: 456px; */
}

header[role="banner"] .logo a img {
    width: 456px;
}

header[role="banner"] .logo.college-logo a,
header[role="banner"] .logo.college-logo a img {
    max-width: 100%;
    width: auto;
}

.no-inlinesvg header[role="banner"] .logo a img {
    visibility: hidden;
}

.no-inlinesvg header[role="banner"] .logo a {
    background: transparent url('/css/backgrounds/logo1x.png') no-repeat 0 10px;
}

.no-inlinesvg header[role="banner"] .college-logo a img {
    visibility: visible;
}

.no-inlinesvg header[role="banner"] .college-logo a {
    background: none;
}

header[role="banner"] button {
    color: #fff;
    display: inline;
    /* float: left; */
    font-family: 'TexGyreAdventor', sans-serif;
    font-size: 15px;
    font-weight: normal;
    height: 48px;
    /* left: 264px; */
    line-height: 24px;
    /* margin: 0; */
    margin-top: 0;
    margin-bottom: 0;
    overflow: visible;
    position: relative;
    /* width: 216px; */
}

header[role="banner"] button:hover span,
.gateway header[role="banner"] button span {
    /* bottom: -21px; */
    color: #333;
    display: block !important;
    font-size: 12px;
    left: 0;
    line-height: 12px;
    position: absolute;
    text-align: center;
    text-shadow: none;
    top: 53px;
    width: 100%;
}

header[role="banner"] a {
    text-decoration: none;
}

header[role="banner"] li {
    display: inline;
}

.top-bar {
    background: #333 url('/css/backgrounds/topbar-bg.png');
    clear: both;
    color: #ddd;
    font-family: 'TexGyreAdventor', sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;
    text-shadow: 0 1px black;
    -webkit-box-shadow: 0 12px 0 rgba(0,0,0,0.05);
       -moz-box-shadow: 0 12px 0 rgba(0,0,0,0.05);
            box-shadow: 0 12px 0 rgba(0,0,0,0.05);
    *zoom: 1;
}

.top-bar * {
    line-height: 18px;
}

header.no-primary .top-bar {
    position: relative;
    z-index: 999;
}

.top-bar:before,
.top-bar:after {
    content: "";
    display: table;
}

.top-bar:after {
    clear: both;
}

.lt-ie9 .top-bar {
    position: relative;
    box-shadow: 0 12px 0 #f2f2f2;
    /* behavior: url('/css/htc/PIE.php'); */ /* Breaks print in IE, looking into solution -Rainer */
}

.top-bar nav > ul {
    display: inline;
    float: left;
    margin: 9px 0;
    width: 696px;
}

.top-bar nav > ul > li {
    margin-left: 24px;
}

.top-bar nav > ul > li:first-of-type {
    margin-left: 0;
    text-shadow:;
}
/* IE */
.top-bar nav > ul > li.jquery {
    margin-left: 0;
    text-shadow:;
}

.top-bar nav > ul > li > a {
    color: #ddd;
    position: relative;
}

.top-bar nav > ul > li > a:hover {
    border-bottom: 1px dotted #ddd;
    color: #fff;
    padding: 1px 0;
}

.top-bar .search {
    background: none;
    /* display: inline; */
    /* float: left; */
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    /* width: 216px; */
}

.top-bar .search input[type="text"] {
    background: #fff url('/css/backgrounds/noise.png');
    background: rgba(255,255,255,0.95) url('/css/backgrounds/noise.png');
    border: none;
    color: #333;
    font-family: 'TexGyreAdventor', sans-serif;
    font-size: 14px;
    font-weight: normal;
    height: 30px;
    margin: 3px 0;
    padding: 0 30px 0 12px;
    text-shadow: 0 0 1px #ddd;
    width: 100%;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    -webkit-box-shadow: inset 1px 1px 3px rgba(0,0,0,0.25);
       -moz-box-shadow: inset 1px 1px 3px rgba(0,0,0,0.25);
            box-shadow: inset 1px 1px 3px rgba(0,0,0,0.25);
}

.lt-ie9 .top-bar .search input[type="text"] {
    line-height: 30px;
    position: relative;
    /* behavior: url('/css/htc/PIE.php'); */ /* Breaks print in IE, looking into solution -Rainer */
}

.no-boxsizing .top-bar .search input[type="text"] {
    width: 192px;    
}

.top-bar .search ::-webkit-input-placeholder {
   color: #333;
}

.top-bar .search :-moz-placeholder {
   color: #333;
}

.top-bar .search input[type="submit"] {
    background: #c00 url('/css/backgrounds/search.svg');
    border: 1px solid #b00;
    border: 1px solid rgba(0,0,0,0.125);
    color: transparent !important;
    font: 0/0 a;
    height: 26px;
    padding: 0;
    position: absolute;
    right: 2px;
    text-shadow: none;
    top: 5px;
    width: 26px;
    -webkit-border-radius: 2px;
       -moz-border-radius: 2px;
            border-radius: 2px;
}

.lt-ie9 .top-bar .search fieldset {
    position: relative;
}

.lt-ie9 .top-bar .search input[type="submit"] {
    /* behavior: url('/css/htc/PIE.php'); */ /* Breaks print in IE, looking into solution -Rainer */
}

.inlinesvg .top-bar .search input[type="submit"] {
    background: #c00 url('/css/backgrounds/search.svg') no-repeat;
}

.no-inlinesvg .top-bar .search input[type="submit"] {
    background: #c00 url('/css/backgrounds/search.png') no-repeat;
}

.lt-ie8 .top-bar .search input[type="submit"] {
    text-indent: -9999em;
    top: 6px;
}


/* ========================================================================
   Primary Navigation
   ======================================================================== */

.nav-primary {
    background-color: #c00;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#df0215), to(#ae010d));
    background-image: -webkit-linear-gradient(top, #df0215, #ae010d);
    background-image:    -moz-linear-gradient(top, #df0215, #ae010d);
    background-image:     -ms-linear-gradient(top, #df0215, #ae010d);
    background-image:      -o-linear-gradient(top, #df0215, #ae010d);
    background-image:         linear-gradient(top, #df0215, #ae010d);
    background-repeat: repeat-x;
    border-color: #a0010b;
    border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
    color: #fff;
    /* display: inline; */
    /* float: left; */
    font-family: 'TexGyreAdventor', sans-serif;
    font-size: 15px;
    font-weight: normal;
    height: 36px;
    line-height: 36px;
    margin-top: 0;
    /* margin-right: 12px; */
    margin-bottom: 24px;
    /* margin-bottom: 24px; */
    /* margin-left: 12px; */
    /* min-height: 36px; */
    overflow: visible;
    /* width: 936px; */
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.25), inset 0 -1px 0 rgba(0,0,0,0.1);
       -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.25), inset 0 -1px 0 rgba(0,0,0,0.1);
            box-shadow: 0 1px 3px rgba(0,0,0,0.25), inset 0 -1px 0 rgba(0,0,0,0.1);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#df0215', endColorstr='#ae010d', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    *position: relative;
    *z-index: 2;
}

.lt-ie9 .nav-primary {
    position: relative;
    box-shadow: 0 1px 3px #bfbfbf;
    /* behavior: url('/css/htc/PIE.php'); */ /* Breaks print in IE, looking into solution -Rainer */
}

.nav-primary .parents {
    display: block;
    left: 0;
    margin: 0;
    position: relative;
    width: 960px; /* This is wider than the parent container so that if the last menu item is too long, it'll still display inline but the overflow will be hidden */
}

.nav-primary li,
.apply-now li {
    position: relative;
}

.nav-primary .parents > li {
    border-right: 1px solid #ae010d;
    border-left: 1px solid #df0215;
    display: block;
    float: left;
    line-height: 36px;
    margin: 0;
    -webkit-transition: all 0.1s linear;
       -moz-transition: all 0.1s linear;
        -ms-transition: all 0.1s linear;
         -o-transition: all 0.1s linear;
            transition: all 0.1s linear;
}

.apply-now .parents > li {
    width: 214px;
}

.nav-primary .parents > li:hover {
    background-color: #ae010d;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#df0215), to(#ae010d));
    background-image: -webkit-linear-gradient(top, #df0215, #ae010d);
    background-image:    -moz-linear-gradient(top, #df0215, #ae010d);
    background-image:     -ms-linear-gradient(top, #df0215, #ae010d);
    background-image:      -o-linear-gradient(top, #df0215, #ae010d);
    background-image:         linear-gradient(top, #df0215, #ae010d);
    background-position: 0 -15px;
    background-repeat: repeat-x;
    border-left: 1px solid transparent;
    color: #333;
    text-decoration: none;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#df0215', endColorstr='#ae010d', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}

.nav-primary .parents > li:first-of-type {
    border-left: none;
    -webkit-border-radius: 3px 0 0 3px;
       -moz-border-radius: 3px 0 0 3px;
            border-radius: 3px 0 0 3px;
}

.lt-ie9 .nav-primary .parents > li:first-of-type {
    position: relative;
    /* behavior: url('/css/htc/PIE.php'); */ /* Breaks print in IE, looking into solution -Rainer */
}

.nav-primary .parents > li:last-of-type {
    border-right: 1px solid transparent;
}

.nav-primary .parents > li:last-of-type:hover {
    border-right: 1px solid #ae010d;
}

.nav-primary .parents > li > a {
    color: #fff;
    float: none;
    line-height: 36px;
    padding: 0 11px 0 11px;
    text-decoration: none;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
}

@media (min-width: 984px) {
    .nav-primary .parents > li:first-of-type > a {
        padding-left: 12px;
    }
}

.nav-primary .parents > li > a:hover {
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
}

.nav-primary .children,
.apply-now .children,
.uh-home-nav .children {
    background-color: #fff;
    left: -999em;
    position: absolute;
    top: 36px;
    width: 216px;
    z-index: 99;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
       -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
            box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.apply-now .children {
    top: 33px;
}

.apply-now .children {
    width: 216px;
}

.lt-ie9 .nav-primary .children,
.lt-ie9 .apply-now .children,
.lt-ie9 .uh-home-nav .children {
    border: 1px solid #ccc;
    width: 218px;
    box-shadow: 0 1px 3px #7f7f7f;
    /* behavior: url('/css/htc/PIE.php'); */ /* Breaks print in IE, looking into solution -Rainer */
}

.lt-ie8 .nav-primary .children,
.lt-ie8 .apply-now .children,
.lt-ie8 .uh-home-nav .children {
    margin: 0;
    padding: 0;
    width: 216px;
}

.nav-primary .children li,
.apply-now .children li,
.uh-home-nav .children li {
    display: block;
    float: none;
    line-height: 21px;
    margin: 0;
    padding: 0;
    width: 216px;
}

.lt-ie8 .nav-primary .children li,
.lt-ie8 .apply-now .children li,
.lt-ie8 .uh-home-nav .children li {
    border: 0;
    margin: 0;
    padding: 0;
}

.nav-primary .children a,
.apply-now .children a,
.uh-home-nav .children a {
    color: #333;
    display: block;
    float: none;
    font-family: sans-serif;
    line-height: 21px;
    padding: 6px 24px 6px 12px;
    text-decoration: none;
}

.nav-primary .grandchildren,
.uh-home-nav .grandchildren {
    margin-left: 216px;
    top: 0;
}

.nav-primary li:hover .children,
.nav-primary li a:focus + .children,
.apply-now li:hover .children,
.apply-now li a:focus + .children,
.uh-home-nav li:hover .children,
.uh-home-nav li a:focus .children {
    left: 0;
}

.lt-ie8 .nav-primary .parents > li:first-of-type:hover .children,
.lt-ie8 .nav-primary .parents > li:first-of-type a:focus .children {
    left: 1px;
}

.nav-primary li:hover .grandchildren,
.nav-primary li:focus .grandchildren,
.uh-home-nav li:hover .grandchildren,
.uh-home-nav li:focus .grandchildren {
    left: -999em;
}

.nav-primary .children li:hover .grandchildren,
.nav-primary .children li:focus .grandchildren,
.uh-home-nav .children li:hover .grandchildren,
.uh-home-nav .children li:focus .grandchildren {
    left: 0;
}

.lt-ie8 .nav-primary .children li:hover .grandchildren,
.lt-ie8 .nav-primary .children li:focus .grandchildren,
.lt-ie8 .uh-home-nav .children li:hover .grandchildren,
.lt-ie8 .uh-home-nav .children li:focus .grandchildren {
    margin-top: 0;
    margin-left: 216px;
}

.nav-primary li:hover .children li:hover,
.apply-now .children li:hover,
.uh-home-nav .children li:hover {
    background-color: #eee;
}

.lt-ie9 .nav-primary li:hover .children li:hover,
.lt-ie9 .apply-now .children li:hover,
.lt-ie9 .uh-home-nav .children li:hover {
    
}

.nav-primary .parents > li:last-of-type:hover .children,
.nav-primary .parents > li:last-of-type:focus .children {
    left: auto;
    right: 0px;
}
/* IE */
.nav-primary .parents > li.jquery:hover .children,
.nav-primary .parents > li.jquery:focus .children {
    left: auto;
    right: 0px;
}

.caret {
    border-top: 4px solid #fff;
    border-right: 4px solid transparent;
    border-bottom: none;
    border-left: 4px solid transparent;
    content: "";
    display: inline-block;
    height: 0;
    margin-top: 16px;
    margin-right: -1px;
    margin-left: 7px;
    opacity: 0.5;
    vertical-align: top;
    width: 0; filter: alpha(opacity=50);
}

.lt-ie8 .caret {
    margin-top: 7px;
}

li:hover .caret {
    opacity: 1; filter: alpha(opacity=100);
}

.children .caret {
    border-top: 4px solid transparent;
    border-right: none;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #333;
    position: absolute;
    right: 12px;
    top: -4px;
}

.lt-ie8 .children .caret {
    top: 3px;
}


/* ========================================================================
   UH Home Navigation
   ======================================================================== */

header a.uh-home {
    border: none !important;
    font-family: 'TexGyreAdventor', sans-serif;
    font-size: 14px;
    font-weight: bold;
    height: 36px;
    margin-right: -12px;
    margin-bottom: -22px;
    padding: 8px 12px;
    position: relative;
    top: -12px;
    -webkit-border-radius: 0px;
       -moz-border-radius: 0px;
            border-radius: 0px;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
}

.lt-ie8 header a.uh-home {
    height: 20px;
    padding: 8px 12px 11px !important;
}

header a.uh-home:hover {
    border: none !important;
    padding: 8px 12px !important;
}

.lt-ie9 header a.uh-home:hover {

}

.lt-ie8 header a.uh-home:hover {
    padding: 8px 12px 11px !important;
}

header a.uh-home .caret {
    margin: 7px 0 0 4px;
}

header a.uh-home:hover .caret {
    opacity: 1;
}

header .uh-home-nav {
    background: white;
    display: none;
    font-family: sans-serif;
    font-size: 15px;
    line-height: 21px;
    position: absolute;
    top: 36px;
    width: 216px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
       -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
            box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.lt-ie9 header .uh-home-nav {
    border: 1px solid #ccc;
    width: 218px;
}

.lt-ie8 header .uh-home-nav {
    margin-top: 1px;
    margin-left: -100px;
    padding: 0;
}

header a:hover + .uh-home-nav,
header .uh-home-nav:hover {
    display: block;
}

header .uh-home-nav a,
header .uh-home-nav a:visited,
header .uh-home-nav a:hover {
    border-bottom: none;
    color: #333;
    display: block;
    font-size: 15px;
    line-height: 21px;
    padding: 6px 24px 6px 12px;
    text-shadow: none;
}

header .uh-home-nav li {
    display: block;
    padding: 0;
    position: relative;
}

.lt-ie8 header .uh-home-nav li {
    border: 0;
    margin: 0;
    padding: 0;
}

header .uh-home-nav li:hover {
    background: #eee;
}

header .uh-home-nav .caret {
    border-top: 4px solid transparent;
    border-right: none;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #333;
    margin-top: 10px;
    position: absolute;
    right: 12px;
    top: 1px;
}

header .uh-home-nav .children {
    margin-left: 216px;
    top: -1px;
}

.lt-ie8 header .uh-home-nav .children {
    margin-top: -2px;
    margin-left: 218px;
}

.lt-ie8 header .uh-home-nav .grandchildren {
    margin-top: 0px;
    margin-left: 216px;
}


/* ========================================================================
   Secondary Navigation
   ======================================================================== */

.nav-secondary {
    margin-top: 6px;
}

.related-links {
    margin-top: 24px;
}

.site-title,
.related-links h4 {
    font-size: 16px;
    line-height: 21px;
    margin: 0;
    padding: 7px 0;
}

.site-title a,
.related-links h4 a {
    color: #333;
}

.nav-secondary nav,
.related-links {
    margin-bottom: 36px;
}

.related-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-secondary li,
.related-links li {
    border-top: 1px solid #ccc;
    margin: 0;
    padding: 0;
}

.nav-secondary li a,
.related-links li a {
    display: block;
    line-height: 21px;
    padding: 7px 6px 7px 0;
}

.nav-secondary nav > ul > li:first-child {
    border-top-color: #999;
}

.nav-secondary nav > ul > li:last-child,
.related-links ul > li:last-child {
    border-bottom: 1px solid #ccc;
}

.nav-secondary .selected ul,
.nav-secondary .opened ul {
    border-top: 1px solid #ccc;
    padding-left: 12px;
}

.nav-secondary .selected a,
.nav-secondary .opened a {
    background: #f2f2f2;
    padding-left: 12px;
}

.nav-secondary .selected > a {
    background: #c00;
    color: white;
}

.nav-secondary .opened > a {
    background: #E6E6E6;
}

.nav-secondary .selected li:first-child,
.nav-secondary .opened li:first-child {
    border-top: none;
}

.nav-secondary .contact h4 {
    line-height: 21px;
    margin: 0;
}

.nav-secondary .contact p,
.nav-secondary .contact address {
    line-height: 21px;
    margin-top: 0;
}

.nav-secondary .social-media {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
}

.nav-secondary .social-media li {
    border: none;
    display: block;
    float: left;
    margin-right: 12px;
    margin-bottom: 12px;
}

.nav-secondary .social-media li a {
    background: #ccc;
    display: block;
    height: 32px;
    width: 32px;
    border-radius: 3px;
}


/* ========================================================================
   Social Media icons
   ======================================================================== */

.social-media .ir.email {
    background: transparent url('https://uh.edu/images/social/email.png') no-repeat;
}

.social-media .ir.twitter {
    background: transparent url('https://uh.edu/images/social/twitter-2.png') no-repeat;
}

.social-media .ir.facebook {
    background: transparent url('https://uh.edu/images/social/facebook.png') no-repeat;
}

.social-media .ir.youtube {
    background: transparent url('https://uh.edu/images/social/youtube.png') no-repeat;
}

.social-media .ir.google-plus {
    background: transparent url('https://uh.edu/images/social/google-plus.png') no-repeat;
}

.social-media .ir.instagram {
    background: transparent url('https://uh.edu/images/social/instagram-new.png') no-repeat;
}


/* ========================================================================
   Breadcrumbs
   ======================================================================== */

.breadcrumbs {
    color: #999;
    font-size: 12px;
    margin-bottom: 24px;
}

.breadcrumbs a {
    color: #c00;
    margin: 0 5px;
    text-decoration: none;
}

.breadcrumbs a:first-child {
    margin-left: 0;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
    border-bottom: 1px dotted #c00;
    color: #c00;
}

.breadcrumbs a:active {
    color: #333;
}

.breadcrumbs strong {
    color: #333;
    font-weight: bold;
    margin-left: 5px;
}   


/* ========================================================================
   Footer
   ======================================================================== */

footer[role="contentinfo"] {
    background: #c00 url('/css/backgrounds/footer-bg.png') repeat-x center bottom;
    clear: both;
    /* margin-top: 24px; */
    -webkit-box-shadow: 0 -12px 0 rgba(0,0,0,0.05);
       -moz-box-shadow: 0 -12px 0 rgba(0,0,0,0.05);
            box-shadow: 0 -12px 0 rgba(0,0,0,0.05);
    *zoom: 1;
}

footer[role="contentinfo"]:before,
footer[role="contentinfo"]:after {
    content: "";
    display: table;
}

footer[role="contentinfo"]:after {
    clear: both;
}

.lt-ie9 footer[role="contentinfo"] {
    position: relative;
    /* behavior: url('/css/htc/PIE.php'); */ /* Breaks print in IE, looking into solution -Rainer */
}

.lt-ie8 footer[role="contentinfo"] .container {
    padding-bottom: 36px;
}

.lt-ie8 footer[role="contentinfo"] .bottom-bar .container {
    padding-bottom: 0;
}

footer[role="contentinfo"] .footer-links figure,
footer[role="contentinfo"] .footer-links dl {
    /* display: inline; */
    /* float: left; */
    margin-top: 0;
    /* margin-right: 12px; */
    margin-right: 0;
    margin-bottom: 0;
    /* margin-left: 12px; */
    /* width: 216px; */
}

footer[role="contentinfo"] .footer-links figure a,
footer[role="contentinfo"] .footer-links figure a:hover {
    border: none;
}

footer[role="contentinfo"] .footer-links figure img {
    margin-top: 52px;
    width: 145px;
}

footer[role="contentinfo"] .footer-links dl {
    line-height: 24px;
    /* margin-top: 36px; */
    margin-top: 36px;
    /* margin-bottom: 36px; */
    margin-bottom: 36px;
}

footer[role="contentinfo"] .footer-links dt {
    color: #fff;
    font-family: 'TexGyreAdventor', sans-serif;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 2px;
}

footer[role="contentinfo"] .footer-links dd {
    color: #fff;
    display: block;
    margin: 0;
}

footer[role="contentinfo"] .footer-links a {
    font-size: 15px;
    line-height: 24px;
}

footer[role="contentinfo"] a,
footer[role="contentinfo"] a:visited {
    color: #fff;
    font-weight: 100;
    text-decoration: none;
}

footer .social-media {
    /* display: inline; */
    float: right !important;
    list-style: none;
    /* margin: 0 12px; */
    margin: 12px 0 12px 24px;
    padding: 0;
    /* width: 216px; */
    width: auto !important;
}

footer .row-fluid [class*="span"]:first-child.social-media {
    margin-left: 2.564102564102564%;
}

footer .social-media .twitter {
    background: transparent url('https://uh.edu/images/social/twitter-2.png') no-repeat;
}

footer .social-media .facebook {
    background: transparent url('https://uh.edu/images/social/facebook.png') no-repeat;
}

footer .social-media .youtube {
    background: transparent url('https://uh.edu/images/social/youtube.png') no-repeat;
}

footer .social-media .google-plus {
    background: transparent url('https://uh.edu/images/social/google-plus.png') no-repeat;
}

footer .social-media .instagram {
    background: transparent url('https://uh.edu/images/social/instagram-new.png') no-repeat;
}

footer .social-media li {
    display: inline;
    float: left;
    margin: 0 12px 0 0;
}

footer .social-media li:last-of-type {
    /* margin-right: 0; */
}
/* IE */
footer .social-media li.jquery {
    /* margin-right: 0; */
}

footer .social-media a {
    background: #c00;
    display: block;
    height: 32px;
    width: 32px;
}

footer .bottom-bar {
    background: #333 url('/css/backgrounds/topbar-bg.png');
    color: #ddd;
}

footer .bottom-bar * {
    line-height: 18px;
}

footer .bottom-bar p {
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 10px;
}

footer .bottom-bar ul {
    /* margin-top: 12px; */
    /* margin-bottom: 12px; */
}

footer .bottom-bar .social-media a:hover {
    border-bottom: none;
    color: #fff;
    padding: 0;
}

footer .bottom-bar p a,
footer .bottom-bar p a:visited {
    border-bottom: 1px dotted #bbb;
    color: #ddd;
    font-weight: normal;
    margin-left: 2px;
    text-decoration: none;
}

footer .bottom-bar p a:hover {
    border-bottom: 1px dotted #ddd;
    color: #fff;
    padding-bottom: 0;
    /*text-decoration: underline;*/
}

footer .bottom-bar .copyright {
    color: #ddd;
    /* display: inline; */
    /* float: left; */
    /* margin-right: 12px; */
    /* margin-right: 0; */
    /* margin-left: 12px; */
    margin-left: 0;
    /* width: 456px; */
}


/* ========================================================================
   Document Wrapper
   ======================================================================== */

#wrap {
    /* background: white url('/css/backgrounds/body-bg.png') repeat; */
    /* clear: both; */
    /* margin-bottom: -3px; */
    /* min-height: 300px; */
    /* padding-top: 3px; */
    /* padding-bottom: 24px; */
    /* position: relative; */
    /* top: -3px; */
    /* *zoom: 1; */
}

div[role="main"]:before,
div[role="main"]:after {
    content: "";
    display: table;
}

div[role="main"]:after {
    clear: both;
}

.lt-ie9 div[role="main"] {
    border-bottom: 12px solid #f2f2f2;
}

div[role="main"] .container {
}

.lt-ie8 div[role="main"] .container {
    padding-bottom: 36px;
}

#page {

}


/* ========================================================================
   Main Content
   ======================================================================== */

#main {
    padding-bottom: 24px;
}

#main > header h1 {
    border-bottom: 1px solid #999;
    padding-bottom: 5px;
}

#announcement {
    float: left;
    margin-top: 12px;
}

#announcement > *:last-child {
    margin-bottom: 0;
}

.home-page #content-well > p:first-child {
    /* margin-top: 32px; */
}

.standard-content-page .feature + #content-well > p:first-child {
    margin-top: 18px;
}

.standard-content-page #content-well > p:first-child,
.standard-content-page #content-well > ul:first-child,
.standard-content-page #content-well > ol:first-child,
.standard-content-page #content-well > dl:first-child {
    margin-top: 9px;
}

.standard-content-page #content-well > table:first-child {
    margin-top: 18px;
}

.standard-content-page .feature {
    /* height: 216px; */
    /* margin-bottom: 18px; */
    overflow: hidden;
}


/* ========================================================================
   Sidebar
   ======================================================================== */

#sidebar {
    /* float: right; */
    /* margin-left: 24px; */
    /* width: 216px; */
}

#sidebar p {
    line-height: 21px;
}

#sidebar .featured-image {
    margin-bottom: 24px;
}

#sidebar .featured-image + * {
    margin-top: 0;
}

#sidebar .featured-image + .module.affix {
    margin-top: 24px;
}


/* ========================================================================
   Articles
   ======================================================================== */

.hentry header {

}

.hentry h2 a {
    text-decoration: none;
}

.hentry time {
    display: block;
}

.hentry p.byline {

}

.hentry footer {
    clear: both;
}


/* ========================================================================
   Cascade Server WYSIWYG Generated Classes
   ======================================================================== */

.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}


/* ========================================================================
   Home Page
   ======================================================================== */

.uh-home {

}


/* ========================================================================
   Home Page Emergency
   ======================================================================== */

.emergency {
    background: #ffffbf;
    background: rgba(255,255,0,0.25);
    color: #000;
    display: inline;
    float: left;
    margin-right: 12px;
    margin-bottom: 12px;
    margin-left: 12px;
    padding: 18px 24px;
    width: 936px;
    -webkit-border-radius: 12px;
       -moz-border-radius: 12px;
            border-radius: 12px;
    -webkit-box-shadow: inset 1px 1px 12px rgba(0,0,0,0.5);
       -moz-box-shadow: inset 1px 1px 12px rgba(0,0,0,0.5); 
            box-shadow: inset 1px 1px 12px rgba(0,0,0,0.5);
}

.lt-ie9 .emergency {
    padding: 18px 0;
    position: relative;
    text-indent: 24px;
    /* behavior: url('/css/htc/PIE.php'); */ /* Breaks print in IE, looking into solution -Rainer */
}

.emergency h1 {
    color: #c00;
    font-family: 'TexGyreAdventor', sans-serif;
    font-weight: bold;
    margin: 6px 0 6px;
    padding: 0;
}

.fontface .emergency h1:before {
    color: #c00;
    content: "!";
    font-family: Pictos;
    font-size: 32px;
    font-weight: normal;
    line-height: 1px;
    padding-right: 8px;
    text-transform: none;
}

.emergency p {
    margin: 6px 0 0;
    padding: 0;
}


/* ========================================================================
   Home Page Feature
   ======================================================================== */

.flexslider {
    display: inline;
    float: left;
    margin: 0;
    /* width: 696px; */
    width: 100%;
    /* -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.25); */
    /* -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.25); */
    /* box-shadow: 0 1px 3px rgba(0,0,0,0.25); */
}

.flexslider li {
    margin: 0;
}

.home-page .flexslider {
    /* height: 288px; */
}

.lt-ie9 .flexslider {
    position: relative;
    box-shadow: 0 1px 3px #bfbfbf;
    /* behavior: url('/css/htc/PIE.php'); */ /* Breaks print in IE, looking into solution -Rainer */
}

.flexslider figcaption {
    background-color: rgba(0,0,0,0.75);
    bottom: 24px;
    color: white;
    left: 24px;
    padding: 6px 18px 9px;
    position: absolute;
}

.home-page .flexslider figcaption {
    bottom: 0;
    left: 0;
    padding: 6px 12px 6px;
    position: absolute;
    width: 100%;
}

.no-rgba .flexslider figcaption {
    background: transparent url('/css/backgrounds/feature-caption-bg.png') repeat;
}

.flexslider p,
.flexslider h4 {
    line-height: 21px;
    margin: 0;
}

.flexslider h4 {
    color: #fff;
    font-family: 'TexGyreAdventor', sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 36px;
    text-decoration: none;
}

.flexslider p {
    color: white;
    font-family: 'TexGyreAdventor', sans-serif;
    font-size: 15px;
    font-weight: normal;
    line-height: 21px;
}

.flexslider a,
.flexslider a:visited {
    color: #fff;
    text-decoration: none;
}

/* Browser Resets */
.flex-container a,
.flexslider a,
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {

    outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* FlexSlider Necessary Styles */
.flexslider {
    /* height: 360px; */
    /* margin-bottom: 12px; */
    padding: 0;
    /* width: 936px; */
}

.flexslider .slides > li {
    /* Hide the slides before the JS is loaded. Avoids image jumping */
    display: none;
    -webkit-backface-visibility: hidden;
}

.flexslider .slides img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
}

/* Clearfix for the .slides element */
.slides:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
}
html[xmlns] .slides {
    display: block;
}
* html .slides {
    height: 1%;
}

/* No JavaScript Fallback */
.no-js .slides > li:first-child {
    display: block;
}


.flex-container {
    /* Suggested container for "Slide" animation setups. */
    position: relative;
    zoom: 1;
}

.flexslider {
    position: relative;
    zoom: 1;
}

.flexslider .slides {
    zoom: 1;
}

.flexslider .slides > li {
    position: relative;
}

.flex-direction-nav {
    height: 0;
}

.flex-direction-nav a {
    background: url('/css/backgrounds/feature-arrows.png') no-repeat;
    cursor: pointer;
    display: block;
    height: 48px;
    margin: -24px 0 0;
    opacity: 0;
    position: absolute;
    text-indent: -999em;
    top: 50%;
    width: 48px; filter:alpha(opacity=0);
    -webkit-transition: opacity .2s ease-in-out;
       -moz-transition: opacity .2s ease-in-out;
        -ms-transition: opacity .2s ease-in-out;
         -o-transition: opacity .2s ease-in-out;
            transition: opacity .2s ease-in-out;
}

.flexslider:hover .flex-direction-nav a {
    opacity: 0.75; filter:alpha(opacity=75);
}

.flex-direction-nav .flex-next {
    background-position: -48px 0;
    right: 0;
    -webkit-border-radius: 5px 0 0 5px;
       -moz-border-radius: 5px 0 0 5px;
            border-radius: 5px 0 0 5px;
}

.flex-direction-nav .flex-prev {
    left: 0;
    -webkit-border-radius: 0 5px 5px 0;
       -moz-border-radius: 0 5px 5px 0;
            border-radius: 0 5px 5px 0;
}

.flex-direction-nav .flex-disabled {
    cursor: default;
    opacity: 0.3; filter:alpha(opacity=30);
}


/* ========================================================================
   Gallery
   ======================================================================== */

#gallery {
    border: 1px solid #ccc;
    margin-bottom: 24px;
    padding: 5px;
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
}

#gallery .flexslider {
    /* width: 684px; */
}

#slider {
    /* height: 456px; */
}

#carousel {
    margin-top: 5px;
}

#carousel .slides {
    height: 140px;
    overflow: hidden;
}

#carousel li {
    margin-right: 5px;
}

#carousel ul li:last-child {
    /* margin-right: 0; */
}

#carousel img {
    cursor: pointer;
    display: block;
    max-height: none;
    opacity: 0.5;
}

#carousel img:hover {
    opacity: 1;
}

#carousel .flex-active-slide img {
    cursor: default;
    opacity: 1;
}

#gallery .flexslider figcaption {
    bottom: 0;
    left: 0;
    padding: 6px 12px 6px;
    position: absolute;
    width: 100%;
}


/* ========================================================================
   Small Feature
   ======================================================================== */

.small-feature {
    height: 360px;
    margin-bottom: 36px;
    overflow: hidden;
    position: relative;
}

.small-feature figcaption {
    background-color: rgba(204,0,0,0.75);
    border: 1px solid #fff;
    bottom: 24px;
    color: #fff;
    font-family: 'TexGyreAdventor', sans-serif;
    font-size: 30px;
    font-weight: bold;
    left: 24px;
    line-height: 45px;
    padding: 6px 18px;
    position: absolute;
    text-transform: uppercase;
}

.small-feature figcaption {
    background-color: rgba(204,0,0,0.75);
    border: 1px solid #fff;
    bottom: 24px;
    color: #fff;
    left: 24px;
    padding: 6px 18px;
    position: absolute;
}
.small-feature figcaption h4 {
    color: #fff !important;
    font-family: 'TexGyreAdventor', sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 36px;
    margin-top: 0px !important ;
    text-transform: uppercase;
}
.small-feature figcaption p{
    color: #fff !important;
    font-family: 'TexGyreAdventor', sans-serif;
    font-size: 15px;
    font-weight: normal;
    line-height: 24px;
    text-transform: capitalize;
}


/* ========================================================================
   Modules
   ======================================================================== */

.module {
    background: #fcfcfc;
    border: 1px solid #ccc;
    border-bottom-color: #b3b3b3;
    /* display: inline; */
    /* float: left; */
    line-height: 21px;
    margin: 24px 0;
    position: relative;
    width: 100%;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.25);
       -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.25);
            box-shadow: 0 1px 3px rgba(0,0,0,0.25);
    *border: 0;
}

.module.affix {
    position: fixed;
    /* top: 24px; */
}

.module * {
    line-height: 21px;
}

.lt-ie9 .module {
    position: relative;
    box-shadow: 0 1px 3px #bfbfbf;
    /* behavior: url('/css/htc/PIE.php'); */ /* Breaks print in IE, looking into solution -Rainer */
}

.home .module {
    height: 318px;
}

.gateway .left-column,
.gateway .right-column {
    width: 50%;
}

.gateway .left-column {
    float: left;
}

.gateway .right-column {
    float: right;
}

.gateway .module {
    width: 454px;
}

.gateway .module dt {
    border-top: 1px dotted #999;
}

.gateway .module-events dt {
    border-top: none;
    padding-right: 0;
    text-align: left;
    width: 72px;
}

.gateway .module-events dd {
    min-height: 0;
}

.gateway .module-events span.day:after {
    content: ': ';
}

.gateway .module-events header h1:before {
    display: none;
}

.module a {
    text-decoration: none;
}

.module a:hover {
    /* border-bottom: 1px dotted #c00; */
    text-decoration: underline;
}

.module img {
    height: auto;
    max-width: 100%;
}

.module p {
    margin: 9px 0 0;
    /* padding: 0 12px; */
}

.module ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.module li {
    border-bottom: 1px solid #ccc;
    margin: 0;
    padding: 6px 12px 9px;
}

.module li a {
}

.module ol {
    counter-reset: li; /* Initiate a counter */
    margin: 0;
    padding: 0;
}

.module ol > li {
    list-style: none; /* Disable the normal item numbering */
    padding-left: 36px;
    position: relative;
}
.module ol > li:before {
    content: counter(li)'.'; /* Use the counter as content */
    counter-increment: li; /* Increment the counter by 1 */
    left: 12px;
    margin-right: 8px;
    position: absolute;
    width: 2em;
}

.module li:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}
/* IE */
.module li.jquery {
    border-bottom: none;
    margin-bottom: 0;
}

.module p + ol li:first-of-type {
    border-top: 1px dotted #999;
    padding-top: 9px;
}
/* IE */
.module p + ol li.jquery {
    border-top: 1px dotted #999;
    padding-top: 9px;
}

.module dt {
    margin: 0;
    padding: 9px 12px 0;
}

.module dt:first-of-type {
    border-top: none;
}
/* IE */
.module dt.jquery {
    border-top: none;
}

.module dd {
    margin: 0;
    padding: 0 12px 9px;
}

.module iframe {
    border: none;
    margin-bottom: -5px;
}

.home .module ul,
.home .module dl {
    height: 243px;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 234px;
}

.no-touch .home .module ul::-webkit-scrollbar,
.no-touch .home .module dl::-webkit-scrollbar {
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
}

.touch .home .module ul,
.touch .home .module dl {
    width: 214px;
}

.module header {
    background-color: #f5f5f5;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
    background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
    background-image:    -moz-linear-gradient(top, #ffffff, #e6e6e6);
    background-image:     -ms-linear-gradient(top, #ffffff, #e6e6e6);
    background-image:      -o-linear-gradient(top, #ffffff, #e6e6e6);
    background-image:         linear-gradient(top, #ffffff, #e6e6e6);
    background-repeat: repeat-x;
    border-bottom: 1px solid #b3b3b3;
    padding: 6px 12px;
    position: relative;
    -webkit-border-top-right-radius: 3px;
            border-top-right-radius: 3px;
     -webkit-border-top-left-radius: 3px;
             border-top-left-radius: 3px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
       -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
        -moz-border-radius-topright: 3px;
         -moz-border-radius-topleft: 3px;
    *background-color: #e6e6e6; /* Darken IE7 buttons by default so they stand out more given they won't have borders */
}

.lt-ie9 .module header {
    position: relative;
    /* behavior: url('/css/htc/PIE.php'); */ /* Breaks print in IE, looking into solution -Rainer */
}

.module header h4 {
    color: #333;
    font-family: 'TexGyreAdventor', sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    margin: 0;
    padding-bottom: 0;
    text-transform: none;
    text-shadow: 0 1px 1px rgba(255,255,255,0.75);
    vertical-align: middle;
}

.module footer {
    background-color: #f5f5f5;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
    background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
    background-image:    -moz-linear-gradient(top, #ffffff, #e6e6e6);
    background-image:     -ms-linear-gradient(top, #ffffff, #e6e6e6);
    background-image:      -o-linear-gradient(top, #ffffff, #e6e6e6);
    background-image:         linear-gradient(top, #ffffff, #e6e6e6);
    background-repeat: repeat-x;
    border-top: 1px solid #ccc;
    bottom: 0;
    color: #333;
    font-family: sans-serif;
    font-size: 15px;
    line-height: 24px;
    padding: 6px 12px;
    /* position: absolute; */
    text-shadow: 0 1px 1px rgba(255,255,255,0.75);
    vertical-align: middle;
    width: 100%;
    -webkit-border-radius: 0 0 2px 2px;
       -moz-border-radius: 0 0 2px 2px;
            border-radius: 0 0 2px 2px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
       -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    *background-color: #e6e6e6; /* Darken IE7 buttons by default so they stand out more given they won't have borders */
}

.uh-home .module footer {
    position: absolute;
    -webkit-box-shadow: 0 -1px 6px #ddd;
       -moz-box-shadow: 0 -1px 6px #ddd;
            box-shadow: 0 -1px 6px #ddd;
}

.lt-ie9 .module footer {
    box-shadow: 0 -1px 6px #ddd;
    /* behavior: url('/css/htc/PIE.php'); */ /* Breaks print in IE, looking into solution -Rainer */
}

.module h5 {
    font-family: sans-serif;
    font-weight: normal;
    margin: 0;
}

.module h5 + p {
    margin-top: 0;
}


/* ========================================================================
   News Module
   ======================================================================== */

.module-news {
    overflow: hidden;
}

.lt-ie8 .module-news {
    border: 1px solid #ccc;
    width: 212px;
}

.home .module-news {
    height: 360px;
    margin-top: 12px;
}

.home .module-news ul {
    height: 284px;
}

.uh-home .module-news header {
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 6px #ddd;
       -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 6px #ddd;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 6px #ddd;
}

.lt-ie9 .module-news header {
    box-shadow: 0 1px 6px #ddd;
    position: relative;
    /* behavior: url('/css/htc/PIE.php'); */ /* Breaks print in IE, looking into solution -Rainer */
}

.fontface .module-news header h1:before {
    color: #333;
    content: "N";
    font-family: Pictos;
    font-size: 17px;
    font-weight: normal;
    line-height: 9px;
    padding-right: 6px;
    position: relative;
    text-transform: none;
    text-shadow: 0 1px 1px rgba(255,255,255,0.75);
    top: 0;
    width: 21px;
}


/* ========================================================================
   Events Module
   ======================================================================== */

.module-events {
    overflow: hidden;
}

.lt-ie8 .module-events {
    border: 1px solid #ccc;
    width: 212px;
}

.uh-home .module-events header {
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 6px #ddd;
       -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 6px #ddd;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 6px #ddd;
}

.lt-ie9 .module-events header {
    box-shadow: 0 1px 6px #ddd;
    position: relative;
    /* behavior: url('/css/htc/PIE.php'); */ /* Breaks print in IE, looking into solution -Rainer */
}

.fontface .module-events header h1:before {
    color: #333;
    content: "\\";
    font-family: Pictos;
    font-size: 17px;
    font-weight: normal;
    line-height: 9px;
    padding-right: 6px;
    position: relative;
    text-transform: none;
    text-shadow: 0 1px 1px rgba(255,255,255,0.75);
    top: -1px;
}

.module-events dl {
    margin: 0;
}

.module-events dt {
    clear: left;
    display: block;
    float: left;
    font-weight: normal;
    padding: 9px 12px;
    text-align: center;
    width: 54px;
}

.lt-ie8 .module-events dt {
    border-bottom: 1px dotted #999;
    width: 30px;
}

.module-events dd {
    border-bottom: 1px dotted #999;
    display: block;
    margin: 0;
    min-height: 42px;
    padding: 9px 12px 9px 54px;
    /* width: 150px; */
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -ms-box-sizing: content-box;
}

.lt-ie8 .module-events dd {
    margin-left: 54px;
    padding: 9px 12px 9px 0;
    width: 148px;
}

.module-events dd:last-of-type {
    border-bottom: none;
}
/* IE */
.module-events dd.jquery {
    border-bottom: none;
}


/* ========================================================================
   Twitter Module
   ======================================================================== */

.module-twitter { 
    /* width: 300px; */
}

.module-twitter img {
    display: block;
    float: left;
    height: 36px;
    margin-top: 5px;
    width: 36px;
    border-radius: 4px;
}

.module-twitter h5 {
    /* display: inline-block; */
    padding: 0 0 0 48px;
}

.module-twitter time {
    display: inline;
    float: right;
    padding-right: 12px;
}

.module-twitter p {
    padding: 0 0 0 48px;
}


/* ========================================================================
   SPIFF Module
   ======================================================================== */

.module-spiff,
.module-spiff header,
.module-spiff footer {
    background: none;
    border: none;
    padding: 6px 0;
    -webkit-border-radius: none;
       -moz-border-radius: none;
            border-radius: none;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
}

.module-spiff {
    overflow: visible;
    padding: 1px 0;
}

.module-spiff header {
    border-bottom: 1px solid #b3b3b3;
}

.module-spiff footer {
    padding: 0;
    position: relative;
}

.module-spiff footer a.btn {
    color: #333;
}

.module-spiff footer a.btn:hover {
    border-bottom: 1px solid #ccc;
    color: #333;
}

.module-spiff h4 {
    border-bottom: 1px solid #999;
    font-size: 16px;
    line-height: 21px;
    margin: 0;
    padding: 7px 0;
}

.module-spiff p {
    line-height: 21px;
    margin: 6px 0 12px;
    padding: 0;
}

.module-spiff figure img {
    border: none;
}

.module-spiff figure figcaption {
    margin: 12px 0;
    padding: 0;
}

.module-spiff .btn {
    /* margin-top: 12px; */
}

.spiff-bank {
    background: rgba(0,0,0,0.05);
    display: block;
    float: left;
    margin-top: -24px;
    padding: 36px 0;
    position: relative;
}

.spiff-bank:before,
.spiff-bank:after {
   background: rgba(0,0,0,0.05);
   bottom: 0;
   content: "";
   display: block;
   position: absolute;
   top: 0;
   width: 9999px;
}

.spiff-bank:before {
   right: 100%; 
}

.spiff-bank:after {
   left: 100%;
}


/* ========================================================================
   Table of Contents
   ======================================================================== */

.table-of-contents {
    top: 0;
    /* width: 216px; */
}

.table-of-contents li {
    padding: 0;
}

.table-of-contents li a {
    display: block;
    padding: 7px 3px 7px 12px;
}

.table-of-contents .active a,
.table-of-contents .active a:hover {
    background: #c00;
    color: white;
}

.table-of-contents ul li:first-child a {
    border-radius: 3px 3px 0 0;
}

.table-of-contents ul li:last-child a {
    border-radius: 0 0 3px 3px;
}

.table-of-contents .top-link {
    color: #999;
    display: none;
    font-size: 13px;
    margin-top: 7px;
    position: absolute;
    text-align: center;
    width: 100%;
}

.table-of-contents.affix .top-link {
    display: block;
}

.table-of-contents.affix a {
    display: block !important;
}


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

.links-list {
    list-style: none;
    margin-top: 0;
    margin-bottom: 36px;
}

.links-list dt {
    border-bottom: 1px solid #b3b3b3;
    color: #333;
    font-family: 'TexGyreAdventor', sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 21px;
    padding: 6px 0;
}

.links-list dd,
.links-list li {
    display: block;
    margin: 12px 0;
}

.links-list a {
    text-decoration: none;
}

.links-list a:hover {
    border-bottom: 1px dotted #c00;
}

.gateway .links-list:nth-of-type(4n+1) {
    clear: left;
}
/* IE */
.gateway .links-list.jquery {
    clear: left;
    float: left;
}


/* ========================================================================
   Page-Specific Styles
   ======================================================================== */

.apply-to-uh .container > h1 {
    margin-bottom: 18px;
    position: relative;
    top: -1px;
}

.apply-to-uh .container > h1 + nav {
    position: relative;
    top: -12px;
}

.apply-to-uh .container > h1 + nav .btn {
    font-family: 'TexGyreAdventor', sans-serif;
    font-size: 15px;
    font-weight: normal;
    line-height: 31px;
    margin-bottom: 12px;
    padding: 0;
}

.apply-to-uh .container > h1 + nav .btn .caret {
    margin-top: 14px;
    margin-left: 9px;
}

.apply-to-uh .apply-now .btn {
    width: 100%;
}

.apply-to-uh #uhslideshow {
    float: left;
}

.apply-to-uh .module:nth-child(odd) {
    clear: left;
}
/* IE */
.lt-ie8 .apply-to-uh .module.clearleft {
    background: white !important;
    clear: left;
    position: relative;
}


/* ========================================================================
   Transitions
   ======================================================================== */

.nav-primary .parents > li > a,
.nav-primary .parents > li > a .caret {
    -webkit-transition: all 0.5s;
       -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
         -o-transition: all 0.5s;
            transition: all 0.5s;
}


/* ========================================================================
   Media Queries
   ======================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media (max-width: 984px) {
    .nav-primary .parents > li > a {
        padding: 0 10px;
    }
    .nav-primary .parents > li > a .caret {
        margin-left: 7px;
    }
}
@media (max-width: 960px) {
    .nav-primary .parents > li > a {
        padding: 0 9px;
    }
    .nav-primary .parents > li > a .caret {
        margin-left: 6px;
    }
}
@media (max-width: 936px) {
    .nav-primary .parents > li > a {
        padding: 0 8px;
    }
    .nav-primary .parents > li > a .caret {
        margin-left: 5px;
    }
}
@media (max-width: 912px) {
    .nav-primary .parents > li > a {
        padding: 0 7px;
    }
    .nav-primary .parents > li > a .caret {
        margin-left: 4px;
    }
}
@media (max-width: 888px) {
    .nav-primary .parents > li > a {
        padding: 0 12px;
    }
    .nav-primary .parents > li > a .caret {
        display: none;
    }
}
@media (max-width: 872px) {
    .nav-primary .parents > li > a {
        padding: 0 11px;
    }
}
@media (max-width: 856px) {
    .nav-primary .parents > li > a {
        padding: 0 10px;
    }
}
@media (max-width: 840px) {
    .nav-primary .parents > li > a {
        padding: 0 9px;
    }
}
@media (max-width: 824px) {
    .nav-primary .parents > li > a {
        padding: 0 8px;
    }
}
@media (max-width: 808px) {
    .nav-primary .parents > li > a {
        padding: 0 7px;
    }
}
@media (max-width: 792px) {
    .nav-primary .parents > li > a {
        padding: 0 6px;
    }
}
@media (max-width: 778px) {
    .nav-primary .parents > li:first-of-type > a {
        padding-left: 12px;
    }
    .nav-primary .parents > li,
    .nav-primary .parents > li:hover {
        border: none;
    }
}
@media (max-width: 760px) {
    .nav-primary .parents > li:first-of-type > a {
        padding-left: 10px;
    }
    .nav-primary .parents > li > a {
        padding: 0 5px;
    }
}

@media (min-width: 768px) {
    html,
    body {
        /*height: 100%;*/
        /*overflow: auto;*/
    }
    #mobile-header {
        display: none;
    }
}

/* Mobile layout */

@media (max-width: 767px) {
    html {
        background: #333;
    }
    html,
    body {
        height: 100%;
        margin: 0;
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    #mobile-header {
        background: #c00 url('../_img/uh-logo-mobile.svg') no-repeat 60px center;
        display: block;
        height: 48px;
        margin: 0;
        padding: 0;
        position: relative;
        z-index: 99;
        -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.2), 0 3px 3px rgba(0,0,0,.2);
           -moz-box-shadow: inset 0 -1px 0 rgba(0,0,0,.2), 0 3px 3px rgba(0,0,0,.2);
                box-shadow: inset 0 -1px 0 rgba(0,0,0,.2), 0 3px 3px rgba(0,0,0,.2);
    }

    #mobile-header .menu-button {
        background: #333 url('../_img/menu-icon.svg') no-repeat center center;
        display: block;
        height: 48px;
        text-indent: -999em;
        width: 48px;
        -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.2);
           -moz-box-shadow: inset 0 -1px 0 rgba(0,0,0,.2);
                box-shadow: inset 0 -1px 0 rgba(0,0,0,.2);
    }

    #mobile-header form {
        background: #333;
        height: 48px;
        left: -272px;
        margin: 0;
        position: absolute;
        top: 0;
        width: 272px;
    }

    #mobile-header fieldset {
        border: 0;
        margin: 0;
        padding: 0;
    }

    #mobile-header .search input[type="text"] {
        background: #fff;
        border: none;
        color: #333;
        font-family: 'TexGyreAdventor', sans-serif;
        font-size: 16px;
        font-weight: normal;
        height: 36px;
        margin: 6px 0 0 6px;
        padding: 0 30px 0 9px;
        text-shadow: 0 0 1px #ddd;
        width: 260px;
        -webkit-border-radius: 3px;
           -moz-border-radius: 3px;
                border-radius: 3px;
        -webkit-box-shadow: inset 1px 1px 3px rgba(0,0,0,0.25);
           -moz-box-shadow: inset 1px 1px 3px rgba(0,0,0,0.25);
                box-shadow: inset 1px 1px 3px rgba(0,0,0,0.25);
    }

    .no-boxsizing #mobile-header .search input[type="text"] {
        width: 192px;    
    }

    #mobile-header .search ::-webkit-input-placeholder {
       color: #333;
    }

    #mobile-header .search :-moz-placeholder {
       color: #333;
    }

    #mobile-header .search input[type="submit"] {
        background: #c00 url('/css/backgrounds/search.svg') no-repeat center center;
        border: 1px solid rgba(0,0,0,0.125);
        color: transparent !important;
        cursor: pointer;
        font: 0/0 a;
        height: 30px;
        padding: 0;
        position: absolute;
        right: 9px;
        text-shadow: none;
        top: 9px;
        width: 30px;
        -webkit-border-radius: 2px;
           -moz-border-radius: 2px;
                border-radius: 2px;
    }

    .no-inlinesvg #mobile-header .search input[type="submit"] {
        background: #c00 url('/css/backgrounds/search.png') no-repeat center center;
    }

    #banner,
    #wrap,
    #mobile-header {
        display: block; 
        position: relative;
        width: 100%;
        -webkit-transition: .2s margin ease;
           -moz-transition: .2s margin ease;
            -ms-transition: .2s margin ease;
             -o-transition: .2s margin ease;
                transition: .2s margin ease;
    }

    #banner {
        background: #333;
        bottom: 0;
        float: left;
        left: 0;
        margin-left: -272px;
        overflow: auto;
        position: fixed;
        top: 47px;
        width: 272px;
        z-index: 1;
        -webkit-overflow-scrolling: touch;
        box-shadow: inset -6px 0 6px rgba(0,0,0,.2);
    }

    #banner ul {
        display: block;
        height: 100% ;
        list-style: none;
        margin: 0;
        /* overflow-y: scroll; */
        padding: 0;
    }

    #banner li {
        position: relative;
    }

    #banner li a,
    #content-info .footer-links dt,
    #content-info .footer-links dd {
        border-bottom: 1px solid rgba(0,0,0,.2);
        color: #fff;
        display: block;
        font-family: 'TexGyreAdventor', sans-serif;
        font-size: 16px;
        /* font-weight: bold; */
        line-height: 21px;
        padding: 12px 15px 10px;
        position: relative;
        text-decoration: none;
        text-shadow: 0 1px 0 rgba(0,0,0,.5);
        box-shadow: 0 1px 0 rgba(255,255,255,.2) inset;
    }

    #banner .logo,
    #banner form {
        display: none;
    }

    #banner .top-bar {
        background: #333;
        box-shadow: inset -6px 6px 6px rgba(0,0,0,.2);
    }

    #banner div,
    #banner nav,
    #banner ul,
    #banner li {
        display: block;
        height: auto;
        left: 0;
        margin: 0;
        top: 0;
        width: 100%;
        border-radius: 0;
    }

    #banner li:hover,
    #banner a:hover {
        background: none;
    }

    #banner .top-bar li:first-of-type a {
        padding-top: 11px;
        /* box-shadow: none; */
    }

    #banner .nav-primary {
        background: #c00;
        box-shadow: inset -6px 0 6px rgba(0,0,0,.2);
    }

    #banner .nav-primary ul ul {
        display: none;
    }

    #banner .nav-primary li {
        border-right: none;
    }

    #banner .top-bar li a {
        box-shadow: 0 1px 0 rgba(255,255,255,.1) inset;
    }

    #banner .nav-primary .children {
        background: rgba(0,0,0,.2);
        display: block;
        font-weight: normal;
        height: auto;
        max-height: 0;
        overflow: hidden;
        position: relative;
        box-shadow: inset 0 6px 6px rgba(0, 0, 0, .2), inset -6px 0 6px rgba(0, 0, 0, .1), inset 0 -3px 3px rgba(0,0,0,.1);
        -webkit-transition: .5s max-height ease;
           -moz-transition: .5s max-height ease;
            -ms-transition: .5s max-height ease;
             -o-transition: .5s max-height ease;
                transition: .5s max-height ease;
    }

    #banner .nav-primary .opened + .children,
    #banner .nav-primary .opened .grandchildren {
        max-height: 1320px;
    }

    #banner .nav-primary .opened + .children li:first-child a {
        box-shadow: none;
    }

    #banner .caret {
        background: transparent url('../_img/caret.svg') no-repeat center center;
        border: 0;
        border-left: 1px solid rgba(0,0,0,.2);
        cursor: pointer;
        display: block;
        height: 44px;
        margin: 0;
        opacity: 1;
        position: absolute;
        right: 0;
        top: 0;
        width: 44px;
        box-shadow: 1px 0 0 rgba(255,255,255,.2) inset;
        -webkit-transition: .2s all ease;
           -moz-transition: .2s all ease;
            -ms-transition: .2s all ease;
             -o-transition: .2s all ease;
                transition: .2s all ease;
    }

    #banner .opened .caret {
        background-color: rgba(0,0,0,.1);
        box-shadow: 2px 2px 2px rgba(0,0,0,.1) inset;
    }

    #wrap {
        background: white;
        float: left;
        height: 100%;
        margin-left: 0;
        max-width: none;
        /* overflow: hidden; */
        overflow-y: scroll;
        position: relative;
        z-index: 2;
        box-shadow: 0 0 3px #000;
        -webkit-overflow-scrolling: touch;
    }

    .breadcrumb {
        /*background: rgba(0,0,0,0.05);*/
        margin: 0;
        padding: 10px 15px;
    }

    #page {
        /*bottom: 0;*/
        caption-side: bottom;
        /*color: #333;*/
        display: table;
        /*left: 0;*/
        /*overflow-y: scroll;*/
        padding: 15px;
        /*position: absolute;*/
        /*right: 0;*/
        /*top: 48px;*/
    }

    #main {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    #page .nav-secondary {
        display: table-caption;
        float: none;
        margin: 0;
        /*padding: 0 15px;*/
        width: 100%;
    }

    #page .nav-secondary h2 {
        padding: 0;
        box-shadow: 0 -3px 3px rgba(0,0,0,.2);
    }

    #page .nav-secondary h2 a {
        background: #333;
        color: white;
        font-size: 16px;
        /*font-weight: normal;*/
    }

    #page .nav-secondary a {
        display: block;
        line-height: 24px;
        padding: 10px 15px;
    }

    #content-info {
        background: #c00;
        box-shadow: none;
        /*margin-top: 24px;*/
        margin-bottom: 48px;
    }

    #content-info .bottom-bar {
        padding: 0 15px;
    }

    #content-info [class*="span"],
    #content-info div {
        margin: 0;
        width: 100%;
    }

    #content-info .footer-links figure {
        display: none;
    }

    #content-info .footer-links dl {
        max-height: 44px;
        overflow: hidden;
        -webkit-transition: .5s max-height ease;
           -moz-transition: .5s max-height ease;
            -ms-transition: .5s max-height ease;
             -o-transition: .5s max-height ease;
                transition: .5s max-height ease;
    }

    #content-info .footer-links dt {
        background: rgba(0,0,0,0);
        cursor: pointer;
        /*font-weight: normal;*/
        padding: 11px 15px;
        -webkit-transition: .2s all ease;
           -moz-transition: .2s all ease;
            -ms-transition: .2s all ease;
             -o-transition: .2s all ease;
                transition: .2s all ease;
    }


    #content-info .footer-links dt:after {
        content: '';
        background: transparent url('../_img/caret.svg') no-repeat center center;
        height: 44px;
        position: absolute;
        right: 0;
        top: 0;
        width: 44px;
    }

    #content-info .footer-links dd {
        background: rgba(0,0,0,.2);
        /*display: none;*/
    }

    #content-info .footer-links dt + dd {
        box-shadow: inset 0 6px 6px rgba(0, 0, 0, .2);
    }

    #content-info .footer-links dl.opened {
        max-height: 999px;
    }

    #content-info .footer-links dl.opened dt {
        background: rgba(0,0,0,.1);
        box-shadow: 2px 2px 2px rgba(0,0,0,.1) inset;
    }

    #content-info .footer-links dl.opened dd:last-child {
        box-shadow: inset 0 -3px 3px rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.2);
    }

    #content-info .bottom-bar {
        background: #333;
    }

    #content-info .social-media {
        float: left !important;
        margin: 12px 0 9px;
    }

    #content-info .copyright {
        font-size: 12px;
        line-height: 21px;
        margin: 0 0 9px;
    }

    #content-info .copyright a {
        clear: left;
        display: inline-block;
    }

    #content-info .adr {
        display: block;
    }

    .active-nav #banner {
        margin-left: 0;
    }

    .active-nav #mobile-header,
    .active-nav #wrap {
        margin-left: 272px;
    }

    .active-nav #page {
        /* overflow: hidden; */
    }

}


/* ========================================================================
   Non-Semantic Helper Classes
   ======================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    color: transparent !important;
    font: 0/0 a;
    text-indent: -999em;
    /* still needed for older android devices */
    /* text-indent: -999em; */
    text-shadow: none;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Contain floats: h5bp.com/q
 */

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    clear: both;
    *zoom: 1;
}


/* ========================================================================
   Internet Explorer Styles
   ======================================================================== */

/* See ie6.css */


/* ========================================================================
   Print Styles
   ======================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        text-shadow: none !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.5in;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    /* Hide header, footer, and navigation */
    /*#banner,*/
    #banner .top-bar,
    #banner button,
    #banner .nav-primary,
    .breadcrumb,
    .nav-secondary,
    #sidebar,
    #content-info,
    .module {
        display: none !important;
    }
    #banner .logo {
        padding-top: 0;
        padding-bottom: 0.25in;
    }
    /* Make main column width 100% */
    
    #main,
    #content-well {
        margin-left: 0;
        /* padding-right: 0.5in; */
        width: 100% !important;
    }
    /* Show link URLs in content well */
    #content-well a[href]:after {
        content: " (" attr(href) ")";
    }
    /* Links inside of table cells make table widths too wide to fit on a page */
    #content-well table a[href]:after {
        content: '';
    }
}