@charset "UTF-8";

/* COLORS ------------------------------------------------------*/

:root {
  --dark-blue: #16365b;
  --medium-blue: #018bd9; /*#006ca9;*/
  --light-blue: #7bcfff;
  --xlight-blue: #e6f6ff;
  --light-gray: #ededed;
  --dark-red: #990033;
  --light-red: #e50040;
  --light-yellow: #ffe886;
}

.white {color:white;}
.dark-blue {color: var(--dark-blue);}
.medium-blue {color: var(--medium-blue);}
.light-blue {color: var(--light-blue);}
.xlight-blue {color: var(--xlight-blue);}
.light-gray {color: var(--light-gray);}
.dark-red {color: var(--dark-red);}
.light-red {color: var(--light-red);}
.light-yellow {color: var(--light-yellow);}

.bg-dark-blue {background-color: var(--dark-blue);}
.bg-medium-blue {background-color: var(--medium-blue);}
.bg-light-blue {background-color: var(--light-blue);}
.bg-xlight-blue {background-color: var(--xlight-blue);}
.bg-light-gray {background-color: var(--light-gray);}
.bg-dark-red {background-color: var(--dark-red);}
.bg-light-red {background-color: var(--light-red);}
.bg-light-yellow {background-color: var(--light-yellow);}

.fill-dark-blue{fill: var(--dark-blue)}
.fill-medium-blue{fill: var(--medium-blue)}
.fill-light-blue{fill: var(--light-blue)}
.fill-light-red{fill: var(--light-red)}
.fill-dark-red{fill: var(--dark-red)}

/* TYPOGRAPHY ------------------------------------------------------*/

body {
  font-family: "Noto Sans", sans-serif;
  color: var(--dark-blue);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6  {
  font-family: "Noto Sans", sans-serif;
  color: var(--dark-blue);
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 75;
}

a:hover {
  color:var(--medium-blue);
}

.h3.white {
  color: white;
}

.uppercase {
  text-transform: uppercase;
}


/* ELEMENTS ------------------------------------------------------*/

hr {
  border-color: var(--dark-blue);
  opacity: 1;
}

.row > hr {
	margin-left: calc(var(--bs-gutter-x) * .5);
	margin-right: calc(var(--bs-gutter-x) * .5);
	width: calc(100% - var(--bs-gutter-x));
}

p img {
	max-width: 100%;
	width: 100%;
	height: auto;
	margin-bottom: 1rem;
}

figcaption {
	font-size: .75rem;
}

/* UTILITIES ------------------------------------------------------*/

:root {
  --bs-col-padding-x: calc(var(--bs-gutter-x) * .5)
}

.mt-n4 {
  margin-top: -1.5rem;
}

.rounded-2 {
  border-radius: 2rem!important;
}

.rounded-3 {
  border-radius: 3rem!important;
}

@media screen and (min-width:576px) {
  .column-count-2 {
    column-count: 2;
    column-gap: 2rem;
  }
}

.object-fit-cover {
  object-fit: cover;
  height:100%;
  width: 100%;
}

.object-fit-contain {
  object-fit: contain;
}

.z-index-1 {
  z-index: 1;
}

.border-bottom {
	border-color: var(--dark-blue) !important;
}

.bg-content-box {
  background-clip: content-box;
}

.ratio-3x1 {
  --bs-aspect-ratio: 33%;
}

.line-clamp-2 {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;


  @supports (-webkit-line-clamp: 2) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

/* HEADER ------------------------------------------------------*/

.top-page-bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  fill: var(--xlight-blue);
}

.navbar-brand {
  width: 9rem;
  height:9rem;
  margin-left: -15px;
}

.nav-link {
  color: var(--dark-blue);
}

.nav-link:focus, .nav-link:hover {
	color: var(--medium-blue);
}

.dropdown-menu {
	background-color: white;
	border: 1px solid #fff;
	box-shadow: .5rem .5rem 2rem #16365b0f;
	border-radius: 1rem;
}

.dropdown-item label {
	font-weight: normal;
	color: currentColor;
	font-size: 1rem;
}

.navbar-nav .dropdown-item {
  color: var(--dark-blue);
}

.navbar-nav .dropdown-item:hover {
  color: var(--medium-blue);
  background-color: transparent;
}

.icon-menu a.nav-link {
  padding: .5rem;
}

nav .offcanvas {
  z-index: 99999999;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.offcanvas-body .dropdown-toggle {
	white-space: wrap;
}

@media screen and (max-width:991px) {
  .navbar .offcanvas {
    font-size: 1.5rem;
  }
}

/* HOME ------------------------------------------------------*/

.about-video-tn {
	object-fit: cover;
	height: 100%;
	object-position: left;
}

.quarter-circle-bg::after {
	content: "";
	display: block;
  position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
	width: 100%;
	max-height: 100%;
	aspect-ratio: 1;
	background-color: var(--light-blue);
	border-top-left-radius: 100%;
}

.job-offer-img {
  object-fit: cover;
  height: 250px;
  width: 100%;
}

.cv-image {
	max-width: 250px;
	width: 100%;
}

.job-shortlist li {
	display: block;
	line-height: 1.2;
	margin-bottom: .75rem;
}

.section-uti {
  z-index: 0;
  background-image: url(/static/images/UTI-transports-urbains.jpg);
  background-size: cover;
  background-position: center;
}

.section-uti::before {
	content: "";
	display: block;
  position: absolute;
  z-index: -1;
	width: 100%;
	height: 100%;
  background-image: linear-gradient(90deg, var(--light-yellow) -20%, transparent 250%);
}

.logo-uti {
	width: 10rem;
	height: auto;
	filter: drop-shadow(5px 5px 2rem #2222224f);
}

.secondary-article {
  margin-bottom: 1rem;
}

.secondary-article div:first-child {
	height: 6rem;
}

.teaser-title {
	position: relative;
}

.secondary-article:not(:last-child) .teaser-title::after {
  content: "";
  display: block;
  height: 1px;
  background-color: var(--dark-blue);
  position: absolute;
  bottom: 0;
  width: calc(100% - 1.5rem);
}

.teaser-img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.formation-CTA {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	min-height: 250px;
	padding: 2rem calc(2rem + var(--bs-gutter-x));
	overflow: hidden;
}

.formation-CTA::after {
	position: absolute;
	content: "";
	width: calc(100% - var(--bs-gutter-x));
	height: 100%;
	background-image: linear-gradient(90deg, var(--light-red) 20%, transparent 100%);
	top: 0;
	left: calc(var(--bs-gutter-x) * .5);
	z-index: -1;
}

.formation-CTA img {
  position: absolute;
  z-index: -1;
  top: 0;
	left: 20%;
	height: 100%;
	width: 80%;
	transform: translateX(calc(-.5 * var(--bs-gutter-x)));
  object-fit: cover;
}

.press-img {
	max-height: 174px;
	transform: rotate(3deg);
	box-shadow: .5rem .5rem 3rem #003f889e;
	max-width: 100%;
}

@media screen and (min-width:992px) {
  .job-offer-img {
    height: 100%;
  }

  .section-uti::before {
    background-image: linear-gradient(90deg, var(--light-yellow) 20%, transparent 70%);
  }
}


/* NEWS ------------------------------------------------------*/

.featured-article-inner {
	position: relative;
	z-index: 1;
  overflow: hidden;
  transition: 0.3s;
}

.featured-article-inner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	display: block;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(0deg, var(--dark-blue) 10%, transparent 160%);
	mix-blend-mode: multiply;
	opacity: .8;
	transition: 0.3s;
}

.featured-article-inner:hover::before {
  opacity:1;
  backdrop-filter:2rem;
}

.img-news {
  position: absolute;
  top:0;
  left:0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.article-link {
  position: absolute;
  top: 0;
  left: 0;
  width:100%;
  height:100%;
}

.article-link-btn {
  position: relative;
  z-index: 1;
}

.regular-article .teaser-img {
  border-radius: 2rem;
}

.regular-article .ratio {
  --bs-aspect-ratio: 75%;
}

.regular-article:not(:hover) a {
	text-decoration: none;
}

.regular-article a:hover {
	color:var(--dark-blue);
}

.regular-article .badge {
  vertical-align:middle;
  margin-top: -0.5em;
}

.article-details {
  padding-top: 1rem;
}

.topic-article .article-details {
	padding: 1rem;
	background-color: var(--light-blue);
	border-bottom-left-radius: 1rem;
	border-bottom-right-radius: 1rem;
}

.topic-article .teaser-img {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

/* SIDEBAR-RIGHT-TEMPLATE ------------------------------------------------------*/

.img-header > img,
.img-header > figure,
.img-header > figure > img {
  object-fit: cover;
  width:100%;
  height:100%;
}

.page-formation .header-introduction {
  color:var(--dark-red);
}

.bloclibre {
	margin-bottom: 2rem;
}


/* FORMATIONS --------------------------------------------------------*/

.page-formation h1,
.page-formation .header-introduction {
  color:var(--dark-red);
}

.page-formation .top-page-bg{
  fill: var(--light-gray);
}

.formation-catalogue h2 {
	color: var(--dark-red);
}


/* ANNONCES --------------------------------------------------------*/

.form-search .input-group .form-control {
	border: 1px solid var(--dark-blue);
	border-radius: 3rem;
	background-color: transparent;
	border-right: none;
	padding: .5rem 1rem;
}

.form-search .input-group .btn {
  border-left:none;
}

.form-search .form-control:focus {
  box-shadow: none;
}

.dropdown-item label input {
	margin-right: 0.375rem;
}

.companyLogo {
	max-width: 150px;
  width:100%;
  height: auto;
  mix-blend-mode: multiply;
}

/* CONTACT --------------------------------------------------------*/

.google-map{
  width: 100%;
  height:100%;
  min-height: 360px;
}

.contact-form ul {
  list-style: none;
  padding: 0;
}

.contact-form input[type="checkbox"] {
	width: 1rem;
	height: 1rem;
	padding: 0;
}

.contact-form label {
  font-weight: bold;
}

.contact-form li > label {
  font-weight: normal;
}

.contact-form input + label {
	margin-top: 1rem;
}

.contact-form a {
	font-size: .75rem;
}

.cms-plugin-235:first-of-type {
	background-color: red;
	color: turquoise;
}

.contact-form .cms-plugin-235 {
  display: block;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.contact-form .cms-plugin-235 + .cms-plugin-235 {
  display: block;
  margin-top: 0;
}

.contact-form .cms-plugin-236 {
  display: none;
}

.contact-form .cms-plugin-236 + input {
  display: inline-block;
  vertical-align: top;
  margin-top: .25rem;
  margin-right: .5rem;
}

.contact-form .cms-plugin-236 + input + p {
  display: inline-block;
  width: calc(100% - 2rem);
}


.contact-form button[type="submit"] {
	background-color: var(--dark-blue);
	color: white;
	border: none;
	border-radius: 3rem;
	padding: .5rem 1rem;
}


/* CTA ------------------------------------------------------*/

.v-red-gradient::after {
	content: "";
	width: calc(100% - var(--bs-gutter-x));
	height: 100%;
	background: linear-gradient(#e5004000 0 50%, #e50040);
	position: absolute;
	top: 0;
	z-index: 9999;
	display: block;
}

/* BUTTONS, DROPDOWNS, ICONS, PAGINATION ------------------------------------------------------*/

.btn-round {
  border-radius: 3rem;
}

.btn-primary {
	color: var(--dark-blue);
	background-color: var(--light-blue);
	border-color: var(--light-blue);
}

.btn-dark {
	color: white;
	background-color: var(--dark-blue);
	border-color: var(--dark-blue);
}

.btn-light {
	color: var(--dark-blue);
	background-color: white;
	border-color: white;
}

.btn-light-red {
	color: white;
	background-color: var(--light-red);
	border-color: var(--light-red);
}

.btn-light-red:hover {
	color: white;
	background-color: var(--dark-red);
	border-color: var(--dark-red);
}

.btn-dark-red {
	color: white;
	background-color: var(--dark-red);
	border-color: var(--dark-red);
}

.btn-outline-dark {
	color: var(--dark-blue);
	border-color: var(--dark-blue);
}

.btn-outline-dark:hover,
.btn-dark-red:hover,
.btn-dark:hover,
.btn-primary:hover,
.btn-dark:active,
.btn-primary:active,
.btn-dark:focus,
.btn-primary:focus,
.btn-outline-dark.dropdown-toggle.show {
	color: #fff;
	background-color: var(--medium-blue);
	border-color: var(--medium-blue);
}

button.btn:focus,
a.btn:focus,
button.btn:active,
a.btn:active,
.btn-outline-dark.dropdown-toggle.show:focus,
.btn-outline-dark:active:focus,
.btn-light:active:focus,
.page-link:focus {
  box-shadow: none;
}

.dropdown-item:focus, .dropdown-item:hover {
	color: var(--medium-blue);
	background-color: transparent;
}

.share-icons svg {
  width: 1.5rem;
}

.share-icons .list-inline-item:not(:last-child) {
  margin-right:.15rem;
}

.share-icons li {
	transition: .2s;
}

.share-icons li:hover {
	transform: translateY(.5rem);
}

.circle-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.5rem;
  padding: 0;
  text-align: center;
  line-height: 1.85;
}

.pagination .btn-round {
	min-width: 2.375rem;
}
.pagination .page-item {
	display: inline-block;
}

.aldryn-forms .btn {
	width: auto;
	border-radius: 3rem;
	border: none;
}

/* MODALS ------------------------------------------------------*/

.modal {
	background-color: #16365bb1;
}

.modal.searchModal {
	z-index: 9999999;
	background-color: #001040d1;
}

.searchModal .tt-input, .searchModal .twitter-typeahead {
	border: none;
	width: 100%;
	height: 3rem;
}

.searchModal form {
  display: flex;
}

.searchModal .btn-link {
	color: var(--dark-blue);
}

.videoModal .btn-close {
  position: absolute;
	right: -2rem;
	top: -2rem;
	background-color: white;
	border-radius: 3rem !important;
	background-size: .7rem;
	opacity: 1;
}

.videoModal .modal-content {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.videoModal iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* CAROUSEL ------------------------------------------------------*/

.carousel-item {
	height: 400px;
}

.news-carousel .carousel-item::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(0deg, var(--dark-blue) -10%, transparent 140%);
	position: absolute;
	mix-blend-mode: multiply;
}

.carousel-item img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}

.carousel-caption {
  text-align: left;
  left: 2rem;
  max-width:600px;
}


/* FOOTER ------------------------------------------------------*/

.socials svg {
	height: 1.75rem;
}

.socials a:not(:last-child) {
	margin-right: .25rem;
}

.main-footer {
	background-image: url(/static/images/illustration-footer.svg);
	background-position: bottom right;
	background-size: auto 220px;
	background-repeat: no-repeat;
}

/* ADMIN ------------------------------------------------------*/

body .admin_login_as {
	position: fixed;
	bottom: 10rem;
	right: -3rem;
	height: 40px;
	background-color: transparent;
	z-index: 9999;
	transform: rotate(-90deg) translateY(100%);
	left: unset;
}






@media DISABLED {

/*
 * MAIN STYLE
 *
 */
/*
 * VARIABLES
 *
 */
/*!
 * Custom-bootstrap v3.3.5 (http://getcustom-bootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/custom-bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

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

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

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

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

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

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

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

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

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

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

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

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

input {
  line-height: normal;
}

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

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

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

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

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #2e6eae;
  text-decoration: none;
}
a:hover, a:focus {
  color: #1e4871;
  text-decoration: none;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-crop {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.img-crop[img-crop-width="0"] {
  width: 0px;
}
.img-crop[img-crop-height="0"] {
  height: 0px;
}
.img-crop[img-crop-width="10"] {
  width: 10px;
}
.img-crop[img-crop-height="10"] {
  height: 10px;
}
.img-crop[img-crop-width="20"] {
  width: 20px;
}
.img-crop[img-crop-height="20"] {
  height: 20px;
}
.img-crop[img-crop-width="30"] {
  width: 30px;
}
.img-crop[img-crop-height="30"] {
  height: 30px;
}
.img-crop[img-crop-width="40"] {
  width: 40px;
}
.img-crop[img-crop-height="40"] {
  height: 40px;
}
.img-crop[img-crop-width="50"] {
  width: 50px;
}
.img-crop[img-crop-height="50"] {
  height: 50px;
}
.img-crop[img-crop-width="60"] {
  width: 60px;
}
.img-crop[img-crop-height="60"] {
  height: 60px;
}
.img-crop[img-crop-width="70"] {
  width: 70px;
}
.img-crop[img-crop-height="70"] {
  height: 70px;
}
.img-crop[img-crop-width="80"] {
  width: 80px;
}
.img-crop[img-crop-height="80"] {
  height: 80px;
}
.img-crop[img-crop-width="90"] {
  width: 90px;
}
.img-crop[img-crop-height="90"] {
  height: 90px;
}
.img-crop[img-crop-width="100"] {
  width: 100px;
}
.img-crop[img-crop-height="100"] {
  height: 100px;
}
.img-crop[img-crop-width="110"] {
  width: 110px;
}
.img-crop[img-crop-height="110"] {
  height: 110px;
}
.img-crop[img-crop-width="120"] {
  width: 120px;
}
.img-crop[img-crop-height="120"] {
  height: 120px;
}
.img-crop[img-crop-width="130"] {
  width: 130px;
}
.img-crop[img-crop-height="130"] {
  height: 130px;
}
.img-crop[img-crop-width="140"] {
  width: 140px;
}
.img-crop[img-crop-height="140"] {
  height: 140px;
}
.img-crop[img-crop-width="150"] {
  width: 150px;
}
.img-crop[img-crop-height="150"] {
  height: 150px;
}
.img-crop[img-crop-width="160"] {
  width: 160px;
}
.img-crop[img-crop-height="160"] {
  height: 160px;
}
.img-crop[img-crop-width="170"] {
  width: 170px;
}
.img-crop[img-crop-height="170"] {
  height: 170px;
}
.img-crop[img-crop-width="180"] {
  width: 180px;
}
.img-crop[img-crop-height="180"] {
  height: 180px;
}
.img-crop[img-crop-width="190"] {
  width: 190px;
}
.img-crop[img-crop-height="190"] {
  height: 190px;
}
.img-crop[img-crop-width="200"] {
  width: 200px;
}
.img-crop[img-crop-height="200"] {
  height: 200px;
}
.img-crop[img-crop-width="210"] {
  width: 210px;
}
.img-crop[img-crop-height="210"] {
  height: 210px;
}
.img-crop[img-crop-width="220"] {
  width: 220px;
}
.img-crop[img-crop-height="220"] {
  height: 220px;
}
.img-crop[img-crop-width="230"] {
  width: 230px;
}
.img-crop[img-crop-height="230"] {
  height: 230px;
}
.img-crop[img-crop-width="240"] {
  width: 240px;
}
.img-crop[img-crop-height="240"] {
  height: 240px;
}
.img-crop[img-crop-width="250"] {
  width: 250px;
}
.img-crop[img-crop-height="250"] {
  height: 250px;
}
.img-crop[img-crop-width="260"] {
  width: 260px;
}
.img-crop[img-crop-height="260"] {
  height: 260px;
}
.img-crop[img-crop-width="270"] {
  width: 270px;
}
.img-crop[img-crop-height="270"] {
  height: 270px;
}
.img-crop[img-crop-width="280"] {
  width: 280px;
}
.img-crop[img-crop-height="280"] {
  height: 280px;
}
.img-crop[img-crop-width="290"] {
  width: 290px;
}
.img-crop[img-crop-height="290"] {
  height: 290px;
}
.img-crop[img-crop-width="300"] {
  width: 300px;
}
.img-crop[img-crop-height="300"] {
  height: 300px;
}
.img-crop[img-crop-width="310"] {
  width: 310px;
}
.img-crop[img-crop-height="310"] {
  height: 310px;
}
.img-crop[img-crop-width="320"] {
  width: 320px;
}
.img-crop[img-crop-height="320"] {
  height: 320px;
}
.img-crop[img-crop-width="330"] {
  width: 330px;
}
.img-crop[img-crop-height="330"] {
  height: 330px;
}
.img-crop[img-crop-width="340"] {
  width: 340px;
}
.img-crop[img-crop-height="340"] {
  height: 340px;
}
.img-crop[img-crop-width="350"] {
  width: 350px;
}
.img-crop[img-crop-height="350"] {
  height: 350px;
}
.img-crop[img-crop-width="360"] {
  width: 360px;
}
.img-crop[img-crop-height="360"] {
  height: 360px;
}
.img-crop[img-crop-width="370"] {
  width: 370px;
}
.img-crop[img-crop-height="370"] {
  height: 370px;
}
.img-crop[img-crop-width="380"] {
  width: 380px;
}
.img-crop[img-crop-height="380"] {
  height: 380px;
}
.img-crop[img-crop-width="390"] {
  width: 390px;
}
.img-crop[img-crop-height="390"] {
  height: 390px;
}
.img-crop[img-crop-width="400"] {
  width: 400px;
}
.img-crop[img-crop-height="400"] {
  height: 400px;
}
.img-crop[img-crop-width="410"] {
  width: 410px;
}
.img-crop[img-crop-height="410"] {
  height: 410px;
}
.img-crop[img-crop-width="420"] {
  width: 420px;
}
.img-crop[img-crop-height="420"] {
  height: 420px;
}
.img-crop[img-crop-width="430"] {
  width: 430px;
}
.img-crop[img-crop-height="430"] {
  height: 430px;
}
.img-crop[img-crop-width="440"] {
  width: 440px;
}
.img-crop[img-crop-height="440"] {
  height: 440px;
}
.img-crop[img-crop-width="450"] {
  width: 450px;
}
.img-crop[img-crop-height="450"] {
  height: 450px;
}
.img-crop[img-crop-width="460"] {
  width: 460px;
}
.img-crop[img-crop-height="460"] {
  height: 460px;
}
.img-crop[img-crop-width="470"] {
  width: 470px;
}
.img-crop[img-crop-height="470"] {
  height: 470px;
}
.img-crop[img-crop-width="480"] {
  width: 480px;
}
.img-crop[img-crop-height="480"] {
  height: 480px;
}
.img-crop[img-crop-width="490"] {
  width: 490px;
}
.img-crop[img-crop-height="490"] {
  height: 490px;
}
.img-crop[img-crop-width="500"] {
  width: 500px;
}
.img-crop[img-crop-height="500"] {
  height: 500px;
}
.img-crop img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.img-crop img[img-crop-direction=landscape] {
  height: 100%;
  width: auto;
}
.img-crop img[img-crop-direction=portrait] {
  width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 0px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  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;
}

[role=button] {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  line-height: 1.1;
  color: #054581;
}
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #2e6eae;
}

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%;
}

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

h1, .h1 {
  font-size: 36px;
}

h2, .h2 {
  font-size: 30px;
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  font-size: 18px;
}

h5, .h5 {
  font-size: 14px;
}

h6, .h6 {
  font-size: 12px;
}

.section-heading {
  position: relative;
  padding: 16px 0;
  margin-bottom: 10px;
}
.section-heading h1 {
  font-size: 20px;
  margin: 0;
}
.section-heading h2 {
  font-size: 18px;
  margin: 0;
}
.section-heading h3 {
  font-size: 16px;
  margin: 0;
}
.section-heading h4 {
  font-size: 15px;
  margin: 0;
}
.section-heading h5 {
  font-size: 14px;
  margin: 0;
}
.section-heading::after {
  content: "";
  display: block;
  width: 150px;
  max-width: 45%;
  height: 2px;
  position: absolute;
  bottom: 5px;
  background-color: #94c6f5;
}
.section-heading.simple {
  margin-bottom: 0;
  padding-bottom: 10px;
}
.section-heading.simple::after {
  content: none;
}

* {
  font-family: "Open Sans", sans-serif;
}

p, span, div {
  color: #3e3e3e;
}

p {
  margin: 0 0 10px;
}

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}

small,
.small {
  font-size: 85%;
}

mark,
.mark {
  background-color: #fcf8e3;
  padding: 0.2em;
}

.text-left {
  text-align: left;
}

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

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

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase, .initialism {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-muted {
  color: #777777;
}

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

.text-primary {
  color: #2e6eae;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #235586;
}

.text-success {
  color: #3c763d;
}

a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

.text-info {
  color: #31708f;
}

a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

.text-warning {
  color: #8a6d3b;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

.text-danger {
  color: #a94442;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

.bg-primary {
  color: #fff;
}

.bg-primary {
  background-color: #2e6eae;
}

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #235586;
}

.bg-success {
  background-color: #dff0d8;
}

a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

.bg-info {
  background-color: #d9edf7;
}

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

.bg-warning {
  background-color: #fcf8e3;
}

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

.bg-danger {
  background-color: #f2dede;
}

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

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

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

.list-inline > li {
  display: inline-block;
}

dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dt,
dd {
  line-height: 1.428571429;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table;
}
.dl-horizontal dd:after {
  clear: both;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}

.initialism {
  font-size: 90%;
}

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.428571429;
  color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: "— ";
}

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: "";
}
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: " —";
}

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429;
}

.fa.first {
  margin-right: 10px;
}

.fa.last {
  margin-left: 10px;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container:before, .container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
.container-fluid:after {
  clear: both;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row:before, .row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.3333333333%;
}

.col-xs-2 {
  width: 16.6666666667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.3333333333%;
}

.col-xs-5 {
  width: 41.6666666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.3333333333%;
}

.col-xs-8 {
  width: 66.6666666667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.3333333333%;
}

.col-xs-11 {
  width: 91.6666666667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.3333333333%;
}

.col-xs-pull-2 {
  right: 16.6666666667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.3333333333%;
}

.col-xs-pull-5 {
  right: 41.6666666667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.3333333333%;
}

.col-xs-pull-8 {
  right: 66.6666666667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.3333333333%;
}

.col-xs-pull-11 {
  right: 91.6666666667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.3333333333%;
}

.col-xs-push-2 {
  left: 16.6666666667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.3333333333%;
}

.col-xs-push-5 {
  left: 41.6666666667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.3333333333%;
}

.col-xs-push-8 {
  left: 66.6666666667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.3333333333%;
}

.col-xs-push-11 {
  left: 91.6666666667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.3333333333%;
  }
  .col-sm-push-2 {
    left: 16.6666666667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.3333333333%;
  }
  .col-sm-push-5 {
    left: 41.6666666667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.3333333333%;
  }
  .col-sm-push-8 {
    left: 66.6666666667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.3333333333%;
  }
  .col-sm-push-11 {
    left: 91.6666666667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.3333333333%;
  }
  .col-md-pull-2 {
    right: 16.6666666667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.3333333333%;
  }
  .col-md-pull-5 {
    right: 41.6666666667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.3333333333%;
  }
  .col-md-pull-8 {
    right: 66.6666666667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.3333333333%;
  }
  .col-md-pull-11 {
    right: 91.6666666667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.3333333333%;
  }
  .col-md-push-2 {
    left: 16.6666666667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.3333333333%;
  }
  .col-md-push-5 {
    left: 41.6666666667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.3333333333%;
  }
  .col-md-push-8 {
    left: 66.6666666667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.3333333333%;
  }
  .col-md-push-11 {
    left: 91.6666666667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.3333333333%;
  }
  .col-lg-push-2 {
    left: 16.6666666667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.3333333333%;
  }
  .col-lg-push-5 {
    left: 41.6666666667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.3333333333%;
  }
  .col-lg-push-8 {
    left: 66.6666666667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.3333333333%;
  }
  .col-lg-push-11 {
    left: 91.6666666667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
table {
  background-color: transparent;
}

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

table col[class*=col-] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*=col-],
table th[class*=col-] {
  position: static;
  float: none;
  display: table-cell;
}

.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type=search] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

::-webkit-input-placeholder {
  font-style: italic;
}

::-moz-placeholder {
  font-style: italic;
} /* firefox 19+ */
:-ms-input-placeholder {
  font-style: italic;
} /* ie */
input:-moz-placeholder {
  font-style: italic;
}

input[type=radio],
input[type=checkbox] {
  margin: 4px 0 0;
  margin-top: 1px;
  line-height: normal;
}

input[type=file] {
  display: block;
}

input[type=range] {
  display: block;
  width: 100%;
}

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

input[type=file]:focus,
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: none;
  border-radius: 0px;
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
.form-control[disabled], fieldset[disabled] .form-control {
  cursor: not-allowed;
}

.form-control-grey {
  background-color: #e2e2e2;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
}

input[type=search] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type=date].form-control,
  input[type=time].form-control,
  input[type=datetime-local].form-control,
  input[type=month].form-control {
    line-height: 34px;
  }
  input[type=date].input-sm,
  .input-group-sm > .input-group-btn > input[type=date].btn, .input-group-sm input[type=date],
  input[type=time].input-sm,
  .input-group-sm > .input-group-btn > input[type=time].btn,
  .input-group-sm input[type=time],
  input[type=datetime-local].input-sm,
  .input-group-sm > .input-group-btn > input[type=datetime-local].btn,
  .input-group-sm input[type=datetime-local],
  input[type=month].input-sm,
  .input-group-sm > .input-group-btn > input[type=month].btn,
  .input-group-sm input[type=month] {
    line-height: 30px;
  }
  input[type=date].input-lg,
  .input-group-lg > .input-group-btn > input[type=date].btn, .input-group-lg input[type=date],
  input[type=time].input-lg,
  .input-group-lg > .input-group-btn > input[type=time].btn,
  .input-group-lg input[type=time],
  input[type=datetime-local].input-lg,
  .input-group-lg > .input-group-btn > input[type=datetime-local].btn,
  .input-group-lg input[type=datetime-local],
  input[type=month].input-lg,
  .input-group-lg > .input-group-btn > input[type=month].btn,
  .input-group-lg input[type=month] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.radio input[type=radio],
.radio-inline input[type=radio],
.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

input[type=radio][disabled], input[type=radio].disabled, fieldset[disabled] input[type=radio],
input[type=checkbox][disabled],
input[type=checkbox].disabled,
fieldset[disabled] input[type=checkbox] {
  cursor: not-allowed;
}

.radio-inline.disabled, fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

.radio.disabled label, fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px;
}
.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-left: 0;
  padding-right: 0;
}

.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 0px;
}

select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px;
}

textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto;
}

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 0px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 0px;
}

select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 46px;
  line-height: 46px;
}

textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto;
}

.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 0px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}

.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.has-error .form-control-feedback {
  color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type=radio],
  .form-inline .checkbox input[type=checkbox] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  content: " ";
  display: table;
}
.form-horizontal .form-group:after {
  clear: both;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.333333px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0 2px;
  font-family: "Open Sans", sans-serif;
  transition: all 0.3s ease-out;
}
.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover, .btn:focus, .btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #001b3f;
}
.btn-default:focus, .btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: black;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #000102;
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  color: #333;
  background-color: #e6e6e6;
  border-color: #000102;
}
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: black;
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  background-image: none;
}
.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #001b3f;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}

.btn-default:focus, .btn-default.focus, .btn-default:hover, .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  color: #fff;
  background-color: #054581;
  border-color: #054581;
}

.btn-primary {
  color: #fff;
  background-color: #2e6eae;
  border-color: #2e6eae;
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #235586;
  border-color: #132e49;
}
.btn-primary:hover {
  color: #fff;
  background-color: #235586;
  border-color: #214f7e;
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #235586;
  border-color: #214f7e;
}
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #1c4369;
  border-color: #132e49;
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  background-image: none;
}
.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
  background-color: #2e6eae;
  border-color: #2e6eae;
}
.btn-primary .badge {
  color: #2e6eae;
  background-color: #fff;
}

.btn-primary-darker {
  color: #fff;
  background-color: #001b3f;
  border-color: #001b3f;
}
.btn-primary-darker:focus, .btn-primary-darker.focus {
  color: #fff;
  background-color: #00050c;
  border-color: black;
}
.btn-primary-darker:hover {
  color: #fff;
  background-color: #00050c;
  border-color: #000102;
}
.btn-primary-darker:active, .btn-primary-darker.active, .open > .btn-primary-darker.dropdown-toggle {
  color: #fff;
  background-color: #00050c;
  border-color: #000102;
}
.btn-primary-darker:active:hover, .btn-primary-darker:active:focus, .btn-primary-darker:active.focus, .btn-primary-darker.active:hover, .btn-primary-darker.active:focus, .btn-primary-darker.active.focus, .open > .btn-primary-darker.dropdown-toggle:hover, .open > .btn-primary-darker.dropdown-toggle:focus, .open > .btn-primary-darker.dropdown-toggle.focus {
  color: #fff;
  background-color: black;
  border-color: black;
}
.btn-primary-darker:active, .btn-primary-darker.active, .open > .btn-primary-darker.dropdown-toggle {
  background-image: none;
}
.btn-primary-darker.disabled, .btn-primary-darker.disabled:hover, .btn-primary-darker.disabled:focus, .btn-primary-darker.disabled.focus, .btn-primary-darker.disabled:active, .btn-primary-darker.disabled.active, .btn-primary-darker[disabled], .btn-primary-darker[disabled]:hover, .btn-primary-darker[disabled]:focus, .btn-primary-darker[disabled].focus, .btn-primary-darker[disabled]:active, .btn-primary-darker[disabled].active, fieldset[disabled] .btn-primary-darker, fieldset[disabled] .btn-primary-darker:hover, fieldset[disabled] .btn-primary-darker:focus, fieldset[disabled] .btn-primary-darker.focus, fieldset[disabled] .btn-primary-darker:active, fieldset[disabled] .btn-primary-darker.active {
  background-color: #001b3f;
  border-color: #001b3f;
}
.btn-primary-darker .badge {
  color: #001b3f;
  background-color: #fff;
}

