/*!
Constellation is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
- Box sizing
# Base
- Typography
- Elements
- Forms
## Layouts
# Components
- Navigation
- Search
- Posts and pages
- Comments
- Widgets
- Gutenberg Blocks
- Media
- Events
- Captions
- Galleries
- Footer
# plugins
# Utilities
- Accessibility
- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

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

/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/

/* Sections
========================================================================== */

/**
* Remove the margin in all browsers.
*/

html {
  line-height: 1.15;
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: #003447;
  box-sizing: border-box;
  overflow-x: hidden;
}
.entry-title {
  font-size: 36px;
  color: #005777;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 1.2em;
}
.site {overflow-x: hidden;
  margin-top: 50px;}

#content {
  padding-bottom:80px;
}

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

/**
* Render the `main` element consistently in IE.
*/
main {
  display: block;
}

/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/

/* Grouping content
========================================================================== */

/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/

/* Text-level semantics
========================================================================== */

/**
* Remove the gray background on active links in IE 10.
*/

/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
samp{
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
* Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  bottom: -0.25em;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

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

/**
* Remove the border on images inside links in IE 10.
*/

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

/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/

/**
* Correct the inability to style clickable types in iOS and Safari.
*/
[type="button"], [type="reset"], [type="submit"]{
  -webkit-appearance: button;
}

/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
* Correct the padding in Firefox.
*/
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*		`fieldset` elements in all browsers.
*/
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
  vertical-align: baseline;
}

/**
* Remove the default vertical scrollbar in IE 10+.
*/

/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
* Remove the inner padding in Chrome and Safari on macOS.
*/
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
========================================================================== */

/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/
details {
  display: block;
}

/*
* Add the correct display in all browsers.
*/
summary {
  display: list-item;
}

/* Misc
========================================================================== */

/**
* Add the correct display in IE 10+.
*/
template {
  display: none;
}

/**
* Add the correct display in IE 10.
*/
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */

@font-face {
  font-family: 'uw_';
  src: url(fonts/uw_.eot);
  src:
    url(fonts/uw_.eot?#iefix) format('embedded-opentype'),
    url(fonts/uw_.woff2)      format('woff2'),
    url(fonts/uw_.woff)       format('woff'),
    url(fonts/uw_.ttf)        format('truetype');
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}


input {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  overflow: visible;
  color: #404040;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

optgroup {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  color: #404040;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h2, h3, h4, h5, h6{
  clear: both;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

tt, var{
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
code {
  font-family: monospace, monospace;
  font-size: 1em;
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

kbd {
  font-family: monospace, monospace;
  font-size: 1em;
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}
.wp-block-heading {
  margin-top:15px !important;
}

/* Elements
--------------------------------------------- */
body {margin: 0;
  overflow-x: hidden;
  color: #404040;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  background: #fff;}

hr {box-sizing: content-box;
  height: 0;
  overflow: visible;
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;}

ul {margin: 0 0 1.5em 3em;
  list-style: disc;}

ol {margin: 0 0 1.5em 3em;
  list-style: decimal;}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

img {border-style: none;
  height: auto;
  max-width: 100%;}

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {background-color: transparent;
  color: #002d3d;}

a:focus {color: #005777;
  outline: thin dotted;}

a:hover {
  color: #005777;
  outline: 0;
}

a:active {
  color: #005777;
  outline: 0;
}

/* Forms
--------------------------------------------- */
input[type="button"], input[type="reset"], input[type="submit"]{
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}
button {
  line-height: 1.15;
  margin: 0;
  overflow: visible;
  text-transform: none;
  -webkit-appearance: button;
  color: #404040;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"]{
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

select {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  text-transform: none;
  color: #404040;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  border: 1px solid #ccc;
}

textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  overflow: auto;
  color: #404040;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
  width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation and Header
--------------------------------------------- */

.wrap-title {
  display: block;
  width: 100%;
  text-align: left; /* Or any alignment you prefer */
  word-wrap: break-word;
  margin-bottom: 1rem; /* Space between title and navigation */
}

#breadcrumbs {
  position: relative;
  top: -60px;
  left: -12px;
  margin: auto;
  border-top: 5px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
  background-color: #003D53;
  width:101%;
}

#breadcrumbs a {
  color: #000;
}

#breadcrumbs ol li { 
  margin-left:0px;
}

#breadcrumbs ol li:first-of-type {
  margin-left:20px;
}

.uws-site-title {
  font-family: 'Bitter', serif;
  position: relative;
  z-index:9;
  top: 52px;
  height:100px;
  display: block;
  width: auto; 
  max-width: 100%; 
  overflow-wrap: break-word; 
  white-space: normal;
}

.uws-site-title.wrap-title h2 {
  font-size:25px;
  position: absolute;
  top:18px;
  left:140px;
  display: block; 
  margin: 0; 
  overflow-wrap: break-word; 
  white-space: normal;
  width:80%;
}

.uws-site-title h2 {
  position: relative;
  display: block; 
  top:-7px;
  left:20px;
  color: #005777;
  display: inline-block;
}


.uws-site-title img {
  display: inline-block;
  padding-left:20px;
  width:105px;
  margin-top:-25px
}

.uws-site-title.wrap-title img {
  padding-left:20px;
  width:105px;
  margin-top:5px
}

.uws-logo img {
  height:40px !important;
}

.uws-logo {
  position:relative;
  top:-45px;
}

.search-results {
  padding-left:0 !important;
}

.apply{
  display: inline-block;
}
.search-open {
  position: relative;
  top:0px;
  padding-left:20px;
  display: inline-block;
}

.no-results {
  min-height:350px;
}

header .apply {
  background-color: #D44427;
  padding:10px;
  border-radius: 5px;
  position:relative;
  top:-6px;
  margin-right:25px;
  margin-left:15px;
  font-size:15px;
}

.apply a {
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
}

.site-header { 
  background-repeat: repeat-x;
  background-size: cover;
  background-color:#fff;
}
#workday-search-form {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
#workday-search-form button {
  background:0;
  border:0;
}

#workday-search-form button img {
  position: relative;
  height:16px;
  position: relative;
  bottom:4px;
  right:16px;
}

#breadcrumbs-inner {
  background-color:#fff;
  margin-left:35px;
  display: flex;
}

#breadcrumbs ol {
  background-color:#fff;
  border-radius: 0;
  padding-left:10px;
  margin-left:30px;
  display: inline-block;
  position: relative;
  right:30px
}

@media (max-width: 700px) {
  #breadcrumbs-inner {
    height:70px;
  }
  #breadcrumbs #workday-search-form {
    display: inline-block;
    float:left;
    position: absolute;
    left:64px;
    margin-top:30px}
}

#workday-search-input {
  height:24px;
  padding-left:4px;
  position: relative;
  top:-2px;
  border-style: solid;
  border-width: 1px;
  border-color: #808080;
}

#workday-search-input::-moz-placeholder {
  color: #808080;
  font-size:12px;
}

#workday-search-input::placeholder {
  color: #808080;
  font-size:12px;
}

.front-door-menu {
  display: block;
  text-align: right;
  position:relative;
  top:-2px;
}

.front-door-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links a img {
  width:24px;
  padding:4px;
}

.social-links {
  margin-top:10px;
}

@media (min-width: 1180px) {
  .nav-wrap-all {
    text-align:left;
    font-family: 'Open Sans', sans-serif;
    font-weight:bold;
    height:125px;
  }

  .main-navigation { 
    position: relative;
    top:-24px;
    padding-right:10px
  } 

  .site-header { 
    position: sticky;
    top: 0;
    z-index: 1000; 
  }

  .mobile-constellation,
  .caret-icon {
    display: none !important;
  }

  .front-door-menu > ul.menu > li > a {
    text-transform: uppercase;
    font-size:16px;
    cursor: pointer;
  }

  .front-door-menu li {
    display: inline-block;
    position: relative;
  }

  .front-door-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #005777;
  }

  .front-door-menu ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index:999999;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .front-door-menu .sub-menu.open {
    display: block;
  }

  .front-door-menu ul.sub-menu li {
    display: block;
    width: 100%;
    min-width:200px;
    text-align: left;
    font-size:11px;
  }

  .front-door-menu ul.sub-menu li:hover {
    background-color:#eee;
  }

  .front-door-menu {
    position: relative;
    z-index:999;
    top:10px;
  }

  .main-navigation {
    display: block;
    text-align: right;
    padding-bottom:20px;
    position: relative;
    top:-20px;
    right:8px;
    height:80px
  }

  .uws-logo img {
    height:65px;
    padding:10px;
    position: absolute;
    z-index:9999;
    top:45px;
    left:20px
  }

  .header-apply,
  .front-door-menu {
    display: inline-block;
  }

  .global-navigation {
    position:absolute;
    top:0;
    height:40px;
    width: 100%;
    background-color: #003447;
    text-align: right;
  }

  .global-navigation a {
    color:#fff;
    text-decoration: none;
    font-size:11px;
  }

  .global-navigation .menu-item {
    display: inline-block;
    padding-left:20px;
    padding-right:20px;
  }

  .global-front-door-menu,
  .search-global {
    display: inline-block;
    margin-right:0px;
    position: relative;
    top:5px;
  }

  .search-global {
    padding-right:30px;
  }

  .search-global .search-open img {
    width:14px;
    margin-bottom: -5px;
  }

  .burger {
    display: none;
  }
}

/* Search
--------------------------------------------- */

#search-window {
  position: fixed;
  z-index:99992;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  background-size: cover;
  display: none;
  justify-content: center;
  align-items: center;
}

#search-window #search-button {
  font-family: 'Open Sans', sans-serif;
  color:#fff;
  cursor:pointer;
  border-style:solid;
  border-width:0px;
  border-color: #fff;
  border-radius: 10px;
  background-color: #C83027;
  font-weight:bold;
  text-transform: uppercase;
  font-size:14px;
  padding:10px;
  width:120px;
  position: relative;
  top:-2px;
  left:30px;
  border: 0;
}

#search-window form {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  margin-top:10%;
}

#search-window #search-input {
  width:80%;
  border-style:solid !important;
  border-width:0px;
  border-color: #0065E0;
  border-radius: 5px !important;
  line-height:38px;
  position: relative;
  top:-2px;
  padding-left:10px;
  font-size:16px;
}

#search-window #search-input,
#search-window #search-button {
  display: inline-block;
}

#search-window .close {
  float:right;
  background:none;
  border:none;
  font-size:32px;
  color:#fff;
  cursor:pointer;
  margin-right:10px;
  margin-top:5px;
}

#search-window .close:hover {
  color:#ccc;
}

#search-window .search-title {
  color:#fff;
  font-family: 'Bitter', serif;
  font-size:20px;
  padding-bottom:10px;
  position: relative;
  bottom:5px;
  filter: drop-shadow(0px 2px 2px #000);
}

#search-window .nav-filigree {
  position: absolute;
  top:10%;
  right:10%;
  z-index:-2;
}

#search-window .browse-all-sites {
  text-align:right;
}

#search-window .browse-all-sites a {
  font-family: 'Open Sans', sans-serif;
  color:#fff;
  position: relative;
  font-size:12px;
  top:4px;
  right:15px;
}

@media (max-width: 1180px) {
  #search-window .close {
    font-size:30px;
  }

  #search-window {
    text-align: center;
  }

  #search-window input,
  #search-window #search-button,
  #search-window .browse-all-sites {
    display: block;
    margin:auto;
  }

  #search-window input {
    margin-top:10px;
  }

  #search-window .browse-all-sites {
    text-align: center;
  }

  #search-window .browse-all-sites a {
    right:0;
  }

  #search-window #search-button {
    left:0;
    margin-top:30px
  }
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.cat-links {
  padding-right:20px
}
.entry-meta .byline,
.entry-meta .author {
  display: none;
}

article footer {
  background-color: #fff
}

.nav-links {
  margin-bottom:40px;
}

.site-main article:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 20px 0;
}

.site-main article:last-of-type {
  margin-bottom:80px
}

.navigation.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem; 
}

.posted-on {
  margin-bottom: 0;
  font-style: italic;
}

.entry-title {
  margin-bottom:0;
}

.entry-header {
  padding-bottom: 10px;
  margin: 44px 0 22px;
  border-bottom: 1px solid #eeeeee;
}

.nav-links {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.nav-previous,
.nav-next {
  display: inline-block;
}

.nav-previous a,
.nav-next a {
  text-decoration: none;
  background-color: #005777;
  padding: 13px;
  border-radius: 5px;
  color: #FFF !important;
  font-size: 13px;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  border: 0;
  white-space: nowrap;
}

.nav-previous a:hover,
.nav-next a:hover {
  background-color: #e0e0e0; 
  color: #000 !important;
}

/* Stack the nav post buttons on small viewport */
@media (max-width: 768px) {
  .navigation.post-navigation {
    flex-direction: column;
    align-items: flex-start; 
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .nav-previous,
  .nav-next {
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-previous a,
  .nav-next a {
    display: block;
    text-align: center;
  }
}

/* Comments
--------------------------------------------- */
.comments-link {
  display: none;
}

#comments {
  display: none;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

/* Event List  & Post List */
.event-list {
  margin-top: 11px;
  margin-bottom: 22px;
}

.event-list.grey-bg {
  background: none repeat scroll 0 0 #EEEEEE;
  border-radius: 6px;
  margin-top: 20px;
  padding: 20px;
}

.event-list ul.list-unstyled {
  padding-left: 0;
  padding-right: 0;
  list-style: none;
}

div.listing-module li.item {
  margin-bottom: 27.5px;
}

.list-unstyled {
  list-style: none;
}

.wp-block-latest-posts__list {
  margin-left: 0;
}

.wp-block-latest-posts.has-background  {
  background: none repeat scroll 0 0 #EEEEEE;
  border-radius: 6px;
  margin-top: 20px;
  padding: 20px;
}

.wp-block-latest-posts .wp-block-latest-posts__post-title {
  font-size: 16.8px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  margin-bottom: 5.5px;
}

/* Gutenberg Blocks
--------------------------------------------- */
.wp-block-uwsa-gutenberg-blocks-tabs {
  display: block;
  float:left;
  width:100%;
  padding-top:10px;
  padding-bottom:10px;
}

.wp-block-gallery {
  display: block;
  width:100%;
}

.tab-title {
  padding: 10px 20px;
  cursor: pointer;
  padding: 10px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
  border-radius: 3px 3px 0 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  color: #003e55;    
}

/* List Block */
.wp-block-list ol,
.wp-block-list ul {
  line-height: 20px;
  margin-top:5px
}

.wp-block-list {
  list-style: none;
  padding-left: 25px;
}

.wp-block-list li {
  display: flex;
  align-items: flex-start;
  gap: .55em;
  margin: .4em 0;
}

.wp-block-list li::before {
  content: "•";
  flex: 0 0 auto;
  line-height: 1;
  position: relative;
  top: .05em;
  font-size:20px;
}


/* Navigation Block */
:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button)), :where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button)), :where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content), :where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content) {
  padding: unset;
}

.wp-block-navigation ul , .wp-block-navigation li , .wp-block-navigation a {
  width: 100%;
}

.wp-block-navigation .wp-block-navigation-item {
  font-weight: 600;
  position: relative;
  display: block;
  text-decoration: none;
  padding: 10px 15px;
  color: #002d3d;
}

.wp-block-navigation .wp-block-navigation-item.has-child {
  padding: 0;
}

.wp-block-navigation .wp-block-navigation-item.has-child > button {
  padding: 10px 15px;
}

.wp-block-navigation .wp-block-navigation-item:hover ,
.wp-block-navigation a.wp-block-navigation-item__content.wp-block-navigation-item__content:focus {
  text-decoration: none;
  background-color: #eeeeee;
  color: #005777 ;
}

