/*! Hint.css - v2.7.0 - 2021-10-01
* https://kushagra.dev/lab/hint/
* Copyright (c) 2021 Kushagra Gour */

/*-------------------------------------*\
	HINT.css - A CSS tooltip library
\*-------------------------------------*/
/**
 * HINT.css is a tooltip library made in pure CSS.
 *
 * Source: https://github.com/chinchang/hint.css
 * Demo: http://kushagragour.in/lab/hint/
 *
 */
/**
 * source: hint-core.scss
 *
 * Defines the basic styling for the tooltip.
 * Each tooltip is made of 2 parts:
 * 	1) body (:after)
 * 	2) arrow (:before)
 *
 * Classes added:
 * 	1) hint
 */
[class*="hint--"] {
  position: relative;
  display: inline-block;
  /**
	 * tooltip arrow
	 */
  /**
	 * tooltip body
	 */ }
  [class*="hint--"]:before, [class*="hint--"]:after {
    position: absolute;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: hidden;
    opacity: 0;
    z-index: 1000000;
    pointer-events: none;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transition-delay: 0ms;
    -moz-transition-delay: 0ms;
    transition-delay: 0ms; }
  [class*="hint--"]:hover:before, [class*="hint--"]:hover:after {
    visibility: visible;
    opacity: 1; }
  [class*="hint--"]:hover:before, [class*="hint--"]:hover:after {
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    transition-delay: 100ms; }
  [class*="hint--"]:before {
    content: '';
    position: absolute;
    background: transparent;
    border: 6px solid transparent;
    z-index: 1000001; }
  [class*="hint--"]:after {
    background: #383838;
    color: white;
    padding: 8px 10px;
    font-size: 12px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 12px;
    white-space: nowrap; }
  [class*="hint--"][aria-label]:after {
    content: attr(aria-label); }
  [class*="hint--"][data-hint]:after {
    content: attr(data-hint); }

[aria-label='']:before, [aria-label='']:after,
[data-hint='']:before,
[data-hint='']:after {
  display: none !important; }

/**
 * source: hint-position.scss
 *
 * Defines the positoning logic for the tooltips.
 *
 * Classes added:
 * 	1) hint--top
 * 	2) hint--bottom
 * 	3) hint--left
 * 	4) hint--right
 */
/**
 * set default color for tooltip arrows
 */
.hint--top-left:before {
  border-top-color: #383838; }

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

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

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

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

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

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

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

/**
 * top tooltip
 */
.hint--top:before {
  margin-bottom: -11px; }

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

.hint--top:before {
  left: calc(50% - 6px); }

.hint--top:after {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%); }

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

.hint--top:hover:after {
  -webkit-transform: translateX(-50%) translateY(-8px);
  -moz-transform: translateX(-50%) translateY(-8px);
  transform: translateX(-50%) translateY(-8px); }

/**
 * bottom tooltip
 */
.hint--bottom:before {
  margin-top: -11px; }

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

.hint--bottom:before {
  left: calc(50% - 6px); }

.hint--bottom:after {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%); }

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

.hint--bottom:hover:after {
  -webkit-transform: translateX(-50%) translateY(8px);
  -moz-transform: translateX(-50%) translateY(8px);
  transform: translateX(-50%) translateY(8px); }

/**
 * right tooltip
 */
.hint--right:before {
  margin-left: -11px;
  margin-bottom: -6px; }

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

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

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

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

/**
 * left tooltip
 */
.hint--left:before {
  margin-right: -11px;
  margin-bottom: -6px; }

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

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

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

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

/**
 * top-left tooltip
 */
.hint--top-left:before {
  margin-bottom: -11px; }

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

.hint--top-left:before {
  left: calc(50% - 6px); }

.hint--top-left:after {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%); }

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

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

.hint--top-left:hover:after {
  -webkit-transform: translateX(-100%) translateY(-8px);
  -moz-transform: translateX(-100%) translateY(-8px);
  transform: translateX(-100%) translateY(-8px); }

/**
 * top-right tooltip
 */
.hint--top-right:before {
  margin-bottom: -11px; }

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

.hint--top-right:before {
  left: calc(50% - 6px); }

.hint--top-right:after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0); }

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

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

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

/**
 * bottom-left tooltip
 */
.hint--bottom-left:before {
  margin-top: -11px; }

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

.hint--bottom-left:before {
  left: calc(50% - 6px); }

.hint--bottom-left:after {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%); }

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

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

.hint--bottom-left:hover:after {
  -webkit-transform: translateX(-100%) translateY(8px);
  -moz-transform: translateX(-100%) translateY(8px);
  transform: translateX(-100%) translateY(8px); }

/**
 * bottom-right tooltip
 */
.hint--bottom-right:before {
  margin-top: -11px; }

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

.hint--bottom-right:before {
  left: calc(50% - 6px); }

.hint--bottom-right:after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0); }

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

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

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

/**
 * source: hint-sizes.scss
 *
 * Defines width restricted tooltips that can span
 * across multiple lines.
 *
 * Classes added:
 * 	1) hint--small
 * 	2) hint--medium
 * 	3) hint--large
 *
 */
.hint--small:after,
.hint--medium:after,
.hint--large:after {
  white-space: normal;
  line-height: 1.4em;
  word-wrap: break-word; }

.hint--small:after {
  width: 80px; }

.hint--medium:after {
  width: 150px; }

.hint--large:after {
  width: 300px; }

/**
 * source: hint-theme.scss
 *
 * Defines basic theme for tooltips.
 *
 */
[class*="hint--"] {
  /**
	 * tooltip body
	 */ }
  [class*="hint--"]:after {
    text-shadow: 0 -1px 0px black;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3); }

/**
 * source: hint-color-types.scss
 *
 * Contains tooltips of various types based on color differences.
 *
 * Classes added:
 * 	1) hint--error
 * 	2) hint--warning
 * 	3) hint--info
 * 	4) hint--success
 *
 */
/**
 * Error
 */