.btn-primary-lighter {
  color: #3e3e3e;
  background-color: #94c6f5;
  border-color: #94c6f5;
}
.btn-primary-lighter:focus, .btn-primary-lighter.focus {
  color: #3e3e3e;
  background-color: #65adf1;
  border-color: #1f88ea;
}
.btn-primary-lighter:hover {
  color: #3e3e3e;
  background-color: #65adf1;
  border-color: #5ca8f0;
}
.btn-primary-lighter:active, .btn-primary-lighter.active, .open > .btn-primary-lighter.dropdown-toggle {
  color: #3e3e3e;
  background-color: #65adf1;
  border-color: #5ca8f0;
}
.btn-primary-lighter:active:hover, .btn-primary-lighter:active:focus, .btn-primary-lighter:active.focus, .btn-primary-lighter.active:hover, .btn-primary-lighter.active:focus, .btn-primary-lighter.active.focus, .open > .btn-primary-lighter.dropdown-toggle:hover, .open > .btn-primary-lighter.dropdown-toggle:focus, .open > .btn-primary-lighter.dropdown-toggle.focus {
  color: #3e3e3e;
  background-color: #459cee;
  border-color: #1f88ea;
}
.btn-primary-lighter:active, .btn-primary-lighter.active, .open > .btn-primary-lighter.dropdown-toggle {
  background-image: none;
}
.btn-primary-lighter.disabled, .btn-primary-lighter.disabled:hover, .btn-primary-lighter.disabled:focus, .btn-primary-lighter.disabled.focus, .btn-primary-lighter.disabled:active, .btn-primary-lighter.disabled.active, .btn-primary-lighter[disabled], .btn-primary-lighter[disabled]:hover, .btn-primary-lighter[disabled]:focus, .btn-primary-lighter[disabled].focus, .btn-primary-lighter[disabled]:active, .btn-primary-lighter[disabled].active, fieldset[disabled] .btn-primary-lighter, fieldset[disabled] .btn-primary-lighter:hover, fieldset[disabled] .btn-primary-lighter:focus, fieldset[disabled] .btn-primary-lighter.focus, fieldset[disabled] .btn-primary-lighter:active, fieldset[disabled] .btn-primary-lighter.active {
  background-color: #94c6f5;
  border-color: #94c6f5;
}
.btn-primary-lighter .badge {
  color: #94c6f5;
  background-color: #3e3e3e;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #2d672d;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #419641;
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  border-color: #419641;
}
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #398439;
  border-color: #2d672d;
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  background-image: none;
}
.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #5cb85c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #5bc0de;
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1f7e9a;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #2aabd2;
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  border-color: #2aabd2;
}
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1f7e9a;
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  background-image: none;
}
.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #5bc0de;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #b06d0f;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #eb9316;
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  border-color: #eb9316;
}
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #b06d0f;
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  background-image: none;
}
.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f;
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #8b211e;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #c12e2a;
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  border-color: #c12e2a;
}
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #8b211e;
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  background-image: none;
}
.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d9534f;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

.btn-large {
  padding: 0 12px;
  line-height: 35px;
}
.btn-large i.fa {
  font-size: 20px;
  position: relative;
  top: 2px;
}

.btn-link {
  color: #2e6eae;
  font-weight: normal;
  border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}
.btn-link:hover, .btn-link:focus {
  color: #1e4871;
  text-decoration: none;
  background-color: transparent;
}
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 0px;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 0px;
}

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 0px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}
.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #2e6eae;
}

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}

.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}

.dropdown-menu-right {
  left: auto;
  right: 0;
}

.dropdown-menu-left {
  left: 0;
  right: auto;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #777777;
  white-space: nowrap;
}

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar:before, .btn-toolbar:after {
  content: " ";
  display: table;
}
.btn-toolbar:after {
  clear: both;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group > .btn-group {
  float: left;
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn .caret {
  margin-left: 0;
}

.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}
.btn-group-vertical > .btn-group:after {
  clear: both;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 0px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

[data-toggle=buttons] > .btn input[type=radio],
[data-toggle=buttons] > .btn input[type=checkbox],
[data-toggle=buttons] > .btn-group > .btn input[type=radio],
[data-toggle=buttons] > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*=col-] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #fff;
  border: none;
  border-radius: 0px;
}
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 0px;
}
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 0px;
}
.input-group-addon input[type=radio],
.input-group-addon input[type=checkbox] {
  margin-top: 0;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.input-group-addon:first-child {
  border-right: 0;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.input-group-addon:last-child {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
  padding: 6px 12px 7px;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav:before, .nav:after {
  content: " ";
  display: table;
}
.nav:after {
  clear: both;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #2e6eae;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  background-color: #fff;
  color: #3e3e3e;
  font-family: "Roboto Condensed", sans-serif;
}
.nav-tabs > li > a:hover {
  background-color: #94c6f5;
  color: #3e3e3e;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #3e3e3e;
  background-color: #94c6f5;
  cursor: default;
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 0px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  color: #001b3f;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #2e6eae;
}

.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
  .nav-justified > li:not(:first-child) > a {
    margin-left: 5px;
  }
}

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
.navbar:before, .navbar:after {
  content: " ";
  display: table;
}
.navbar:after {
  clear: both;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 0px;
  }
}

.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table;
}
.navbar-header:after {
  clear: both;
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}

.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse:before, .navbar-collapse:after {
  content: " ";
  display: table;
}
.navbar-collapse:after {
  clear: both;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

.navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-nav {
  margin: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
  text-transform: uppercase;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li:not(:last-child) {
    border-right: solid 1px rgba(255, 255, 255, 0.05);
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .justified-nav {
    margin: 0 auto;
    display: table;
    table-layout: auto;
    float: none;
    width: 100%;
  }
  .justified-nav > li {
    display: table-cell;
    float: none;
    text-align: center;
    vertical-align: middle;
  }
}

.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type=radio],
  .navbar-form .checkbox input[type=checkbox] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  margin-top: 14px;
  margin-bottom: 14px;
}

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

.navbar-inverse {
  background-color: #222;
  border-color: #090909;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #090909;
}
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #090909;
  color: #fff;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #090909;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #090909;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #090909;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

.breadcrumb {
  padding: 20px 0px;
  line-height: 60px;
  margin-bottom: 0;
  list-style: none;
  background-color: transparent;
  border-radius: 0px;
  font-family: "Roboto Condensed", sans-serif;
}
.breadcrumb > li {
  display: inline-block;
  font-family: inherit;
}
.breadcrumb > li + li:before {
  content: "> ";
  padding: 0 5px;
  color: #3e3e3e;
}
.breadcrumb > li > a {
  font-family: inherit;
  color: inherit;
}
.breadcrumb > .active {
  color: #001b3f;
}

.breadcrumb-section .container {
  margin-top: 30px;
  background-color: #fff;
}
.breadcrumb-section .container .title-breadcrumb {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 60px;
}
.breadcrumb-section .container .title-breadcrumb * {
  line-height: inherit;
  margin: 0;
  font-size: inherit;
}
.breadcrumb-section .container .breadcrumb {
  margin: 0;
  padding: 0;
  line-height: 60px;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 0px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.428571429;
  text-decoration: none;
  color: #2e6eae;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 3;
  color: #1e4871;
  background-color: #eeeeee;
  border-color: #ddd;
}
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  background-color: #2e6eae;
  border-color: #2e6eae;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}

.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}
.pager:before, .pager:after {
  content: " ";
  display: table;
}
.pager:after {
  clear: both;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  background-color: #fff;
  cursor: not-allowed;
}

.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.label-default {
  background-color: #777777;
}
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #5e5e5e;
}

.label-primary {
  background-color: #2e6eae;
}
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #235586;
}

.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44;
}

.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5;
}

.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f;
}

.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge, .btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #2e6eae;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron, .container-fluid .jumbotron {
  border-radius: 0px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron, .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 10px;
  line-height: 1.428571429;
  background-color: #fff;
  border-radius: 0px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #2e6eae;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 0px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 0px;
  -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);
}

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #2e6eae;
  -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-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}

.media,
.media-body {
  zoom: 1;
  overflow: hidden;
}

.media-body {
  width: 10000px;
}

.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}

.media-right,
.media > .pull-right {
  padding-left: 10px;
}

.media-left,
.media > .pull-left {
  padding-right: 10px;
}

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

.media-middle {
  vertical-align: middle;
}

.media-bottom {
  vertical-align: bottom;
}

.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.media-list {
  padding-left: 0;
  list-style: none;
}

.list-group {
  margin-bottom: 10px;
  padding-left: 0;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 5px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: none;
}
.list-group-item:first-child {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

a.list-group-item,
button.list-group-item {
  color: inherit;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5;
}

button.list-group-item {
  width: 100%;
  text-align: left;
}

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed;
}
.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #2e6eae;
  border-color: #2e6eae;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #bbd4ed;
}

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

.panel {
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 0px;
  overflow: hidden;
}

.panel-1-row {
  height: 300px;
  overflow: hidden;
}

.panel-2-rows {
  height: 610px;
  overflow: hidden;
}

.panel-body {
  padding: 8px 12px;
}
.panel-body:before, .panel-body:after {
  content: " ";
  display: table;
}
.panel-body:after {
  clear: both;
}
@media (min-width: 768px) and (max-width: 991px) {
  .panel-body .list-group-item {
    padding: 2px 0;
  }
}

.panel-heading {
  padding: 16px 12px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 21px;
  color: inherit;
}
.panel-title.panel-title-uppercase {
  font-size: 18px;
  text-transform: uppercase;
}
.panel-title img {
  width: 30px;
  height: 30px;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

.panel-footer {
  padding: 16px 12px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: -1px;
  border-bottom-left-radius: -1px;
}

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: -1px;
  border-top-left-radius: -1px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: -1px;
  border-bottom-left-radius: -1px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

.list-group + .panel-footer {
  border-top-width: 0;
}

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 8px 12px;
  padding-right: 8px 12px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: -1px;
  border-top-left-radius: -1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: -1px;
  border-top-right-radius: -1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: -1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: -1px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: -1px;
  border-bottom-left-radius: -1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: -1px;
  border-bottom-right-radius: -1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: -1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: -1px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}

.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 0px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

.panel-default {
  border-color: #94c6f5;
}
.panel-default .panel-heading {
  color: #001b3f;
  background-color: transparent;
  position: relative;
}
.panel-default .panel-heading::after {
  content: "";
  display: block;
  width: 150px;
  max-width: 45%;
  height: 2px;
  position: absolute;
  bottom: 5px;
  background-color: #94c6f5;
}
.panel-default .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #94c6f5;
}
.panel-default .panel-heading .badge {
  color: transparent;
  background-color: #001b3f;
}
.panel-default .panel-heading-centered {
  text-align: center;
}
.panel-default .panel-heading-centered::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #94c6f5;
}

.panel-primary {
  border-color: #2e6eae;
}
.panel-primary .panel-heading {
  color: #000;
  background-color: transparent;
  position: relative;
}
.panel-primary .panel-heading::after {
  content: "";
  display: block;
  width: 150px;
  max-width: 45%;
  height: 2px;
  position: absolute;
  bottom: 5px;
  background-color: #2e6eae;
}
.panel-primary .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #2e6eae;
}
.panel-primary .panel-heading .badge {
  color: transparent;
  background-color: #000;
}
.panel-primary .panel-heading-centered {
  text-align: center;
}
.panel-primary .panel-heading-centered::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #2e6eae;
}

.panel-success {
  border-color: #d6e9c6;
}
.panel-success .panel-heading {
  color: #3c763d;
  background-color: transparent;
  position: relative;
}
.panel-success .panel-heading::after {
  content: "";
  display: block;
  width: 150px;
  max-width: 45%;
  height: 2px;
  position: absolute;
  bottom: 5px;
  background-color: #d6e9c6;
}
.panel-success .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success .panel-heading .badge {
  color: transparent;
  background-color: #3c763d;
}
.panel-success .panel-heading-centered {
  text-align: center;
}
.panel-success .panel-heading-centered::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

.panel-info {
  border-color: #bce8f1;
}
.panel-info .panel-heading {
  color: #31708f;
  background-color: transparent;
  position: relative;
}
.panel-info .panel-heading::after {
  content: "";
  display: block;
  width: 150px;
  max-width: 45%;
  height: 2px;
  position: absolute;
  bottom: 5px;
  background-color: #bce8f1;
}
.panel-info .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info .panel-heading .badge {
  color: transparent;
  background-color: #31708f;
}
.panel-info .panel-heading-centered {
  text-align: center;
}
.panel-info .panel-heading-centered::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

.panel-warning {
  border-color: #faebcc;
}
.panel-warning .panel-heading {
  color: #8a6d3b;
  background-color: transparent;
  position: relative;
}
.panel-warning .panel-heading::after {
  content: "";
  display: block;
  width: 150px;
  max-width: 45%;
  height: 2px;
  position: absolute;
  bottom: 5px;
  background-color: #faebcc;
}
.panel-warning .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning .panel-heading .badge {
  color: transparent;
  background-color: #8a6d3b;
}
.panel-warning .panel-heading-centered {
  text-align: center;
}
.panel-warning .panel-heading-centered::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

.panel-danger {
  border-color: #ebccd1;
}
.panel-danger .panel-heading {
  color: #a94442;
  background-color: transparent;
  position: relative;
}
.panel-danger .panel-heading::after {
  content: "";
  display: block;
  width: 150px;
  max-width: 45%;
  height: 2px;
  position: absolute;
  bottom: 5px;
  background-color: #ebccd1;
}
.panel-danger .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger .panel-heading .badge {
  color: transparent;
  background-color: #a94442;
}
.panel-danger .panel-heading-centered {
  text-align: center;
}
.panel-danger .panel-heading-centered::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

.well-lg {
  padding: 24px;
  border-radius: 0px;
}

.well-sm {
  padding: 9px;
  border-radius: 0px;
}

.well-blue {
  background-color: #2e6eae;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.428571429px;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.428571429;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.428571429;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: -1px -1px 0 0;
}

.popover-content {
  padding: 9px 14px;
}

.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover > .arrow {
  border-width: 11px;
}

.popover > .arrow:after {
  border-width: 10px;
  content: "";
}

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    -moz-transition: -moz-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    -o-transition: -o-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    transition: transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next, .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-control.right {
  left: auto;
  right: 0;
}
.carousel-control:hover, .carousel-control:focus {
  outline: 0;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}
.carousel-control .icon-prev:before {
  content: "‹";
}
.carousel-control .icon-next:before {
  content: "›";
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0);
}
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px;
  }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
/*
* PERSO
*
*/
.transition-timer-carousel {
  color: #fff;
}
.transition-timer-carousel .carousel-inner .item .carousel-image-background {
  background-size: cover;
  background-position: center;
}
.transition-timer-carousel .carousel-inner .item .carousel-caption {
  background-color: rgba(0, 27, 63, 0.88);
  text-align: left;
}
.transition-timer-carousel .carousel-inner .item .carousel-caption .carousel-caption-content a, .transition-timer-carousel .carousel-inner .item .carousel-caption .carousel-caption-content a:hover {
  color: #fff;
}
.transition-timer-carousel .carousel-inner .item .carousel-caption .carousel-caption-content .carousel-caption-header {
  color: inherit;
}
.transition-timer-carousel .carousel-inner .item .carousel-caption .carousel-caption-content .carousel-caption-text {
  font-weight: 300;
  color: inherit;
}
.transition-timer-carousel .carousel-inner .item .carousel-caption .carousel-caption-content .carousel-caption-footer {
  font-size: 9px;
  color: inherit;
}
.transition-timer-carousel .carousel-inner .item .carousel-caption .carousel-caption-content .carousel-caption-footer * {
  color: inherit;
}
.transition-timer-carousel .carousel-control {
  position: absolute;
  top: auto;
  bottom: 5px;
  z-index: 11;
  width: auto;
  color: inherit;
}
.transition-timer-carousel .carousel-control span {
  color: inherit;
}
.transition-timer-carousel .transition-timer-carousel-progress-bar {
  position: relative;
  width: 0%;
  height: 5px;
  z-index: 11;
  margin: -5px 0px 0px 0px;
  border: none;
  background-color: #94c6f5;
}
.transition-timer-carousel .transition-timer-carousel-progress-bar.animate {
  /* We make the transition time shorter to avoid the slide transitioning
  before the timer bar is "full" - change the 4.25s here to fit your
  (default interval is 5s)
  carousel's transition time */
  transition: width 5.25s cubic-bezier(0.55, 0, 0.1, 1);
}