.wp-block-navigation .wp-block-page-list, .wp-block-navigation__container, .wp-block-navigation__responsive-close, .wp-block-navigation__responsive-container, .wp-block-navigation__responsive-container-content, .wp-block-navigation__responsive-dialog {
  gap: 0;
}

.wp-block-navigation__submenu-icon {
  transform: rotate(-90deg);
  color:#707070 !important;
  width: 18px !important;
  height: 18px !important;
  transition: transform 0.3s ease;
  transform-origin: center;
}

.wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded="true"] ~ .wp-block-navigation__submenu-icon {
  transform: rotate(0deg);
}

.wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded="true"] ~ .wp-block-navigation__submenu-container, .wp-block-navigation .has-child:not(.open-on-click):hover > .wp-block-navigation__submenu-container, .wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within > .wp-block-navigation__submenu-container
{
  position:unset;
  width: 100%;
  border: 0;
  border-top: solid 1px #eeeeee;
}

.wp-block-navigation .has-child button {
  padding: 0 18px 0 0;
  width: 100%;
}

.wp-block-navigation .wp-block-navigation-item {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: baseline;
}

.wp-block-navigation .wp-block-navigation__submenu-icon {
  position: absolute;
  right: 15px;
  top: 12px;
}

.wp-block-navigation .wp-block-navigation-submenu {
  border-top: solid 1px #eeeeee;
  background: #fff;
  margin: 0px;
}

.wp-block-navigation .wp-block-navigation-submenu li {
  padding-left: 30px;
  color: #555;
}

.wp-block-column.has-background {
  padding: 1.5rem;
  box-sizing: border-box;
}

/* Button Block */
.wp-block-button a {
  background-color: #003447 !important;
  padding: 10px 25px !important;
  border-radius: 5px !important;
  position:relative !important;
  top:-6px !important;
  margin: 0 !important;
  font-size:15px !important;
}

.wp-block-button a:hover , .wp-block-button a:active , .wp-block-button a:focus {
  color:#fff;
}

.wp-block-button a:focus {
  outline: thin dotted;
  outline-offset: 5px;
  outline-color: rgb(0, 87, 119);
}

.wp-block-button {
  margin-top:15px !important;
  margin-bottom: 15px !important;
}

/*--------------------------------------------------------------
# Components - File Icons
--------------------------------------------------------------*/

a[href$=".pdf"],
a[href$=".zip"],
a[href$=".wvx"],
a[href$=".jpg"],
a[href$=".jpeg"],
a[href$=".png"],
a[href$=".xls"],
a[href$=".xlsx"],
a[href$=".xlsm"],
a[href$=".mp3"],
a[href$=".csv"],
a[href$=".vsd"],
a[href$=".vsdx"],
a[href$=".ppt"],
a[href$=".pptx"],
a[href$=".doc"],
a[href$=".docx"] {
  position: relative;
  display: inline-block;
  padding-right: 0;
  margin-right: 44px;  
}

a[href$=".pdf"]::before,
a[href$=".zip"]::before,
a[href$=".wvx"]::before,
a[href$=".jpg"]::before,
a[href$=".jpeg"]::before,
a[href$=".png"]::before,
a[href$=".xls"]::before,
a[href$=".xlsx"]::before,
a[href$=".xlsm"]::before,
a[href$=".mp3"]::before,
a[href$=".csv"]::before,
a[href$=".vsd"]::before,
a[href$=".vsdx"]::before,
a[href$=".ppt"]::before,
a[href$=".pptx"]::before,
a[href$=".doc"]::before,
a[href$=".docx"]::before {
  content: '\f15b';
  font-family: "uw_";
  color: #fff;
  text-shadow: 0 0 4px #999;
  position: absolute;
  line-height: 1;
  top: -4px;
  right: -40px;
  transform: none;
  font-size: 23.8px;  
}

a[href$=".pdf"]::after,
a[href$=".zip"]::after,
a[href$=".wvx"]::after,
a[href$=".jpg"]::after,
a[href$=".jpeg"]::after,
a[href$=".png"]::after,
a[href$=".xls"]::after,
a[href$=".xlsx"]::after,
a[href$=".xlsm"]::after,
a[href$=".mp3"]::after,
a[href$=".csv"]::after,
a[href$=".vsd"]::after,
a[href$=".vsdx"]::after,
a[href$=".ppt"]::after,
a[href$=".pptx"]::after,
a[href$=".doc"]::after,
a[href$=".docx"]::after {
  position: absolute;
  font: 600 8.4px/1 "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 8px;
  padding: 1px 3px;
  color: #fff;
  box-shadow: 1px 1px 2px #aaa;
  top: 4px;
  right: -29px;
  transform: none;
}


/* List Block Doc Icons */

.wp-block-list li > a[href$=".pdf"],
.wp-block-list li > a[href$=".zip"],
.wp-block-list li > a[href$=".wvx"],
.wp-block-list li > a[href$=".jpg"],
.wp-block-list li > a[href$=".jpeg"],
.wp-block-list li > a[href$=".png"],
.wp-block-list li > a[href$=".xls"],
.wp-block-list li > a[href$=".xlsx"],
.wp-block-list li > a[href$=".xlsm"],
.wp-block-list li > a[href$=".mp3"],
.wp-block-list li > a[href$=".csv"],
.wp-block-list li > a[href$=".vsd"],
.wp-block-list li > a[href$=".vsdx"],
.wp-block-list li > a[href$=".ppt"],
.wp-block-list li > a[href$=".pptx"],
.wp-block-list li > a[href$=".doc"],
.wp-block-list li > a[href$=".docx"] {
  width: auto;
  margin-right: 0;
  padding-right: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .25em;
  position: static; 
}

.wp-block-list li > a[href$=".pdf"]::before,
.wp-block-list li > a[href$=".zip"]::before,
.wp-block-list li > a[href$=".wvx"]::before,
.wp-block-list li > a[href$=".jpg"]::before,
.wp-block-list li > a[href$=".jpeg"]::before,
.wp-block-list li > a[href$=".png"]::before,
.wp-block-list li > a[href$=".xls"]::before,
.wp-block-list li > a[href$=".xlsx"]::before,
.wp-block-list li > a[href$=".xlsm"]::before,
.wp-block-list li > a[href$=".mp3"]::before,
.wp-block-list li > a[href$=".csv"]::before,
.wp-block-list li > a[href$=".vsd"]::before,
.wp-block-list li > a[href$=".vsdx"]::before,
.wp-block-list li > a[href$=".ppt"]::before,
.wp-block-list li > a[href$=".pptx"]::before,
.wp-block-list li > a[href$=".doc"]::before,
.wp-block-list li > a[href$=".docx"]::before {
  content: '\f15b';
  font-family: "uw_";
  font-size: 15px;
  line-height: 1;
  top: auto;
  right: auto;
  transform: none;  
  position: static;
  order: 2;
  display: inline-block;
  margin-left: .5em;
  vertical-align: text-bottom;
  text-shadow: 0 0 1px #000;
  color: #fff;
}

.wp-block-list li > a[href$=".pdf"]::after,
.wp-block-list li > a[href$=".zip"]::after,
.wp-block-list li > a[href$=".wvx"]::after,
.wp-block-list li > a[href$=".jpg"]::after,
.wp-block-list li > a[href$=".jpeg"]::after,
.wp-block-list li > a[href$=".png"]::after,
.wp-block-list li > a[href$=".xls"]::after,
.wp-block-list li > a[href$=".xlsx"]::after,
.wp-block-list li > a[href$=".xlsm"]::after,
.wp-block-list li > a[href$=".mp3"]::after,
.wp-block-list li > a[href$=".csv"]::after,
.wp-block-list li > a[href$=".vsd"]::after,
.wp-block-list li > a[href$=".vsdx"]::after,
.wp-block-list li > a[href$=".ppt"]::after,
.wp-block-list li > a[href$=".pptx"]::after,
.wp-block-list li > a[href$=".doc"]::after,
.wp-block-list li > a[href$=".docx"]::after {
  font-size: 8px;
  border-radius: 2px;
  margin-left: .2em;
  vertical-align: middle;
  top: auto;
  transform: none;
  position: static;
  order: 3;
  display: inline-block;
  position: relative;
  right:22px;
  white-space: nowrap;
  line-height: 1;
  font: 600 8px/1 "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  padding: 1px 3px;
  border-radius: 2px;
}

/* Button variants */
a.wp-block-uwsa-file-link__button {
  margin-right: 0;
}

/* Turning off button icons */
.wp-block-uwsa-file-link__button::after,
.wp-block-uwsa-file-link__button::before,
.callout-button:after,
.callout-button:before,
a.button::after,
a.button::before,
a.no-icon::before,
a.no-icon::after {
  content: none !important;
}