.hint--error:after {
  background-color: #b34e4d;
  text-shadow: 0 -1px 0px #592726; }

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

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

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

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

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

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

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

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

/**
 * Warning
 */
.hint--warning:after {
  background-color: #c09854;
  text-shadow: 0 -1px 0px #6c5328; }

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

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

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

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

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

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

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

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

/**
 * Info
 */
.hint--info:after {
  background-color: #3986ac;
  text-shadow: 0 -1px 0px #1a3c4d; }

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

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

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

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

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

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

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

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

/**
 * Success
 */
.hint--success:after {
  background-color: #458746;
  text-shadow: 0 -1px 0px #1a321a; }

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

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

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

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

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

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

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

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

/**
 * source: hint-always.scss
 *
 * Defines a persisted tooltip which shows always.
 *
 * Classes added:
 * 	1) hint--always
 *
 */
.hint--always:after, .hint--always:before {
  opacity: 1;
  visibility: visible; }

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

.hint--always.hint--top:after {
  -webkit-transform: translateX(-50%) translateY(-8px);
  -moz-transform: translateX(-50%) translateY(-8px);
  transform: translateX(-50%) translateY(-8px); }

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

.hint--always.hint--top-left:after {
  -webkit-transform: translateX(-100%) translateY(-8px);
  -moz-transform: translateX(-100%) translateY(-8px);
  transform: translateX(-100%) translateY(-8px); }

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

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

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

.hint--always.hint--bottom:after {
  -webkit-transform: translateX(-50%) translateY(8px);
  -moz-transform: translateX(-50%) translateY(8px);
  transform: translateX(-50%) translateY(8px); }

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

.hint--always.hint--bottom-left:after {
  -webkit-transform: translateX(-100%) translateY(8px);
  -moz-transform: translateX(-100%) translateY(8px);
  transform: translateX(-100%) translateY(8px); }

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

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

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

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

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

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

/**
 * source: hint-rounded.scss
 *
 * Defines rounded corner tooltips.
 *
 * Classes added:
 * 	1) hint--rounded
 *
 */
.hint--rounded:after {
  border-radius: 4px; }

/**
 * source: hint-effects.scss
 *
 * Defines various transition effects for the tooltips.
 *
 * Classes added:
 * 	1) hint--no-animate
 * 	2) hint--bounce
 *
 */
.hint--no-animate:before, .hint--no-animate:after {
  -webkit-transition-duration: 0ms;
  -moz-transition-duration: 0ms;
  transition-duration: 0ms; }

.hint--bounce:before, .hint--bounce:after {
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition: opacity 0.3s ease, visibility 0.3s ease, -moz-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24); }

.hint--no-shadow:before, .hint--no-shadow:after {
  text-shadow: initial;
  box-shadow: initial; }

.hint--no-arrow:before {
  display: none; }

/*
 * Social Buttons for Bootstrap
 *
 * Copyright 2013-2016 Panayiotis Lipiridis
 * Licensed under the MIT License
 *
 * https://github.com/lipis/bootstrap-social
 */

.btn-social{position:relative;padding-left:44px;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.btn-social>:first-child{position:absolute;left:0;top:0;bottom:0;width:32px;line-height:34px;font-size:1.6em;text-align:center;border-right:1px solid rgba(0,0,0,0.2)}
.btn-social.btn-lg{padding-left:61px}.btn-social.btn-lg>:first-child{line-height:45px;width:45px;font-size:1.8em}
.btn-social.btn-sm{padding-left:38px}.btn-social.btn-sm>:first-child{line-height:28px;width:28px;font-size:1.4em}
.btn-social.btn-xs{padding-left:30px}.btn-social.btn-xs>:first-child{line-height:20px;width:20px;font-size:1.2em}
.btn-social-icon{position:relative;padding-left:44px;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;height:34px;width:34px;padding:0}.btn-social-icon>:first-child{position:absolute;left:0;top:0;bottom:0;width:32px;line-height:34px;font-size:1.6em;text-align:center;border-right:1px solid rgba(0,0,0,0.2)}
.btn-social-icon.btn-lg{padding-left:61px}.btn-social-icon.btn-lg>:first-child{line-height:45px;width:45px;font-size:1.8em}
.btn-social-icon.btn-sm{padding-left:38px}.btn-social-icon.btn-sm>:first-child{line-height:28px;width:28px;font-size:1.4em}
.btn-social-icon.btn-xs{padding-left:30px}.btn-social-icon.btn-xs>:first-child{line-height:20px;width:20px;font-size:1.2em}
.btn-social-icon>:first-child{border:none;text-align:center;width:100% !important}
.btn-social-icon.btn-lg{height:45px;width:45px;padding-left:0;padding-right:0}
.btn-social-icon.btn-sm{height:30px;width:30px;padding-left:0;padding-right:0}
.btn-social-icon.btn-xs{height:22px;width:22px;padding-left:0;padding-right:0}
.btn-adn{color:#fff;background-color:#d87a68;border-color:rgba(0,0,0,0.2)}.btn-adn:focus,.btn-adn.focus{color:#fff;background-color:#ce563f;border-color:rgba(0,0,0,0.2)}
.btn-adn:hover{color:#fff;background-color:#ce563f;border-color:rgba(0,0,0,0.2)}
.btn-adn:active,.btn-adn.active,.open>.dropdown-toggle.btn-adn{color:#fff;background-color:#ce563f;border-color:rgba(0,0,0,0.2)}.btn-adn:active:hover,.btn-adn.active:hover,.open>.dropdown-toggle.btn-adn:hover,.btn-adn:active:focus,.btn-adn.active:focus,.open>.dropdown-toggle.btn-adn:focus,.btn-adn:active.focus,.btn-adn.active.focus,.open>.dropdown-toggle.btn-adn.focus{color:#fff;background-color:#b94630;border-color:rgba(0,0,0,0.2)}
.btn-adn:active,.btn-adn.active,.open>.dropdown-toggle.btn-adn{background-image:none}
.btn-adn.disabled:hover,.btn-adn[disabled]:hover,fieldset[disabled] .btn-adn:hover,.btn-adn.disabled:focus,.btn-adn[disabled]:focus,fieldset[disabled] .btn-adn:focus,.btn-adn.disabled.focus,.btn-adn[disabled].focus,fieldset[disabled] .btn-adn.focus{background-color:#d87a68;border-color:rgba(0,0,0,0.2)}
.btn-adn .badge{color:#d87a68;background-color:#fff}
.btn-bitbucket{color:#fff;background-color:#205081;border-color:rgba(0,0,0,0.2)}.btn-bitbucket:focus,.btn-bitbucket.focus{color:#fff;background-color:#163758;border-color:rgba(0,0,0,0.2)}
.btn-bitbucket:hover{color:#fff;background-color:#163758;border-color:rgba(0,0,0,0.2)}
.btn-bitbucket:active,.btn-bitbucket.active,.open>.dropdown-toggle.btn-bitbucket{color:#fff;background-color:#163758;border-color:rgba(0,0,0,0.2)}.btn-bitbucket:active:hover,.btn-bitbucket.active:hover,.open>.dropdown-toggle.btn-bitbucket:hover,.btn-bitbucket:active:focus,.btn-bitbucket.active:focus,.open>.dropdown-toggle.btn-bitbucket:focus,.btn-bitbucket:active.focus,.btn-bitbucket.active.focus,.open>.dropdown-toggle.btn-bitbucket.focus{color:#fff;background-color:#0f253c;border-color:rgba(0,0,0,0.2)}
.btn-bitbucket:active,.btn-bitbucket.active,.open>.dropdown-toggle.btn-bitbucket{background-image:none}
.btn-bitbucket.disabled:hover,.btn-bitbucket[disabled]:hover,fieldset[disabled] .btn-bitbucket:hover,.btn-bitbucket.disabled:focus,.btn-bitbucket[disabled]:focus,fieldset[disabled] .btn-bitbucket:focus,.btn-bitbucket.disabled.focus,.btn-bitbucket[disabled].focus,fieldset[disabled] .btn-bitbucket.focus{background-color:#205081;border-color:rgba(0,0,0,0.2)}
.btn-bitbucket .badge{color:#205081;background-color:#fff}
.btn-dropbox{color:#fff;background-color:#1087dd;border-color:rgba(0,0,0,0.2)}.btn-dropbox:focus,.btn-dropbox.focus{color:#fff;background-color:#0d6aad;border-color:rgba(0,0,0,0.2)}
.btn-dropbox:hover{color:#fff;background-color:#0d6aad;border-color:rgba(0,0,0,0.2)}
.btn-dropbox:active,.btn-dropbox.active,.open>.dropdown-toggle.btn-dropbox{color:#fff;background-color:#0d6aad;border-color:rgba(0,0,0,0.2)}.btn-dropbox:active:hover,.btn-dropbox.active:hover,.open>.dropdown-toggle.btn-dropbox:hover,.btn-dropbox:active:focus,.btn-dropbox.active:focus,.open>.dropdown-toggle.btn-dropbox:focus,.btn-dropbox:active.focus,.btn-dropbox.active.focus,.open>.dropdown-toggle.btn-dropbox.focus{color:#fff;background-color:#0a568c;border-color:rgba(0,0,0,0.2)}
.btn-dropbox:active,.btn-dropbox.active,.open>.dropdown-toggle.btn-dropbox{background-image:none}
.btn-dropbox.disabled:hover,.btn-dropbox[disabled]:hover,fieldset[disabled] .btn-dropbox:hover,.btn-dropbox.disabled:focus,.btn-dropbox[disabled]:focus,fieldset[disabled] .btn-dropbox:focus,.btn-dropbox.disabled.focus,.btn-dropbox[disabled].focus,fieldset[disabled] .btn-dropbox.focus{background-color:#1087dd;border-color:rgba(0,0,0,0.2)}
.btn-dropbox .badge{color:#1087dd;background-color:#fff}
.btn-facebook{color:#fff;background-color:#3b5998;border-color:rgba(0,0,0,0.2)}.btn-facebook:focus,.btn-facebook.focus{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,0.2)}
.btn-facebook:hover{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,0.2)}
.btn-facebook:active,.btn-facebook.active,.open>.dropdown-toggle.btn-facebook{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,0.2)}.btn-facebook:active:hover,.btn-facebook.active:hover,.open>.dropdown-toggle.btn-facebook:hover,.btn-facebook:active:focus,.btn-facebook.active:focus,.open>.dropdown-toggle.btn-facebook:focus,.btn-facebook:active.focus,.btn-facebook.active.focus,.open>.dropdown-toggle.btn-facebook.focus{color:#fff;background-color:#23345a;border-color:rgba(0,0,0,0.2)}
.btn-facebook:active,.btn-facebook.active,.open>.dropdown-toggle.btn-facebook{background-image:none}
.btn-facebook.disabled:hover,.btn-facebook[disabled]:hover,fieldset[disabled] .btn-facebook:hover,.btn-facebook.disabled:focus,.btn-facebook[disabled]:focus,fieldset[disabled] .btn-facebook:focus,.btn-facebook.disabled.focus,.btn-facebook[disabled].focus,fieldset[disabled] .btn-facebook.focus{background-color:#3b5998;border-color:rgba(0,0,0,0.2)}
.btn-facebook .badge{color:#3b5998;background-color:#fff}
.btn-flickr{color:#fff;background-color:#ff0084;border-color:rgba(0,0,0,0.2)}.btn-flickr:focus,.btn-flickr.focus{color:#fff;background-color:#cc006a;border-color:rgba(0,0,0,0.2)}
.btn-flickr:hover{color:#fff;background-color:#cc006a;border-color:rgba(0,0,0,0.2)}
.btn-flickr:active,.btn-flickr.active,.open>.dropdown-toggle.btn-flickr{color:#fff;background-color:#cc006a;border-color:rgba(0,0,0,0.2)}.btn-flickr:active:hover,.btn-flickr.active:hover,.open>.dropdown-toggle.btn-flickr:hover,.btn-flickr:active:focus,.btn-flickr.active:focus,.open>.dropdown-toggle.btn-flickr:focus,.btn-flickr:active.focus,.btn-flickr.active.focus,.open>.dropdown-toggle.btn-flickr.focus{color:#fff;background-color:#a80057;border-color:rgba(0,0,0,0.2)}
.btn-flickr:active,.btn-flickr.active,.open>.dropdown-toggle.btn-flickr{background-image:none}
.btn-flickr.disabled:hover,.btn-flickr[disabled]:hover,fieldset[disabled] .btn-flickr:hover,.btn-flickr.disabled:focus,.btn-flickr[disabled]:focus,fieldset[disabled] .btn-flickr:focus,.btn-flickr.disabled.focus,.btn-flickr[disabled].focus,fieldset[disabled] .btn-flickr.focus{background-color:#ff0084;border-color:rgba(0,0,0,0.2)}
.btn-flickr .badge{color:#ff0084;background-color:#fff}
.btn-foursquare{color:#fff;background-color:#f94877;border-color:rgba(0,0,0,0.2)}.btn-foursquare:focus,.btn-foursquare.focus{color:#fff;background-color:#f71752;border-color:rgba(0,0,0,0.2)}
.btn-foursquare:hover{color:#fff;background-color:#f71752;border-color:rgba(0,0,0,0.2)}
.btn-foursquare:active,.btn-foursquare.active,.open>.dropdown-toggle.btn-foursquare{color:#fff;background-color:#f71752;border-color:rgba(0,0,0,0.2)}.btn-foursquare:active:hover,.btn-foursquare.active:hover,.open>.dropdown-toggle.btn-foursquare:hover,.btn-foursquare:active:focus,.btn-foursquare.active:focus,.open>.dropdown-toggle.btn-foursquare:focus,.btn-foursquare:active.focus,.btn-foursquare.active.focus,.open>.dropdown-toggle.btn-foursquare.focus{color:#fff;background-color:#e30742;border-color:rgba(0,0,0,0.2)}
.btn-foursquare:active,.btn-foursquare.active,.open>.dropdown-toggle.btn-foursquare{background-image:none}
.btn-foursquare.disabled:hover,.btn-foursquare[disabled]:hover,fieldset[disabled] .btn-foursquare:hover,.btn-foursquare.disabled:focus,.btn-foursquare[disabled]:focus,fieldset[disabled] .btn-foursquare:focus,.btn-foursquare.disabled.focus,.btn-foursquare[disabled].focus,fieldset[disabled] .btn-foursquare.focus{background-color:#f94877;border-color:rgba(0,0,0,0.2)}
.btn-foursquare .badge{color:#f94877;background-color:#fff}
.btn-github{color:#fff;background-color:#444;border-color:rgba(0,0,0,0.2)}.btn-github:focus,.btn-github.focus{color:#fff;background-color:#2b2b2b;border-color:rgba(0,0,0,0.2)}
.btn-github:hover{color:#fff;background-color:#2b2b2b;border-color:rgba(0,0,0,0.2)}
.btn-github:active,.btn-github.active,.open>.dropdown-toggle.btn-github{color:#fff;background-color:#2b2b2b;border-color:rgba(0,0,0,0.2)}.btn-github:active:hover,.btn-github.active:hover,.open>.dropdown-toggle.btn-github:hover,.btn-github:active:focus,.btn-github.active:focus,.open>.dropdown-toggle.btn-github:focus,.btn-github:active.focus,.btn-github.active.focus,.open>.dropdown-toggle.btn-github.focus{color:#fff;background-color:#191919;border-color:rgba(0,0,0,0.2)}
.btn-github:active,.btn-github.active,.open>.dropdown-toggle.btn-github{background-image:none}
.btn-github.disabled:hover,.btn-github[disabled]:hover,fieldset[disabled] .btn-github:hover,.btn-github.disabled:focus,.btn-github[disabled]:focus,fieldset[disabled] .btn-github:focus,.btn-github.disabled.focus,.btn-github[disabled].focus,fieldset[disabled] .btn-github.focus{background-color:#444;border-color:rgba(0,0,0,0.2)}
.btn-github .badge{color:#444;background-color:#fff}
.btn-google{color:#fff;background-color:#dd4b39;border-color:rgba(0,0,0,0.2)}.btn-google:focus,.btn-google.focus{color:#fff;background-color:#c23321;border-color:rgba(0,0,0,0.2)}
.btn-google:hover{color:#fff;background-color:#c23321;border-color:rgba(0,0,0,0.2)}
.btn-google:active,.btn-google.active,.open>.dropdown-toggle.btn-google{color:#fff;background-color:#c23321;border-color:rgba(0,0,0,0.2)}.btn-google:active:hover,.btn-google.active:hover,.open>.dropdown-toggle.btn-google:hover,.btn-google:active:focus,.btn-google.active:focus,.open>.dropdown-toggle.btn-google:focus,.btn-google:active.focus,.btn-google.active.focus,.open>.dropdown-toggle.btn-google.focus{color:#fff;background-color:#a32b1c;border-color:rgba(0,0,0,0.2)}
.btn-google:active,.btn-google.active,.open>.dropdown-toggle.btn-google{background-image:none}
.btn-google.disabled:hover,.btn-google[disabled]:hover,fieldset[disabled] .btn-google:hover,.btn-google.disabled:focus,.btn-google[disabled]:focus,fieldset[disabled] .btn-google:focus,.btn-google.disabled.focus,.btn-google[disabled].focus,fieldset[disabled] .btn-google.focus{background-color:#dd4b39;border-color:rgba(0,0,0,0.2)}
.btn-google .badge{color:#dd4b39;background-color:#fff}
.btn-instagram{color:#fff;background-color:#3f729b;border-color:rgba(0,0,0,0.2)}.btn-instagram:focus,.btn-instagram.focus{color:#fff;background-color:#305777;border-color:rgba(0,0,0,0.2)}
.btn-instagram:hover{color:#fff;background-color:#305777;border-color:rgba(0,0,0,0.2)}
.btn-instagram:active,.btn-instagram.active,.open>.dropdown-toggle.btn-instagram{color:#fff;background-color:#305777;border-color:rgba(0,0,0,0.2)}.btn-instagram:active:hover,.btn-instagram.active:hover,.open>.dropdown-toggle.btn-instagram:hover,.btn-instagram:active:focus,.btn-instagram.active:focus,.open>.dropdown-toggle.btn-instagram:focus,.btn-instagram:active.focus,.btn-instagram.active.focus,.open>.dropdown-toggle.btn-instagram.focus{color:#fff;background-color:#26455d;border-color:rgba(0,0,0,0.2)}
.btn-instagram:active,.btn-instagram.active,.open>.dropdown-toggle.btn-instagram{background-image:none}
.btn-instagram.disabled:hover,.btn-instagram[disabled]:hover,fieldset[disabled] .btn-instagram:hover,.btn-instagram.disabled:focus,.btn-instagram[disabled]:focus,fieldset[disabled] .btn-instagram:focus,.btn-instagram.disabled.focus,.btn-instagram[disabled].focus,fieldset[disabled] .btn-instagram.focus{background-color:#3f729b;border-color:rgba(0,0,0,0.2)}
.btn-instagram .badge{color:#3f729b;background-color:#fff}
.btn-linkedin{color:#fff;background-color:#007bb6;border-color:rgba(0,0,0,0.2)}.btn-linkedin:focus,.btn-linkedin.focus{color:#fff;background-color:#005983;border-color:rgba(0,0,0,0.2)}
.btn-linkedin:hover{color:#fff;background-color:#005983;border-color:rgba(0,0,0,0.2)}
.btn-linkedin:active,.btn-linkedin.active,.open>.dropdown-toggle.btn-linkedin{color:#fff;background-color:#005983;border-color:rgba(0,0,0,0.2)}.btn-linkedin:active:hover,.btn-linkedin.active:hover,.open>.dropdown-toggle.btn-linkedin:hover,.btn-linkedin:active:focus,.btn-linkedin.active:focus,.open>.dropdown-toggle.btn-linkedin:focus,.btn-linkedin:active.focus,.btn-linkedin.active.focus,.open>.dropdown-toggle.btn-linkedin.focus{color:#fff;background-color:#00405f;border-color:rgba(0,0,0,0.2)}
.btn-linkedin:active,.btn-linkedin.active,.open>.dropdown-toggle.btn-linkedin{background-image:none}
.btn-linkedin.disabled:hover,.btn-linkedin[disabled]:hover,fieldset[disabled] .btn-linkedin:hover,.btn-linkedin.disabled:focus,.btn-linkedin[disabled]:focus,fieldset[disabled] .btn-linkedin:focus,.btn-linkedin.disabled.focus,.btn-linkedin[disabled].focus,fieldset[disabled] .btn-linkedin.focus{background-color:#007bb6;border-color:rgba(0,0,0,0.2)}
.btn-linkedin .badge{color:#007bb6;background-color:#fff}
.btn-microsoft{color:#fff;background-color:#2672ec;border-color:rgba(0,0,0,0.2)}.btn-microsoft:focus,.btn-microsoft.focus{color:#fff;background-color:#125acd;border-color:rgba(0,0,0,0.2)}
.btn-microsoft:hover{color:#fff;background-color:#125acd;border-color:rgba(0,0,0,0.2)}
.btn-microsoft:active,.btn-microsoft.active,.open>.dropdown-toggle.btn-microsoft{color:#fff;background-color:#125acd;border-color:rgba(0,0,0,0.2)}.btn-microsoft:active:hover,.btn-microsoft.active:hover,.open>.dropdown-toggle.btn-microsoft:hover,.btn-microsoft:active:focus,.btn-microsoft.active:focus,.open>.dropdown-toggle.btn-microsoft:focus,.btn-microsoft:active.focus,.btn-microsoft.active.focus,.open>.dropdown-toggle.btn-microsoft.focus{color:#fff;background-color:#0f4bac;border-color:rgba(0,0,0,0.2)}
.btn-microsoft:active,.btn-microsoft.active,.open>.dropdown-toggle.btn-microsoft{background-image:none}
.btn-microsoft.disabled:hover,.btn-microsoft[disabled]:hover,fieldset[disabled] .btn-microsoft:hover,.btn-microsoft.disabled:focus,.btn-microsoft[disabled]:focus,fieldset[disabled] .btn-microsoft:focus,.btn-microsoft.disabled.focus,.btn-microsoft[disabled].focus,fieldset[disabled] .btn-microsoft.focus{background-color:#2672ec;border-color:rgba(0,0,0,0.2)}
.btn-microsoft .badge{color:#2672ec;background-color:#fff}
.btn-odnoklassniki{color:#fff;background-color:#f4731c;border-color:rgba(0,0,0,0.2)}.btn-odnoklassniki:focus,.btn-odnoklassniki.focus{color:#fff;background-color:#d35b0a;border-color:rgba(0,0,0,0.2)}
.btn-odnoklassniki:hover{color:#fff;background-color:#d35b0a;border-color:rgba(0,0,0,0.2)}
.btn-odnoklassniki:active,.btn-odnoklassniki.active,.open>.dropdown-toggle.btn-odnoklassniki{color:#fff;background-color:#d35b0a;border-color:rgba(0,0,0,0.2)}.btn-odnoklassniki:active:hover,.btn-odnoklassniki.active:hover,.open>.dropdown-toggle.btn-odnoklassniki:hover,.btn-odnoklassniki:active:focus,.btn-odnoklassniki.active:focus,.open>.dropdown-toggle.btn-odnoklassniki:focus,.btn-odnoklassniki:active.focus,.btn-odnoklassniki.active.focus,.open>.dropdown-toggle.btn-odnoklassniki.focus{color:#fff;background-color:#b14c09;border-color:rgba(0,0,0,0.2)}
.btn-odnoklassniki:active,.btn-odnoklassniki.active,.open>.dropdown-toggle.btn-odnoklassniki{background-image:none}
.btn-odnoklassniki.disabled:hover,.btn-odnoklassniki[disabled]:hover,fieldset[disabled] .btn-odnoklassniki:hover,.btn-odnoklassniki.disabled:focus,.btn-odnoklassniki[disabled]:focus,fieldset[disabled] .btn-odnoklassniki:focus,.btn-odnoklassniki.disabled.focus,.btn-odnoklassniki[disabled].focus,fieldset[disabled] .btn-odnoklassniki.focus{background-color:#f4731c;border-color:rgba(0,0,0,0.2)}
.btn-odnoklassniki .badge{color:#f4731c;background-color:#fff}
.btn-openid{color:#fff;background-color:#f7931e;border-color:rgba(0,0,0,0.2)}.btn-openid:focus,.btn-openid.focus{color:#fff;background-color:#da7908;border-color:rgba(0,0,0,0.2)}
.btn-openid:hover{color:#fff;background-color:#da7908;border-color:rgba(0,0,0,0.2)}
.btn-openid:active,.btn-openid.active,.open>.dropdown-toggle.btn-openid{color:#fff;background-color:#da7908;border-color:rgba(0,0,0,0.2)}.btn-openid:active:hover,.btn-openid.active:hover,.open>.dropdown-toggle.btn-openid:hover,.btn-openid:active:focus,.btn-openid.active:focus,.open>.dropdown-toggle.btn-openid:focus,.btn-openid:active.focus,.btn-openid.active.focus,.open>.dropdown-toggle.btn-openid.focus{color:#fff;background-color:#b86607;border-color:rgba(0,0,0,0.2)}
.btn-openid:active,.btn-openid.active,.open>.dropdown-toggle.btn-openid{background-image:none}
.btn-openid.disabled:hover,.btn-openid[disabled]:hover,fieldset[disabled] .btn-openid:hover,.btn-openid.disabled:focus,.btn-openid[disabled]:focus,fieldset[disabled] .btn-openid:focus,.btn-openid.disabled.focus,.btn-openid[disabled].focus,fieldset[disabled] .btn-openid.focus{background-color:#f7931e;border-color:rgba(0,0,0,0.2)}
.btn-openid .badge{color:#f7931e;background-color:#fff}
.btn-pinterest{color:#fff;background-color:#cb2027;border-color:rgba(0,0,0,0.2)}.btn-pinterest:focus,.btn-pinterest.focus{color:#fff;background-color:#9f191f;border-color:rgba(0,0,0,0.2)}
.btn-pinterest:hover{color:#fff;background-color:#9f191f;border-color:rgba(0,0,0,0.2)}
.btn-pinterest:active,.btn-pinterest.active,.open>.dropdown-toggle.btn-pinterest{color:#fff;background-color:#9f191f;border-color:rgba(0,0,0,0.2)}.btn-pinterest:active:hover,.btn-pinterest.active:hover,.open>.dropdown-toggle.btn-pinterest:hover,.btn-pinterest:active:focus,.btn-pinterest.active:focus,.open>.dropdown-toggle.btn-pinterest:focus,.btn-pinterest:active.focus,.btn-pinterest.active.focus,.open>.dropdown-toggle.btn-pinterest.focus{color:#fff;background-color:#801419;border-color:rgba(0,0,0,0.2)}
.btn-pinterest:active,.btn-pinterest.active,.open>.dropdown-toggle.btn-pinterest{background-image:none}
.btn-pinterest.disabled:hover,.btn-pinterest[disabled]:hover,fieldset[disabled] .btn-pinterest:hover,.btn-pinterest.disabled:focus,.btn-pinterest[disabled]:focus,fieldset[disabled] .btn-pinterest:focus,.btn-pinterest.disabled.focus,.btn-pinterest[disabled].focus,fieldset[disabled] .btn-pinterest.focus{background-color:#cb2027;border-color:rgba(0,0,0,0.2)}
.btn-pinterest .badge{color:#cb2027;background-color:#fff}
.btn-reddit{color:#000;background-color:#eff7ff;border-color:rgba(0,0,0,0.2)}.btn-reddit:focus,.btn-reddit.focus{color:#000;background-color:#bcddff;border-color:rgba(0,0,0,0.2)}
.btn-reddit:hover{color:#000;background-color:#bcddff;border-color:rgba(0,0,0,0.2)}
.btn-reddit:active,.btn-reddit.active,.open>.dropdown-toggle.btn-reddit{color:#000;background-color:#bcddff;border-color:rgba(0,0,0,0.2)}.btn-reddit:active:hover,.btn-reddit.active:hover,.open>.dropdown-toggle.btn-reddit:hover,.btn-reddit:active:focus,.btn-reddit.active:focus,.open>.dropdown-toggle.btn-reddit:focus,.btn-reddit:active.focus,.btn-reddit.active.focus,.open>.dropdown-toggle.btn-reddit.focus{color:#000;background-color:#98ccff;border-color:rgba(0,0,0,0.2)}
.btn-reddit:active,.btn-reddit.active,.open>.dropdown-toggle.btn-reddit{background-image:none}
.btn-reddit.disabled:hover,.btn-reddit[disabled]:hover,fieldset[disabled] .btn-reddit:hover,.btn-reddit.disabled:focus,.btn-reddit[disabled]:focus,fieldset[disabled] .btn-reddit:focus,.btn-reddit.disabled.focus,.btn-reddit[disabled].focus,fieldset[disabled] .btn-reddit.focus{background-color:#eff7ff;border-color:rgba(0,0,0,0.2)}
.btn-reddit .badge{color:#eff7ff;background-color:#000}
.btn-soundcloud{color:#fff;background-color:#f50;border-color:rgba(0,0,0,0.2)}.btn-soundcloud:focus,.btn-soundcloud.focus{color:#fff;background-color:#c40;border-color:rgba(0,0,0,0.2)}
.btn-soundcloud:hover{color:#fff;background-color:#c40;border-color:rgba(0,0,0,0.2)}
.btn-soundcloud:active,.btn-soundcloud.active,.open>.dropdown-toggle.btn-soundcloud{color:#fff;background-color:#c40;border-color:rgba(0,0,0,0.2)}.btn-soundcloud:active:hover,.btn-soundcloud.active:hover,.open>.dropdown-toggle.btn-soundcloud:hover,.btn-soundcloud:active:focus,.btn-soundcloud.active:focus,.open>.dropdown-toggle.btn-soundcloud:focus,.btn-soundcloud:active.focus,.btn-soundcloud.active.focus,.open>.dropdown-toggle.btn-soundcloud.focus{color:#fff;background-color:#a83800;border-color:rgba(0,0,0,0.2)}
.btn-soundcloud:active,.btn-soundcloud.active,.open>.dropdown-toggle.btn-soundcloud{background-image:none}
.btn-soundcloud.disabled:hover,.btn-soundcloud[disabled]:hover,fieldset[disabled] .btn-soundcloud:hover,.btn-soundcloud.disabled:focus,.btn-soundcloud[disabled]:focus,fieldset[disabled] .btn-soundcloud:focus,.btn-soundcloud.disabled.focus,.btn-soundcloud[disabled].focus,fieldset[disabled] .btn-soundcloud.focus{background-color:#f50;border-color:rgba(0,0,0,0.2)}
.btn-soundcloud .badge{color:#f50;background-color:#fff}
.btn-tumblr{color:#fff;background-color:#2c4762;border-color:rgba(0,0,0,0.2)}.btn-tumblr:focus,.btn-tumblr.focus{color:#fff;background-color:#1c2d3f;border-color:rgba(0,0,0,0.2)}
.btn-tumblr:hover{color:#fff;background-color:#1c2d3f;border-color:rgba(0,0,0,0.2)}
.btn-tumblr:active,.btn-tumblr.active,.open>.dropdown-toggle.btn-tumblr{color:#fff;background-color:#1c2d3f;border-color:rgba(0,0,0,0.2)}.btn-tumblr:active:hover,.btn-tumblr.active:hover,.open>.dropdown-toggle.btn-tumblr:hover,.btn-tumblr:active:focus,.btn-tumblr.active:focus,.open>.dropdown-toggle.btn-tumblr:focus,.btn-tumblr:active.focus,.btn-tumblr.active.focus,.open>.dropdown-toggle.btn-tumblr.focus{color:#fff;background-color:#111c26;border-color:rgba(0,0,0,0.2)}
.btn-tumblr:active,.btn-tumblr.active,.open>.dropdown-toggle.btn-tumblr{background-image:none}
.btn-tumblr.disabled:hover,.btn-tumblr[disabled]:hover,fieldset[disabled] .btn-tumblr:hover,.btn-tumblr.disabled:focus,.btn-tumblr[disabled]:focus,fieldset[disabled] .btn-tumblr:focus,.btn-tumblr.disabled.focus,.btn-tumblr[disabled].focus,fieldset[disabled] .btn-tumblr.focus{background-color:#2c4762;border-color:rgba(0,0,0,0.2)}
.btn-tumblr .badge{color:#2c4762;background-color:#fff}
.btn-twitter{color:#fff;background-color:#55acee;border-color:rgba(0,0,0,0.2)}.btn-twitter:focus,.btn-twitter.focus{color:#fff;background-color:#2795e9;border-color:rgba(0,0,0,0.2)}
.btn-twitter:hover{color:#fff;background-color:#2795e9;border-color:rgba(0,0,0,0.2)}
.btn-twitter:active,.btn-twitter.active,.open>.dropdown-toggle.btn-twitter{color:#fff;background-color:#2795e9;border-color:rgba(0,0,0,0.2)}.btn-twitter:active:hover,.btn-twitter.active:hover,.open>.dropdown-toggle.btn-twitter:hover,.btn-twitter:active:focus,.btn-twitter.active:focus,.open>.dropdown-toggle.btn-twitter:focus,.btn-twitter:active.focus,.btn-twitter.active.focus,.open>.dropdown-toggle.btn-twitter.focus{color:#fff;background-color:#1583d7;border-color:rgba(0,0,0,0.2)}
.btn-twitter:active,.btn-twitter.active,.open>.dropdown-toggle.btn-twitter{background-image:none}
.btn-twitter.disabled:hover,.btn-twitter[disabled]:hover,fieldset[disabled] .btn-twitter:hover,.btn-twitter.disabled:focus,.btn-twitter[disabled]:focus,fieldset[disabled] .btn-twitter:focus,.btn-twitter.disabled.focus,.btn-twitter[disabled].focus,fieldset[disabled] .btn-twitter.focus{background-color:#55acee;border-color:rgba(0,0,0,0.2)}
.btn-twitter .badge{color:#55acee;background-color:#fff}
.btn-vimeo{color:#fff;background-color:#1ab7ea;border-color:rgba(0,0,0,0.2)}.btn-vimeo:focus,.btn-vimeo.focus{color:#fff;background-color:#1295bf;border-color:rgba(0,0,0,0.2)}
.btn-vimeo:hover{color:#fff;background-color:#1295bf;border-color:rgba(0,0,0,0.2)}
.btn-vimeo:active,.btn-vimeo.active,.open>.dropdown-toggle.btn-vimeo{color:#fff;background-color:#1295bf;border-color:rgba(0,0,0,0.2)}.btn-vimeo:active:hover,.btn-vimeo.active:hover,.open>.dropdown-toggle.btn-vimeo:hover,.btn-vimeo:active:focus,.btn-vimeo.active:focus,.open>.dropdown-toggle.btn-vimeo:focus,.btn-vimeo:active.focus,.btn-vimeo.active.focus,.open>.dropdown-toggle.btn-vimeo.focus{color:#fff;background-color:#0f7b9f;border-color:rgba(0,0,0,0.2)}
.btn-vimeo:active,.btn-vimeo.active,.open>.dropdown-toggle.btn-vimeo{background-image:none}
.btn-vimeo.disabled:hover,.btn-vimeo[disabled]:hover,fieldset[disabled] .btn-vimeo:hover,.btn-vimeo.disabled:focus,.btn-vimeo[disabled]:focus,fieldset[disabled] .btn-vimeo:focus,.btn-vimeo.disabled.focus,.btn-vimeo[disabled].focus,fieldset[disabled] .btn-vimeo.focus{background-color:#1ab7ea;border-color:rgba(0,0,0,0.2)}
.btn-vimeo .badge{color:#1ab7ea;background-color:#fff}
.btn-vk{color:#fff;background-color:#587ea3;border-color:rgba(0,0,0,0.2)}.btn-vk:focus,.btn-vk.focus{color:#fff;background-color:#466482;border-color:rgba(0,0,0,0.2)}
.btn-vk:hover{color:#fff;background-color:#466482;border-color:rgba(0,0,0,0.2)}
.btn-vk:active,.btn-vk.active,.open>.dropdown-toggle.btn-vk{color:#fff;background-color:#466482;border-color:rgba(0,0,0,0.2)}.btn-vk:active:hover,.btn-vk.active:hover,.open>.dropdown-toggle.btn-vk:hover,.btn-vk:active:focus,.btn-vk.active:focus,.open>.dropdown-toggle.btn-vk:focus,.btn-vk:active.focus,.btn-vk.active.focus,.open>.dropdown-toggle.btn-vk.focus{color:#fff;background-color:#3a526b;border-color:rgba(0,0,0,0.2)}
.btn-vk:active,.btn-vk.active,.open>.dropdown-toggle.btn-vk{background-image:none}
.btn-vk.disabled:hover,.btn-vk[disabled]:hover,fieldset[disabled] .btn-vk:hover,.btn-vk.disabled:focus,.btn-vk[disabled]:focus,fieldset[disabled] .btn-vk:focus,.btn-vk.disabled.focus,.btn-vk[disabled].focus,fieldset[disabled] .btn-vk.focus{background-color:#587ea3;border-color:rgba(0,0,0,0.2)}
.btn-vk .badge{color:#587ea3;background-color:#fff}
.btn-yahoo{color:#fff;background-color:#720e9e;border-color:rgba(0,0,0,0.2)}.btn-yahoo:focus,.btn-yahoo.focus{color:#fff;background-color:#500a6f;border-color:rgba(0,0,0,0.2)}
.btn-yahoo:hover{color:#fff;background-color:#500a6f;border-color:rgba(0,0,0,0.2)}
.btn-yahoo:active,.btn-yahoo.active,.open>.dropdown-toggle.btn-yahoo{color:#fff;background-color:#500a6f;border-color:rgba(0,0,0,0.2)}.btn-yahoo:active:hover,.btn-yahoo.active:hover,.open>.dropdown-toggle.btn-yahoo:hover,.btn-yahoo:active:focus,.btn-yahoo.active:focus,.open>.dropdown-toggle.btn-yahoo:focus,.btn-yahoo:active.focus,.btn-yahoo.active.focus,.open>.dropdown-toggle.btn-yahoo.focus{color:#fff;background-color:#39074e;border-color:rgba(0,0,0,0.2)}
.btn-yahoo:active,.btn-yahoo.active,.open>.dropdown-toggle.btn-yahoo{background-image:none}
.btn-yahoo.disabled:hover,.btn-yahoo[disabled]:hover,fieldset[disabled] .btn-yahoo:hover,.btn-yahoo.disabled:focus,.btn-yahoo[disabled]:focus,fieldset[disabled] .btn-yahoo:focus,.btn-yahoo.disabled.focus,.btn-yahoo[disabled].focus,fieldset[disabled] .btn-yahoo.focus{background-color:#720e9e;border-color:rgba(0,0,0,0.2)}
.btn-yahoo .badge{color:#720e9e;background-color:#fff}

/* Classes related to the whole page */

/* Lato font declarations
   This Lato fontstack includes *all* the available font-weights available - from hairline to black
   font-weight value    font style
   100                  hairline
   200                  thin
   300                  light
   400                  regular (DEFAULT normal weight. Used when font-weight is not specified or set to normal)
   500                  medium
   600                  semibold
   700                  bold (DEFAULT bold weight. Used when font-weight is set to bold)
   800                  heavy
   900                  black

   Any CSS class using weights other than (400/normal or 700/bold) should set the font-weight directive with !important
   and care must be taken to ensure that any element using that class do not have (or inherit) other font-weights set
   with !important. Otherwise, the output will be unpredictable
 */

/* Core Lato font declarations for regular, bold, bold italic and italic variants */
@font-face {
    font-family: 'Lato';
    src: url(../assets/Lato-Regular-8ab18d934cfa1e51dc8273cd8585387e.eot); /* IE9 Compat Modes */
    src: url(../assets/Lato-Regular-8ab18d934cfa1e51dc8273cd8585387e.eot?#iefix) format('embedded-opentype'), 
    url(../assets/Lato-Regular-bd03a2cc277bbbc338d464e679fe9942.woff2) format('woff2'), 
    url(../assets/Lato-Regular-27bd77b9162d388cb8d4c4217c7c5e2a.woff) format('woff'), 
    url(../assets/Lato-Regular-6d4e78225df0cfd5fe1bf3e8547fefe4.ttf) format('truetype');
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'Lato';
    src: url(../assets/Lato-Italic-0acac3839ae2c89cf8b553c29943fceb.eot); /* IE9 Compat Modes */
    src: url(../assets/Lato-Italic-0acac3839ae2c89cf8b553c29943fceb.eot?#iefix) format('embedded-opentype'), 
    url(../assets/Lato-Italic-4eb103b4d12be57cb1d040ed5e162e9d.woff2) format('woff2'), 
    url(../assets/Lato-Italic-f28f2d6482446544ef1ea1ccc6dd5892.woff) format('woff'), 
    url(../assets/Lato-Italic-4ffc48d0549568bb624b9ef9c1cf2626.ttf) format('truetype');
    font-style: italic;
    font-weight: 400;
}

@font-face {
    font-family: 'Lato';
    src: url(../assets/Lato-Bold-a2fb219c999a8fa6b95ad7c24890072e.eot); /* IE9 Compat Modes */
    src: url(../assets/Lato-Bold-a2fb219c999a8fa6b95ad7c24890072e.eot?#iefix) format('embedded-opentype'), 
    url(../assets/Lato-Bold-cccb897485813c7c256901dbca54ecf2.woff2) format('woff2'), 
    url(../assets/Lato-Bold-d878b6c29b10beca227e9eef4246111b.woff) format('woff'), 
    url(../assets/Lato-Bold-5b1b8b856d7a8cb1cb0bae6d0573f2e9.ttf) format('truetype');
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: 'Lato';
    src: url(../assets/Lato-BoldItalic-7b48d663230528ecb6dbf730251bbe44.eot); /* IE9 Compat Modes */
    src: url(../assets/Lato-BoldItalic-7b48d663230528ecb6dbf730251bbe44.eot?#iefix) format('embedded-opentype'), 
    url(../assets/Lato-BoldItalic-0b6bb6725576b072c5d0b02ecdd1900d.woff2) format('woff2'), 
    url(../assets/Lato-BoldItalic-9c7e4e9eb485b4a121c760e61bc3707c.woff) format('woff'), 
    url(../assets/Lato-BoldItalic-71e8fd8ecaf5b352d6bee317985c2ee8.ttf) format('truetype');
    font-style: italic;
    font-weight: 700;
}

/*  Supplementary font weights (100, 200, 300, 500, 600, 800, 900) */

@font-face {
    font-family: 'Lato';
    src: url(../assets/Lato-Hairline-c27ae7852e3ba0749f095e5a9a78911b.eot); /* IE9 Compat Modes */
    src: url(../assets/Lato-Hairline-c27ae7852e3ba0749f095e5a9a78911b.eot?#iefix) format('embedded-opentype'), 
    url(../assets/Lato-Hairline-ada4458b361d5e72bcbd19da105afdc5.woff2) format('woff2'), 
    url(../assets/Lato-Hairline-482fe0a9e92d9c5ff7fec117ca54c8ae.woff) format('woff'), 
    url(../assets/Lato-Hairline-5c535860c145cbafff4b17e2bfa865a3.ttf) format('truetype');
    font-style: normal;
    font-weight: 100;
}

@font-face {
    font-family: 'Lato';
    src: url(../assets/Lato-HairlineItalic-0cf7709b2fb64cc047a2a54b56d79dc6.eot); /* IE9 Compat Modes */
    src: url(../assets/Lato-HairlineItalic-0cf7709b2fb64cc047a2a54b56d79dc6.eot?#iefix) format('embedded-opentype'), 
    url(../assets/Lato-HairlineItalic-d9cf517802956cd88eadcb9158aa6dec.woff2) format('woff2'), 
    url(../assets/Lato-HairlineItalic-b4da0df63131b83ddeec1febb5b15374.woff) format('woff'), 
    url(../assets/Lato-HairlineItalic-2b4910bf8b75c6b15b7356aa9a3552ff.ttf) format('truetype');
    font-style: italic;
    font-weight: 100;
}

@font-face {
    font-family: 'Lato';
    src: url(../assets/Lato-Thin-fe4e34a5b0708ee85231d4b43fa6f2f3.eot); /* IE9 Compat Modes */
    src: url(../assets/Lato-Thin-fe4e34a5b0708ee85231d4b43fa6f2f3.eot?#iefix) format('embedded-opentype'), 
    url(../assets/Lato-Thin-0faa1074c17a74a7f5e32cbe6f9d76f3.woff2) format('woff2'), 
    url(../assets/Lato-Thin-13fa4c60e0ee7ea5fe2bd84059fb8cac.woff) format('woff'), 
    url(../assets/Lato-Thin-454421e7b2b8aaee2980346571f86863.ttf) format('truetype');
    font-style: normal;
    font-weight: 200;
}

@font-face {
    font-family: 'Lato';
    src: url(../assets/Lato-ThinItalic-2e89a614a99ac1324dac2d0cd1521be7.eot); /* IE9 Compat Modes */
    src: url(../assets/Lato-ThinItalic-2e89a614a99ac1324dac2d0cd1521be7.eot?#iefix) format('embedded-opentype'), 
    url(../assets/Lato-ThinItalic-880cffe4febaa7476b6aee71db68b7e4.woff2) format('woff2'), 
    url(../assets/Lato-ThinItalic-16d14ad314296a4644d550c8f20bd407.woff) format('woff'), 
    url(../assets/Lato-ThinItalic-14caa659f6c771d8125c41098035cfcd.ttf) format('truetype');
    font-style: italic;
    font-weight: 200;
}

@font-face {
    font-family: 'Lato';
    src: url(../assets/Lato-Light-4afee4c98483c85a33460792d1f0f6db.eot); /* IE9 Compat Modes */
    src: url(../assets/Lato-Light-4afee4c98483c85a33460792d1f0f6db.eot?#iefix) format('embedded-opentype'), 
    url(../assets/Lato-Light-7244318390cc4d36aac4a613ff42d308.woff2) format('woff2'), 
    url(../assets/Lato-Light-90301aa07d780a09812229d6375c3b28.woff) format('woff'), 
    url(../assets/Lato-Light-cf44fd55d7045a2378f92f86ddfca3d3.ttf) format('truetype');
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: 'Lato';
    src: url(../assets/Lato-LightItalic-7be5435e82c853b13cae85af56abf815.eot); /* IE9 Compat Modes */
    src: url(../assets/Lato-LightItalic-7be5435e82c853b13cae85af56abf815.eot?#iefix) format('embedded-opentype'), 
    url(../assets/Lato-LightItalic-314210a4825a7cc8ca7db893dfd9d283.woff2) format('woff2'), 
    url(../assets/Lato-LightItalic-b55e385f24f0f9f724dac935fe292ecf.woff) format('woff'), 
    url(../assets/Lato-LightItalic-7865ec9dc1b26d5447c722f5c2023687.ttf) format('truetype');
    font-style: italic;
    font-weight: 300;
}

@font-face {
    font-family: 'Lato';
    src: url(../assets/Lato-Medium-cecc32d267ee07ce3413637314b66ca0.eot); /* IE9 Compat Modes */
    src: url(../assets/Lato-Medium-cecc32d267ee07ce3413637314b66ca0.eot?#iefix) format('embedded-opentype'), 
    url(../assets/Lato-Medium-0996d39c4cf5d223a14559dfa37047fd.woff2) format('woff2'), 
    url(../assets/Lato-Medium-acbd6ecc97c80340e9bf00ea80063234.woff) format('woff'), 
    url(../assets/Lato-Medium-06e1c8dbe641dd9dfa4367dc2a6efb9f.ttf) format('truetype');
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: 'Lato';
    src: url(../assets/Lato-MediumItalic-b56b2012c6aa9ad5bd1d901ed8ab0e2d.eot); /* IE9 Compat Modes */
    src: url(../assets/Lato-MediumItalic-b56b2012c6aa9ad5bd1d901ed8ab0e2d.eot?#iefix) format('embedded-opentype'), 
    url(../assets/Lato-MediumItalic-4d295621045bd774d4beed9d6d5796e4.woff2) format('woff2'), 
    url(../assets/Lato-MediumItalic-aa1a75124661b40a6770dc0d8274ddaa.woff) format('woff'), 
    url(../assets/Lato-MediumItalic-96f828791c07f91c0aa986e603b3b4d3.ttf) format('truetype');
    font-style: italic;
    font-weight: 500;
}

@font-face {
    font-family: 'Lato';
    src: url(../assets/Lato-Semibold-8bb939ef88123e279c292794c0b23768.eot); /* IE9 Compat Modes */
    src: url(../assets/Lato-Semibold-8bb939ef88123e279c292794c0b23768.eot?#iefix) format('embedded-opentype'), 
    url(../assets/Lato-Semibold-8b4f872c5de19974857328d06d3fe48f.woff2) format('woff2'), 
    url(../assets/Lato-Semibold-c2b50f4a7d908c8d06f5b05ec135e166.woff) format('woff'), 
    url(../assets/Lato-Semibold-3b0cd7254b3b6ddb8a313d41573fda8b.ttf) format('truetype');
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: 'Lato';
    src: url(../assets/Lato-SemiboldItalic-82b587d9f743383fb03f94e579d08193.eot); /* IE9 Compat Modes */
    src: url(../assets/Lato-SemiboldItalic-82b587d9f743383fb03f94e579d08193.eot?#iefix) format('embedded-opentype'), 
    url(../assets/Lato-SemiboldItalic-80f6811f6c30735dab68a01372d8b78f.woff2) format('woff2'), 
    url(../assets/Lato-SemiboldItalic-9fcec04cdba9253e002e740a7cd743fe.woff) format('woff'), 
    url(../assets/Lato-SemiboldItalic-d5fa302ed37be6c20a884a70850dba22.ttf) format('truetype');
    font-style: italic;
    font-weight: 600;
}

@font-face {
    font-family: 'Lato';
    src: url(../assets/Lato-Heavy-b0357e425384d4222769a19587e27867.eot); /* IE9 Compat Modes */
    src: url(../assets/Lato-Heavy-b0357e425384d4222769a19587e27867.eot?#iefix) format('embedded-opentype'), 
    url(../assets/Lato-Heavy-c9cbbdc3762c340d5d37073a54971487.woff2) format('woff2'), 
    url(../assets/Lato-Heavy-2ce4d82354fdf1be1788c526d94eefc1.woff) format('woff'), 
    url(../assets/Lato-Heavy-72c6dd530f0acc74b5286a7dcfa9e2d8.ttf) format('truetype');
    font-style: normal;
    font-weight: 800;
}

@font-face {
    font-family: 'Lato';
    src: url(../assets/Lato-HeavyItalic-4c67ae6fdd968642a4add3b760c5e52b.eot); /* IE9 Compat Modes */
    src: url(../assets/Lato-HeavyItalic-4c67ae6fdd968642a4add3b760c5e52b.eot?#iefix) format('embedded-opentype'), 
    url(../assets/Lato-HeavyItalic-46f0461b6e19880fe446f094bbe787f4.woff2) format('woff2'), 
    url(../assets/Lato-HeavyItalic-38d2399f6c10d8ba1d8d45ba0c440ad5.woff) format('woff'), 
    url(../assets/Lato-HeavyItalic-4a1d8c14d03979c73781b76904fa95bc.ttf) format('truetype');
    font-style: italic;
    font-weight: 800;
}

@font-face {
    font-family: 'Lato';
    src: url(../assets/Lato-Black-d2d9ddbd08ae0ade29cebca9330a05fc.eot); /* IE9 Compat Modes */
    src: url(../assets/Lato-Black-d2d9ddbd08ae0ade29cebca9330a05fc.eot?#iefix) format('embedded-opentype'), 
    url(../assets/Lato-Black-33d5f0d956f3fc30bc51f81047a2c47d.woff2) format('woff2'), 
    url(../assets/Lato-Black-f80bda6afd19534368443a3d0323a140.woff) format('woff'), 
    url(../assets/Lato-Black-a54bddbc1689d05277d2127f58589917.ttf) format('truetype');
    font-style: normal;
    font-weight: 900;
}

@font-face {
    font-family: 'Lato';
    src: url(../assets/Lato-BlackItalic-a8642cee117dd62f5e48b1ff0f7db272.eot); /* IE9 Compat Modes */
    src: url(../assets/Lato-BlackItalic-a8642cee117dd62f5e48b1ff0f7db272.eot?#iefix) format('embedded-opentype'), 
    url(../assets/Lato-BlackItalic-0f4fa9755f480e75463e74b3dce5a3ee.woff2) format('woff2'), 
    url(../assets/Lato-BlackItalic-798eafdd87dc8f3174f76164f0685e02.woff) format('woff'), 
    url(../assets/Lato-BlackItalic-4c66fb2b46d728c2e8d73dff1ea22172.ttf) format('truetype');
    font-style: italic;
    font-weight: 900;
}

/* Univ Defaults */

a, a:link, a:visited, a:hover, a:focus, a:active {
    color: #E5007D;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    text-decoration:underline;
}

a:focus, .tile a:hover, .article a:hover {
    outline: 6px solid #E5007D;
    outline-offset: 0;
}
html {
    margin:0;
    padding:0
}

body {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    margin:0 8px;
    padding:0;
    height: 100%;
}

body, h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
}

h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

/* Shim added to so that old hard-coded page titles in imported HTML come through styled like h2 */
#content h1 {
    font-size: 1.5em;
}

.homepage h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.homepage .follow_us h2 {
    margin-bottom: 0.6rem;
}

a.campl-skipTo {
    position: absolute;
    left: 0;
    margin: 0.5rem;
    padding: 0.25rem;
    transform: translateX(-200%);
    transition: transform 0.3s;
}

a.campl-skipTo:focus {
    transform: translateX(0%);
}

a.campl-skipTo:focus + .main-nav-section {
    padding-top: 3rem;
}

/* Misc */

.clearfix:after {
    content: " "; /* Older browser do not support empty content */
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
 }

.container {
    max-width: 1280px;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.element{
    padding-top: 15px;
    padding-bottom: 15px;
}

.more-link {
    position:relative;
    display:table;
    margin: 0.625rem 0 0 auto;
}

.more-link a, .more-link a:link, .more-link a:visited, .more-link a:hover, .more-link a:focus, .more-link a:active {
    display:table-row;
    min-width: 12rem;
    color: #fff;
    background-color: #000000;
    font-size: 1.25rem;
    margin: 0;
    text-decoration: none;
}

.more-link a:hover{
    background-color: #E5007D;
}

.more-link a span, .more-link a i {
    padding: 0.6rem 0rem;
}

.more-link a span {
    display:table-cell;
    text-align: center;
    padding-left: 1.5rem;
    padding-right:1.5rem;
}

.more-link a i {
    position: absolute;
    right: 3px;
    top: 0.4rem;
}

/* Classes related to the uoc navigation bar */

.masthead-container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

.flex-center {
    width: 100%;
    max-width: 1280px;
}

.main-nav {
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.main-nav a.item {
    display: block;
    height: fit-content;
}

@media only screen and (max-width: 576px) {
    .fixed-top {
        height: 56px;
    }

    .main-nav .cam-logo {
        height: 24px;
        transition: height 1s;
    }
}

@media only screen and (max-width: 800px) {
    .fixed-top {
        height: 56px;
    }
    .main-nav .cam-logo {
        height: 24px;
        transition: height 1s;
    }
    .main-nav a.item {
        margin-top: 9px;
    }
    .nav-right-items {
      margin-top: 0
  }
}

@media only screen and (min-width: 800px) {
    .fixed-top {
        height: 79px;
    }
    .main-nav .cam-logo {
        height: 48px;
        transition: height 1s;
    }
    .main-nav a.item, .nav-right-items {
        margin-top: 13px;
    }
}

.main-nav-section > .container  {
    position:relative;
}

.main-nav .cam-logo .nav-right-items{
    height: 18px;
    margin-top: 8px;
}
.main-nav .icon {
    padding: 0 0 0 40px;
    background-position: right;
}
.main-nav .icon .nav-right-items{
    padding: 0 0 0 40px;
    background-size: 35.2px 35.2px !important;
}

.icon.icon-menu {
    background-image: url(/img/interface/noun_menu_black.svg);
}

.icon.icon-search {
    background-image: url(/img/interface/noun_search_black.svg);
}

.icon.icon-cudl-menu {
    background-image: url(/img/interface/noun_menu_white.png);
}

.icon.icon-cudl-search {
    background-image: url(/img/interface/noun_search_white.png);
}

.icon {
    background-position: left;
    background-repeat: no-repeat;
    background-size: 2.2rem 2.2rem !important;
    padding: 0 0 0 5rem;
}
.text-white {
    color: #fff !important;
}
.main-nav .nav-right-items {
    font-size: 32px;
}

.bg-white {
    background-color: #fff !important;
}

button {
    border: 0;
    text-align: inherit;
    font-size: inherit;
}

.nav-right-items div.search {
    display: inline-block;
}

/* Hidden menu */

.dropbtn {
    background-color: #fff;
    background-image: url(/img/interface/noun_menu_black.svg);
    background-position: left;
    background-repeat: no-repeat;
    background-size: 2.2rem 2.2rem !important;
    padding: 16px;
    border: none;
    cursor: pointer;
}

.closebtn.icon {
    display: block;
    background-color: #6BBBAE;
    background-image: url(/img/interface/noun_cross_black.svg);
    background-position: left;
    width: 2.2rem;
    padding: 0;
    font-size: 16px;
    height: 20px;
    border: none;
    cursor: pointer;
    color: #000;
}

  .dropdown {
    flex-wrap: wrap;
    position: relative;
    display: inline-block;
  }

.dropdown-content {
    position: absolute;
    background-color: #6BBBAE;
    height:  370px;
    overflow-x: hidden;
    right: 0px;
    top: 0;
    overflow: auto;
    transition: width .5s;
    z-index: 1;
    padding: 0;
    width: 0;
    border-style: none;
}

.dropdown-content a {
    color: #000 !important;
}
.dropdown-content ul {
    line-height: 1.5;
}

.dropdown-content > ul {
    display: none;
}

.dropdown-content.show {
    display: block;
    width: 50%;
}

.dropdown-content.show ul {
    display: block;
}

.dropdown-content li {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

#myDropdown>ul {
    margin: 0 0 0 2rem;
    padding-left: 1rem;
    line-height: 1.5;
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content ul a {
    color: #fff;
    font-size: 1.25em;
    /*padding: 12px 16px;*/
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    text-decoration: underline
}

.show {
    display: block;
}
#myDropdown .clearfix {
    height: 3rem;
    position: relative;
}

#menuDropdownCloseButton {
    position: absolute;
    right: 16px;
    top: 24px;
    display: block;
}

@media screen and (max-width: 600px) {
    .dropdown-content {
        padding: 0;
    }

    .dropdown-content ul {
        line-height: 1.5;
    }

    #myDropdown>ul {
        margin: 0;
    }

    .dropdown-content li {
        font-size: 0.75rem !important;
    }

    #menuDropdownCloseButton {
        right: 12px;
        top: 16px;
    }

    #myDropdown .closebtn {
        background-size: 1.75rem 1.75rem !important;
    }
}


/* Classes related to the CUDL banner */

.cudl-banner{
    display: flex;
    background-color: #106470;
    color:#fff;
    margin-top: 0;
    margin-bottom: 1em;
    padding: 1px 0 1px 12px; /* Padding top needed to ensure it's visible because of fixed header */
    transition: background-color 0.1s;
}

.cudl-banner .banner-part, .cudl-banner h1, .cudl-banner a {
    width: 100%;
    min-width: 100%;
}

.cudl-banner h1 {margin-top: 0; margin-bottom: 0;}

.cudl-banner h1 a {
    display: inline-block;
    padding-top: 0.67em;
    padding-bottom: 0.67em;
}

.cudl-banner h1 a,
.cudl-banner h1 a:link,
.cudl-banner h1 a:visited,
.cudl-banner h1 a:hover,
.cudl-banner h1 a:focus,
.cudl-banner h1 a:active {
    color: inherit;
    text-decoration: none;
    outline: none;
}

.cudl-banner:hover {
    background-color: #E5007D; /* #6BBBAE */
    transition: background-color 0.1s;
}

.home .cudl-banner:hover {
    background-color: #106470;
    transition: background-color 0.1s;
    pointer-events: none;
}

.cudl-banner:hover a, .cudl-banner a:hover {
    color: #fff !important;
}

@media only screen and (max-width: 800px) {
    .cudl-banner {
        margin-bottom: 0.5em;
    }
}

/* Crumbtrail classes */

.crumbtrail {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
    list-style: none;
}

.crumbtrail li {
    display: inline-block;
}

.crumbtrail li + li::before {
    content: "/";
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.crumbtrail .fa-home {font-size: 1.25rem;}
.campl-unstyled-list {list-style:none;margin:0}
.campl-tertiary-navigation {font-size:14px;line-height: 20px;}
.campl-vertical-breadcrumb , .campl-vertical-breadcrumb-navigation, .campl-vertical-breadcrumb-children a{ /*color: #0072cf;*/ text-decoration:none;border-bottom:0;outline: none;}
.campl-recessed-content .campl-tertiary-navigation {margin-top:40px;padding-bottom:0}
.campl-tertiary-navigation {position:relative;z-index:11}
.campl-tertiary-navigation-structure {background:#fff;border-bottom:1px solid #e4e4e4;}
.campl-vertical-breadcrumb li {line-height:16px;position:relative;word-wrap:break-word}
.campl-vertical-breadcrumb a {padding:16px 30px 16px 20px;background:#fafafa url(/img/interface/bg-vertical-breadcrumb-up-arrow.png) no-repeat 95% 50% ;border-bottom:1px solid #e4e4e4;display:block;position:relative;}
.campl-vertical-breadcrumb-indicator {z-index:9;display:block;width:19px;height:10px;background:url(/img/interface/bg-vertical-breadcrumb-indicator-arrow.png) no-repeat 0 0;position:absolute;bottom:-10px;left:20px;}
.campl-vertical-breadcrumb a:focus, .campl-vertical-breadcrumb a:hover, .campl-vertical-breadcrumb a:active {background:#efefef url(/img/interface/bg-vertical-breadcrumb-up-arrow.png) no-repeat 95% 50%;text-decoration:none}
.campl-vertical-breadcrumb a:focus .campl-vertical-breadcrumb-indicator,
.campl-vertical-breadcrumb a:hover .campl-vertical-breadcrumb-indicator,
.campl-vertical-breadcrumb a:active .campl-vertical-breadcrumb-indicator {background:url(/img/interface/bg-vertical-breadcrumb-indicator-arrow-over.png) no-repeat 0 0;}
.campl-vertical-breadcrumb-navigation {display:block;padding:5px 20px;font-weight:bold }
.campl-vertical-breadcrumb-navigation li {padding:10px 0;border-bottom:1px solid #e4e4e4}
.campl-vertical-breadcrumb-navigation li:last-child {border-bottom:0}
.campl-vertical-breadcrumb-children {border-bottom:0;margin:10px 0 0; }
.campl-vertical-breadcrumb-children li {padding:5px 5px 5px 0;border-bottom:0;font-weight:normal}
.campl-vertical-breadcrumb-children a {border-bottom:0;background:#fff url(/img/interface/bg-vertical-breadcrumb-right-arrow.png) no-repeat 0 50% ;font-weight:normal;padding:0 0 0 15px}
.campl-vertical-breadcrumb-children a:focus, .campl-vertical-breadcrumb-children a:hover, .campl-vertical-breadcrumb-children a:active {background:#fff url(/img/interface/bg-vertical-breadcrumb-right-arrow.png) no-repeat 0 50%; text-decoration:underline}
.campl-vertical-breadcrumb-children .campl-selected a {cursor:default}
.campl-vertical-breadcrumb-children .campl-selected a:focus, .campl-vertical-breadcrumb-children .campl-selected a:hover {text-decoration:none}
.campl-tertiary-navigation {border:1px solid #e4e4e4;border-width:1px 1px 0 1px }
.campl-vertical-breadcrumb {font-family:"Lato", sans-serif;font-weight:600;font-style:normal}
.campl-vertical-breadcrumb-navigation {font-family:"Lato", sans-serif;font-weight:400;color:#888888}
.campl-vertical-breadcrumb , .campl-vertical-breadcrumb-navigation, .campl-vertical-breadcrumb-children a { text-decoration:none;border-bottom:0;outline: none;}
ul.campl-vertical-breadcrumb, ul.campl-vertical-breadcrumb, ul.campl-vertical-breadcrumb-children { padding: 0;}
li.campl-selected {font-weight: bold;}

.campl-tertiary-navigation li a {
    display: inline-block;
    width: 100%;
}

@media (max-width: 767px) {
    .campl-vertical-breadcrumb {font-size:18px;line-height: 24px}
    #crumbtrail li {margin:0 0 15px 0}
    #crumbtrail ul {padding: 0;margin: 15px 0 9px 15px;}
    .campl-tertiary-navigation{display:none}
}

@media print {
    .campl-tertiary-navigation {
        display: none !important
    }
}


/* Page title classes */

.pagetitle.campl-wrap.clearfix {
    margin-top: 0;
    margin-bottom: 0;
}

.pagetitle {
    padding: 0 20px 0 20px;
}

.pagetitle h2 {
    font-weight:500;
}

.pagetitle.leftCol3 {
    position: relative;
    left: 25%
}


/* Carousel Classes */

* {box-sizing: border-box;}
.mySlides {
    display: none;
}

img {
    vertical-align: middle;
}

.mySlides img {
    max-width: 100%;
}

/* Slideshow container */

.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}


/* Caption text */
.text a {
  color: #f2f2f2;
  background-color: #000;
  font-size: 2em;
  padding: 8px 12px;
  position: absolute;
  bottom: 100px;
  font-family: 'Lato', sans-serif;
  text-align: left;
}

.text a:hover {
    background-color: #E5007D;
    text-decoration: none;
}

.sub-text {
    color: #f2f2f2;
    background-color: #000;
    font-size: 1em;
    padding: 8px 12px;
    position: absolute;
    bottom: 40px;
    font-family: 'Lato', sans-serif;
    text-align: left;
  }

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1s;
  animation-name: fade;
  animation-duration: 1s;
}

@-webkit-keyframes fade {
  from {opacity: 1}
  to {opacity: 0.95}
}

@keyframes fade {
  from {opacity: .95}
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

/* end carousel */

/* Tiles classes*/
/* Container needed to position the overlay. Adjust the width as needed */

.tile-container{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10px;
}

.tile, .article {
    position: relative;
    flex: 33.3%;
    max-width: 33.3%;
  }

.tile-caption {
    background-color: #E5007D;
}

.tile a, .tile-container .article a {
    display: block;
    width: 100%;
}

.tile a:hover, .tile a:focus {
    outline-offset: -6px;
}
/* Tile-image adjustments*/

.tile img {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
}

  @media screen and (max-width: 800px) {
    .tile {
      flex: 50%;
      max-width: 50%;
    }
  }

  @media screen and (max-width: 600px) {
    .tile {
      flex: 100%;
      max-width: 100%;
    }
  }

  /* Make the image to responsive */
  .image {
    display: block;
    width: 100%;
    height: auto;
  }

.tile-caption-container {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    margin-left: 0;
    width: 25rem;
}

.tile-caption {
    background-color: #000;
    color: #fff;
    padding: 0.6rem;
    text-align: center;
    font-size: 1.25rem;
    text-decoration: none;
}

  .tile a:hover .tile-caption, .tile a:focus .tile-caption  {
      background-color: #E5007D;
  }

  /* Watch classes */
  .watch-container{
    display: flex;
  flex-wrap: wrap;

}

  .watch-feature{
      flex: 66%;
      max-width: 66%;
      float: left;
  }

  .watch-feature iframe {
      width: 100%;
      border: none;
  }

  .watch-list{
      flex: 30%;
      max-width: 30%;
      float:right;
  }

  @media screen and (max-width: 800px) {
    .watch-feature{
        flex: 100%;
        max-width: 100%;
    }

    .watch-list{
        flex: 100%;
        max-width: 100%;

    }
  }

  .watch-list-ul{
    list-style: none;
  }

  .watch-list-ul a{
      color:#000;
  }

  .watch-list-item {
      font-size: 1.1rem;
      padding-bottom: 2rem;
  }

/* Mini article classes */

.article {
    position: relative;
    flex: 33.3%;
    max-width: 33.3%;
    padding: 10px;
  }

.article h2 {
    font-size: 1.5rem;
    margin-top: 1rem;
}
.article a, .article:hover a p {
    color: #000000;
    text-decoration: none;
}
.article:hover a h2 {
    text-decoration: underline;
    color: #E5007D;
}

.article p {
    margin-top:0;
    margin-bottom:0;
}

  @media screen and (max-width: 800px) {
    .article {
      flex: 50%;
      max-width: 50%;
    }
  }

  @media screen and (max-width: 600px) {
    .article {
      flex: 100%;
      max-width: 100%;
    }
  }

/* Social media icons */

.follow_us a {
    display: inline-block;
    margin-right: 0.75rem;
}

.icon {
    display: inline-block;
    background-position: left;
    background-repeat: no-repeat;
    background-size: 2.2rem 2.2rem !important;
    padding: 0;
    height: 2.2rem;
    width: 2.2rem;
}

.icon-facebook {
    background-image: url(https://www.cam.ac.uk/sites/www.cam.ac.uk/themes/fresh/images/interface/icons/facebook_black.svg);
}

.icon-instagram {
    background-image: url(https://www.cam.ac.uk/sites/www.cam.ac.uk/themes/fresh/images/interface/icons/instagram_black.svg);
}

.icon-twitter {
    background-image: url(https://www.cam.ac.uk/sites/www.cam.ac.uk/themes/fresh/images/interface/icons/twitter_blue.svg);
}

.icon-youtube {
    background-image: url(https://www.cam.ac.uk/sites/www.cam.ac.uk/themes/fresh/images/interface/icons/youtube_black.svg);
}



/*Footer classes */

.global-footer{
    display: flex;
    flex-wrap: wrap;
}

.footer-region{
    flex: 25%;
    max-width: 25%;
}

@media screen and (max-width: 800px) {
    .footer-region {
      flex: 50%;
      max-width: 50%;
    }
  }

  @media screen and (max-width: 600px) {
    .footer-region {
      flex: 100%;
      max-width: 100%;
    }
  }


  .region-global-footer {
    background-color: #000000;
    margin-top: 32px;
    padding-top: 15px;
    padding-left:15px;
}

.region-global-footer h3 a {
    color: white !important;
}

.region-global-footer li a, .region-global-footer p {
    font-size: 0.75rem;
    line-height: 1.125rem;
    color: white;
}
.region-global-footer .cam-logo {
    max-width: 12rem;
    padding-bottom: 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* IIIF button */

.usebutton {
    width: 100%;
    text-align: center;
    padding-top: 1.5rem;
    clear:both
}

.usebutton a.btn {
    display: inline-block;
    color: #000;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-color: #d3eae6;
    background-image: none;
    border: 1px solid #6BBBAE;
    padding: 6px 12px;
    font-size: 12px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.usebutton a.btn img {
    text-decoration:none;
    padding-right: 1rem;
}

.usebutton a.btn:hover {
    text-decoration: none;
    color: #fff;
    background: #6BBBAE
}

/* Collections page styling */

.table {
    display: table;
    width: 100%
}

.tr {
    display: table-row
}

.td {
    display: table-cell;
}

.collection.campl-teaser-img-link {
    color: #fff;
}

.collection.campl-teaser-img-link:hover, .collection.campl-teaser-img-link:hover .campl-focus-teaser {
    background: #6BBBAE;
    color: #000 !important;
}

/* Collection page stlying */
.toppagination {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.collections_carousel {
    margin-left: 1.2rem;
}

.collections_carousel_item {
    margin-top: 2.5rem;
}

.collection_abstract {
    font-size: 0.85rem;
}

.builtby {
    text-align: right;
    float: right;
}


/* XL 'Search' and 'All Collections' buttons on homepage */
.xl-button-caption {
    background-color: #106470;
    color: #fff;
    display: inline-flex;
    padding: 0;
    width: 100%;
    font-size: 1.5rem;
    line-height:1.5;
    text-align: center;
}

.xl-button-caption a, .xl-button-caption a:link, .xl-button-caption a:visited,.xl-button-caption a:hover, .xl-button-caption a:focus, .xl-button-caption a:active {
    color: #fff;
    text-decoration:none;
}

.xl-button-caption:hover {
    background-color: #E5007D;
}

.xl-button-container {
    max-width: 100%;
    display: flex;
    padding: 30px 0 15px 0;
}

.xl-button-left  {
    max-width: 100%;
    width: 100%;
    display: inline-flex;
}

.xl-button-right {
    max-width: 100%;
    width: 100%;
    display: inline-flex;
}

.xl-button-left a, .xl-button-right a {
    display: inline-block;
    width: 100%;
    padding: 1rem;
}

.xl-button-padding {
    width: 30px;
}


/* Fixed-top classes */
.main-nav-section {
    width: 100%;
    max-width: 1280px;
    background: #fff;
    margin: 0 auto;
}

.fixed-top {
    /* height of item is 79px when screen-width is greater than 800px; 56px otherwise. */
    position: fixed;
    display:block;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1030;
    background: #fff;
    margin: 0 8px;
}

.container.banner {
    margin-top: 79px;
}

/* This ensures that any hyperlinks to local id values are not obscured by the fixed masthead.
   This code will fall apart if the item has top padding or a border
   https://nicolasgallagher.com/jump-links-and-viewport-positioning/demo/
 */
:target {
    scroll-margin-top: 79px; /* fixed header height*/
    scroll-snap-margin-top: 79px; /* iOS 11 and older */
}

@media only screen and (max-width: 800px) {
    .container.banner {
        /* Body has 8px margin, so 50-8px */
        margin-top: 56px;
    }
    :target {
        scroll-margin-top: 56px; /* fixed header height*/
        scroll-snap-margin-top: 56px; /* iOS 11 and older */
    }
}

/*! =======================================================
                      VERSION  10.6.2              
========================================================= */
/*! =========================================================
 * bootstrap-slider.js
 *
 * Maintainers:
 *		Kyle Kemp
 *			- Twitter: @seiyria
 *			- Github:  seiyria
 *		Rohit Kalkur
 *			- Twitter: @Rovolutionary
 *			- Github:  rovolution
 *
 * =========================================================
  *
 * bootstrap-slider is released under the MIT License
 * Copyright (c) 2019 Kyle Kemp, Rohit Kalkur, and contributors
 * 
 * Permission is hereby granted, free of charge, to any person
 * obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use,
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following
 * conditions:
 * 
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * ========================================================= */
.slider {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.slider.slider-horizontal {
  width: 210px;
  height: 20px;
}
.slider.slider-horizontal .slider-track {
  height: 10px;
  width: 100%;
  margin-top: -5px;
  top: 50%;
  left: 0;
}
.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-low,
.slider.slider-horizontal .slider-track-high {
  height: 100%;
  top: 0;
  bottom: 0;
}
.slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  margin-left: -10px;
}
.slider.slider-horizontal .slider-tick.triangle,
.slider.slider-horizontal .slider-handle.triangle {
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-width: 0 10px 10px 10px;
  width: 0;
  height: 0;
  border-bottom-color: #2e6da4;
  margin-top: 0;
}
.slider.slider-horizontal .slider-tick-container {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.slider.slider-horizontal .slider-tick-label-container {
  white-space: nowrap;
  margin-top: 20px;
}
.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 4px;
  display: inline-block;
  text-align: center;
}
.slider.slider-horizontal .tooltip {
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.slider.slider-horizontal.slider-rtl .slider-track {
  left: initial;
  right: 0;
}
.slider.slider-horizontal.slider-rtl .slider-tick,
.slider.slider-horizontal.slider-rtl .slider-handle {
  margin-left: initial;
  margin-right: -10px;
}
.slider.slider-horizontal.slider-rtl .slider-tick-container {
  left: initial;
  right: 0;
}
.slider.slider-horizontal.slider-rtl .tooltip {
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}
.slider.slider-vertical {
  height: 210px;
  width: 20px;
}
.slider.slider-vertical .slider-track {
  width: 10px;
  height: 100%;
  left: 25%;
  top: 0;
}
.slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}
.slider.slider-vertical .slider-track-low,
.slider.slider-vertical .slider-track-high {
  width: 100%;
  left: 0;
  right: 0;
}
.slider.slider-vertical .slider-tick,
.slider.slider-vertical .slider-handle {
  margin-top: -10px;
}
.slider.slider-vertical .slider-tick.triangle,
.slider.slider-vertical .slider-handle.triangle {
  border-width: 10px 0 10px 10px;
  width: 1px;
  height: 1px;
  border-left-color: #2e6da4;
  border-right-color: #2e6da4;
  margin-left: 0;
  margin-right: 0;
}
.slider.slider-vertical .slider-tick-label-container {
  white-space: nowrap;
}
.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
  padding-left: 4px;
}
.slider.slider-vertical .tooltip {
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.slider.slider-vertical.slider-rtl .slider-track {
  left: initial;
  right: 25%;
}
.slider.slider-vertical.slider-rtl .slider-selection {
  left: initial;
  right: 0;
}
.slider.slider-vertical.slider-rtl .slider-tick.triangle,
.slider.slider-vertical.slider-rtl .slider-handle.triangle {
  border-width: 10px 10px 10px 0;
}
.slider.slider-vertical.slider-rtl .slider-tick-label-container .slider-tick-label {
  padding-left: initial;
  padding-right: 4px;
}
.slider.slider-disabled .slider-handle {
  background-image: -webkit-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
  background-image: -o-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
  background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
  background-repeat: repeat-x;
}
.slider.slider-disabled .slider-track {
  background-image: -webkit-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
  background-image: -o-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
  background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
  background-repeat: repeat-x;
  cursor: not-allowed;
}
.slider input {
  display: none;
}
.slider .tooltip {
  pointer-events: none;
}
.slider .tooltip.top {
  margin-top: -36px;
}
.slider .tooltip-inner {
  white-space: nowrap;
  max-width: none;
}
.slider .hide {
  display: none;
}
.slider-track {
  position: absolute;
  cursor: pointer;
  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background-image: -o-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background-image: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.slider-selection {
  position: absolute;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-selection.tick-slider-selection {
  background-image: -webkit-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
  background-image: -o-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
  background-image: linear-gradient(to bottom, #8ac1ef 0%, #82b3de 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8ac1ef', endColorstr='#ff82b3de', GradientType=0);
  background-repeat: repeat-x;
}
.slider-track-low,
.slider-track-high {
  position: absolute;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-handle {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #337ab7;
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
  background-repeat: repeat-x;
  filter: none;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  border: 0px solid transparent;
}
.slider-handle:hover {
  cursor: pointer;
}
.slider-handle.round {
  border-radius: 50%;
}
.slider-handle.triangle {
  background: transparent none;
}
.slider-handle.custom {
  background: transparent none;
}
.slider-handle.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}
.slider-tick {
  position: absolute;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  filter: none;
  opacity: 0.8;
  border: 0px solid transparent;
}
.slider-tick.round {
  border-radius: 50%;
}
.slider-tick.triangle {
  background: transparent none;
}
.slider-tick.custom {
  background: transparent none;
}
.slider-tick.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}
.slider-tick.in-selection {
  background-image: -webkit-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
  background-image: -o-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
  background-image: linear-gradient(to bottom, #8ac1ef 0%, #82b3de 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8ac1ef', endColorstr='#ff82b3de', GradientType=0);
  background-repeat: repeat-x;
  opacity: 1;
}

@keyframes spinner-line-fade-more {
  0%, 100% {
    opacity: 0; /* minimum opacity */
  }
  1% {
    opacity: 1;
  }
}

@keyframes spinner-line-fade-quick {
  0%, 39%, 100% {
    opacity: 0.25; /* minimum opacity */
  }
  40% {
    opacity: 1;
  }
}

@keyframes spinner-line-fade-default {
  0%, 100% {
    opacity: 0.22; /* minimum opacity */
  }
  1% {
    opacity: 1;
  }
}

@keyframes spinner-line-shrink {
  0%, 25%, 100% {
    /* minimum scale and opacity */
    transform: scale(0.5);
    opacity: 0.25;
  }
  26% {
    transform: scale(1);
    opacity: 1;
  }
}

.cudl-editor-confirmation {
    width: 350px;
    position: fixed;
    margin-left: auto;
    margin-right: auto;
    z-index: 9000;
    left: 0;
    right: 0;
    top: 200px;
    color: #000;
}

.cudl-editor-confirmation input {
    width: 200px;
    height:30px;
}

.cudl-editor-confirmation .close {
    margin-top: -15px;
    margin-right: -10px;
}

/*! =======================================================
                      VERSION  10.6.2              
========================================================= */
/*! =========================================================
 * bootstrap-slider.js
 *
 * Maintainers:
 *		Kyle Kemp
 *			- Twitter: @seiyria
 *			- Github:  seiyria
 *		Rohit Kalkur
 *			- Twitter: @Rovolutionary
 *			- Github:  rovolution
 *
 * =========================================================
  *
 * bootstrap-slider is released under the MIT License
 * Copyright (c) 2019 Kyle Kemp, Rohit Kalkur, and contributors
 * 
 * Permission is hereby granted, free of charge, to any person
 * obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use,
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following
 * conditions:
 * 
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * ========================================================= */
.slider {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.slider.slider-horizontal {
  width: 210px;
  height: 20px;
}
.slider.slider-horizontal .slider-track {
  height: 10px;
  width: 100%;
  margin-top: -5px;
  top: 50%;
  left: 0;
}
.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-low,
.slider.slider-horizontal .slider-track-high {
  height: 100%;
  top: 0;
  bottom: 0;
}
.slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  margin-left: -10px;
}
.slider.slider-horizontal .slider-tick.triangle,
.slider.slider-horizontal .slider-handle.triangle {
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-width: 0 10px 10px 10px;
  width: 0;
  height: 0;
  border-bottom-color: #2e6da4;
  margin-top: 0;
}
.slider.slider-horizontal .slider-tick-container {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.slider.slider-horizontal .slider-tick-label-container {
  white-space: nowrap;
  margin-top: 20px;
}
.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 4px;
  display: inline-block;
  text-align: center;
}
.slider.slider-horizontal .tooltip {
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.slider.slider-horizontal.slider-rtl .slider-track {
  left: initial;
  right: 0;
}
.slider.slider-horizontal.slider-rtl .slider-tick,
.slider.slider-horizontal.slider-rtl .slider-handle {
  margin-left: initial;
  margin-right: -10px;
}
.slider.slider-horizontal.slider-rtl .slider-tick-container {
  left: initial;
  right: 0;
}
.slider.slider-horizontal.slider-rtl .tooltip {
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}
.slider.slider-vertical {
  height: 210px;
  width: 20px;
}
.slider.slider-vertical .slider-track {
  width: 10px;
  height: 100%;
  left: 25%;
  top: 0;
}
.slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}
.slider.slider-vertical .slider-track-low,
.slider.slider-vertical .slider-track-high {
  width: 100%;
  left: 0;
  right: 0;
}
.slider.slider-vertical .slider-tick,
.slider.slider-vertical .slider-handle {
  margin-top: -10px;
}
.slider.slider-vertical .slider-tick.triangle,
.slider.slider-vertical .slider-handle.triangle {
  border-width: 10px 0 10px 10px;
  width: 1px;
  height: 1px;
  border-left-color: #2e6da4;
  border-right-color: #2e6da4;
  margin-left: 0;
  margin-right: 0;
}
.slider.slider-vertical .slider-tick-label-container {
  white-space: nowrap;
}
.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
  padding-left: 4px;
}
.slider.slider-vertical .tooltip {
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.slider.slider-vertical.slider-rtl .slider-track {
  left: initial;
  right: 25%;
}
.slider.slider-vertical.slider-rtl .slider-selection {
  left: initial;
  right: 0;
}
.slider.slider-vertical.slider-rtl .slider-tick.triangle,
.slider.slider-vertical.slider-rtl .slider-handle.triangle {
  border-width: 10px 10px 10px 0;
}
.slider.slider-vertical.slider-rtl .slider-tick-label-container .slider-tick-label {
  padding-left: initial;
  padding-right: 4px;
}
.slider.slider-disabled .slider-handle {
  background-image: -webkit-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
  background-image: -o-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
  background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
  background-repeat: repeat-x;
}
.slider.slider-disabled .slider-track {
  background-image: -webkit-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
  background-image: -o-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
  background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
  background-repeat: repeat-x;
  cursor: not-allowed;
}
.slider input {
  display: none;
}
.slider .tooltip {
  pointer-events: none;
}
.slider .tooltip.top {
  margin-top: -36px;
}
.slider .tooltip-inner {
  white-space: nowrap;
  max-width: none;
}
.slider .hide {
  display: none;
}
.slider-track {
  position: absolute;
  cursor: pointer;
  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background-image: -o-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background-image: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.slider-selection {
  position: absolute;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-selection.tick-slider-selection {
  background-image: -webkit-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
  background-image: -o-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
  background-image: linear-gradient(to bottom, #8ac1ef 0%, #82b3de 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8ac1ef', endColorstr='#ff82b3de', GradientType=0);
  background-repeat: repeat-x;
}
.slider-track-low,
.slider-track-high {
  position: absolute;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-handle {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #337ab7;
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
  background-repeat: repeat-x;
  filter: none;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  border: 0px solid transparent;
}
.slider-handle:hover {
  cursor: pointer;
}
.slider-handle.round {
  border-radius: 50%;
}
.slider-handle.triangle {
  background: transparent none;
}
.slider-handle.custom {
  background: transparent none;
}
.slider-handle.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}
.slider-tick {
  position: absolute;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  filter: none;
  opacity: 0.8;
  border: 0px solid transparent;
}
.slider-tick.round {
  border-radius: 50%;
}
.slider-tick.triangle {
  background: transparent none;
}
.slider-tick.custom {
  background: transparent none;
}
.slider-tick.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}
.slider-tick.in-selection {
  background-image: -webkit-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
  background-image: -o-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
  background-image: linear-gradient(to bottom, #8ac1ef 0%, #82b3de 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8ac1ef', endColorstr='#ff82b3de', GradientType=0);
  background-repeat: repeat-x;
  opacity: 1;
}

.quick-search form {
    margin: 10px 0;
}

.quick-search button {
    margin-left: 10px;
}

.quick-search .recall-slider,
.searchform .recall-slider,
.advancedsearchform .recall-slider {
    margin: 5px 10px 30px 10px;
}

.quick-search .recall-slider .slider-horizontal,
.searchform .recall-slider .slider-horizontal,
.advancedsearchform .recall-slider .slider-horizontal {
    width: 100%;
}

@media screen and (max-width: 767px) {

    .quick-search button {
        margin-left: initial;
    }

    .quick-search .recall-slider,
    .searchform .recall-slider,
    .advancedsearchform .recall-slider {
        margin: 10px 30px 30px 30px;
    }
}

/**
These styles are inherited from old project light table styles, used for layout.
*/

.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.lt-ie8 .clearfix {zoom: 1; }

.campl-row{clear:both;width:100%;}
.lt-ie9 .campl-row, .lt-ie8 .campl-row{min-width:auto}

.campl-wrap{margin:0 auto;position:relative;clear:both;width:1177px}
.campl-fixed-container{width:1024px}/*to remove fluid container from browsers without media queries */

.campl-column, .campl-column1, .campl-column2, .campl-column3, .campl-column4, .campl-column5, .campl-column6, .campl-column7, .campl-column8, .campl-column9,
.campl-column10, .campl-column11, .campl-column12{float: left;margin-right: 0;padding:0 0 0 0;}

.campl-column1 {width: 8.333333333333334%;}
.campl-column2 {width: 16.666666666666668%;}
.campl-column3 {width: 25%;}
.campl-column4 {width: 33.333333333333336%;}
.campl-column5 {width: 41.66666666666667%;}
.campl-column6 {width: 50%;}
.campl-column7 {width: 58.333333333333336%;}
.campl-column8 {width: 66.66666666666667%;}
.campl-column9 {width: 75%;}
.campl-column10 {width: 83.33333333333334%;}
.campl-column11 {width: 91.66666666666667%;}
.campl-column12 {width: 100%;}

/* IE fluid widths */

.lt-ie8 .campl-column1 {width: 8.133333333333335%;}
.lt-ie8 .campl-column2 {width: 16.46666666666667%;}
.lt-ie8 .campl-column3 {width: 24.8%;}
.lt-ie8 .campl-column4 {width: 33.13333333333333%;}
.lt-ie8 .campl-column5 {width: 41.46666666666667%;}
.lt-ie8 .campl-column6 {width: 49.8%;}
.lt-ie8 .campl-column7 {width: 58.13333333333333%; }
.lt-ie8 .campl-column8 {width: 66.46666666666667%; }
.lt-ie8 .campl-column9 {width: 74.8%;}
.lt-ie8 .campl-column10 {width: 83.13333333333334%}
.lt-ie8 .campl-column11 {width: 91.46666666666667%;}
.lt-ie8 .campl-column12 {width: 99.8%;}



/* larger screens */
@media only screen and (min-width: 1200px){
    .campl-wrap{width:1177px}
}

/* larger screens */
@media only screen and (max-width: 1199px){

    .campl-wrap{width:100%; }
}

@media (max-width: 767px) {
    [class*="campl-column"], .campl-column {
        float: none;
        display: block;
        width: auto;
        margin-left: 0;
    }
    .campl-wrap{width:100%}
}

@media print {
    /* remove recessed margin issues and add mobile container classes to reduce visual padding*/
    .campl-wrap{width:100%}
}


.campl-scale-with-grid {
    max-width: 100%;
    height: auto;
}

.ir {
    display: block;
    border: 0;
    text-indent: -999em;
    overflow: hidden;
    background-color: transparent;
    background-repeat: no-repeat;
    text-align: left;
    direction: ltr;
}

.lt-ie8 .ir {
    line-height: 0;
}

.ir br {
    display: none;
}

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

.clearfix:after {
    clear: both;
}

.lt-ie8 .clearfix {
    zoom: 1;
}

.campl-teaser-title {
    font-size: 19px;
    line-height: 1.5;
}

.campl-focus-teaser a, .campl-focus-teaser a:focus, .campl-focus-teaser a:hover {
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.campl-teaser-title a {
    color: #171717
}

.campl-focus-teaser a {
    color: #fff
}

/* focus links */
.campl-focus-link {
    width: 33px;
    height: 33px;
    background: #313131 url(../assets/icon-fwd-btn-6be0e549306bcafcde64ca8eb6e840ac.png) 14px 13px no-repeat;
    position: absolute;
    bottom: 0;
    right: 0
}

/* content containers - structural */
.campl-content-container {
    padding: 20px;
}

.campl-side-padding {
    padding: 0 20px
}

.campl-horizontal-teaser-img,
.campl-right-padding {
    padding: 0 20px 0 0
}

.campl-horizontal-teaser-txt,
.campl-left-padding {
    padding: 0 0 0 20px
}

.campl-focus-teaser .campl-horizontal-teaser-img,
.campl-quicklinks-list {
    padding: 0 0 0 0
}

.campl-focus-teaser .campl-horizontal-teaser-txt {
    padding: 15px 15px 25px 15px
}

/* teasers */
.campl-teaser {
    clear: both
}

.campl-teaser p {
    margin-bottom: 20px;
}

.campl-teaser-img-link {
    position: relative;
    display: block
}

.campl-teaser-img-link:focus .campl-audio-overlay,
.campl-teaser-img-link:hover .campl-audio-overlay {
    background-position: -97px -10px
}

.campl-teaser-img-link:focus .campl-video-overlay,
.campl-teaser-img-link:hover .campl-video-overlay {
    background-position: -98px -108px
}

.campl-focus-teaser {
    margin-bottom: 20px;
    position: relative
}

.campl-focus-teaser-img {
    width: 41.6667%;
    float: left;
    margin-right: 0;
    padding: 0;
}

.campl-focus-teaser-txt {
    width: 58.3333%;
    float: left;
    margin-right: 0;
    padding: 0;
}

.lt-ie8 .campl-focus-teaser-img {
    width: 41.1667%;
}

.lt-ie8 .campl-focus-teaser-txt {
    width: 58.1333%;
}

.campl-focus-teaser {
    background: #106470;
}

.campl-focus-link {
    background-color: #0c5963
}
/* Blockquote formatting */

blockquote {font-size:19px; padding: 0 0 0 25px;margin: 18px 0;font-style:italic;background:url(/img/interface/bg-blockquote-top.png) no-repeat top left}
blockquote p {margin-bottom: 10px;font-weight: 300;line-height: 22.5px;float:left;padding-right:25px}
blockquote p.campl-quote-mark{background:url(/img/interface/bg-blockquote-bottom.png) no-repeat bottom right;}
blockquote cite {display: block;line-height: 18px;color: #999999;clear:both}
blockquote cite:before {content: '\2014 \00A0';}
q:before,q:after,blockquote:before,blockquote:after {content: ""; content: none;}
blockquote.campl-float-right {margin-left:20px;width:230px;margin-top:0;}
blockquote.campl-float-right p {padding-right:0;background:url(/img/interface/bg-blockquote-bottom.png) no-repeat bottom right;}
blockquote cite {
    font-size: 13px;
    margin-top: 1rem;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(../assets/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot);
  src: url(../assets/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot?#iefix&v=4.7.0) format('embedded-opentype'), url(../assets/fontawesome-webfont-af7ae505a9eed503f8b8e6982036873e.woff2) format('woff2'), url(../assets/fontawesome-webfont-fee66e712a8a08eef5805a46892932ad.woff) format('woff'), url(../assets/fontawesome-webfont-b06871f281fee6b241d60582ae9369b9.ttf) format('truetype'), url(../assets/fontawesome-webfont-912ec66d7572ff821749319396470bde.svg#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* 3rd party CSS libs */
/*@import "~project-light/stylesheets/full-stylesheet.css";*/

/* homepage style */
.carousel-panel {
    display: none;
}

#header-search {
    height: 32px;
}

@media screen and (min-width: 1177px) {
    .carousel-panel {
        background: url(../assets/grey-85b9bba348aada67c99aa39077b1d767.png) repeat scroll 0px 0px
            transparent;
        height: 374px;
        right: 0px;
        padding: 10px;
        position: absolute;
        float: right;
        top: 0px;
        width: 294px;
        color: #fff;
        text-align: left;
        display: inline-block;
    }
    .carousel-panel a {
        text-decoration: underline;
    }
    .campl-carousel-pagination {
        right: 108px;
    }
    .campl-slide-caption {
        right: 0px;
    }
}

#header-search input[type="text"] {
    height: 32px;
}
.cudl-header-search {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 40%;
}
.campl-search-input {
    height: 32px;
    min-height: 32px;
}
.cudl-header-search input[type=text] {
    height: 32px;
    width: calc(100% - 31px);
}
form.campl-search-input input.campl-search-submit {
    height: 32px;
    width: 32px;
}
div.campl-site-search {
    display: none;
}
@media screen and (max-width: 767px) {
    div.campl-site-search {
        display: block;
    }
    .cudl-header-search {
        display: none;
    }
    #site-search-container input[type=text] {
        margin: 0;
        padding: 0;
        height: 32px;
        line-height: 32px;
    }
}

/* end of homepage style */
#noscript-warning {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 2000;
    vertical-align: middle;
}

#noscript-warning p {
    text-align: center;
    vertical-align: middle;
}

.contibutors li {
    padding: 5px;
}

.terms li {
    padding: 5px;
}

.container {
    background-color: #FFFFFF;
}

.library-logo {
    margin: 20px 0;

    background-image: url(../assets/ul-600-logo-landscape-516c7fa78809e16a1d6bdc1737a61e87.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;

    display: block;
    height: 80px;
}
@media (max-width: 767px) {
    .library-logo {
        background-position: center;
        margin: 20px 10px;
    }
}

.content {
    background-color: #FFFFFF;
}

.cookienotice {
    color: #fff;
    background: #171717;
}

/* Text for downtime message on main page */
.warning {
    border-color: #ffaaaa;
    text-align: center;
    border-style: solid;
    border-width: 1px;
    margin-top: 24px;
    background-color: #ffeeee;
}

.footer a:link, .footer a:visited, .footer a:active {
    color: #FFFFFF;
    text-decoration: underline;
}

.featuredcollection img {
    opacity: 1.0;
    position: relative;
    margin-bottom: 58px;
    border-style: solid;
    border-top-width: 4px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-bottom-width: 0px;
    border-color: #fff;
}

.featuredcollection:hover img {
    border-color: #333;
}

.featuredcollection:hover .featuredcollectionlabel {
    border-color: #333;
}

.featuredcollection .featuredcollectionlabel {
    z-index: 10;
    width: 118px;
    display: block;
    padding: 5px;
    position: absolute;
    color: #eee;
    bottom: 8px;
    height: 40px;
    left: 0px;
    background: #333;
    float: left;
    border-style: solid;
    border-top-width: 0px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-bottom-width: 4px;
    border-color: #fff;
}

.collectionImage {
    margin-left: 0px;
    margin-right: 14px;
    float: left;
}

.featuredItem-text {
    width: 200px;
}

.featuredItem-text a {
    text-decoration: none;
}

.featuredItem {
    position: relative;
    margin-left: 18px;
}

.featuredItem img {
    border-style: solid;
    border-width: 1px;
    border-color: #333;
}

/** related item - used on essay page */
.relatedItem {
    width: 192px;
    margin-bottom: 8px;
    border-width: 2px;
    border-color: #eee;
    border-style: solid;
    padding: 4px;
}

.relatedItem a {
    text-decoration: none;
    position: relative;
}

.relatedItem img {
    border-style: solid;
    border-width: 1px;
    border-color: #333;
}

.foundations-link-faith, .foundations-link-faith a {
    color: #8f7722;
    position: absolute;
    right: 4px;
    bottom: 0px;
    text-align: right;
    width: 200px;
    text-decoration: none;
}

.foundations-link-science, .foundations-link-science a {
    color: #324088;
    position: absolute;
    right: 4px;
    bottom: 0px;
    text-align: right;
    width: 200px;
    text-decoration: none;
}

.right-aligned-language {
    font-style: normal;
    margin-left: auto;
    margin-right: 0px;
    text-align: right;
}

#document-about-radio-link {
    font-weight: bold;
    color: #333;
}

#document-about-radio-link a {
    font-weight: bold;
    color: #333;
}

#document-about-radio-icon-div {
    border: 3px;
    border-color: #000;
    font-weight: bold;
}

#document-about-exhibition-link {
    font-weight: bold;
    color: #333;
}

#document-about-exhibition-link a {
    font-weight: bold;
    color: #333;
}

#document-about-exhibition-icon-div {
    border: 3px;
    border-color: #000;
    font-weight: bold;
}

/* Longitude parent collection page */
.parent_featured_item_image img {
    margin: auto;
    text-decoration: none;
    border: none;
    outline: none;
}

.parent_featured_item_image_box {
    width: 180px;
    height: 180px;
    background: #000000;
    padding: 5px;
    border-style: solid;
    border-width: 3px;
    border-color: #333;
}

.parent_featured_item_image_box:hover {
    border-color: #999;
}

.parent_featured_item_image {
    display: table-cell;
    vertical-align: middle;
    width: 180px;
    height: 180px;
}

/* end of longitude parent collection page */
.helpBanner {
    margin-top: 20px;
}

.helpBanner img {
    display: inline;
    margin-bottom: 0px;
    margin-top: 6px;
    height: 10px;
}

.helpBanner a {
    align: left;
    font-size: 1em;
    text-decoration: none;
    font-weight: bold;
}

blockquote {
    border-left: 0px;
    margin-right: 20px;
}

.cam-quote-mark {
    float: left;
    margin-right: 20px;
}

.collectionOrganisationalImage {
    margin-bottom: 15px;
    float: none;
}

.collections_carousel {
    position: relative;
    display: block;
}

.grid_carousel ol {
    width: 900px;
}

.grid_carousel ol li {
    float: left;
    width: 550px;;
}

.matrix_carousel ol {
    width: 800px;
    margin-left: 70px;
    margin-bottom: 18px;
}

.matrix_carousel ol li {
    float: left;
    width: 180px;;
}

.collections_carousel_item {
    width: 100%;
    font-style: normal;
    position: relative;
    display: block;
    position: relative;
    min-height: 190px;
}

#subcollection-breadcrumb {
    color: #000;
}

#subcollection-breadcrumb li {
    padding: 0px 9px 0px 0px;
    background: #fff;
}

ol#collections_carousel li {
    list-style: none outside none;
}

ol#search_carousel li {
    list-style: none outside none;
}

.altsearchlink input[type="submit"] {
    background: transparent;
    text-decoration: underline;
    cursor: pointer;
    border: none;
    float: right;
    margin-right: 5px;
    font-color: #ff0000;
}

.search-facets {
    list-style-type: none;
}

.search-facet-selected {
    padding: 3px;
    position: relative;
    margin-top: 5px;
    margin-bottom: 5px;
}

.search-close {
    cursor: pointer;
    height: 19px;
    width: 19px;
    z-index: 3;
}

/* for virtual collections */
.virtual_collections_carousel {
    position: relative;
    display: block;
}

ol#virtual_collections_carousel li {
    list-style: none outside none;
    float: none;
    width: 100%;
}

.virtual_collections_carousel_item {
    width: 100%;
    font-style: normal;
    position: relative;
    display: block;
    position: relative;
    min-height: 190px;
    max-width: 500px;
    float:left;
}

.virtual_collections_carousel_image_box {
    width: 190px;
    height: 190px;
    background: #000000;
    padding: 5px;
    border-style: solid;
    border-width: 1px;
    border-color: #333;
   float:left;
   margin-right:20px;
}

.virtual_collections_carousel_image_box:hover, .virtual_collections_carousel_image_box:focus, .virtual_collections_carousel_image_box:active{
    outline: 5px solid #E5007D;
}

.virtual_collections_carousel_image {
   display: table-cell;
   vertical-align: middle;
   width: 180px;
   height: 180px;
   text-align: center;
}

.virtual_collections_carousel_image a, .virtual_collections_carousel_image a:link, .virtual_collections_carousel_image a:visited, .virtual_collections_carousel_image a:hover, .virtual_collections_carousel_image a:focus, .virtual_collections_carousel_image a:active {
    outline:none;
}

.virtual_collections_carousel_image img {
   margin: auto;
   text-decoration: none;
   border: none;
   outline: none;
   max-height: 180px;
   max-width: 180px;
}

.virtual-collections-items {
   float:left;
   padding-top:18px;
}

.virtual_collections_carousel_text {
   float:left;
   margin-left: 10px;
   margin-left: 10px;
   margin-right:10px;
   margin-bottom:10px;
}

.virtual_collection_summary_images {
   width:460px;
   height:500px;
   float:none;
}

@media screen and (max-width: 767px) {
   .virtual_collection_summary_images {
       display:none;
    }
    .virtual_collection_summary_image {
       display:none;
    }
}

.virtual_collection_summary_image {
   position: relative;
   float: left;
   height: 250px;
   width: 230px;
}

.virtual_collection_summary {
   position: relative;
   margin-bottom: 18px;
   float:none;
   background-color:#fff;
}

.virtual_collection_sponsor {
   float:left;
}

.virtual_collection_items {
   position: relative;
   float:left;
}

.virtual_collection_textgroup {
   padding-right: 20px;
}

/* Note the max height and width are set in jsp also */
.collections_carousel_image img {
    margin: auto;
    text-decoration: none;
    border: none;
    outline: none;
    max-height: 180px;
    max-width: 180px;
}

.collections_carousel_image_box {
    float:right;
    width: 190px;
    height: 190px;
    background: #000000;
    padding: 5px;
    border-style: solid;
    border-width: 1px;
    border-color: #333;
}

.collections_carousel_image_box:hover, .collections_carousel_image_box:focus, .collections_carousel_image_box:active {
    outline: 5px solid #E5007D;
}

.collections_carousel_image {
    display: table-cell;
    vertical-align: middle;
    width: 180px;
    height: 180px;
    text-align: center;
}

.collections_carousel_image a, .collections_carousel_image a:link, .collections_carousel_image a:visited, .collections_carousel_image a:hover, .collections_carousel_image a:focus, .collections_carousel_image a:active {
    outline:none;
}

@media screen and (max-width: 320px) {
    .collections_carousel_image_box {
        float: none;
    }
    .collections_carousel_item {
        margin-bottom:20px;
        margin-left:20px;
        margin-right:20px;
    }
}

.word-wrap-200 {
    word-wrap: break-word;
    width: 200px;
}
@media screen and (max-width: 767px) {
    .word-wrap-200 {
        width: 80%;
    }
}

.morelink a:link, .morelink a:visited, .morelink a:active {
    color: #3a6c8f;
}

.lesslink a:link, .morelink a:visited, .morelink a:active {
    color: #3a6c8f;
}

.faq ol {
    list-style: circle outside none;
}

.faq ol li {
    margin: 5px;
}

.terms ol {
    list-style: circle outside none;
}

.terms ol li {
    margin-top: -5px;
    margin-bottom: -5px;
    margin-left: 15px;
}

/* credit text for images, small */
.image-credit, .image-credit a {
    font-size: 0.9em;
    color: #999999;
    vertical-align: top;
    text-decoration: none;
    border: 0px;
    padding: 0px;
}

.image-credit-darwin, .image-credit-darwin a {
    font-size: 0.9em;
    color: #999999;
    text-decoration: none;
    margin-left: 25px;
}

.image-credit-islamic, .image-credit-islamic a {
    font-size: 0.9em;
    color: #999999;
    text-decoration: none;
    margin-right: 10px;
    float: right;
    margin-bottom: 10px;
}

.search-result-snippet {
    font-size: 0.8em;
    color: #999999;
}

.search-result-imgcontainer {
    width: 180px;
    height: 180px;
    background: #000000;
    padding: 5px;
    border-style: solid;
    border-width: 1px;
    border-color: #333;
    display: table-cell;
    vertical-align: middle;
}

.search_results .page_navigation {
    margin: 0px;
    float: right;
}

.clear {
    clear: both;
}

/* For pagination */
div.pagination {
    text-align: center;
}

div.pagination a:hover, div.pagination span.current {
    background-color: #F2F2F2;
    color: #000;
}

div.pagination a {
    font-style: normal;
    background-color: #fff;
    border-color: #D6D6D6;
    border-style: solid;
    border-width: 1px;
    color: #000;
    font-size: 11px;
    font-weight: 400;
    line-height: 12px;
    margin: 0px 2px;
    padding: 4px 7px;
    text-align: center;
    text-decoration: none;
}

div.pagination span.current {
    font-style: normal;
    background-color: #F2F2F2;
    border-color: #D6D6D6;
    border-style: solid;
    border-width: 1px;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    line-height: 12px;
    margin: 0px 2px;
    padding: 4px 7px;
    text-align: center;
    text-decoration: none;
}

div.pagination a.next, div.pagination span.disabled, div.pagination a.last,
    div.pagination a.first, div.pagination a.prev {
    font-style: normal;
    background-color: #000;
    border-color: #000;
    border-style: solid;
    border-width: 1px;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    line-height: 12px;
    margin: 0px 2px;
    padding: 4px 7px;
    text-align: center;
    text-decoration: none;
}

div.pagination a.next:hover, div.pagination a.last:hover, div.pagination a.first:hover,
    div.pagination a.prev:hover {
    background-color: #454545
}

/* search on bar */
#navPrimary form {
    float: right;
    height: 36px;
    position: relative;
}

#navPrimary #search {
    background: none repeat scroll 0 0 white;
    color: #666666;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 13px;
    font-style: italic;
    padding: 5px 5px;
    position: absolute;
    top: 5px;
    right: 4px;
    width: 230px;
    z-index: 2;
}

#navPrimary #submit {
    background: url(../assets/sprite-5b41b1b4bfafc4bb29db2a1bb9d37de5.png) no-repeat scroll -768px -17px
        transparent;
    cursor: pointer;
    display: inline-block;
    height: 16px;
    overflow: hidden;
    position: absolute;
    right: 10px;
    text-indent: -9999px;
    top: 9px;
    width: 16px;
    z-index: 3;
}

#navPrimary input {
    margin-right: 2px;
}

/* search on other page */
.search #search {
    background: none repeat scroll 0 0 white;
    color: #666666;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 13px;
    font-style: italic;
    padding: 5px 5px;
    position: absolute;
    top: 5px;
    right: 4px;
    width: 230px;
    z-index: 2;
}

.search #submit {
    background: url(../assets/sprite-5b41b1b4bfafc4bb29db2a1bb9d37de5.png) no-repeat scroll -768px -17px
        transparent;
    cursor: pointer;
    display: inline-block;
    height: 16px;
    overflow: hidden;
    position: absolute;
    right: 10px;
    text-indent: -9999px;
    top: 9px;
    width: 16px;
    z-index: 3;
}

.search input {
    margin-right: 2px;
}

/* Search box on search results page */
.searchform form {
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* search on search results page */
.searchform .search {
    background: none repeat scroll 0 0 white;
    color: #666666;
    padding: 5px 5px;
    top: 0px;
    margin-right: 0px;
    width: 230px;
    height: 32px;
}

.searchform .campl-search-submit {
    margin-bottom: 1px;
    margin-left: -5px;
}

/* search style text - for examples on search results page */
.searchexample .search {
    background: none repeat scroll 0 0 white;
    color: #666666;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 13px;
    font-style: italic;
    padding: 3px 3px;
    border-style: solid;
    border-width: 1px;
    border-color: #ccc;
    font-weight: bold;
}

.searchexample {
    line-height: 25px;
}

.searchform #submit {
    background: url(../assets/sprite-5b41b1b4bfafc4bb29db2a1bb9d37de5.png) no-repeat scroll -768px -17px
        transparent;
    cursor: pointer;
    display: inline-block;
    height: 16px;
    overflow: hidden;
    position: absolute;
    right: 5px;
    text-indent: -9999px;
    top: 5px;
    width: 16px;
    z-index: 3;
}

/* advancd search query page */
.advancedsearchform {
    position: relative;
}

.advancedsearchform input {
    background: #fff;
    padding: 5px 5px;
    margin: 5px;
    color: #666666;
    font-family: Georgia, 'Times New Roman', serif;
    z-index: 2;
    border-style: solid;
    border-width: 1px;
    border-color: #999;
    font-weight: bold;
    height: 28px;
}

.advancedsearchform label {
    margin-top: 8px;
    margin-left: auto;
    margin-right: 0px;
    display: inline-block;
}

.advancedsearchform .radiobutton {
    background-color: transparent;
    border-width: 0px;
}

/* longitude collection page */
.nmm_icon {
    margin-bottom: 0px;
    display: inline;
}

.longitudefeaturedItemsBox {
    height: 546px;
    width: 666px;
    background: none repeat scroll 0 0 #333333;
    overflow: hidden;
    padding: 18px 16px 9px;
    margin-bottom: 18px;
}

/* essay display page */
.essay_image {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.longitudestatistics {
    margin-bottom: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: #ccc;
    color: #666;
    margin-bottom: 15px;
}

.longitudestatistics a {
    color: #666;
}

.longitudestatistics ul {
    margin-bottom: 0px;
}

.longitudestatistics ol {
    margin-bottom: 0px;
    padding-left: 25px;
}

.longitudestatisticstitle {
    text-align: left;
    margin-bottom: 0px;
    padding-left: 8px;
    color: #fff;
    background-color: #ccc;
    border-color: #ccc;
    font-weight: bold;
    margin-bottom: 0px;
}

.longitudefeaturedcollection {
    margin-right: 15px;
    margin-left: 14px;
}

/* longitude sub collections */
.longitudefeaturedcollection img {
    opacity: 1.0;
    position: relative;
    margin-bottom: 58px;
    border-style: solid;
    border-top-width: 4px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-bottom-width: 0px;
    border-color: #fff;
}

.longitudefeaturedcollection:hover img {
    border-color: #333;
}

.longitudefeaturedcollection .featuredcollectionlabel {
    z-index: 10;
    width: 118px;
    display: block;
    padding: 5px;
    position: absolute;
    color: #eee;
    bottom: 8px;
    height: 60px;
    left: 0px;
    background: #333;
    float: left;
    border-style: solid;
    border-top-width: 0px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-bottom-width: 4px;
    border-color: #fff;
}

.longitudefeaturedcollection:hover .featuredcollectionlabel {
    border-color: #333;
}

/* longitude disabled collection */
.longitudefeaturedcollectiondisabled:hover .featuredcollectionlabel {
    border-color: #FFF;
}

.longitudefeaturedcollectiondisabled {
    opacity: 0.5;
}

.longitudefeaturedcollectiondisabled:hover img {
    border-color: #FFF;
}

.longitudefeatureditem {
    width: 205px;
    display: inline;
    float: left;
    margin-left: 8px;
    margin-right: 8px;
    position: relative;
    color: #ffffff;
}

.longitudeessaymetadata {
    background: none repeat scroll 0 0 #DBE8F1;
    line-height: 200%;
    padding: 15px;
}

.news_items img {
    float: left;
    margin-right: 20px;
}

.funder_item {
    margin-bottom: 20px;
    margin-top: 20px;
}

.campl-login-form {
    float:none;
    margin: 0 auto;
}

.btn-raven{color:#fff;background-color:#7f7f7f;border-color:rgba(0,0,0,0.2)}.btn-raven:hover,.btn-raven:focus,.btn-raven:active,.btn-raven.active,.open>.dropdown-toggle.btn-raven{color:#fff;background-color:#4d4d4d;border-color:rgba(0,0,0,0.2)}
.btn-raven:active,.btn-raven.active,.open>.dropdown-toggle.btn-raven{background-image:none}
.btn-raven.disabled,.btn-raven[disabled],fieldset[disabled] .btn-raven,.btn-raven.disabled:hover,.btn-raven[disabled]:hover,fieldset[disabled] .btn-raven:hover,.btn-raven.disabled:focus,.btn-raven[disabled]:focus,fieldset[disabled] .btn-raven:focus,.btn-raven.disabled:active,.btn-raven[disabled]:active,fieldset[disabled] .btn-raven:active,.btn-raven.disabled.active,.btn-raven[disabled].active,fieldset[disabled] .btn-raven.active{background-color:#007bb6;border-color:rgba(0,0,0,0.2)}
.btn-raven .badge{color:#007bb6;background-color:#fff}
.img-raven { margin-top:3px; }


.btn-google, .btn-facebook, .btn-twitter, .btn-linkedin, .btn-raven {
    height: 37px;
    color: #FFF;
}

#openid_identifier {
    height: 30px;
}

#login_error {
    color: #f00;
    font-weight: bold;
    margin-bottom: 20px;
}

.bookmark-removelink {
    float: right;
    margin-right: 10px;
}

.campl-btn.campl-primary-cta.campl-btn-darkbg {
    border: 1px solid #545454;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(../assets/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot);
  src: url(../assets/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot?#iefix&v=4.7.0) format('embedded-opentype'), url(../assets/fontawesome-webfont-af7ae505a9eed503f8b8e6982036873e.woff2) format('woff2'), url(../assets/fontawesome-webfont-fee66e712a8a08eef5805a46892932ad.woff) format('woff'), url(../assets/fontawesome-webfont-b06871f281fee6b241d60582ae9369b9.ttf) format('truetype'), url(../assets/fontawesome-webfont-912ec66d7572ff821749319396470bde.svg#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* 3rd party CSS libs */
/*@import "~project-light/stylesheets/full-stylesheet.css";*/

/* homepage style */
.carousel-panel {
    display: none;
}

#header-search {
    height: 32px;
}

@media screen and (min-width: 1177px) {
    .carousel-panel {
        background: url(../assets/grey-85b9bba348aada67c99aa39077b1d767.png) repeat scroll 0px 0px
            transparent;
        height: 374px;
        right: 0px;
        padding: 10px;
        position: absolute;
        float: right;
        top: 0px;
        width: 294px;
        color: #fff;
        text-align: left;
        display: inline-block;
    }
    .carousel-panel a {
        text-decoration: underline;
    }
    .campl-carousel-pagination {
        right: 108px;
    }
    .campl-slide-caption {
        right: 0px;
    }
}

#header-search input[type="text"] {
    height: 32px;
}
.cudl-header-search {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 40%;
}
.campl-search-input {
    height: 32px;
    min-height: 32px;
}
.cudl-header-search input[type=text] {
    height: 32px;
    width: calc(100% - 31px);
}
form.campl-search-input input.campl-search-submit {
    height: 32px;
    width: 32px;
}
div.campl-site-search {
    display: none;
}
@media screen and (max-width: 767px) {
    div.campl-site-search {
        display: block;
    }
    .cudl-header-search {
        display: none;
    }
    #site-search-container input[type=text] {
        margin: 0;
        padding: 0;
        height: 32px;
        line-height: 32px;
    }
}

/* end of homepage style */
#noscript-warning {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 2000;
    vertical-align: middle;
}

#noscript-warning p {
    text-align: center;
    vertical-align: middle;
}

.contibutors li {
    padding: 5px;
}

.terms li {
    padding: 5px;
}

.container {
    background-color: #FFFFFF;
}

.library-logo {
    margin: 20px 0;

    background-image: url(../assets/ul-600-logo-landscape-516c7fa78809e16a1d6bdc1737a61e87.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;

    display: block;
    height: 80px;
}
@media (max-width: 767px) {
    .library-logo {
        background-position: center;
        margin: 20px 10px;
    }
}

.content {
    background-color: #FFFFFF;
}

.cookienotice {
    color: #fff;
    background: #171717;
}

/* Text for downtime message on main page */
.warning {
    border-color: #ffaaaa;
    text-align: center;
    border-style: solid;
    border-width: 1px;
    margin-top: 24px;
    background-color: #ffeeee;
}

.footer a:link, .footer a:visited, .footer a:active {
    color: #FFFFFF;
    text-decoration: underline;
}

.featuredcollection img {
    opacity: 1.0;
    position: relative;
    margin-bottom: 58px;
    border-style: solid;
    border-top-width: 4px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-bottom-width: 0px;
    border-color: #fff;
}

.featuredcollection:hover img {
    border-color: #333;
}

.featuredcollection:hover .featuredcollectionlabel {
    border-color: #333;
}

.featuredcollection .featuredcollectionlabel {
    z-index: 10;
    width: 118px;
    display: block;
    padding: 5px;
    position: absolute;
    color: #eee;
    bottom: 8px;
    height: 40px;
    left: 0px;
    background: #333;
    float: left;
    border-style: solid;
    border-top-width: 0px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-bottom-width: 4px;
    border-color: #fff;
}

.collectionImage {
    margin-left: 0px;
    margin-right: 14px;
    float: left;
}

.featuredItem-text {
    width: 200px;
}

.featuredItem-text a {
    text-decoration: none;
}

.featuredItem {
    position: relative;
    margin-left: 18px;
}

.featuredItem img {
    border-style: solid;
    border-width: 1px;
    border-color: #333;
}

/** related item - used on essay page */
.relatedItem {
    width: 192px;
    margin-bottom: 8px;
    border-width: 2px;
    border-color: #eee;
    border-style: solid;
    padding: 4px;
}

.relatedItem a {
    text-decoration: none;
    position: relative;
}

.relatedItem img {
    border-style: solid;
    border-width: 1px;
    border-color: #333;
}

.foundations-link-faith, .foundations-link-faith a {
    color: #8f7722;
    position: absolute;
    right: 4px;
    bottom: 0px;
    text-align: right;
    width: 200px;
    text-decoration: none;
}

.foundations-link-science, .foundations-link-science a {
    color: #324088;
    position: absolute;
    right: 4px;
    bottom: 0px;
    text-align: right;
    width: 200px;
    text-decoration: none;
}

.right-aligned-language {
    font-style: normal;
    margin-left: auto;
    margin-right: 0px;
    text-align: right;
}

#document-about-radio-link {
    font-weight: bold;
    color: #333;
}

#document-about-radio-link a {
    font-weight: bold;
    color: #333;
}

#document-about-radio-icon-div {
    border: 3px;
    border-color: #000;
    font-weight: bold;
}

#document-about-exhibition-link {
    font-weight: bold;
    color: #333;
}

#document-about-exhibition-link a {
    font-weight: bold;
    color: #333;
}

#document-about-exhibition-icon-div {
    border: 3px;
    border-color: #000;
    font-weight: bold;
}

/* Longitude parent collection page */
.parent_featured_item_image img {
    margin: auto;
    text-decoration: none;
    border: none;
    outline: none;
}

.parent_featured_item_image_box {
    width: 180px;
    height: 180px;
    background: #000000;
    padding: 5px;
    border-style: solid;
    border-width: 3px;
    border-color: #333;
}

.parent_featured_item_image_box:hover {
    border-color: #999;
}

.parent_featured_item_image {
    display: table-cell;
    vertical-align: middle;
    width: 180px;
    height: 180px;
}

/* end of longitude parent collection page */
.helpBanner {
    margin-top: 20px;
}

.helpBanner img {
    display: inline;
    margin-bottom: 0px;
    margin-top: 6px;
    height: 10px;
}

.helpBanner a {
    align: left;
    font-size: 1em;
    text-decoration: none;
    font-weight: bold;
}

blockquote {
    border-left: 0px;
    margin-right: 20px;
}

.cam-quote-mark {
    float: left;
    margin-right: 20px;
}

.collectionOrganisationalImage {
    margin-bottom: 15px;
    float: none;
}

.collections_carousel {
    position: relative;
    display: block;
}

.grid_carousel ol {
    width: 900px;
}

.grid_carousel ol li {
    float: left;
    width: 550px;;
}

.matrix_carousel ol {
    width: 800px;
    margin-left: 70px;
    margin-bottom: 18px;
}

.matrix_carousel ol li {
    float: left;
    width: 180px;;
}

.collections_carousel_item {
    width: 100%;
    font-style: normal;
    position: relative;
    display: block;
    position: relative;
    min-height: 190px;
}

#subcollection-breadcrumb {
    color: #000;
}

#subcollection-breadcrumb li {
    padding: 0px 9px 0px 0px;
    background: #fff;
}

ol#collections_carousel li {
    list-style: none outside none;
}

ol#search_carousel li {
    list-style: none outside none;
}

.altsearchlink input[type="submit"] {
    background: transparent;
    text-decoration: underline;
    cursor: pointer;
    border: none;
    float: right;
    margin-right: 5px;
    font-color: #ff0000;
}

.search-facets {
    list-style-type: none;
}

.search-facet-selected {
    padding: 3px;
    position: relative;
    margin-top: 5px;
    margin-bottom: 5px;
}

.search-close {
    cursor: pointer;
    height: 19px;
    width: 19px;
    z-index: 3;
}

/* for virtual collections */
.virtual_collections_carousel {
    position: relative;
    display: block;
}

ol#virtual_collections_carousel li {
    list-style: none outside none;
    float: none;
    width: 100%;
}

.virtual_collections_carousel_item {
    width: 100%;
    font-style: normal;
    position: relative;
    display: block;
    position: relative;
    min-height: 190px;
    max-width: 500px;
    float:left;
}

.virtual_collections_carousel_image_box {
    width: 190px;
    height: 190px;
    background: #000000;
    padding: 5px;
    border-style: solid;
    border-width: 1px;
    border-color: #333;
   float:left;
   margin-right:20px;
}

.virtual_collections_carousel_image_box:hover, .virtual_collections_carousel_image_box:focus, .virtual_collections_carousel_image_box:active{
    outline: 5px solid #E5007D;
}

.virtual_collections_carousel_image {
   display: table-cell;
   vertical-align: middle;
   width: 180px;
   height: 180px;
   text-align: center;
}

.virtual_collections_carousel_image a, .virtual_collections_carousel_image a:link, .virtual_collections_carousel_image a:visited, .virtual_collections_carousel_image a:hover, .virtual_collections_carousel_image a:focus, .virtual_collections_carousel_image a:active {
    outline:none;
}

.virtual_collections_carousel_image img {
   margin: auto;
   text-decoration: none;
   border: none;
   outline: none;
   max-height: 180px;
   max-width: 180px;
}

.virtual-collections-items {
   float:left;
   padding-top:18px;
}

.virtual_collections_carousel_text {
   float:left;
   margin-left: 10px;
   margin-left: 10px;
   margin-right:10px;
   margin-bottom:10px;
}

.virtual_collection_summary_images {
   width:460px;
   height:500px;
   float:none;
}

@media screen and (max-width: 767px) {
   .virtual_collection_summary_images {
       display:none;
    }
    .virtual_collection_summary_image {
       display:none;
    }
}

.virtual_collection_summary_image {
   position: relative;
   float: left;
   height: 250px;
   width: 230px;
}

.virtual_collection_summary {
   position: relative;
   margin-bottom: 18px;
   float:none;
   background-color:#fff;
}

.virtual_collection_sponsor {
   float:left;
}

.virtual_collection_items {
   position: relative;
   float:left;
}

.virtual_collection_textgroup {
   padding-right: 20px;
}

/* Note the max height and width are set in jsp also */
.collections_carousel_image img {
    margin: auto;
    text-decoration: none;
    border: none;
    outline: none;
    max-height: 180px;
    max-width: 180px;
}

.collections_carousel_image_box {
    float:right;
    width: 190px;
    height: 190px;
    background: #000000;
    padding: 5px;
    border-style: solid;
    border-width: 1px;
    border-color: #333;
}

.collections_carousel_image_box:hover, .collections_carousel_image_box:focus, .collections_carousel_image_box:active {
    outline: 5px solid #E5007D;
}

.collections_carousel_image {
    display: table-cell;
    vertical-align: middle;
    width: 180px;
    height: 180px;
    text-align: center;
}

.collections_carousel_image a, .collections_carousel_image a:link, .collections_carousel_image a:visited, .collections_carousel_image a:hover, .collections_carousel_image a:focus, .collections_carousel_image a:active {
    outline:none;
}

@media screen and (max-width: 320px) {
    .collections_carousel_image_box {
        float: none;
    }
    .collections_carousel_item {
        margin-bottom:20px;
        margin-left:20px;
        margin-right:20px;
    }
}

.word-wrap-200 {
    word-wrap: break-word;
    width: 200px;
}
@media screen and (max-width: 767px) {
    .word-wrap-200 {
        width: 80%;
    }
}

.morelink a:link, .morelink a:visited, .morelink a:active {
    color: #3a6c8f;
}

.lesslink a:link, .morelink a:visited, .morelink a:active {
    color: #3a6c8f;
}

.faq ol {
    list-style: circle outside none;
}

.faq ol li {
    margin: 5px;
}

.terms ol {
    list-style: circle outside none;
}

.terms ol li {
    margin-top: -5px;
    margin-bottom: -5px;
    margin-left: 15px;
}

/* credit text for images, small */
.image-credit, .image-credit a {
    font-size: 0.9em;
    color: #999999;
    vertical-align: top;
    text-decoration: none;
    border: 0px;
    padding: 0px;
}

.image-credit-darwin, .image-credit-darwin a {
    font-size: 0.9em;
    color: #999999;
    text-decoration: none;
    margin-left: 25px;
}

.image-credit-islamic, .image-credit-islamic a {
    font-size: 0.9em;
    color: #999999;
    text-decoration: none;
    margin-right: 10px;
    float: right;
    margin-bottom: 10px;
}

.search-result-snippet {
    font-size: 0.8em;
    color: #999999;
}

.search-result-imgcontainer {
    width: 180px;
    height: 180px;
    background: #000000;
    padding: 5px;
    border-style: solid;
    border-width: 1px;
    border-color: #333;
    display: table-cell;
    vertical-align: middle;
}

.search_results .page_navigation {
    margin: 0px;
    float: right;
}

.clear {
    clear: both;
}

/* For pagination */
div.pagination {
    text-align: center;
}

div.pagination a:hover, div.pagination span.current {
    background-color: #F2F2F2;
    color: #000;
}

div.pagination a {
    font-style: normal;
    background-color: #fff;
    border-color: #D6D6D6;
    border-style: solid;
    border-width: 1px;
    color: #000;
    font-size: 11px;
    font-weight: 400;
    line-height: 12px;
    margin: 0px 2px;
    padding: 4px 7px;
    text-align: center;
    text-decoration: none;
}

div.pagination span.current {
    font-style: normal;
    background-color: #F2F2F2;
    border-color: #D6D6D6;
    border-style: solid;
    border-width: 1px;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    line-height: 12px;
    margin: 0px 2px;
    padding: 4px 7px;
    text-align: center;
    text-decoration: none;
}

div.pagination a.next, div.pagination span.disabled, div.pagination a.last,
    div.pagination a.first, div.pagination a.prev {
    font-style: normal;
    background-color: #000;
    border-color: #000;
    border-style: solid;
    border-width: 1px;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    line-height: 12px;
    margin: 0px 2px;
    padding: 4px 7px;
    text-align: center;
    text-decoration: none;
}

div.pagination a.next:hover, div.pagination a.last:hover, div.pagination a.first:hover,
    div.pagination a.prev:hover {
    background-color: #454545
}

/* search on bar */
#navPrimary form {
    float: right;
    height: 36px;
    position: relative;
}

#navPrimary #search {
    background: none repeat scroll 0 0 white;
    color: #666666;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 13px;
    font-style: italic;
    padding: 5px 5px;
    position: absolute;
    top: 5px;
    right: 4px;
    width: 230px;
    z-index: 2;
}

#navPrimary #submit {
    background: url(../assets/sprite-5b41b1b4bfafc4bb29db2a1bb9d37de5.png) no-repeat scroll -768px -17px
        transparent;
    cursor: pointer;
    display: inline-block;
    height: 16px;
    overflow: hidden;
    position: absolute;
    right: 10px;
    text-indent: -9999px;
    top: 9px;
    width: 16px;
    z-index: 3;
}

#navPrimary input {
    margin-right: 2px;
}

/* search on other page */
.search #search {
    background: none repeat scroll 0 0 white;
    color: #666666;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 13px;
    font-style: italic;
    padding: 5px 5px;
    position: absolute;
    top: 5px;
    right: 4px;
    width: 230px;
    z-index: 2;
}

.search #submit {
    background: url(../assets/sprite-5b41b1b4bfafc4bb29db2a1bb9d37de5.png) no-repeat scroll -768px -17px
        transparent;
    cursor: pointer;
    display: inline-block;
    height: 16px;
    overflow: hidden;
    position: absolute;
    right: 10px;
    text-indent: -9999px;
    top: 9px;
    width: 16px;
    z-index: 3;
}

.search input {
    margin-right: 2px;
}

/* Search box on search results page */
.searchform form {
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* search on search results page */
.searchform .search {
    background: none repeat scroll 0 0 white;
    color: #666666;
    padding: 5px 5px;
    top: 0px;
    margin-right: 0px;
    width: 230px;
    height: 32px;
}

.searchform .campl-search-submit {
    margin-bottom: 1px;
    margin-left: -5px;
}

/* search style text - for examples on search results page */
.searchexample .search {
    background: none repeat scroll 0 0 white;
    color: #666666;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 13px;
    font-style: italic;
    padding: 3px 3px;
    border-style: solid;
    border-width: 1px;
    border-color: #ccc;
    font-weight: bold;
}

.searchexample {
    line-height: 25px;
}

.searchform #submit {
    background: url(../assets/sprite-5b41b1b4bfafc4bb29db2a1bb9d37de5.png) no-repeat scroll -768px -17px
        transparent;
    cursor: pointer;
    display: inline-block;
    height: 16px;
    overflow: hidden;
    position: absolute;
    right: 5px;
    text-indent: -9999px;
    top: 5px;
    width: 16px;
    z-index: 3;
}

/* advancd search query page */
.advancedsearchform {
    position: relative;
}

.advancedsearchform input {
    background: #fff;
    padding: 5px 5px;
    margin: 5px;
    color: #666666;
    font-family: Georgia, 'Times New Roman', serif;
    z-index: 2;
    border-style: solid;
    border-width: 1px;
    border-color: #999;
    font-weight: bold;
    height: 28px;
}

.advancedsearchform label {
    margin-top: 8px;
    margin-left: auto;
    margin-right: 0px;
    display: inline-block;
}

.advancedsearchform .radiobutton {
    background-color: transparent;
    border-width: 0px;
}

/* longitude collection page */
.nmm_icon {
    margin-bottom: 0px;
    display: inline;
}

.longitudefeaturedItemsBox {
    height: 546px;
    width: 666px;
    background: none repeat scroll 0 0 #333333;
    overflow: hidden;
    padding: 18px 16px 9px;
    margin-bottom: 18px;
}

/* essay display page */
.essay_image {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.longitudestatistics {
    margin-bottom: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: #ccc;
    color: #666;
    margin-bottom: 15px;
}

.longitudestatistics a {
    color: #666;
}

.longitudestatistics ul {
    margin-bottom: 0px;
}

.longitudestatistics ol {
    margin-bottom: 0px;
    padding-left: 25px;
}

.longitudestatisticstitle {
    text-align: left;
    margin-bottom: 0px;
    padding-left: 8px;
    color: #fff;
    background-color: #ccc;
    border-color: #ccc;
    font-weight: bold;
    margin-bottom: 0px;
}

.longitudefeaturedcollection {
    margin-right: 15px;
    margin-left: 14px;
}

/* longitude sub collections */
.longitudefeaturedcollection img {
    opacity: 1.0;
    position: relative;
    margin-bottom: 58px;
    border-style: solid;
    border-top-width: 4px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-bottom-width: 0px;
    border-color: #fff;
}

.longitudefeaturedcollection:hover img {
    border-color: #333;
}

.longitudefeaturedcollection .featuredcollectionlabel {
    z-index: 10;
    width: 118px;
    display: block;
    padding: 5px;
    position: absolute;
    color: #eee;
    bottom: 8px;
    height: 60px;
    left: 0px;
    background: #333;
    float: left;
    border-style: solid;
    border-top-width: 0px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-bottom-width: 4px;
    border-color: #fff;
}

.longitudefeaturedcollection:hover .featuredcollectionlabel {
    border-color: #333;
}

/* longitude disabled collection */
.longitudefeaturedcollectiondisabled:hover .featuredcollectionlabel {
    border-color: #FFF;
}

.longitudefeaturedcollectiondisabled {
    opacity: 0.5;
}

.longitudefeaturedcollectiondisabled:hover img {
    border-color: #FFF;
}

.longitudefeatureditem {
    width: 205px;
    display: inline;
    float: left;
    margin-left: 8px;
    margin-right: 8px;
    position: relative;
    color: #ffffff;
}

.longitudeessaymetadata {
    background: none repeat scroll 0 0 #DBE8F1;
    line-height: 200%;
    padding: 15px;
}

.news_items img {
    float: left;
    margin-right: 20px;
}

.funder_item {
    margin-bottom: 20px;
    margin-top: 20px;
}

.campl-login-form {
    float:none;
    margin: 0 auto;
}

.btn-raven{color:#fff;background-color:#7f7f7f;border-color:rgba(0,0,0,0.2)}.btn-raven:hover,.btn-raven:focus,.btn-raven:active,.btn-raven.active,.open>.dropdown-toggle.btn-raven{color:#fff;background-color:#4d4d4d;border-color:rgba(0,0,0,0.2)}
.btn-raven:active,.btn-raven.active,.open>.dropdown-toggle.btn-raven{background-image:none}
.btn-raven.disabled,.btn-raven[disabled],fieldset[disabled] .btn-raven,.btn-raven.disabled:hover,.btn-raven[disabled]:hover,fieldset[disabled] .btn-raven:hover,.btn-raven.disabled:focus,.btn-raven[disabled]:focus,fieldset[disabled] .btn-raven:focus,.btn-raven.disabled:active,.btn-raven[disabled]:active,fieldset[disabled] .btn-raven:active,.btn-raven.disabled.active,.btn-raven[disabled].active,fieldset[disabled] .btn-raven.active{background-color:#007bb6;border-color:rgba(0,0,0,0.2)}
.btn-raven .badge{color:#007bb6;background-color:#fff}
.img-raven { margin-top:3px; }


.btn-google, .btn-facebook, .btn-twitter, .btn-linkedin, .btn-raven {
    height: 37px;
    color: #FFF;
}

#openid_identifier {
    height: 30px;
}

#login_error {
    color: #f00;
    font-weight: bold;
    margin-bottom: 20px;
}

.bookmark-removelink {
    float: right;
    margin-right: 10px;
}

.campl-btn.campl-primary-cta.campl-btn-darkbg {
    border: 1px solid #545454;
}

/* Extend the normal CUDL style */

.campl-main-content {
    min-height: 350px;
    transition: opacity 0.3s;
}

.loading .campl-main-content {
    opacity: 0.4;
}

/* advanced search form */
.advancedsearch-section {
    overflow: visible;
    float: none;
}
.advancedsearchform span.hint--right,
.advancedsearchform span.hint--bottom,
.advancedsearchform span.hint--left,
.advancedsearchform span.hint--top {
    width: 100%;
}
.advancedsearchform input[type=text] {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border: 1px solid #cccccc;
    border-top: 1px solid #c0c0c0;
    box-sizing: border-box;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: normal;
}
.advancedsearchform input[type=text]:focus {
    border-color: rgba(82, 168, 236, 0.8);
        outline: 0;
}
.advancedsearchform input[type=radio] {
    vertical-align: middle;
}

.advancedsearchform select,
.advancedsearchform select option {
    width: 100%;
}

.excludetext {
    float: right;
}

._mib {
    margin: 18px 0;
    clear: both;
    border-top: 1px solid #ebebeb;
}

/* search results carousel */
#collections_carousel {
    margin: 20px 0px;
    overflow: hidden;
}

@media screen and (max-width: 320px) {
    .collections_carousel_image_box {
        width: 180px;
    }
}
#collections_carousel > div:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 1px dotted #ddd;
}
#collections_carousel > div:not(:first-child) {
    padding-top: 10px;
}
#collections_carousel > div {
    margin-left: 20px;
}
.collections_carousel_text {
    margin-left: 0px;
    color: rgb(23,23,23);
    padding-right: 10px;
}
.collections_carousel_item {
    width: calc(100% - 30px);
}
.collections_carousel_item a {
    color: #0072cf;
}
.collections_carousel_text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.collections_carousel_text ul li {
    line-height: 15px;
    color: #545454;
    padding-bottom: .5em;
}
.collections_carousel_text ul li:before {
    content: "•";
    color: #999;
}
.collections_carousel_text ul li > span {
    padding-left: .5em;
}

/* pagination */
.pagination {
    display: block;
}
.pagination.toppagination {
    margin: 30px 0;
    width: 100%;
}

/* search result left panel */
#searchForm input.campl-search-submit {
    position: absolute;
    top: 0;
    right: 0;
}
.resultcount {
    color: #808080;
}
ol#tree {
    padding-left: 10px;
}
ol#tree > li:not(:first-child) {
    margin-top: 10px;
}
ol#tree > li > ul {
    margin-top: 5px;
    padding-left: 10px;
}
ol#tree > li > ul.hide {
    display: none;
}
ol#tree > li > strong {
    cursor: pointer;
}

.searchform div:first-child > ul {
    list-style: none;
    padding: 0;
    margin-left: 0;
    margin-bottom: 0;
}
.searchform div:first-child ul li {
    padding-bottom: .5em;
}
.searchform .query-actions {
    margin: 20px 0;
}

/* facets */
.selected-facet {
    margin: 10px 0 10px 0;
    padding: 10px 10px 10px 10px;
    border: 1px dashed #ccc;
}
.search-facet-selected {
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 0 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: inline-block;
}
.search-facet-selected span {
    font-style: italic;
}

.search-facet-expansion {
    margin-top: 3px;
    margin-bottom: -2px;
}

.search-facet-expansion a {
    padding-left: 10px;
    font-style: italic;
}

.search-facet-expansion a:visited {
    color: rgb(0, 114, 207);
}

/* search examples */
.searchform .search {
    padding: 5px 37px 5px 5px;
    width: 100%;
}

/* sticky menu */
/* .sticky-wrapper {
    background-color: #F3F3F3;
}
.searchform {
    z-index: 1000;
}*/

@media screen and (max-width: 767px) {
    /* search results carousel */
    .collections_carousel_image_box {
        margin-left: 10px;
    }

    .collections_carousel_text.campl-column8 {
        width: inherit;
    }
    .collections_carousel_text ul li {
        margin-bottom: 0;
        padding-bottom: .1em;
    }
    .excludetext {
        float: none !important;
    }
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url(../assets/fancybox_sprite-783d4031fe50c3d83c960911e1fbc705.png);
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url(../assets/fancybox_loading-328cc0f6c78211485058d460e80f4fa8.gif) center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url(../assets/blank-325472601571f31e1bf00674c368d335.gif); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url(../assets/fancybox_overlay-77aeaa52715b898b73c74d68c630330e.png);
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
	        border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
		background-image: url(../assets/fancybox_sprite@2x-ed9970ce22242421e66ff150aa97fe5f.png);
		background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
		background-image: url(../assets/fancybox_loading@2x-f92938639fa894a0e8ded1c3368abe98.gif);
		background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
	}
}

/*# sourceMappingURL=common-a00b93aeb135ce2bb6d2.css.map*/