@media (max-width: 767px) {
  .transition-timer-carousel .carousel-inner .item .carousel-image-background {
    height: 200px;
  }
  .transition-timer-carousel .carousel-inner .item .carousel-caption {
    width: 100%;
    height: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 30px;
  }
  .transition-timer-carousel .carousel-inner .item .carousel-caption .carousel-caption-content .carousel-caption-header {
    margin: 0;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .transition-timer-carousel .carousel-inner .item .carousel-caption .carousel-caption-content .carousel-caption-text {
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .transition-timer-carousel .carousel-inner .item .carousel-caption .carousel-caption-content .carousel-caption-footer {
    display: none;
  }
  .transition-timer-carousel .carousel-control {
    padding: 16px 5px;
  }
  .transition-timer-carousel .carousel-control.left {
    left: 0;
  }
  .transition-timer-carousel .carousel-control.right {
    right: 0;
  }
}
@media (min-width: 768px) {
  .transition-timer-carousel .carousel-inner .item .carousel-image-background {
    height: 250px;
  }
  .transition-timer-carousel .carousel-inner .item .carousel-caption {
    width: 250px;
    line-height: 250px;
    vertical-align: middle;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 20px 20px 50px;
  }
  .transition-timer-carousel .carousel-inner .item .carousel-caption .carousel-caption-content {
    display: inline-block;
    line-height: normal;
  }
  .transition-timer-carousel .carousel-inner .item .carousel-caption .carousel-caption-content .carousel-caption-header {
    margin: 5px 0;
    font-size: 18px;
  }
  .transition-timer-carousel .carousel-inner .item .carousel-caption .carousel-caption-content .carousel-caption-text {
    font-size: 16px;
  }
  .transition-timer-carousel .carousel-control {
    padding: 5px 15px;
  }
  .transition-timer-carousel .carousel-control.right {
    right: auto;
    left: 204px;
  }
}
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

.vertical-separator {
  position: relative;
}
.vertical-separator::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  background-color: #e2e2e2;
}

.vertical-separator-xs::after {
  content: none;
}
@media (max-width: 767px) {
  .vertical-separator-xs::after {
    content: "";
  }
}

.vertical-separator-sm-min::after {
  content: none;
}
@media (min-width: 768px) {
  .vertical-separator-sm-min::after {
    content: "";
  }
}

.vertical-separator-sm::after {
  content: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .vertical-separator-sm::after {
    content: "";
  }
}

.vertical-separator-sm-max::after {
  content: none;
}
@media (max-width: 991px) {
  .vertical-separator-sm-max::after {
    content: "";
  }
}

.vertical-separator-md-min::after {
  content: none;
}
@media (min-width: 992px) {
  .vertical-separator-md-min::after {
    content: "";
  }
}

.vertical-separator-md::after {
  content: none;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .vertical-separator-md::after {
    content: "";
  }
}

.vertical-separator-md-max::after {
  content: none;
}
@media (max-width: 1199px) {
  .vertical-separator-md-max::after {
    content: "";
  }
}

.vertical-separator-lg-min::after {
  content: none;
}
@media (min-width: 1200px) {
  .vertical-separator-lg-min::after {
    content: "";
  }
}

@-ms-viewport {
  width: device-width;
}
.visible-xs {
  display: none !important;
}

.visible-sm {
  display: none !important;
}

.visible-md {
  display: none !important;
}

.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}





/*
 * GENERAL
 *
 */
.screenSize {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  background-color: red;
  color: #fff;
  padding: 10px;
  display: none;
}
.screenSize div {
  color: inherit;
}

body {
  background-color: #e2e2e2;
}

a {
  transition: all 0.3s ease-out;
}

a, input {
  outline: none;
}

hr.separator {
  border: none;
  margin: 25px 0 0;
  min-width: 1px;
}
hr.separator.small-separator {
  margin: 10px 0 0;
}
hr.separator.large-separator {
  margin: 50px 0 0;
}

#mainContent img {
  padding: 5px !important;
}

@media (max-width: 767px) {
  .no-gutters-xs {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .small-gutters {
    padding-left: 3px;
    padding-right: 3px;
  }
  .no-gutters {
    padding: 0;
  }
}
.overflow {
  overflow: hidden;
}

.playVideo {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.5s, opacity 0.3s linear;
  position: fixed;
  z-index: 102;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 27, 63, 0.8);
}
.playVideo .video {
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  transition: transform 0.3s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.playVideo .video .closeVideo {
  position: absolute;
  width: 30px;
  height: 30px;
  top: -15px;
  right: -15px;
  padding: 5px;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}
.playVideo.visible {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.playVideo.visible .video {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0.8s opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0.8s;
}

.image-logo-content div {
  text-align: center;
}
.image-logo-content div img {
  text-align: center;
}
.image-logo-content div a {
  text-align: center;
  width: 100%;
  float: left;
}
.image-logo-content div p {
  text-align: center;
  width: 100%;
  float: left;
}

/*
 * HEADER
 *
 */
@media (min-width: 768px) {
  #page {
    padding-top: 109px;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  #page {
    padding-top: 99px;
  }
}
@media (min-width: 768px) {
  #page.extranetPage {
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  header#mainHeader {
    position: fixed;
    z-index: 100;
    width: 100%;
    background-color: #fff;
  }
  header#mainHeader .mobile {
    display: none;
  }
  header#mainHeader .top {
    height: 47px;
  }
  header#mainHeader .top .container {
    position: relative;
  }
  header#mainHeader .top .logo {
    float: left;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 130px;
    height: 125px;
    display: inline-block;
    background-color: #fff;
    filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.5));
    -webkit-filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.5));
  }
  header#mainHeader .top .logo:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 65px 0 65px;
    border-color: #fff transparent transparent transparent;
  }
  header#mainHeader .top .logo img {
    padding: 20px 5px;
  }
  header#mainHeader .top .socials {
    line-height: 47px;
    color: #2e6eae;
    margin-left: 140px;
  }
  header#mainHeader .top .socials span {
    color: #2e6eae;
  }
  header#mainHeader .top .socials i.fa {
    font-size: 20px;
    padding: 5px;
    position: relative;
    top: 2px;
  }
  header#mainHeader .top .navbar-right {
    margin-right: 0;
    margin-top: -45px;
  }
  header#mainHeader .navbar {
    background-color: #054581;
    margin-bottom: 0;
  }
  header#mainHeader .navbar .navbar-nav {
    float: none;
    margin-left: 140px;
    width: 85%;
  }
  header#mainHeader .navbar .navbar-nav > li > a {
    transition: background-color 0.3s ease-out;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 991px) {
  header#mainHeader .navbar .navbar-nav > li > a {
    padding: 10px 9px;
  }
}
@media (min-width: 768px) {
  header#mainHeader .navbar .navbar-nav > li > a:hover, header#mainHeader .navbar .navbar-nav > li > a:focus, header#mainHeader .navbar .navbar-nav > li > a:active {
    background-color: #043d72;
  }
}
@media (min-width: 768px) {
  header#mainHeader .navbar .navbar-nav .item {
    overflow: hidden;
  }
  header#mainHeader .navbar .navbar-nav .item.hasSubItems {
    /*display: table !important;*/
  }
  header#mainHeader .navbar .navbar-nav .item.hasSubItems:nth-of-type(8) .subItems ul li .subSubItems {
    left: initial;
    right: 100%;
  }
  header#mainHeader .navbar .navbar-nav .item.hasSubItems .subItems {
    position: absolute;
    min-width: 170px;
    /*width: 270px;*/
    left: 0;
    padding: 25px 15px;
    z-index: 1;
    /*
    -webkit-transform: translateX(-30%) translateY(5px);
    -ms-transform: translateX(-30%) translateY(5px);
    transform: translateX(-30%) translateY(5px);
    */
    white-space: nowrap;
    text-align: center;
    font-weight: 300;
    background-color: #001b3f;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  }
  header#mainHeader .navbar .navbar-nav .item.hasSubItems .subItems::before {
    content: "";
    display: block;
    position: absolute;
    top: -5px;
    left: 15px;
    /*
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    */
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 5px 15px;
    border-color: transparent transparent #001b3f transparent;
  }
  header#mainHeader .navbar .navbar-nav .item.hasSubItems .subItems .subdropdown li {
    padding: 2px 13px;
  }
  header#mainHeader .navbar .navbar-nav .item.hasSubItems .subItems ul {
    padding: 0;
    list-style: none;
  }
  header#mainHeader .navbar .navbar-nav .item.hasSubItems .subItems ul > li {
    position: relative;
  }
  header#mainHeader .navbar .navbar-nav .item.hasSubItems .subItems ul > li > a {
    color: white;
    text-decoration: none;
    width: 118%;
    display: block;
  }
  header#mainHeader .navbar .navbar-nav .item.hasSubItems .subItems ul li {
    text-align: left;
  }
  header#mainHeader .navbar .navbar-nav .item.hasSubItems .subItems ul li .subSubItems {
    position: absolute;
    left: 100%;
    z-index: 2;
    background-color: #001b3f;
    top: 0;
  }
  header#mainHeader .navbar .navbar-nav .item.hasSubItems .subItems ul li .subSubItems ul {
    height: 0;
    display: none;
    -webkit-transition: height 0.3s ease-out;
    transition: height 0.3s ease-out;
  }
  header#mainHeader .navbar .navbar-nav .item.hasSubItems .subItems ul li .subSubItems ul .subSubItem a {
    padding-left: 10px;
    color: white !important;
  }
  header#mainHeader .navbar .navbar-nav .item.hasSubItems .subItems ul li:hover .subSubItems ul {
    height: auto;
    display: block;
    -webkit-transition: height 0.3s ease-out;
    transition: height 0.3s ease-out;
  }
  header#mainHeader .navbar .navbar-nav .item.hasSubItems.openned {
    overflow: visible;
  }
  header#mainHeader .navbar .navbar-nav .item.hasSubItems.openned .subItems {
    opacity: 1;
    /*-webkit-transform: translateX(-30%);
    -ms-transform: translateX(-30%);
    transform: translateX(-30%);*/
  }
}
@media (min-width: 768px) {
  header#mainHeader #searchForm {
    display: none;
  }
  header#mainHeader #searchForm form {
    position: relative;
  }
  header#mainHeader #searchForm form #searchField {
    width: 750px;
    margin-left: 145px;
    padding: 5px 0;
    line-height: 30px;
    border: none;
    outline: none;
  }
  header#mainHeader #searchForm form label {
    position: absolute;
  }
  header#mainHeader #searchForm form #resetSearch {
    display: inline-block;
    width: 25px;
    height: 32px;
    margin-top: 4px;
    font-size: 0;
    cursor: pointer;
  }
  header#mainHeader #searchForm form #resetSearch input {
    display: none;
  }
  header#mainHeader #searchForm form #resetSearch::before,
  header#mainHeader #searchForm form #resetSearch::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    opacity: 0;
    background-color: #333;
    transition: opacity 0.3s ease-out, transform 0.2s;
  }
  header#mainHeader #searchForm form #resetSearch.visible::before,
  header#mainHeader #searchForm form #resetSearch.visible::after {
    opacity: 1;
    transition: opacity 0.3s ease-out, transform 0.5s cubic-bezier(0.61, 0.59, 0.11, 1.78) 0.2s;
  }
  header#mainHeader #searchForm form #resetSearch.visible::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header#mainHeader #searchForm form #resetSearch.visible::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  header#mainHeader #searchForm .tt-menu {
    background-color: white;
    width: 800px;
    margin-left: 120px;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  header#mainHeader #searchForm .tt-suggestion {
    color: #2e6eae;
    padding: 5px 5px 5px 20px;
    cursor: pointer;
  }
  header#mainHeader #searchForm .tt-suggestion:hover {
    color: white;
    background-color: #2e6eae;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header#mainHeader .top .navbar-right {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .title_responsive {
    height: 80px;
    position: relative;
    width: 100%;
  }
  .title_responsive.front {
    height: 150px;
    margin-bottom: 15px;
  }
  .title_responsive h1 {
    position: absolute;
    top: 86px;
    font-size: 24px;
    text-align: center;
    width: 100%;
  }
  .panel-1-row {
    height: auto;
  }
  .top,
  #searchForm {
    display: none;
  }
  /**********************
   	*  Header + menu style
   	***********************/
  header#mainHeader {
    position: fixed;
    top: 0;
    width: 100% !important;
    max-height: 60px;
    z-index: 100;
    overflow: visible !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  }
  header#mainHeader .mobile {
    width: 100%;
    font-size: 0;
  }
  header#mainHeader .mobile .logo {
    position: relative;
    width: 120px;
    height: 90px;
    display: inline-block;
    background-color: #fff;
    -webkit-filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.5));
  }
  header#mainHeader .mobile .logo:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 60px 0 60px;
    border-color: #fff transparent transparent transparent;
  }
  header#mainHeader .mobile .logo img {
    padding: 10px;
  }
  header#mainHeader .mobile nav,
  header#mainHeader .mobile .logo {
    display: inline-block;
    vertical-align: middle;
    z-index: 1;
  }
  header#mainHeader .mobile nav {
    font-size: 14px;
    text-align: center;
    width: calc(50% - 60px);
  }
  header#mainHeader .mobile nav ul {
    padding-left: 0;
    margin-bottom: 22px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-around;
  }
  header#mainHeader .mobile nav ul > li {
    float: none;
    display: inline-block;
  }
  header#mainHeader .mobile nav ul > li a {
    display: block;
  }
  header#mainHeader .mobile nav ul > li a i.fa {
    font-size: 22px;
  }
  header#mainHeader .mobile nav ul > li a p {
    font-size: 10px;
    text-transform: uppercase;
    font-family: "Roboto Condensed", sans-serif;
    color: inherit;
    margin: 3px 0 0;
  }
  header#mainHeader div#secondContent {
    position: absolute;
    width: 200px;
    height: 100vh;
    right: -200px;
    top: 0;
    padding: 10px;
    overflow: scroll;
    background-color: #f1f1f1;
  }
  header#mainHeader nav#mainMenu {
    position: absolute;
    width: 200px;
    height: 100vh;
    left: -200px;
    top: 0;
    padding: 10px;
    overflow: scroll;
    background-color: #f1f1f1;
  }
  header#mainHeader nav#mainMenu ul.navbar-nav {
    margin: 15px -15px;
  }
  header#mainHeader nav#mainMenu ul.navbar-nav li.item a {
    color: #2e6eae;
    font-weight: 500;
  }
  header#mainHeader nav#mainMenu ul.navbar-nav li.item.hasSubItems {
    display: table !important;
  }
  header#mainHeader nav#mainMenu ul.navbar-nav li.item.hasSubItems i {
    top: 28px;
    left: 5px;
    color: #2e6eae;
    position: relative;
    z-index: 9999;
    display: block;
    width: 20px;
    display: inline !important;
  }
  header#mainHeader nav#mainMenu ul.navbar-nav li.item.hasSubItems > a {
    position: relative;
    padding-right: 25px;
    padding-left: 25px;
  }
  header#mainHeader nav#mainMenu ul.navbar-nav li.item.hasSubItems > a.subItemsVisible::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  header#mainHeader nav#mainMenu ul.navbar-nav li.item.hasSubItems .subItems {
    margin: 0 0 15px;
    display: none;
    color: red;
  }
  header#mainHeader nav#mainMenu ul.navbar-nav li.item.hasSubItems .subItems ul {
    list-style: none;
    margin: 5px;
  }
  header#mainHeader nav#mainMenu ul.navbar-nav li.item.hasSubItems .subItems ul li.subItem a {
    color: #000 !important;
    padding: 5px 0;
    display: block;
  }
  /**********************
  *  ANIMATION
  *  Menu open/close
  ***********************/
  body.mainMenuOpened,
  body.secondContentOpened {
    overflow: hidden;
  }
  #mainHeader {
    -webkit-transform: translateX(0) translateZ(0);
    -ms-transform: translateX(0) translateZ(0);
    transform: translateX(0) translateZ(0);
    transition: transform 0.3s cubic-bezier(0.56, 0.12, 0.42, 0.89);
  }
  #mainHeader.mainMenuOpened {
    -webkit-transform: translateX(200px) translateZ(0);
    -ms-transform: translateX(200px) translateZ(0);
    transform: translateX(200px) translateZ(0);
  }
  #mainHeader.secondContentOpened {
    -webkit-transform: translateX(-200px) translateZ(0);
    -ms-transform: translateX(-200px) translateZ(0);
    transform: translateX(-200px) translateZ(0);
  }
  #page {
    -webkit-transform: translateX(0) translateZ(0);
    -ms-transform: translateX(0) translateZ(0);
    transform: translateX(0) translateZ(0);
    transition: transform 0.3s cubic-bezier(0.56, 0.12, 0.42, 0.89);
  }
  #page.mainMenuOpened {
    -webkit-transform: translateX(200px) translateZ(0);
    -ms-transform: translateX(200px) translateZ(0);
    transform: translateX(200px) translateZ(0);
  }
  #page.secondContentOpened {
    -webkit-transform: translateX(-200px) translateZ(0);
    -ms-transform: translateX(-200px) translateZ(0);
    transform: translateX(-200px) translateZ(0);
  }
}
@media (min-width: 768px) {
  #secondContent {
    display: none;
  }
}
#extranet #mainHeader {
  position: absolute;
  background-color: transparent;
}
#extranet #mainHeader .top {
  position: fixed;
  width: 100%;
  z-index: 1;
  background-color: #fff;
}
#extranet #mainHeader .top .content {
  margin-left: 140px;
}
#extranet #mainHeader .top .content .btn {
  margin: 5px 0;
}
#extranet #mainHeader .top .content .socials {
  margin-left: 0;
}
#extranet #mainHeader .top .content .myAccount {
  z-index: 1;
  font-size: 0;
  background-color: #2e6eae;
}
#extranet #mainHeader .top .content .myAccount .icon {
  display: inline-block;
  width: 20%;
  vertical-align: middle;
  font-size: 14px;
  color: #fff;
}
#extranet #mainHeader .top .content .myAccount .list-group {
  display: inline-block;
  width: 80%;
  vertical-align: middle;
  margin-bottom: 0;
  background-color: #2e6eae;
  font-size: 14px;
  color: #fff;
}
#extranet #mainHeader .top .content .myAccount .list-group .list-group-item {
  background-color: inherit;
}
#extranet #mainHeader .top .content .myAccount .list-group .list-group-item .fa {
  position: relative;
  left: 0;
  transition: all 0.1s ease-out;
}
#extranet #mainHeader .top .content .myAccount .list-group .list-group-item:hover {
  color: #fff;
}
#extranet #mainHeader .top .content .myAccount .list-group .list-group-item:hover .fa {
  left: -5px;
}
@media (min-width: 768px) {
  #extranet #secondContent {
    display: none;
  }
  #extranet #mainHeader .navbarContainer {
    position: relative;
    top: 267px;
  }
  #extranet #mainHeader .navbarContainer #mainMenu {
    position: relative;
    margin: 0 -12px;
    background-color: rgba(0, 27, 63, 0.88);
  }
  #extranet #mainHeader .navbarContainer #mainMenu::before {
    content: "Accès thèmatique";
    position: absolute;
    top: -31px;
    left: -1px;
    z-index: -1;
    padding: 0 10px;
    background-color: #2e6eae;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
    line-height: 30px;
  }
  #extranet #mainHeader .navbarContainer #mainMenu .navbar-nav {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  #extranet #mainHeader .mobile {
    background-color: #fff;
  }
  #extranet #mainHeader .navbarContainer {
    padding: 0;
    width: 0;
  }
  #extranet #mainHeader .navbarContainer #mainMenu {
    margin: 0;
    padding: 0 15px;
  }
}