/* File type colors */
a[href$=".pdf"]::after   { content: 'PDF'; background: #990013; }
a[href$=".zip"]::after   { content: 'ZIP'; background: rgba(27, 23, 27, 0.57); }
a[href$=".wvx"]::after   { content: 'WVX'; background: #374951; }
a[href$=".jpg"]::after,
a[href$=".jpeg"]::after  { content: 'JPG'; background: #421b99; }
a[href$=".png"]::after   { content: 'PNG'; background: #99454c; }
a[href$=".xls"]::after,
a[href$=".xlsx"]::after,
a[href$=".xlsm"]::after  { content: 'XLS'; background: #336b19; }
a[href$=".mp3"]::after   { content: 'MP3'; background: #bf2f61; }
a[href$=".csv"]::after   { content: 'CSV'; background: #091d85; }
a[href$=".vsd"]::after,
a[href$=".vsdx"]::after  { content: 'VSD'; background: #3e3b85; }
a[href$=".ppt"]::after,
a[href$=".pptx"]::after  { content: 'PPT'; background: #cd6632; }
a[href$=".doc"]::after,
a[href$=".docx"]::after  { content: 'DOC'; background: #407abd; }

.wp-block-list li:not(:has(> a[href$=".pdf" i], > a[href$=".zip" i], > a[href$=".wvx" i],
> a[href$=".jpg" i], > a[href$=".jpeg" i], > a[href$=".png" i],
> a[href$=".xls" i], > a[href$=".xlsx" i], > a[href$=".xlsm" i],
> a[href$=".mp3" i], > a[href$=".csv" i], > a[href$=".vsd" i],
> a[href$=".vsdx" i], > a[href$=".ppt" i], > a[href$=".pptx" i],
> a[href$=".doc" i], > a[href$=".docx" i])) {
  display: block; 
  align-items: initial;
  gap: 0;
}


.wp-block-list li:not(:has(> a[href$=".pdf" i], > a[href$=".zip" i], > a[href$=".wvx" i],
> a[href$=".jpg" i], > a[href$=".jpeg" i], > a[href$=".png" i],
> a[href$=".xls" i], > a[href$=".xlsx" i], > a[href$=".xlsm" i],
> a[href$=".mp3" i], > a[href$=".csv" i], > a[href$=".vsd" i],
> a[href$=".vsdx" i], > a[href$=".ppt" i], > a[href$=".pptx" i],
> a[href$=".doc" i], > a[href$=".docx" i]))::before {
  content: "•";
  font-size: 20px;
  position: relative;
  top: .07em;
  margin-right: -8px;
  position: relative;
  left:-15px;

}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* EVENTS CALENDAR CUSTOM STYLES
--------------------------------------------- */

/* Typography: Titles */
.tribe-events-single-event-title {
  color: #005777;
  font-family: 'Bitter', serif;
  font-size: 36px;
  font-weight: 700;
}

.tribe-events-single-section-title {
  color: #005777 !important;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Typography: Schedule & Content */
.tribe-events-schedule {
  color: #005777;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.tribe-events-content p {
  color: #333333;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
}

/* Add to Calendar Button */
.tribe-events-c-subscribe-dropdown__button {
  border-color: #005777 !important;
  color: #005777 !important;
}

.tribe-events-c-subscribe-dropdown__button:hover {
  background-color: #005777 !important;
  color: #fff !important;
}

/* Event Meta Links */
.tribe-events-event-meta a {
  color: #002d3d !important;
}

.tribe-events-event-meta a:hover {
  color: #005777 !important;
  text-decoration: none;
}

/* Featured Events */
.tribe-common .tribe-common-c-svgicon--featured path,
.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-datetime-featured-text {
  color: #F5AC37;
}

.tribe-common--breakpoint-medium.tribe-events
.tribe-events-calendar-list__event-row--featured
.tribe-events-calendar-list__event-date-tag-datetime:after,
.tribe-events .tribe-events-calendar-month__calendar-event--featured:before {
  background-color: #F5AC37;
}

/* Navigation & Header Styling */
.tribe-events .tribe-events-calendar-list-nav {
  border-top: 1px solid #005777;
}

.tribe-events .tribe-events-header__content-title:after,
.tribe-events .tribe-events-calendar-list__month-separator:after {
  background-color: #005777;
}

/* Venue Box Border (Pro) */
.tribe-events-pro .tribe-events-pro-venue__meta .tec-events-c-view-box-border {
  border: 1px solid #005777;
}

/* Search Button */
.tribe-events .datepicker .day.active,
.tribe-events .datepicker .day.active:hover,
.tribe-events .tribe-events-c-search__button,
.tribe-events button.tribe-events-c-search__button,
.tribe-events button.tribe-events-c-search__button:hover {
  background-color: #005777;
}

/* Related Events List */
.tribe-events-single ul.tribe-related-events li .tribe-related-event-info {
  padding: 10px;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .tribe-events-meta-group {
    width: 200px;
  }

  .tribe-events-single .tribe-events-sub-nav {
    padding: 10px 0;
  }
}

/* Global Link Color Override */
.tribe-common .tribe-common-h5,
.tribe-common a:not(.tribe-common-anchor--unstyle) {
  color: #005777 !important;
}



/* Captions
--------------------------------------------- */

figure.wp-block-image:has(figcaption) {
  background-color: #f0f0f0; 
  border-radius: 8px;         
  padding: 10px;             
  display: inline-block;
}

.wp-block-image :where(figcaption) {
  margin-bottom: 0;
}

figure.wp-block-image img {
  display: block;
  width: 100%;  
}

figure.wp-block-image figcaption {
  color: #777777;
  border-radius: 8px;
  font-size: 80%;
  font-weight: bold;
  text-align: center;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/* Footer
--------------------------------------------- */

footer {
  background-color: #003447;
}

.footer-main-content {
  display: flex;
}

.footer-columns {
  display: flex;
}

.front-door-footer .footer-main-content {
  font-size:12px;
  color:#fff;
  padding: 50px;
  display: flex;
  justify-content: flex-end;
}

.front-door-footer .footer-columns > * {
  flex: 1
}

.front-door-footer .menu ul {
  margin:0;
}

.footer-logo-copyright {
  margin-right: auto;
  margin-bottom: 40px;
}

.front-door-footer .footer-main-content  ul {
  padding-left: 0;
}

.front-door-footer .footer-main-content  li {
  list-style-type: none;
  position: relative;
  width:200px;
  line-height: 2;
}

.front-door-footer div .footer-title {
  font-weight:700;
  font-size: 14px;
  text-transform: uppercase;
  color:#bdd3db;
}

.constellation-footer-contact, .constellation-footer-contact a {
  color: #e4e3e3;
  font-size:11px;
  line-height:1.4
}

.constellation-footer-contact {
  padding-top: 10px;
  margin-left: 4px;
}

.constellation-footer-contact a {
  text-decoration: underline;
}

.constellation-footer-contact a:hover {
  text-decoration: none;
}

.front-door-footer .footer-main-content a {
  text-decoration:none;
  color:#fff;
}

.front-door-footer .footer-cta {
  background-color: #F5AC30;
  padding:13px;
  border-radius: 5px;
  color:#323232 !important;
  font-size: 13px;
  font-weight:bold;
  font-family: 'Open Sans', sans-serif;
  cursor:pointer;
  border: 0;
  align-self: flex-start;
  flex: 0 0 auto;
  margin-left: 20px;
}

.front-door-footer .copyright {
  font-size:11px;
  color:#fff;
  background-color: #005777;
  width:100vw;
  padding:10px;
  display: flex;
  justify-content: center;
}

.front-door-footer .copyright > * {
  padding: 10px
}

.front-door-footer .copyright a {
  color:#fff;
}

.footer-main-content .sub-menu {
  display: none !important;
}

.footer-main-content .footer-menu-two-front-door,
.footer-main-content .footer-menu-one-front-door {
  position: relative;
  right:35px;
}

.footer-main-content .menu li  {
  line-height: 14px;
  padding-top:5px;
  padding-bottom:5px;
}

@media (max-width: 1000px) {
  .footer-main-content {
    flex-direction: column;
  }

  .footer-columns {
    flex-wrap: wrap;
  }

  .front-door-footer .footer-cta {
    margin-left: 0;
  }
}
@media (max-width: 400px) {
  .front-door-footer .footer-main-content {
    padding: 7%;
  }
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  position: relative;
  z-index:999999;
  background-color:#fff;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/*!**********************************************************************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/css/main.css ***!
\**********************************************************************************************************************************************************************/
/**
* File main.css
*
* @package constellation
* @author UWSA Web Team
*
* Handles toggling the navigation menu for small screens and enables TAB key
* navigation support for dropdown menus.
*/

body {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.618;
  color: #333333;
  background-color: #fff !important; 
}

article,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}

body {
  margin: 0;
}
a {
  background: transparent;
}
a:focus {
  outline: thin dotted;
}
a:active,
a:hover {
  outline: 0;
}
h1{
  font-size: 2em;
  margin: 0.67em 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
hr {
  box-sizing: content-box;
  height: 0;
}
mark {
  background: #ff0;
  color: #000;
}
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
pre {
  white-space: pre-wrap;
}
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-family: arial, sans-serif !important;
  }
  .doc-icon {
    padding: 0px !important;
    margin: 0px !important;
  }
  .doc-icon:after {
    display: none;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .doc-type {
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px;
  }
  .doc-type:after {
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px;
  }
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: .9em;
    color: #000;
    background: transparent;
    font-family: inherit;
    position: relative;
    z-index: auto;
    box-shadow: none;
    line-height: inherit;
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 2cm .5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
  .global-menu,
  .global-search,
  .breadcrumb {
    display: none;
  }
  .deepGrayTop {
    height: 0px;
  }
  .header-wrap {
    height: 0px;
  }
  img.print-logo {
    display: block;
    max-width: 250px !important;
    margin-bottom: -90px;
  }
  .child-site-title {
    font-size: 20px;
    margin-left: 120px;
  }
  .sub-site-title {
    font-size: 18px;
    margin-left: 120px;
  }
  .news-sidebar {
    display: none;
  }
  #tribe-events-bar,
  .tribe-events-cal-links,
  #tribe-events-footer,
  #tribe-events-footer + .tribe-events-ical {
    display: none !important;
  }
  h3.sub-site-title {
    visibility: hidden;
  }
  h2.child-site-title {
    top: 42px;
    position: relative;
    max-width: 4in;
    left: 2in;
  }
  h2.child-site-title a[href]:after {
    content: "";
  }
  table.print-no-padding tr th,
  table.print-no-padding tr td {
    padding: 0 !important;
  }
  a.url-hidden-print:after,
  .url-hidden-print a:after {
    content: "";
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.618;
  color: #333333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.main-content a {
  text-decoration: underline;
}
.main-content a:hover,
.main-content a:focus {
  text-decoration: none;
}
.main-content a:focus {
  outline: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.618;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 22px;
  margin-bottom: 22px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.callout-main-title {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #999999;
}
h1,
h2,
h3 {
  margin-top: 35px;
  margin-bottom: 11px;
}
h1 small,
h2 small,
h3 small,
h1 .small,
h2 .small,
h3 .small {
  font-size: 65%;
}
h4,
h5,
h6 {
  margin-top: 22px;
  margin-bottom: 11px;
}
h4 small,
h5 small,
h6 small,
h4 .small,
h5 .small,
h6 .small {
  font-size: 75%;
}
h1,
.h1,
h1 strong,
.h1 strong {
  font-size: 36px;
  color: #005777;
  font-family: 'Bitter', serif;
  font-weight: 700;
  line-height: 1.2em;
}
h1 > a,
.h1 > a,
h1 strong > a,
.h1 strong > a {
  text-decoration: none;
}
h1 > a:link,
.h1 > a:link,
h1 strong > a:link,
.h1 strong > a:link,
h1 > a:focus,
.h1 > a:focus,
h1 strong > a:focus,
.h1 strong > a:focus,
h1 > a:visited,
.h1 > a:visited,
h1 strong > a:visited,
.h1 strong > a:visited,
h1 > a:active,
.h1 > a:active,
h1 strong > a:active,
.h1 strong > a:active {
  text-decoration: none;
}
h2,
.h2,
h2 strong,
.h2 strong {
  font-size: 30px;
  color: #444;
  font-family: 'Bitter', serif;
  font-weight: 700;
}
h2 > a,
.h2 > a,
h2 strong > a,
.h2 strong > a {
  text-decoration: none;
}
h2 > a:link,
.h2 > a:link,
h2 strong > a:link,
.h2 strong > a:link,
h2 > a:focus,
.h2 > a:focus,
h2 strong > a:focus,
.h2 strong > a:focus,
h2 > a:visited,
.h2 > a:visited,
h2 strong > a:visited,
.h2 strong > a:visited,
h2 > a:active,
.h2 > a:active,
h2 strong > a:active,
.h2 strong > a:active {
  text-decoration: none;
}
h3,
.h3,
h3 strong,
.h3 strong {
  font-size: 26.4px;
  color: #555555;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
h3 > a,
.h3 > a,
h3 strong > a,
.h3 strong > a {
  text-decoration: none;
}
h3 > a:link,
.h3 > a:link,
h3 strong > a:link,
.h3 strong > a:link,
h3 > a:focus,
.h3 > a:focus,
h3 strong > a:focus,
.h3 strong > a:focus,
h3 > a:visited,
.h3 > a:visited,
h3 strong > a:visited,
.h3 strong > a:visited,
h3 > a:active,
.h3 > a:active,
h3 strong > a:active,
.h3 strong > a:active {
  text-decoration: none;
}
h3.widget-title {
  font-size: 18px;
}
h4,
.h4 {
  font-size: 16.8px;
  color: #005777;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
h4 > a,
.h4 > a {
  text-decoration: none;
}
h4 > a:link,
.h4 > a:link,
h4 > a:focus,
.h4 > a:focus,
h4 > a:visited,
.h4 > a:visited,
h4 > a:active,
.h4 > a:active {
  text-decoration: none;
}
h5,
.h5 {
  font-size: 18.2px;
  color: #444;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
}
h5 > a,
.h5 > a {
  text-decoration: none;
}
h5 > a:link,
.h5 > a:link,
h5 > a:focus,
.h5 > a:focus,
h5 > a:visited,
.h5 > a:visited,
h5 > a:active,
.h5 > a:active {
  text-decoration: none;
}
h6,
.h6 {
  font-size: 14px;
  color: #555555;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
h6 > a,
.h6 > a {
  text-decoration: none;
}
h6 > a:link,
.h6 > a:link,
h6 > a:focus,
.h6 > a:focus,
h6 > a:visited,
.h6 > a:visited,
h6 > a:active,
.h6 > a:active {
  text-decoration: none;
}
.site-footer h1,
.site-footer .h1 {
  font-size: 36px;
  color: #999999;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
.site-footer h2,
.site-footer .h2 {
  font-size: 30px;
  color: #b3b3b3;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
.site-footer h2 > a,
.site-footer .h2 > a {
  text-decoration: none;
  color: #b3b3b3;
}
.site-footer h2 > a:link,
.site-footer .h2 > a:link,
.site-footer h2 > a:focus,
.site-footer .h2 > a:focus,
.site-footer h2 > a:visited,
.site-footer .h2 > a:visited,
.site-footer h2 > a:active,
.site-footer .h2 > a:active {
  text-decoration: none;
  color: #b3b3b3;
}
.site-footer h3,
.site-footer .h3 {
  font-size: 24px;
  color: #eeeeee;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
.site-footer h4,
.site-footer .h4 {
  font-size: 18px;
  color: #eeeeee;
  font-family: 'Lato', sans-serif;
  text-decoration: none;
}
.site-footer h4 > a,
.site-footer .h4 > a {
  text-decoration: none;
}
.site-footer h4 > a:link,
.site-footer .h4 > a:link,
.site-footer h4 > a:focus,
.site-footer .h4 > a:focus,
.site-footer h4 > a:visited,
.site-footer .h4 > a:visited,
.site-footer h4 > a:active,
.site-footer .h4 > a:active {
  text-decoration: none;
}
.site-footer h5,
.site-footer .h5 {
  font-size: 14px;
  color: #452a27;
  font-family: 'Lato', sans-serif;
}
.site-footer h6,
.site-footer .h6 {
  font-size: 12px;
  color: #311515;
  font-family: 'Lato', sans-serif;
}
ul, ol {
  padding: 10px 0 11px 3em;
  margin-left:20px;
}
p {
  margin: 0 0 11px;
}
.lead {
  margin-bottom: 22px;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
cite {
  font-style: normal;
}
.text-muted {
  color: #999999;
}
.text-primary {
  color: #003e55;
}
.text-primary:hover {
  color: #26000d;
}
.text-warning {
  color: #8a6d3b;
}
.text-warning:hover {
  color: #66512c;
}
.text-danger {
  color: #005777;
}
.text-danger:hover {
  color: #410015;
}
.text-success {
  color: #144040;
}
.text-success:hover {
  color: #081919;
}
.text-info {
  color: #3c4a66;
}
.text-info:hover {
  color: #293346;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.page-header {
  padding-bottom: 10px;
  margin: 44px 0 22px;
  border-bottom: 1px solid #eeeeee;
}
.page-header h1.page-title {
  margin-bottom: 0px;
}

.list-inline {
  padding-left: 0;
  padding-right: 0;
  list-style: none;
}
.list-inline > li:before {
  border-color: transparent;
  border-style: none;
  border-width: 0;
  content: none;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 22px;
}
dt,
dd {
  line-height: 1.618;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
  .dl-horizontal dd:before,
  .dl-horizontal dd:after {
    content: " ";
    display: table;
  }
  .dl-horizontal dd:after {
    clear: both;
  }
  .dl-horizontal dd:before,
  .dl-horizontal dd:after {
    content: " ";
    display: table;
  }
  .dl-horizontal dd:after {
    clear: both;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999999;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 11px 22px;
  margin: 0 0 22px;
  border-left: 5px solid #eeeeee;
}
blockquote p {
  font-weight: 400;
  line-height: 22px;
  font-style: italic;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote small,
blockquote .small {
  display: block;
  line-height: 1.618;
  color: #999999;
}
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
blockquote cite {
  font-weight: bold;
  font-size: 90%;
  line-height: 1.5;
}
blockquote cite:before {
  content: '\2014 \00A0';
}
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}
blockquote.pull-right p,
blockquote.pull-right small,
blockquote.pull-right .small {
  text-align: right;
}
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
blockquote.normal > p {
  font-size: 14px;
  line-height: 20.9px;
}
blockquote.quote-large > p {
  font-size: 17.5px;
  color: #666;
  line-height: 22px;
}
blockquote.callout-quote {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
  background: #eee;
  padding: 22px;
}
blockquote.curly-quote {
  border: none;
}
blockquote.curly-quote > p {
  padding-left: 22px;
}
blockquote.curly-quote:before {
  font-family: 'uw_';
  content: '\f10d';
  font-size: 17.5px;
  bottom: 5px;
  color: #AAAAAA;
  float: left;
  left: -2px;
  position: relative;
}
blockquote.callout-curly-quote {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
  background: #eee;
  padding: 22px;
  border: none;
}
blockquote.callout-curly-quote > p {
  padding-left: 22px;
}
blockquote.callout-curly-quote:before {
  font-family: 'uw_';
  content: '\f10d';
  font-size: 17.5px;
  bottom: 5px;
  color: #AAAAAA;
  float: left;
  left: -2px;
  position: relative;
}
blockquote:before,
blockquote:after {
  content: "";
}
address {
  margin-bottom: 22px;
  font-style: normal;
  line-height: 1.618;
}
.cfct-module {
  margin-top: 11px;
  margin-bottom: 22px;
}
.cfct-module h1,
.cfct-module h2,
.cfct-module h3,
.cfct-module h4,
.cfct-module h5,
.cfct-module h6,
.cfct-module .cfct-mod-title {
  margin-top: 0;
  margin-bottom: 11px;
}
.text-normal {
  font-size: 14px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h3.cfct-mod-title ~ h4 {
  letter-spacing: normal;
  text-transform: none;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  white-space: nowrap;
  border-radius: 4px;
}
pre {
  display: block;
  padding: 10.5px;
  margin: 0 0 11px;
  font-size: 13px;
  line-height: 1.618;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container:before,
.container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
.container:before,
.container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
  .header-logo-wrap {
    width:98.95vw;  
    position: absolute;
    left:0
  }
  .header-logo {
    width:750px !important;
    margin:auto;    
    margin-top:25px;    
  }    
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
  .header-logo-wrap {
    width:98.95vw;  
    position: absolute;
    left:0
  }
  .header-logo {
    width:970px !important;
    margin:auto;
    margin-top:25px;
  }    
}

@media (min-width: 1200px) {
  #page {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
  }
  #page {
    display: flex;
    overflow: initial;
  }
  #primary {
    flex-grow: 1;
  }
  #primary + #secondary {
    margin-left: 2%;
  }
  #secondary {
    width: 25%;
    flex-shrink: 0;
  }
  .container {
    width: 1170px;
    margin:auto;
  }
  .header-logo-wrap {
    width:98.95vw;  
    position: absolute;
    left:0
  }
  .header-logo {
    width:1170px !important;
    margin:auto;
  }  
}
@media (max-width: 1200px) {
  #page {
    margin-left:20px;
    margin-right:20px;
  } 
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row:before,
.row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.row:before,
.row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}

.wp-block-table td, .wp-block-table th {
  border: unset;
}
#content table {
  max-width: 100%;
  background-color: transparent;
}
th {
  text-align: left;
}
#content table caption {
  padding: 8px;
  background-color: #f7f7f7;
  font-size: 14px;
  color: #555555;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: left;
}
#content table {
  width: 100%;
  margin-bottom: 22px;
  border-bottom: 1px solid #ddd;
}
#content table > thead > tr > th,
#content table > tbody > tr > th,
#content table > tfoot > tr > th,
#content table > thead > tr > td,
#content table > tbody > tr > td,
#content table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.618;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
#content table > tbody th,
#content table thead th {
  border-bottom: 1px solid #005777 !important;
  border-top: 1px solid #005777 !important;
  border-left: 1px solid #005777 !important;
  border-right: 2px solid #003e55 !important;
  color: #fff;
  background-color: #005777 !important;
  font-weight: normal;
}
#content table > thead > tr > td {
  vertical-align: bottom;
  border-bottom: 2px solid #003e55 !important;
  border-top: 1px solid #005777 !important;
  border-left: 1px solid #005777 !important;
  border-right: 1px solid #005777 !important;
  color: #fff;
  background-color: #005777 !important;
}
#content table > caption + thead > tr:first-child > th,
#content table > colgroup + thead > tr:first-child > th,
#content table > thead:first-child > tr:first-child > th,
#content table > caption + thead > tr:first-child > td,
#content table > colgroup + thead > tr:first-child > td,
#content table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
#content table > tbody + tbody {
  border-top: 2px solid #ddd;
}
#content table #content table {
  background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
#content .table-no-borders {
  border: none;
}
#content .table-no-borders > thead > tr > th,
#content .table-no-borders > tbody > tr > th,
#content .table-no-borders > tfoot > tr > th,
#content .table-no-borders > thead > tr > td,
#content .table-no-borders > tbody > tr > td,
#content .table-no-borders > tfoot > tr > td {
  border-top: transparent;
}
#content .table-no-borders > thead > tr > th,
#content .table-no-borders > thead > tr > td {
  border: none;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f7f7f7;
}
.table-striped > thead ~ tbody > tr:nth-child(even) > td,
.table-striped > thead ~ tbody > tr:nth-child(even) > th {
  background-color: #f7f7f7;
}
.table-striped > thead ~ tbody > tr:nth-child(odd) > td,
.table-striped > thead ~ tbody > tr:nth-child(odd) > th {
  background-color: transparent;
}
#content .table-plaid {
  border: 1px solid #ddd;
}
#content .table-plaid > thead > tr > th,
#content .table-plaid > tbody > tr > th,
#content .table-plaid > tfoot > tr > th,
#content .table-plaid > thead > tr > td,
#content .table-plaid > tbody > tr > td,
#content .table-plaid > tfoot > tr > td {
  border-top: transparent;
}
#content .table-plaid > tbody > tr td:nth-child(odd) {
  background-color: #f7f7f7;
  border-left: transparent;
  border-right: transparent;
}
#content .table-plaid > tbody > tr:nth-child(odd) > td,
#content .table-plaid > tbody > tr:nth-child(odd) > th {
  background-color: #ececec;
}
#content .table-plaid > thead ~ tbody > tr:nth-child(even) > td {
  background-color: #ececec;
}
#content .table-plaid > thead ~ tbody > tr:nth-child(odd) > td,
#content .table-plaid > thead ~ tbody > tr:nth-child(odd) > th {
  background-color: transparent;
}
#content .table-v-striped {
  border-top: 1px solid #ddd;
}
#content .table-v-striped > thead > tr > th,
#content .table-v-striped > tbody > tr > th,
#content .table-v-striped > tfoot > tr > th,
#content .table-v-striped > thead > tr > td,
#content .table-v-striped > tbody > tr > td,
#content .table-v-striped > tfoot > tr > td {
  border-top: transparent;
}
#content .table-v-striped > tbody > tr td:nth-child(odd) {
  background-color: #f7f7f7;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
  float: none;
  display: table-cell;
}
.table > thead > tr > .active,
.table > tbody > tr > .active,
.table > tfoot > tr > .active,
.table > thead > .active > td,
.table > tbody > .active > td,
.table > tfoot > .active > td,
.table > thead > .active > th,
.table > tbody > .active > th,
.table > tfoot > .active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > .active:hover,
.table-hover > tbody > .active:hover > td,
.table-hover > tbody > .active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > .success,
.table > tbody > tr > .success,
.table > tfoot > tr > .success,
.table > thead > .success > td,
.table > tbody > .success > td,
.table > tfoot > .success > td,
.table > thead > .success > th,
.table > tbody > .success > th,
.table > tfoot > .success > th {
  background-color: #dfede9;
}
.table-hover > tbody > tr > .success:hover,
.table-hover > tbody > .success:hover > td,
.table-hover > tbody > .success:hover > th {
  background-color: #cfe4de;
}
.table > thead > tr > .danger,
.table > tbody > tr > .danger,
.table > tfoot > tr > .danger,
.table > thead > .danger > td,
.table > tbody > .danger > td,
.table > tfoot > .danger > td,
.table > thead > .danger > th,
.table > tbody > .danger > th,
.table > tfoot > .danger > th {
  background-color: #f5e9e9;
}
.table-hover > tbody > tr > .danger:hover,
.table-hover > tbody > .danger:hover > td,
.table-hover > tbody > .danger:hover > th {
  background-color: #eed7d7;
}
.table > thead > tr > .warning,
.table > tbody > tr > .warning,
.table > tfoot > tr > .warning,
.table > thead > .warning > td,
.table > tbody > .warning > td,
.table > tfoot > .warning > td,
.table > thead > .warning > th,
.table > tbody > .warning > th,
.table > tfoot > .warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > .warning:hover,
.table-hover > tbody > .warning:hover > td,
.table-hover > tbody > .warning:hover > th {
  background-color: #faf2cc;
}
#content .table-green,
#content .table-green,
#content .table-green {
  background-color: #dfede9 !important;
}
#content .table-blue,
#content table > tbody > tr.table-blue,
#content table > tbody > tr > td.table-blue {
  background-color: #cfd6e5 !important;
}
#content .table-yellow,
#content table > tbody > tr.table-yellow,
#content table > tbody > tr > td.table-yellow {
  background-color: #fcf8e3 !important;
}
#content .table-red,
.copy > table tbody > tr.table-red,
#content table > tbody > tr > td.table-red {
  background-color: #f5e9e9 !important;
}
#content .table-light-gray,
.copy tr.table-light-gray,
.copy td.table-light-gray {
  background-color: #f7f7f7 !important;
}
#content .table-dark-gray,
.copy tr.table-dark-gray,
.copy td.table-dark-gray {
  background-color: #ececec !important;
}
@media (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 16.5px;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive > table {
    margin-bottom: 0;
  }
  .table-responsive > table > thead > tr > th,
  .table-responsive > table > tbody > tr > th,
  .table-responsive > table > tfoot > tr > th,
  .table-responsive > table > thead > tr > td,
  .table-responsive > table > tbody > tr > td,
  .table-responsive > table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 22px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  /* IE8-9 */
  line-height: normal;
}
input[type="file"] {
  display: block;
}
select[multiple],
select[size] {
  height: auto;
}
select optgroup {
  font-size: inherit;
  font-style: inherit;
  font-family: inherit;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  height: auto;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.618;
  color: #555555;
  vertical-align: middle;
}
.form-control {
  display: block;
  width: 100%;
  height: 36px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.618;
  color: #555555;
  vertical-align: middle;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control:-moz-placeholder {
  color: #999999;
}
.form-control::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999999;
}
.form-control::-webkit-input-placeholder {
  color: #999999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
}
textarea.form-control {
  height: auto;
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  display: block;
  min-height: 22px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  vertical-align: middle;
}
.radio label,
.checkbox label {
  display: inline;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  float: left;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
.radio[disabled],
.radio-inline[disabled],
.checkbox[disabled],
.checkbox-inline[disabled],
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"],
fieldset[disabled] .radio,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm {
  height: auto;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg {
  height: auto;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #005777;
}
.has-error .form-control {
  border-color: #005777;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #410015;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #da0046;
}
.has-error .input-group-addon {
  color: #005777;
  border-color: #005777;
  background-color: #f5e9e9;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #144040;
}
.has-success .form-control {
  border-color: #144040;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #081919;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #2c8e8e;
}
.has-success .input-group-addon {
  color: #144040;
  border-color: #144040;
  background-color: #dfede9;
}
.form-control-static {
  margin-bottom: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
  }
  .form-inline select.form-control {
    width: auto;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
}
.form-horizontal .control-label,
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 29px;
}
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
  content: " ";
  display: table;
}
.form-horizontal .form-group:after {
  clear: both;
}
.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
  content: " ";
  display: table;
}
.form-horizontal .form-group:after {
  clear: both;
}
.form-horizontal .form-control-static {
  padding-top: 7px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
  }
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.618;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.btn:focus {
  outline: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus {
  color: #333;
  text-decoration: none;
}
.btn a {
  text-decoration: none;
}
.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}
.main-content .btn {
  text-decoration: none;
}
.main-content .btn:hover,
.main-content .btn:focus {
  text-decoration: none;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  color: #333;
  background-color: #ebebeb;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #fff;
}
.btn-primary {
  color: #fff;
  background-color: #003e55;
  border-color: #002d3d;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #005777;
  border-color: #002d3d;
}
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #003e55;
  border-color: #002d3d;
}
.btn-primary .badge {
  color: #003e55;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #b2465c;
  border-color: #a03f53;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #953a4d;
  border-color: #742e3c;
}
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #b2465c;
  border-color: #a03f53;
}
.btn-warning .badge {
  color: #b2465c;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #005777;
  border-color: #00719a;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #005777;
  border-color: #002d3d;
}
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #005777;
  border-color: #00719a;
}
.btn-danger .badge {
  color: #005777;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #144040;
  border-color: #0e2d2d;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #0a2121;
  border-color: #000000;
}
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #144040;
  border-color: #0e2d2d;
}
.btn-success .badge {
  color: #144040;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #eae0b5;
  border-color: #e4d8a1;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #e1d395;
  border-color: #d7c471;
}
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #eae0b5;
  border-color: #e4d8a1;
}
.btn-info .badge {
  color: #eae0b5;
  background-color: #fff;
}
.btn-link {
  color: #005777;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #005777;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #999999;
  text-decoration: none;
}
.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
.btn-sm,
#comments .comment-reply-link {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon:empty {
  width: 1em;
}
.glyphicon-asterisk:before {
  content: "\2a";
}
.glyphicon-plus:before {
  content: "\2b";
}
.glyphicon-euro:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.dropdown-menu > li:before {
  border-color: transparent;
  border-style: none;
  border-width: 0;
  content: none;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 10px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.618;
  color: #005777;
  white-space: nowrap;
  text-transform: capitalize;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #fff;
  background-color: #005777;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #003e55;
  text-decoration: none;
  outline: 0;
  background-color: #eeeeee;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #999999;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.618;
  color: #999999;
}
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
  outline: none;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar:before,
.btn-toolbar:after {
  content: " ";
  display: table;
}
.btn-toolbar:after {
  clear: both;
}
.btn-toolbar:before,
.btn-toolbar:after {
  content: " ";
  display: table;
}
.btn-toolbar:after {
  clear: both;
}
.btn-toolbar .btn-group {
  float: left;
}
.btn-toolbar > .btn + .btn,
.btn-toolbar > .btn-group + .btn,
.btn-toolbar > .btn + .btn-group,
.btn-toolbar > .btn-group + .btn-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}
.btn-group-vertical > .btn-group:after {
  clear: both;
}
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}
.btn-group-vertical > .btn-group:after {
  clear: both;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child > .btn:last-child,
.btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
  display: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  white-space: nowrap;
}
.input-group-btn:first-child > .btn {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn {
  margin-left: -1px;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -4px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:active {
  z-index: 2;
}
.nav {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  list-style: none;
}
.nav:before,
.nav:after {
  content: " ";
  display: table;
}
.nav:after {
  clear: both;
}
.nav:before,
.nav:after {
  content: " ";
  display: table;
}
.nav:after {
  clear: both;
}
.nav > li:before {
  border-color: transparent;
  border-style: none;
  border-width: 0;
  content: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #999999;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #999999;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #005777;
}
.nav .nav-divider {
  height: 1px;
  margin: 10px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.main-content .nav > li > a {
  font-weight: 600;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.618;
  border: 1px solid transparent;
  text-decoration: none;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #003e55;
}
.bs-tabs .nav-pills > li {
  float: left;
}
.bs-tabs .nav-pills > li > a {
  border-radius: 4px;
}
.bs-tabs .nav-pills > li + li {
  margin-left: 2px;
}
.bs-tabs .nav-pills > li.active > a,
.bs-tabs .nav-pills > li.active > a:active {
  color: #555555;
  background-color: #eeeeee;
}
.bs-tabs .nav-pills > li.active > a:hover {
  color: #333333;
  background-color: #eeeeee;
}
.bs-tabs .nav-pills > li.active > a:focus {
  color: #555555;
  background-color: #F7F7F7;
  font-weight: normal;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 0;
  border: 1px solid transparent;
}
.navbar:before,
.navbar:after {
  content: " ";
  display: table;
}
.navbar:after {
  clear: both;
}
.navbar:before,
.navbar:after {
  content: " ";
  display: table;
}
.navbar:after {
  clear: both;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
.navbar-header:before,
.navbar-header:after {
  content: " ";
  display: table;
}
.navbar-header:after {
  clear: both;
}
.navbar-header:before,
.navbar-header:after {
  content: " ";
  display: table;
}
.navbar-header:after {
  clear: both;
}
@media (min-width: 992px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  max-height: 340px;
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 0px solid transparent;
  box-shadow: inset 0 0px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse:before,
.navbar-collapse:after {
  content: " ";
  display: table;
}
.navbar-collapse:after {
  clear: both;
}
.navbar-collapse:before,
.navbar-collapse:after {
  content: " ";
  display: table;
}
.navbar-collapse:after {
  clear: both;
}
.navbar-collapse.in {
  /*  overflow-y: auto;*/
}
@media (min-width: 992px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
    margin-top:20px;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
.container > .navbar-header,
.container > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 992px) {
  .container > .navbar-header,
  .container > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  padding: 14px 15px;
  font-size: 18px;
  line-height: 22px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 992px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 22px;
}
@media (max-width: 991px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 22px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 992px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .navbar-nav.navbar-right:last-child {
    margin-right: -15px;
  }
}
@media (min-width: 992px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
  }
}
.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 7px;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
  }
  .navbar-form select.form-control {
    width: auto;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: none;
  }
  .navbar-form.navbar-right:last-child {
    margin-right: -15px;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-nav.pull-right > li > .dropdown-menu,
.navbar-nav > li > .dropdown-menu.pull-right {
  left: auto;
  right: 0;
}
.navbar-btn {
  margin-top: 7px;
  margin-bottom: 7px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 14px;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
  .navbar-text.navbar-right:last-child {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: transparent;
  border-color: none;
}
.navbar-default .navbar-brand {
  color: #fff;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #fff;
}
.navbar-default .navbar-nav > li > a {
  color: #fff;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #eee;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #eee;
  background-color: rgba(0, 0, 0, 0);
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: none;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #005777;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: none;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: rgba(0, 0, 0, 0);
  color: #eee;
}
@media (max-width: 991px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #fff;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #eee;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #eee;
    background-color: rgba(0, 0, 0, 0);
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #fff;
}
.navbar-default .navbar-link:hover {
  color: #eee;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #999999;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #999999;
}
.navbar-inverse .navbar-nav > li > a {
  color: #999999;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #080808;
  color: #fff;
}
@media (max-width: 991px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #999999;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #999999;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.breadcrumb {
  padding: 8px 10px 8px 0px;
  margin-bottom: 0;
  list-style: none;
  font-size: 11.66666667px;
  color: #555555;
  background-color: none;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li > a {
  text-decoration: underline;
}
.breadcrumb > li > a:hover,
.breadcrumb > li > a:focus {
  text-decoration: none;
}
.breadcrumb > li + li:before {
  content: " ";
  margin-left:30px;
}
.breadcrumb > .active {
  color: #999999;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 22px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.618;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  background-color: #eeeeee;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  background-color: #003e55;
  border-color: #003e55;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #999999;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 22px 0;
  list-style: none;
  text-align: center;
}
.pager:before,
.pager:after {
  content: " ";
  display: table;
}
.pager:after {
  clear: both;
}
.pager:before,
.pager:after {
  content: " ";
  display: table;
}
.pager:after {
  clear: both;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #999999;
  background-color: #fff;
  cursor: not-allowed;
}
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
.label[href]:hover,
.label[href]:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #999999;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #808080;
}
.label-primary {
  background-color: #003e55;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #26000d;
}
.label-success {
  background-color: #144040;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #081919;
}
.label-info {
  background-color: #eae0b5;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #dfcf8d;
}
.label-warning {
  background-color: #b2465c;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #8d3849;
}
.label-danger {
  background-color: #005777;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #003e55;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: baseline;
  white-space: nowrap;
  text-align: center;
  background-color: #999999;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #005777;
  background-color: #fff;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding: 30px;
  margin-bottom: 30px;
  font-size: 21px;
  font-weight: 200;
  line-height: 2.427;
  color: inherit;
  background-color: #eeeeee;
}
.jumbotron h1,
.jumbotron .h1 {
  line-height: 1;
  color: inherit;
}
.jumbotron p {
  line-height: 1.4;
}
.jumbotron h4,
.jumbotron .h4 {
  letter-spacing: normal;
  text-transform: none;
  font-size: 20px;
  font-weight: 900;
}
.container .jumbotron {
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
/* Callout Box 'lil-jumbo' styled like lil jumbotrons */
.lil-jumbo {
  background: none repeat scroll 0 0 #EEEEEE;
  border-radius: 6px;
  margin-top: 20px;
  padding: 20px;
}
.lil-jumbo h4 {
  letter-spacing: normal;
  text-transform: none;
  font-weight: 900;
}
.callout h4 {
  letter-spacing: normal;
  text-transform: none;
  font-weight: 900;
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 22px;
  line-height: 1.618;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #005777;
}
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}
.alert {
  padding: 15px;
  margin-bottom: 12px;
  margin-top:10px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.system-policy .alert {
  display: table;
}
.alert-dismissable {
  padding-right: 35px;
}
.alert-dismissable .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  background-color: #dfede9;
  border-color: #cfe4da;
  color: #144040;
}
.alert-success hr {
  border-top-color: #bedbce;
}
.alert-success .alert-link {
  color: #081919;
}
.alert-info {
  background-color: #cfd6e5;
  border-color: #b8c8d8;
  color: #3c4a66;
}
.alert-info hr {
  border-top-color: #a7bbcf;
}
.alert-info .alert-link {
  color: #293346;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f5e9e9;
  border-color: #eed7db;
  color: #005777;
}
.alert-danger hr {
  border-top-color: #e6c5ca;
}
.alert-danger .alert-link {
  color: #410015;
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 22px;
  margin-bottom: 22px;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 22px;
  color: #fff;
  text-align: center;
  background-color: #003e55;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  transition: width 0.6s ease;
}
.progress-striped .progress-bar {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}
.progress.active .progress-bar {
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #144040;
}
.progress-striped .progress-bar-success {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #eae0b5;
}
.progress-striped .progress-bar-info {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #b2465c;
}
.progress-striped .progress-bar-warning {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #005777;
}
.progress-striped .progress-bar-danger {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media,
.media .media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media-object {
  display: block;
}
.media-heading {
  margin: 0 0 5px;
}
.media > .pull-left {
  margin-right: 10px;
}
.media > .pull-right {
  margin-left: 10px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
a.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
a.list-group-item:focus {
  text-decoration: none;
  background-color: #f5f5f5;
}
a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #003e55;
  border-color: #003e55;
}
a.list-group-item.active .list-group-item-heading,
a.list-group-item.active:hover .list-group-item-heading,
a.list-group-item.active:focus .list-group-item-heading {
  color: inherit;
}
a.list-group-item.active .list-group-item-text,
a.list-group-item.active:hover .list-group-item-text,
a.list-group-item.active:focus .list-group-item-text {
  color: #ff2672;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 22px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
  padding: 15px;
}
.panel-body:before,
.panel-body:after {
  content: " ";
  display: table;
}
.panel-body:after {
  clear: both;
}
.panel-body:before,
.panel-body:after {
  content: " ";
  display: table;
}
.panel-body:after {
  clear: both;
}
.panel > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item {
  border-width: 1px 0;
}
.panel > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.panel > .list-group .list-group-item:last-child {
  border-bottom: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table {
  margin-bottom: 0;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child th,
.panel > .table > tbody:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:last-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:last-child > th,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-bordered > thead > tr:last-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  border-bottom: 0;
}
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
  letter-spacing: normal;
  text-transform: none;
}
.panel-title > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
  overflow: hidden;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse .panel-body {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #003e55;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #003e55;
  border-color: #003e55;
}
.panel-primary > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #003e55;
}
.panel-primary > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #003e55;
}
.panel-success {
  border-color: #cfe4da;
}
.panel-success > .panel-heading {
  color: #144040;
  background-color: #dfede9;
  border-color: #cfe4da;
}
.panel-success > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #cfe4da;
}
.panel-success > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #cfe4da;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #eed7db;
}
.panel-danger > .panel-heading {
  color: #005777;
  background-color: #f5e9e9;
  border-color: #eed7db;
}
.panel-danger > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #eed7db;
}
.panel-danger > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #eed7db;
}
.panel-info {
  border-color: #b8c8d8;
}
.panel-info > .panel-heading {
  color: #3c4a66;
  background-color: #cfd6e5;
  border-color: #b8c8d8;
}
.panel-info > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #b8c8d8;
}
.panel-info > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #b8c8d8;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
}
.modal.fade .modal-dialog {
  transform: translate(0, -25%);
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  transform: translate(0, 0);
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  z-index: 1050;
}
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: none;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.618px;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.618;
}
.modal-body {
  position: relative;
  padding: 20px;
}
.modal-footer {
  margin-top: 15px;
  padding: 19px 20px 20px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}