.btn-large {
  padding: 0 8px;
  line-height: 35px;
}

.btn-large i.fa {
  font-size: 15px;
  position: relative;
}

.navbar-right > * {
  display: inline-block;
}

#search_form_header {
  line-height: 33px;
}

#search_form_header input[type=text] {
  padding-left: 5px;
  min-width: 400px;
}

.tt-menu {
  background-color: rgba(255, 255, 255, 0.9);
  padding-left: 5px;
  font-size: 13px;
}

.tt-menu .tt-suggestion:hover {
  cursor: pointer;
  background-color: #0070AA;
  opacity: 0.9;
  color: #fff;
}

#toggleSearch {
  display: none;
}

@media (min-width: 990px) and (max-width: 1196px) {
  #search_form_header input[type=text] {
    padding-left: 5px;
    min-width: 250px;
  }
  header#mainHeader .top .socials > a > i.fa {
    padding: 0;
  }
}
@media (min-width: 1196px) {
  #search_form_header {
    display: inline-block;
  }
  /*#toggleSearch{*/
  /*display: none;*/
  /*}*/
}
@media (max-width: 990px) {
  #toggleSearch, #search_form_header {
    display: none;
  }
}
#mainHeader ul {
  margin-top: 4px;
  margin-bottom: 4px;
}

/*
 * FOOTER
 *
 */
#footerHeadImg img {
  width: 100vw;
}

footer#mainFooter {
  background-color: #fff;
  padding: 35px 0;
}
footer#mainFooter .particulars p {
  margin: 0 0 2px;
}
footer#mainFooter .sitemap .nav > li > a {
  letter-spacing: -1px;
}
footer#mainFooter .sitemap .logo {
  width: 100%;
  height: auto;
}
footer#mainFooter .socials {
  padding: 0 15px;
  line-height: 47px;
  color: #2e6eae;
}
footer#mainFooter .socials span {
  color: #2e6eae;
}
footer#mainFooter .socials i.fa {
  font-size: 20px;
  padding: 5px;
  position: relative;
  top: 2px;
}
footer#mainFooter p.copyright {
  padding: 10px 15px;
  font-size: 12px;
  font-family: "Roboto Condensed", sans-serif;
  color: #969696;
}
footer#mainFooter p.copyright a {
  color: inherit;
  font-family: inherit;
}

@media (max-width: 767px) {
  footer#mainFooter {
    text-align: center;
  }
  footer#mainFooter .particulars .panel-heading {
    display: inline-block;
  }
  footer#mainFooter .sitemap .nav {
    text-align: center;
  }
  footer#mainFooter .sitemap .nav > li {
    display: inline-block;
    float: none;
  }
}
/*
 * PARALLAX
 *
 */
.parallax {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.parallax .parallaxLayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.parallax .parallaxLayer .text {
  position: relative;
  top: 25%;
  margin: 0 50px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 100;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-size: 30px;
}
@media (max-width: 767px) {
  .parallax .parallaxLayer .text {
    top: 45%;
    font-size: 25px;
  }
}
.parallax .vague {
  z-index: 1;
  position: absolute;
  bottom: 0;
}

/*
 * WORD CLOUD
 *
 */
.word-cloud {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.word-cloud .word-cloud-justified {
  text-align: justify;
}
.word-cloud .word-cloud__word {
  color: inherit;
  display: inline-block;
  margin: 0 3px;
  line-height: 30px;
  font-family: "Roboto Condensed", sans-serif;
}
.word-cloud .word-cloud__word a {
  color: inherit;
}
.word-cloud .word-cloud__word--x-small,
.word-cloud .word-cloud__word--small {
  font-weight: 100;
}
.word-cloud .word-cloud__word {
  font-size: 20px;
}
.word-cloud .word-cloud__word--x-small {
  font-size: 16px;
}
.word-cloud .word-cloud__word--small {
  font-size: 19px;
}
.word-cloud .word-cloud__word--large {
  font-size: 25px;
}
.word-cloud .word-cloud__word--x-large {
  font-size: 30px;
  letter-spacing: -0.0125em;
}
@media (max-width: 991px) {
  .word-cloud .word-cloud__word {
    font-size: 18px;
    line-height: 25px;
  }
  .word-cloud .word-cloud__word--x-small {
    font-size: 14px;
  }
  .word-cloud .word-cloud__word--small {
    font-size: 17px;
  }
  .word-cloud .word-cloud__word--large {
    font-size: 23px;
  }
  .word-cloud .word-cloud__word--x-large {
    font-size: 28px;
    letter-spacing: -0.0125em;
  }
}

/*
 * TWITTER
 *
 */
.twitter ul.listTweet {
  padding-left: 0;
  list-style: none;
}
.twitter ul.listTweet > li:not(:first-child) {
  position: relative;
  margin-top: 10px;
  padding-top: 10px;
}
.twitter ul.listTweet > li:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 0;
  height: 1px;
  width: 100%;
  background-color: #e2e2e2;
}
.twitter .tweet .tweetHeader {
  margin-bottom: 7px;
}
.twitter .tweet .tweetHeader .tweetImg {
  float: left;
  margin-right: 5px;
  margin-top: -5px;
}
.twitter .tweet .tweetHeader .tweetUser {
  margin: 0 0 2px;
  text-transform: uppercase;
  font-weight: 500;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  max-width: 100%;
  height: 14.3px; /* Fallback for non-webkit */
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.twitter .tweet .tweetHeader .tweetID {
  margin: 0;
}
.twitter .tweet .tweetHeader .tweetID a {
  color: inherit;
}
.twitter .tweet .tweetContent a {
  color: #001b3f;
  font-weight: 600;
}

/*
 * CALENDAR
 *
 */
.calendarSidebar .calendarSidebarLink {
  margin-left: 15px;
}

.fc-event-container {
  cursor: pointer;
}

/*
 * LOGIN
 *
 */
.loginPage .loginForm .form-control {
  border: 1px solid #94c6f5;
}

.list-unstyled {
  list-style: none;
  padding: 0;
}
.list-unstyled .list-item-styled {
  margin-top: 20px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #001b3f;
  color: #333;
  text-align: center;
}

.full-width-table {
  width: 100%;
}
.full-width-table td {
  padding-top: 5px;
  padding-bottom: 5px;
}
.full-width-table.large-cell td {
  padding: 10px;
}

input {
  border: 1px solid gray !important;
}

textarea {
  border: 1px solid gray !important;
}

.passwordChangeForm label {
  padding-top: 0 !important;
}

.aldryn-forms {
  padding: 15px;
}

/*
 * HOME
 *
 */
.homePage #homeParallax {
  height: 400px;
  margin-bottom: 20px;
}
.homePage #homeParallax .parallaxLayer .text {
  top: 25%;
}
@media (max-width: 767px) {
  .homePage #homeParallax {
    height: 250px;
  }
  .homePage #homeParallax .parallaxLayer .text {
    top: 45%;
    margin: 0;
    font-size: 22px;
  }
}
.homePage .headingNews #video-presentation {
  background-color: rgba(0, 27, 63, 0.88);
  background-size: cover;
}
.homePage .headingNews #video-presentation a, .homePage .headingNews #video-presentation a:hover {
  color: #fff;
}
.homePage .headingNews #video-presentation a {
  display: block;
  height: 250px;
  line-height: 250px;
  text-align: center;
  background-color: rgba(0, 27, 63, 0.88);
}
.homePage .headingNews #video-presentation a .content {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}
.homePage .headingNews #video-presentation a .content span img {
  width: 100%;
  height: 100%;
}
.homePage .headingNews #video-presentation a .content p {
  margin-top: 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}
.homePage .rapidLinks .rapidLinksItem .rapidLinksText {
  margin-top: 5px;
}

/*
 * NEWS
 *
 */