.modal-footer:after {
  clear: both;
}
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
}
.uwsa-system-roster .tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
}
.uwsa-system-roster .tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.uwsa-system-roster .tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.uwsa-system-roster .tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.uwsa-system-roster .tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.uwsa-system-roster .tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.uwsa-system-roster .tooltip-inner {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #535353;
  border-radius: 4px;
}
.uwsa-system-roster .tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.uwsa-system-roster .tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
}
.uwsa-system-roster .tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: #535353;
}
.uwsa-system-roster .tooltip.top-right .tooltip-arrow {
  bottom: 0;
  right: 5px;
  border-width: 5px 5px 0;
  border-top-color: #535353;
}
.uwsa-system-roster .tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #535353;
}
.uwsa-system-roster .tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #535353;
}
.uwsa-system-roster .tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
}
.uwsa-system-roster .tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #535353;
}
.uwsa-system-roster .tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #535353;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  max-width: 276px;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #005777;
  border-bottom: 1px solid #28000d;
  border-radius: 5px 5px 0 0;
  color: #FFFFFF;
}
.popover-content {
  padding: 9px 14px;
}
.popover-content > img {
  margin: 5px 10px 5px 0px;
  float: left;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.popover .arrow,
.popover .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover .arrow {
  border-width: 11px;
}
.popover .arrow:after {
  border-width: 10px;
  content: "";
}
.popover.top .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
.popover.right .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
.popover.bottom .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-inner > .item {
  display: none;
  position: relative;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-control.left {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control:hover,
.carousel-control:focus {
  outline: none;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  font-family: serif;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
}
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicons-chevron-left,
  .carousel-control .glyphicons-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    font-size: 30px;
  }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.carousel .fade-carousel .item {
  transition: 2s ease-in-out opacity;
  left: 0 !important;
}
.carousel .fade-carousel .next.left,
.carousel .fade-carousel .prev.right {
  opacity: 1;
  z-index: 1;
}
.carousel .fade-carousel .active.left,
.carousel .fade-carousel .active.right {
  opacity: 0;
  z-index: 2;
}
.uwsa-module-carousel:before,
.uwsa-module-carousel:after {
  content: " ";
  display: table;
}
.uwsa-module-carousel:after {
  clear: both;
}
.uwsa-module-carousel:before,
.uwsa-module-carousel:after {
  content: " ";
  display: table;
}
.uwsa-module-carousel:after {
  clear: both;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.affix {
  position: fixed;
}
.visible-xs,
tr.visible-xs,
th.visible-xs,
td.visible-xs {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-xs.visible-sm {
    display: block !important;
  }
  table.visible-xs.visible-sm {
    display: table;
  }
  tr.visible-xs.visible-sm {
    display: table-row !important;
  }
  th.visible-xs.visible-sm,
  td.visible-xs.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-xs.visible-md {
    display: block !important;
  }
  table.visible-xs.visible-md {
    display: table;
  }
  tr.visible-xs.visible-md {
    display: table-row !important;
  }
  th.visible-xs.visible-md,
  td.visible-xs.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-xs.visible-lg {
    display: block !important;
  }
  table.visible-xs.visible-lg {
    display: table;
  }
  tr.visible-xs.visible-lg {
    display: table-row !important;
  }
  th.visible-xs.visible-lg,
  td.visible-xs.visible-lg {
    display: table-cell !important;
  }
}
.visible-sm,
tr.visible-sm,
th.visible-sm,
td.visible-sm {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-sm.visible-xs {
    display: block !important;
  }
  table.visible-sm.visible-xs {
    display: table;
  }
  tr.visible-sm.visible-xs {
    display: table-row !important;
  }
  th.visible-sm.visible-xs,
  td.visible-sm.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-sm.visible-md {
    display: block !important;
  }
  table.visible-sm.visible-md {
    display: table;
  }
  tr.visible-sm.visible-md {
    display: table-row !important;
  }
  th.visible-sm.visible-md,
  td.visible-sm.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-sm.visible-lg {
    display: block !important;
  }
  table.visible-sm.visible-lg {
    display: table;
  }
  tr.visible-sm.visible-lg {
    display: table-row !important;
  }
  th.visible-sm.visible-lg,
  td.visible-sm.visible-lg {
    display: table-cell !important;
  }
}
.visible-md,
tr.visible-md,
th.visible-md,
td.visible-md {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-md.visible-xs {
    display: block !important;
  }
  table.visible-md.visible-xs {
    display: table;
  }
  tr.visible-md.visible-xs {
    display: table-row !important;
  }
  th.visible-md.visible-xs,
  td.visible-md.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-md.visible-sm {
    display: block !important;
  }
  table.visible-md.visible-sm {
    display: table;
  }
  tr.visible-md.visible-sm {
    display: table-row !important;
  }
  th.visible-md.visible-sm,
  td.visible-md.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-md.visible-lg {
    display: block !important;
  }
  table.visible-md.visible-lg {
    display: table;
  }
  tr.visible-md.visible-lg {
    display: table-row !important;
  }
  th.visible-md.visible-lg,
  td.visible-md.visible-lg {
    display: table-cell !important;
  }
}
.visible-lg,
tr.visible-lg,
th.visible-lg,
td.visible-lg {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-lg.visible-xs {
    display: block !important;
  }
  table.visible-lg.visible-xs {
    display: table;
  }
  tr.visible-lg.visible-xs {
    display: table-row !important;
  }
  th.visible-lg.visible-xs,
  td.visible-lg.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-lg.visible-sm {
    display: block !important;
  }
  table.visible-lg.visible-sm {
    display: table;
  }
  tr.visible-lg.visible-sm {
    display: table-row !important;
  }
  th.visible-lg.visible-sm,
  td.visible-lg.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-lg.visible-md {
    display: block !important;
  }
  table.visible-lg.visible-md {
    display: table;
  }
  tr.visible-lg.visible-md {
    display: table-row !important;
  }
  th.visible-lg.visible-md,
  td.visible-lg.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
.hidden-xs {
  display: block !important;
}
table.hidden-xs {
  display: table;
}
tr.hidden-xs {
  display: table-row !important;
}
th.hidden-xs,
td.hidden-xs {
  display: table-cell !important;
}
@media (max-width: 767px) {
  .hidden-xs,
  tr.hidden-xs,
  th.hidden-xs,
  td.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-xs.hidden-sm,
  tr.hidden-xs.hidden-sm,
  th.hidden-xs.hidden-sm,
  td.hidden-xs.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-xs.hidden-md,
  tr.hidden-xs.hidden-md,
  th.hidden-xs.hidden-md,
  td.hidden-xs.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-xs.hidden-lg,
  tr.hidden-xs.hidden-lg,
  th.hidden-xs.hidden-lg,
  td.hidden-xs.hidden-lg {
    display: none !important;
  }
}
.hidden-sm {
  display: block !important;
}
table.hidden-sm {
  display: table;
}
tr.hidden-sm {
  display: table-row !important;
}
th.hidden-sm,
td.hidden-sm {
  display: table-cell !important;
}
@media (max-width: 767px) {
  .hidden-sm.hidden-xs,
  tr.hidden-sm.hidden-xs,
  th.hidden-sm.hidden-xs,
  td.hidden-sm.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm,
  tr.hidden-sm,
  th.hidden-sm,
  td.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-sm.hidden-md,
  tr.hidden-sm.hidden-md,
  th.hidden-sm.hidden-md,
  td.hidden-sm.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-sm.hidden-lg,
  tr.hidden-sm.hidden-lg,
  th.hidden-sm.hidden-lg,
  td.hidden-sm.hidden-lg {
    display: none !important;
  }
}
.hidden-md {
  display: block !important;
}
table.hidden-md {
  display: table;
}
tr.hidden-md {
  display: table-row !important;
}
th.hidden-md,
td.hidden-md {
  display: table-cell !important;
}
@media (max-width: 767px) {
  .hidden-md.hidden-xs,
  tr.hidden-md.hidden-xs,
  th.hidden-md.hidden-xs,
  td.hidden-md.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md.hidden-sm,
  tr.hidden-md.hidden-sm,
  th.hidden-md.hidden-sm,
  td.hidden-md.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md,
  tr.hidden-md,
  th.hidden-md,
  td.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-md.hidden-lg,
  tr.hidden-md.hidden-lg,
  th.hidden-md.hidden-lg,
  td.hidden-md.hidden-lg {
    display: none !important;
  }
}
.hidden-lg {
  display: block !important;
}
table.hidden-lg {
  display: table;
}
tr.hidden-lg {
  display: table-row !important;
}
th.hidden-lg,
td.hidden-lg {
  display: table-cell !important;
}
@media (max-width: 767px) {
  .hidden-lg.hidden-xs,
  tr.hidden-lg.hidden-xs,
  th.hidden-lg.hidden-xs,
  td.hidden-lg.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-lg.hidden-sm,
  tr.hidden-lg.hidden-sm,
  th.hidden-lg.hidden-sm,
  td.hidden-lg.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg.hidden-md,
  tr.hidden-lg.hidden-md,
  th.hidden-lg.hidden-md,
  td.hidden-lg.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg,
  tr.hidden-lg,
  th.hidden-lg,
  td.hidden-lg {
    display: none !important;
  }
}
.visible-print,
tr.visible-print,
th.visible-print,
td.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
  .hidden-print,
  tr.hidden-print,
  th.hidden-print,
  td.hidden-print {
    display: none !important;
  }
}
.deepGray {
  background: #444;
  color: #fff;
}
.deepGrayTop {
  background: #444;
  padding-top: .75em;
  color: #fff;
  min-height: 60px;
}
.deepRedTop {
  background: #002d3d;
  color: #fff;
  min-height: 40px;
}
.mutedRed {
  background: #452a27;
}
.deepRed {
  background: #311515;
  color: #fff;
}
.offRed {
  background: #003e55;
}
.systemRed {
  background: #005777;
  color: #fff;
}
.mutedLtRed {
  background: #b2465c;
}
/* components (for lac of a better term, this is under js on the bootstrap documentation tho) */
.bs-component {
  margin: 20px 0px;
  /* wraps all bootstrap content components */
}
/* accordion */
.accordion-all-buttons {
  padding-bottom: 11px;
}
.accordion-all-buttons > .btn-primary {
  margin-right: 5.5px;
  font-size: 12px;
}
.bs-accordion-min .panel-collapse {
  border: none;
}
.bs-accordion-min .panel {
  box-shadow: none;
}
.bs-accordion-min .panel-body {
  border-width: 0px;
  border-color: transparent;
  padding: 15px 10px;
}
.bs-accordion-min .panel-default {
  border: none;
}
.bs-accordion-min .panel-default > .panel-heading {
  background-color: transparent;
  border-color: none;
  border-width: 0px;
  padding: 5px 0px 10px 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.bs-accordion-min .panel-default > .panel-heading h4.panel-title > a,
.bs-accordion-min .panel-default > .panel-heading h4.panel-title > button {
  color: #333333;
  font-size: 14px;
  border: none;
  background: transparent;
  font-weight: bold;
  padding: 0 0 0 0;
  text-align: left;
}
.bs-accordion-min h4.panel-title > a.collapsed,
.bs-accordion-min h4.panel-title > button.collapsed {
  color: #333333;
  position: relative;
  left: 1.2em;
}
.bs-accordion-min h4.panel-title > a.collapsed:before,
.bs-accordion-min h4.panel-title > button.collapsed:before {
  border-color: rgba(0, 0, 0, 0) #005777;
  border-style: solid;
  border-width: 0.45em 0 0.45em 0.45em;
  content: "";
  display: block;
  height: 0;
  line-height: 0;
  margin: 0 0 -16px;
  position: relative;
  width: 0;
  left: -1.2em;
}
.bs-accordion-min h4.panel-title > a,
.bs-accordion-min h4.panel-title > button {
  position: relative;
  left: 1.2em;
}
.bs-accordion-min h4.panel-title > a:before,
.bs-accordion-min h4.panel-title > button:before {
  border-left: 0.45em solid transparent;
  border-right: 0.45em solid transparent;
  border-top: 0.45em solid #005777;
  content: "";
  display: block;
  height: 0;
  line-height: 0;
  margin: 0 0 -14px;
  position: relative;
  width: 0;
  left: -1.2em;
}
.bs-accordion h4.panel-title {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 0;
}
.bs-accordion h4.panel-title > a,
.bs-accordion h4.panel-title > button {
  color: #003e55;
  font-weight: bold;
  text-decoration: none;
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
}
.bs-accordion h4.panel-title > a:focus,
.bs-accordion h4.panel-title > button:focus {
  outline: dotted currentColor thin;
}
/* tabs */
.bs-tabs .tab-pane {
  margin: 10px 0px;
}
@media (max-width: 991px) {
  .logo {
    max-width: 90%;
  }

}
@media (max-width: 767px) {
  .logo {
    min-width: 75px;
    max-width: 65%;
  }
}
#footer .fax,
#footer .phone,
#footer .email {
  position: relative  ;
}
#footer .phone {
  font-size: 118%;
  top: 1px;
  right: -7px;
}
#footer .fax {
  font-size: 110%;
  right: -7px;
  margin-left: 2px;
  /* padding-right: 2px; */
}
#footer .email {
  font-size: 110%;
  right: -7px;
  margin-left: 2px;
}
.uwsa-rich-text:before,
.uwsa-rich-text:after {
  content: " ";
  display: table;
}
.uwsa-rich-text:after {
  clear: both;
}
.uwsa-rich-text:before,
.uwsa-rich-text:after {
  content: " ";
  display: table;
}
.uwsa-rich-text:after {
  clear: both;
}
.accordions-showall span {
  margin-right: 5px;
  font-style: italic;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type=submit] {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.618;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.gform_wrapper .gform_footer input.button:focus,
.gform_wrapper .gform_footer input[type=submit]:focus {
  outline: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.gform_wrapper .gform_footer input.button:hover,
.gform_wrapper .gform_footer input[type=submit]:hover,
.gform_wrapper .gform_footer input.button:focus,
.gform_wrapper .gform_footer input[type=submit]:focus {
  color: #333;
  text-decoration: none;
}
.gform_wrapper .gform_footer input.button a,
.gform_wrapper .gform_footer input[type=submit] a {
  text-decoration: none;
}
.gform_wrapper .gform_footer input.button:active,
.gform_wrapper .gform_footer input[type=submit]:active,
.gform_wrapper .gform_footer input.button.active,
.gform_wrapper .gform_footer input[type=submit].active {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.gform_wrapper .gform_footer input.button.disabled,
.gform_wrapper .gform_footer input[type=submit].disabled,
.gform_wrapper .gform_footer input.button[disabled],
.gform_wrapper .gform_footer input[type=submit][disabled],
fieldset[disabled] .gform_wrapper .gform_footer input.button,
fieldset[disabled] .gform_wrapper .gform_footer input[type=submit] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}
.gform_wrapper .gform_footer input.button:hover,
.gform_wrapper .gform_footer input[type=submit]:hover,
.gform_wrapper .gform_footer input.button:focus,
.gform_wrapper .gform_footer input[type=submit]:focus,
.gform_wrapper .gform_footer input.button:active,
.gform_wrapper .gform_footer input[type=submit]:active,
.gform_wrapper .gform_footer input.button.active,
.gform_wrapper .gform_footer input[type=submit].active,
.open .dropdown-toggle.gform_wrapper .gform_footer input.button,
.open .dropdown-toggle.gform_wrapper .gform_footer input[type=submit] {
  color: #333;
  background-color: #ebebeb;
  border-color: #adadad;
}
.gform_wrapper .gform_footer input.button:active,
.gform_wrapper .gform_footer input[type=submit]:active,
.gform_wrapper .gform_footer input.button.active,
.gform_wrapper .gform_footer input[type=submit].active,
.open .dropdown-toggle.gform_wrapper .gform_footer input.button,
.open .dropdown-toggle.gform_wrapper .gform_footer input[type=submit] {
  background-image: none;
}
.gform_wrapper .gform_footer input.button.disabled,
.gform_wrapper .gform_footer input[type=submit].disabled,
.gform_wrapper .gform_footer input.button[disabled],
.gform_wrapper .gform_footer input[type=submit][disabled],
fieldset[disabled] .gform_wrapper .gform_footer input.button,
fieldset[disabled] .gform_wrapper .gform_footer input[type=submit],
.gform_wrapper .gform_footer input.button.disabled:hover,
.gform_wrapper .gform_footer input[type=submit].disabled:hover,
.gform_wrapper .gform_footer input.button[disabled]:hover,
.gform_wrapper .gform_footer input[type=submit][disabled]:hover,
fieldset[disabled] .gform_wrapper .gform_footer input.button:hover,
fieldset[disabled] .gform_wrapper .gform_footer input[type=submit]:hover,
.gform_wrapper .gform_footer input.button.disabled:focus,
.gform_wrapper .gform_footer input[type=submit].disabled:focus,
.gform_wrapper .gform_footer input.button[disabled]:focus,
.gform_wrapper .gform_footer input[type=submit][disabled]:focus,
fieldset[disabled] .gform_wrapper .gform_footer input.button:focus,
fieldset[disabled] .gform_wrapper .gform_footer input[type=submit]:focus,
.gform_wrapper .gform_footer input.button.disabled:active,
.gform_wrapper .gform_footer input[type=submit].disabled:active,
.gform_wrapper .gform_footer input.button[disabled]:active,
.gform_wrapper .gform_footer input[type=submit][disabled]:active,
fieldset[disabled] .gform_wrapper .gform_footer input.button:active,
fieldset[disabled] .gform_wrapper .gform_footer input[type=submit]:active,
.gform_wrapper .gform_footer input.button.disabled.active,
.gform_wrapper .gform_footer input[type=submit].disabled.active,
.gform_wrapper .gform_footer input.button[disabled].active,
.gform_wrapper .gform_footer input[type=submit][disabled].active,
fieldset[disabled] .gform_wrapper .gform_footer input.button.active,
fieldset[disabled] .gform_wrapper .gform_footer input[type=submit].active {
  background-color: #fff;
  border-color: #ccc;
}
.gform_wrapper .gform_footer input.button .badge,
.gform_wrapper .gform_footer input[type=submit] .badge {
  color: #fff;
  background-color: #fff;
}
/* Accountability Report Dashboard Icon styles */
.row.lil-jumbo {
  margin-bottom: 30px;
}
.copy .accountability-icons {
  /*
  a.icon {
  position: absolute;
  display: block;
  height: 200px;
  width: 200px;

}
  a.icon:hover {
  text-decoration: none;

}
  a.icon span.icon-text {
  display: none;
}
  */
}
.copy .accountability-icons .icon-div {
  height: 200px;
  width: 200px;
  padding-left: 16px;
  position: absolute;
}
.copy .accountability-icons .icon-div a {
  text-decoration: none;
  color: transparent;
  font-size: 1px;
  width: 160px;
  height: 160px;
  display: block;
}
.copy .accountability-icons h3 {
  font-size: 1.3em;
  line-height: 2.2;
  text-align: center;
  max-width: 200px;
  color: #005777;
}
.copy .accountability-icons .font-icons {
  color: #777;
  font-size: 400%;
  display: block;
  max-width: 160px;
  max-height: 160px;
  font-family: uw_;
  background: none repeat scroll 0px 0px #EEE;
  border-radius: 6px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.copy .accountability-icons .about:before {
  content: '\e803';
  font-size: 90px !important;
  line-height: 1.78;
  padding-left: 36px !important;
  color: #777;
  font-size: 400%;
  display: block;
  max-width: 160px;
  max-height: 160px;
  font-family: uw_;
  background: none repeat scroll 0px 0px #EEE;
  border-radius: 6px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.copy .accountability-icons .access:before {
  content: '\e81b';
  color: #777;
  font-size: 400%;
  display: block;
  max-width: 160px;
  max-height: 160px;
  font-family: uw_;
  background: none repeat scroll 0px 0px #EEE;
  border-radius: 6px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.copy .accountability-icons .completion:before {
  content: '\e81c';
  color: #777;
  font-size: 400%;
  display: block;
  max-width: 160px;
  max-height: 160px;
  font-family: uw_;
  background: none repeat scroll 0px 0px #EEE;
  border-radius: 6px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 34px !important;
}
.copy .accountability-icons .cost:before {
  content: '\e81a';
  color: #777;
  font-size: 400%;
  display: block;
  max-width: 160px;
  max-height: 160px;
  font-family: uw_;
  background: none repeat scroll 0px 0px #EEE;
  border-radius: 6px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.copy .accountability-icons .undergrad:before {
  content: '\e815';
  color: #777;
  font-size: 400%;
  display: block;
  max-width: 160px;
  max-height: 160px;
  font-family: uw_;
  background: none repeat scroll 0px 0px #EEE;
  border-radius: 6px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.copy .accountability-icons .faculty:before {
  content: '\e801';
  color: #777;
  font-size: 400%;
  display: block;
  max-width: 160px;
  max-height: 160px;
  font-family: uw_;
  background: none repeat scroll 0px 0px #EEE;
  border-radius: 6px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.copy .accountability-icons .economic:before {
  content: '\e807';
  color: #777;
  font-size: 400%;
  display: block;
  max-width: 160px;
  max-height: 160px;
  font-family: uw_;
  background: none repeat scroll 0px 0px #EEE;
  border-radius: 6px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.copy .accountability-icons .facilities:before {
  content: '\e819';
  color: #777;
  font-size: 400%;
  display: block;
  max-width: 160px;
  max-height: 160px;
  font-family: uw_;
  background: none repeat scroll 0px 0px #EEE;
  border-radius: 6px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.copy .accountability-icons .institution:before {
  content: '\e81d';
  color: #777;
  font-size: 400%;
  display: block;
  max-width: 160px;
  max-height: 160px;
  font-family: uw_;
  background: none repeat scroll 0px 0px #EEE;
  border-radius: 6px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.copy .accountability-icons .tooltip-inner {
  text-align: left;
}
.copy .sap-site-icons h3 {
  font-size: 1.3em;
  line-height: 2.2;
  text-align: center;
  max-width: 200px;
}
.copy .sap-site-icons .font-icons {
  color: #777;
  font-size: 400%;
  display: block;
  max-width: 160px;
  font-family: uw_;
  background: none repeat scroll 0px 0px #EEE;
  border-radius: 6px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.copy .sap-site-icons a {
  padding-top: 180px;
  margin-top: -180px;
}
.copy .sap-site-icons .gethelp-link:before {
  content: '\e814';
  color: #777;
  font-size: 400%;
  display: block;
  max-width: 160px;
  font-family: uw_;
  background: none repeat scroll 0px 0px #EEE;
  border-radius: 6px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.copy .sap-site-icons .uwsystem-link:before {
  content: '\e803';
  color: #777;
  font-size: 400%;
  display: block;
  max-width: 160px;
  font-family: uw_;
  background: none repeat scroll 0px 0px #EEE;
  border-radius: 6px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 90px !important;
  line-height: 1.78;
  padding-left: 36px !important;
}
.copy .sap-site-icons .learnmore-link:before {
  content: '\e817';
  color: #777;
  font-size: 400%;
  display: block;
  max-width: 160px;
  font-family: uw_;
  background: none repeat scroll 0px 0px #EEE;
  border-radius: 6px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.copy .sap-site-icons .oncampus-link:before {
  content: '\e800';
  font-size: 100px !important;
  line-height: 1.6;
  padding-left: 28px !important;
  color: #777;
  font-size: 400%;
  display: block;
  max-width: 160px;
  font-family: uw_;
  background: none repeat scroll 0px 0px #EEE;
  border-radius: 6px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.copy .sap-site-icons .policy-link:before {
  content: '\e80f';
  color: #777;
  font-size: 400%;
  display: block;
  max-width: 160px;
  font-family: uw_;
  background: none repeat scroll 0px 0px #EEE;
  border-radius: 6px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.copy .sap-site-icons .taskforce-link:before {
  content: '\e80e';
  color: #777;
  font-size: 400%;
  display: block;
  max-width: 160px;
  font-family: uw_;
  background: none repeat scroll 0px 0px #EEE;
  border-radius: 6px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* Document lists */
.doc-list {
  /* wraps around file info to seporate thumbnail image */
}
.doc-list.callout {
  background: none repeat scroll 0 0 #EEEEEE;
  border-radius: 6px;
  margin-top: 20px;
  padding: 20px;
}
.doc-list.callout h4 {
  letter-spacing: normal;
  text-transform: none;
  font-weight: 900;
}
.doc-list div.doc-image-about {
  display: table;
  margin-bottom: 22px;
}
/* file thumbnail image */
img.doc-image {
  float: left;
  margin-right: 10px;
}
.doc-title {
  font-weight: bold;
  margin-bottom: 1.618;
}


.post-meta-info {
  /* is applied to all document meta info */
  font-size: 12.6px;
  color: #595959;
  font-style: italic;
  font-weight: bold;
  padding-right: 5px;
}
.post-meta-info:before {
  font-weight: normal;
}
/* common look for tags */
.tags > a {
  padding: 0 5px 1px;
  margin: 0px 5px 0px 0px ;
  font-size: 9.8px;
  font-weight: bold;
  border-radius: 8px;
  background-color: #b3b3b3;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}
.tags > a:hover {
  background-color: #999999;
  text-decoration: none;
}
/* news */
.news-name {
  font-weight: bold;
}
.news-title {
  font-style: italic;
}
.news-name,
.news-title,
.news-phone,
.news-email {
  display: block;
}

.news-subheading {
  margin-top: 0px;
}
h1.page-title ~ h2.news-subheading {
  font-size: 18px;
  margin-top: 8px;
}

.item-sub-title {
  margin-top: -10px;
  margin-bottom: 0px;
  font-weight: bold;
}
.news-date {
  margin-bottom: 0px;
  font-style: italic;
}
.archive-month li {
  margin-bottom: 5px;
  line-height: 5px;
}

.lists-none ul {
  margin: 0;
  padding: 0;
}
.lists-none li:before {
  border: none;
  left: 0;
  position: relative;
  top: 0;
  width: 0;
}
.lists-none li {
  margin-bottom: 22px;
}
div.listing-module ul {
  margin: 0;
  padding: 0;
}
div.listing-module li:before {
  border: none;
  left: 0;
  position: relative;
  top: 0;
  width: 0;
}
div.listing-module li {
  margin-bottom: 22px;
}
div.listing-module h4.item-title {
  margin-top: 0;
  margin-bottom: 5.5px;
  letter-spacing: normal;
  text-transform: none;
}
div.listing-module h5.item-sub-title {
  letter-spacing: normal;
  text-transform: none;
  font-size: 15px;
  font-style: italic;
  margin-top: -2.75px;
  margin-bottom: 5.5px;
}
div.listing-module li.item {
  margin-bottom: 27.5px;
}
div.listing-module p .item-date {
  font-style: italic;
}
div.listing-module p,
div.listing-module p.item-info {
  margin: 0;
  padding: 0;
}
@media (min-width:782px) and (max-width:991px) {
  .logo-link img {
    max-width:220px !important;
    margin-top:-2px;
  }
  .child-site-info {
    position: relative;
    top:20px !important;
  }
  .child-site-info .child-site-title {
    font-size:22px
  }      
}
@media (min-width:600px) and (max-width:782px) {
  .logo-link img {
    max-width:220px !important;
    margin-top:5px;
  }
  .child-site-info {
    position: relative;
    top:32px !important;
  }
  .child-site-info .child-site-title {
    font-size:22px
  }
  .child-site-info .sub-site-title {
    font-size:14px;
  }
}
@media (min-width:520px) and (max-width:600px) {
  .logo-link img {
    max-width:220px !important;
    margin-top:5px;
  }
  .child-site-info {
    position: relative;
    top:96px !important;
    left:10px;
    float:left;
    text-align: left !important;
  }
  .child-site-info .child-site-title {
    font-size:18px
  }   
  .child-site-info .sub-site-title {
    font-size:14px;
  }
}
@media (min-width:320px) and (max-width:520px) {
  .logo-link img {
    max-width:220px !important;
    margin-top:0px;
  }
  .child-site-info {
    position: relative;
    top:96px !important;
    left:10px;
    float:left;
    text-align: left !important;
  }
  .child-site-info .child-site-title,
  .child-site-info .sub-site-title {
    font-size:14px
  }      

}

body {
  font-family: 'Open Sans', sans-serif;
  margin:0;
}

.site,
body {
  overflow-x: hidden;
}

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

/* Style for the Front Door menu */

.search-open {
  position: relative;
  top:0px;
  padding-left:20px
}
.search-open,
.apply {
  display: inline-block;
}
header .apply {
  background-color: #D44427;
  padding:10px;
  border-radius: 5px;
  position:relative;
  top:-6px;
  margin-right:25px;
  margin-left:15px;
  font-size:15px;
}
.apply a {
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
}
.site-header {
  background-repeat: repeat-x;
  background-size: cover;
  background-color:#fff;
}
.nav-wrap-all {
  text-align:left;
  font-family: 'Open Sans', sans-serif;
  font-weight:bold;
}
.front-door-menu {
  display: block;
  text-align: right;
  position:relative;
  top:-5px;
}
.front-door-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-links a img {
  width:24px;
  padding:4px;
}
.social-links {
  margin-top:10px;
}
@media (min-width: 1180px) {
  .site-header {
    max-height:175px;

  }
  .mobile-constellation {
    display: none;
  }
  .front-door-menu > ul.menu > li > a {
    text-transform: uppercase;
    font-size:16px;
  }
  .front-door-menu li {
    display: inline-block;
    position: relative;
  }
  .front-door-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #005777;
  }
  .front-door-menu ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index:999999;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }   
  .front-door-menu .sub-menu.open {
    display: block;
  }

  .front-door-menu ul.sub-menu li {
    display: block;
    width: 100%;
    min-width:200px;
    text-align: left;
    font-size:11px;
  }
  .front-door-menu ul.sub-menu li:hover {
    background-color:#eee;
  }
  .front-door-menu {
    position: relative;
    z-index:999;
  }
  .main-navigation {
    display: block;
    text-align: right;
    padding-bottom:20px;
    position: relative;
    right:8px;
    height:80px
  }
  .uws-logo img {
    height:65px;
    padding:10px;
    position: absolute;
    z-index:9999;
    top:45px;
    left:20px
  }
  .header-apply,
  .front-door-menu {
    display: inline-block;
  }
  .global-navigation {
    height:40px;
    width: 100%;
    background-color: #003447;
    text-align: right;
  }
  .global-navigation a {
    color:#fff;
    text-decoration: none;
    font-size:11px;
  }
  .global-navigation .menu-item {
    display: inline-block;
    padding-left:20px;
    padding-right:20px;
  }
  .global-front-door-menu,
  .search-global {
    display: inline-block;
    margin-right:0px;
    position: relative;
    top:7px;
  }
  .search-global {
    padding-right:30px;
    position: relative;
    top:5px
  }
  .search-global .search-open img {
    width:14px;
    margin-bottom: -5px;
  }
  .burger {
    display: none;
  }
}

@media (max-width: 1180px) {

  #breadcrumbs {
    margin-right:-15px
  } 

  .burger {
    position: absolute;
    z-index:99991;    
    right:20px;
    top:45px;
    display: block;
  }
  .burger a.closed {
    position: relative;
    z-index:99991;
    width:45px;
    left:2px;
  }
  .burger a.open { 
    position: relative;
    z-index:99991;
  }  

  .site-header {
    margin-top: 30px;
    background-size: 1800px;
    height: 120px;
  }
  .uws-site-title img {
    width: 80px;
    position: relative;
    top:26px
  }
  .uws-site-title h2 {
    top:20px;
    font-size:24px
  }
  .uws-site-title {
    height:100px;
    font-family: 'Bitter', serif;
    position: relative;
    top:-70px
  }
  .uws-site-title.wrap-title h2 {
    font-size:22px;
    top:44px;
    margin-left:-40px
  }
  .uws-site-title.wrap-title img {
    width:90px;
    top:32px;
    left:-8px
  } 
  .nav-wrap-all {
    display: block;
    background-color: #002d3d;
    width: 320px;
    position: absolute;
    z-index: 9999;
    right: 0;
    top: 0;
    transition: right 1s ease; 
  }
  .toggle-nav {
    display: block;
    height:40px;
    width: 40px;
  }

  .nav-wrap-all.closed {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  #menu-global-menu-front-door {
    padding-left:0 !important;
  }
  .global-front-door-menu a {
    line-height: 30px;
    font-size:16px !important;
    color:#fff;
    text-decoration: none;
    font-weight:400;
  }
  .uws-logo {
    background-color:#003447;
    height:40px;
    position:relative;
    top:-40px;    
  }  
  .uws-logo img {
    width: 250px;
    position: relative;
    top:10px;
    left:20px;
  }
  .uws-logo a {
    position: relative;
    top:-6px;
  }
  .front-door-menu li,
  .global-front-door-menu li,
  .header-apply,
  .search-global {
    display: block !important;
  }
  .global-front-door-menu {
    position: relative;
    top:80px;
  }
  .search-global {
    float:left;
    position: relative;
    left:20px;
    top:0px;
    transform: scale(-1,1)
  }
  .front-door-menu,
  .header-apply {
    background-color: #0A243E;
  }
  .header-apply {
    padding-top:20px;
    padding-bottom:20px;
    position: relative;
    top:-5px;
    border-bottom: 8px solid #F5AC30;     
  }
  .header-apply .apply { 
    position:relative;
    top:0px;
  }  
  .front-door-menu {
    text-align: left;
    margin-top:35px;
  }
  .front-door-menu .menu-item > a {
    position: relative;
    display: block;
    padding: 10px;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    font-family: "Open Sans";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.27px;
    text-transform: uppercase;
  }
  .front-door-menu .menu-item-has-children > a::after {
    display: inline-block;
    transform: rotate(0deg);
    transition: transform 0.3s ease; 
    position:relative;
    left:5px;
    top:6px;
  }
  .front-door-menu .menu-item-has-children.open > a::after {
    transform: rotate(90deg);
    position:relative;
    top:0px;
  }
  .front-door-menu .menu-item-has-children.active ul.sub-menu {
    display: block; 
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
  .front-door-menu ul.sub-menu li a {
    display: block;
    font-size:13px;
    color: #fff;
    text-decoration: none;
    padding-top:0;
    padding-bottom:0;
    padding-left:20px;
    text-transform: none;
    border-top: 1px solid #005777;    
  }
  .front-door-menu ul.sub-menu {
    margin-top:-5px;
    display: none;
  }
  .front-door-menu .menu-item-has-children {
    border-bottom: 1px solid #005777;
  }
  .front-door-menu .menu-item-has-children:first-child {
    border-top: 1px solid #005777;
  }  
  .front-door-menu .menu-item-has-children:first-child:before {
    content: '';
    border-bottom: 1px solid #005777;
    display: block;
    height:40px;
  }

  .global-front-door-menu a {
    line-height: 30px;
    color:#fff;
    text-decoration: none;
    font-weight:400;
  }

  .global-front-door-menu {
    position: relative;
    left:-20px;
    top:0;
  }

  .search-global {
    float:left;
    position: relative;
    left:20px;
    top:0px;
    transform: scale(-1,1)
  }
  .front-door-menu,
  .header-apply {
    background-color: #0A243E;
  }
  .header-apply {
    padding-top:20px;
    padding-bottom:20px;
    position: relative;
    top:-5px;
    border-bottom: 8px solid #F5AC30;     
  }
  .header-apply .apply { 
    position:relative;
    top:0px;
  }  
  .front-door-menu {
    text-align: left;
    margin-top:35px;
  }
  .front-door-menu .menu-item > a {
    position: relative;
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    font-family: "Open Sans";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.27px;
    text-transform: uppercase;
  }
  .front-door-menu .menu-item-has-children.active ul.sub-menu {
    display: block; 
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
  .front-door-menu ul.sub-menu li a {
    display: block;
    font-size:13px;
    color: #fff;
    text-decoration: none;
    padding-top:0;
    padding-bottom:0;
    padding-left:20px;
    text-transform: none;
    border-top: 1px solid #005777;    
  }
  .front-door-menu ul.sub-menu {
    margin-top:-5px;
    display: none;
  }
  .front-door-menu .menu-item-has-children {
    border-bottom: 1px solid #005777;
  }
  .front-door-menu .menu-item-has-children:first-child {
    border-top: 1px solid #005777;
  }  
  .front-door-menu .menu-item-has-children:first-child:before {
    content: '';
    border-bottom: 1px solid #005777;
    display: block;
    height:40px;
  }

  .mobile-constellation img {
    margin-bottom:-10px;
  }
  .mobile-constellation {
    display: block;
    text-align: right;
    border-bottom: 30px solid #0A243E;
  }
}

/* faux dropdown */
.faux-dropdown {
  position: relative;
  padding: 10px;
  background: #555555;
  cursor: pointer;
  color: #fff;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  margin: 0 0 13px;
}

.faux-dropdown:after {
  content: '\e829';
  font-family: "uw_";
  font-style: normal;
  font-weight: normal;
  speak: none;
  text-decoration: inherit;
  font-variant: normal;
  text-transform: none;

  border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0 5px 5px 0 ;

  position: absolute;
  right: 0;
  width: 32px;
  top: 0;
  bottom: 0;
  background: #757575;
  text-align: center;
  line-height: 40px;
}

.faux-dropdown ul.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #757575;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  overflow-y: auto;
  transition-property: all;
  transition-duration: .5s;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  max-height: 0;
  margin-top: 0;
  padding: 0;
  margin: 0;
}

.faux-dropdown.active {
  border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
}

@media (max-width: 991px) {

  .faux-dropdown ul.dropdown {
    position: relative;
    margin-top: 10px;
    height: 0;
  }

  .faux-dropdown {
    padding: 10px 0 0 0;
  }

  .faux-dropdown.active {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
  }

  .faux-dropdown span {
    padding-left: 10px;
  }

  .faux-dropdown.active ul.dropdown {
    height: auto;
  }
  .faux-dropdown.active ul.dropdown[style] {
    max-height: none !important;
  }

}

.faux-dropdown ul.dropdown li a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 10px 20px;
}

.faux-dropdown ul.dropdown li a:hover {
  background: #555555;
}

.faux-dropdown.active ul.dropdown {
  opacity: 1;
  pointer-events: auto;
}

.faux-dropdown.active:after {
  content: '\e826';
  border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0 ;
}

.faux-dropdown ul.dropdown ul li a {
  padding-left: 40px;
}

.faux-dropdown ul.dropdown ul ul li a {
  padding-left: 60px;
}
.faux-dropdown a:focus {
  outline: thin dotted currentColor;
  outline-offset: 1px;
}
@charset "UTF-8";

 @font-face {
  font-family: 'uw_';
  src: url(fonts/uw_.eot?58116526);
  src: url(fonts/uw_.eot?58116526#iefix) format('embedded-opentype'),
       url(fonts/uw_.woff2?58116526) format('woff2'),
       url(fonts/uw_.woff?58116526) format('woff'),
       url(fonts/uw_.ttf?58116526) format('truetype');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'uw_';
    src: url('../font/uw_.svg?58116526#uw_') format('svg');
  }
}
*/
 
 [class^="uw-"]:before, [class*=" uw-"]:before {
  font-family: "uw_";
  font-style: normal;
  font-weight: normal;
  speak: none;
 
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
 
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
 
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
 
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
 
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
 
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
.uw-campus:before { content: '\e800'; } /* '' */
.uw-staff:before { content: '\e801'; } /* '' */
.uw-wisco:before { content: '\e802'; } /* '' */
.uw-uw-mark:before { content: '\e803'; } /* '' */
.uw-mail-alt:before { content: '\e804'; } /* '' */
.uw-phone:before { content: '\e805'; } /* '' */
.uw-doc-text-inv:before { content: '\e806'; } /* '' */
.uw-cog-alt:before { content: '\e807'; } /* '' */
.uw-link-ext:before { content: '\e808'; } /* '' */
.uw-link-ext-alt:before { content: '\e809'; } /* '' */
.uw-help-circled:before { content: '\e80a'; } /* '' */
.uw-info-circled:before { content: '\e80b'; } /* '' */
.uw-home:before { content: '\e80c'; } /* '' */
.uw-doc:before { content: '\e80d'; } /* '' */
.uw-chat:before { content: '\e80e'; } /* '' */
.uw-hammer:before { content: '\e80f'; } /* '' */
.uw-right-circled:before { content: '\e810'; } /* '' */
.uw-left-circled:before { content: '\e811'; } /* '' */
.uw-search:before { content: '\e812'; } /* '' */
.uw-square:before { content: '\e813'; } /* '' */
.uw-megaphone:before { content: '\e814'; } /* '' */
.uw-book:before { content: '\e815'; } /* '' */
.uw-book-1:before { content: '\e816'; } /* '' */
.uw-book-2:before { content: '\e817'; } /* '' */
.uw-bookmark:before { content: '\e818'; } /* '' */
.uw-institution:before { content: '\e819'; } /* '' */
.uw-money:before { content: '\e81a'; } /* '' */
.uw-key:before { content: '\e81b'; } /* '' */
.uw-graduation-cap:before { content: '\e81c'; } /* '' */
.uw-star:before { content: '\e81d'; } /* '' */
.uw-star-circled:before { content: '\e81e'; } /* '' */
.uw-resize-full:before { content: '\e81f'; } /* '' */
.uw-attention-circled:before { content: '\e820'; } /* '' */
.uw-resize-small:before { content: '\e821'; } /* '' */
.uw-down-open:before { content: '\e822'; } /* '' */
.uw-left-open:before { content: '\e823'; } /* '' */
.uw-right-open:before { content: '\e824'; } /* '' */
.uw-up-open:before { content: '\e825'; } /* '' */
.uw-down-dir:before { content: '\e826'; } /* '' */
.uw-up-dir:before { content: '\e827'; } /* '' */
.uw-left-dir:before { content: '\e828'; } /* '' */
.uw-right-dir:before { content: '\e829'; } /* '' */
.uw-minus-circled:before { content: '\e82a'; } /* '' */
.uw-link:before { content: '\e82b'; } /* '' */
.uw-right-big:before { content: '\e82c'; } /* '' */
.uw-cancel:before { content: '\e82d'; } /* '' */
.uw-twitter:before { content: '\f099'; } /* '' */
.uw-facebook:before { content: '\f09a'; } /* '' */
.uw-certificate:before { content: '\f0a3'; } /* '' */
.uw-docs:before { content: '\f0c5'; } /* '' */
.uw-gplus:before { content: '\f0d5'; } /* '' */
.uw-linkedin:before { content: '\f0e1'; } /* '' */
.uw-paste:before { content: '\f0ea'; } /* '' */
.uw-suitcase:before { content: '\f0f2'; } /* '' */
.uw-angle-double-left:before { content: '\f100'; } /* '' */
.uw-angle-double-right:before { content: '\f101'; } /* '' */
.uw-quote-left:before { content: '\f10d'; } /* '' */
.uw-quote-right:before { content: '\f10e'; } /* '' */
.uw-doc-inv:before { content: '\f15b'; } /* '' */
.uw-youtube-play:before { content: '\f16a'; } /* '' */
.uw-twitter-squared:before { content: '\f304'; } /* '' */
.uw-facebook-squared:before { content: '\f308'; } /* '' */
.uw-linkedin-squared:before { content: '\f30c'; } /* '' */
.uw-globe:before { content: '🌎'; } /* '\1f30e' */
.uw-leaf:before { content: '🍂'; } /* '\1f342' */
.uw-award:before { content: '🏉'; } /* '\1f3c9' */
.uw-briefcase:before { content: '💼'; } /* '\1f4bc' */
.uw-floppy:before { content: '💾'; } /* '\1f4be' */
.uw-chart-bar:before { content: '📊'; } /* '\1f4ca' */
/**
* Gutenberg.css
*
* @package constellation
* @author UWSA Web Team
*
* Handles custom styles for the editor
*/

@font-face {
  font-family: 'uw_';
  src: url(fonts/uw_.eot);
  src:
    url(fonts/uw_.eot?#iefix) format('embedded-opentype'),
    url(fonts/uw_.woff2)      format('woff2'),
    url(fonts/uw_.woff)       format('woff'),
    url(fonts/uw_.ttf)        format('truetype');
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}



/* Button Block */
.wp-element-button {
    background-color: #003447 !important;
    padding: 10px 25px !important;
    border-radius: 5px;
    font-size: 15px;
}

.wp-block-button {
  margin-top:15px !important;
  margin-bottom: 15px !important;
}

/* Navigation Block */
.wp-block-navigation__container {
  flex-direction: column;
  align-items: start;
}

.wp-block-navigation__container .wp-block-navigation-item {
  font-weight: 600;
  position: relative;
  display: block;
  text-decoration: none;
  padding: 10px 15px;
  color: #002d3d;
  width: 90%;
}

.wp-block-navigation__container .wp-block-navigation-item.has-child {
  padding: 0;
}

.wp-block-navigation__container .wp-block-navigation-item.has-child button {
  padding: 10px 15px !important;
}

.editor-styles-wrapper .wp-block-navigation-item  a:where(:not(.wp-element-button))  {
  text-decoration: none;
}

.wp-block-navigation .wp-block-navigation__container .wp-block-navigation__submenu-icon {
  position: absolute;
  right: 15px;
  top: 12px;
}

.wp-block-navigation__submenu-icon {
  width: 18px !important;
  height: 18px !important;
  transition: transform 0.3s ease;
  transform-origin: center;
  transform: rotate(-90deg);
  color:#707070 !important;
}

.wp-block-navigation .wp-block-navigation-submenu.has-child.is-selected .wp-block-navigation__submenu-icon {
  transform: rotate(0deg);
}

.wp-block-navigation .has-child.has-child-selected > .wp-block-navigation__submenu-container, .wp-block-navigation .has-child.is-selected > .wp-block-navigation__submenu-container {
  position: inherit;
  border: 0;
  border-top: 1px;
}

/* Global Block Styling */
  
.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted:after,
.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted~.is-multi-selected:after,
.block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable=true]):focus:after,
.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected:after {
  margin:-5px !important;
}

/* Main column width */
.editor-styles-wrapper.block-editor-writing-flow {
  padding: 0 30px;
}

.wp-block , .callout-block , .accordion-block , .tabs-block {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-column.has-background {
  padding: 1.5rem;
  box-sizing: border-box;
}

/* Width of "wide" blocks */
.wp-block[data-align="wide"] { max-width: 1180px; }
/* Width of "full-width" blocks */
.wp-block[data-align="full"] { max-width: none; }

h1 {
  font-size: 36px;
  color: #005777;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 1.2em;
}

.wp-block-post-content .wp-block-heading {
  font-family: 'Bitter', serif;
  margin-top:40px;
  margin-bottom:30px !important;
}

.wp-block-post-content .wp-block-heading.is-selected:after,
.wp-block-post-content .wp-block-heading.is-highlighted:after,
.wp-block-heading:not([contenteditable=true]):focus:after {
  content: "";
  outline-color: var(--wp-admin-theme-color);
  outline-offset: calc(((-1*var(--wp-admin-border-width-focus))/var(--wp-block-editor-iframe-zoom-out-scale, 1))*1);
  outline-style: solid;
  outline-width: calc((var(--wp-admin-border-width-focus)/var(--wp-block-editor-iframe-zoom-out-scale, 1))*1);
  pointer-events: none;
  z-index: 1;
}

.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted:after,
.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted~.is-multi-selected:after,
.block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable=true]):focus:after,
.block-editor-block-list__layout.is-navigate-mode .block-editor-block-list__block.is-selected:after {
  outline: 2px solid #007cba !important;
  border-radius: 4px;
  content: "";
}

/* Images */
figure.wp-block-image {     
  padding: 0px;            
}

figure.wp-block-image:has(figcaption) {
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 10px;
  display: inline-block;
}

figure.wp-block-image figcaption {
  color: #777777;
  background-color: #f0f0f0;
  border-radius: 8px;
  font-size: 80%;
  font-weight: bold;
  text-align: center;
}

/* Tables */
.wp-block-table td, .wp-block-table th {
  padding: 8px;
  line-height: 1.618;
  vertical-align: top;
  border: 1px solid #ddd;
}

 table {
  width: 100%;
  margin-bottom: 22px;
  border-bottom: 1px solid #ddd;
}

table  tbody th,
table thead th {
  border-bottom: 1px solid #005777 !important;
  border-top: 1px solid #005777 !important;
  border-left: 1px solid #005777 !important;
  border-right: 2px solid #003e55 !important;
  color: #fff;
  background-color: #005777 !important;
  font-weight: normal;
}

table  thead > tr > td {
  vertical-align: bottom;
  border-bottom: 2px solid #003e55 !important;
  border-top: 1px solid #005777 !important;
  border-left: 1px solid #005777 !important;
  border-right: 1px solid #005777 !important;
  color: #fff;
  background-color: #005777 !important;
}

/* Paragraph */
.wp-block-paragraph {
  font-size: 14px;
  line-height: 1.618;
  color: #333333;
  font-family: 'Open Sans', sans-serif;
}

.entry-content .has-background,
.block-editor .has-background{
  border-radius:5px;
}

.wp-block-list-item  {
  font-family: 'Open Sans', sans-serif;
}

p {
  padding: 0 0 11px;
  margin-top: 0;
  margin-bottom: 0;
}

/* List */
ul, ol {
  padding: 0 0 11px 3em;
  margin-top: 0;
  margin-bottom: 0;

}

/* Embed Block */
.wp-block-embed.aligncenter,
.wp-block-embed-youtube.aligncenter {
    display: flex;
    justify-content: center;
}

.wp-block-embed.alignleft {
    float: left;
    margin-right: 1em;
}

.wp-block-embed.alignright {
    float: right;
    margin-left: 1em;
}

/* Heading Block */
.wp-block-heading {
  margin-top:15px !important;
}

.editor-post-title {
  margin-bottom:10px;
}

/* List Block */
.wp-block-list {
  margin-top:-8px;
  margin-left:0px
}

.wp-block-list ol,
.wp-block-list ul {
  line-height: 20px;
  margin-top:5px
}

/* Download Monitor ( Needs !important as plugin locks this down unless upgraded )*/

.download-button,
.download-button:hover{
  float:left;
  background-image: none !important;
  background-color: #D44427 !important;
  box-shadow:none !important;
  text-shadow: none !important;
  min-width:120px !important;
  max-width: 240px !important;
  padding:14px !important;
  padding-bottom:5px !important;
  margin-bottom:25px !important;
  border-radius: 5px !important;
  position:relative !important;
  top:-5px !important;
  color:#fff !important;
  font-size:14px !important;
  font-weight:bold !important;
  font-family: 'Open Sans', sans-serif !important;
  cursor:pointer !important;
  border: 0 !important;
}

/* Editor overflow fix */

.wp-block , .callout-block , .accordion-block , .tabs-block {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.editor-styles-wrapper a[href$=".pdf"],
.editor-styles-wrapper a[href$=".zip"],
.editor-styles-wrapper a[href$=".wvx"],
.editor-styles-wrapper a[href$=".jpg"],
.editor-styles-wrapper a[href$=".jpeg"],
.editor-styles-wrapper a[href$=".png"],
.editor-styles-wrapper a[href$=".xls"],
.editor-styles-wrapper a[href$=".xlsx"],
.editor-styles-wrapper a[href$=".xlsm"],
.editor-styles-wrapper a[href$=".mp3"],
.editor-styles-wrapper a[href$=".csv"],
.editor-styles-wrapper a[href$=".vsd"],
.editor-styles-wrapper a[href$=".vsdx"],
.editor-styles-wrapper a[href$=".ppt"],
.editor-styles-wrapper a[href$=".pptx"],
.editor-styles-wrapper a[href$=".doc"],
.editor-styles-wrapper a[href$=".docx"]{
  width: auto;
  margin-right: 0;
  padding-right: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .25em;
  position: static; 
}

/* Icon (uw_ font) */
.editor-styles-wrapper a[href$=".pdf"]::before,
.editor-styles-wrapper a[href$=".zip"]::before,
.editor-styles-wrapper a[href$=".wvx"]::before,
.editor-styles-wrapper a[href$=".jpg"]::before,
.editor-styles-wrapper a[href$=".jpeg"]::before,
.editor-styles-wrapper a[href$=".png"]::before,
.editor-styles-wrapper a[href$=".xls"]::before,
.editor-styles-wrapper a[href$=".xlsx"]::before,
.editor-styles-wrapper a[href$=".xlsm"]::before,
.editor-styles-wrapper a[href$=".mp3"]::before,
.editor-styles-wrapper a[href$=".csv"]::before,
.editor-styles-wrapper a[href$=".vsd"]::before,
.editor-styles-wrapper a[href$=".vsdx"]::before,
.editor-styles-wrapper a[href$=".ppt"]::before,
.editor-styles-wrapper a[href$=".pptx"]::before,
.editor-styles-wrapper a[href$=".doc"]::before,
.editor-styles-wrapper a[href$=".docx"]::before{
  content: '\f15b';
  font-family: "uw_";
  font-size: 14px;
  line-height: 1;
  top: auto;
  right: auto;
  transform: none;  
  position: static;
  order: 2;
  display: inline-block;
  line-height: 1;
  margin-left: .25em;
  vertical-align: text-bottom;
  text-shadow: 0 0 2px #464646;
  color: #fff;
}

/* File-type label */
.editor-styles-wrapper a[href$=".pdf"]::after,
.editor-styles-wrapper a[href$=".zip"]::after,
.editor-styles-wrapper a[href$=".wvx"]::after,
.editor-styles-wrapper a[href$=".jpg"]::after,
.editor-styles-wrapper a[href$=".jpeg"]::after,
.editor-styles-wrapper a[href$=".png"]::after,
.editor-styles-wrapper a[href$=".xls"]::after,
.editor-styles-wrapper a[href$=".xlsx"]::after,
.editor-styles-wrapper a[href$=".xlsm"]::after,
.editor-styles-wrapper a[href$=".mp3"]::after,
.editor-styles-wrapper a[href$=".csv"]::after,
.editor-styles-wrapper a[href$=".vsd"]::after,
.editor-styles-wrapper a[href$=".vsdx"]::after,
.editor-styles-wrapper a[href$=".ppt"]::after,
.editor-styles-wrapper a[href$=".pptx"]::after,
.editor-styles-wrapper a[href$=".doc"]::after,
.editor-styles-wrapper a[href$=".docx"]::after{
  font-size: 8px;
  border-radius: 2px;
  margin-left: .2em;
  vertical-align: middle;
  top: auto;
  transform: none;
  position: static;
  order: 3;
  display: inline-block;
  position: relative;
  right:22px;
  white-space: nowrap;
  line-height: 1;
  font: 600 8px/1 "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  padding: 1px 3px;
  border-radius: 2px;
}

/* colors / labels */
.editor-styles-wrapper a[href$=".pdf"]::after  { content: 'PDF'; background:#990013; color:#fff; }
.editor-styles-wrapper a[href$=".zip"]::after  { content: 'ZIP'; background:rgba(27,23,27,.57);  color:#fff;}
.editor-styles-wrapper a[href$=".wvx"]::after  { content: 'WVX'; background:#374951; color:#fff; }
.editor-styles-wrapper a[href$=".jpg"]::after,
.editor-styles-wrapper a[href$=".jpeg"]::after { content: 'JPG'; background:#421b99; color:#fff; }
.editor-styles-wrapper a[href$=".png"]::after  { content: 'PNG'; background:#99454c; color:#fff; }
.editor-styles-wrapper a[href$=".xls"]::after,
.editor-styles-wrapper a[href$=".xlsx"]::after,
.editor-styles-wrapper a[href$=".xlsm"]::after { content: 'XLS'; background:#336b19; color:#fff; }
.editor-styles-wrapper a[href$=".mp3"]::after  { content: 'MP3'; background:#bf2f61; color:#fff; }
.editor-styles-wrapper a[href$=".csv"]::after  { content: 'CSV'; background:#091d85; color:#fff; }
.editor-styles-wrapper a[href$=".vsd"]::after,
.editor-styles-wrapper a[href$=".vsdx"]::after { content: 'VSD'; background:#3e3b85; color:#fff; }
.editor-styles-wrapper a[href$=".ppt"]::after,
.editor-styles-wrapper a[href$=".pptx"]::after { content: 'PPT'; background:#cd6632; color:#fff; }
.editor-styles-wrapper a[href$=".doc"]::after,
.editor-styles-wrapper a[href$=".docx"]::after { content: 'DOC'; background:#407abd; color:#fff; }

/* Turning off button icons */
.editor-styles-wrapper a.wp-block-uwsa-file-link__button{ padding-right:0; }
.editor-styles-wrapper .wp-block-uwsa-file-link__button::after,
.editor-styles-wrapper .wp-block-uwsa-file-link__button::before,
.editor-styles-wrapper .callout-button:after,
.editor-styles-wrapper .callout-button:before,
.editor-styles-wrapper a.button::after,
.editor-styles-wrapper a.button::before,
.editor-styles-wrapper a.no-icon::before,
.editor-styles-wrapper a.no-icon::after{ content:none !important; }