.newsResumeHome .newsResumeHomeImg {
  margin-bottom: 10px;
}
.newsResumeHome .newsResumeHomeTitle {
  margin-bottom: 5px;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  max-width: 100%;
  height: 35.2px; /* Fallback for non-webkit */
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.1;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsResumeHome .newsResumeHomeText {
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  max-width: 100%;
  height: 58.8px; /* Fallback for non-webkit */
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.4;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsResumeHome .newsResumeHomeLink {
  margin-top: 5px;
}

.newsResumeSidebar:before, .newsResumeSidebar:after {
  content: " ";
  display: table;
}
.newsResumeSidebar:after {
  clear: both;
}
.newsResumeSidebar .newsResumeSidebarImg {
  margin-right: 10px;
  height: 75px;
  width: 75px;
  float: left;
}
@media (max-width: 991px) {
  .newsResumeSidebar .newsResumeSidebarImg {
    float: none !important;
    width: 100%;
    margin: 0 auto 5px;
  }
}
.newsResumeSidebar .newsResumeSidebarTitle {
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  max-width: 100%;
  height: 39.6px; /* Fallback for non-webkit */
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.1;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsResumeSidebar .newsResumeSidebarText {
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  max-width: 100%;
  height: 39.2px; /* Fallback for non-webkit */
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsResumeSidebar .newsResumeSidebarDate {
  margin: 0;
}
.newsResumeSidebar .newsResumeSidebarLink {
  margin-top: 5px;
}

.newsMore .btn {
  width: 100%;
  margin: 0 0 5px;
}

.newsShare ul {
  margin: 0;
}
.newsShare ul > li a {
  display: block;
  padding: 10px;
  width: 50px;
  height: 50px;
  border: 1px solid #001b3f;
  color: #001b3f;
  text-align: center;
}
.newsShare ul > li a:hover {
  background-color: #054581;
  border-color: #054581;
  color: #fff;
}
.newsShare ul > li a:hover.twitter {
  background-color: #33CCFF;
  border-color: #33CCFF;
}
.newsShare ul > li a:hover.linkedin {
  background-color: #0077B5;
  border-color: #0077B5;
}
.newsShare ul > li a:hover.facebook {
  background-color: #3B5998;
  border-color: #3B5998;
}
.newsShare ul > li a:hover.google-plus {
  background-color: #DD4B39;
  border-color: #DD4B39;
}
.newsShare ul > li a:hover.mail {
  background-color: #e5be2f;
  border-color: #e5be2f;
}

.news_listPage .newsResume,
.newsPage .newsResume {
  height: 320px;
}
.news_listPage .newsResume .newsResumeHeader .newsResumeImg,
.newsPage .newsResume .newsResumeHeader .newsResumeImg {
  height: 120px;
  margin: -16px -12px 12px;
  background-size: cover;
  background-position: center;
}
.news_listPage .newsResume .newsResumeHeader .newsResumeTitle,
.newsPage .newsResume .newsResumeHeader .newsResumeTitle {
  text-transform: uppercase;
}
.news_listPage .newsResume .newsResumeText,
.newsPage .newsResume .newsResumeText {
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  max-width: 100%;
  height: 39.2px; /* Fallback for non-webkit */
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .news_listPage .newsResume .newsResumeText,
  .newsPage .newsResume .newsResumeText {
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    max-width: 100%;
    height: 78.4px; /* Fallback for non-webkit */
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.news_listPage .newsResume .newsResumeFooter,
.newsPage .newsResume .newsResumeFooter {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .news_listPage .newsResume .newsResumeFooter,
  .newsPage .newsResume .newsResumeFooter {
    margin-top: 12px;
  }
}
.news_listPage .newsResume .newsResumeFooter .newsResumeDate,
.news_listPage .newsResume .newsResumeFooter .newsResumeCategory,
.newsPage .newsResume .newsResumeFooter .newsResumeDate,
.newsPage .newsResume .newsResumeFooter .newsResumeCategory {
  font-size: 0.8em;
  color: rgba(62, 62, 62, 0.5);
}
.news_listPage .newsResume .newsResumeFooter .newsResumeDate a,
.news_listPage .newsResume .newsResumeFooter .newsResumeCategory a,
.newsPage .newsResume .newsResumeFooter .newsResumeDate a,
.newsPage .newsResume .newsResumeFooter .newsResumeCategory a {
  color: inherit;
}
.news_listPage .newsResume .newsResumeFooter .newsResumeDate a:hover, .news_listPage .newsResume .newsResumeFooter .newsResumeDate a:focus,
.news_listPage .newsResume .newsResumeFooter .newsResumeCategory a:hover,
.news_listPage .newsResume .newsResumeFooter .newsResumeCategory a:focus,
.newsPage .newsResume .newsResumeFooter .newsResumeDate a:hover,
.newsPage .newsResume .newsResumeFooter .newsResumeDate a:focus,
.newsPage .newsResume .newsResumeFooter .newsResumeCategory a:hover,
.newsPage .newsResume .newsResumeFooter .newsResumeCategory a:focus {
  text-decoration: underline;
}
.news_listPage .newsResume .newsResumeFooter .newsResumeLink,
.newsPage .newsResume .newsResumeFooter .newsResumeLink {
  margin-top: 5px;
}
.news_listPage .newsResumeUne .newsResumeImg,
.newsPage .newsResumeUne .newsResumeImg {
  height: 320px;
  margin: 0;
  position: relative;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .news_listPage .newsResumeUne .newsResumeImg,
  .newsPage .newsResumeUne .newsResumeImg {
    height: 120px;
    margin: 0;
  }
}
.news_listPage .newsResumeUne .newsResumeImg .newsResumeImgLabel,
.newsPage .newsResumeUne .newsResumeImg .newsResumeImgLabel {
  position: absolute;
  bottom: 30px;
  padding: 5px 20px;
  text-transform: uppercase;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  background-color: rgba(0, 27, 63, 0.88);
}
.news_listPage .newsResumeUne .newsResumeFooter .newsResumeLink,
.newsPage .newsResumeUne .newsResumeFooter .newsResumeLink {
  margin-top: 0;
}
@media (min-width: 768px) {
  .news_listPage .newsResumeUne .newsResumeText,
  .newsPage .newsResumeUne .newsResumeText {
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    max-width: 100%;
    height: 176.4px; /* Fallback for non-webkit */
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.4;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 175px;
  }
  .news_listPage .newsResumeUne .newsResumeFooter,
  .newsPage .newsResumeUne .newsResumeFooter {
    line-height: 32px;
    margin-top: 1px;
  }
  .news_listPage .newsResumeUne .newsResumeFooter .newsResumeDate::before,
  .newsPage .newsResumeUne .newsResumeFooter .newsResumeDate::before {
    content: "posté ";
  }
  .news_listPage .newsResumeUne .newsResumeFooter .newsResumeDate::after,
  .newsPage .newsResumeUne .newsResumeFooter .newsResumeDate::after {
    content: " |";
  }
  .news_listPage .newsResumeUne .newsResumeFooter .newsResumeLink,
  .newsPage .newsResumeUne .newsResumeFooter .newsResumeLink {
    float: left;
    margin-right: 10px;
  }
}
@media (min-width: 992px) {
  .news_listPage .newsResumeUne .newsResumeText,
  .newsPage .newsResumeUne .newsResumeText {
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    max-width: 100%;
    height: 196px; /* Fallback for non-webkit */
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.4;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 194px;
  }
  .news_listPage .newsResumeUne .newsResumeFooter,
  .newsPage .newsResumeUne .newsResumeFooter {
    margin-top: 16px;
  }
}

.newsPage .news .newsImg {
  height: 250px;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .newsPage .news .newsImg {
    float: left;
    width: 40%;
    margin: 0 25px 10px 0;
  }
}
@media (min-width: 768px) {
  .newsPage .news .newsContent .newsHeader {
    margin-left: calc(40% + 12px);
  }
}
.newsPage .news .newsContent .newsInfos {
  margin-top: -5px;
  margin-bottom: 20px;
  font-size: 0.8em;
  color: rgba(62, 62, 62, 0.5);
}
.newsPage .news .newsContent .newsInfos a {
  color: inherit;
}
.newsPage .news .newsContent .newsInfos a:hover, .newsPage .news .newsContent .newsInfos a:focus {
  text-decoration: underline;
}
.newsPage .news .newsContent .newsInfos .newsDate,
.newsPage .news .newsContent .newsInfos .newsCategory {
  color: inherit;
}
.newsPage .news .newsContent .newsInfos .newsDate::after {
  content: " |";
}
.newsPage .news .newsContent .newsText {
  margin-bottom: 30px;
}
.newsPage .news .newsContent .newsFooter .newsFooterTitle {
  text-transform: uppercase;
}

/*
 * MAGAZINE
 *
 */
.magazineSidebar .magazineSidebarImg {
  width: 30%;
  height: auto;
  margin-right: 10px;
}
.magazineSidebar .magazineSidebarTitle {
  margin-top: 0;
}
.magazineSidebar .magazineSidebarLink {
  color: inherit;
  font-family: "Roboto Condensed", sans-serif;
}
.magazineSidebar .magazineSidebarLink .fa {
  font-size: 1.2em;
  margin-right: 5px;
}

/*
 * EXTRANET
 *
 */
.extranetPage {
  min-height: calc(100vh - 520px);
}
.extranetPage #parallaxExtranet {
  height: 350px;
}
.extranetPage #parallaxExtranet .parallaxLayer .text {
  color: #001b3f;
  font-weight: 100;
  text-shadow: 0 0 3px white;
  top: 45%;
}
@media (min-width: 992px) {
  .extranetPage .extranetPanel:not(.extranetPanelSmall) {
    min-height: 190px;
  }
}
.extranetPage .extranetPanel .extranetPanelHeading .extranetPanelTitle {
  text-align: center;
}
.extranetPage .extranetPanel .extranetPanelHeading::after {
  content: none;
}
.extranetPage .extranetPanel .extranetPanelBody {
  padding-left: 0;
  padding-right: 0;
}
.extranetPage .extranetPanel .extranetPanelBody .item > div {
  margin-top: 5px;
  margin-bottom: 5px;
}
.extranetPage .extranetPanel .extranetPanelBody .item .itemImg {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.extranetPage .extranetPanel .extranetPanelBody .item .itemTitle {
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  max-width: 100%;
  height: 39.6px; /* Fallback for non-webkit */
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.1;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 64px;
  line-height: 64px;
}
.extranetPage .extranetPanel .extranetPanelBody .item:hover .itemImg {
  transform: scale(1);
}
.extranetPage .extranetPanel .extranetPanelBody .formation-extranet-img img {
  max-width: 100% !important;
}
.extranetPage .extranetPanel .extranetPanelBody .vertical-separator::after {
  width: 2px;
  height: 80%;
  top: 10%;
}
.extranetPage .extranetPanelSmall .extranetPanelTitle {
  line-height: 36px;
}

.technicalTools {
  background-color: #c1d6ea;
}
.technicalTools .vertical-separator::after {
  background-color: #9bbddd;
}

.workspaces {
  background-color: #d3c1ea;
}
.workspaces .vertical-separator::after {
  background-color: #b89bdd;
}

.docs {
  background-color: #ead6c1;
}
.docs .vertical-separator::after {
  background-color: #ddbd9b;
}

.directory {
  background-color: #c0d4b3;
}
.directory .vertical-separator::after {
  background-color: #a5c292;
}

.shop {
  background-color: #eae4c1;
}
.shop .vertical-separator::after {
  background-color: #ddd39b;
}

.ads {
  background-color: #e8c9c9;
}
.ads .vertical-separator::after {
  background-color: #d9a5a5;
}

.formation-extranet {
  background-color: #9D7FB9;
}

/*
 * EDUCATION
 *
 */
.educationPage .educationIntro {
  margin-bottom: 0;
}
.educationPage .educationIntro .educationIntroTitle img {
  width: auto;
  height: 100px;
  margin: 0 0 10px 15px;
}
.educationPage .educationMenuBg {
  position: relative;
  height: 640px;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .educationPage .educationMenuBg {
    height: 820px;
  }
}
.educationPage .educationMenuBg .educationMenu {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.educationPage .educationMenuBg .educationMenu .panel-body {
  margin-top: 10px;
}
.educationPage .educationMenuBg .educationMenu .educationMenuItem {
  display: block;
  padding: 15px 0;
  margin-bottom: 30px;
  height: 155px;
  text-align: center;
  background-color: #2e6eae;
}
.educationPage .educationMenuBg .educationMenu .educationMenuItem .educationMenuItemImg {
  width: 30%;
  height: auto;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0.25s;
}
.educationPage .educationMenuBg .educationMenu .educationMenuItem .educationMenuItemTitle {
  margin-bottom: 0;
  font-size: 15px;
  color: #fff;
  font-weight: 300;
}
.educationPage .educationMenuBg .educationMenu .educationMenuItem:hover .educationMenuItemImg {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

@media (max-width: 767px) {
  .educationPage .educationMenuBg {
    height: 1460px;
  }
  .educationPage .educationMenuBg .educationMenu .educationMenuItem {
    height: 85px;
    padding: 15px;
    font-size: 0;
  }
  .educationPage .educationMenuBg .educationMenu .educationMenuItem .educationMenuItemImg {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    height: 60px;
  }
  .educationPage .educationMenuBg .educationMenu .educationMenuItem .educationMenuItemTitle {
    display: inline-block;
    vertical-align: middle;
    width: 80%;
    font-size: 15px;
    margin: 0;
  }
}
.communication:hover {
  background-color: #3498db !important;
}

.time:hover {
  background-color: #2ecc71 !important;
}

.social:hover {
  background-color: #9b59b6 !important;
}

.legal:hover {
  background-color: #e67e22 !important;
}

.quality:hover {
  background-color: #3498db !important;
}

.earth:hover {
  background-color: #9b59b6 !important;
}

.skiResort:hover {
  background-color: #9b59b6 !important;
}

.shield:hover {
  background-color: #3498db !important;
}

.drive:hover {
  background-color: #e74c3c !important;
}

.ski:hover {
  background-color: #2ecc71 !important;
}

.screen:hover {
  background-color: #e67e22 !important;
}

.graduate:hover {
  background-color: #e74c3c !important;
}

/*
 * PRESSE
 *
 */
.pressePage .presseContact .presseContactHeader .presseContactTitle img {
  width: auto;
  height: auto;
  max-height: 50px;
}
.pressePage .presseContact .presseContactFooter .itemInfo {
  margin-bottom: 10px;
}
.pressePage .presseContact .presseContactFooter .itemInfo .itemInfoImg {
  height: 58px;
  line-height: 58px;
}
.pressePage .presseContact .presseContactFooter .itemInfo .itemInfoData {
  height: 58px;
}
.pressePage .presseContact .presseContactFooter .itemInfo .itemInfoData .itemInfoTitle {
  margin: 0;
}
.pressePage .presseContact .presseContactFooter .itemInfo .itemInfoData .itemInfoText {
  margin: 0;
}
.pressePage .presseContact .presseContactFooter .vertical-separator::after {
  width: 2px;
  background-color: #94c6f5;
}

/*
 * SEARCH
 *
 */
.fitlerSearch {
  padding-left: 15px;
}
.searchPage .searchTab {
  margin-bottom: 10px;
}
.searchPage .searchResults .searchTabHeader::after {
  content: none;
}
.searchPage .searchResults .searchTabHeader .searchTabTitle .bold {
  font-weight: 600;
  font-family: "Roboto Condensed", sans-serif;
}
.searchPage .searchResults .searchResult {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #e2e2e2;
}
.searchPage .searchResults .searchResult:first-child {
  margin-top: 0;
}
.searchPage .searchResults .searchResult:last-child {
  margin-bottom: 30px;
}
.searchPage .searchResults .searchResult .searchResultHeader .searchResultTitle {
  margin: 0;
  font-size: 18px;
}
.searchPage .searchResults .searchResult .searchResultHeader .searchResultSubtitle {
  margin-top: 5px;
  font-size: 16px;
  color: #3e3e3e;
}
.searchPage .searchResults .searchResult .searchResultBody .searchResultLink {
  margin-bottom: 5px;
}

.descpadd {
  padding-top: 10px;
  margin-bottom: 15px;
}

.small_fs {
  font-size: 12px;
}

/*
 * DOCUMENT
 *
 */
.documentsPage .documentsResume {
  height: 275px;
}

.documentsPage #navYears > ul,
.documentsArchivePage #navYears > ul {
  list-style: none;
  padding: 0;
}
@media (max-width: 767px) {
  .documentsPage #navYears > ul,
  .documentsArchivePage #navYears > ul {
    padding: 0 15px;
  }
}
.documentsPage #navYears > ul > li,
.documentsArchivePage #navYears > ul > li {
  display: inline;
}
.documentsPage #navYears > ul > li a,
.documentsArchivePage #navYears > ul > li a {
  margin: 0 5px 5px 0;
}
.documentsPage .sectionYear:before, .documentsPage .sectionYear:after,
.documentsArchivePage .sectionYear:before,
.documentsArchivePage .sectionYear:after {
  content: " ";
  display: table;
}
.documentsPage .sectionYear:after,
.documentsArchivePage .sectionYear:after {
  clear: both;
}
.documentsPage .documentsResume .documentsResumeHeader .documentsResumeImg,
.documentsArchivePage .documentsResume .documentsResumeHeader .documentsResumeImg {
  height: 180px;
  margin: -16px -12px 12px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.documentsPage .documentsResume .documentsResumeHeader .documentsResumeImg img,
.documentsArchivePage .documentsResume .documentsResumeHeader .documentsResumeImg img {
  position: absolute;
  margin: 0 auto;
  padding: 5px 0;
  left: 0;
  right: 0;
  height: 100%;
  width: auto;
}
.documentsPage .documentsResume .documentsResumeHeader .documentsResumeTitle,
.documentsArchivePage .documentsResume .documentsResumeHeader .documentsResumeTitle {
  text-transform: uppercase;
}
.documentsPage .documentsResume .documentsResumeText,
.documentsArchivePage .documentsResume .documentsResumeText {
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  max-width: 100%;
  height: 58.8px; /* Fallback for non-webkit */
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.4;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .documentsPage .documentsResume .documentsResumeText,
  .documentsArchivePage .documentsResume .documentsResumeText {
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    max-width: 100%;
    height: 78.4px; /* Fallback for non-webkit */
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.documentsPage .documentsResume .documentsResumeFooter,
.documentsArchivePage .documentsResume .documentsResumeFooter {
  margin-top: 12px;
  margin-bottom: 12px;
}
.documentsPage .documentsResume .documentsResumeFooter .documentsResumeDate,
.documentsPage .documentsResume .documentsResumeFooter .documentsResumeCategory,
.documentsArchivePage .documentsResume .documentsResumeFooter .documentsResumeDate,
.documentsArchivePage .documentsResume .documentsResumeFooter .documentsResumeCategory {
  font-size: 0.8em;
  color: rgba(62, 62, 62, 0.5);
}
.documentsPage .documentsResume .documentsResumeFooter .documentsResumeDate a,
.documentsPage .documentsResume .documentsResumeFooter .documentsResumeCategory a,
.documentsArchivePage .documentsResume .documentsResumeFooter .documentsResumeDate a,
.documentsArchivePage .documentsResume .documentsResumeFooter .documentsResumeCategory a {
  color: inherit;
}
.documentsPage .documentsResume .documentsResumeFooter .documentsResumeDate a:hover, .documentsPage .documentsResume .documentsResumeFooter .documentsResumeDate a:focus,
.documentsPage .documentsResume .documentsResumeFooter .documentsResumeCategory a:hover,
.documentsPage .documentsResume .documentsResumeFooter .documentsResumeCategory a:focus,
.documentsArchivePage .documentsResume .documentsResumeFooter .documentsResumeDate a:hover,
.documentsArchivePage .documentsResume .documentsResumeFooter .documentsResumeDate a:focus,
.documentsArchivePage .documentsResume .documentsResumeFooter .documentsResumeCategory a:hover,
.documentsArchivePage .documentsResume .documentsResumeFooter .documentsResumeCategory a:focus {
  text-decoration: underline;
}
.documentsPage .documentsResume .documentsResumeFooter .documentsResumeLink,
.documentsArchivePage .documentsResume .documentsResumeFooter .documentsResumeLink {
  margin-top: 5px;
}

.documentDetailsPage .documentDetails .documentDetailsImg,
.documentDetailsOnlinePage .documentDetails .documentDetailsImg {
  height: 300px;
  background-size: cover;
  background-position: top;
}
@media (min-width: 768px) {
  .documentDetailsPage .documentDetails .documentDetailsImg,
  .documentDetailsOnlinePage .documentDetails .documentDetailsImg {
    float: left;
    width: 40%;
    margin: 12px 25px 10px 12px;
  }
}
@media (min-width: 768px) {
  .documentDetailsPage .documentDetails .documentDetailsInfos .documentDetailsHeader,
  .documentDetailsOnlinePage .documentDetails .documentDetailsInfos .documentDetailsHeader {
    margin-left: 40%;
    margin-left: calc(40% + 24px);
  }
}
.documentDetailsPage .documentDetails .documentDetailsInfos .documentDetailsInfo,
.documentDetailsOnlinePage .documentDetails .documentDetailsInfos .documentDetailsInfo {
  margin-bottom: 10px;
}
.documentDetailsPage .documentDetails .documentDetailsInfos .documentDetailsInfo dt, .documentDetailsPage .documentDetails .documentDetailsInfos .documentDetailsInfo dd,
.documentDetailsOnlinePage .documentDetails .documentDetailsInfos .documentDetailsInfo dt,
.documentDetailsOnlinePage .documentDetails .documentDetailsInfos .documentDetailsInfo dd {
  display: inline;
}
.documentDetailsPage .documentDetails .documentDetailsInfos .documentDetailsInfo dt,
.documentDetailsOnlinePage .documentDetails .documentDetailsInfos .documentDetailsInfo dt {
  font-weight: bold;
}
.documentDetailsPage .documentDetails .documentDetailsInfos .documentDetailsInfo .documentDetailsInfoLink,
.documentDetailsOnlinePage .documentDetails .documentDetailsInfos .documentDetailsInfo .documentDetailsInfoLink {
  margin: 0;
  padding: 0;
}
.documentDetailsPage .documentDetails .documentDetailsContent .documentDetailsText a,
.documentDetailsOnlinePage .documentDetails .documentDetailsContent .documentDetailsText a {
  text-decoration: underline;
}

.btn-group-space-active {
  border: none;
  background-color: white;
  z-index: 9999;
  padding: 11px 17px;
  font-size: 17px;
  color: #2e6eae;
  text-decoration: none !important;
}
.btn-group-space-active:hover {
  border: none;
  background-color: white;
  z-index: 9999;
  padding: 11px 17px;
  font-size: 17px;
  color: #2e6eae;
  text-decoration: none !important;
}

.btn-group-space-not-active {
  margin-top: 12px;
  text-decoration: none !important;
}
.btn-group-space-not-active:hover {
  background-color: white;
  color: #2e6eae;
}

.btn-menu-video-category {
  background-color: white;
  color: #2e6eae;
  border: 2px solid #2e6eae;
}

.btn-menu-video-category-active {
  background-color: #2e6eae;
  color: white;
}

.documentsResumeVideo {
  height: 320px;
}

.contact-page {
  padding-bottom: 40px;
}
.contact-page #map {
  width: 100%;
  height: 430px;
}
.contact-page .contact-info {
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  margin: 35px 0;
  position: relative;
}
.contact-page .contact-info .separator-content {
  width: 150px;
  max-width: 45%;
  border-bottom: 2px solid #94c6f5;
  border-top: none;
  padding-top: 40px;
}
.contact-page .contact-info i.fa {
  display: block;
  color: #fff;
  margin: 20px auto;
  font-size: 40px;
  background-color: #2e6eae;
  border-radius: 100%;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 80px;
  height: 80px;
  line-height: 2;
}
.contact-page .contact-info i.fa:hover {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.contact-page .contact-form {
  border: 1px solid #2e6eae;
  padding: 20px;
  min-height: 430px;
}
@media (max-width: 767px) {
  .contact-page .contact-form {
    margin-bottom: 20px;
  }
}
.contact-page .contact-form input, .contact-page .contact-form select, .contact-page .contact-form textarea {
  background: #e2e2e2;
  padding: 10px;
  height: auto;
}
.contact-page .contact-form .checkbox label {
  display: inline !important;
}
.contact-page .contact-form h5 {
  text-align: center;
  font-size: 25px;
  margin-bottom: 20px;
  position: relative;
}
.contact-page .contact-form h5:after {
  content: "";
  display: block;
  width: 150px;
  max-width: 45%;
  height: 2px;
  background-color: #94c6f5;
  margin: 20px auto;
}
.contact-page .contact-form .btn-default {
  display: block;
  margin: auto;
}

.modal-dialog {
  height: 90%;
}
@media screen and (min-width: 767px) {
  .modal-dialog {
    width: 80%;
  }
}
.modal-dialog .modal-content {
  height: 100%;
  overflow: scroll;
}
.modal-dialog .modal-content .modal-body {
  height: 90%;
}

.user-info-label {
  display: inline-block;
}

.user-info-content {
  text-decoration: underline;
  display: inline-block;
}

.map-infowindow-link {
  text-decoration: underline;
  font-weight: 500;
  font-size: 15px;
}

/*
 * Formation
 *
 */
.formation-home {
  float: left;
  margin-bottom: 10px;
}
.formation-home span {
  max-width: calc(100% - 160px);
  font-size: 14px;
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.formation-home img {
  max-width: calc(100% - 205px);
  text-align: center;
  display: inline-block;
}

.zone-montagne-btn {
  border: 4px solid #9d7fb9;
}
.zone-montagne-btn span {
  color: #9d7fb9;
}

.formateur-btn {
  border: 4px solid #fdc542;
}
.formateur-btn span {
  color: #fdc542;
}

.management-btn {
  border: 4px solid #7ebb46;
}
.management-btn span {
  color: #7ebb46;
}

.operateur-btn {
  border: 4px solid #e72e4c;
}
.operateur-btn span {
  color: #e72e4c;
}

.client-btn {
  border: 4px solid #f086aa;
}
.client-btn span {
  color: #f086aa;
}

.rh-btn {
  border: 4px solid #f28d32;
}
.rh-btn span {
  color: #f28d32;
}

.securite-btn {
  border: 4px solid #439f36;
}
.securite-btn span {
  color: #439f36;
}

.teleski-btn {
  border: 4px solid #73c4ef;
}
.teleski-btn span {
  color: #73c4ef;
}

.pisteur-btn {
  border: 4px solid #000;
}
.pisteur-btn span {
  color: #000;
}

.header-essentiel, .essentiel {
  font-family: Calibri, Arial;
}

.header-essentiel {
  padding: 10px 30px 50px;
  background: black;
  margin-top: 0 !important;
  display: flex;
  flex-direction: column;
  text-align: center;
  background-image: url("../images/bg-dsf-essentiel.png");
}
.header-essentiel .socials {
  text-transform: uppercase;
  font-weight: 600;
  text-align: right;
  width: 50%;
  right: 0;
  position: absolute;
}
.header-essentiel .socials span, .header-essentiel .socials a {
  color: #51BDCC;
}
.header-essentiel .socials span {
  padding-right: 10px;
}
.header-essentiel .socials i {
  font-size: 20px;
  padding-right: 10px;
}
@media (max-width: 768px) {
  .header-essentiel .socials {
    width: 100%;
    top: 25px;
  }
}
.header-essentiel .logo {
  width: 100%;
  display: block;
  margin: 20px auto;
  max-width: 200px;
}
.header-essentiel .home-link {
  color: white;
  text-decoration: underline;
  text-align: left;
}
.header-essentiel h1, .header-essentiel h2 {
  color: white;
  font-weight: 600;
  font-family: Calibri, Arial;
}
.header-essentiel h1:after {
  width: 200px;
  height: 4px;
  background-color: #51BDCC;
  content: "";
  display: block;
  margin: 20px auto 0;
}

.essentiel h3 {
  background-color: #51BDCC;
  color: white;
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: Calibri, Arial;
  margin-bottom: 20px;
}
.essentiel h4 {
  color: black;
  text-transform: uppercase;
  font-weight: 600;
  font-family: Calibri, Arial;
  font-size: 14px;
  margin-bottom: 20px;
}
.essentiel h4 span {
  display: flex;
  color: black;
  text-transform: uppercase;
  font-weight: 600;
  font-family: Calibri, Arial;
  margin-top: -12px;
  align-self: center;
  padding-left: 10px;
}
.essentiel .arrow {
  max-width: 20px;
  position: absolute;
}
.essentiel .arrow path {
  fill: #51BDCC;
}
.essentiel section {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.essentiel section.social:hover {
  background-color: transparent !important;
}
.essentiel section h4.colors.social {
  background-color: transparent !important;
}
.essentiel section article {
  width: calc(100% - 15px);
  position: relative;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .essentiel section article {
    margin-bottom: 30px;
  }
}
.essentiel section article h4 {
  font-size: 20px;
  position: relative;
}
.essentiel section article h4:before {
  display: block;
  width: 20px;
  height: 20px;
  content: " ";
  position: absolute;
  left: -30px;
  transform: rotate(45deg);
}
.essentiel section article .cont-img {
  display: flex;
  width: 45%;
  max-height: 250px;
  position: absolute;
  overflow: hidden;
}
@media (max-width: 768px) {
  .essentiel section article .cont-img {
    position: relative;
    width: 100%;
    margin: auto;
  }
}
.essentiel section article .cont-img.pre {
  right: 0;
}
.essentiel section article .cont-img img {
  width: 100%;
  z-index: 0;
  border-left: 10px solid;
  object-fit: cover;
}
.essentiel section article .cont-img img.img-press {
  border-left: none;
  border-right: 10px solid;
}
.essentiel section article .article-block {
  padding: 20px;
  background: #eee;
  width: 60%;
  z-index: 8;
  float: right;
  opacity: 0.99;
}
@media (max-width: 768px) {
  .essentiel section article .article-block {
    position: relative;
    width: 95%;
    left: auto;
    top: auto;
    float: right;
    margin: 10px 0px 10px 15px;
  }
}
.essentiel section article .article-block-fixed {
  width: 44%;
  margin-left: 30px;
  position: relative;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .essentiel section article .article-block-fixed {
    position: relative;
    width: 100%;
    left: auto;
    top: auto;
    float: left;
    margin: 10px 0px 10px 15px;
  }
}
.essentiel section article .article-block-fixed .btn-seemore {
  bottom: 20px;
  position: absolute;
  right: 20px;
}
.essentiel section article .article-block-fixed .date-article {
  bottom: 20px;
  position: absolute;
  left: 20px;
}
.essentiel section article .article-block-fixed.presse h4:after {
  content: " ";
  width: calc(100% + 40px);
  height: 100%;
  display: block;
  position: absolute;
  top: -10px;
  z-index: -1;
  left: -20px;
  padding: 33px;
  background: white;
}
.essentiel section article .article-block p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}
.essentiel section article:nth-child(5n) {
  margin-left: 15px;
}
.essentiel section article:nth-child(odd) .cont-img {
  right: 0;
}
.essentiel section article:nth-child(odd) .cont-img img {
  border-left-color: transparent;
  border-right: 10px solid;
}
.essentiel section article:nth-child(odd) .article-block:not(.article-block-fixed) {
  float: left;
  margin-left: 30px;
}
@media (max-width: 768px) {
  .essentiel section article:nth-child(odd) .article-block:not(.article-block-fixed) {
    left: auto;
  }
}
.essentiel section article .btn-seemore {
  background: #51BDCC;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  float: right;
  font-size: 16px;
}
.essentiel section article .btn-seemore:hover {
  background: #35a5b5;
  cursor: pointer;
}
.essentiel section article .picto {
  max-width: 60px;
  margin: 0;
  float: left;
  margin-top: -12px;
  background: transparent;
}
.essentiel section article .picto svg {
  max-width: 40px;
  margin: auto;
  display: block;
}
.essentiel section article .picto h5 {
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  color: white;
  margin: 0px auto 5px;
  font-size: 16px;
}
.essentiel section article.article-presse:not(.anchor) {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .essentiel section article.article-presse:not(.anchor) {
    flex-wrap: wrap;
    margin-left: 15px;
  }
}
.essentiel section article.article-presse:not(.anchor) h4 {
  padding: 15px 0;
  display: flex;
}
.essentiel section h3 {
  display: block;
  width: 100%;
}
.essentiel section div {
  width: calc(33% - 20px);
  justify-content: center;
  background: #eee;
  margin: 10px;
}
@media (max-width: 768px) {
  .essentiel section div {
    width: calc(50% - 20px);
  }
}
@media (max-width: 440px) {
  .essentiel section div {
    width: calc(100% - 20px);
  }
}
.essentiel section div.anchor {
  width: 100%;
  justify-content: space-around;
}
.essentiel section .press, .essentiel section .no-press {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 10px;
}
.essentiel section .press li, .essentiel section .no-press li {
  list-style-type: none;
  padding: 10px;
}
.essentiel section .press li a, .essentiel section .no-press li a {
  color: black;
  text-decoration: underline;
  position: relative;
  display: block;
  margin-bottom: 10px;
  line-height: 1.3;
  font-size: 13px;
}
.essentiel section .press li a span, .essentiel section .no-press li a span {
  display: inline-block;
  margin-left: 35px;
  text-decoration: underline;
}
.essentiel section .press li a span:hover, .essentiel section .no-press li a span:hover {
  color: #51BDCC;
}
.essentiel section .press img, .essentiel section .no-press img {
  padding-left: 15px;
  max-width: 40px;
}
.essentiel section .press li {
  position: relative;
}
.essentiel section .press li a span {
  margin-left: 15px;
  color: grey;
  font-style: italic;
}
.essentiel section .press li .press-picto-mot {
  font-size: 9px;
  font-weight: 600;
  position: absolute;
  left: 6px;
  bottom: 0;
}
.essentiel section.actu_une .cont-img img {
  border: none;
}
.essentiel section.actu_une :nth-child(odd) .cont-img img {
  border: none;
}
.essentiel .categorie-full h2 {
  color: white;
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: Calibri, Arial;
  font-size: 24px;
  width: 100%;
  margin-bottom: 20px;
}
.essentiel .categorie-full.social:hover {
  background-color: transparent !important;
}
.essentiel .categorie-full h4.colors.social {
  background-color: transparent !important;
}
.essentiel .nos-outils {
  display: flex;
  flex-direction: row;
  padding-left: 0;
  width: 100%;
  flex-wrap: wrap;
}
.essentiel .nos-outils li {
  background-color: #2d648e;
  list-style: none;
  display: flex;
  flex-grow: 1;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  padding: 40px 0;
  margin: 10px;
  padding: 5px;
  flex-direction: column;
  width: calc(16.6666666667% - 20px);
}
@media (max-width: 991px) {
  .essentiel .nos-outils li {
    width: calc(33.3333333333% - 20px);
  }
}
@media (max-width: 768px) {
  .essentiel .nos-outils li {
    width: calc(50% - 20px);
  }
}
.essentiel .nos-outils li:hover {
  background-color: #27567b;
  cursor: pointer;
  transition: 500ms background;
}
.essentiel .nos-outils li img {
  display: block;
  max-width: 100px;
  margin: auto;
  padding: 20px;
}
.essentiel .nos-outils li img.arrow-down {
  padding-bottom: 0;
}
.essentiel .nos-outils li a {
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.essentiel .date-article {
  font-weight: 600;
  color: #333;
  font-size: 15px;
}

#footerHeadImg img {
  width: 100vw;
}

footer#essentialFooter {
  background: url("../images/bg-dsf-essentiel.png");
  color: white;
  padding: 35px 0;
}
footer#essentialFooter .panel {
  background: transparent;
  color: white;
}
footer#essentialFooter .panel .panel-title, footer#essentialFooter .panel .panel-body > p {
  color: white;
}
footer#essentialFooter .panel-title {
  font-weight: 600;
  text-transform: uppercase;
}
footer#essentialFooter .panel-default .panel-heading::after {
  background-color: #51BDCC;
  height: 5px;
}
footer#essentialFooter .particulars p {
  margin: 0 0 2px;
}
footer#essentialFooter .sitemap .nav > li > a {
  color: white;
  text-transform: uppercase;
  font-weight: 600;
}
footer#essentialFooter .sitemap .nav > li > a:hover {
  background: transparent;
  color: #aaa;
}
footer#essentialFooter .sitemap .logo {
  width: 100%;
  height: auto;
}
footer#essentialFooter .socials {
  padding: 0 15px;
  position: static;
  line-height: 47px;
  color: #2e6eae;
  text-align: left;
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
  width: 50%;
  right: 0;
}
footer#essentialFooter .socials span {
  color: #2e6eae;
}
footer#essentialFooter .socials i.fa {
  font-size: 20px;
  padding: 5px;
  position: relative;
  top: 2px;
}
footer#essentialFooter .socials span, footer#essentialFooter .socials a {
  color: #51BDCC;
}
footer#essentialFooter .socials span {
  padding-right: 10px;
}
footer#essentialFooter .socials i {
  font-size: 20px;
  padding-right: 10px;
}
@media (max-width: 768px) {
  footer#essentialFooter .socials {
    width: 100%;
  }
}
footer#essentialFooter p.copyright {
  padding: 10px 15px;
  font-size: 12px;
  font-family: "Roboto Condensed", sans-serif;
  color: #969696;
}
footer#essentialFooter p.copyright a {
  color: inherit;
  font-family: inherit;
}

#footerHeadImg {
  display: none;
}

#essentiel-top {
  position: fixed;
  background: #51BDCC;
  color: white;
  right: 15px;
  padding: 5px 15px;
  display: none;
  bottom: 10px;
  font-size: 12px;
  cursor: pointer;
}
#essentiel-top:before {
  width: 20px;
  content: " ";
  background: #51BDCC;
  height: 20px;
  display: block;
  position: absolute;
  top: -10px;
  transform: rotate(45deg);
  z-index: -1;
  left: 45%;
}
@media (max-width: 768px) {
  #essentiel-top {
    display: block;
  }
}

.essential_all .item ul .item_essential {
  display: block;
  float: left;
}
.essential_all .item ul .item_essential ul {
  background: #eee;
  padding: 15px;
}
.essential_all .item ul .item_essential ul li {
  list-style-type: none;
  padding: 5px;
}
.essential_all .item ul .item_essential ul li:before {
  content: "";
  width: 20px;
  height: 20px;
  background-size: cover;
  background-image: url(/static/images/essentiel/arrow-right.png);
  display: inline-block;
  position: relative;
  margin-bottom: -5px;
  margin-right: 5px;
}
.essential_all .item ul .item_essential h2 {
  background: #054581;
  color: white;
  border-left: 10px solid #51BDCC;
  text-transform: uppercase;
  margin-bottom: 0;
  text-align: center;
  padding: 15px;
  font-size: 18px;
}
.essential_all h3.slider-essential {
  padding: 0;
}
.essential_all .slider-essential span {
  color: white;
  padding: 20px;
}
.essential_all .slider-essential .slick-slide:not(.slick-current) {
  opacity: 0.8;
  font-size: 16px;
  margin-top: 5px;
}
.essential_all .slick-slide {
  margin: 0 27px;
  cursor: pointer;
}
.essential_all .slick-slide:focus {
  outline: none;
}
.essential_all .slick-list {
  margin: 0 -27px;
}
.essential_all .slick-prev, .essential_all .slick-next:not(.slick-disabled) {
  background: #51BDCC;
  z-index: 2;
}
.essential_all .slick-prev:hover:not(.slick-disabled), .essential_all .slick-next:not(.slick-disabled):hover:not(.slick-disabled) {
  background: #35a5b5;
}
.essential_all .slick-prev {
  left: 10px;
}
.essential_all .slick-next {
  right: 10px;
}

.colors.actu_une svg path {
  fill: #51BDCC;
}
.colors.actu_une h2 {
  background: #51BDCC;
}
.colors.actu_une .cont-img img {
  border-left-color: #51BDCC;
}
.colors.actu_une .cont-img img.img-press {
  border-right-color: #51BDCC;
}
.colors.actu_une article .cont-img img {
  border-right-color: #51BDCC !important;
}
.colors.actu_une:nth-child(odd) .cont-img img {
  border-right-color: #51BDCC !important;
}
.colors.actu_une:before {
  background: #51BDCC;
}
.colors.actu_une.press li {
  background: white;
  display: flex;
  width: 100%;
  border: 1px solid #eee;
}
.colors.actu_une.press li a {
  display: block;
  float: left;
  width: 80%;
  align-self: center;
  margin-bottom: 0;
}
.colors.actu_une.press li .press-picto {
  fill: #51BDCC;
  max-width: 25px;
  float: left;
}
.colors.actu_une.press li .press-picto-mot {
  color: #51BDCC;
}
.colors.actu_une.press.picto svg {
  fill: #51BDCC;
}
.colors.actu_une.press.picto h5 {
  color: #51BDCC;
}
.colors.actu_une.no-press li a span:hover {
  color: #51BDCC;
}
.colors.juridique_fiscal svg path {
  fill: #F5D041;
}
.colors.juridique_fiscal h2 {
  background: #F5D041;
}
.colors.juridique_fiscal .cont-img img {
  border-left-color: #F5D041;
}
.colors.juridique_fiscal .cont-img img.img-press {
  border-right-color: #F5D041;
}
.colors.juridique_fiscal article .cont-img img {
  border-right-color: #F5D041 !important;
}
.colors.juridique_fiscal:nth-child(odd) .cont-img img {
  border-right-color: #F5D041 !important;
}
.colors.juridique_fiscal:before {
  background: #F5D041;
}
.colors.juridique_fiscal.press li {
  background: white;
  display: flex;
  width: 100%;
  border: 1px solid #eee;
}
.colors.juridique_fiscal.press li a {
  display: block;
  float: left;
  width: 80%;
  align-self: center;
  margin-bottom: 0;
}
.colors.juridique_fiscal.press li .press-picto {
  fill: #F5D041;
  max-width: 25px;
  float: left;
}
.colors.juridique_fiscal.press li .press-picto-mot {
  color: #F5D041;
}
.colors.juridique_fiscal.press.picto svg {
  fill: #F5D041;
}
.colors.juridique_fiscal.press.picto h5 {
  color: #F5D041;
}
.colors.juridique_fiscal.no-press li a span:hover {
  color: #F5D041;
}
.colors.comm_eco svg path {
  fill: #A25EB5;
}
.colors.comm_eco h2 {
  background: #A25EB5;
}
.colors.comm_eco .cont-img img {
  border-left-color: #A25EB5;
}
.colors.comm_eco .cont-img img.img-press {
  border-right-color: #A25EB5;
}
.colors.comm_eco article .cont-img img {
  border-right-color: #A25EB5 !important;
}
.colors.comm_eco:nth-child(odd) .cont-img img {
  border-right-color: #A25EB5 !important;
}
.colors.comm_eco:before {
  background: #A25EB5;
}
.colors.comm_eco.press li {
  background: white;
  display: flex;
  width: 100%;
  border: 1px solid #eee;
}
.colors.comm_eco.press li a {
  display: block;
  float: left;
  width: 80%;
  align-self: center;
  margin-bottom: 0;
}
.colors.comm_eco.press li .press-picto {
  fill: #A25EB5;
  max-width: 25px;
  float: left;
}
.colors.comm_eco.press li .press-picto-mot {
  color: #A25EB5;
}
.colors.comm_eco.press.picto svg {
  fill: #A25EB5;
}
.colors.comm_eco.press.picto h5 {
  color: #A25EB5;
}
.colors.comm_eco.no-press li a span:hover {
  color: #A25EB5;
}
.colors.rm svg path {
  fill: #AD7F66;
}
.colors.rm h2 {
  background: #AD7F66;
}
.colors.rm .cont-img img {
  border-left-color: #AD7F66;
}
.colors.rm .cont-img img.img-press {
  border-right-color: #AD7F66;
}
.colors.rm article .cont-img img {
  border-right-color: #AD7F66 !important;
}
.colors.rm:nth-child(odd) .cont-img img {
  border-right-color: #AD7F66 !important;
}
.colors.rm:before {
  background: #AD7F66;
}
.colors.rm.press li {
  background: white;
  display: flex;
  width: 100%;
  border: 1px solid #eee;
}
.colors.rm.press li a {
  display: block;
  float: left;
  width: 80%;
  align-self: center;
  margin-bottom: 0;
}
.colors.rm.press li .press-picto {
  fill: #AD7F66;
  max-width: 25px;
  float: left;
}
.colors.rm.press li .press-picto-mot {
  color: #AD7F66;
}
.colors.rm.press.picto svg {
  fill: #AD7F66;
}
.colors.rm.press.picto h5 {
  color: #AD7F66;
}
.colors.rm.no-press li a span:hover {
  color: #AD7F66;
}
.colors.sante_securite svg path {
  fill: #FF7F40;
}
.colors.sante_securite h2 {
  background: #FF7F40;
}
.colors.sante_securite .cont-img img {
  border-left-color: #FF7F40;
}
.colors.sante_securite .cont-img img.img-press {
  border-right-color: #FF7F40;
}
.colors.sante_securite article .cont-img img {
  border-right-color: #FF7F40 !important;
}
.colors.sante_securite:nth-child(odd) .cont-img img {
  border-right-color: #FF7F40 !important;
}
.colors.sante_securite:before {
  background: #FF7F40;
}
.colors.sante_securite.press li {
  background: white;
  display: flex;
  width: 100%;
  border: 1px solid #eee;
}
.colors.sante_securite.press li a {
  display: block;
  float: left;
  width: 80%;
  align-self: center;
  margin-bottom: 0;
}
.colors.sante_securite.press li .press-picto {
  fill: #FF7F40;
  max-width: 25px;
  float: left;
}
.colors.sante_securite.press li .press-picto-mot {
  color: #FF7F40;
}
.colors.sante_securite.press.picto svg {
  fill: #FF7F40;
}
.colors.sante_securite.press.picto h5 {
  color: #FF7F40;
}
.colors.sante_securite.no-press li a span:hover {
  color: #FF7F40;
}
.colors.enviro_amenagement svg path {
  fill: #89DC64;
}
.colors.enviro_amenagement h2 {
  background: #89DC64;
}
.colors.enviro_amenagement .cont-img img {
  border-left-color: #89DC64;
}
.colors.enviro_amenagement .cont-img img.img-press {
  border-right-color: #89DC64;
}
.colors.enviro_amenagement article .cont-img img {
  border-right-color: #89DC64 !important;
}
.colors.enviro_amenagement:nth-child(odd) .cont-img img {
  border-right-color: #89DC64 !important;
}
.colors.enviro_amenagement:before {
  background: #89DC64;
}
.colors.enviro_amenagement.press li {
  background: white;
  display: flex;
  width: 100%;
  border: 1px solid #eee;
}
.colors.enviro_amenagement.press li a {
  display: block;
  float: left;
  width: 80%;
  align-self: center;
  margin-bottom: 0;
}
.colors.enviro_amenagement.press li .press-picto {
  fill: #89DC64;
  max-width: 25px;
  float: left;
}
.colors.enviro_amenagement.press li .press-picto-mot {
  color: #89DC64;
}
.colors.enviro_amenagement.press.picto svg {
  fill: #89DC64;
}
.colors.enviro_amenagement.press.picto h5 {
  color: #89DC64;
}
.colors.enviro_amenagement.no-press li a span:hover {
  color: #89DC64;
}
.colors.formation_cqp svg path {
  fill: #ED1848;
}
.colors.formation_cqp h2 {
  background: #ED1848;
}
.colors.formation_cqp .cont-img img {
  border-left-color: #ED1848;
}
.colors.formation_cqp .cont-img img.img-press {
  border-right-color: #ED1848;
}
.colors.formation_cqp article .cont-img img {
  border-right-color: #ED1848 !important;
}
.colors.formation_cqp:nth-child(odd) .cont-img img {
  border-right-color: #ED1848 !important;
}
.colors.formation_cqp:before {
  background: #ED1848;
}
.colors.formation_cqp.press li {
  background: white;
  display: flex;
  width: 100%;
  border: 1px solid #eee;
}
.colors.formation_cqp.press li a {
  display: block;
  float: left;
  width: 80%;
  align-self: center;
  margin-bottom: 0;
}
.colors.formation_cqp.press li .press-picto {
  fill: #ED1848;
  max-width: 25px;
  float: left;
}
.colors.formation_cqp.press li .press-picto-mot {
  color: #ED1848;
}
.colors.formation_cqp.press.picto svg {
  fill: #ED1848;
}
.colors.formation_cqp.press.picto h5 {
  color: #ED1848;
}
.colors.formation_cqp.no-press li a span:hover {
  color: #ED1848;
}
.colors.gestion_dsf svg path {
  fill: #369745;
}
.colors.gestion_dsf h2 {
  background: #369745;
}
.colors.gestion_dsf .cont-img img {
  border-left-color: #369745;
}
.colors.gestion_dsf .cont-img img.img-press {
  border-right-color: #369745;
}
.colors.gestion_dsf article .cont-img img {
  border-right-color: #369745 !important;
}
.colors.gestion_dsf:nth-child(odd) .cont-img img {
  border-right-color: #369745 !important;
}
.colors.gestion_dsf:before {
  background: #369745;
}
.colors.gestion_dsf.press li {
  background: white;
  display: flex;
  width: 100%;
  border: 1px solid #eee;
}
.colors.gestion_dsf.press li a {
  display: block;
  float: left;
  width: 80%;
  align-self: center;
  margin-bottom: 0;
}
.colors.gestion_dsf.press li .press-picto {
  fill: #369745;
  max-width: 25px;
  float: left;
}
.colors.gestion_dsf.press li .press-picto-mot {
  color: #369745;
}
.colors.gestion_dsf.press.picto svg {
  fill: #369745;
}
.colors.gestion_dsf.press.picto h5 {
  color: #369745;
}
.colors.gestion_dsf.no-press li a span:hover {
  color: #369745;
}
.colors.pistes svg path {
  fill: #3C75C9;
}
.colors.pistes h2 {
  background: #3C75C9;
}
.colors.pistes .cont-img img {
  border-left-color: #3C75C9;
}
.colors.pistes .cont-img img.img-press {
  border-right-color: #3C75C9;
}
.colors.pistes article .cont-img img {
  border-right-color: #3C75C9 !important;
}
.colors.pistes:nth-child(odd) .cont-img img {
  border-right-color: #3C75C9 !important;
}
.colors.pistes:before {
  background: #3C75C9;
}
.colors.pistes.press li {
  background: white;
  display: flex;
  width: 100%;
  border: 1px solid #eee;
}
.colors.pistes.press li a {
  display: block;
  float: left;
  width: 80%;
  align-self: center;
  margin-bottom: 0;
}
.colors.pistes.press li .press-picto {
  fill: #3C75C9;
  max-width: 25px;
  float: left;
}
.colors.pistes.press li .press-picto-mot {
  color: #3C75C9;
}
.colors.pistes.press.picto svg {
  fill: #3C75C9;
}
.colors.pistes.press.picto h5 {
  color: #3C75C9;
}
.colors.pistes.no-press li a span:hover {
  color: #3C75C9;
}
.colors.social svg path {
  fill: #9F2241;
}
.colors.social h2 {
  background: #9F2241;
}
.colors.social .cont-img img {
  border-left-color: #9F2241;
}
.colors.social .cont-img img.img-press {
  border-right-color: #9F2241;
}
.colors.social article .cont-img img {
  border-right-color: #9F2241 !important;
}
.colors.social:nth-child(odd) .cont-img img {
  border-right-color: #9F2241 !important;
}
.colors.social:before {
  background: #9F2241;
}
.colors.social.press li {
  background: white;
  display: flex;
  width: 100%;
  border: 1px solid #eee;
}
.colors.social.press li a {
  display: block;
  float: left;
  width: 80%;
  align-self: center;
  margin-bottom: 0;
}
.colors.social.press li .press-picto {
  fill: #9F2241;
  max-width: 25px;
  float: left;
}
.colors.social.press li .press-picto-mot {
  color: #9F2241;
}
.colors.social.press.picto svg {
  fill: #9F2241;
}
.colors.social.press.picto h5 {
  color: #9F2241;
}
.colors.social.no-press li a span:hover {
  color: #9F2241;
}

.picto-cont {
  display: block;
  width: 30px;
  max-height: 100px;
  float: left;
}
.picto-cont svg {
  max-width: 40px;
}

#sommaire > .colors:hover {
  background-color: #eee !important;
}
#sommaire div.colors {
  min-height: 350px;
}

.modal-dialog {
  height: 90%;
}
@media screen and (min-width: 767px) {
  .modal-dialog {
    width: 80%;
  }
}
.modal-dialog .modal-content {
  height: 100%;
  overflow: scroll;
}
.modal-dialog .modal-content .modal-body {
  height: 90%;
}



}/*end of disabled selection*/




/*
 * Surcharge Tarteaucitron
 *
 */
#tarteaucitronRoot div#tarteaucitronAlertBig.tarteaucitronAlertBigBottom {
  width: auto;
  left: 0;
  right: 0;
}

#tarteaucitronPrivacyUrl {
  padding: 5px 10px !important;
  margin: 0px 0px 3px 7px !important;
  font-size: 16px !important;
  background: white !important;
  color: black !important;
}

#tarteaucitronDisclaimerAlert {
  width: 100%;
  margin-bottom: 10px !important;
  text-align: center !important;
}

/*# sourceMappingURL=main.css.map */

/* Search page active nav */
.nav-link.active {
  color: var(--medium-blue) !important;
}