@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,700");
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

body {
  font-size: 100%;
  font-family: "Source Sans Pro", sans-serif;
  color: rgba(2, 23, 37, 0.7);
  background-color: white; }

body.overflow-hidden {
  /* when primary navigation is visible, the content in the background won't scroll */
  overflow: hidden; }

a {
  color: white;
  text-decoration: none; }

/* Modules - reusable parts of our design */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 768px;
  margin: 0 auto; }

.cd-container:after {
  content: "";
  display: table;
  clear: both; }

/* Main components */
html, body {
  height: 100%; }

.cd-header {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(2, 23, 37, 0.95);
  height: 50px;
  width: 100%;
  z-index: 3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

@media only screen and (min-width: 768px) {
  .cd-header {
    height: 80px;
    background: transparent;
    box-shadow: none; } }
@media only screen and (min-width: 1170px) {
  .cd-header {
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }

  .cd-header.is-fixed {
    /* when the user scrolls down, we hide the header right above the viewport */
    position: fixed;
    top: -80px;
    background-color: rgba(2, 23, 37, 0.96);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s; }

  .cd-header.is-visible {
    /* if the user changes the scrolling direction, we show the header */
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }

  .cd-header.menu-is-open {
    /* add a background color to the header when the navigation is open */
    background-color: rgba(2, 23, 37, 0.96); } }
.cd-logo {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: .875em; }

.cd-logo img {
  display: block; }

@media only screen and (min-width: 768px) {
  .cd-logo {
    left: 2.6em; } }
.cd-secondary-nav {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10em;
  /* hidden on small devices */
  display: none; }

.cd-secondary-nav li {
  display: inline-block;
  margin-left: 2.2em; }

.cd-secondary-nav a {
  display: inline-block;
  color: white;
  text-transform: uppercase;
  font-weight: 700; }

@media only screen and (min-width: 768px) {
  .cd-secondary-nav {
    display: block; } }
.cd-primary-nav-trigger {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background-color: #03263d; }

.cd-primary-nav-trigger .cd-menu-text {
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  /* hide the text on small devices */ }

.cd-primary-nav-trigger .cd-menu-icon {
  /* this span is the central line of the menu icon */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 18px;
  height: 2px;
  background-color: white;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
  /* these are the upper and lower lines in the menu icon */ }

.cd-primary-nav-trigger .cd-menu-icon::before, .cd-primary-nav-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: white;
  right: 0; }

.cd-primary-nav-trigger .cd-menu-icon::before {
  top: -5px; }

.cd-primary-nav-trigger .cd-menu-icon::after {
  top: 5px; }

.cd-primary-nav-trigger .cd-menu-icon.is-clicked {
  background-color: rgba(255, 255, 255, 0); }

.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before, .cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  background-color: white; }

.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before {
  top: 0; }

.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  top: 0; }

@media only screen and (min-width: 300px) {
  .cd-primary-nav-trigger {
    width: 100px;
    background-color: transparent;
    height: 30px;
    line-height: 30px;
    right: 2.2em;
    top: 50%;
    bottom: auto; }

  .cd-primary-nav-trigger .cd-menu-text {
    display: inline-block; }

  .cd-primary-nav-trigger .cd-menu-icon {
    left: auto;
    right: 1em;
    -webkit-transform: translateX(0) translateY(-50%);
    -moz-transform: translateX(0) translateY(-50%);
    -ms-transform: translateX(0) translateY(-50%);
    -o-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%); } }
.cd-primary-nav {
  /* by default it's hidden - on top of the viewport */
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(2, 23, 37, 0.96);
  z-index: 2;
  text-align: center;
  padding: 50px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: auto;
  /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s; }

.cd-primary-nav li {
  font-size: 1.375rem;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: capitalize; }

.cd-primary-nav a {
  display: inline-block;
  padding: .4em 1em;
  border-radius: 0.25em;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s; }

.no-touch .cd-primary-nav a:hover {
  background-color: #e36767; }

.cd-primary-nav .cd-label {
  color: #06446e;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 2.4em 0 .8em; }

.cd-primary-nav .cd-social {
  display: inline-block;
  margin: 0 .4em; }

.cd-primary-nav .cd-social a {
  width: 44px;
  height: 44px;
  padding: 0;
  background-image: url("../img/cd-socials.svg");
  background-repeat: no-repeat;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap; }

.cd-primary-nav .cd-facebook a {
  background-position: 0 0; }

.cd-primary-nav .cd-instagram a {
  background-position: -44px 0; }

.cd-primary-nav .cd-dribbble a {
  background-position: -88px 0; }

.cd-primary-nav .cd-twitter a {
  background-position: -132px 0; }

.cd-primary-nav.is-visible {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0); }

@media only screen and (min-width: 768px) {
  .cd-primary-nav {
    padding: 80px 0; } }
@media only screen and (min-width: 1170px) {
  .cd-primary-nav li {
    font-size: 30px;
    font-size: 1.875rem; }

  .cd-primary-nav .cd-label {
    font-size: 16px;
    font-size: 1rem; } }
.cd-intro {
  position: relative;
  height: 100%;
  background: url("../img/cd-background-img.jpg") no-repeat center center;
  background-size: cover;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.cd-intro h1 {
  position: absolute;
  width: 90%;
  max-width: 1170px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: white;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  text-align: center; }

.ubermenu .ubermenu-colgroup .ubermenu-column, .ubermenu .ubermenu-custom-content-padded, .ubermenu .ubermenu-nonlink, .ubermenu .ubermenu-retractor, .ubermenu .ubermenu-submenu-padded, .ubermenu .ubermenu-submenu-type-stack > .ubermenu-item-normal > .ubermenu-target, .ubermenu .ubermenu-target, .ubermenu .ubermenu-widget, .ubermenu-responsive-toggle {
  padding-top: 5px !important;
  padding-bottom: 5px !important; }

@media only screen and (min-width: 768px) {
  .cd-intro h1 {
    font-size: 30px;
    font-size: 1.875rem; } }
@media only screen and (min-width: 1170px) {
  .cd-intro {
    height: 700px; } }
.cd-main-content {
  position: relative;
  z-index: 1; }

.cd-main-content p {
  line-height: 1.6;
  margin: 2em 0; }

@media only screen and (min-width: 1170px) {
  .cd-main-content p {
    font-size: 20px;
    font-size: 1.25rem; } }
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
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 {
  -moz-box-sizing: content-box;
  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;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  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; }

  select {
    background: #fff !important; }

  .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: #337ab7;
  text-decoration: none; }
  a:hover, a:focus {
    color: #23527c;
    text-decoration: underline; }
  a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

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

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

.img-thumbnail {
  padding: 4px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -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 #bbbbbb; }

.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; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }
  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: #777777; }

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; }

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: .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 {
  text-transform: uppercase; }

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

.text-muted {
  color: #777777; }

.text-primary {
  color: #337ab7; }

a.text-primary:hover {
  color: #286090; }

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

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

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

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

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

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

.text-danger {
  color: #a94442; }

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

.bg-primary {
  color: #fff; }

.bg-primary {
  background-color: #337ab7; }

a.bg-primary:hover {
  background-color: #286090; }

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

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

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

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

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

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

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

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

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

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;
    padding-left: 5px;
    padding-right: 5px; }

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%;
  text-transform: uppercase; }

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #bbbbbb; }
  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: '\2014 \00A0'; }

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #bbbbbb;
  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: '\00A0 \2014'; }

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

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px; }

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }
  kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold;
    box-shadow: none; }

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.428571429;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px; }
  pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0; }

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

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

.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; }

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  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: 1px solid #ccc;
  border-radius: 4px;
  -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);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
  .form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
  .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 {
    cursor: not-allowed;
    background-color: #bbbbbb;
    opacity: 1; }

textarea.form-control {
  height: auto; }

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

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] {
    line-height: 34px; }
    input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control,
    .input-group-sm > input[type="date"].input-group-addon,
    .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[type="time"].form-control,
    .input-group-sm > input[type="time"].input-group-addon,
    .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[type="datetime-local"].form-control,
    .input-group-sm > input[type="datetime-local"].input-group-addon,
    .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[type="month"].form-control,
    .input-group-sm > input[type="month"].input-group-addon,
    .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[type="date"].form-control,
    .input-group-lg > input[type="date"].input-group-addon,
    .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[type="time"].form-control,
    .input-group-lg > input[type="time"].input-group-addon,
    .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[type="datetime-local"].form-control,
    .input-group-lg > input[type="datetime-local"].input-group-addon,
    .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[type="month"].form-control,
    .input-group-lg > input[type="month"].input-group-addon,
    .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 \9; }

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

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

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

input[type="radio"][disabled], input[type="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; }
  .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: 3px; }

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: 3px; }
.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;
  padding: 5px 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: 6px; }

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: 6px; }
.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;
  padding: 10px 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 {
  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 {
  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; } }
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px; } }

.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: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .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;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none; }

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc; }
  .btn-default:hover, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad; }
  .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: #ccc; }
  .btn-default .badge {
    color: #fff;
    background-color: #333; }

.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4; }
  .btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #286090;
    border-color: #204d74; }
  .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: #337ab7;
    border-color: #2e6da4; }
  .btn-primary .badge {
    color: #337ab7;
    background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c; }
  .btn-success:hover, .btn-success:focus, .btn-success.focus, .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
  .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: #4cae4c; }
  .btn-success .badge {
    color: #5cb85c;
    background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da; }
  .btn-info:hover, .btn-info:focus, .btn-info.focus, .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc; }
  .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: #46b8da; }
  .btn-info .badge {
    color: #5bc0de;
    background-color: #fff; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236; }
  .btn-warning:hover, .btn-warning:focus, .btn-warning.focus, .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
  .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: #eea236; }
  .btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a; }
  .btn-danger:hover, .btn-danger:focus, .btn-danger.focus, .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
  .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: #d43f3a; }
  .btn-danger .badge {
    color: #d9534f;
    background-color: #fff; }

.btn-link {
  color: #337ab7;
  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: #23527c;
    text-decoration: underline;
    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: 6px; }

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

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

.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;
  visibility: hidden; }
  .collapse.in {
    display: block;
    visibility: visible; }

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 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: 4px;
  -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: #337ab7; }

.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 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-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: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

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

.btn-group-vertical > .btn-group:first-child: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: #bbbbbb;
  border: 1px solid #ccc;
  border-radius: 4px; }
  .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: 3px; }
  .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: 6px; }
  .input-group-addon input[type="radio"],
  .input-group-addon input[type="checkbox"] {
    margin-top: 0; }

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .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; }
    .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 {
    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: #bbbbbb; }
    .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: #bbbbbb;
    border-color: #337ab7; }
  .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;
      border: 1px solid transparent;
      border-radius: 4px 4px 0 0; }
      .nav-tabs > li > a:hover {
        border-color: #bbbbbb #bbbbbb #ddd; }
    .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
      color: #555555;
      background-color: #fff;
      border: 1px solid #ddd;
      border-bottom-color: transparent;
      cursor: default; }

.nav-pills > li {
  float: left; }
  .nav-pills > li > a {
    border-radius: 4px; }
  .nav-pills > li + li {
    margin-left: 2px; }
  .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #337ab7; }

.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-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0; }
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px; }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd; }
  @media (min-width: 768px) {
    .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
      border-bottom: 1px solid #ddd;
      border-radius: 4px 4px 0 0; }
    .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus,
    .nav-tabs.nav-justified > .active > a:focus {
      border-bottom-color: #fff; } }

.tab-content > .tab-pane {
  display: none;
  visibility: hidden; }
.tab-content > .active {
  display: block;
  visibility: visible; }

.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: 4px; } }

.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;
        visibility: visible !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: 4px; }
  .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; }
  @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 > a {
          padding-top: 15px;
          padding-bottom: 15px; } }

.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: 4px;
  border-top-left-radius: 4px;
  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: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px; }
  .breadcrumb > li {
    display: inline-block; }
    .breadcrumb > li + li:before {
      content: /\00a0;
      padding: 0 5px;
      color: #ccc; }
  .breadcrumb > .active {
    color: #777777; }

.pagination {
  display: inline-flex;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 3px;
  overflow: hidden; }
  .pagination > li {
    display: inline; }
    .pagination > li > a,
    .pagination > li > span {
      position: relative;
      float: left;
      padding: 12px 15px !important;
      line-height: 1.428571429;
      text-decoration: none;
      color: #337ab7;
      background-color: #fff;
      border: 1px solid #ddd;
      margin-left: -1px; }
    .pagination > li:first-child > a,
    .pagination > li:first-child > span {
      margin-left: 0;
      border-bottom-left-radius: 4px;
      border-top-left-radius: 4px; }
    .pagination > li:last-child > a,
    .pagination > li:last-child > span {
      border-bottom-right-radius: 4px;
      border-top-right-radius: 4px; }
  .pagination > li > a:hover, .pagination > li > a:focus,
  .pagination > li > span:hover,
  .pagination > li > span:focus {
    color: #23527c;
    background-color: #bbbbbb;
    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: #337ab7;
    border-color: #337ab7;
    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; }
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px; }
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px; }

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

.pager {
  padding-left: 0;
  margin: 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: #bbbbbb; }
  .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: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em; }
  .label: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: #337ab7; }
  .label-primary[href]:hover, .label-primary[href]:focus {
    background-color: #286090; }

.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: baseline;
  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: #337ab7;
    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: 30px 15px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #bbbbbb; }
  .jumbotron h1,
  .jumbotron .h1 {
    color: inherit; }
  .jumbotron p {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 200; }
  .jumbotron > hr {
    border-top-color: #a2a2a2; }
  .container .jumbotron, .container-fluid .jumbotron {
    border-radius: 6px; }
  .jumbotron .container {
    max-width: 100%; }
  @media screen and (min-width: 768px) {
    .jumbotron {
      padding: 48px 0; }
      .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: 20px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -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: #337ab7; }

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

.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: 4px;
  -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: #337ab7;
  -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-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: 20px;
  padding-left: 0; }

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

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

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #bbbbbb;
  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: #337ab7;
  border-color: #337ab7; }
  .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: #c7ddef; }

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

a.list-group-item-success {
  color: #3c763d; }
  a.list-group-item-success .list-group-item-heading {
    color: inherit; }
  a.list-group-item-success:hover, a.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 {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d; }

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

a.list-group-item-info {
  color: #31708f; }
  a.list-group-item-info .list-group-item-heading {
    color: inherit; }
  a.list-group-item-info:hover, a.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 {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f; }

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

a.list-group-item-warning {
  color: #8a6d3b; }
  a.list-group-item-warning .list-group-item-heading {
    color: inherit; }
  a.list-group-item-warning:hover, a.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 {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b; }

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

a.list-group-item-danger {
  color: #a94442; }
  a.list-group-item-danger .list-group-item-heading {
    color: inherit; }
  a.list-group-item-danger:hover, a.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 {
    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: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

.panel-body {
  padding: 15px; }
  .panel-body:before, .panel-body:after {
    content: " ";
    display: table; }
  .panel-body:after {
    clear: both; }

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
  .panel-heading > .dropdown .dropdown-toggle {
    color: inherit; }

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit; }
  .panel-title > a,
  .panel-title > small,
  .panel-title > .small,
  .panel-title > small > a,
  .panel-title > .small > a {
    color: inherit; }

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

.panel > .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: 3px;
    border-top-left-radius: 3px; }
  .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: 3px;
    border-bottom-left-radius: 3px; }

.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: 15px;
    padding-right: 15px; }
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
  .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: 3px;
    border-top-right-radius: 3px; }
    .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: 3px; }
    .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: 3px; }
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }
  .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: 3px;
    border-bottom-right-radius: 3px; }
    .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: 3px; }
    .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: 3px; }
.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: 4px; }
    .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: #ddd; }
  .panel-default > .panel-heading {
    color: #333333;
    background-color: #f5f5f5;
    border-color: #ddd; }
    .panel-default > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ddd; }
    .panel-default > .panel-heading .badge {
      color: #f5f5f5;
      background-color: #333333; }
  .panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd; }

.panel-primary {
  border-color: #337ab7; }
  .panel-primary > .panel-heading {
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7; }
    .panel-primary > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #337ab7; }
    .panel-primary > .panel-heading .badge {
      color: #337ab7;
      background-color: #fff; }
  .panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #337ab7; }

.panel-success {
  border-color: #d6e9c6; }
  .panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6; }
    .panel-success > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #d6e9c6; }
    .panel-success > .panel-heading .badge {
      color: #dff0d8;
      background-color: #3c763d; }
  .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: #d9edf7;
    border-color: #bce8f1; }
    .panel-info > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #bce8f1; }
    .panel-info > .panel-heading .badge {
      color: #d9edf7;
      background-color: #31708f; }
  .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: #fcf8e3;
    border-color: #faebcc; }
    .panel-warning > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #faebcc; }
    .panel-warning > .panel-heading .badge {
      color: #fcf8e3;
      background-color: #8a6d3b; }
  .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: #f2dede;
    border-color: #ebccd1; }
    .panel-danger > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ebccd1; }
    .panel-danger > .panel-heading .badge {
      color: #f2dede;
      background-color: #a94442; }
  .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.embed-responsive-16by9 {
    padding-bottom: 56.25%; }
  .embed-responsive.embed-responsive-4by3 {
    padding-bottom: 75%; }

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -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: 6px; }

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

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

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

.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999999;
  -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: 6px;
  -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: absolute;
  top: 0;
  right: 0;
  left: 0;
  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;
  visibility: visible;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.4;
  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;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px; }

.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-size: 14px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal; }
  .popover.top {
    margin-top: -10px; }
  .popover.right {
    margin-left: 10px; }
  .popover.bottom {
    margin-top: 10px; }
  .popover.left {
    margin-left: -10px; }

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 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 ease-in-out;
        -moz-transition: -moz-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        -moz-perspective: 1000;
        perspective: 1000; }
        .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.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
  .carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
  .carousel-control:hover, .carousel-control:focus {
    outline: 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%;
    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;
    margin-top: -10px;
    line-height: 1;
    font-family: serif; }
  .carousel-control .icon-prev:before {
    content: '\2039'; }
  .carousel-control .icon-next:before {
    content: '\203a'; }

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

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

@media screen and (min-width: 768px) {
  .carousel-control .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; } }
.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }
.clearfix:after {
  clear: both; }

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

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

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

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

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

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

.affix {
  position: fixed; }

@-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; }

  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; }

  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; }

  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; }

  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; }

  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; } }
body {
  font-family: interface, sans-serif;
  font-style: normal;
  font-size: 13px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

body {
  font-family: interface, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.42857;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

h1 {
  font-size: 36px; }

h2 {
  font-size: 32px; }

.h25 {
  font-size: 36px; }

.h24 {
  font-size: 33px; }

h3 {
  font-size: 28px; }

.h35 {
  font-size: 22px; }

h4 {
  font-size: 22px; }

h5 {
  font-size: 18px; }

.h55 {
  font-size: 16px; }

h6 {
  font-size: 14px; }

.h7 {
  font-size: 11px; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: 700; }

p {
  margin: 0;
  padding: 0 0 22px 0; }

.row {
  margin: 0;
  padding: 0; }

.container {
  margin-left: auto;
  margin-right: auto;
  padding: 0; }

object, embed, video {
  width: 100%    !important;
  height: auto   !important; }

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0; }

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

html, body, .scroller {
  height: 100%; }

.scroller,
.scroller-inner {
  position: relative; }

.menu-container {
  position: relative;
  overflow: hidden; }

.menu-trigger {
  position: relative;
  font-size: 0.9em;
  left: 0px;
  top: 3px; }

.mp-pusher {
  position: relative;
  left: 0;
  height: 100%;
  perspective: 1000px; }

.mp-menu {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 300px;
  height: 100%;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  display: none \9; }

.mp-level {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #618098;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

/* overlays for pusher and for level that gets covered */
.mp-pusher::after,
.mp-level::after,
.mp-level::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  opacity: 0; }

.mp-pusher::after,
.mp-level::after {
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
  transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s; }

.mp-level::after {
  z-index: -1; }

.mp-pusher.mp-pushed::after,
.mp-level.mp-level-overlay::after {
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s; }

.mp-level.mp-level-overlay {
  cursor: pointer; }

.mp-level.mp-level-overlay.mp-level::before {
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 1; }

.mp-pusher,
.mp-level {
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s; }

/* overlap */
.mp-overlap .mp-level.mp-level-open {
  box-shadow: 1px 0 2px rgba(0, 0, 0, 0.2);
  -webkit-transform: translate3d(-40px, 0, 0);
  transform: translate3d(-40px, 0, 0); }

/* First level */
.mp-menu > .mp-level,
.mp-menu > .mp-level.mp-level-open,
.mp-menu.mp-overlap > .mp-level,
.mp-menu.mp-overlap > .mp-level.mp-level-open {
  box-shadow: none;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

/* cover */
.mp-cover .mp-level.mp-level-open {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mp-cover .mp-level.mp-level-open > ul > li > .mp-level:not(.mp-level-open) {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

/* content style */
.mp-menu ul {
  margin: 0;
  padding: 0;
  list-style: none; }

.mp-menu h2 {
  margin: 0;
  padding: 1em;
  color: #fff;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  font-weight: 300;
  font-size: 2em; }

.mp-menu.mp-overlap h2::before {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 8px;
  font-size: 75%;
  line-height: 1.8;
  opacity: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.1s 0.3s;
  transition: opacity 0.3s, transform 0.1s 0.3s; }

.mp-menu.mp-cover h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 1em; }

.mp-overlap .mp-level.mp-level-overlay > h2::before {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s; }

.mp-menu ul li > a {
  display: block;
  padding: 0.7em 1em 0.7em 1.8em;
  outline: none;
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0.2);
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
  font-size: 1.4em;
  -webkit-transition: background 0.3s, box-shadow 0.3s;
  transition: background 0.3s, box-shadow 0.3s; }

.mp-menu ul li::before {
  position: absolute;
  left: 10px;
  z-index: -1;
  color: #fff;
  line-height: 3.5; }

.mp-menu ul li a {
  color: #fff; }

.mp-level > ul > li:first-child > a {
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0.2), inset 0 1px rgba(0, 0, 0, 0.2); }

.mp-menu ul li a:hover,
.mp-level > ul > li:first-child > a:hover {
  background: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0); }

.mp-menu .mp-level.mp-level-overlay > ul > li > a,
.mp-level.mp-level-overlay > ul > li:first-child > a {
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0); }

.mp-level > ul > li:first-child > a:hover,
.mp-level.mp-level-overlay > ul > li:first-child > a {
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0), inset 0 1px rgba(0, 0, 0, 0); }

/* seems like Chrome 34.0.1847.131 needs the second shadow otherwise the transition breaks */
.mp-back {
  position: relative;
  display: block;
  padding: 1em;
  outline: none;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.1);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 0.8em;
  -webkit-transition: background 0.3s;
  transition: background 0.3s; }

.mp-menu .mp-level.mp-level-overlay > .mp-back,
.mp-menu .mp-level.mp-level-overlay > .mp-back::after {
  background: transparent;
  box-shadow: none;
  color: transparent; }

/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */
/* We'll show the first level only */
.no-csstransforms3d .mp-pusher,
.no-js .mp-pusher {
  padding-left: 300px;
  padding-left: 0 \9; }

.no-csstransforms3d .mp-menu .mp-level,
.no-js .mp-menu .mp-level {
  display: none; }

.no-csstransforms3d .mp-menu > .mp-level,
.no-js .mp-menu > .mp-level {
  display: block; }

.easy-table th {
  color: white;
  font-size: 16px; }

.table-responsive {
  border-width: 0 !important; }

table.responsive_table {
  width: 100% !important;
  border-width: 0 !important; }
  table.responsive_table thead {
    background-color: #662382; }
    table.responsive_table thead th {
      border: 1px solid #fff;
      padding: 5px 10px; }
      table.responsive_table thead th h5 {
        color: #fff;
        margin-bottom: 0 !important; }
  table.responsive_table tbody {
    color: #662382; }
    table.responsive_table tbody tr:nth-child(odd) {
      background-color: #e3dce6; }
    table.responsive_table tbody tr:nth-child(even) {
      background-color: #fff; }
    table.responsive_table tbody td {
      border: 1px solid #fff;
      padding: 5px 10px; }
      table.responsive_table tbody td p {
        padding: 0;
        text-align: left; }

@media only screen and (max-width: 768px) {
  .cf:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0; }

  * html .cf {
    zoom: 1; }

  *:first-child + html .cf {
    zoom: 1; }

  table.responsive_table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    display: block;
    position: relative;
    width: 100%;
    box-sizing: content-box;
    padding-right: 30px;
    background: url("../images/blue-arrow-right-big.png") no-repeat right 15px center;
    background-size: 15px; }
    table.responsive_table th, table.responsive_table td {
      margin: 0;
      vertical-align: top;
      height: 30px; }
    table.responsive_table th {
      text-align: left;
      height: 30px;
      display: block;
      text-align: right; }
    table.responsive_table thead {
      display: block;
      float: left; }
      table.responsive_table thead tr {
        display: block; }
    table.responsive_table tbody {
      display: block;
      width: auto;
      position: relative;
      overflow-x: auto;
      white-space: nowrap; }
      table.responsive_table tbody tr {
        display: inline-block;
        vertical-align: top; }
    table.responsive_table td {
      display: block;
      min-height: 1.25em;
      text-align: left;
      height: 30px !important; }
    table.responsive_table br {
      display: none; } }
table.swgc-calendar {
  border-collapse: collapse;
  width: 100%; }

table.swgc-calendar swgc-calendar-caption {
  text-align: center; }

.swgc-calendar-month {
  font-weight: normal;
  margin: 1em 0;
  font-size: 1.3em; }

#sqt_prev {
  cursor: pointer; }

#sqt_next {
  text-align: right;
  cursor: pointer; }

table.swgc-calendar td.swgc-calendar-control-next {
  text-align: right; }

table.swgc-calendar thead td.swgc-calendar-caption {
  text-align: center;
  font-weight: bold; }

table.swgc-calendar th {
  color: #333;
  width: 14.2%;
  text-align: center;
  font-weight: normal; }

table.swgc-calendar tbody td {
  width: 14.2%;
  background-color: #fff;
  background-repeat: repeat-x;
  background-position: bottom left;
  text-align: right;
  font-size: 0.8em;
  color: #888;
  padding: 0 0.8em 2.2em;
  border: 1px solid #DFDFDF;
  position: relative; }

.table_wrap_cal {
  margin: 0 auto;
  max-width: 400px;
  width: 100%; }

#swgc-legend {
  margin: 20px 0;
  font-size: 0.9em; }

#swgc-legend dt, #swgc-legend dd {
  float: left;
  display: inline; }

#swgc-legend dt {
  width: 10px;
  height: 10px;
  border: 1px solid #666;
  background-repeat: repeat;
  margin: 5px 0 0 0; }

#swgc-legend dd {
  padding: 0 10px 0 10px; }

#swgc_calendar_prev, #swgc_calendar_next {
  cursor: pointer; }

table.swgc-calendar tbody td.swgc-calendar-booked, .swgc-calendar-booked {
  background: #E5F1F7; }

table.swgc-calendar tbody td.swgc-calendar-today {
  /*background:#F3D2C6;*/ }

table.swgc-calendar tbody td.swgc-calendar-unavailable {
  background: #eaccdf; }

table.swgc-calendar tbody td.swgc-calendar-active {
  font-weight: bold;
  text-decoration: underline;
  color: #000; }

table.swgc-calendar tbody td.swgc-calendar-day {
  cursor: pointer;
  height: 37px; }

table.swgc-calendar tbody td.swgc-cell-hover {
  background: #efefef; }

table.swgc-calendar tbody td a {
  display: block;
  width: 100%;
  height: 100%;
  color: black; }

table.swgc-calendar td.swgc-calendar-cell-pad {
  background: #efefef; }

div#swgc-legend {
  margin: 10px 0; }

div#swgc-legend .legend-item {
  overflow: hidden;
  height: 20px;
  line-height: 15px;
  vertical-align: middle; }

div#swgc-legend .legend-item span {
  float: left;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border: 1px solid #999;
  text-indent: -9999px; }

div#swgc-legend .legend-item span.available {
  background: #fff; }

div#swgc-legend .legend-item span.bookings {
  background: #E5F1F7; }

div#swgc-legend .legend-item span.today {
  /*background:#F3D2C6;*/ }

div#swgc-legend .legend-item span.unavailable {
  background: #eaccdf;
  color: #fff !important; }

#swgc-note {
  margin: 10px 0 0 0; }

.swgc-location-post {
  margin-bottom: 2em; }

.swgc-location-post #swgc-note {
  background: #efefef;
  padding: 10px; }

#swgc-available-slots-async {
  margin-bottom: 20px; }

#swgc-available-slots-async .advice {
  margin-bottom: 0.2em; }

.swgc-calendar-cell-pad {
  background-color: #e8e8e8 !important; }

td {
  background-color: transparent !important;
  padding: 0;
  height: 37px !important; }

td.swgc-calendar-unavailable {
  background-color: #d71027 !important;
  color: #fff !important; }
  td.swgc-calendar-unavailable a {
    color: #fff !important;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 5px; }

td.swgc-calendar-booked {
  background-color: #618098 !important;
  color: #fff !important; }
  td.swgc-calendar-booked a {
    color: #fff !important;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 5px; }

.swgc-calendar-active {
  background-color: #c2570f !important;
  font-weight: normal;
  text-decoration: none;
  color: #fff !important; }
  .swgc-calendar-active a {
    color: #fff !important;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 5px; }

@media (max-width: 993px) {
  #secondary-nav .container {
    width: 100%; }

  .banner-students {
    display: none; }

  #carousel img {
    width: 600px;
    height: 252px; }

  #prev {
    left: -300px !important; }

  #next {
    right: -300px !important; } }
@media (max-width: 768px) {
  .mobile_nav_container {
    display: block !important; }
    .mobile_nav_container .basketCount {
      top: -5px;
      left: 23px; }

  .second_nav_wrapper .second_nav_container .second_nav_link a {
    padding-top: 10px !important; }

  #second-search .second_search_title div h2 img, #second-search .second_search_title div h1 img, #second-search .second_search_title div.h2 img, #second-search .second_search_title div.h1 img {
    height: 20px;
    padding-right: 0px !important; }

  #second-search .second_search_title div {
    height: auto !important;
    padding: 30px 0 15px; }

  #second-search .second_search_title div h2, #second-search .second_search_title div h1, #second-search .second_search_title div.h2, #second-search .second_search_title div.h1 {
    font-size: 30px !important;
    display: inline-block !important; }

  .accessibility_container {
    display: none !important; }

  #main-nav li {
    display: none; }

  header div div img {
    width: 260px; }

  #carousel img {
    width: 400px;
    height: 168px; }

  #prev {
    left: -200px !important; }

  #next {
    right: -200px !important; } }
.mobile_accessiblity_container {
  padding: 1.7em 3em 0.7em 2.5em !important;
  display: inline-block; }
  .mobile_accessiblity_container .mobile_searchbar {
    font-size: 1.4em;
    width: 195px;
    padding: 7px 10px 5px;
    border: 0;
    background-color: transparent;
    float: right;
    color: #fff; }
    .mobile_accessiblity_container .mobile_searchbar::-webkit-input-placeholder {
      color: #fff !important;
      font-size: 1.4em; }
    .mobile_accessiblity_container .mobile_searchbar:-moz-placeholder {
      color: #fff !important;
      font-size: 1.4em; }
    .mobile_accessiblity_container .mobile_searchbar::-moz-placeholder {
      color: #fff !important;
      font-size: 1.4em; }
    .mobile_accessiblity_container .mobile_searchbar:-ms-input-placeholder {
      color: #fff !important;
      font-size: 1.4em; }
  .mobile_accessiblity_container .mobile_input_search {
    background: url("../images/search-icon.png");
    background-repeat: no-repeat;
    background-position: center;
    height: 23px;
    width: 25px;
    border: 0;
    padding: 18px 0; }

nav#accessibility-nav {
  background-color: #618098;
  width: 100%;
  padding: 6px 0; }
  nav#accessibility-nav .mobile_nav_container {
    display: none;
    padding: 0;
    margin: 0; }
    nav#accessibility-nav .mobile_nav_container li {
      display: inline-block; }
    nav#accessibility-nav .mobile_nav_container li:nth-child(2) {
      float: right;
      padding: 3px;
      position: relative; }
    nav#accessibility-nav .mobile_nav_container li:nth-child(2) h6 {
      display: inline-block;
      text-transform: uppercase;
      color: #fff; }
    nav#accessibility-nav .mobile_nav_container li:nth-child(2) img {
      display: inline-block;
      padding-right: 4px;
      padding-bottom: 3px; }
  nav#accessibility-nav .accessibility_container {
    display: table;
    padding: 0;
    margin: 0;
    list-style: none;
    float: right; }
    nav#accessibility-nav .accessibility_container li {
      position: relative;
      display: table-cell;
      vertical-align: middle;
      padding: 0 20px;
      margin-top: 2px;
      min-height: 40px; }
      nav#accessibility-nav .accessibility_container li:first-child {
        padding-left: 0px !important; }
      nav#accessibility-nav .accessibility_container li::after {
        content: "";
        position: absolute;
        margin: auto;
        right: 0;
        top: 0;
        bottom: 0;
        height: 20px;
        width: 2px;
        background-color: #fff; }
      nav#accessibility-nav .accessibility_container li:last-child {
        padding-right: 0px !important; }
      nav#accessibility-nav .accessibility_container li:last-child::after {
        content: "";
        position: absolute;
        margin: auto;
        right: 0;
        top: 0;
        bottom: 0;
        height: 0;
        width: 0px;
        background-color: transparent; }
    nav#accessibility-nav .accessibility_container #searchform {
      width: 100px; }
      nav#accessibility-nav .accessibility_container #searchform .searchbar {
        float: right;
        padding: 4px;
        border: 0;
        background-color: transparent;
        width: 60px;
        color: #fff; }
        nav#accessibility-nav .accessibility_container #searchform .searchbar::-webkit-input-placeholder {
          color: #fff !important;
          font-size: 14px; }
        nav#accessibility-nav .accessibility_container #searchform .searchbar:-moz-placeholder {
          color: #fff !important;
          font-size: 14px; }
        nav#accessibility-nav .accessibility_container #searchform .searchbar::-moz-placeholder {
          color: #fff !important;
          font-size: 14px; }
        nav#accessibility-nav .accessibility_container #searchform .searchbar:-ms-input-placeholder {
          color: #fff !important;
          font-size: 14px; }
      nav#accessibility-nav .accessibility_container #searchform .input_search {
        background: url("../images/search-icon.png");
        height: 23px;
        width: 25px;
        border: 0;
        padding: 0px; }
    nav#accessibility-nav .accessibility_container .signOut h6 span a {
      color: #fff !important; }
    nav#accessibility-nav .accessibility_container .bag_container {
      cursor: pointer; }
      nav#accessibility-nav .accessibility_container .bag_container .basketCount {
        top: -5px;
        left: 40px; }
      nav#accessibility-nav .accessibility_container .bag_container h6 {
        display: inline-block;
        text-transform: uppercase;
        color: #fff; }
      nav#accessibility-nav .accessibility_container .bag_container img {
        display: inline-block;
        padding-right: 4px;
        padding-bottom: 3px; }
    nav#accessibility-nav .accessibility_container .accessibilityArea {
      padding-bottom: 3px; }
    nav#accessibility-nav .accessibility_container ul {
      padding: 0;
      display: inline-block; }
    nav#accessibility-nav .accessibility_container #small, nav#accessibility-nav .accessibility_container #medium, nav#accessibility-nav .accessibility_container #large {
      display: inline-block; }
    nav#accessibility-nav .accessibility_container #small h6 {
      padding-left: 5px;
      font-size: 12px !important; }
    nav#accessibility-nav .accessibility_container #medium h6 {
      padding-left: 5px;
      font-size: 16px !important; }
    nav#accessibility-nav .accessibility_container #large h6 {
      padding-left: 5px;
      font-size: 20px !important; }
    nav#accessibility-nav .accessibility_container #small h6, nav#accessibility-nav .accessibility_container #medium h6, nav#accessibility-nav .accessibility_container #large h6 {
      display: inline-block;
      color: #fff; }
    nav#accessibility-nav .accessibility_container .accessibilityArea {
      display: table-cell;
      display: inline-block; }
      nav#accessibility-nav .accessibility_container .accessibilityArea .accessibility_controls li {
        padding: 0; }
      nav#accessibility-nav .accessibility_container .accessibilityArea #accessibilityForm {
        height: 35px;
        width: 32px;
        background: url("../images/accessibilty-icon.png");
        background-repeat: no-repeat;
        background-position: top;
        display: inline-block;
        vertical-align: middle; }
        nav#accessibility-nav .accessibility_container .accessibilityArea #accessibilityForm img {
          padding-right: 4px; }
        nav#accessibility-nav .accessibility_container .accessibilityArea #accessibilityForm .ico_access {
          height: 32px !important;
          width: 32px !important; }

.basketCount {
  position: absolute;
  top: -5px;
  left: 40px;
  display: block;
  background-color: #c2570f;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #662382;
  text-align: center; }

header {
  background-color: #fff;
  width: 100%;
  padding: 13px 0; }

nav#main-nav {
  background-color: #d71027;
  width: 100%;
  min-height: 37px;
  z-index: 1000; }
  nav#main-nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    list-style-type: none;
    text-transform: uppercase;
    width: 100%;
    justify-content: space-between;
    text-align: center \9;
    /*&:after{
    	content:'';
    	display:inline-block;
    	width:100%;
    }*/ }
    nav#main-nav ul li {
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
      -moz-flex-grow: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      -webkit-flex-shrink: 1;
      -moz-flex-shrink: 1;
      -ms-flex-negative: 1;
      flex-shrink: 1;
      -webkit-flex-basis: auto;
      -moz-flex-basis: auto;
      -ms-flex-preferred-size: auto;
      flex-basis: auto;
      display: inline-block \9;
      width: 12% \9; }
      nav#main-nav ul li a {
        color: #fff;
        padding: 0; }
        nav#main-nav ul li a h6 {
          width: 100%;
          text-align: center;
          padding: 11px 0 10px 0 !important;
          min-height: 37px; }
          nav#main-nav ul li a h6:hover {
            background-color: #662382; }
        nav#main-nav ul li a:hover {
          background-color: transparent !important;
          cursor: pointer; }
        nav#main-nav ul li a h6 {
          display: inline-block; }
        nav#main-nav ul li a span {
          color: transparent; }

section#homepage-banner #wrapper {
  position: relative; }
section#homepage-banner .banner-students {
  position: relative;
  width: 951px;
  z-index: 99;
  margin: 0px auto; }
  section#homepage-banner .banner-students img {
    z-index: 99;
    position: absolute;
    bottom: -174px; }
  section#homepage-banner .banner-students img.student-1 {
    left: -29px;
    z-index: 106; }
  section#homepage-banner .banner-students img.student-2 {
    left: 90px;
    z-index: 105; }
  section#homepage-banner .banner-students img.student-3 {
    left: 210px;
    z-index: 104; }
  section#homepage-banner .banner-students img.student-4 {
    left: 362px;
    z-index: 103; }
  section#homepage-banner .banner-students img.student-5 {
    left: 480px;
    z-index: 102; }
  section#homepage-banner .banner-students img.student-6 {
    left: 622px;
    z-index: 101; }
  section#homepage-banner .banner-students img.student-7 {
    left: 794px;
    z-index: 100; }

nav#secondary-nav {
  position: relative;
  z-index: 999;
  background-color: #618098;
  width: 100%; }

/* Carousel */
#carousel_container {
  position: relative;
  height: 400px; }

#wrapper {
  background-color: #fff;
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: absolute;
  left: 0; }

#carousel img {
  display: block;
  float: left; }

#prev, #next {
  display: block;
  height: 400px;
  width: 50%;
  top: 0;
  position: absolute; }

#prev:hover, #next:hover {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.3); }

#prev {
  left: -475px;
  background-color: rgba(255, 255, 255, 0.7); }

#next {
  right: -476px;
  background-color: rgba(255, 255, 255, 0.7); }

#pager {
  position: absolute;
  text-align: center;
  margin: auto;
  left: 0;
  right: 0;
  top: 25px;
  opacity: 1; }

#pager a {
  background-color: #e6785b;
  border-radius: 10px;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 12px 0 0; }

#pager a:hover {
  background-color: rgba(255, 255, 255, 0.5); }

#pager a span {
  display: none; }

#pager a.selected {
  background-color: #000; }

#secondary-nav .container {
  position: relative; }
  #secondary-nav .container .second-nav-prev {
    display: none !important;
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    background-color: #618098;
    width: 20px;
    z-index: 9999; }
    #secondary-nav .container .second-nav-prev img {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      height: 17px;
      width: 12px;
      margin: auto;
      margin-left: 5px; }
  #secondary-nav .container .second-nav-next {
    position: absolute;
    opacity: 0.5;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 20px;
    z-index: 9999; }
    #secondary-nav .container .second-nav-next img {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      height: 17px;
      width: 12px;
      margin: auto;
      margin-right: 5px; }

.second-nav {
  position: relative;
  z-index: 9999;
  height: 0 !important; }

.nav_dropdown {
  display: inline-block;
  list-style: none;
  position: absolute;
  z-index: 9999;
  background-color: #fff;
  padding: 30px 25px !important;
  border-left: 1px solid #9a9a9a;
  border-bottom: 1px solid #9a9a9a;
  border-right: 1px solid #9a9a9a; }

.nav_title {
  text-transform: uppercase;
  border-bottom: 1px solid black;
  line-height: 25px; }

.sub_nav_dropdown {
  display: inline-block;
  list-style: none;
  padding: 10px 0 0 0 !important; }
  .sub_nav_dropdown li {
    width: 100%; }

.sub_nav_dropdown li h6 {
  line-height: 30px;
  padding-right: 10px;
  width: 100%; }

.sub_nav_dropdown li h6:hover {
  text-decoration: underline; }

#about_us_dropdown, #news_events_dropdown, #jobs_dropdown {
  display: none; }

.cd-primary-nav-trigger .cd-menu-text {
  color: #662382; }

.cd-primary-nav-trigger .cd-menu-icon, .cd-primary-nav-trigger .cd-menu-icon::before, .cd-primary-nav-trigger .cd-menu-icon:after {
  background-color: #662382; }

#second-search .second_search_title div .h2, #second-search .second_search_title div .h1 {
  display: table-cell;
  vertical-align: middle;
  color: white;
  padding-left: 0px;
  font-size: 48px; }

.ml-10 {
  margin-left: 10px; }

.btn-noreferrer {
  position: relative; }
  .btn-noreferrer:before {
    content: "";
    background: #000;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }

button.btn_gray {
  background-color: #d5d5d5 !important;
  color: #000 !important; }
  button.btn_gray:hover {
    background-color: #373737 !important;
    color: #fff !important; }

a.rememberToLogOut {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #c2570f;
  color: #fff !important;
  position: relative;
  border-radius: 50%; }

a.rememberToLogOut:hover {
  background: #662382; }

a.rememberToLogOut i {
  font-size: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -10px;
  margin-left: -8px; }

.mainsearchcontainer {
  background: rgba(102, 35, 130, 0.6);
  padding: 15px;
  border: #3f164e solid 1px; }

.mainsearchcontainer > .search-row > h3 {
  color: #fff !important;
  margin-bottom: 15px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500; }

#courseModal #couser-search,
#courseModal .cycle-bg-image {
  background: none !important; }

input#csinput {
  font-size: 14px !important; }

.courseTable.clearfix:before,
.courseTable.clearfix:after {
  display: block;
  width: 100%; }

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

#wpadminbar {
  z-index: 9999999 !important; }

.ui-widget.ui-widget-content {
  z-index: 9999999999 !important; }

.modal {
  z-index: 200000000; }

.coursesTable {
  border: none !important; }

.coursesTable thead {
  background: #662382 !important;
  color: #fff !important; }
  .coursesTable thead th {
    border-color: #fff !important; }

.coursesTable tbody {
  background: #efefef !important; }

.coursesTable tr td {
  border-color: #fff !important; }

.validationError {
  border-color: red !important; }

@media (min-width: 768px) {
  .text-right-sm {
    text-align: right; } }
#main-banner {
  display: block !important; }
  #main-banner .owl-item {
    padding: 0;
    opacity: 0.8; }
  #main-banner .center {
    opacity: 1 !important; }
  #main-banner .owl-controls {
    position: absolute;
    margin: auto;
    bottom: 20px;
    right: 0;
    left: 0; }
  #main-banner .item img {
    width: 100%; }

@media (max-width: 993px) {
  #main-banner .item {
    width: 760px !important; }

  .second_nav_link a {
    padding-top: 12px; }

  .orange_box_wrapper {
    display: block !important; }

  .second_nav_wrapper {
    padding-left: 0px;
    padding-right: 0px; } }
@media (max-width: 765px) {
  #sub-coursepage #homepage-banner-image {
    display: none !important; }

  .frontpage_banner {
    display: block !important; }

  #main-banner .item {
    width: 100% !important; }

  #main-nav {
    display: none !important; }

  .header {
    border-bottom: 37px solid #d71027; }

  .aligner {
    display: block !important; }

  #blue-carousel-banner .item,
  #orange-carousel-banner .item {
    max-height: 200px; }

  .videoWrapper img {
    max-height: 175px !important; }

  .edit_btn {
    float: none !important;
    display: block !important;
    width: 50px !important;
    margin-top: 10px !important; } }
@media (max-width: 440px) {
  #main-banner .item {
    width: 100% !important; } }
#homepage-banner-image img,
#sub-banner img {
  width: 100%;
  height: auto; }

.second_nav_wrapper_empty {
  padding: 20px 20px 17px 20px; }

.second_nav_wrapper {
  overflow: auto; }
  .second_nav_wrapper .second_nav_container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 999;
    padding: 0;
    text-align: center \9;
    margin-bottom: 0px; }
    .second_nav_wrapper .second_nav_container li:nth-child(1) {
      background-color: #c2570f; }
    .second_nav_wrapper .second_nav_container li:nth-child(2) {
      background-color: #618098; }
    .second_nav_wrapper .second_nav_container li:nth-child(3) {
      background-color: #cb3043; }
    .second_nav_wrapper .second_nav_container li:nth-child(4) {
      background-color: #662382; }
    .second_nav_wrapper .second_nav_container li:nth-child(5) {
      background-color: #618098; }
    .second_nav_wrapper .second_nav_container li:nth-child(6) {
      background-color: #c2570f;
      min-width: 120px; }
    .second_nav_wrapper .second_nav_container li:nth-child(7) {
      background-color: #662382;
      min-width: 115px; }
    .second_nav_wrapper .second_nav_container .second_nav_link {
      text-align: center;
      vertical-align: top;
      list-style: none;
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
      -moz-flex-grow: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      -webkit-flex-shrink: 1;
      -moz-flex-shrink: 1;
      -ms-flex-negative: 1;
      flex-shrink: 1;
      -webkit-flex-basis: auto;
      -moz-flex-basis: auto;
      -ms-flex-preferred-size: auto;
      flex-basis: auto;
      display: inline-block \9;
      width: 14% \9;
      min-width: 100px; }
      .second_nav_wrapper .second_nav_container .second_nav_link a {
        display: block;
        color: #fff;
        height: 84px;
        padding-top: 20px;
        padding-left: 5px;
        padding-right: 5px;
        text-align: center; }
        .second_nav_wrapper .second_nav_container .second_nav_link a h6 {
          color: #fff;
          display: inline-block;
          text-transform: uppercase;
          text-align: center;
          padding: 0px 3px;
          line-height: 22px;
          cursor: pointer; }
  .second_nav_wrapper .link_red {
    -o-transition: all 1000ms linear 0s;
    -webkit-transition: all 1000ms linear 0s;
    -moz-transition: all 1000ms linear 0s;
    transition: all 1000ms linear 0s; }
    .second_nav_wrapper .link_red:hover h6 {
      background-color: #cb3043; }
  .second_nav_wrapper .link_orange:hover h6 {
    background-color: #c2570f; }
  .second_nav_wrapper .link_blue:hover h6 {
    background-color: #662382; }

.hover-red {
  background-color: #cb3043; }

.hover-orange {
  background-color: #c2570f; }

.hover-blue {
  background-color: #662382; }

.dropdown_container {
  overflow: visible !important;
  padding: 0 0 45px !important; }
  .dropdown_container .application_form_inputs .dropcontainer_demo2 ul {
    position: absolute; }
  .dropdown_container .application_form_inputs .dropcontainer_demo2 {
    position: relative;
    font-size: 16px;
    color: #662382; }
  .dropdown_container .application_form_inputs .trigger_demo2 {
    color: black;
    line-height: 27px;
    max-height: 35px;
    overflow: scroll;
    padding: 5px 40px 5px 5px;
    font-size: 14px !important;
    width: 100%;
    background: #fff url(../images/dropdown-down-blue.png) 100% center no-repeat;
    display: block;
    border: 1px solid black;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-radius: 2px; }
    .dropdown_container .application_form_inputs .trigger_demo2::-webkit-scrollbar {
      display: none; }
  .dropdown_container .application_form_inputs .trigger_demo2:hover {
    color: black;
    background: url(../images/dropdown-down-blue.png) 100% center no-repeat; }
  .dropdown_container .application_form_inputs .activetrigger_demo2 {
    color: black;
    line-height: 27px;
    max-height: 35px;
    overflow: scroll;
    padding: 5px 40px 5px 5px;
    font-size: 16px;
    width: 100%;
    background: url(../images/dropdown-up-blue.png) 100% center no-repeat;
    display: block;
    border: 1px solid black;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .dropdown_container .application_form_inputs .activetrigger_demo2:hover {
    background: url(../images/dropdown-up-blue.png) 100% center no-repeat;
    color: #662382; }
  .dropdown_container .application_form_inputs .activetrigger_demo2:active {
    background: url(../images/dropdown-up-blue.png) 100% center no-repeat;
    color: #662382; }
  .dropdown_container .application_form_inputs .dropcontainer_demo2 ul {
    font-size: 16px;
    border: 1px solid black;
    border-top: none;
    background: #fff;
    list-style-type: none;
    padding: 5px;
    margin: 0px;
    width: 100%;
    z-index: 100;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .dropdown_container .application_form_inputs .dropcontainer_demo2 ul li {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .dropdown_container .application_form_inputs .dropcontainer_demo2 ul li a {
      padding: 5px;
      display: block; }
  .dropdown_container .application_form_inputs .dropcontainer_demo2 ul li:hover {
    background: #f5f5f5;
    outline: none; }
  .dropdown_container .application_form_inputs .dropcontainer_demo2 ul li:first-child {
    display: none; }
  .dropdown_container .application_form_inputs .dropcontainer_demo2 ul li:last-child {
    border-bottom: none; }
  .dropdown_container .application_form_inputs .dropdownhidden_demo2 {
    display: none; }
  .dropdown_container .application_form_inputs .dropdownvisible_demo2 {
    height: auto; }
  .dropdown_container .application_form_inputs .dropdownvisible_demo2 {
    max-height: 140px;
    overflow-y: scroll; }
  .dropdown_container .application_form_inputs .mid_input_search input[type="submit"] {
    background-color: #e6785b;
    border: 0;
    width: 100%;
    padding: 10px 15px 6px 8px;
    text-align: right;
    background-repeat: no-repeat;
    background-position: right 75px center; }

.mid_input_search {
  position: relative; }
  .mid_input_search img {
    position: absolute;
    right: 100px;
    top: 19px;
    pointer-events: none; }

section#couser-search {
  position: relative;
  background: #000;
  background-size: cover;
  background-position: center;
  z-index: 999;
  width: 100%; }
  section#couser-search .cycle-bg-image {
    opacity: 0.7; }
  section#couser-search .display-table {
    width: 100%;
    display: table; }
  section#couser-search .display-table-cell {
    display: table-cell;
    vertical-align: middle;
    padding-top: 30px;
    padding-bottom: 30px; }
  section#couser-search label {
    color: #fff;
    display: block; }
  section#couser-search h2 {
    color: #fff;
    font-size: 50px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 11px #000000; }
    section#couser-search h2 span {
      display: block;
      font-size: 95px; }
  section#couser-search p {
    color: #fff;
    max-width: 450px;
    text-shadow: 2px 2px 11px #000000; }
  section#couser-search .search-row {
    margin-left: -5px;
    margin-right: -5px; }
  section#couser-search .search-row:after {
    content: "";
    display: table;
    clear: both; }
  section#couser-search .col-1 {
    padding-left: 0px;
    padding-right: 0px;
    float: left;
    width: 25%; }
    section#couser-search .col-1 .col-inner {
      width: 100%;
      padding: 64px 15px 30px 15px;
      background: #e5007d;
      position: relative;
      border-right: #fff dashed 1px; }
      section#couser-search .col-1 .col-inner .filterstep {
        position: absolute;
        left: 15px;
        top: 15px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: #662382;
        color: #fff;
        text-align: center;
        display: inline-block;
        margin-bottom: 10px;
        font-size: 20px;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        -khtml-border-radius: 50%;
        border-radius: 50%; }
      section#couser-search .col-1 .col-inner:before {
        content: "\f04b";
        position: absolute;
        top: 50%;
        margin-top: -9px;
        right: -21px;
        font-size: 26px !important;
        color: #fff;
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        z-index: 3; }
  section#couser-search .col-2 {
    padding-left: 0px;
    padding-right: 0px;
    float: left;
    width: 25%; }
    section#couser-search .col-2 .col-inner {
      width: 100%;
      padding: 64px 15px 30px 15px;
      background: #662382; }
  section#couser-search .col-3 {
    padding: 64px 40px 30px 35px;
    background: #662382;
    position: relative;
    float: left;
    width: 50%; }
    section#couser-search .col-3 .filterstep {
      position: absolute;
      left: 35px;
      top: 15px;
      width: 35px;
      height: 35px;
      line-height: 35px;
      background: #e5007d;
      color: #fff;
      text-align: center;
      display: inline-block;
      margin-bottom: 10px;
      font-size: 20px;
      -moz-border-radius: 50%;
      -webkit-border-radius: 50%;
      -khtml-border-radius: 50%;
      border-radius: 50%; }
    section#couser-search .col-3 .catorinterest {
      position: absolute;
      right: 13px;
      top: 70px;
      bottom: 10px;
      border-right: #e5007d solid 1px; }
    section#couser-search .col-3 .catorinterest div {
      width: 35px;
      height: 35px;
      line-height: 35px;
      text-align: center;
      font-size: 17px;
      background: #e5007d;
      border-radius: 50%;
      position: absolute;
      right: -18px;
      top: 18px;
      color: #fff;
      font-weight: bold;
      z-index: 2; }
    section#couser-search .col-3 .col-inner {
      width: 100%;
      position: relative; }
  section#couser-search .container {
    height: auto; }
  section#couser-search .c-search div {
    color: #fff;
    padding: 17px 0px 8px 0px; }
    section#couser-search .c-search div span.s-icon {
      background-image: url("../images/course-s-arrow.png");
      background-repeat: no-repeat;
      background-position: 0px 5px;
      padding: 0px 12px 0px 7px; }
  section#couser-search .mid_input_search {
    padding-top: 9px;
    padding-bottom: 40px; }
  section#couser-search .dropcontainer_demo2 ul {
    position: absolute; }
  section#couser-search .dropcontainer_demo2 {
    position: relative;
    font-size: 16px;
    color: #777; }
  section#couser-search .trigger_demo2 {
    color: black;
    padding: 5px;
    font-size: 14px !important;
    width: 100%;
    background: #fff url(../images/dropdown-down.png) 100% center no-repeat;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  section#couser-search .trigger_demo2:hover {
    color: black;
    background: #f5f5f5 url(../images/dropdown-down.png) 100% center no-repeat; }
  section#couser-search .activetrigger_demo2 {
    color: black;
    padding: 5px;
    font-size: 14px;
    width: 100%;
    background: #f5f5f5 url(../images/dropdown-up.png) 100% center no-repeat;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  section#couser-search .activetrigger_demo2:hover {
    background: #f5f5f5 url(../images/dropdown-up.png) 100% center no-repeat;
    color: #777; }
  section#couser-search .activetrigger_demo2:active {
    background: #f5f5f5 url(../images/dropdown-up.png) 100% center no-repeat;
    color: #777; }
  section#couser-search .dropcontainer_demo2 ul {
    font-size: 16px;
    border: 1px solid black;
    border-top: none;
    background: #fff;
    list-style-type: none;
    padding: 5px;
    margin: 0px;
    width: 100%;
    z-index: 100;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  section#couser-search .dropcontainer_demo2 ul li {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    section#couser-search .dropcontainer_demo2 ul li a {
      padding: 5px;
      display: block; }
  section#couser-search .dropcontainer_demo2 ul li:hover {
    background: #f5f5f5;
    outline: none; }
  section#couser-search .dropcontainer_demo2 ul li:first-child {
    display: none; }
  section#couser-search .dropcontainer_demo2 ul li:last-child {
    border-bottom: none; }
  section#couser-search .dropdownhidden_demo2 {
    display: none; }
  section#couser-search .dropdownvisible_demo2 {
    height: auto; }
  section#couser-search .dropdownvisible_demo2 {
    height: 140px;
    overflow-y: scroll; }
  section#couser-search .mid_input_search input[type="submit"] {
    background-color: #e6785b;
    border: 0;
    width: 100%;
    padding: 10px 15px 6px 8px;
    text-align: right;
    background-repeat: no-repeat;
    background-position: 72% 10px;
    border-radius: 0px; }

.inner-page-course-filter {
  width: 100%;
  position: relative;
  z-index: 22222;
  background: #c2570f;
  padding: 20px 0px; }
  .inner-page-course-filter .search-row:after {
    content: "";
    display: table;
    clear: both; }
  .inner-page-course-filter label {
    position: relative;
    z-index: 3;
    display: block;
    color: #fff; }
  .inner-page-course-filter .search-row {
    margin-left: -5px;
    margin-right: -5px; }
  .inner-page-course-filter .col-1 {
    padding-left: 5px;
    padding-right: 5px;
    float: left;
    width: 25%; }
    .inner-page-course-filter .col-1 .col-inner {
      width: 100%;
      position: relative;
      padding-left: 15px;
      padding-right: 15px; }
      .inner-page-course-filter .col-1 .col-inner:before {
        content: "\f04b";
        position: absolute;
        top: 50%;
        margin-top: -8px;
        right: -11px;
        font-size: 16px !important;
        color: #fff;
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        z-index: 3; }
      .inner-page-course-filter .col-1 .col-inner:after {
        z-index: 1;
        background: #662382;
        position: absolute;
        left: 0;
        right: 0;
        top: -20px;
        bottom: -20px;
        content: "";
        border-right: #fff dashed 1px; }
      .inner-page-course-filter .col-1 .col-inner a {
        position: relative;
        z-index: 2; }
  .inner-page-course-filter .col-2 {
    padding-left: 25px;
    padding-right: 5px;
    float: left;
    width: 25%; }
    .inner-page-course-filter .col-2 .col-inner {
      width: 100%; }
  .inner-page-course-filter .col-3 {
    padding-left: 30px;
    padding-right: 50px;
    position: relative;
    float: left;
    width: 50%; }
    .inner-page-course-filter .col-3 .catorinterest {
      position: absolute;
      right: 13px;
      top: -10px;
      bottom: -10px;
      border-right: #662382 solid 1px; }
    .inner-page-course-filter .col-3 .catorinterest div {
      width: 35px;
      height: 35px;
      line-height: 35px;
      text-align: center;
      font-size: 17px;
      background: #662382;
      border-radius: 50%;
      position: absolute;
      right: -18px;
      top: 20px;
      color: #fff;
      font-weight: bold;
      z-index: 2; }
    .inner-page-course-filter .col-3 .col-inner {
      width: 100%; }
  .inner-page-course-filter .c-search div {
    color: #fff;
    padding: 17px 0px 8px 0px; }
    .inner-page-course-filter .c-search div span.s-icon {
      background-image: url("../images/course-s-arrow.png");
      background-repeat: no-repeat;
      background-position: 0px 5px;
      padding: 0px 12px 0px 7px; }
  .inner-page-course-filter .mid_input_search {
    padding-top: 9px;
    padding-bottom: 40px; }
  .inner-page-course-filter .dropcontainer_demo2 ul {
    position: absolute; }
  .inner-page-course-filter .dropcontainer_demo2 {
    position: relative;
    font-size: 16px;
    color: #777; }
  .inner-page-course-filter .trigger_demo2 {
    color: black;
    padding: 5px;
    font-size: 14px !important;
    width: 100%;
    background: #fff url(../images/dropdown-down.png) 100% center no-repeat;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .inner-page-course-filter .trigger_demo2:hover {
    color: black;
    background: #f5f5f5 url(../images/dropdown-down.png) 100% center no-repeat; }
  .inner-page-course-filter .activetrigger_demo2 {
    color: black;
    padding: 5px;
    font-size: 14px;
    width: 100%;
    background: #f5f5f5 url(../images/dropdown-up.png) 100% center no-repeat;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .inner-page-course-filter .activetrigger_demo2:hover {
    background: #f5f5f5 url(../images/dropdown-up.png) 100% center no-repeat;
    color: #777; }
  .inner-page-course-filter .activetrigger_demo2:active {
    background: #f5f5f5 url(../images/dropdown-up.png) 100% center no-repeat;
    color: #777; }
  .inner-page-course-filter .dropcontainer_demo2 ul {
    font-size: 16px;
    border: 1px solid black;
    border-top: none;
    background: #fff;
    list-style-type: none;
    padding: 5px;
    margin: 0px;
    width: 100%;
    z-index: 100;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .inner-page-course-filter .dropcontainer_demo2 ul li {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .inner-page-course-filter .dropcontainer_demo2 ul li a {
      padding: 5px;
      display: block; }
  .inner-page-course-filter .dropcontainer_demo2 ul li:hover {
    background: #f5f5f5;
    outline: none; }
  .inner-page-course-filter .dropcontainer_demo2 ul li:first-child {
    display: none; }
  .inner-page-course-filter .dropcontainer_demo2 ul li:last-child {
    border-bottom: none; }
  .inner-page-course-filter .dropdownhidden_demo2 {
    display: none; }
  .inner-page-course-filter .dropdownvisible_demo2 {
    height: auto; }
  .inner-page-course-filter .dropdownvisible_demo2 {
    height: 140px;
    overflow-y: scroll; }
  .inner-page-course-filter .mid_input_search input[type="submit"] {
    background-color: #e6785b;
    border: 0;
    width: 100%;
    padding: 10px 15px 6px 8px;
    text-align: right;
    background-repeat: no-repeat;
    background-position: 72% 10px;
    border-radius: 0px; }
  @media (max-width: 991px) {
    .inner-page-course-filter .col-1,
    .inner-page-course-filter .col-2,
    .inner-page-course-filter .col-3 {
      width: 100%; }
    .inner-page-course-filter .col-1,
    .inner-page-course-filter .col-2 {
      margin-bottom: 20px; } }

.dropdown_form #dLabel {
  border-radius: 2px;
  width: 100%;
  font-size: 16px;
  text-align: left;
  border: 1px solid #662382;
  background: #fff url(../images/dropdown-down.png) 100% center no-repeat;
  padding: 5px;
  color: black; }
  .dropdown_form #dLabel .caret {
    display: none !important; }
.dropdown_form .dropdown-menu {
  width: 100%;
  border-radius: 0;
  margin: 0;
  border-top: 0 !important;
  border-bottom: 1px solid black;
  border-left: 1px solid black;
  border-right: 1px solid black;
  font-size: 16px;
  padding: 5px;
  max-height: 210px;
  overflow: auto; }
  .dropdown_form .dropdown-menu li {
    padding: 5px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .dropdown_form .dropdown-menu li:hover {
      background: #f5f5f5; }
    .dropdown_form .dropdown-menu li a {
      padding: 0; }
      .dropdown_form .dropdown-menu li a:hover {
        background: none; }

.dropdown #dLabel {
  border-radius: 2px;
  width: 100%;
  font-size: 16px;
  text-align: left;
  border: 1px solid #662382;
  background: #fff url(../images/dropdown-down.png) 100% center no-repeat;
  padding: 5px;
  color: black; }
  .dropdown #dLabel .caret {
    display: none !important; }
.dropdown .dropdown-menu {
  width: 100%;
  border-radius: 0;
  margin: 0;
  border-top: 0 !important;
  border-bottom: 1px solid black;
  border-left: 1px solid black;
  border-right: 1px solid black;
  font-size: 16px;
  padding: 5px;
  max-height: 210px;
  overflow: auto; }
  .dropdown .dropdown-menu li {
    padding: 5px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .dropdown .dropdown-menu li:hover {
      background: #f5f5f5; }
    .dropdown .dropdown-menu li a {
      padding: 0; }
      .dropdown .dropdown-menu li a:hover {
        background: none; }

#title_banner {
  background-color: #662382;
  position: relative;
  z-index: 998;
  width: 100%; }
  #title_banner .second_search_title {
    text-align: left; }
    #title_banner .second_search_title div {
      display: table;
      height: 126px;
      float: right; }
      #title_banner .second_search_title div .h25 img {
        height: 24px !important; }
      #title_banner .second_search_title div h2,
      #title_banner .second_search_title div h1 {
        display: table-cell;
        vertical-align: middle;
        color: #fff;
        padding-left: 0px;
        font-size: 48px; }
        #title_banner .second_search_title div h2 img,
        #title_banner .second_search_title div h1 img {
          vertical-align: 0 !important;
          padding-right: 15px; }

#second-search {
  background-color: #662382;
  position: relative;
  z-index: 998;
  width: 100%; }
  #second-search .c-search {
    color: #fff;
    padding: 17px 0px 15px 0px; }
    #second-search .c-search span {
      font-weight: bold; }
    #second-search .c-search span.s-icon {
      background-image: url("../images/course-s-arrow.png");
      background-repeat: no-repeat;
      background-position: 0px 5px;
      padding: 0px 12px 0px 7px; }
  #second-search .second_search_title {
    text-align: right; }
    #second-search .second_search_title div {
      display: table;
      height: 126px;
      float: right;
      width: 100%; }
      #second-search .second_search_title div .h25 img {
        height: 24px !important; }
      #second-search .second_search_title div h2, #second-search .second_search_title div .h2,
      #second-search .second_search_title div h1, #second-search .second_search_title div .h1 {
        display: table-cell;
        vertical-align: middle;
        color: #fff;
        padding-left: 0px;
        font-size: 48px;
        font-weight: 700; }
        #second-search .second_search_title div h2 span, #second-search .second_search_title div .h2 span,
        #second-search .second_search_title div h1 span, #second-search .second_search_title div .h1 span {
          display: block;
          width: 100%;
          font-size: 12px;
          font-family: arial;
          text-transform: uppercase;
          margin-top: 10px; }
        #second-search .second_search_title div h2 img, #second-search .second_search_title div .h2 img,
        #second-search .second_search_title div h1 img, #second-search .second_search_title div .h1 img {
          vertical-align: 0 !important;
          padding-right: 15px; }
  #second-search .dropcontainer_demo2 {
    position: relative;
    font-size: 16px;
    color: #777; }
    #second-search .dropcontainer_demo2 .dropdownvisible_demo2 {
      position: absolute; }
  #second-search .trigger_demo2 {
    color: black;
    padding: 5px;
    font-size: 14px !important;
    width: 100%;
    background: #fff url(../images/dropdown-down.png) 100% center no-repeat;
    display: block;
    border: 1px solid black;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    #second-search .trigger_demo2:hover {
      color: black;
      background: #f5f5f5 url(../images/dropdown-down.png) 100% center no-repeat; }
  #second-search .activetrigger_demo2 {
    color: black;
    padding: 5px;
    font-size: 16px;
    width: 100%;
    background: #f5f5f5 url(../images/dropdown-up.png) 100% center no-repeat;
    display: block;
    border: 1px solid black;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    #second-search .activetrigger_demo2:hover {
      background: #f5f5f5 url(../images/dropdown-up.png) 100% center no-repeat;
      color: #777; }
  #second-search .activetrigger_demo2:active {
    background: #f5f5f5 url(../images/dropdown-up.png) 100% center no-repeat;
    color: #777; }
  #second-search .dropcontainer_demo2 ul {
    font-size: 16px;
    border: 1px solid black;
    border-top: none;
    background: #fff;
    list-style-type: none;
    padding: 5px;
    margin: 0px;
    width: 100%;
    z-index: 100;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  #second-search .dropcontainer_demo2 ul li {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    #second-search .dropcontainer_demo2 ul li a {
      padding: 5px;
      display: block; }
  #second-search .dropcontainer_demo2 ul li:hover {
    background: #f5f5f5;
    outline: none; }
  #second-search .dropcontainer_demo2 ul li:first-child {
    display: none; }
  #second-search .dropcontainer_demo2 ul li:last-child {
    border-bottom: none; }
  #second-search .dropdownhidden_demo2 {
    display: none; }
  #second-search .dropdownvisible_demo2 {
    height: auto; }
  #second-search .dropdownvisible_demo2 {
    height: 140px;
    overflow-y: scroll; }
  #second-search .input_search {
    padding-bottom: 24px; }
    #second-search .input_search input[type="submit"] {
      background-color: #e6785b;
      border: 0;
      width: 100%;
      padding: 10px 15px 6px 8px;
      text-align: right;
      background-image: url("../images/blue-arrow-right.png");
      background-repeat: no-repeat;
      background-position: right 75px center; }

.courseTitleBarBtn > div {
  display: table;
  height: 126px;
  text-align: right;
  width: 100%; }

.courseTitleBarBtn > div > div {
  display: table-cell;
  vertical-align: middle; }

a.courseInfoBtn {
  display: inline-block;
  padding: 10px 15px;
  color: white;
  background: #c2570f;
  font-size: 14px; }
  a.courseInfoBtn:hover {
    color: white; }

a.careerStatisticsBtn {
  display: inline-block;
  padding: 10px 15px;
  color: #662382;
  background: white;
  margin-left: 10px;
  font-size: 14px; }
  a.careerStatisticsBtn:hover {
    color: #c2570f; }

section#content-boxs {
  z-index: 999;
  background-color: white;
  width: 100%;
  padding-top: 46px;
  padding-bottom: 36px; }
  section#content-boxs .row > h2 {
    text-align: center;
    padding-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700; }
  section#content-boxs .row .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    section#content-boxs .row .flex-row > div {
      padding: 15px; }
      section#content-boxs .row .flex-row > div a {
        text-decoration: none !important;
        height: 100%;
        display: block;
        background-color: #fff;
        border: 1px solid #e8e8e8; }
        section#content-boxs .row .flex-row > div a:hover img {
          filter: none;
          /* Firefox 10+, Firefox on Android */
          -webkit-filter: none;
          /* Chrome 19+, Safari 6+, Safari 6+ iOS */ }
        section#content-boxs .row .flex-row > div a .boxOpecity {
          position: relative;
          width: 100%; }
          section#content-boxs .row .flex-row > div a .boxOpecity img {
            width: 100%; }
        section#content-boxs .row .flex-row > div a .boxOpecity:after {
          content: '\A';
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          background: rgba(35, 35, 35, 0.45);
          transition: all 0.5s;
          -webkit-transition: all 0.5s; }
        section#content-boxs .row .flex-row > div a .boxOpecity:hover:after {
          opacity: 0; }
      section#content-boxs .row .flex-row > div figcaption {
        text-align: center; }
        section#content-boxs .row .flex-row > div figcaption h3 {
          font-size: 20px;
          font-family: 'Oswald', sans-serif;
          font-weight: 900;
          color: #c05407;
          padding: 20px 10px 5px 10px; }
        section#content-boxs .row .flex-row > div figcaption h4 {
          font-size: 18px;
          text-align: center;
          padding: 5px 20px 20px 20px; }

section#whats-going-on-boxs {
  z-index: 999;
  background-color: #588b1b;
  width: 100%;
  padding-top: 55px;
  padding-bottom: 50px; }
  section#whats-going-on-boxs .row > h2 {
    color: white;
    text-align: center;
    padding-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700; }
  section#whats-going-on-boxs .row .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    section#whats-going-on-boxs .row .flex-row > div {
      padding: 15px; }
      section#whats-going-on-boxs .row .flex-row > div a {
        height: 100%;
        text-decoration: none !important;
        display: block;
        background-color: white; }
        section#whats-going-on-boxs .row .flex-row > div a img {
          width: 100%;
          height: auto;
          filter: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;&lt;filter id='grayscale'&gt;&lt;feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
          /* Firefox 10+, Firefox on Android */
          filter: gray;
          /* IE6-9 */
          -webkit-filter: grayscale(100%);
          /* Chrome 19+, Safari 6+, Safari 6+ iOS */ }
        section#whats-going-on-boxs .row .flex-row > div a:hover img {
          filter: none;
          /* Firefox 10+, Firefox on Android */
          filter: none;
          /* IE6-9 */
          -webkit-filter: none;
          /* Chrome 19+, Safari 6+, Safari 6+ iOS */ }
        section#whats-going-on-boxs .row .flex-row > div a .boxOpecity {
          position: relative;
          width: 100%; }
          section#whats-going-on-boxs .row .flex-row > div a .boxOpecity img {
            width: 100%; }
        section#whats-going-on-boxs .row .flex-row > div a .boxOpecity:after {
          content: '\A';
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          background: rgba(35, 35, 35, 0.45);
          transition: all 0.5s;
          -webkit-transition: all 0.5s; }
        section#whats-going-on-boxs .row .flex-row > div a .boxOpecity:hover:after {
          opacity: 0; }
      section#whats-going-on-boxs .row .flex-row > div figcaption {
        text-align: center; }
        section#whats-going-on-boxs .row .flex-row > div figcaption h3 {
          color: #d71027;
          font-size: 20px;
          font-family: 'Oswald', sans-serif;
          font-weight: 900;
          color: #c2570f;
          padding: 20px 10px 5px 10px; }
        section#whats-going-on-boxs .row .flex-row > div figcaption h4 {
          font-size: 18px;
          text-align: center;
          padding: 5px 20px 20px 20px; }

.brief {
  padding-top: 35px; }

.videoWrapper iframe {
  z-index: 9; }
.videoWrapper img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-height: 560px;
  max-width: 75%; }

#brief, .brief {
  padding-top: 35px;
  text-align: left; }
  #brief .videoWrapper, .brief .videoWrapper {
    margin-bottom: 40px; }
  #brief h3, .brief h3 {
    margin-bottom: 25px; }
  #brief h5, .brief h5 {
    margin-bottom: 25px;
    text-transform: capitalize; }
  #brief p span, .brief p span {
    color: #d71027;
    text-decoration: underline; }

.show_toggle {
  width: 30px;
  padding: 0;
  float: right; }
  .show_toggle .more_btn {
    font-size: 25px;
    line-height: 13px;
    padding: 9px 8px 7px 8px;
    background-color: #662382;
    color: #fff;
    cursor: pointer;
    list-style: none; }
  .show_toggle .less_btn {
    font-size: 25px;
    line-height: 13px;
    padding: 9px 10px 7px 11px;
    background-color: #662382;
    color: #fff;
    cursor: pointer; }

.indent_text {
  display: block;
  padding-left: 15px; }

.edit_btn {
  padding: 5px 10px 4px !important;
  margin-top: -4px; }

#list_container {
  padding: 35px 0 35px 0; }
  #list_container .list_content:first-child .col-xs-12 .more::before {
    content: "";
    border-top: 1px solid #232323;
    width: 100%;
    position: absolute;
    top: -80px; }
  #list_container .list_content {
    position: relative;
    padding-top: 20px; }
    #list_container .list_content .blue_btn {
      width: 70px !important;
      border-radius: 0px !important;
      padding: 5px 10px !important; }
    #list_container .list_content .list_content_register {
      padding: 0; }
      #list_container .list_content .list_content_register li {
        display: inline-block; }
        #list_container .list_content .list_content_register li p {
          text-transform: uppercase;
          padding-left: 5px; }
    #list_container .list_content h5 {
      margin-bottom: 20px; }
    #list_container .list_content p span {
      color: #d71027; }
    #list_container .list_content .more {
      position: relative; }
    #list_container .list_content hr {
      border-top: 0;
      border-left: 0;
      border-right: 0;
      border-bottom: 1px solid #232323; }
    #list_container .list_content .show_toggle {
      width: 30px;
      padding: 0;
      float: right; }
      #list_container .list_content .show_toggle .more_btn {
        font-size: 25px;
        line-height: 13px;
        padding: 9px 8px 7px 8px;
        background-color: #662382;
        color: #fff;
        cursor: pointer;
        list-style: none; }
      #list_container .list_content .show_toggle .less_btn {
        font-size: 25px;
        line-height: 13px;
        padding: 9px 10px 7px 11px;
        background-color: #618098;
        color: #fff;
        cursor: pointer; }

#table_content {
  padding: 35px 0; }

.orangeBar {
  position: relative;
  background-color: #c2570f;
  height: 36px;
  width: 100%; }

section#partner-logo {
  position: relative;
  background-color: #fff;
  width: 100%;
  padding: 40px 0px 32px 0; }
  section#partner-logo .owl-item {
    display: table; }
    section#partner-logo .owl-item .item {
      display: table-cell;
      vertical-align: middle;
      height: 100px; }

.customNavigation {
  text-align: center; }

.customNavigation a {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

#photo_banner {
  background-color: #c2570f;
  padding: 5em 0 0 0; }
  #photo_banner .photo_container {
    padding-bottom: 5em; }
  #photo_banner .stack {
    max-width: 300px;
    width: 100%;
    margin: auto;
    position: relative;
    left: 0;
    right: 0;
    z-index: 10;
    /* 1st element in stack (behind image) */
    /* 2nd element in stack (behind image) */
    /* Reset all rotations on hover */ }
    #photo_banner .stack .stack_container {
      max-width: 100%;
      height: auto;
      vertical-align: bottom;
      border: 20px solid #fff;
      background-color: #fff;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
      -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2); }
      #photo_banner .stack .stack_container img {
        width: 100%; }
      #photo_banner .stack .stack_container h2 {
        font-family: 'rutmerhandregular', Brush Script MT, cursive;
        text-align: center;
        padding: 20px 0; }
      #photo_banner .stack .stack_container .heading_rotation {
        -ms-transform: rotate(355deg);
        /* IE 9 */
        -webkit-transform: rotate(355deg);
        /* Safari */
        transform: rotate(355deg);
        /* Standard syntax */ }
    #photo_banner .stack::last-of-type {
      margin-right: 0; }
    #photo_banner .stack:before, #photo_banner .stack:after {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      border: 10px solid #b66348;
      background-color: #b66348;
      left: 0;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
      -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
      -webkit-transition: 0.3s all ease-out;
      -moz-transition: 0.3s all ease-out;
      transition: 0.3s all ease-out; }
    #photo_banner .stack:before {
      top: 4px;
      z-index: -10; }
    #photo_banner .stack:after {
      top: 8px;
      z-index: -20; }
    #photo_banner .stack:hover:before, #photo_banner .stack:hover:after {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      transform: rotate(0deg); }
  #photo_banner .twisted:before {
    -webkit-transform: rotate(4deg);
    -moz-transform: rotate(4deg);
    transform: rotate(4deg); }
  #photo_banner .twisted:after {
    -webkit-transform: rotate(-4deg);
    -moz-transform: rotate(-4deg);
    transform: rotate(-4deg); }
  #photo_banner .rotated-left:before {
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    transform: rotate(-3deg); }
  #photo_banner .rotated-left:after {
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    transform: rotate(-6deg); }
  #photo_banner .rotated:before {
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: rotate(2deg);
    -moz-transform: rotate(2deg);
    transform: rotate(2deg); }
  #photo_banner .rotated:after {
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: rotate(4deg);
    -moz-transform: rotate(4deg);
    transform: rotate(4deg); }

.arrow-bottom {
  width: 0px;
  height: 0px;
  margin: 5px auto 10px auto;
  border-style: solid;
  border-width: 17px 10px 0 10px; }

#campus_info_collapse {
  padding: 10px 0; }
  #campus_info_collapse .row .col-xs-6 {
    max-width: 100%;
    text-align: center; }
    #campus_info_collapse .row .col-xs-6 h5 {
      display: inline-block;
      text-align: center;
      padding: 15px 16px;
      color: #fff; }
    #campus_info_collapse .row .col-xs-6 .blossomfield_btn {
      background-color: #662382;
      cursor: pointer; }
    #campus_info_collapse .row .col-xs-6 .woodlands_btn {
      background-color: #d71027;
      cursor: pointer; }
    #campus_info_collapse .row .col-xs-6 #blossomfield-arrow-bottom {
      border-color: #662382 transparent transparent transparent;
      display: none; }
    #campus_info_collapse .row .col-xs-6 #woodlands-arrow-bottom {
      border-color: #d71027 transparent transparent transparent;
      display: none; }
  #campus_info_collapse .college_tab_content {
    padding: 20px 0 0 0; }

.view_our_courses {
  padding: 55px 0 100px 0; }
  .view_our_courses a {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 270px;
    margin: auto; }
  .view_our_courses .view_our_courses_btn {
    color: #fff;
    background-color: #d71027;
    padding: 15px 17px;
    display: inline-block; }
  .view_our_courses #offer_arrow {
    position: absolute;
    margin-right: -470px;
    left: 0;
    right: 0;
    top: 25px; }
    .view_our_courses #offer_arrow img {
      margin-left: -175px; }
    .view_our_courses #offer_arrow .view_our_courses_btn_decoration {
      font-family: 'rutmerhandregular', Brush Script MT, cursive;
      -ms-transform: rotate(7deg);
      /* IE 9 */
      -webkit-transform: rotate(7deg);
      /* Safari */
      transform: rotate(7deg);
      /* Standard syntax */ }

.orange-carousel-image {
  text-align: center;
  padding-bottom: 20px !important; }
  .orange-carousel-image img {
    border: 3px solid #FFF;
    max-width: 100%; }

.orange-banner-carousel-wrapper {
  width: 100%;
  margin: 0 auto; }

#orange-carousel-banner {
  background-color: #c2570f; }

#blue-carousel-banner {
  background-color: #662382; }

#blue-carousel-banner,
#orange-carousel-banner {
  position: relative;
  width: 100%;
  padding: 50px 0 30px 0; }
  #blue-carousel-banner .item,
  #orange-carousel-banner .item {
    width: 100% !important;
    height: 600px;
    position: relative;
    text-align: center;
    max-width: 100%; }
    #blue-carousel-banner .item img,
    #orange-carousel-banner .item img {
      border: 3px solid #fff;
      max-width: 100%;
      max-width: 90%;
      max-height: 100%;
      position: absolute;
      margin: auto;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
  #blue-carousel-banner .owl-controls .owl-nav .owl-prev,
  #orange-carousel-banner .owl-controls .owl-nav .owl-prev {
    position: absolute;
    left: 0px;
    margin-left: -35px;
    top: 0;
    background: url("../images/white-arrow-left.png") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    width: 29px !important;
    height: 100% !important;
    text-indent: -9999px !important; }
  #blue-carousel-banner .owl-controls .owl-nav .owl-next,
  #orange-carousel-banner .owl-controls .owl-nav .owl-next {
    position: absolute;
    right: 0px;
    margin-right: -35px;
    top: 0;
    background: url("../images/white-arrow-right-medium.png") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    width: 29px !important;
    height: 100% !important;
    text-indent: -9999px !important; }
  #blue-carousel-banner .owl-controls .owl-dots,
  #orange-carousel-banner .owl-controls .owl-dots {
    padding-top: 15px; }
    #blue-carousel-banner .owl-controls .owl-dots .owl-dot span,
    #orange-carousel-banner .owl-controls .owl-dots .owl-dot span {
      background-color: #fff;
      height: 12px !important;
      width: 12px !important; }
    #blue-carousel-banner .owl-controls .owl-dots .active span,
    #orange-carousel-banner .owl-controls .owl-dots .active span {
      background-color: black !important; }

.icon-chevron-left {
  background: url("../images/white-arrow-left.png");
  width: 12px;
  height: 17px; }

.icon-chevron-right {
  background: url("../images/white-arrow-right.png");
  width: 12px;
  height: 17px; }

.active-tab #aerospace-arrow-bottom,
.active-tab #sports-arrow-bottom,
.active-tab #enterprise-arrow-bottom,
.active-tab #retail-arrow-bottom,
.active-tab #hair-arrow-bottom,
.active-tab #blossomfield-arrow-bottom,
.active-tab #woodlands-arrow-bottom,
.active-tab #blue-arrow-bottom,
.active-tab #red-arrow-bottom {
  display: block !important; }

.red-blue-tabs li h5 {
  width: 300px !important; }
.red-blue-tabs .red-tab h5 {
  background-color: #d71027 !important;
  text-transform: uppercase; }
.red-blue-tabs .blue-tab h5 {
  background-color: #662382 !important;
  text-transform: uppercase; }
.red-blue-tabs #red-arrow-bottom {
  display: none;
  border-color: #d71027 transparent transparent transparent; }
.red-blue-tabs #blue-arrow-bottom {
  display: none;
  border-color: #662382 transparent transparent transparent; }

.academy-tabs {
  text-align: center; }
  .academy-tabs li {
    display: inline-block;
    vertical-align: top;
    padding: 0 5px; }
    .academy-tabs li:first-child {
      padding-left: 0 !important; }
    .academy-tabs li:last-child {
      padding-right: 0 !important; }
    .academy-tabs li h5 {
      background-color: #662382;
      width: 180px;
      color: #fff;
      padding: 13px 0 12px 0;
      cursor: pointer;
      margin-bottom: 8px !important; }
    .academy-tabs li #aerospace-arrow-bottom,
    .academy-tabs li #sports-arrow-bottom,
    .academy-tabs li #enterprise-arrow-bottom,
    .academy-tabs li #retail-arrow-bottom,
    .academy-tabs li #hair-arrow-bottom {
      border-color: #662382 transparent transparent transparent;
      display: none; }

.panel {
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important; }

.panel-heading {
  background-color: #662382 !important;
  color: #fff !important;
  border: none !important;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
  padding: 0px !important; }
  .panel-heading h5 {
    margin-bottom: 0 !important; }
  .panel-heading .panel-title {
    padding-top: 0px;
    padding-bottom: 0px; }
    .panel-heading .panel-title a {
      display: block;
      width: 100%;
      padding: 15px !important;
      background-color: #662382;
      text-decoration: none !important; }
      .panel-heading .panel-title a:hover {
        color: #fff !important; }
    .panel-heading .panel-title .collapsed {
      background-color: #561e6e !important; }

.panel-body {
  border: none !important; }

.calendar {
  padding-bottom: 35px; }

.calendar_key {
  padding-top: 20px;
  padding-left: 0 !important; }
  .calendar_key li {
    list-style: none; }
    .calendar_key li .key_box {
      width: 13px;
      height: 13px;
      border: 1px solid #e8e8e8;
      display: inline-block;
      vertical-align: middle; }
    .calendar_key li .h7 {
      display: inline-block;
      padding-left: 5px;
      line-height: 20px; }
    .calendar_key li #key_box_orange {
      background-color: #233f56; }
    .calendar_key li #key_box_today_events,
    .calendar_key li .swgc-calendar-todays-event {
      background: #c2570f; }
    .calendar_key li #key_box_blue {
      background-color: #618098; }
    .calendar_key li #key_box_red {
      background-color: #d71027; }

.event_readmore_btn {
  border: #c2570f solid 2px;
  color: #662382;
  display: inline-block;
  padding: 7px 17px; }
  .event_readmore_btn a {
    color: inherit !important;
    display: flex;
    align-items: center; }
  .event_readmore_btn img {
    display: inline-block;
    padding-right: 8px;
    vertical-align: middle; }
  .event_readmore_btn h5 {
    display: inline-block;
    vertical-align: middle;
    padding-top: 0px;
    margin-bottom: 0 !important;
    color: inherit !important; }

.events_list .event_item {
  padding-bottom: 25px;
  overflow: auto; }
  .events_list .event_item .events_item_img {
    padding: 0 10px 0 0 !important; }
  .events_list .event_item .events_images_container {
    background-position: center;
    height: 100%;
    padding-right: 5px !important;
    width: 125px;
    max-width: 100%;
    display: block; }
    .events_list .event_item .events_images_container img {
      max-width: 100%; }
  .events_list .event_item h5 {
    text-transform: uppercase; }
  .events_list .event_item h6 {
    padding-bottom: 5px;
    text-transform: uppercase; }
  .events_list .event_item p {
    padding-bottom: 10px; }

#h_o_r-brief {
  padding-top: 35px; }
  #h_o_r-brief h3 {
    padding-bottom: 25px; }
  #h_o_r-brief ul {
    padding-left: 12px; }
  #h_o_r-brief .bullet_list_title {
    padding-bottom: 0px; }
  #h_o_r-brief .content_padding {
    padding-top: 40px; }

.data-tab-2,
.data-tab-3,
.data-tab-4,
.data-tab-5 {
  display: none; }

.content_upper_padding {
  padding-top: 35px; }
  .content_upper_padding h5 {
    margin-bottom: 0px; }

.p_btm_padding_short {
  padding-bottom: 10px; }

.red_font {
  color: #d71027; }

.find_address_btn {
  width: 95% !important;
  padding: 9px 10px 9px !important; }

.blue_btn,
.blue_btn:hover {
  float: right;
  display: inline-block;
  background-color: #662382 !important;
  width: auto;
  text-align: center;
  color: #fff !important;
  padding: 10px 10px 9px 10px;
  border-radius: 2px;
  border-width: 0px;
  text-transform: uppercase;
  cursor: pointer; }
  .blue_btn h6,
  .blue_btn:hover h6 {
    display: inline-block; }

.purple_btn {
  float: right;
  display: inline-block;
  background-color: #662382;
  width: auto;
  text-align: center;
  color: #fff;
  padding: 10px 10px 9px 10px;
  border-radius: 2px;
  border-width: 0px;
  text-transform: uppercase;
  cursor: pointer; }
  .purple_btn h6 {
    display: inline-block; }

.clear_btn {
  display: inline-block;
  width: auto;
  text-align: center;
  padding: 10px 10px 9px 10px;
  border-radius: 2px;
  border-width: 0px;
  text-transform: uppercase;
  background-color: transparent; }
  .clear_btn.h5 {
    display: inline-block;
    color: #233f56;
    font-weight: 700; }

.red_btn {
  float: right;
  display: inline-block;
  background-color: #d71027;
  color: #fff;
  padding: 10px 10px 9px 10px;
  border-radius: 2px;
  cursor: pointer; }
  .red_btn h6 {
    display: inline-block; }

.course_details h5 {
  padding-bottom: 20px; }

.course_details_list {
  overflow: auto;
  padding-bottom: 35px; }
  .course_details_list .application_form_inputs {
    width: 100%; }

.add_course_wrapper {
  padding-bottom: 73px; }
  .add_course_wrapper .add_course h5 {
    padding-bottom: 20px; }

@media (max-width: 768px) {
  .add_course_wrapper .blue_btn {
    margin: 10px 0; }

  .orange_highlight_container ul li {
    display: block !important;
    padding-right: 0px !important; }
    .orange_highlight_container ul li h5 {
      padding-left: 0 !important; }
    .orange_highlight_container ul li:after {
      content: "" !important; } }
.orange_highlight_container {
  display: table;
  width: 100%;
  padding: 8px 13px 7px;
  margin-bottom: 5px;
  background-color: #c2570f; }
  .orange_highlight_container ul {
    padding: 0;
    margin: 0; }
    .orange_highlight_container ul li {
      display: table-cell;
      position: relative;
      padding-right: 10px; }
      .orange_highlight_container ul li:after {
        content: "|";
        color: #662382;
        font-size: 16px;
        position: absolute;
        right: 0;
        top: 0; }
      .orange_highlight_container ul li:last-child:after {
        content: ""; }
      .orange_highlight_container ul li:first-child h5 {
        padding-left: 0px; }
    .orange_highlight_container ul h5 {
      padding-left: 5px; }
  .orange_highlight_container h5 {
    display: inline-block;
    color: #662382;
    display: table-cell;
    vertical-align: middle; }
  .orange_highlight_container .checkbox_container {
    display: inline-block;
    float: right; }
    .orange_highlight_container .checkbox_container input {
      display: none; }
    .orange_highlight_container .checkbox_container input + label {
      background-color: #fff;
      border: 1px solid black;
      padding: 9px;
      border-radius: 5px;
      display: inline-block;
      position: relative;
      cursor: pointer;
      vertical-align: text-bottom; }
    .orange_highlight_container .checkbox_container input + label:active {
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1); }
    .orange_highlight_container .checkbox_container input:checked + label {
      border: 1px solid black;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
      color: black; }
    .orange_highlight_container .checkbox_container input:checked + label:after {
      content: '';
      position: absolute;
      vertical-align: text-top;
      left: 1px;
      top: 1px;
      background: #662382;
      display: block;
      border-radius: 4px;
      width: 16px;
      height: 16px;
      text-align: center; }
    .orange_highlight_container .checkbox_container input + label {
      margin-bottom: 0 !important;
      width: 20px;
      height: 20px; }
    .orange_highlight_container .checkbox_container input {
      display: none; }
    .orange_highlight_container .checkbox_container p {
      display: inline-block;
      padding: 0 8px; }

.checkbox_break {
  padding: 20px 0; }
  .checkbox_break p {
    display: inline-block; }
  .checkbox_break .checkbox_container {
    display: inline-block; }
    .checkbox_break .checkbox_container input {
      display: none; }
    .checkbox_break .checkbox_container input + label {
      background-color: #fff;
      border: 1px solid black;
      padding: 9px;
      border-radius: 5px;
      display: inline-block;
      position: relative;
      cursor: pointer;
      vertical-align: text-bottom; }
    .checkbox_break .checkbox_container input:disabled + label:after {
      background: #c2570f !important; }
    .checkbox_break .checkbox_container input + label:active {
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1); }
    .checkbox_break .checkbox_container input:checked + label {
      border: 1px solid black;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
      color: black; }
    .checkbox_break .checkbox_container input:checked + label:after {
      content: '';
      position: absolute;
      vertical-align: text-top;
      left: 1px;
      top: 1px;
      background: #662382;
      display: block;
      border-radius: 4px;
      width: 16px;
      height: 16px;
      text-align: center; }
    .checkbox_break .checkbox_container input + label {
      margin-bottom: 0 !important; }
    .checkbox_break .checkbox_container input {
      display: none; }
    .checkbox_break .checkbox_container p {
      display: inline-block;
      padding: 0 8px; }

.input_container {
  display: block;
  overflow: auto;
  padding: 0 0 5px; }
  .input_container .application_form_labels {
    padding-left: 0 !important;
    display: table; }
    .input_container .application_form_labels label {
      font-weight: normal !important;
      margin-bottom: 0;
      display: table-cell;
      vertical-align: middle;
      height: 36px;
      font-size: 14px; }
  .input_container .application_form_inputs {
    padding-left: 0 !important;
    padding-right: 0 !important; }
    .input_container .application_form_inputs input {
      width: 100%;
      border: 1px solid #662382;
      padding: 7px 5px;
      border-radius: 2px;
      font-weight: normal;
      margin-bottom: 5px; }
    .input_container .application_form_inputs p {
      text-transform: uppercase;
      font-size: 12px;
      padding-bottom: 0px !important;
      color: #e70003; }

.main_content section {
  padding-bottom: 20px; }
  .main_content section h5 {
    margin-bottom: 10px; }

.blue_container {
  background: #b668d6;
  padding: 75px 0; }

.darkblue_container {
  background-color: #662382; }

.listed_links {
  padding: 30px 35px 0 25px;
  margin-top: 45px; }
  .listed_links ul {
    padding-left: 0;
    list-style: none; }
    .listed_links ul li {
      color: #fff;
      font-size: 22px;
      background: url(../images/white-arrow-right.png) left center no-repeat !important;
      padding-left: 25px;
      margin-bottom: 30px; }
      .listed_links ul li:last-child {
        margin-bottom: 0px; }
  .listed_links .row {
    position: relative;
    margin-bottom: 30px; }
    .listed_links .row img {
      position: absolute;
      top: 3px; }
    .listed_links .row h4 {
      color: #fff;
      display: inline-block;
      padding-left: 25px; }
    .listed_links .row p {
      padding-left: 25px;
      color: #fff;
      padding-top: 10px; }

.padding-top-35 {
  padding-top: 25px !important; }

.padding-bottom-35 {
  padding-bottom: 35px !important; }

.nopadding {
  padding: 0 !important; }

.nopadding_left {
  padding-left: 0 !important; }

.nopadding_right {
  padding-right: 0 !important; }

.dark_break {
  border-top: 0px;
  border-bottom: 1px solid #232323;
  margin-bottom: 60px; }

.caps_left_heading {
  text-transform: uppercase;
  text-align: left !important; }

.indent-15 {
  display: block;
  padding-left: 15px; }

.pdf_icon {
  padding-bottom: 10px !important; }
  .pdf_icon div {
    float: left; }
    .pdf_icon div h6 {
      padding-top: 3px; }
  .pdf_icon .pdf_icon_label {
    float: left;
    line-height: 40px;
    padding-left: 5px;
    text-transform: uppercase; }

.content_contact_details {
  padding-bottom: 35px; }
  .content_contact_details h6 {
    padding-bottom: 15px; }

.img_border img {
  border: 2px solid black;
  padding: 5px; }

.search_result_container {
  border-bottom: 1px solid black; }
  .search_result_container .search_item {
    border-top: 1px solid black;
    padding: 20px 0;
    text-align: left;
    list-style: none; }
    .search_result_container .search_item .search_item_heading {
      text-transform: uppercase; }

.searchp {
  padding-left: 15px;
  padding-right: 15px; }
  .searchp h2,
  .searchp h4 {
    padding-top: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 18px; }
  .searchp #searchform {
    padding: 0; }
    .searchp #searchform label {
      text-transform: uppercase;
      font-weight: normal;
      padding-right: 10px; }
    .searchp #searchform #s {
      padding: 4px 3px;
      border: 1px solid #662382;
      margin-bottom: 10px; }
    .searchp #searchform #searchsubmit {
      border: 0px none;
      border-radius: 0;
      background: #662382 url(../images/search-icon.png) no-repeat center;
      height: 30px;
      width: 32px;
      margin-left: -4px;
      text-indent: -9999px; }

.courseSelect {
  color: #fff; }

#john_bolt {
  background: url(../images/governance/john_bolt.jpg) !important; }

#john_callaghan {
  background: url(../images/governance/john_callaghan.jpg) !important; }

#jane_coleman {
  background: url(../images/governance/jane_coleman.jpg) !important; }

#helena_stockford {
  background: url(../images/governance/helena_stockford.jpg) !important; }

#bill_wanley {
  background: url(../images/governance/bill_wanley.jpg) !important; }

#chris_baranowski {
  background: url(../images/governance/chris_baranowski.jpg) !important; }

#alex_palethorpe {
  background: url(../images/governance/alex_palethorpe.jpg) !important; }

#joe_kelly {
  background: url(../images/governance/joe_kelly.jpg) !important; }

.content-item {
  background: url(../images/governance/placeholder.png);
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 265px;
  margin: 20px auto;
  overflow: hidden;
  position: relative;
  width: 170px; }
  .content-item .overlay {
    border-bottom: 50px solid #662382;
    border-left: 50px solid transparent;
    bottom: 0;
    height: 0;
    opacity: .95;
    position: absolute;
    right: 0;
    text-indent: -9999px;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    width: 0;
    cursor: pointer; }
  .content-item:hover .overlay {
    border-bottom: 800px solid #618098;
    border-left: 800px solid transparent;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out; }
  .content-item .corner-overlay-content {
    bottom: 15px;
    color: #fff;
    position: absolute;
    right: 6px;
    bottom: 6px;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out; }
  .content-item:hover .corner-overlay-content {
    opacity: 0;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out; }
  .content-item .overlay-content {
    bottom: 0;
    color: #fff;
    left: 0;
    opacity: 0;
    padding: 15px;
    position: absolute;
    right: 0;
    top: 0;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
    .content-item .overlay-content p {
      overflow: auto;
      height: 240px; }
  .content-item:hover .overlay-content {
    opacity: 1;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s; }

.quick_nav {
  display: table;
  width: 100%;
  padding-left: 0 !important;
  list-style: none;
  cursor: pointer; }
  .quick_nav li {
    margin-bottom: 2px;
    padding: 10px 20px 9px;
    background-color: #c2570f;
    display: table;
    width: 100%; }
    .quick_nav li img {
      display: inline-block;
      padding-right: 8px; }
    .quick_nav li h5 {
      display: table-cell;
      color: #662382;
      vertical-align: middle;
      text-transform: uppercase;
      width: 100%; }

.student_profile_container ul {
  padding: 0 !important;
  list-style: none; }

.student_profile_item {
  padding: 20px 0;
  overflow: auto;
  border-bottom: 1px solid #000; }
  .student_profile_item h5 {
    margin-bottom: 5px !important; }
  .student_profile_item h6 {
    margin-bottom: 20px; }
  .student_profile_item img {
    border: 2px solid black;
    padding: 5px; }

.news_item {
  padding-bottom: 25px;
  overflow: auto; }
  .news_item .news_item_img {
    padding: 0 10px 0 0 !important; }
  .news_item .news_images_container {
    background-position: center;
    height: 100%;
    padding-right: 5px !important;
    width: 125px;
    max-width: 100%;
    display: block; }
    .news_item .news_images_container img {
      max-width: 100%;
      height: auto; }
  .news_item h5 {
    text-transform: uppercase; }
  .news_item h6 {
    padding-bottom: 5px; }
  .news_item p {
    padding-bottom: 10px; }

.news_article_container {
  padding: 35px 0 !important; }
  .news_article_container h5 {
    margin-bottom: 0 !important; }
  .news_article_container h6 {
    padding-bottom: 25px; }
  .news_article_container p {
    padding-right: 15px; }

@media (max-width: 768) {
  .news_article_container .img_border {
    text-align: center !important;
    margin-top: 25px; } }
.pagination {
  margin: 0 !important;
  padding: 0 0 35px 0 !important; }

.pagination span {
  color: #000 !important; }

.pagination a {
  color: #000 !important; }

.pagination span,
.pagination a {
  background: #dee1e6 !important;
  font-size: 14px;
  padding: 10px 15px !important;
  font-weight: bold; }

.pagination a:hover {
  background-color: #662382 !important;
  color: #fff !important; }

.margin-bottom_15 {
  margin-bottom: 15px; }

.video_tour_box {
  position: absolute;
  height: 90%;
  width: 91%;
  bottom: 0;
  margin: auto;
  right: 0;
  left: 0; }
  .video_tour_box div {
    display: table;
    height: 60%; }
    .video_tour_box div img {
      position: absolute;
      margin-left: -15px;
      top: 52px;
      height: 12px; }
    .video_tour_box div h5 {
      color: #fff;
      padding-top: 50px;
      margin: 0 !important;
      text-transform: uppercase;
      width: 100%;
      padding-right: 30px; }

@media (max-width: 993px) {
  .video_tour_box {
    width: 100%; } }
.video_tour_img {
  z-index: 99;
  height: 204px; }

.red_box {
  overflow: hidden;
  background-color: #d71027; }

.orange_box {
  overflow: hidden;
  background-color: #c2570f; }

.blue_box {
  overflow: hidden;
  background-color: #662382; }

.video_box_container {
  margin-bottom: 15px;
  overflow: hidden; }

#account_form {
  padding: 35px 0; }
  #account_form .login_form {
    padding-bottom: 25px; }
    #account_form .login_form h2 {
      padding-bottom: 25px;
      color: #662382;
      font-weight: bold; }
      #account_form .login_form h2 img {
        vertical-align: top;
        padding-top: 8px;
        padding-right: 10px; }
    #account_form .login_form label {
      color: #662382; }
    #account_form .login_form .forgot_password {
      text-align: right; }
      #account_form .login_form .forgot_password p {
        padding-top: 10px;
        border-bottom: 1px dotted;
        padding-bottom: 0px !important;
        display: inline-block; }
    #account_form .login_form .blue_btn {
      width: auto;
      margin-top: 20px; }
  #account_form .register_form h2 {
    padding-bottom: 25px;
    color: #662382;
    font-weight: bold; }
    #account_form .register_form h2 img {
      vertical-align: top;
      padding-top: 8px;
      padding-right: 10px; }
  #account_form .register_form label {
    color: #662382; }
  #account_form .register_form .blue_btn {
    width: auto;
    margin-top: 20px;
    background-color: #662382; }

.md-center-lg-left {
  text-align: right; }

@media (max-width: 992px) {
  .md-center-lg-left {
    text-align: center; } }
.course_action_btns {
  position: relative;
  margin-bottom: 30px; }
  .course_action_btns .course_action_btns_container div {
    display: table;
    height: 48px; }
    .course_action_btns .course_action_btns_container div .enquire_container {
      display: inline;
      cursor: pointer; }
    .course_action_btns .course_action_btns_container div a {
      display: table-cell;
      vertical-align: middle;
      height: 48px; }
      .course_action_btns .course_action_btns_container div a:hover {
        text-decoration: none !important; }
  .course_action_btns h6 {
    display: inline-block;
    padding-left: 5px;
    vertical-align: middle; }

.apply_btn {
  width: auto !important; }

@media (max-width: 992px) {
  .apply_btn {
    margin-top: 30px; }

  a {
    text-align: left; } }
@media (max-width: 768px) {
  .apply_btn {
    margin-top: 30px; }

  a {
    text-align: left; } }
@media print {
  .onlyForPrint {
    display: block !important;
    font-size: 25px !important;
    margin-bottom: 25px; }

  .normal-logo {
    display: none; }

  .print-logo {
    display: block !important; }

  .courseTable {
    border: #5A5A5A solid 5px !important;
    position: relative; }

  .courseTable:before {
    margin-top: 10px;
    margin-left: 20px;
    display: block;
    font-size: 14px;
    color: #000;
    content: "Delivery Information"; }

  .courseTable .courseCell:last-child {
    display: none; }

  .inner-page-course-filter {
    display: none; }

  #accessibility-nav,
  #mp-menu,
  #main-nav,
  .second-nav,
  #homepage-banner-image,
  #couser-search,
  .c-search,
  .dropdown,
  .orangeBar,
  .course_action_btns,
  #partner-logo,
  #upper-footer,
  #upper-section,
  #lower-footer,
  #lower-section,
  .top-right-nav,
  #main-navigation {
    display: none; }

  .header {
    padding: 0; }
    .header .text-center {
      text-align: right !important; }
      .header .text-center img {
        width: 120px; }

  #second-search {
    display: none;
    background-color: none; }
    #second-search .second_search_title {
      width: 100% !important; }
      #second-search .second_search_title div {
        text-align: center;
        width: 100%;
        width: 100%; }
        #second-search .second_search_title div img {
          display: none; }
        #second-search .second_search_title div h2,
        #second-search .second_search_title div h1 {
          color: black; }
          #second-search .second_search_title div h2 span,
          #second-search .second_search_title div h1 span {
            display: block;
            width: 100%;
            font-size: 12px;
            font-family: arial;
            text-transform: uppercase;
            margin-top: 10px; }

  .brief,
  #brief {
    margin-top: 0;
    padding-top: 0; } }
.course-field-outer {
  width: 100%;
  margin-bottom: 30px; }
  .course-field-outer h2 {
    margin-bottom: 10px !important;
    padding-bottom: 10px;
    color: #87be46;
    border-bottom: #1a1a1a solid 2px;
    font-size: 22px; }
  .course-field-outer p {
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 0; }
    .course-field-outer p:last-child {
      margin-bottom: 0; }
  .course-field-outer:last-child {
    margin-bottom: 0px; }

.haveQuestion h3 {
  font-family: 'Stag Bold';
  color: #d71027;
  margin-top: 10px;
  margin-bottom: 15px; }

.courseTable {
  width: 100%;
  display: table;
  border-collapse: separate;
  border-spacing: 5px;
  margin-bottom: 20px; }

.courseCell {
  display: table-cell;
  background: #662382;
  margin-right: 10px;
  color: white;
  text-align: center;
  padding: 10px;
  font-family: arial;
  font-size: 14px;
  max-width: 100px; }
  .courseCell .blue_btn {
    background: none !important; }

.courseCell:last-child {
  vertical-align: middle;
  position: relative;
  width: 130px;
  background: #c2570f; }

.courseCell:last-child a {
  background: #c2570f;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center; }

.courseCell:last-child a h6 {
  float: none !important;
  display: table-cell;
  vertical-align: middle; }

.courseCell:last-child input {
  background: none !important;
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  display: block;
  white-space: pre-wrap;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

h6.applylogin {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  font-size: 24px;
  font-weight: bold; }

.applylogin.red-btn {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%); }

h6.applylogin span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  color: #fff;
  font-size: 24px;
  font-weight: bold; }

.courseCell > span {
  display: block;
  color: #f18b46;
  margin-bottom: 15px; }

.courseCell > span i {
  display: block;
  font-size: 25px;
  margin-bottom: 5px; }

.courseCell > p {
  margin-bottom: 0px;
  padding-bottom: 0px; }

#superLearnersVideo {
  overflow: hidden; }

#superLearnersVideo > div {
  display: table-cell;
  vertical-align: middle; }

.course_action_btns_container {
  text-align: right; }

.course_action_btns_container > div {
  display: inline-block !important;
  text-align: right;
  float: none;
  height: auto !important; }

.course_action_btns .course_action_btns_container div a {
  background: #e3dce6;
  margin-right: 20px;
  display: block;
  padding: 20px;
  height: auto;
  color: #662382;
  text-align: center;
  width: 100px;
  z-index: 100;
  height: 100px; }

.course_action_btns h6 {
  display: block;
  margin-top: 10px; }

.enquire_container {
  width: 100px !important;
  height: 100px !important;
  display: block !important;
  margin-left: -20px; }

#demographicVideo {
  padding: 0 12px; }
  #demographicVideo .owl-item {
    max-width: 140px; }
    #demographicVideo .owl-item .item .tmbOpcty {
      position: relative;
      width: 100%; }
      #demographicVideo .owl-item .item .tmbOpcty img {
        width: 100%; }
    #demographicVideo .owl-item .item .tmbOpcty:after {
      content: '\A';
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-image: url("../images/play-icon.png");
      background-repeat: no-repeat;
      background-position: center;
      background-color: rgba(35, 35, 35, 0.45);
      transition: all 0.5s;
      -webkit-transition: all 0.5s; }
    #demographicVideo .owl-item .item .tmbOpcty:hover:after {
      background-image: url("../images/play-icon.png");
      background-repeat: no-repeat;
      background-position: center;
      background-color: rgba(35, 35, 35, 0); }
    #demographicVideo .owl-item .item figcaption {
      padding-top: 3px; }
      #demographicVideo .owl-item .item figcaption h6 {
        background-image: url("../images/black-arrow-right.png");
        background-repeat: no-repeat;
        background-position: left top 5px;
        line-height: 1.3em;
        padding-left: 15px;
        padding-top: 3px; }
      #demographicVideo .owl-item .item figcaption h6.redHdg {
        background-image: none;
        color: #d71027;
        padding-top: 0px; }
  #demographicVideo .owl-controls .owl-nav .owl-prev {
    text-indent: -9999px;
    background: transparent url("../images/blue-arrow-left-big.png");
    width: 22px;
    height: 32px;
    position: absolute;
    margin: auto;
    left: -15px;
    top: 0;
    bottom: 0; }
  #demographicVideo .owl-controls .owl-nav .owl-next {
    text-indent: -9999px;
    background: transparent url("../images/blue-arrow-right-big.png");
    width: 22px;
    height: 32px;
    position: absolute;
    margin: auto;
    right: -15px;
    top: 0;
    bottom: 0; }

#enquiry_title {
  text-align: center; }
  #enquiry_title p {
    padding-bottom: 5px;
    padding-top: 20px; }
  #enquiry_title img {
    margin-top: 10px;
    width: 165px; }

@media only screen and (max-width: 768px) {
  #enquiry_title img {
    display: none; } }
#warning_content {
  overflow: scroll;
  height: 230px; }

#enquire_modal .modal-footer h6 {
  display: inline; }

@media only screen and (max-width: 768px) {
  .enquiry_form {
    max-height: 230px !important;
    overflow: auto; }

  #UniversityLevelLearnerModal .modal-body,
  #ApprenticeModal .modal-body,
  #AduleLeanrerModal .modal-body {
    max-height: 230px !important;
    overflow: scroll; } }
.checkbox input:disabled ~ label:before {
  background: #c2570f !important;
  border-color: #c2570f !important;
  -webkit-border-radius: 2px !important;
  -moz-border-radius: 2px !important;
  border-radius: 2px !important; }

.application_form_inputs input[type="text"]:disabled,
.application_form_inputs select:disabled,
.application_form_inputs input[type="number"]:disabled,
.application_form_inputs input[type="checkbox"]:disabled,
.application_form_inputs input[type="tel"]:disabled,
.application_form_inputs input[type="email"]:disabled {
  display: table;
  width: 100%;
  padding: 8px 13px 7px !important;
  margin-bottom: 0 !important;
  background-color: #c2570f;
  border-width: 0px !important;
  -webkit-border-radius: 2px !important;
  -moz-border-radius: 2px !important;
  border-radius: 2px !important;
  text-transform: uppercase;
  color: #662382; }

textarea:disabled {
  display: table;
  width: 100%;
  padding: 8px 13px 7px !important;
  margin-bottom: 0 !important;
  background-color: #c2570f !important;
  border-width: 0px !important;
  -webkit-border-radius: 2px !important;
  -moz-border-radius: 2px !important;
  border-radius: 2px !important;
  text-transform: uppercase;
  color: #662382; }

.enquiry_form {
  max-height: 520px;
  overflow: auto; }
  .enquiry_form .input_container {
    display: block;
    overflow: auto;
    padding: 0 0 10px; }
    .enquiry_form .input_container .application_form_labels {
      padding-left: 0 !important;
      display: table; }
      .enquiry_form .input_container .application_form_labels label {
        font-weight: normal !important;
        margin-bottom: 0;
        display: table-cell;
        vertical-align: middle;
        height: 36px;
        font-size: 14px; }
    .enquiry_form .input_container .application_form_inputs {
      padding-left: 0 !important;
      padding-right: 0 !important; }
      .enquiry_form .input_container .application_form_inputs input {
        width: 100%;
        border: 1px solid #662382;
        padding: 7px 5px;
        border-radius: 2px;
        font-weight: normal; }
    .enquiry_form .input_container textarea {
      width: 100%;
      min-height: 100px;
      max-height: 300px;
      resize: vertical;
      border: 1px solid #662382;
      padding: 7px 5px;
      border-radius: 2px;
      font-weight: normal; }

.form_action_btns h6 {
  display: inline-block; }
.form_action_btns .red_btn {
  text-transform: uppercase;
  border: 0; }

#ui-datepicker-div {
  z-index: 9999 !important;
  border-radius: 0px !important;
  border-width: 0px !important;
  background-color: #618098 !important;
  color: #fff !important;
  padding: 0px !important;
  font-family: "interface_typobold", Helvetica Neue, Helvetica, Arial, sans-serif !important;
  height: 320px !important; }
  #ui-datepicker-div .ui-datepicker-header {
    border-radius: 0px;
    width: 100%;
    border: 0;
    background: #662382 !important;
    padding: 10px 0; }
    #ui-datepicker-div .ui-datepicker-header .ui-state-hover {
      border-width: 0px !important;
      height: 25px !important; }
  #ui-datepicker-div .ui-datepicker-calendar thead {
    color: #662382 !important;
    text-transform: uppercase; }
  #ui-datepicker-div .ui-datepicker-calendar tbody {
    background-color: #618098 !important; }
    #ui-datepicker-div .ui-datepicker-calendar tbody tr td {
      position: relative !important;
      width: 30px; }
      #ui-datepicker-div .ui-datepicker-calendar tbody tr td .ui-state-hover {
        background-color: #662382 !important; }
      #ui-datepicker-div .ui-datepicker-calendar tbody tr td a {
        position: absolute;
        margin: auto;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        text-align: center;
        border-width: 0px !important;
        background: transparent !important;
        line-height: 30px;
        color: #fff !important; }

.ui-widget-content {
  background: none !important; }

.ui-widget-header {
  background: none !important; }

.ui-datepicker-month {
  margin-right: 5px !important; }

.ui-datepicker-year {
  margin-left: 5px !important; }

.ui-datepicker-month,
.ui-datepicker-year {
  background: #fff url("../images/dropdown-down.png") no-repeat scroll 100% center;
  background-size: 25px !important;
  border: 1px solid black;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
  font-weight: normal;
  font-family: "interface_typobold", Helvetica Neue, Helvetica, Arial, sans-serif !important;
  height: 25px;
  border-radius: 0px !important;
  outline: 0; }

.ui-datepicker-prev,
.ui-datepicker-next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  height: 25px !important;
  border-width: 0px !important; }

.ui-datepicker-month input,
.ui-datepicker-year input {
  cursor: pointer; }

.ui-datepicker-prev {
  background: #662382 url(../images/white-arrow-left.png) center no-repeat !important;
  background-position: center left !important;
  background-size: 10px !important;
  margin-left: 5px; }
  .ui-datepicker-prev span {
    display: none !important; }

.ui-datepicker-next {
  background: #662382 url(../images/white-arrow-right-medium.png) center no-repeat !important;
  background-position: center right !important;
  background-size: 10px !important;
  margin-right: 5px; }
  .ui-datepicker-next span {
    display: none !important; }

.borderedpanel {
  border: #ccc solid 1px !important; }

[data-toggle="collapse"].collapsed i:before {
  content: "\f13a"; }

[data-toggle="collapse"] i:before {
  content: "\f139"; }

p:last-child {
  padding-bottom: 0px; }

#application_form #enquiryForm,
#application_form #profileForm,
#application_form #editProfileForm,
#application_form #applicationBasketForm {
  padding: 50px 0; }
  #application_form #enquiryForm .checkbox_break,
  #application_form #profileForm .checkbox_break,
  #application_form #editProfileForm .checkbox_break,
  #application_form #applicationBasketForm .checkbox_break {
    padding-bottom: 0 !important; }
  #application_form #enquiryForm .application_header,
  #application_form #profileForm .application_header,
  #application_form #editProfileForm .application_header,
  #application_form #applicationBasketForm .application_header {
    padding-top: 30px; }
    #application_form #enquiryForm .application_header .h35,
    #application_form #enquiryForm .application_header h5,
    #application_form #profileForm .application_header .h35,
    #application_form #profileForm .application_header h5,
    #application_form #editProfileForm .application_header .h35,
    #application_form #editProfileForm .application_header h5,
    #application_form #applicationBasketForm .application_header .h35,
    #application_form #applicationBasketForm .application_header h5 {
      display: inline-block !important; }
  #application_form #enquiryForm .application_subheader,
  #application_form #profileForm .application_subheader,
  #application_form #editProfileForm .application_subheader,
  #application_form #applicationBasketForm .application_subheader {
    padding-top: 10px;
    padding-bottom: 10px; }
    #application_form #enquiryForm .application_subheader .h35,
    #application_form #enquiryForm .application_subheader h5,
    #application_form #profileForm .application_subheader .h35,
    #application_form #profileForm .application_subheader h5,
    #application_form #editProfileForm .application_subheader .h35,
    #application_form #editProfileForm .application_subheader h5,
    #application_form #applicationBasketForm .application_subheader .h35,
    #application_form #applicationBasketForm .application_subheader h5 {
      display: inline-block !important; }
  #application_form #enquiryForm .application_your_details,
  #application_form #profileForm .application_your_details,
  #application_form #editProfileForm .application_your_details,
  #application_form #applicationBasketForm .application_your_details {
    padding-bottom: 30px; }
  #application_form #enquiryForm .application_housing .checkbox_break,
  #application_form #profileForm .application_housing .checkbox_break,
  #application_form #editProfileForm .application_housing .checkbox_break,
  #application_form #applicationBasketForm .application_housing .checkbox_break {
    margin: 10px 0;
    padding: 0px !important; }
  #application_form #enquiryForm .form_action_btns,
  #application_form #profileForm .form_action_btns,
  #application_form #editProfileForm .form_action_btns,
  #application_form #applicationBasketForm .form_action_btns {
    padding-top: 30px; }
  #application_form #enquiryForm p,
  #application_form #profileForm p,
  #application_form #editProfileForm p,
  #application_form #applicationBasketForm p {
    padding-bottom: 0; }
  #application_form #enquiryForm #list_container,
  #application_form #profileForm #list_container,
  #application_form #editProfileForm #list_container,
  #application_form #applicationBasketForm #list_container {
    padding-bottom: 20px !important; }
    #application_form #enquiryForm #list_container h5,
    #application_form #profileForm #list_container h5,
    #application_form #editProfileForm #list_container h5,
    #application_form #applicationBasketForm #list_container h5 {
      display: inline-block !important; }
#application_form .innerform_textarea {
  height: 86px !important;
  border-radius: 2px !important; }
#application_form #list_container {
  padding-bottom: 20px !important; }
#application_form .inner_form_wrapper {
  padding-bottom: 50px; }
#application_form textarea {
  position: relative;
  width: 100%;
  height: 145px;
  resize: none;
  border: 1px solid #233F56;
  padding: 5px;
  border-radius: 7px; }
#application_form .form_action_btns .blue_btn {
  float: none;
  margin-left: 10px;
  width: 130px; }
#application_form .form_action_btns .red_btn {
  width: 130px;
  text-align: center;
  float: none; }

.summary_wrapper .input_container {
  padding: 0px 0px 2px; }
.summary_wrapper .application_form_inputs {
  position: relative;
  display: table; }
  .summary_wrapper .application_form_inputs .orange_highlight_container {
    display: table-cell;
    padding: 10px 13px 9px; }

#courseModal #demographicSearch2 {
  padding-bottom: 10px !important; }
#courseModal #courseCatSearch2 {
  padding-bottom: 10px !important; }

#courseModal .searchpost {
  max-height: 520px;
  overflow: scroll;
  width: 100%; }

#savedSearchList {
  padding: 22px 0; }
  #savedSearchList .even {
    background-image: none !important;
    font-size: 18px;
    margin-bottom: 2px;
    position: relative;
    cursor: auto;
    padding: 7px 65px 3px 14px !important; }
    #savedSearchList .even #removeSave {
      position: absolute;
      margin: auto;
      right: 40px;
      top: 0;
      bottom: 0;
      height: 20px;
      cursor: pointer; }
      #savedSearchList .even #removeSave img {
        vertical-align: top; }
        #savedSearchList .even #removeSave img:hover {
          opacity: 0.8; }
    #savedSearchList .even #addToApply {
      position: absolute;
      margin: auto;
      right: 10px;
      top: 0;
      bottom: 0;
      height: 20px;
      cursor: pointer; }
      #savedSearchList .even #addToApply img {
        vertical-align: top; }
        #savedSearchList .even #addToApply img:hover {
          opacity: 0.8; }

.appCourseList {
  padding: 22px 0; }
  .appCourseList .headingSection .course_list_validation {
    margin-bottom: 10px;
    background: #FCF8E3;
    border: 1px solid #FAEBCC;
    color: #8A6D3B;
    padding: 5px 10px;
    border-radius: 5px; }
    .appCourseList .headingSection .course_list_validation ul {
      padding-left: 15px; }
      .appCourseList .headingSection .course_list_validation ul li {
        list-style: circle; }
    .appCourseList .headingSection .course_list_validation p {
      padding-bottom: 0px; }
  .appCourseList .headingSection .add_new_course_btn {
    background-color: #662382;
    background-image: url("../images/add.png");
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: 97% center;
    padding: 8px 14px;
    color: #fff !important;
    border: 0;
    text-align: left;
    width: 100%; }
    .appCourseList .headingSection .add_new_course_btn h6 {
      color: #fff;
      font-size: 18px; }
  .appCourseList .headingSection ul {
    padding: 0px;
    margin: 0px; }
    .appCourseList .headingSection ul li {
      margin: 2px 0px;
      list-style: none; }
      .appCourseList .headingSection ul li .even {
        padding: 7px 90px 3px 14px;
        position: relative;
        min-height: 34px;
        cursor: pointer; }
      .appCourseList .headingSection ul li span {
        position: absolute;
        margin: auto;
        top: 0;
        bottom: 0;
        height: 20px; }
        .appCourseList .headingSection ul li span img {
          padding-bottom: 2px; }
          .appCourseList .headingSection ul li span img:hover {
            opacity: 0.8; }
      .appCourseList .headingSection ul li ul {
        padding: 0; }
        .appCourseList .headingSection ul li ul li {
          padding: 15px 14px 30px; }

.courseHeadingList h5 {
  background-position: 2% center !important;
  padding: 7px 65px 3px 30px !important; }
  .courseHeadingList h5 .removeAppicaion {
    right: 10px !important; }
  .courseHeadingList h5 span {
    right: 38px; }

.edit_profile {
  padding-top: 20px; }
  .edit_profile hr {
    margin-top: 8px; }

.redError {
  color: #d71027 !important; }

.formHide {
  display: none; }

.consent_wrap hr {
  margin-top: 80px; }

.consent_checkbox_container {
  padding-top: 15px; }

.consent_checkbox_container input,
.consent_checkbox_container p {
  display: inline-block; }

.consent_checkbox_container p {
  padding-left: 5px;
  text-decoration: underline; }

#updateuser {
  width: 170px !important; }

.thankyou {
  padding: 35px 0 50px; }
  .thankyou .row:nth-child(1) {
    padding-bottom: 10px; }
  .thankyou .row:nth-child(2) {
    padding: 20px 0; }
  .thankyou .row:nth-child(3) {
    padding: 20px 0; }
  .thankyou p {
    padding-bottom: 0px !important; }
  .thankyou a {
    display: inline-block; }
  .thankyou .blue_btn {
    width: auto !important; }

.save_btn_container form {
  position: absolute;
  top: 0;
  bottom: 0; }
  .save_btn_container form img {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0; }
  .save_btn_container form h6 {
    position: absolute;
    display: inline-block;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    padding: 0; }
    .save_btn_container form h6 input {
      position: absolute;
      margin: 4px auto;
      top: 0;
      bottom: 0;
      padding-left: 39px;
      background: transparent;
      border-width: 0; }

.apply_btn input {
  padding: 10px 10px 6px; }

.products_container div {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px; }
  .products_container div img {
    max-width: 100%; }

.aligner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }

.img_200 {
  max-width: 200px;
  max-height: 200px; }

.img_275 {
  max-height: 275px !important; }

section.orange_boxes {
  padding: 75px 0; }
  section.orange_boxes h4 {
    margin-bottom: 45px; }
  section.orange_boxes .orange_box_wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex; }
    section.orange_boxes .orange_box_wrapper .orange_box_background {
      background-color: #c2570f;
      background-clip: content-box;
      margin-bottom: 20px; }
    section.orange_boxes .orange_box_wrapper .orange_box {
      padding: 15px 10px 20px;
      height: 100%;
      text-align: center;
      overflow: hidden; }
      section.orange_boxes .orange_box_wrapper .orange_box h6 {
        padding-bottom: 15px;
        text-transform: uppercase; }
      section.orange_boxes .orange_box_wrapper .orange_box p {
        padding-bottom: 0px; }
      section.orange_boxes .orange_box_wrapper .orange_box img {
        position: relative;
        margin: auto;
        top: -30px;
        bottom: 0;
        left: -65px;
        right: 0;
        width: auto;
        height: 110%;
        padding: 0 !important; }

.back_container {
  padding-top: 10px; }
  .back_container a {
    background: url("../images/white-arrow-left.png") no-repeat left top;
    background-size: auto 14px !important;
    padding-left: 15px; }
    .back_container a h5 {
      color: #fff;
      display: inline-block;
      text-transform: uppercase; }

@media (max-width: 991px) {
  section#couser-search .col-1 .col-inner {
    border-right: none;
    border-bottom: #fff dashed 1px; }

  section#couser-search .col-1 .col-inner:before {
    content: "\f0d7";
    position: absolute;
    top: auto;
    margin-top: 0px;
    margin-right: -9px;
    right: 50%;
    bottom: -17px; }

  section#couser-search .col-3 {
    padding: 60px 15px 15px 15px; }

  section#couser-search .col-3 .catorinterest {
    position: absolute;
    right: 30%;
    left: 30%;
    top: auto;
    bottom: -23px;
    border-right: none;
    border-top: #fff solid 1px; }

  section#couser-search .col-3 .catorinterest div {
    position: absolute;
    right: 50%;
    top: -18px;
    margin-right: -18px; }

  section#couser-search .col-3 .filterstep {
    left: 15px; }

  .inner-page-course-filter .col-1 {
    margin-bottom: 40px;
    margin-top: 40px; }

  .inner-page-course-filter .col-1 .col-inner:before {
    content: "\f0d7";
    position: absolute;
    top: auto;
    margin-top: 0px;
    right: 50%;
    bottom: -39px;
    margin-right: -15px;
    font-size: 30px !important; }

  .inner-page-course-filter .col-1 .col-inner:after {
    border-right: none;
    border-bottom: #fff dashed 1px; }

  .inner-page-course-filter .col-3 {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 60px; }

  .inner-page-course-filter .col-2 {
    padding-left: 5px;
    padding-right: 5px; }

  .inner-page-course-filter .col-3 .catorinterest {
    position: absolute;
    right: 30%;
    left: 30%;
    top: auto;
    bottom: 30px;
    border-right: none;
    border-bottom: #fff solid 1px; }

  .inner-page-course-filter .col-3 .catorinterest div {
    right: 50%;
    top: -17px;
    margin-right: -23px; }

  .courseTable {
    display: block; }

  .courseCell {
    display: block;
    width: 100%;
    max-width: 100%;
    border-bottom: #762896 solid 1px;
    padding: 0px 20px; }

  .courseCell > span {
    display: inline-block;
    color: #f4a874;
    margin-bottom: 0;
    float: left;
    height: 26px;
    line-height: 26px;
    margin-right: 20px; }

  .courseCell > span i {
    display: none; }

  .courseCell p {
    margin-left: 0;
    margin-bottom: 0px;
    padding-bottom: 0px;
    float: left;
    height: 26px;
    line-height: 26px; }

  h6.apply_btn {
    margin-top: 0px; }

  h6.applylogin {
    position: static;
    padding: 0; }

  .courseCell:last-child .blue_btn {
    padding: 0 !important; }

  .courseCell:last-child h6.applylogin.red-btn {
    position: static;
    transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    -webkit-transform: translateY(0);
    padding-top: 30px !important;
    padding-bottom: 30px !important; }

  h6.applylogin span {
    padding-top: 30px;
    padding-bottom: 30px;
    position: static;
    transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    -webkit-transform: translateY(0);
    margin: 0px !important; }

  .courseCell:last-child h6.apply_btn {
    width: 100% !important; }

  .courseCell:last-child h6.apply_btn input {
    position: static !important;
    width: 100% !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    background: #c2570f !important; }

  .courseCell:last-child {
    width: 100%;
    text-align: center;
    border: none !important;
    display: block;
    margin: 0 auto;
    height: auto;
    padding: 0; }
    .courseCell:last-child .blue_btn {
      float: none !important;
      width: 100% !important;
      font-size: 20px;
      font-weight: bold;
      padding-top: 30px;
      padding-bottom: 30px; }

  #second-search .second_search_title {
    text-align: left !important; }

  .courseTitleBarBtn > div > div {
    text-align: left; }

  a.careerStatisticsBtn,
  a.courseInfoBtn {
    font-size: 12px;
    margin-bottom: 10px; }

  a.careerStatisticsBtn {
    margin-left: 0px; }

  section#couser-search .col-1,
  section#couser-search .col-2,
  section#couser-search .col-3 {
    width: 100%; }

  section#couser-search h2 {
    font-size: 30px; }

  section#couser-search h2 span {
    font-size: 45px; }

  section#couser-search p {
    width: 100%;
    max-width: 100%; }

  .inner-page-course-filter .search-row {
    display: none; }

  .searchToggler {
    display: block !important;
    border: none !important;
    outline: none !important;
    width: 100%;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: none !important;
    text-align: left;
    padding: 0;
    cursor: pointer; }
    .searchToggler:after {
      content: "\f002";
      color: inherit;
      font-size: 24px !important;
      display: inline-block;
      font: normal normal normal 14px/1 FontAwesome;
      font-size: inherit;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      float: right; }
    .searchToggler.isActive:after {
      content: "\f077"; } }
/* ------------------------------ flexible content start--------------------------- */
.carousel-control i {
  font-size: 30px;
  top: 50%;
  margin-top: -10px;
  position: absolute; }

.carousel-caption {
  padding-bottom: 50px !important; }

.panel-body thead,
.responsive__table thead {
  background: #efefef; }

@media only screen and (max-width: 600px) {
  .carousel-caption h2 {
    font-size: 16px; }

  .carousel-caption p {
    font-size: 12px; }

  li.nav-item.dropdown.collapsed-menu {
    float: right; } }
.dropdown-item {
  display: block;
  width: 100%;
  padding: 3px 1.5rem;
  clear: both;
  font-weight: 400;
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #292b2c;
  text-align: inherit;
  white-space: nowrap;
  background: 0 0;
  border: 0; }

.nav-tabs .dropdown-menu {
  width: 100%;
  border-radius: 0;
  margin: 0;
  border-top: 0 !important;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 16px;
  padding: 5px;
  max-height: 300px;
  width: 200px;
  overflow: auto;
  left: auto;
  right: 0; }

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: white;
  background-color: #662382;
  border: 1px solid #662382;
  border-bottom-color: transparent;
  cursor: default; }

.tab-content {
  border: #ddd solid 1px;
  padding: 10px;
  border-top: none; }

table.responsive_table thead {
  color: white; }

.flexible-content-slider .carousel-control-prev,
.flexible-content-slider .carousel-control-next {
  outline: none !important; }
  .flexible-content-slider .carousel-control-prev:hover,
  .flexible-content-slider .carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.29); }
.flexible-content-slider li {
  position: relative; }
  .flexible-content-slider li .slidecap {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.85);
    color: #000000;
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 70%;
    max-width: 500px; }
    .flexible-content-slider li .slidecap h2 {
      font-weight: bold; }
    .flexible-content-slider li .slidecap p {
      color: #000; }
  .flexible-content-slider li .slidecap.plain-text {
    background: transparent !important; }
  .flexible-content-slider li a {
    margin-bottom: 0; }

.card-outer {
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -1.3rem;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex; }
  .card-outer > div {
    margin-bottom: 1.3rem; }
  .card-outer .card-box {
    height: 100%;
    border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    -webkit-border-radius: 3px;
    -ms-border-radius: 3px;
    border: #bbbbbb solid 1px;
    padding: 0.25rem;
    padding-bottom: 50px;
    position: relative; }
    .card-outer .card-box h3 {
      margin-bottom: 10px;
      margin-top: 10px;
      font-size: 22px; }
    .card-outer .card-box p {
      padding-bottom: 0px; }
    .card-outer .card-box > a {
      display: block; }
      .card-outer .card-box > a img {
        width: 100%;
        height: auto; }
    .card-outer .card-box .card-content {
      padding: 0.75rem; }
      .card-outer .card-box .card-content a {
        position: absolute;
        bottom: 1rem;
        left: 1rem;
        margin-bottom: 0px; }
  @media (min-width: 320px) and (max-width: 991px) {
    .card-outer {
      display: block; } }

.links-accordion {
  width: 100%;
  padding: 0px !important; }
  .links-accordion a {
    display: block;
    padding: 1rem;
    color: #333333;
    border-bottom: #bbbbbb solid 1px;
    border: #bbbbbb solid 1px;
    border-top: none; }
    .links-accordion a i {
      width: 25px; }
    .links-accordion a:hover {
      color: #662382; }
  .links-accordion table {
    margin-bottom: 0px; }
  @media (max-width: 700px) {
    .links-accordion table {
      display: block; }
      .links-accordion table tbody {
        display: block;
        width: 100%; }
        .links-accordion table tbody tr {
          display: block;
          width: 100%;
          background: none !important; }
          .links-accordion table tbody tr td {
            display: block;
            width: 100%;
            border-bottom: #bbbbbb solid 1px; } }

.btn-primary {
  background: #662382;
  border-color: #662382; }

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open > .btn-primary.dropdown-toggle {
  background: #561e6e;
  border-color: #561e6e; }

.links_list {
  width: 100%;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  overflow: hidden; }
  .links_list h3 {
    padding: 1rem;
    margin: 0;
    background: #662382;
    color: #fff;
    font-size: 2rem; }
  .links_list a {
    display: block;
    padding: 0.6rem;
    color: #333333;
    border-bottom: #bbbbbb solid 1px;
    border: #bbbbbb solid 1px;
    border-top: none;
    font-size: 1.5rem;
    font-weight: 300; }
    .links_list a:first-child {
      border-top: #bbbbbb solid 1px; }
    .links_list a i {
      width: 25px; }
    .links_list a:hover {
      color: #662382; }

.links-accordion {
  width: 100%;
  padding: 0px !important; }
  .links-accordion a {
    display: block;
    padding: 0.6rem;
    color: #333333;
    border-bottom: #bbbbbb solid 1px;
    border: #bbbbbb solid 1px;
    border-top: none; }
    .links-accordion a i {
      width: 25px; }
    .links-accordion a:hover {
      color: #618098; }
  .links-accordion table {
    margin-bottom: 0px; }
  @media (max-width: 700px) {
    .links-accordion table {
      display: block; }
      .links-accordion table tbody {
        display: block;
        width: 100%; }
        .links-accordion table tbody tr {
          display: block;
          width: 100%;
          background: none !important; }
          .links-accordion table tbody tr td {
            display: block;
            width: 100%;
            border-bottom: #bbbbbb solid 1px; } }

.full-width-bordered-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  overflow: hidden;
  border: #bbbbbb solid 1px; }
  .full-width-bordered-image img {
    width: 100%;
    height: auto; }

.entry-content img {
  max-width: 100%;
  height: auto; }
.entry-content .alignleft,
.entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left; }
.entry-content .alignright,
.entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right; }
.entry-content .aligncenter,
.entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both; }
.entry-content video,
.entry-content object,
.entry-content iframe {
  max-width: 100%;
  height: auto; }
.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px; }

.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px; }
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%; }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center; }

.bordered-video {
  padding: 5px;
  border: #bbbbbb solid 1px; }
  .bordered-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .bordered-video .flex-video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0px;
    height: 0;
    overflow: hidden;
    margin-bottom: 0px; }
  .bordered-video video {
    width: 100%;
    height: auto;
    display: block; }

/* -----------------------flexible content end--------------------------------------- */
/*********************
IMAGE GALLERY STYLES 
*********************/
/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: 0;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: .75;
  transition: opacity .2s;
  box-shadow: none; }

.pswp__button:focus,
.pswp__button:hover {
  opacity: 1; }

.pswp__button:active {
  outline: 0;
  opacity: .9; }

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(../images/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(../images/default-skin.png); }

  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: 0; } }
.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: 0;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  transition: opacity .25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
  transition: -webkit-transform .25s;
  transition: transform .25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px; }

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000; }

.pswp__share-tooltip a:first-child {
  border-radius: 2px 2px 0 0; }

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }

.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  transform: translateY(0); }

.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3e5c9a;
  color: #FFF; }

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3e5c9a; }

a.pswp__share--twitter:hover {
  background: #55acee;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #ce272d; }

a.pswp__share--download:hover {
  background: #DDD; }

.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: .75;
  padding: 0 10px; }

.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }

.pswp__caption small {
  font-size: 11px;
  color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

.pswp__caption--fake {
  visibility: hidden; }

.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  transition: opacity .25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }

.pswp__preloader--active .pswp__preloader__icn {
  background: url(../images/preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite; }

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: 0;
  opacity: .75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: 0;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .sowrapper a {
    float: none !important; }

  .sowrapper a img {
    max-width: 200px !important;
    margin-bottom: 10px; }

  .sowrapper p {
    margin-left: 0px !important;
    border-left: none !important;
    border-top: #E1E1E1 solid 1px;
    padding-left: 0px !important;
    margin-bottom: 0px !important;
    padding-top: 10px;
    width: 100%; }

  .bcback {
    display: none; }

  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }
.pswp__button--share {
  display: none; }

.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  opacity: .001; }

.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: 0; }

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  outline: 0; }

.pswp * {
  box-sizing: border-box; }

.pswp img {
  max-width: none; }

.pswp--animate_opacity {
  opacity: .001;
  will-change: opacity;
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  cursor: grab; }

.pswp--dragging .pswp__img {
  cursor: grabbing; }

.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }

.my-gallery img {
  width: 100%;
  height: auto; }

.my-gallery figure {
  margin: 0 !important; }

.my-gallery.row {
  margin-left: -15px;
  margin-right: -15px; }

.my-gallery .column,
.my-gallery .columns {
  padding: 15px; }

.my-gallery .column a,
.my-gallery .columns a {
  position: relative;
  display: block;
  border-radius: 5px;
  border: #bbbbbb solid 1px;
  height: 100%; }

.galcaption {
  color: #222;
  padding: 15px; }

/*-----------------gallery end-----------------*/
/* ------------------ accessibility start ----------------------  */
body#blackAndWhite {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray; }

body#highContrast #content-boxs,
body#highContrast .topbar-outer,
body#highContrast footer#upper-footer {
  background: black; }

body#highContrast .read-all-news {
  background: #fff; }

body#highContrast #main-navigation,
body#highContrast #Whats-going-on-boxs {
  background: #191919; }

body#highContrast section#content-boxs .row > h2,
body#highContrast section#Whats-going-on-boxs .row > h2 {
  color: #fff; }

body#highContrast section#content-boxs .row > div a {
  background: #fff; }

body#highContrast h1,
body#highContrast h2,
body#highContrast h3,
body#highContrast h4,
body#highContrast h5,
body#highContrast h6 {
  color: #0037ff; }

body#highContrast #brief p, body#highContrast .brief p,
body#highContrast #brief, body#highContrast .brief {
  color: #000; }

body#highContrast .inner-page-course-filter {
  background: #ff0000; }

body#highContrast #second-search {
  background-color: #000000; }

body#highContrast .orangeBar {
  background-color: #ff3500; }

body#highContrast .ubermenu-main .ubermenu-item-level-0.ubermenu-current-menu-item > .ubermenu-target {
  background: #fff; }

body#highContrast .topbar-icon :before {
  background: #0037ff; }

body#highContrast .bag-icon span {
  background: #ff0000; }

body#highContrast p,
body#highContrast span {
  color: #fffff; }

body#highContrast .ubermenu.ubermenu-main .ubermenu-item-level-0:hover > .ubermenu-target,
body#highContrast .ubermenu-main .ubermenu-item-level-0.ubermenu-active > .ubermenu-target {
  background: #fff; }

body#highContrast section#couser-search {
  background-image: none !important;
  background-color: #000 !important; }

body#highContrast section#couser-search .col-1 .col-inner {
  background: #ff008b; }

body#highContrast section#couser-search .col-2 .col-inner {
  background: #74d800; }

body#highContrast section#couser-search .col-3 .col-inner {
  background: #9c00b7; }

body#highContrast a {
  color: #003CFF !important; }

body#highContrast .normal-logo {
  display: none; }

body#highContrast .contrast-logo {
  display: block !important; }

.d-block {
  display: block; }

.d-none {
  display: none !important; }

/* ------------------ accessibility end ----------------------  */
@media screen and (max-width: 1091px) {
  .zoom-out-ico,
  .zoom-in-ico {
    display: none !important; }

  .modal-dialog {
    margin: 0 auto; }

  .enquiry_form {
    height: auto;
    max-height: 100% !important; } }
@media screen and (max-width: 767px) {
  div.courseContainer section.headingSection2 {
    padding-left: 15px !important;
    padding-right: 15px !important; } }
@media screen and (min-width: 991px) and (max-width: 1199px) {
  nav.ubermenu-main .ubermenu-item-level-0 > a.ubermenu-target {
    padding-left: 15px !important;
    padding-right: 15px !important; } }
/*----------------new flexible template css start-------------------*/
.responsive__table td,
.responsive__table th {
  height: auto !important; }

.newFlexibleTheme {
  background: #000; }
  .newFlexibleTheme .topbar-outer .top-left-nav ul li {
    border: none !important;
    padding: 0px 8px !important; }
  .newFlexibleTheme .topbar-outer ul li a {
    font-size: 12px; }
  .newFlexibleTheme .responsive__table tbody tr td:before {
    color: #fff; }
  .newFlexibleTheme a.secondLogo {
    width: 155px;
    display: inline-block !important;
    margin-left: 15px;
    padding-left: 15px;
    border-left: #fff solid 1px;
    cursor: pointer; }
    .newFlexibleTheme a.secondLogo img {
      width: 100%; }
  .newFlexibleTheme .topbar-outer,
  .newFlexibleTheme footer #lower-section,
  .newFlexibleTheme .orangeBar {
    background: #000; }
  .newFlexibleTheme #second-search,
  .newFlexibleTheme footer #upper-section,
  .newFlexibleTheme .flexible_news_carousel {
    background: transparent; }
  .newFlexibleTheme .owl-theme .owl-dots .owl-dot span {
    background-color: #ccc; }
  .newFlexibleTheme #_hj-f5b2a1eb-9b07_feedback ._hj-f5b2a1eb-9b07_feedback_minimized_label {
    background: #464646; }
  .newFlexibleTheme .flexible_news_carousel {
    padding-top: 40px;
    padding-bottom: 20px;
    margin-bottom: 0px !important; }
    .newFlexibleTheme .flexible_news_carousel .news-box {
      background: #000;
      border-color: #000; }
      .newFlexibleTheme .flexible_news_carousel .news-box .card-content *,
      .newFlexibleTheme .flexible_news_carousel .news-box .card-content {
        color: #fff !important; }
  .newFlexibleTheme .flexible_news_carousel .owl-nav .owl-prev,
  .newFlexibleTheme .flexible_news_carousel .owl-nav .owl-next {
    background: #000 !important;
    border-color: #000; }
    .newFlexibleTheme .flexible_news_carousel .owl-nav .owl-prev:hover,
    .newFlexibleTheme .flexible_news_carousel .owl-nav .owl-next:hover {
      background: #fff !important;
      border-color: #fff;
      color: #000; }
  .newFlexibleTheme .flexible_news_carousel .news-box .card-content button {
    background: #fff;
    border-color: #fff;
    color: #000 !important; }
  .newFlexibleTheme .flexible_news_carousel .news-box:hover .card-content button {
    background: #232323 !important;
    border-color: #232323 !important;
    color: #fff !important; }
  .newFlexibleTheme .footerNews .footerNewsInner a,
  .newFlexibleTheme .newsCarouselHeader h2 {
    color: #fff; }
  .newFlexibleTheme .topbar-icon :before {
    color: #000; }
  .newFlexibleTheme .bag-icon span {
    background: #cccccc;
    color: #000; }
  .newFlexibleTheme .ubermenu-main .ubermenu-target {
    color: #000 !important; }
  .newFlexibleTheme .ubermenu-main .ubermenu-item-level-0.ubermenu-current-menu-item > .ubermenu-target,
  .newFlexibleTheme .ubermenu-main .ubermenu-item-level-0.ubermenu-current-menu-parent > .ubermenu-target,
  .newFlexibleTheme .ubermenu-main .ubermenu-item-level-0:hover > .ubermenu-target,
  .newFlexibleTheme .ubermenu-main .ubermenu-item-level-0 > .ubermenu-target:hover {
    background: #000 !important;
    color: #fff !important; }
  .newFlexibleTheme .ubermenu-main .ubermenu-item-level-0.ubermenu-current-menu-ancestor > .ubermenu-target {
    color: #000 !important;
    background: #fff !important; }
    .newFlexibleTheme .ubermenu-main .ubermenu-item-level-0.ubermenu-current-menu-ancestor > .ubermenu-target:hover {
      background: #000 !important;
      color: #fff !important; }
  .newFlexibleTheme .flexible_content_area,
  .newFlexibleTheme .flexible_content_area * {
    color: #fff !important; }
  .newFlexibleTheme .pswp {
    z-index: 999999999999999999; }
  .newFlexibleTheme .my-gallery {
    background: #232323;
    border-radius: 5px;
    padding: 10px;
    margin-left: 0px !important;
    margin-right: 0px !important; }
    .newFlexibleTheme .my-gallery .column a,
    .newFlexibleTheme .my-gallery .columns a {
      border: none; }
  .newFlexibleTheme .inner-page-course-filter {
    background: #000; }
  .newFlexibleTheme .inner-page-course-filter .col-1 .col-inner:after,
  .newFlexibleTheme .inner-page-course-filter .col-3 .catorinterest div {
    background: #232323; }
  .newFlexibleTheme .inner-page-course-filter .col-3 .catorinterest {
    background: #232323;
    border-color: #232323; }
  .newFlexibleTheme .inner-page-course-filter .trigger_demo2 {
    background: #fff url(../images/dropdown-down-black.png) 100% center no-repeat; }
  .newFlexibleTheme .inner-page-course-filter .activetrigger_demo2 {
    background: #f5f5f5 url(../images/dropdown-up-black.png) 100% center no-repeat; }
  .newFlexibleTheme .panel-heading .panel-title .collapsed,
  .newFlexibleTheme .panel-heading .panel-title a {
    background: #232323 !important; }
  .newFlexibleTheme .panel-body {
    background: #000;
    border: #232323 solid 1px !important;
    color: #fff; }
    .newFlexibleTheme .panel-body * {
      color: #fff; }
  .newFlexibleTheme .nav-tabs > li.active > a,
  .newFlexibleTheme .nav-tabs > li.active > a:hover,
  .newFlexibleTheme .nav-tabs > li.active > a:focus {
    background: #232323;
    border-color: #232323;
    color: #fff; }
  .newFlexibleTheme .tab-content {
    border: #232323 solid 1px !important;
    background: #232323; }
  .newFlexibleTheme .tab-content * {
    color: #fff !important; }
  .newFlexibleTheme .nav-tabs > li > a {
    color: #fff; }
    .newFlexibleTheme .nav-tabs > li > a:hover {
      color: #000; }
  .newFlexibleTheme .nav-tabs {
    border-color: #232323 !important; }
  .newFlexibleTheme .bordered-video {
    border: #232323 solid 1px; }
  .newFlexibleTheme .links_list h3 {
    background: #232323; }
  .newFlexibleTheme .links_list a {
    border-bottom: #232323 solid 1px;
    border: #232323 solid 1px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden; }
    .newFlexibleTheme .links_list a:link, .newFlexibleTheme .links_list a:link i {
      color: #E5007D !important;
      text-decoration: none !important; }
    .newFlexibleTheme .links_list a:visited, .newFlexibleTheme .links_list a:visited i {
      color: #AF0060 !important;
      text-decoration: none !important; }
    .newFlexibleTheme .links_list a:hover, .newFlexibleTheme .links_list a:hover i {
      color: #FF008C !important;
      ext-decoration: none !important; }
    .newFlexibleTheme .links_list a:active, .newFlexibleTheme .links_list a:active i {
      color: #AF0060 !important;
      text-decoration: none !important; }
  .newFlexibleTheme .responsive__table {
    border-color: #232323; }
    .newFlexibleTheme .responsive__table thead {
      background: #232323; }
      .newFlexibleTheme .responsive__table thead th {
        color: #fff; }
  .newFlexibleTheme .table-bordered > thead > tr > th,
  .newFlexibleTheme .table-bordered > thead > tr > td,
  .newFlexibleTheme .table-bordered > tbody > tr > th,
  .newFlexibleTheme .table-bordered > tbody > tr > td,
  .newFlexibleTheme .table-bordered > tfoot > tr > th,
  .newFlexibleTheme .table-bordered > tfoot > tr > td {
    border-color: #232323;
    color: #fff; }
  .newFlexibleTheme .table-bordered > thead > tr > td,
  .newFlexibleTheme .table-bordered > tbody > tr > td,
  .newFlexibleTheme .table-bordered > tfoot > tr > td {
    background: #000000 !important; }
  .newFlexibleTheme .links-accordion a {
    border-color: #232323 !important;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden; }
    .newFlexibleTheme .links-accordion a:link, .newFlexibleTheme .links-accordion a:link i {
      color: #E5007D !important;
      text-decoration: none !important; }
    .newFlexibleTheme .links-accordion a:visited, .newFlexibleTheme .links-accordion a:visited i {
      color: #AF0060 !important;
      text-decoration: none !important; }
    .newFlexibleTheme .links-accordion a:hover, .newFlexibleTheme .links-accordion a:hover i {
      color: #FF008C !important;
      ext-decoration: none !important; }
    .newFlexibleTheme .links-accordion a:active, .newFlexibleTheme .links-accordion a:active i {
      color: #AF0060 !important;
      text-decoration: none !important; }
  .newFlexibleTheme .card-outer .card-box {
    border-color: #232323;
    background: #232323; }
    .newFlexibleTheme .card-outer .card-box .card-content {
      color: #fff; }
      .newFlexibleTheme .card-outer .card-box .card-content * {
        color: #fff !important; }
    .newFlexibleTheme .card-outer .card-box .btn {
      background: #fff;
      border-color: #fff;
      color: #000 !important; }
      .newFlexibleTheme .card-outer .card-box .btn:hover {
        background: #000 !important;
        border-color: #000 !important;
        color: #fff !important; }
  .newFlexibleTheme .full-width-bordered-image {
    border-color: #232323; }
  .newFlexibleTheme .cd-primary-nav-trigger .cd-menu-text {
    color: #000; }
  .newFlexibleTheme .cd-primary-nav-trigger .cd-menu-icon,
  .newFlexibleTheme .cd-primary-nav-trigger .cd-menu-icon::before,
  .newFlexibleTheme .cd-primary-nav-trigger .cd-menu-icon:after {
    background-color: #000000; }
  .newFlexibleTheme .galcaption {
    color: #fff; }
  @media (min-width: 320px) and (max-width: 991px) {
    .newFlexibleTheme .top-left-nav {
      display: none !important; } }
  @media (min-width: 320px) and (max-width: 600px) {
    .newFlexibleTheme .top-logo {
      display: inline-block !important;
      width: 130px !important; }
    .newFlexibleTheme .secondLogo {
      width: 110px !important; }
    .newFlexibleTheme .topbar-outer .top-left-nav,
    .newFlexibleTheme .topbar-outer .top-right-nav {
      margin-top: 25px; }
    .newFlexibleTheme .topbar-outer .col-md-12 {
      text-align: center; } }
  .newFlexibleTheme code {
    background: #232323; }
  .newFlexibleTheme .btn {
    background: #fff !important;
    border-color: #fff !important;
    color: #000 !important; }
    .newFlexibleTheme .btn * {
      color: #000 !important; }
    .newFlexibleTheme .btn:hover {
      background: #232323 !important;
      border-color: #232323 !important;
      color: #fff !important; }
      .newFlexibleTheme .btn:hover * {
        color: #fff !important; }
  .newFlexibleTheme a.read-all-news {
    color: #000 !important; }
  .newFlexibleTheme a.read-all-news:hover {
    background: #000 !important;
    color: #fff !important; }
  .newFlexibleTheme .flexible_content_area a:link {
    color: #E5007D !important;
    text-decoration: none !important; }
  .newFlexibleTheme .flexible_content_area a:visited {
    color: #AF0060 !important;
    text-decoration: none !important; }
  .newFlexibleTheme .flexible_content_area a:hover {
    color: #FF008C !important;
    ext-decoration: none !important; }
  .newFlexibleTheme .flexible_content_area a:active {
    color: #AF0060 !important;
    text-decoration: none !important; }
  .newFlexibleTheme footer #upper-section #footer-search .footer_input_search {
    color: #000 !important; }
  .newFlexibleTheme footer #upper-section #footer-news .read-all-news {
    color: #000 !important; }
  .newFlexibleTheme footer #upper-section #footer-news .read-all-news:hover {
    color: #fff !important; }

.my-gallery.row {
  display: flex;
  flex-flow: wrap; }

@media (max-width: 500px) {
  .flexible-content-slider .carousel-caption {
    display: none; } }
/*----------------new flexible template css end-------------------*/
.row-404 {
  display: flex;
  flex-flow: wrap; }

.row-404 .col-sm-6 {
  margin-bottom: 20px; }

li.subHeading {
  display: none; }

li.courseHeading {
  display: block; }

button.enquireCourse {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  width: 100%;
  background: none !important;
  border: none !important;
  outline: none !important;
  font-size: 20px; }

.odd {
  background-color: #e3dce6;
  background-image: url("../images/white-arrow-right.png");
  background-repeat: no-repeat;
  background-position: 97% center;
  color: #662382;
  cursor: pointer;
  padding: 10px 15px; }
  .odd a {
    color: #fff; }
    .odd a:hover {
      background-color: #233f56;
      background-image: url("../images/white-arrow-down.png");
      background-repeat: no-repeat;
      background-position: 97% center;
      color: #fff; }
  .odd.active {
    background-color: #233f56;
    background-image: url("../images/white-arrow-down.png");
    background-repeat: no-repeat;
    background-position: 97% center;
    padding: 7px 14px 3px;
    color: #fff !important; }

.oddSub {
  background-color: #dee1e6;
  background-image: url("../images/white-arrow-right.png");
  background-repeat: no-repeat;
  background-position: 97% center;
  color: #662382;
  padding: 10px 15px; }
  .oddSub a {
    color: #fff; }
    .oddSub a:hover {
      background-color: #c2570f;
      background-image: url("../images/white-arrow-down.png");
      background-repeat: no-repeat;
      background-position: 97% center;
      color: #fff; }
  .oddSub .active {
    background-color: #c2570f;
    background-image: url("../images/white-arrow-down.png");
    background-repeat: no-repeat;
    background-position: 97% center;
    color: #233f56;
    padding: 7px 14px 3px;
    color: #233f56; }
    .oddSub .active h5 {
      color: #233f56; }

.even {
  background-color: #faebe6;
  background-image: url("../images/blue-arrow-right.png");
  background-repeat: no-repeat;
  background-position: 97% center;
  color: #662382;
  cursor: pointer;
  padding: 10px 15px; }
  .even a:hover {
    background-color: #c2570f;
    background-image: url("../images/white-arrow-down.png");
    background-repeat: no-repeat;
    background-position: 97% center;
    color: #fff; }

.evenSub {
  background-color: #faebe6;
  background-image: url("../images/blue-arrow-right.png");
  background-repeat: no-repeat;
  background-position: 97% center;
  color: #662382;
  padding: 7px 14px 3px; }
  .evenSub:hover {
    background-color: #c2570f;
    background-image: url("../images/white-arrow-right.png");
    background-repeat: no-repeat;
    background-position: 97% center;
    color: #fff; }

.courseContainer .headingSection {
  padding: 0px !important; }
  .courseContainer .headingSection ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px; }
    .courseContainer .headingSection ul li h5 {
      font-size: 18px;
      margin: 2px;
      color: #233f56; }
    .courseContainer .headingSection ul li a {
      display: block;
      margin: 2px 0px;
      color: #233f56;
      font-size: 18px;
      font-weight: 600;
      width: 100%; }

@media screen and (max-width: 991px) {
  button.enquireCourse {
    position: static; } }
.content-heading .h25 {
  text-align: center;
  padding-top: 36px;
  padding-bottom: 26px; }
.content-heading .content-container {
  text-align: center;
  padding-bottom: 10px; }

#video-container {
  background-color: #662382; }

#video-thumbnail {
  padding: 56px 0 49px 0; }
  #video-thumbnail #faceVideo, #video-thumbnail #superLearnersVideo {
    padding: 0 12px; }
    #video-thumbnail #faceVideo .owl-item, #video-thumbnail #superLearnersVideo .owl-item {
      max-width: 140px; }
      #video-thumbnail #faceVideo .owl-item .item .tmbOpcty, #video-thumbnail #superLearnersVideo .owl-item .item .tmbOpcty {
        position: relative;
        width: 100%; }
        #video-thumbnail #faceVideo .owl-item .item .tmbOpcty img, #video-thumbnail #superLearnersVideo .owl-item .item .tmbOpcty img {
          width: 100%; }
      #video-thumbnail #faceVideo .owl-item .item .tmbOpcty:after, #video-thumbnail #superLearnersVideo .owl-item .item .tmbOpcty:after {
        content: '\A';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-image: url("../images/play-icon.png");
        background-repeat: no-repeat;
        background-position: center;
        background-color: rgba(35, 35, 35, 0.45);
        transition: all 0.5s;
        -webkit-transition: all 0.5s; }
      #video-thumbnail #faceVideo .owl-item .item .tmbOpcty:hover:after, #video-thumbnail #superLearnersVideo .owl-item .item .tmbOpcty:hover:after {
        background-image: url("../images/play-icon.png");
        background-repeat: no-repeat;
        background-position: center;
        background-color: rgba(35, 35, 35, 0); }
      #video-thumbnail #faceVideo .owl-item .item figcaption, #video-thumbnail #superLearnersVideo .owl-item .item figcaption {
        padding-top: 3px; }
        #video-thumbnail #faceVideo .owl-item .item figcaption h6, #video-thumbnail #superLearnersVideo .owl-item .item figcaption h6 {
          background-image: url("../images/black-arrow-right.png");
          background-repeat: no-repeat;
          background-position: left 0px center;
          line-height: 1.3em;
          padding-left: 15px;
          padding-top: 3px; }
        #video-thumbnail #faceVideo .owl-item .item figcaption h6.redHdg, #video-thumbnail #superLearnersVideo .owl-item .item figcaption h6.redHdg {
          background-image: none;
          color: #d71027;
          padding-top: 0px; }

.icon-chevron-left {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/banner-arrow-left.png");
  background-repeat: no-repeat;
  height: 30px;
  width: 30px; }

#red-bar {
  padding: 15px 0 10px 0;
  background-color: #d71027; }
  #red-bar .h35 {
    color: white;
    text-align: center; }

.article_read_more_btn {
  position: absolute;
  bottom: 20px;
  right: 0;
  background-color: #303030;
  padding: 5px 10px; }

.morecontent span {
  display: none;
  position: relative; }

.morelink {
  background-color: #303030;
  padding: 5px 10px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 5px 0;
  text-decoration: none !important; }

.morelink h6 {
  color: #fff;
  font-weight: bold;
  font-style: italic; }

.morecontent a {
  color: #444; }

footer #upper-section {
  color: #fff;
  background-color: #662382;
  width: 100%;
  padding: 40px 0px 40px; }
  footer #upper-section a, footer #upper-section .social {
    color: #fff;
    text-decoration: none; }
  footer #upper-section label {
    max-width: 100%; }
  footer #upper-section ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: left;
    font-size: 16px;
    font-weight: 700; }
    footer #upper-section ul li {
      padding: 5px 0px 0px;
      font-style: normal;
      font-weight: 400;
      font-size: 16px; }
    footer #upper-section ul span {
      font-size: 14px;
      font-weight: 700;
      width: 70px;
      display: inline-block; }
    footer #upper-section ul.social-links li {
      display: inline-block;
      margin-right: 6px; }
  footer #upper-section .sub-heading {
    font-size: 14px;
    font-weight: 700;
    padding: 20px 0px 10px;
    border-bottom: 1px solid #fff;
    display: block; }
  footer #upper-section #footer-news .news-item {
    margin-top: 20px;
    color: #fff; }
    footer #upper-section #footer-news .news-item img {
      float: left;
      width: 70px;
      height: auto;
      border: #fff solid 1px; }
    footer #upper-section #footer-news .news-item .news-inner {
      margin-left: 80px; }
      footer #upper-section #footer-news .news-item .news-inner .h4 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 5px;
        overflow: hidden; }
      footer #upper-section #footer-news .news-item .news-inner em {
        font-size: 12px;
        display: block;
        font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif; }
      footer #upper-section #footer-news .news-item .news-inner a {
        font-size: 12px;
        color: #fff;
        font-weight: 700;
        text-decoration: underline; }
  footer #upper-section #footer-news .read-all-news {
    border-radius: 0;
    color: #fff !important;
    border: #fff solid 1px;
    margin-top: 20px; }
  footer #upper-section #footer-search #searchform {
    margin-bottom: 20px; }
  footer #upper-section #footer-search .footer_searchbar {
    font-size: 16px;
    float: left;
    padding: 5px 5px 5px 10px;
    border: 0;
    width: 80%;
    margin-top: 20px;
    border-radius: 0px;
    line-height: 25px;
    color: #000; }
    footer #upper-section #footer-search .footer_searchbar::-webkit-input-placeholder, footer #upper-section #footer-search .footer_searchbar::-moz-placeholder, footer #upper-section #footer-search .footer_searchbar:-ms-input-placeholder, footer #upper-section #footer-search .footer_searchbar:-moz-placeholder {
      color: #999;
      font-size: 14px; }
  footer #upper-section #footer-search .footer_input_search {
    font-size: 18px;
    background: #fff;
    margin-top: 20px;
    text-align: right;
    color: #662382;
    border: 0;
    outline: none !important;
    padding: 6px 10px 4px 5px;
    width: 20%;
    border-radius: 0px;
    line-height: 25px; }
footer #lower-section {
  padding: 10px 0;
  text-align: center;
  color: #fff;
  background-color: #232323; }

.newcarouselouter {
  width: 100%;
  padding: 50px 0px;
  background: #efefef; }
  .newcarouselouter .news-box {
    height: 100%;
    margin-bottom: 1.3rem;
    border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    -webkit-border-radius: 3px;
    -ms-border-radius: 3px;
    border: #D3D3D3 solid 1px;
    background: #fff;
    padding: 0.75rem;
    padding-bottom: 50px;
    position: relative; }
    .newcarouselouter .news-box img {
      width: 100%;
      height: auto; }
    .newcarouselouter .news-box a {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background: #000;
      opacity: 0;
      z-index: 3; }
  .newcarouselouter:hover button {
    background-color: #561e6e;
    border-color: #4d1a62; }
  .newcarouselouter .card-content h3 {
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 18px; }
    .newcarouselouter .card-content h3 span {
      display: block;
      width: 100%;
      margin-top: 5px;
      font-size: 14px;
      font-style: italic;
      color: #515151;
      font-weight: normal; }
  .newcarouselouter .card-content button {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    margin-bottom: 0px;
    background: #662382;
    border-color: #5d2076; }
  .newcarouselouter .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: -45px; }
    .newcarouselouter .owl-nav .owl-next {
      background: #c2570f !important;
      padding: 5px 7px 3px 10px !important; }
      .newcarouselouter .owl-nav .owl-next:hover {
        background: #662382 !important; }
    .newcarouselouter .owl-nav .owl-prev {
      background: #c2570f !important;
      padding: 5px 9px 3px 8px !important; }
      .newcarouselouter .owl-nav .owl-prev:hover {
        background: #662382 !important; }

.newsCarouselHeader {
  width: 100%;
  height: 40px; }
  .newsCarouselHeader h2 {
    color: #662382; }

.carouselImage {
  width: 100%;
  height: 200px; }

.flexible_news_carousel .news-box {
  height: 100%;
  margin-bottom: 1.3rem;
  border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  border: #D3D3D3 solid 1px;
  background: #fff;
  padding: 0.25rem;
  padding-bottom: 50px;
  position: relative; }
  .flexible_news_carousel .news-box img {
    width: 100%;
    height: auto; }
  .flexible_news_carousel .news-box a {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    opacity: 0;
    z-index: 3; }
  .flexible_news_carousel .news-box .card-content {
    padding: 0.75rem; }
    .flexible_news_carousel .news-box .card-content h3 {
      margin-bottom: 10px;
      margin-top: 10px;
      font-size: 18px; }
      .flexible_news_carousel .news-box .card-content h3 span {
        display: block;
        width: 100%;
        margin-top: 5px;
        font-size: 14px;
        font-style: italic;
        color: #515151;
        font-weight: normal; }
    .flexible_news_carousel .news-box .card-content button {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      margin-bottom: 0px;
      background: #662382;
      border-color: #5d2076; }
.flexible_news_carousel:hover button {
  background-color: #561e6e;
  border-color: #4d1a62; }

.owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -45px; }
  .owl-nav .owl-next {
    background: #c2570f !important;
    padding: 5px 7px 3px 10px !important; }
    .owl-nav .owl-next:hover {
      background: #662382 !important; }
  .owl-nav .owl-prev {
    background: #c2570f !important;
    padding: 5px 9px 3px 8px !important; }
    .owl-nav .owl-prev:hover {
      background: #662382 !important; }

@media (max-width: 993px) {
  #lower-section {
    padding: 10px 0;
    text-align: center;
    color: #fff;
    background-color: #232323; } }
@media (max-width: 765px) {
  footer #upper-section #footer-news,
  footer #upper-section #footer-search {
    padding-top: 40px; } }
a, a:hover {
  color: #202020;
  text-decoration: none; }

/* ==========================================================================
   Custom code by Zee & Asad
   ========================================================================== */
.mb-1 {
  margin-bottom: 1rem; }

.mb-2 {
  margin-bottom: 2rem; }

.mb-3 {
  margin-bottom: 3rem; }

.mb-4 {
  margin-bottom: 4rem; }

.mb-5 {
  margin-bottom: 5rem; }

.mt-1 {
  margin-top: 1rem; }

.mt-2 {
  margin-top: 2rem; }

.mt-3 {
  margin-top: 3rem; }

.mt-4 {
  margin-top: 4rem; }

.mt-5 {
  margin-top: 5rem; }

input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none; }

input,
textarea {
  outline: 0; }

.mr10 {
  margin-right: 10px; }

.mr20 {
  margin-right: 20px; }

.mr30 {
  margin-right: 30px; }

.mr40 {
  margin-right: 40px; }

/* ==========================================================================
   Checkbox
   ========================================================================== */
.checkbox {
  position: relative;
  display: inline-block;
  outline: none; }

.checkbox input {
  cursor: pointer;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0 !important;
  outline: none;
  z-index: -1; }

.checkbox input.hidden {
  z-index: -1; }

.checkbox input.hidden + label {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.checkbox label {
  cursor: pointer;
  position: relative;
  display: block;
  padding-left: 45px;
  outline: none;
  font-size: 0.9em;
  line-height: 1.4;
  color: #233f56; }

.checkbox label:before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 35px;
  height: 35px;
  content: '';
  background: #fff;
  border: 1px solid #202020; }

.checkbox label:after {
  position: absolute;
  font-size: 1em;
  top: 0px;
  left: 0px;
  width: 35px;
  height: 35px;
  text-align: center;
  opacity: 0;
  color: #202020;
  transition: all 0.1s ease; }

/* States
   ========================================================================== */
.checkbox label:hover::before {
  background: #fff;
  border-color: rgba(34, 36, 38, 0.35); }

.checkbox label:hover,
.checkbox + label:hover {
  color: #202020; }

.checkbox label:active::before {
  background: #F9FAFB;
  border-color: rgba(34, 36, 38, 0.35); }

.checkbox label:active::after {
  color: rgba(0, 0, 0, 0.95); }

.checkbox input:active ~ label {
  color: rgba(0, 0, 0, 0.95); }

.checkbox input:focus ~ label:before {
  background: #FFFFFF;
  border-color: #202020; }

.checkbox input:focus ~ label:after {
  color: rgba(0, 0, 0, 0.95); }

.checkbox input:focus ~ label {
  color: rgba(0, 0, 0, 0.95); }

/* Checked States
   ========================================================================== */
.checkbox input:checked ~ label:before {
  content: 'x';
  background: #fff;
  border-color: #202020;
  font-size: 1.75em;
  line-height: 1;
  padding-top: 4px;
  text-align: center; }

.checkbox input:checked ~ label:after {
  opacity: 1;
  color: rgba(0, 0, 0, 0.95); }

.checkbox input:checked:focus ~ label:before {
  background: #FFFFFF;
  border-color: #202020; }

.checkbox input:checked:disabled ~ label:before {
  background: #e6785b;
  color: #fff;
  border-color: #e6785b; }

.checkbox input:disabled ~ label:before {
  background: #e6785b;
  border-color: #e6785b; }

/* Modifiers
   ========================================================================== */
p.subheading {
  padding: 1.5em 0 1em;
  color: #233f56;
  font-size: 14px; }

.checkWithDesc {
  padding-bottom: 1em; }

.row .checkWithDesc {
  margin-left: -15px;
  margin-right: -15px; }

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

.checkWithDesc .checkboxes .checkbox {
  padding-left: 10px; }

.checkWithDesc .checkboxes .checkbox:first-of-type {
  padding-left: 0; }

.checkWithDesc .checkbox.left {
  padding-left: 0; }

.checkboxDesc p {
  padding-top: 20px; }

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

.checkWithDesc .checkboxes .checkbox label {
  padding-top: 8px; }

/* Course Leaflet
   ========================================================================== */
.card {
  margin-bottom: 25px; }

.card.flat .card_content {
  border-width: 0;
  background: #618098;
  color: #fff;
  font-size: 16px; }

.card.flat .card_content dl {
  margin: 0.5em 0; }

.card.flat .card_content dt {
  clear: none;
  text-transform: uppercase; }

.card.flat .card_content dd {
  margin-right: 10px; }

.card_heading {
  color: #fff;
  padding: 0.7em;
  border-bottom: 2px solid #fff;
  background: #233f56;
  text-transform: uppercase; }

.card.dark .card_heading {
  background: #d71027; }

.card_content {
  margin: 0;
  padding: 0.9em 0.7em 0.7em;
  border: 1px solid #233f56;
  font-size: 14px;
  line-height: 1.6; }

.card_content p {
  font-size: 14px;
  line-height: 1.6; }

.card_content strong {
  font-size: 30px; }

.card_content ul {
  padding-left: 20px; }

.card_content dl {
  clear: left; }

.card_content dt,
.card_content dd {
  float: left;
  line-height: 1.6; }

.card_content dt {
  clear: left;
  margin-right: 5px; }

.card.dark .card_content {
  background: #233f56; }

.card.dark .card_content p,
.card.dark .card_content dt,
.card.dark .card_content dd {
  color: #fff; }

.button {
  margin: 0.5em 0 0 0;
  padding: 0.4em 0.7em;
  background: #d71027;
  clear: both;
  float: right;
  color: #fff; }

.button:after {
  content: "";
  background: url("../images/course-s-arrow.png");
  background-size: 100%;
  display: inline-block;
  height: 15px;
  width: 11px;
  vertical-align: middle;
  margin-left: 10px;
  margin-top: -2px; }

.fix_overflow {
  overflow: auto; }

.no-width {
  width: auto !important; }

/* video page */
.videoTextMoreInfo {
  text-align: center;
  color: white; }

.videoTextMoreInfo h4 a {
  color: white;
  padding: 7px 0;
  display: block; }

.turnintodropdown_demo222:disabled {
  background: #c2570f;
  border-color: #c2570f; }

.turnintodropdown_demo222, #crafty_postcode_result_display select {
  width: 100%;
  height: 35px !important;
  border: #233F56 solid 1px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  border-radius: 0px; }

#crafty_postcode_result_display select {
  width: 100% !important;
  margin: 5px 0px; }

div#superLearnersVideo > div {
  display: table-cell;
  vertical-align: middle; }

/* Carousel Styling */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

.owl-carousel {
  opacity: 0;
  height: 100px;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0, 0); }

.owl-carousel .owl-controls .owl-dot, .owl-carousel .owl-controls .owl-nav .owl-next, .owl-carousel .owl-controls .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  opacity: 1;
  height: auto; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel .owl-refresh .owl-item {
  display: none; }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-item img {
  display: block;
  margin: 0 auto;
  -webkit-transform-style: preserve-3d; }

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto; }

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

.no-js .owl-carousel {
  display: block; }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img {
  transform-style: preserve-3d; }

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1; }

.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }

.owl-theme .owl-controls .owl-nav [class*=owl-] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #1a1a1a;
  display: inline-block;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

.owl-theme .owl-controls .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none; }

.owl-theme .owl-controls .owl-nav .disabled {
  opacity: .5;
  cursor: default; }

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline; }

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #c2570f;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
  -ms-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px; }

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #1a1a1a; }

/* Style.css needs re-compiling */
#main-navigation {
  background: #fff;
  position: relative;
  z-index: 222222;
  min-height: 50px; }

.soli-site {
  position: relative; }

.p-s-menu {
  position: static !important; }

.dropdown-menu {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px; }

.t-search-menu {
  left: auto;
  width: 494px;
  max-width: 100%;
  right: 0px;
  top: 56px;
  padding: 10px 14px;
  background: #e5007d;
  color: #000;
  z-index: 1000000; }

.s-e-menu {
  width: 92px;
  display: table;
  float: left;
  position: absolute;
  left: 0px; }
  .s-e-menu label {
    color: #fff; }

.tex-menu {
  width: 100%;
  display: table;
  float: left;
  padding-left: 107px;
  padding-right: 55px; }
  .tex-menu label {
    color: #fff; }

.b-n-btn {
  width: 40px;
  display: table;
  text-align: center;
  position: absolute;
  right: 0px; }

.tex-menu input {
  width: 100%;
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px; }

.b-n-btn button {
  background: none;
  border: 0px;
  color: #fff;
  font-size: 18px; }

.s-e-menu select {
  font-size: 14px;
  padding: 5px 10px;
  border: none;
  border-radius: 3px;
  width: 100%;
  background: #fff !important;
  height: 29px;
  line-height: 25px; }

.det-custom span {
  color: #e6785b;
  font-weight: 400;
  font-size: 18px; }

.nav-custom {
  margin: 30px 0px;
  border-bottom: 1px solid #233f56;
  margin-bottom: 15px; }

.nav-custom li.active a {
  background: #662382;
  color: #fff; }

.nav-custom li a {
  background: #F07019;
  color: #fff; }

.nav-custom li a:hover {
  background: #D05400;
  color: #fff; }

.nav-custom li a {
  padding: 7px 20px; }

.searched-item {
  margin-top: 20px;
  background: #f8f9fa;
  padding: 20px;
  display: table;
  border-bottom: 1px solid #EAEAEA;
  width: 100%; }

.searched-item span {
  font-weight: 500;
  font-size: 13px;
  color: #233f56; }

.det-custom {
  padding-bottom: 20px; }

.searched-item:hover {
  background: #F4F4F5; }

.search_item_first {
  margin-top: 15px; }

.load-errors {
  padding: 0px 15px; }

.load-errors .close {
  margin-top: -10px; }

@media (max-width: 380px) {
  .custom-media .media-left {
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px; }

  .custom-media .media-left img {
    margin: 0 auto; }

  .custom-media h4 {
    text-align: center; }

  .custom-media p {
    text-align: center; }

  .custom-media .media-body {
    text-align: center; } }
.topbar-outer {
  background: #662382;
  padding: 12px 0px;
  height: 45px; }

.topbar-outer ul {
  margin: 0px;
  padding: 0px; }

.topbar-outer .top-left-nav ul li {
  list-style-type: none;
  display: inline-block;
  padding: 0px 18px;
  border-right: 2px solid #fff;
  height: 21px; }

.topbar-outer .top-right-nav ul li {
  list-style-type: none;
  display: inline-block;
  padding: 0px 5px;
  border-right: 0;
  height: 21px;
  float: left; }

.disablity-icons a {
  float: left; }

.topbar-outer ul li:first-child {
  padding-left: 0px; }

.topbar-outer ul li:last-child {
  padding-right: 0px;
  border-right: 0px; }

.topbar-outer ul li a, .topbar-outer ul li button {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  height: 21px;
  line-height: 21px;
  padding: 0;
  background: transparent;
  border: none;
  outline: none !important;
  vertical-align: middle; }

.topbar-icon :before {
  height: 32px;
  width: 32px;
  background: #662382;
  display: block;
  line-height: 32px;
  color: #fff;
  text-align: center;
  float: left;
  margin-top: -5.5px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px; }

.disablity-icons .zoom-in-ico, .disablity-icons .zoom-out-ico {
  margin-left: 10px; }

.disablity-icons a.disab-icon {
  margin-left: 0px; }

.bag-icon {
  position: relative; }

.bag-icon span {
  position: absolute;
  background: #d71027;
  height: 18px;
  line-height: 18px;
  width: 18px;
  text-align: center;
  border-radius: 9px;
  top: -9px;
  right: 0; }

.topbar-icon a {
  text-decoration: none !important; }

@media (max-width: 480px) {
  .top-right-nav {
    width: 100%; }

  .top-right-nav ul {
    display: table;
    margin: 0 auto; } }
@media (max-width: 350px) {
  .topbar-outer ul li {
    padding: 0px 15px; } }
.scroller-inner .header {
  border-bottom: 0px; }

@media (min-width: 960px) {
  .ubermenu .ubermenu-target-text {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase; }

  .nav-on-tab {
    display: none; } }
.ubermenu-main .ubermenu-item-level-0 > .ubermenu-target {
  display: table-cell !important;
  padding: 0px 25px;
  height: 50px;
  vertical-align: middle;
  line-height: 18px;
  padding-right: 25px !important; }

.ubermenu-main .ubermenu-target {
  color: #662382 !important; }

.ubermenu-main .ubermenu-item-level-0.ubermenu-current-menu-item > .ubermenu-target, .ubermenu-main .ubermenu-item-level-0.ubermenu-current-menu-parent > .ubermenu-target, .ubermenu-main .ubermenu-item-level-0.ubermenu-current-menu-ancestor > .ubermenu-target, .ubermenu-main .ubermenu-item-level-0:hover > .ubermenu-target, .ubermenu-main .ubermenu-item-level-0 > .ubermenu-target:hover {
  background: #561e6e !important;
  color: #fff !important; }

.ubermenu .ubermenu-submenu .ubermenu-target-text {
  text-align: left; }

@media (min-width: 960px) and (max-width: 991px) {
  .ubermenu-main .ubermenu-item-level-0 > .ubermenu-target {
    padding: 0px 7px !important; }

  .ubermenu .ubermenu-target-text {
    font-size: 12px; } }
@media (max-width: 959px) {
  .desktop-nav {
    display: none; }

  .nav-on-tab {
    display: block; } }
.cd-primary-nav-trigger {
  position: static;
  display: table;
  width: 100%;
  height: 50px;
  line-height: 50px; }

.cd-primary-nav a {
  color: #fff;
  font-size: 17px;
  display: block;
  border-bottom: 1px solid #494949;
  border-radius: 0px; }

.nav-on-tab .menu-item-has-children:after {
  content: "\f105";
  font-family: FontAwesome;
  color: #fff;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -9px;
  font-weight: bold; }

.nav-on-tab ul li {
  position: relative; }

.cd-primary-nav a:hover {
  color: #fff; }

ul.sub-menu {
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100vh;
  padding: 80px 0px;
  overflow: auto;
  right: -100%;
  background: rgba(2, 23, 37, 0.96);
  display: none; }

.top-nav-controler {
  position: fixed;
  z-index: 99999;
  height: 77px;
  width: 100%;
  top: 0px;
  left: 0px;
  background: rgba(2, 19, 30, 0.96);
  -webkit-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.75); }

.back-to-main:before {
  font-family: FontAwesome;
  content: "\f060";
  margin-right: 5px; }

.pop-menu-title, .close-main-menu {
  line-height: 77px;
  color: #fff;
  font-size: 14px;
  margin-left: 15px; }

.pop-menu-title:hover, .close-main-menu:hover {
  color: #fff; }

.close-main-menu {
  margin-right: 15px;
  float: right; }

.close-main-menu:before {
  font-family: FontAwesome;
  content: "\f00d"; }

.top-nav-controler {
  display: none; }

.cd-primary-nav {
  padding: 80px 0; }

.overflow-visible {
  overflow: visible !important; }

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

.dropdown_container {
  padding-bottom: 10px !important; }

.turnintodropdown_demo222, #crafty_postcode_result_display select {
  padding: 7px 0px;
  height: 38px !important;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px; }

.academy-tabs li h5 {
  width: 160px; }

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 0px;
  height: 0; }

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.margin-bottom-md {
  margin-bottom: 18px !important; }

#search {
  padding: 25px 0; }

.search-block {
  background-color: #c2570f;
  left: 0;
  float: left;
  width: 100%;
  padding: 10px; }

.search-block h3 {
  margin-bottom: 0 !important; }

#footer-banner .owl-item {
  display: block !important; }

#brief img {
  max-width: 100%;
  height: auto; }

#coursepage section#table_content {
  overflow-x: hidden; }

td a {
  position: static;
  top: auto;
  left: auto; }

@media (max-width: 991px) {
  div.content-item {
    width: 100%;
    background-position: 0px 0px !important;
    background-repeat: no-repeat !important;
    height: 160px;
    background-size: auto 100% !important; }

  .content-item .overlay-content {
    position: static;
    opacity: 1;
    background: #2b465c;
    margin-left: 100px; }

  .content-item .overlay, .content-item .corner-overlay-content {
    display: none !important; }

  .content-item .overlay-content p {
    font-size: 13px;
    font-weight: normal;
    font-family: arial;
    height: 130px; } }
.s-h-btn {
  display: block;
  text-align: center; }

.less-case-box {
  width: 100%;
  max-width: 500px;
  display: inline-block;
  position: relative;
  padding-left: 110px;
  min-height: 100px;
  margin-bottom: 40px;
  cursor: pointer; }

.less-case-box img {
  position: absolute;
  width: 100px;
  height: 100px;
  left: 0px;
  top: 0px;
  border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -webkit-border-radius: 50% 50% 50% 50%; }

.less-case-box p {
  margin-top: 15px;
  margin-bottom: 5px;
  padding-bottom: 0px;
  font-size: 16px; }

.less-case-box i {
  font-size: 50px;
  margin-top: -10px; }

.more-case-box {
  width: 100%;
  text-align: center;
  padding: 40px 0px; }

#content-boxs img {
  width: 100%;
  filter: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;&lt;filter id='grayscale'&gt;&lt;feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
  /* Firefox 10+, Firefox on Android */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+, Safari 6+, Safari 6+ iOS */ }

.more-case-box img.main-img {
  border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -webkit-border-radius: 50% 50% 50% 50%;
  width: 200px;
  height: 200px;
  margin-bottom: 30px; }

.more-case-box h3 {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 20px; }

.more-case-box .case-description {
  font-size: 14px;
  font-weight: normal; }

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

.readlessbtn {
  width: 100%;
  text-align: center;
  cursor: pointer; }

.readlessbtn i {
  clear: both;
  width: 100%;
  font-size: 40px;
  margin-bottom: -10px;
  display: block; }

.hvideoouter {
  padding: 10px;
  background: #fafafa;
  border: #efefef solid 1px;
  margin-top: 20px !important;
  max-width: 100%; }

.hvideoouter h4 {
  margin-bottom: 10px;
  font-size: 16px; }

span.vidcap {
  font-size: 12px;
  display: block;
  margin-top: 10px;
  font-weight: normal;
  font-family: arial; }

.ytiframe {
  position: relative; }

.ytiframe iframe {
  position: static;
  left: auto;
  top: auto;
  max-width: 100%; }

.hvideoouter p {
  margin: 0;
  padding: 0; }

.v-align-left {
  margin-right: 20px;
  float: left;
  margin-bottom: 20px; }

.v-align-right {
  margin-left: 20px;
  float: right;
  margin-bottom: 20px; }

.v-align-center {
  margin: 0px auto;
  float: none;
  margin-bottom: 20px; }

.v-align- {
  margin-bottom: 20px; }

@media (max-width: 600px) {
  .less-case-box p {
    margin-top: 0px;
    font-size: 14px; }

  .topbar-outer {
    height: auto !important; }

  .top-logo {
    display: block !important;
    text-align: center;
    float: none !important;
    margin: 0 auto; }

  .top-right-nav {
    float: none !important;
    width: 100% !important;
    text-align: center; }
    .top-right-nav ul {
      display: inline-block;
      margin-top: 20px; }

  .t-search-menu {
    top: 90px !important; } }
@media (max-width: 380px) {
  .custom-media .media-left {
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px; }

  .custom-media .media-left img {
    margin: 0 auto; }

  .custom-media h4 {
    text-align: center; }

  .custom-media p {
    text-align: center; }

  .custom-media .media-body {
    text-align: center; } }
.topbar-outer {
  background: #662382;
  padding: 12px 0px;
  height: 70px; }

.topbar-outer ul {
  margin: 0px;
  padding: 0px; }

.topbar-outer .top-left-nav, .topbar-outer .top-right-nav {
  margin-top: 12px; }

.topbar-outer .top-left-nav ul li {
  list-style-type: none;
  display: inline-block;
  padding: 0px 18px;
  border-right: 2px solid #fff;
  height: 21px; }

.topbar-outer .top-right-nav ul li {
  list-style-type: none;
  display: inline-block;
  padding: 0px 5px;
  border-right: 0;
  height: 21px;
  float: left; }

.disablity-icons a {
  float: left; }

.topbar-outer ul li:first-child {
  padding-left: 0px; }

.topbar-outer ul li:last-child {
  padding-right: 0px;
  border-right: 0px; }

.topbar-outer ul li a {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  height: 21px;
  line-height: 21px; }

.ubermenu .ubermenu-target-text {
  font-weight: 600 !important; }

.topbar-icon :before {
  height: 32px;
  width: 32px;
  background: #fff;
  display: block;
  line-height: 32px;
  color: #662382;
  text-align: center;
  float: left;
  margin-top: -5.5px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px; }

.top-logo {
  width: 100%;
  max-width: 150px;
  display: inline-block; }

.top-logo img {
  width: 100%; }

.disablity-icons .zoom-in-ico, .disablity-icons .zoom-out-ico {
  margin-left: 10px; }

.disablity-icons a.disab-icon {
  margin-left: 0px; }

.bag-icon {
  position: relative; }

.bag-icon span {
  position: absolute;
  background: #d71027;
  height: 18px;
  color: #fff;
  line-height: 18px;
  width: 18px;
  text-align: center;
  border-radius: 9px;
  top: -9px;
  right: 0; }

.topbar-icon a {
  text-decoration: none !important; }

@media (max-width: 480px) {
  .top-right-nav {
    width: 100%; }

  .top-right-nav ul {
    display: table;
    margin: 0 auto; } }
@media (max-width: 350px) {
  .topbar-outer ul li {
    padding: 0px 15px; } }
.scroller-inner .header {
  border-bottom: 0px; }

@media (min-width: 960px) {
  .single-course .second_search_title h2, .single-course .second_search_title h1 {
    font-size: 30px !important; }

  .ubermenu .ubermenu-target-text {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase; }

  .nav-on-tab {
    display: none; } }
.ubermenu-main .ubermenu-item-level-0 > .ubermenu-target {
  display: table-cell !important;
  padding: 0px 25px;
  height: 50px;
  vertical-align: middle;
  line-height: 18px;
  padding-right: 25px !important; }

.ubermenu .ubermenu-submenu .ubermenu-target-text {
  text-align: left; }

@media (min-width: 960px) and (max-width: 991px) {
  .ubermenu-main .ubermenu-item-level-0 > .ubermenu-target {
    padding: 0px 7px !important; }

  .ubermenu .ubermenu-target-text {
    font-size: 12px; } }
@media (max-width: 959px) {
  .desktop-nav {
    display: none; }

  .nav-on-tab {
    display: block; } }
.cd-primary-nav-trigger {
  position: static;
  display: table;
  width: 100%;
  height: 50px;
  line-height: 50px; }

.cd-primary-nav a {
  color: #fff;
  font-size: 17px;
  display: block;
  border-bottom: 1px solid #494949;
  border-radius: 0px; }

.nav-on-tab .menu-item-has-children:after {
  content: "\f105";
  font-family: FontAwesome;
  color: #fff;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -9px;
  font-weight: bold; }

.nav-on-tab ul li {
  position: relative; }

.cd-primary-nav a:hover {
  color: #fff; }

ul.sub-menu {
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100vh;
  padding: 80px 0px;
  overflow: auto;
  right: -100%;
  background: rgba(2, 23, 37, 0.96);
  display: none; }

.top-nav-controler {
  position: fixed;
  z-index: 99999;
  height: 77px;
  width: 100%;
  top: 0px;
  left: 0px;
  background: rgba(2, 19, 30, 0.96);
  -webkit-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.75); }

.back-to-main:before {
  font-family: FontAwesome;
  content: "\f060";
  margin-right: 5px; }

.pop-menu-title, .close-main-menu {
  line-height: 77px;
  color: #fff;
  font-size: 14px;
  margin-left: 15px; }

.pop-menu-title:hover, .close-main-menu:hover {
  color: #fff; }

.close-main-menu {
  margin-right: 15px;
  float: right; }

.close-main-menu:before {
  font-family: FontAwesome;
  content: "\f00d"; }

.top-nav-controler {
  display: none; }

.cd-primary-nav {
  padding: 80px 0; }

.overflow-visible {
  overflow: visible !important; }

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

.dropdown_container {
  padding-bottom: 10px !important; }

.turnintodropdown_demo222, #crafty_postcode_result_display select {
  padding: 7px 0px;
  height: 38px !important;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px; }

.academy-tabs li h5 {
  width: 160px; }

.SearchByInterest:after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 35px;
  width: 1px;
  background: #fff;
  content: "";
  z-index: 1; }

.SearchByInterest:before {
  position: absolute;
  right: -15px;
  top: 50%;
  text-align: center;
  margin-top: -30px;
  border-radius: 50%;
  color: #fff;
  width: 30px;
  font-size: 14px;
  line-height: 30px;
  height: 30px;
  background: #233f56 !important;
  content: "OR";
  display: block;
  z-index: 2; }

.mid_input_search form {
  position: relative; }

.interestsearchbutton {
  position: absolute;
  right: 1px;
  top: auto;
  border: none;
  background: none;
  bottom: 3px; }

.mid_input_search input#searchsubmit {
  font-size: 14px;
  padding-right: 9px !important; }

.mid_input_search img {
  right: 85px; }

.single-course .back_container {
  display: none; }

.single-course .second_search_title > div {
  float: none !important; }

.single-course .second_search_title h2, .single-course .second_search_title h1 {
  position: relative;
  padding-left: 20px;
  text-align: left;
  font-size: 20px; }

.single-course .second_search_title h2 img, .single-course .second_search_title h1 img {
  position: absolute;
  left: 0;
  width: 25px;
  top: 50%;
  margin-top: -10px; }

@media (max-width: 991px) {
  .SearchByInterest {
    margin-bottom: 30px; }

  .SearchByInterest:after {
    top: auto;
    bottom: 0;
    left: 30px;
    right: 30px;
    width: auto;
    height: 1px; }

  .SearchByInterest:before {
    top: auto;
    left: 50%;
    bottom: -15px;
    margin-left: -15px; } }
.redirectSectionBox {
  background: #f1f1f1;
  border: #efefef solid 1px;
  padding: 8px;
  margin-bottom: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.redirectSectionBox p {
  text-align: left !important;
  padding-bottom: 10px; }

.redirectSectionBox h3 {
  margin-bottom: 10px; }

.redirectSectionBox .button {
  float: none;
  display: inline-block;
  margin-bottom: 0px;
  background: #662382;
  color: #fff !important;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.redirectSectionBox .button:hover {
  color: #fff; }

#rt1 td a {
  position: relative; }

@media (max-width: 1024px) {
  .coursesTable thead {
    display: none; }

  .coursesTable tbody tr td, .coursesTable tbody tr, .coursesTable tbody {
    display: block;
    width: 100%; }

  .coursesTable tbody tr td:before {
    margin-right: 5px;
    color: #000;
    font-weight: bold; }

  .coursesTable tbody p {
    display: inline-block; }

  .coursesTable tbody td {
    height: auto !important;
    background: #f9f9f9 !important; }

  .coursesTable tbody tr {
    padding: 10px;
    border: #efefef solid 1px;
    background: #fff;
    margin-bottom: 5px; }

  .coursesTable tbody tr td:nth-child(1):before {
    content: "Course :"; }

  .coursesTable tbody tr td:nth-child(2):before {
    content: "Level :"; }

  .coursesTable tbody tr td:nth-child(3):before {
    content: "Campus :"; }

  .coursesTable tbody tr td:nth-child(4):before {
    content: "Demographic :"; }

  .coursesTable tbody tr td:nth-child(5):before {
    content: "Attendance :"; } }
.applyAnchor {
  position: static !important; }

.applyAnchor h6 {
  display: table !important;
  width: 100% !important; }

.modal-lg {
  width: 900px;
  max-width: 100%; }

.courseCell:nth-child(6) {
  min-width: 130px; }

.courseCell:last-child a {
  opacity: 1; }

td a {
  position: static; }

.addToBasket {
  margin-top: 0px !important; }

.red-btn {
  background: #e13a3e !important; }

.enquiry_form {
  max-height: 320px;
  overflow: scroll; }

.errorfield {
  border-color: #e13a3e !important; }

.errormsg {
  color: #e13a3e !important; }

@media screen and (min-width: 1100px) {
  #applyInfo .modal-body {
    height: 400px;
    overflow-y: auto;
    margin-bottom: 20px; } }
@media screen and (max-width: 1080px) {
  .enquiry_form {
    max-height: 100% !important;
    overflow: visible; } }
.events-page-title {
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500; }

.events-filter {
  display: flex;
  align-items: flex-start; }
  .events-filter__title {
    color: black;
    font-weight: bold;
    font-size: 16px;
    margin-right: 10px;
    margin-top: -3px;
    min-width: 70px; }
    .events-filter__title span {
      font-size: 14px;
      font-weight: normal !important;
      display: block; }
  .events-filter form {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    margin-bottom: 20px; }
    .events-filter form label.dem_16-19:hover, .events-filter form label.dem_16-19:focus {
      background: #b3383c;
      border-color: #b3383c; }
    .events-filter form label.dem_part-time-learner:hover, .events-filter form label.dem_part-time-learner:focus {
      background: #b96534;
      border-color: #b96534; }
    .events-filter form label.dem_apprentice:hover, .events-filter form label.dem_apprentice:focus {
      background: #399778;
      border-color: #399778; }
    .events-filter form label.dem_management-professional:hover, .events-filter form label.dem_management-professional:focus {
      background: #494949;
      border-color: #494949; }
    .events-filter form label.dem_university-level-learner:hover, .events-filter form label.dem_university-level-learner:focus {
      background: #115f9e;
      border-color: #115f9e; }
    .events-filter form label.dem_employers:hover, .events-filter form label.dem_employers:focus {
      background: #217977;
      border-color: #217977; }
    .events-filter form label.active {
      color: white; }
    .events-filter form label.dem_employers.active {
      background: #217977;
      border-color: #217977; }
    .events-filter form label.dem_16-19.active {
      background: #b3383c;
      border-color: #b3383c; }
    .events-filter form label.dem_part-time-learner.active {
      background: #b96534;
      border-color: #b96534; }
    .events-filter form label.dem_apprentice.active {
      background: #399778;
      border-color: #399778; }
    .events-filter form label.dem_management-professional.active {
      background: #494949;
      border-color: #494949; }
    .events-filter form label.dem_university-level-learner.active {
      background: #115f9e;
      border-color: #115f9e; }
    .events-filter form label {
      position: relative;
      font-weight: normal;
      font-size: 14px;
      padding: 5px 10px;
      border-radius: 5px;
      text-align: center;
      color: black;
      background-color: transparent;
      border: 2px solid #333;
      cursor: pointer;
      margin-left: 5px; }
      .events-filter form label:hover, .events-filter form label:focus {
        color: white; }
      .events-filter form label span {
        position: relative;
        z-index: 2; }
      .events-filter form label:hover:after, .events-filter form label.active:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        background: #000;
        opacity: .1;
        width: 100%;
        height: 100%;
        border-radius: 3px; }
      .events-filter form label:hover:before, .events-filter form label.active:before {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 50%;
        margin-left: -7.5px;
        border-style: solid;
        border-color: inherit;
        border-width: 0 4px 4px 0;
        display: inline-block;
        transform: rotate(45deg);
        z-index: -1;
        padding: 5px; }
      .events-filter form label:nth-child(2) {
        background: #fff;
        color: #333; }
    .events-filter form input {
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0; }
    .events-filter form input:checked + label, .events-filter form input:focus + label {
      color: white; }
      .events-filter form input:checked + label:nth-child(2), .events-filter form input:focus + label:nth-child(2) {
        color: #333; }
      .events-filter form input:checked + label:after, .events-filter form input:focus + label:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        background: #000;
        opacity: .1;
        width: 100%;
        height: 100%;
        border-radius: 3px; }
      .events-filter form input:checked + label:before, .events-filter form input:focus + label:before {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 50%;
        margin-left: -7.5px;
        border-style: solid;
        border-color: inherit;
        border-width: 0 4px 4px 0;
        display: inline-block;
        transform: rotate(45deg);
        z-index: -1;
        padding: 5px; }
      .events-filter form input:checked + label.dem_16-19, .events-filter form input:focus + label.dem_16-19 {
        background: #b3383c;
        border-color: #b3383c; }
      .events-filter form input:checked + label.dem_part-time-learner, .events-filter form input:focus + label.dem_part-time-learner {
        background: #b96534;
        border-color: #b96534; }
      .events-filter form input:checked + label.dem_apprentice, .events-filter form input:focus + label.dem_apprentice {
        background: #399778;
        border-color: #399778; }
      .events-filter form input:checked + label.dem_management-professional, .events-filter form input:focus + label.dem_management-professional {
        background: #494949;
        border-color: #494949; }
      .events-filter form input:checked + label.dem_university-level-learner, .events-filter form input:focus + label.dem_university-level-learner {
        background: #115f9e;
        border-color: #115f9e; }
      .events-filter form input:checked + label.dem_employers, .events-filter form input:focus + label.dem_employers {
        background: #217977;
        border-color: #217977; }
    @media (max-width: 1199px) {
      .events-filter form {
        justify-content: flex-start; }
        .events-filter form label {
          margin-right: 10px;
          margin-bottom: 5px; } }

.event-list {
  margin-bottom: 50px; }
  .event-list__image {
    position: relative; }
    .event-list__image img {
      width: 100%;
      height: auto;
      border: 3px solid #fff;
      border-radius: 5px;
      box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4); }
  .event-list__thumbnail-date {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    padding: 15px;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    flex-flow: wrap;
    z-index: 2;
    width: 230px;
    background: #333; }
    .event-list__thumbnail-date .date {
      margin-right: 5px;
      font-family: 'Oswald', sans-serif;
      font-weight: 400;
      font-size: 45px;
      line-height: 1; }
    .event-list__thumbnail-date .month-year {
      font-family: 'Oswald', sans-serif;
      font-weight: 300;
      font-size: 18px;
      text-transform: uppercase;
      line-height: 1.2; }
    .event-list__thumbnail-date .time {
      width: 100%;
      font-size: 16px;
      line-height: 1;
      border-top: 1px dashed #fce4d4;
      padding-top: 10px;
      margin-top: 10px; }
    .event-list__thumbnail-date .dashmark {
      font-family: 'Oswald', sans-serif;
      font-weight: 400;
      font-size: 45px;
      display: inline-block;
      margin-left: 5px;
      margin-right: 5px; }
    .event-list__thumbnail-date .flex-break {
      flex-basis: 100%;
      height: 0; }
  .event-list__heading {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0; }
  .event-list__date-time {
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px; }
    .event-list__date-time div {
      color: #d71027;
      line-height: 1; }
      .event-list__date-time div:nth-child(2) {
        border-left: #ccc solid 2px;
        margin-left: 15px;
        padding-left: 15px; }
      .event-list__date-time div b {
        font-family: 'Oswald', sans-serif;
        font-weight: 400;
        margin-right: 5px;
        color: #222; }
  .event-list .events-list-venue {
    margin-bottom: 15px;
    color: #d71027;
    line-height: 1.3; }
    .event-list .events-list-venue b {
      font-family: 'Oswald', sans-serif;
      font-weight: 400;
      margin-right: 5px;
      color: #222; }
  @media (max-width: 991px) {
    .event-list img {
      margin-bottom: 20px; }
    .event-list__date-time {
      flex-flow: wrap; }
      .event-list__date-time div {
        width: 100%;
        border: none !important;
        text-align: left !important; }
        .event-list__date-time div:nth-child(2) {
          margin-top: 10px;
          margin-left: 0;
          padding-left: 0; } }

.dem_university-level-learner a .event-list__thumbnail-date, .dem_university-level-learner a .related-event-list__thumbnail-date {
  background: #115f9e; }

.dem_management-professional a .event-list__thumbnail-date, .dem_management-professional a .related-event-list__thumbnail-date {
  background: #494949; }

.dem_part-time-learner a .event-list__thumbnail-date, .dem_part-time-learner a .related-event-list__thumbnail-date {
  background: #b96534; }

.dem_employers a .event-list__thumbnail-date, .dem_employers a .related-event-list__thumbnail-date {
  background: #217977; }

.dem_apprentice a .event-list__thumbnail-date, .dem_apprentice a .related-event-list__thumbnail-date {
  background: #399778; }

.dem_16-19 a .event-list__thumbnail-date, .dem_16-19 a .related-event-list__thumbnail-date {
  background: #b3383c; }

.related-event-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 30px;
  margin-top: 50px; }

.row-inner {
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-flow: wrap; }

.related-event-list {
  margin-bottom: 50px; }
  .related-event-list__image {
    position: relative; }
    .related-event-list__image img {
      width: 100%;
      height: auto;
      border: 3px solid #fff;
      border-radius: 5px;
      box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4); }
  .related-event-list__thumbnail-date {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    padding: 15px;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    flex-flow: wrap;
    z-index: 2;
    width: 150px;
    background: #333; }
    .related-event-list__thumbnail-date .date {
      margin-right: 5px;
      font-family: 'Oswald', sans-serif;
      font-weight: 400;
      font-size: 20px;
      line-height: 1; }
    .related-event-list__thumbnail-date .month-year {
      font-family: 'Oswald', sans-serif;
      font-weight: 300;
      font-size: 11px;
      text-transform: uppercase;
      line-height: 1.2; }
    .related-event-list__thumbnail-date .time {
      width: 100%;
      font-size: 14px;
      line-height: 1;
      border-top: 1px dashed #fce4d4;
      padding-top: 10px;
      margin-top: 10px; }
    .related-event-list__thumbnail-date .dashmark {
      font-family: 'Oswald', sans-serif;
      font-weight: 400;
      font-size: 20px;
      display: inline-block;
      margin-left: 5px;
      margin-right: 5px; }
    .related-event-list__thumbnail-date .flex-break {
      flex-basis: 100%;
      height: 0; }
  .related-event-list__heading {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0; }
  .related-event-list__date-time {
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px; }
    .related-event-list__date-time div {
      font-size: 13px;
      color: #d71027;
      line-height: 1; }
      .related-event-list__date-time div:nth-child(2) {
        border-left: #ccc solid 2px;
        margin-left: 15px;
        padding-left: 15px; }
      .related-event-list__date-time div b {
        font-family: 'Oswald', sans-serif;
        font-weight: 400;
        margin-right: 5px;
        color: #222; }
  @media (max-width: 991px) {
    .related-event-list img {
      margin-bottom: 20px; }
    .related-event-list__date-time {
      flex-flow: wrap; }
      .related-event-list__date-time div {
        width: 100%;
        border: none !important;
        text-align: left !important; }
        .related-event-list__date-time div:nth-child(2) {
          margin-top: 10px;
          margin-left: 0;
          padding-left: 0; } }

.related-event-venue {
  margin-bottom: 15px;
  font-size: 13px;
  color: #d71027;
  line-height: 1.3; }
  .related-event-venue b {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    margin-right: 5px;
    color: #222; }

.event-sidebar {
  background: #f4a36c;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 30px; }
  .event-sidebar .event-date-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 15px; }
  .event-sidebar .single-event-dates {
    background: #c2570f;
    border-radius: 5px;
    margin-bottom: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    flex-flow: wrap;
    z-index: 2;
    width: 100%;
    padding: 5px; }
    .event-sidebar .single-event-dates .date {
      margin-right: 5px;
      font-family: 'Oswald', sans-serif;
      font-weight: 400;
      font-size: 25px;
      line-height: 1; }
    .event-sidebar .single-event-dates .month-year {
      font-family: 'Oswald', sans-serif;
      font-weight: 300;
      font-size: 11px;
      text-transform: uppercase;
      line-height: 1.2; }
    .event-sidebar .single-event-dates .time {
      width: 100%;
      font-size: 14px;
      line-height: 1;
      border-top: 1px dashed #fce4d4;
      padding-top: 5px;
      margin-top: 5px; }
    .event-sidebar .single-event-dates .dashmark {
      font-family: 'Oswald', sans-serif;
      font-weight: 400;
      font-size: 20px;
      display: inline-block;
      margin-left: 5px;
      margin-right: 5px; }
    .event-sidebar .single-event-dates .flex-break {
      flex-basis: 100%;
      height: 0; }
  .event-sidebar .event-demographics, .event-sidebar .free-parking, .event-sidebar .accessable-access-guide {
    margin: 30px 0px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    position: relative;
    padding-left: 20px; }
    .event-sidebar .event-demographics .fa, .event-sidebar .free-parking .fa, .event-sidebar .accessable-access-guide .fa {
      color: #d71027;
      font-size: 15px;
      position: absolute;
      left: 0;
      top: 4px; }
  .event-sidebar .event-venue {
    margin: 30px 0px; }
    .event-sidebar .event-venue .event-venue-title {
      display: flex;
      align-items: center;
      font-family: 'Oswald', sans-serif;
      font-weight: 400;
      font-size: 24px;
      line-height: 1;
      margin-bottom: 15px; }
      .event-sidebar .event-venue .event-venue-title .fa {
        color: #d71027;
        font-size: 25px;
        margin-right: 7px; }
  .event-sidebar.dem_university-level-learner {
    background-color: #e0ebf5; }
    .event-sidebar.dem_university-level-learner .single-event-dates {
      background-color: #115f9e;
      color: #fff; }
    .event-sidebar.dem_university-level-learner .fa {
      color: #115f9e !important; }
    .event-sidebar.dem_university-level-learner .acf-map {
      border-color: #115f9e !important; }
  .event-sidebar.dem_management-professional {
    background-color: #f0f0f0; }
    .event-sidebar.dem_management-professional .single-event-dates {
      background-color: #494949;
      color: #fff; }
    .event-sidebar.dem_management-professional .fa {
      color: #494949 !important; }
    .event-sidebar.dem_management-professional .acf-map {
      border-color: #494949 !important; }
  .event-sidebar.dem_part-time-learner {
    background-color: #f7efea; }
    .event-sidebar.dem_part-time-learner .single-event-dates {
      background-color: #b96534;
      color: #fff; }
    .event-sidebar.dem_part-time-learner .fa {
      color: #b96534 !important; }
    .event-sidebar.dem_part-time-learner .acf-map {
      border-color: #b96534 !important; }
  .event-sidebar.dem_employers {
    background-color: #eaf7f6; }
    .event-sidebar.dem_employers .single-event-dates {
      background-color: #217977;
      color: #fff; }
    .event-sidebar.dem_employers .fa {
      color: #217977 !important; }
    .event-sidebar.dem_employers .acf-map {
      border-color: #217977 !important; }
  .event-sidebar.dem_apprentice {
    background-color: #eef8f5; }
    .event-sidebar.dem_apprentice .single-event-dates {
      background-color: #399778;
      color: #fff; }
    .event-sidebar.dem_apprentice .fa {
      color: #399778 !important; }
    .event-sidebar.dem_apprentice .acf-map {
      border-color: #399778 !important; }
  .event-sidebar.dem_16-19 {
    background-color: #f8ecec; }
    .event-sidebar.dem_16-19 .single-event-dates {
      background-color: #b3383c;
      color: #fff; }
    .event-sidebar.dem_16-19 .fa {
      color: #b3383c !important; }
    .event-sidebar.dem_16-19 .acf-map {
      border-color: #b3383c !important; }

.event-video {
  position: relative;
  padding-bottom: 52%;
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden; }

.acf-map {
  width: 100%;
  border: #c2570f solid 1px;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 20px;
  position: relative;
  padding-bottom: 60%; }
  .acf-map > div {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }

.text-underline {
  text-decoration: underline; }

.event-time-card table {
  width: 100%; }
  .event-time-card table tr td {
    height: 20px !important; }

.article-alert {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .article-alert b {
    font-size: 20px;
    text-align: center;
    padding: 0px 20px;
    display: block; }
  .article-alert .btn {
    font-size: 20px; }

@media (max-width: 767px) {
  .article-alert {
    display: block !important;
    text-align: center; }
    .article-alert b {
      width: 100%;
      margin-bottom: 20px; } }
@media (max-width: 601px) {
  .article-alert b {
    font-size: 12px;
    margin-bottom: 10px; }
  .article-alert .btn {
    font-size: 14px; } }
.flex-row {
  display: flex;
  flex-flow: wrap; }

.event-row {
  display: flex;
  flex-flow: row-reverse; }

@media (max-width: 974px) {
  .event-row {
    flex-direction: column; } }
#ui-datepicker-div.month_year_datepicker {
  height: auto !important;
  height: auto !important;
  margin-top: 10px !important;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important;
  background: #c2570f !important; }
  #ui-datepicker-div.month_year_datepicker .ui-datepicker-calendar {
    display: none; }
  #ui-datepicker-div.month_year_datepicker .ui-datepicker-header {
    background: #c2570f !important;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    position: relative !important; }
    #ui-datepicker-div.month_year_datepicker .ui-datepicker-header:before {
      content: "\f0d8";
      display: inline-block;
      font: normal normal normal 14px/1 FontAwesome;
      font-size: inherit;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      color: #c2570f;
      position: absolute;
      left: 30px;
      top: -20px;
      font-size: 30px; }
    #ui-datepicker-div.month_year_datepicker .ui-datepicker-header select {
      border: none !important;
      background-color: #fff !important;
      -webkit-border-radius: 5px !important;
      color: #662382 !important;
      -moz-border-radius: 5px !important;
      border-radius: 5px !important;
      padding: 2px 10px !important;
      height: auto !important; }
    #ui-datepicker-div.month_year_datepicker .ui-datepicker-header .ui-datepicker-prev {
      background: #632d08 !important;
      color: #fff !important;
      border: none !important;
      left: 2px !important;
      display: flex;
      align-items: center;
      justify-content: center; }
      #ui-datepicker-div.month_year_datepicker .ui-datepicker-header .ui-datepicker-prev::before {
        content: "\f0d9";
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #fff; }
    #ui-datepicker-div.month_year_datepicker .ui-datepicker-header .ui-datepicker-next {
      background: #632d08 !important;
      color: #fff !important;
      border: none !important;
      right: 2px !important;
      top: 2px !important;
      display: flex;
      align-items: center;
      justify-content: center; }
      #ui-datepicker-div.month_year_datepicker .ui-datepicker-header .ui-datepicker-next::before {
        content: "\f0da";
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #fff; }
  #ui-datepicker-div.month_year_datepicker .ui-widget-content {
    background-color: #c2570f !important;
    margin-top: 0px !important;
    -webkit-border-bottom-right-radius: 5px !important;
    -webkit-border-bottom-left-radius: 5px !important;
    -moz-border-radius-bottomright: 5px !important;
    -moz-border-radius-bottomleft: 5px !important;
    border-bottom-right-radius: 5px !important;
    border-bottom-left-radius: 5px !important; }
    #ui-datepicker-div.month_year_datepicker .ui-widget-content button {
      border: none !important;
      background: #fff !important;
      line-height: 1;
      font-weight: normal;
      padding: 8px 15px;
      color: #bd553b;
      opacity: 1 !important; }

#news_filter input, #news_filter select {
  padding: 7px !important;
  display: block;
  border: 1px solid #b7cfe1;
  border-radius: 5px;
  width: 100%; }
#news_filter .btn-primary {
  padding: 7px 15px !important; }
#news_filter #reset_news_filter {
  padding: 7px 15px !important;
  margin-left: 10px;
  border: #ccc solid 1px; }
  #news_filter #reset_news_filter:hover {
    background: #ccc; }

.news-list__image {
  position: relative; }
  .news-list__image img {
    width: 100%;
    height: auto; }
.news-list__heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 15px;
  padding-left: 25px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  margin: 0; }
  .news-list__heading:after {
    width: 10px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    background: #d71027;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    border-top-right-radius: 10px; }
.news-list__date {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #662382;
  display: flex;
  margin: 15px 0px;
  align-items: center; }
  .news-list__date .fa {
    margin-right: 8px; }
.news-list__column {
  position: relative;
  padding-bottom: 40px; }
  .news-list__column .btn {
    position: absolute;
    left: 15px;
    bottom: 0; }
  .news-list__column:nth-child(2) h2:after {
    background: #c2570f; }
  .news-list__column:nth-child(3) h2:after {
    background: #5cb85c; }
  .news-list__column:nth-child(4) h2:after {
    background: #5bc0de; }
  .news-list__column:nth-child(5) h2:after {
    background: #f0ad4e; }
  .news-list__column:nth-child(6) h2:after {
    background: #337ab7; }
  .news-list__column:nth-child(7) h2:after {
    background: #c2570f; }
  .news-list__column:nth-child(8) h2:after {
    background: #5cb85c; }
  .news-list__column:nth-child(9) h2:after {
    background: #5bc0de; }
  .news-list__column:nth-child(10) h2:after {
    background: #c2570f; }

.single-news-title {
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500; }

.news-sidebar {
  background: #E0D3E6;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 30px; }
  .news-sidebar__social {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px; }
    .news-sidebar__social span {
      font-family: 'Oswald', sans-serif;
      font-weight: 400;
      font-size: 18px;
      margin-right: 10px;
      text-transform: uppercase; }
    .news-sidebar__social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      margin: 0px 5px;
      border-radius: 50%;
      background: #333;
      color: #fff; }
      .news-sidebar__social a:hover {
        background: #337ab7; }

.news-widget-title {
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 18px; }

.recent-posts-custom {
  width: 100%;
  display: flex; }
  .recent-posts-custom .recent-post-thumbnail {
    width: 50%;
    min-width: 50%;
    padding-right: 10px; }
    .recent-posts-custom .recent-post-thumbnail img {
      width: 100%;
      border-radius: 5px; }
  .recent-posts-custom .recent-post-content h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin-right: 10px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 10px; }
  .recent-posts-custom .recent-post-content p {
    color: #662382;
    font-size: 14px;
    margin-bottom: 10px;
    padding: 0; }
  .recent-posts-custom .recent-post-content button {
    text-decoration: underline;
    color: #d9534f;
    padding: 0;
    background: transparent;
    border: none; }

.news-sidebar .textwidget a:last-child .recent-posts-custom {
  margin-bottom: 10px !important; }

.alert-orange {
  background: #FBE2D0; }

.pale-blue {
  background: #dbe9f5; }

.alert-danger {
  background: #FBE2D0;
  color: #454545; }

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/font-awesome/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/font-awesome/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/font-awesome/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/font-awesome/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/font-awesome/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/font-awesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-fw {
  width: 1.2857142857em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center; }
  .fa-li.fa-lg {
    left: -1.8571428571em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left {
  margin-right: .3em; }
.fa.fa-pull-right {
  margin-left: .3em; }

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: .3em; }
.fa.pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none; }

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: ""; }

.fa-music:before {
  content: ""; }

.fa-search:before {
  content: ""; }

.fa-envelope-o:before {
  content: ""; }

.fa-heart:before {
  content: ""; }

.fa-star:before {
  content: ""; }

.fa-star-o:before {
  content: ""; }

.fa-user:before {
  content: ""; }

.fa-film:before {
  content: ""; }

.fa-th-large:before {
  content: ""; }

.fa-th:before {
  content: ""; }

.fa-th-list:before {
  content: ""; }

.fa-check:before {
  content: ""; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: ""; }

.fa-search-plus:before {
  content: ""; }

.fa-search-minus:before {
  content: ""; }

.fa-power-off:before {
  content: ""; }

.fa-signal:before {
  content: ""; }

.fa-gear:before,
.fa-cog:before {
  content: ""; }

.fa-trash-o:before {
  content: ""; }

.fa-home:before {
  content: ""; }

.fa-file-o:before {
  content: ""; }

.fa-clock-o:before {
  content: ""; }

.fa-road:before {
  content: ""; }

.fa-download:before {
  content: ""; }

.fa-arrow-circle-o-down:before {
  content: ""; }

.fa-arrow-circle-o-up:before {
  content: ""; }

.fa-inbox:before {
  content: ""; }

.fa-play-circle-o:before {
  content: ""; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: ""; }

.fa-refresh:before {
  content: ""; }

.fa-list-alt:before {
  content: ""; }

.fa-lock:before {
  content: ""; }

.fa-flag:before {
  content: ""; }

.fa-headphones:before {
  content: ""; }

.fa-volume-off:before {
  content: ""; }

.fa-volume-down:before {
  content: ""; }

.fa-volume-up:before {
  content: ""; }

.fa-qrcode:before {
  content: ""; }

.fa-barcode:before {
  content: ""; }

.fa-tag:before {
  content: ""; }

.fa-tags:before {
  content: ""; }

.fa-book:before {
  content: ""; }

.fa-bookmark:before {
  content: ""; }

.fa-print:before {
  content: ""; }

.fa-camera:before {
  content: ""; }

.fa-font:before {
  content: ""; }

.fa-bold:before {
  content: ""; }

.fa-italic:before {
  content: ""; }

.fa-text-height:before {
  content: ""; }

.fa-text-width:before {
  content: ""; }

.fa-align-left:before {
  content: ""; }

.fa-align-center:before {
  content: ""; }

.fa-align-right:before {
  content: ""; }

.fa-align-justify:before {
  content: ""; }

.fa-list:before {
  content: ""; }

.fa-dedent:before,
.fa-outdent:before {
  content: ""; }

.fa-indent:before {
  content: ""; }

.fa-video-camera:before {
  content: ""; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: ""; }

.fa-pencil:before {
  content: ""; }

.fa-map-marker:before {
  content: ""; }

.fa-adjust:before {
  content: ""; }

.fa-tint:before {
  content: ""; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: ""; }

.fa-share-square-o:before {
  content: ""; }

.fa-check-square-o:before {
  content: ""; }

.fa-arrows:before {
  content: ""; }

.fa-step-backward:before {
  content: ""; }

.fa-fast-backward:before {
  content: ""; }

.fa-backward:before {
  content: ""; }

.fa-play:before {
  content: ""; }

.fa-pause:before {
  content: ""; }

.fa-stop:before {
  content: ""; }

.fa-forward:before {
  content: ""; }

.fa-fast-forward:before {
  content: ""; }

.fa-step-forward:before {
  content: ""; }

.fa-eject:before {
  content: ""; }

.fa-chevron-left:before {
  content: ""; }

.fa-chevron-right:before {
  content: ""; }

.fa-plus-circle:before {
  content: ""; }

.fa-minus-circle:before {
  content: ""; }

.fa-times-circle:before {
  content: ""; }

.fa-check-circle:before {
  content: ""; }

.fa-question-circle:before {
  content: ""; }

.fa-info-circle:before {
  content: ""; }

.fa-crosshairs:before {
  content: ""; }

.fa-times-circle-o:before {
  content: ""; }

.fa-check-circle-o:before {
  content: ""; }

.fa-ban:before {
  content: ""; }

.fa-arrow-left:before {
  content: ""; }

.fa-arrow-right:before {
  content: ""; }

.fa-arrow-up:before {
  content: ""; }

.fa-arrow-down:before {
  content: ""; }

.fa-mail-forward:before,
.fa-share:before {
  content: ""; }

.fa-expand:before {
  content: ""; }

.fa-compress:before {
  content: ""; }

.fa-plus:before {
  content: ""; }

.fa-minus:before {
  content: ""; }

.fa-asterisk:before {
  content: ""; }

.fa-exclamation-circle:before {
  content: ""; }

.fa-gift:before {
  content: ""; }

.fa-leaf:before {
  content: ""; }

.fa-fire:before {
  content: ""; }

.fa-eye:before {
  content: ""; }

.fa-eye-slash:before {
  content: ""; }

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: ""; }

.fa-plane:before {
  content: ""; }

.fa-calendar:before {
  content: ""; }

.fa-random:before {
  content: ""; }

.fa-comment:before {
  content: ""; }

.fa-magnet:before {
  content: ""; }

.fa-chevron-up:before {
  content: ""; }

.fa-chevron-down:before {
  content: ""; }

.fa-retweet:before {
  content: ""; }

.fa-shopping-cart:before {
  content: ""; }

.fa-folder:before {
  content: ""; }

.fa-folder-open:before {
  content: ""; }

.fa-arrows-v:before {
  content: ""; }

.fa-arrows-h:before {
  content: ""; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: ""; }

.fa-twitter-square:before {
  content: ""; }

.fa-facebook-square:before {
  content: ""; }

.fa-camera-retro:before {
  content: ""; }

.fa-key:before {
  content: ""; }

.fa-gears:before,
.fa-cogs:before {
  content: ""; }

.fa-comments:before {
  content: ""; }

.fa-thumbs-o-up:before {
  content: ""; }

.fa-thumbs-o-down:before {
  content: ""; }

.fa-star-half:before {
  content: ""; }

.fa-heart-o:before {
  content: ""; }

.fa-sign-out:before {
  content: ""; }

.fa-linkedin-square:before {
  content: ""; }

.fa-thumb-tack:before {
  content: ""; }

.fa-external-link:before {
  content: ""; }

.fa-sign-in:before {
  content: ""; }

.fa-trophy:before {
  content: ""; }

.fa-github-square:before {
  content: ""; }

.fa-upload:before {
  content: ""; }

.fa-lemon-o:before {
  content: ""; }

.fa-phone:before {
  content: ""; }

.fa-square-o:before {
  content: ""; }

.fa-bookmark-o:before {
  content: ""; }

.fa-phone-square:before {
  content: ""; }

.fa-twitter:before {
  content: ""; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: ""; }

.fa-github:before {
  content: ""; }

.fa-unlock:before {
  content: ""; }

.fa-credit-card:before {
  content: ""; }

.fa-feed:before,
.fa-rss:before {
  content: ""; }

.fa-hdd-o:before {
  content: ""; }

.fa-bullhorn:before {
  content: ""; }

.fa-bell:before {
  content: ""; }

.fa-certificate:before {
  content: ""; }

.fa-hand-o-right:before {
  content: ""; }

.fa-hand-o-left:before {
  content: ""; }

.fa-hand-o-up:before {
  content: ""; }

.fa-hand-o-down:before {
  content: ""; }

.fa-arrow-circle-left:before {
  content: ""; }

.fa-arrow-circle-right:before {
  content: ""; }

.fa-arrow-circle-up:before {
  content: ""; }

.fa-arrow-circle-down:before {
  content: ""; }

.fa-globe:before {
  content: ""; }

.fa-wrench:before {
  content: ""; }

.fa-tasks:before {
  content: ""; }

.fa-filter:before {
  content: ""; }

.fa-briefcase:before {
  content: ""; }

.fa-arrows-alt:before {
  content: ""; }

.fa-group:before,
.fa-users:before {
  content: ""; }

.fa-chain:before,
.fa-link:before {
  content: ""; }

.fa-cloud:before {
  content: ""; }

.fa-flask:before {
  content: ""; }

.fa-cut:before,
.fa-scissors:before {
  content: ""; }

.fa-copy:before,
.fa-files-o:before {
  content: ""; }

.fa-paperclip:before {
  content: ""; }

.fa-save:before,
.fa-floppy-o:before {
  content: ""; }

.fa-square:before {
  content: ""; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: ""; }

.fa-list-ul:before {
  content: ""; }

.fa-list-ol:before {
  content: ""; }

.fa-strikethrough:before {
  content: ""; }

.fa-underline:before {
  content: ""; }

.fa-table:before {
  content: ""; }

.fa-magic:before {
  content: ""; }

.fa-truck:before {
  content: ""; }

.fa-pinterest:before {
  content: ""; }

.fa-pinterest-square:before {
  content: ""; }

.fa-google-plus-square:before {
  content: ""; }

.fa-google-plus:before {
  content: ""; }

.fa-money:before {
  content: ""; }

.fa-caret-down:before {
  content: ""; }

.fa-caret-up:before {
  content: ""; }

.fa-caret-left:before {
  content: ""; }

.fa-caret-right:before {
  content: ""; }

.fa-columns:before {
  content: ""; }

.fa-unsorted:before,
.fa-sort:before {
  content: ""; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: ""; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: ""; }

.fa-envelope:before {
  content: ""; }

.fa-linkedin:before {
  content: ""; }

.fa-rotate-left:before,
.fa-undo:before {
  content: ""; }

.fa-legal:before,
.fa-gavel:before {
  content: ""; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: ""; }

.fa-comment-o:before {
  content: ""; }

.fa-comments-o:before {
  content: ""; }

.fa-flash:before,
.fa-bolt:before {
  content: ""; }

.fa-sitemap:before {
  content: ""; }

.fa-umbrella:before {
  content: ""; }

.fa-paste:before,
.fa-clipboard:before {
  content: ""; }

.fa-lightbulb-o:before {
  content: ""; }

.fa-exchange:before {
  content: ""; }

.fa-cloud-download:before {
  content: ""; }

.fa-cloud-upload:before {
  content: ""; }

.fa-user-md:before {
  content: ""; }

.fa-stethoscope:before {
  content: ""; }

.fa-suitcase:before {
  content: ""; }

.fa-bell-o:before {
  content: ""; }

.fa-coffee:before {
  content: ""; }

.fa-cutlery:before {
  content: ""; }

.fa-file-text-o:before {
  content: ""; }

.fa-building-o:before {
  content: ""; }

.fa-hospital-o:before {
  content: ""; }

.fa-ambulance:before {
  content: ""; }

.fa-medkit:before {
  content: ""; }

.fa-fighter-jet:before {
  content: ""; }

.fa-beer:before {
  content: ""; }

.fa-h-square:before {
  content: ""; }

.fa-plus-square:before {
  content: ""; }

.fa-angle-double-left:before {
  content: ""; }

.fa-angle-double-right:before {
  content: ""; }

.fa-angle-double-up:before {
  content: ""; }

.fa-angle-double-down:before {
  content: ""; }

.fa-angle-left:before {
  content: ""; }

.fa-angle-right:before {
  content: ""; }

.fa-angle-up:before {
  content: ""; }

.fa-angle-down:before {
  content: ""; }

.fa-desktop:before {
  content: ""; }

.fa-laptop:before {
  content: ""; }

.fa-tablet:before {
  content: ""; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: ""; }

.fa-circle-o:before {
  content: ""; }

.fa-quote-left:before {
  content: ""; }

.fa-quote-right:before {
  content: ""; }

.fa-spinner:before {
  content: ""; }

.fa-circle:before {
  content: ""; }

.fa-mail-reply:before,
.fa-reply:before {
  content: ""; }

.fa-github-alt:before {
  content: ""; }

.fa-folder-o:before {
  content: ""; }

.fa-folder-open-o:before {
  content: ""; }

.fa-smile-o:before {
  content: ""; }

.fa-frown-o:before {
  content: ""; }

.fa-meh-o:before {
  content: ""; }

.fa-gamepad:before {
  content: ""; }

.fa-keyboard-o:before {
  content: ""; }

.fa-flag-o:before {
  content: ""; }

.fa-flag-checkered:before {
  content: ""; }

.fa-terminal:before {
  content: ""; }

.fa-code:before {
  content: ""; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: ""; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: ""; }

.fa-location-arrow:before {
  content: ""; }

.fa-crop:before {
  content: ""; }

.fa-code-fork:before {
  content: ""; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: ""; }

.fa-question:before {
  content: ""; }

.fa-info:before {
  content: ""; }

.fa-exclamation:before {
  content: ""; }

.fa-superscript:before {
  content: ""; }

.fa-subscript:before {
  content: ""; }

.fa-eraser:before {
  content: ""; }

.fa-puzzle-piece:before {
  content: ""; }

.fa-microphone:before {
  content: ""; }

.fa-microphone-slash:before {
  content: ""; }

.fa-shield:before {
  content: ""; }

.fa-calendar-o:before {
  content: ""; }

.fa-fire-extinguisher:before {
  content: ""; }

.fa-rocket:before {
  content: ""; }

.fa-maxcdn:before {
  content: ""; }

.fa-chevron-circle-left:before {
  content: ""; }

.fa-chevron-circle-right:before {
  content: ""; }

.fa-chevron-circle-up:before {
  content: ""; }

.fa-chevron-circle-down:before {
  content: ""; }

.fa-html5:before {
  content: ""; }

.fa-css3:before {
  content: ""; }

.fa-anchor:before {
  content: ""; }

.fa-unlock-alt:before {
  content: ""; }

.fa-bullseye:before {
  content: ""; }

.fa-ellipsis-h:before {
  content: ""; }

.fa-ellipsis-v:before {
  content: ""; }

.fa-rss-square:before {
  content: ""; }

.fa-play-circle:before {
  content: ""; }

.fa-ticket:before {
  content: ""; }

.fa-minus-square:before {
  content: ""; }

.fa-minus-square-o:before {
  content: ""; }

.fa-level-up:before {
  content: ""; }

.fa-level-down:before {
  content: ""; }

.fa-check-square:before {
  content: ""; }

.fa-pencil-square:before {
  content: ""; }

.fa-external-link-square:before {
  content: ""; }

.fa-share-square:before {
  content: ""; }

.fa-compass:before {
  content: ""; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: ""; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: ""; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: ""; }

.fa-euro:before,
.fa-eur:before {
  content: ""; }

.fa-gbp:before {
  content: ""; }

.fa-dollar:before,
.fa-usd:before {
  content: ""; }

.fa-rupee:before,
.fa-inr:before {
  content: ""; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: ""; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: ""; }

.fa-won:before,
.fa-krw:before {
  content: ""; }

.fa-bitcoin:before,
.fa-btc:before {
  content: ""; }

.fa-file:before {
  content: ""; }

.fa-file-text:before {
  content: ""; }

.fa-sort-alpha-asc:before {
  content: ""; }

.fa-sort-alpha-desc:before {
  content: ""; }

.fa-sort-amount-asc:before {
  content: ""; }

.fa-sort-amount-desc:before {
  content: ""; }

.fa-sort-numeric-asc:before {
  content: ""; }

.fa-sort-numeric-desc:before {
  content: ""; }

.fa-thumbs-up:before {
  content: ""; }

.fa-thumbs-down:before {
  content: ""; }

.fa-youtube-square:before {
  content: ""; }

.fa-youtube:before {
  content: ""; }

.fa-xing:before {
  content: ""; }

.fa-xing-square:before {
  content: ""; }

.fa-youtube-play:before {
  content: ""; }

.fa-dropbox:before {
  content: ""; }

.fa-stack-overflow:before {
  content: ""; }

.fa-instagram:before {
  content: ""; }

.fa-flickr:before {
  content: ""; }

.fa-adn:before {
  content: ""; }

.fa-bitbucket:before {
  content: ""; }

.fa-bitbucket-square:before {
  content: ""; }

.fa-tumblr:before {
  content: ""; }

.fa-tumblr-square:before {
  content: ""; }

.fa-long-arrow-down:before {
  content: ""; }

.fa-long-arrow-up:before {
  content: ""; }

.fa-long-arrow-left:before {
  content: ""; }

.fa-long-arrow-right:before {
  content: ""; }

.fa-apple:before {
  content: ""; }

.fa-windows:before {
  content: ""; }

.fa-android:before {
  content: ""; }

.fa-linux:before {
  content: ""; }

.fa-dribbble:before {
  content: ""; }

.fa-skype:before {
  content: ""; }

.fa-foursquare:before {
  content: ""; }

.fa-trello:before {
  content: ""; }

.fa-female:before {
  content: ""; }

.fa-male:before {
  content: ""; }

.fa-gittip:before,
.fa-gratipay:before {
  content: ""; }

.fa-sun-o:before {
  content: ""; }

.fa-moon-o:before {
  content: ""; }

.fa-archive:before {
  content: ""; }

.fa-bug:before {
  content: ""; }

.fa-vk:before {
  content: ""; }

.fa-weibo:before {
  content: ""; }

.fa-renren:before {
  content: ""; }

.fa-pagelines:before {
  content: ""; }

.fa-stack-exchange:before {
  content: ""; }

.fa-arrow-circle-o-right:before {
  content: ""; }

.fa-arrow-circle-o-left:before {
  content: ""; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: ""; }

.fa-dot-circle-o:before {
  content: ""; }

.fa-wheelchair:before {
  content: ""; }

.fa-vimeo-square:before {
  content: ""; }

.fa-turkish-lira:before,
.fa-try:before {
  content: ""; }

.fa-plus-square-o:before {
  content: ""; }

.fa-space-shuttle:before {
  content: ""; }

.fa-slack:before {
  content: ""; }

.fa-envelope-square:before {
  content: ""; }

.fa-wordpress:before {
  content: ""; }

.fa-openid:before {
  content: ""; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: ""; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: ""; }

.fa-yahoo:before {
  content: ""; }

.fa-google:before {
  content: ""; }

.fa-reddit:before {
  content: ""; }

.fa-reddit-square:before {
  content: ""; }

.fa-stumbleupon-circle:before {
  content: ""; }

.fa-stumbleupon:before {
  content: ""; }

.fa-delicious:before {
  content: ""; }

.fa-digg:before {
  content: ""; }

.fa-pied-piper-pp:before {
  content: ""; }

.fa-pied-piper-alt:before {
  content: ""; }

.fa-drupal:before {
  content: ""; }

.fa-joomla:before {
  content: ""; }

.fa-language:before {
  content: ""; }

.fa-fax:before {
  content: ""; }

.fa-building:before {
  content: ""; }

.fa-child:before {
  content: ""; }

.fa-paw:before {
  content: ""; }

.fa-spoon:before {
  content: ""; }

.fa-cube:before {
  content: ""; }

.fa-cubes:before {
  content: ""; }

.fa-behance:before {
  content: ""; }

.fa-behance-square:before {
  content: ""; }

.fa-steam:before {
  content: ""; }

.fa-steam-square:before {
  content: ""; }

.fa-recycle:before {
  content: ""; }

.fa-automobile:before,
.fa-car:before {
  content: ""; }

.fa-cab:before,
.fa-taxi:before {
  content: ""; }

.fa-tree:before {
  content: ""; }

.fa-spotify:before {
  content: ""; }

.fa-deviantart:before {
  content: ""; }

.fa-soundcloud:before {
  content: ""; }

.fa-database:before {
  content: ""; }

.fa-file-pdf-o:before {
  content: ""; }

.fa-file-word-o:before {
  content: ""; }

.fa-file-excel-o:before {
  content: ""; }

.fa-file-powerpoint-o:before {
  content: ""; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: ""; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: ""; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: ""; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: ""; }

.fa-file-code-o:before {
  content: ""; }

.fa-vine:before {
  content: ""; }

.fa-codepen:before {
  content: ""; }

.fa-jsfiddle:before {
  content: ""; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: ""; }

.fa-circle-o-notch:before {
  content: ""; }

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: ""; }

.fa-ge:before,
.fa-empire:before {
  content: ""; }

.fa-git-square:before {
  content: ""; }

.fa-git:before {
  content: ""; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: ""; }

.fa-tencent-weibo:before {
  content: ""; }

.fa-qq:before {
  content: ""; }

.fa-wechat:before,
.fa-weixin:before {
  content: ""; }

.fa-send:before,
.fa-paper-plane:before {
  content: ""; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: ""; }

.fa-history:before {
  content: ""; }

.fa-circle-thin:before {
  content: ""; }

.fa-header:before {
  content: ""; }

.fa-paragraph:before {
  content: ""; }

.fa-sliders:before {
  content: ""; }

.fa-share-alt:before {
  content: ""; }

.fa-share-alt-square:before {
  content: ""; }

.fa-bomb:before {
  content: ""; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: ""; }

.fa-tty:before {
  content: ""; }

.fa-binoculars:before {
  content: ""; }

.fa-plug:before {
  content: ""; }

.fa-slideshare:before {
  content: ""; }

.fa-twitch:before {
  content: ""; }

.fa-yelp:before {
  content: ""; }

.fa-newspaper-o:before {
  content: ""; }

.fa-wifi:before {
  content: ""; }

.fa-calculator:before {
  content: ""; }

.fa-paypal:before {
  content: ""; }

.fa-google-wallet:before {
  content: ""; }

.fa-cc-visa:before {
  content: ""; }

.fa-cc-mastercard:before {
  content: ""; }

.fa-cc-discover:before {
  content: ""; }

.fa-cc-amex:before {
  content: ""; }

.fa-cc-paypal:before {
  content: ""; }

.fa-cc-stripe:before {
  content: ""; }

.fa-bell-slash:before {
  content: ""; }

.fa-bell-slash-o:before {
  content: ""; }

.fa-trash:before {
  content: ""; }

.fa-copyright:before {
  content: ""; }

.fa-at:before {
  content: ""; }

.fa-eyedropper:before {
  content: ""; }

.fa-paint-brush:before {
  content: ""; }

.fa-birthday-cake:before {
  content: ""; }

.fa-area-chart:before {
  content: ""; }

.fa-pie-chart:before {
  content: ""; }

.fa-line-chart:before {
  content: ""; }

.fa-lastfm:before {
  content: ""; }

.fa-lastfm-square:before {
  content: ""; }

.fa-toggle-off:before {
  content: ""; }

.fa-toggle-on:before {
  content: ""; }

.fa-bicycle:before {
  content: ""; }

.fa-bus:before {
  content: ""; }

.fa-ioxhost:before {
  content: ""; }

.fa-angellist:before {
  content: ""; }

.fa-cc:before {
  content: ""; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: ""; }

.fa-meanpath:before {
  content: ""; }

.fa-buysellads:before {
  content: ""; }

.fa-connectdevelop:before {
  content: ""; }

.fa-dashcube:before {
  content: ""; }

.fa-forumbee:before {
  content: ""; }

.fa-leanpub:before {
  content: ""; }

.fa-sellsy:before {
  content: ""; }

.fa-shirtsinbulk:before {
  content: ""; }

.fa-simplybuilt:before {
  content: ""; }

.fa-skyatlas:before {
  content: ""; }

.fa-cart-plus:before {
  content: ""; }

.fa-cart-arrow-down:before {
  content: ""; }

.fa-diamond:before {
  content: ""; }

.fa-ship:before {
  content: ""; }

.fa-user-secret:before {
  content: ""; }

.fa-motorcycle:before {
  content: ""; }

.fa-street-view:before {
  content: ""; }

.fa-heartbeat:before {
  content: ""; }

.fa-venus:before {
  content: ""; }

.fa-mars:before {
  content: ""; }

.fa-mercury:before {
  content: ""; }

.fa-intersex:before,
.fa-transgender:before {
  content: ""; }

.fa-transgender-alt:before {
  content: ""; }

.fa-venus-double:before {
  content: ""; }

.fa-mars-double:before {
  content: ""; }

.fa-venus-mars:before {
  content: ""; }

.fa-mars-stroke:before {
  content: ""; }

.fa-mars-stroke-v:before {
  content: ""; }

.fa-mars-stroke-h:before {
  content: ""; }

.fa-neuter:before {
  content: ""; }

.fa-genderless:before {
  content: ""; }

.fa-facebook-official:before {
  content: ""; }

.fa-pinterest-p:before {
  content: ""; }

.fa-whatsapp:before {
  content: ""; }

.fa-server:before {
  content: ""; }

.fa-user-plus:before {
  content: ""; }

.fa-user-times:before {
  content: ""; }

.fa-hotel:before,
.fa-bed:before {
  content: ""; }

.fa-viacoin:before {
  content: ""; }

.fa-train:before {
  content: ""; }

.fa-subway:before {
  content: ""; }

.fa-medium:before {
  content: ""; }

.fa-yc:before,
.fa-y-combinator:before {
  content: ""; }

.fa-optin-monster:before {
  content: ""; }

.fa-opencart:before {
  content: ""; }

.fa-expeditedssl:before {
  content: ""; }

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: ""; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: ""; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: ""; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: ""; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: ""; }

.fa-mouse-pointer:before {
  content: ""; }

.fa-i-cursor:before {
  content: ""; }

.fa-object-group:before {
  content: ""; }

.fa-object-ungroup:before {
  content: ""; }

.fa-sticky-note:before {
  content: ""; }

.fa-sticky-note-o:before {
  content: ""; }

.fa-cc-jcb:before {
  content: ""; }

.fa-cc-diners-club:before {
  content: ""; }

.fa-clone:before {
  content: ""; }

.fa-balance-scale:before {
  content: ""; }

.fa-hourglass-o:before {
  content: ""; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: ""; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: ""; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: ""; }

.fa-hourglass:before {
  content: ""; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: ""; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: ""; }

.fa-hand-scissors-o:before {
  content: ""; }

.fa-hand-lizard-o:before {
  content: ""; }

.fa-hand-spock-o:before {
  content: ""; }

.fa-hand-pointer-o:before {
  content: ""; }

.fa-hand-peace-o:before {
  content: ""; }

.fa-trademark:before {
  content: ""; }

.fa-registered:before {
  content: ""; }

.fa-creative-commons:before {
  content: ""; }

.fa-gg:before {
  content: ""; }

.fa-gg-circle:before {
  content: ""; }

.fa-tripadvisor:before {
  content: ""; }

.fa-odnoklassniki:before {
  content: ""; }

.fa-odnoklassniki-square:before {
  content: ""; }

.fa-get-pocket:before {
  content: ""; }

.fa-wikipedia-w:before {
  content: ""; }

.fa-safari:before {
  content: ""; }

.fa-chrome:before {
  content: ""; }

.fa-firefox:before {
  content: ""; }

.fa-opera:before {
  content: ""; }

.fa-internet-explorer:before {
  content: ""; }

.fa-tv:before,
.fa-television:before {
  content: ""; }

.fa-contao:before {
  content: ""; }

.fa-500px:before {
  content: ""; }

.fa-amazon:before {
  content: ""; }

.fa-calendar-plus-o:before {
  content: ""; }

.fa-calendar-minus-o:before {
  content: ""; }

.fa-calendar-times-o:before {
  content: ""; }

.fa-calendar-check-o:before {
  content: ""; }

.fa-industry:before {
  content: ""; }

.fa-map-pin:before {
  content: ""; }

.fa-map-signs:before {
  content: ""; }

.fa-map-o:before {
  content: ""; }

.fa-map:before {
  content: ""; }

.fa-commenting:before {
  content: ""; }

.fa-commenting-o:before {
  content: ""; }

.fa-houzz:before {
  content: ""; }

.fa-vimeo:before {
  content: ""; }

.fa-black-tie:before {
  content: ""; }

.fa-fonticons:before {
  content: ""; }

.fa-reddit-alien:before {
  content: ""; }

.fa-edge:before {
  content: ""; }

.fa-credit-card-alt:before {
  content: ""; }

.fa-codiepie:before {
  content: ""; }

.fa-modx:before {
  content: ""; }

.fa-fort-awesome:before {
  content: ""; }

.fa-usb:before {
  content: ""; }

.fa-product-hunt:before {
  content: ""; }

.fa-mixcloud:before {
  content: ""; }

.fa-scribd:before {
  content: ""; }

.fa-pause-circle:before {
  content: ""; }

.fa-pause-circle-o:before {
  content: ""; }

.fa-stop-circle:before {
  content: ""; }

.fa-stop-circle-o:before {
  content: ""; }

.fa-shopping-bag:before {
  content: ""; }

.fa-shopping-basket:before {
  content: ""; }

.fa-hashtag:before {
  content: ""; }

.fa-bluetooth:before {
  content: ""; }

.fa-bluetooth-b:before {
  content: ""; }

.fa-percent:before {
  content: ""; }

.fa-gitlab:before {
  content: ""; }

.fa-wpbeginner:before {
  content: ""; }

.fa-wpforms:before {
  content: ""; }

.fa-envira:before {
  content: ""; }

.fa-universal-access:before {
  content: ""; }

.fa-wheelchair-alt:before {
  content: ""; }

.fa-question-circle-o:before {
  content: ""; }

.fa-blind:before {
  content: ""; }

.fa-audio-description:before {
  content: ""; }

.fa-volume-control-phone:before {
  content: ""; }

.fa-braille:before {
  content: ""; }

.fa-assistive-listening-systems:before {
  content: ""; }

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: ""; }

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: ""; }

.fa-glide:before {
  content: ""; }

.fa-glide-g:before {
  content: ""; }

.fa-signing:before,
.fa-sign-language:before {
  content: ""; }

.fa-low-vision:before {
  content: ""; }

.fa-viadeo:before {
  content: ""; }

.fa-viadeo-square:before {
  content: ""; }

.fa-snapchat:before {
  content: ""; }

.fa-snapchat-ghost:before {
  content: ""; }

.fa-snapchat-square:before {
  content: ""; }

.fa-pied-piper:before {
  content: ""; }

.fa-first-order:before {
  content: ""; }

.fa-yoast:before {
  content: ""; }

.fa-themeisle:before {
  content: ""; }

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: ""; }

.fa-fa:before,
.fa-font-awesome:before {
  content: ""; }

.fa-handshake-o:before {
  content: ""; }

.fa-envelope-open:before {
  content: ""; }

.fa-envelope-open-o:before {
  content: ""; }

.fa-linode:before {
  content: ""; }

.fa-address-book:before {
  content: ""; }

.fa-address-book-o:before {
  content: ""; }

.fa-vcard:before,
.fa-address-card:before {
  content: ""; }

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: ""; }

.fa-user-circle:before {
  content: ""; }

.fa-user-circle-o:before {
  content: ""; }

.fa-user-o:before {
  content: ""; }

.fa-id-badge:before {
  content: ""; }

.fa-drivers-license:before,
.fa-id-card:before {
  content: ""; }

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: ""; }

.fa-quora:before {
  content: ""; }

.fa-free-code-camp:before {
  content: ""; }

.fa-telegram:before {
  content: ""; }

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: ""; }

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: ""; }

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: ""; }

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: ""; }

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: ""; }

.fa-shower:before {
  content: ""; }

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: ""; }

.fa-podcast:before {
  content: ""; }

.fa-window-maximize:before {
  content: ""; }

.fa-window-minimize:before {
  content: ""; }

.fa-window-restore:before {
  content: ""; }

.fa-times-rectangle:before,
.fa-window-close:before {
  content: ""; }

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: ""; }

.fa-bandcamp:before {
  content: ""; }

.fa-grav:before {
  content: ""; }

.fa-etsy:before {
  content: ""; }

.fa-imdb:before {
  content: ""; }

.fa-ravelry:before {
  content: ""; }

.fa-eercast:before {
  content: ""; }

.fa-microchip:before {
  content: ""; }

.fa-snowflake-o:before {
  content: ""; }

.fa-superpowers:before {
  content: ""; }

.fa-wpexplorer:before {
  content: ""; }

.fa-meetup:before {
  content: ""; }

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

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

/*! jQuery UI - v1.11.4 - 2015-03-11
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none; }

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

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none; }

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse; }

.ui-helper-clearfix:after {
  clear: both; }

.ui-helper-clearfix {
  min-height: 0;
  /* support: IE7 */ }

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
  /* support: IE8 */ }

.ui-front {
  z-index: 100; }

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important; }

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat; }

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: .5em .5em .5em .7em;
  min-height: 0;
  /* support: IE7 */
  font-size: 100%; }

.ui-accordion .ui-accordion-icons {
  padding-left: 2.2em; }

.ui-accordion .ui-accordion-icons .ui-accordion-icons {
  padding-left: 2.2em; }

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  position: absolute;
  left: .5em;
  top: 50%;
  margin-top: -8px; }

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto; }

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default; }

.ui-button {
  display: inline-block;
  position: relative;
  padding: 0;
  line-height: normal;
  margin-right: .1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  overflow: visible;
  /* removes extra width in IE */ }

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none; }

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
  width: 2.2em; }

/* button elements seem to need a little more width */
button.ui-button-icon-only {
  width: 2.4em; }

.ui-button-icons-only {
  width: 3.4em; }

button.ui-button-icons-only {
  width: 3.7em; }

/* button text element */
.ui-button .ui-button-text {
  display: block;
  line-height: normal; }

.ui-button-text-only .ui-button-text {
  padding: .4em 1em; }

.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
  padding: .4em;
  text-indent: -9999999px; }

.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: .4em 1em .4em 2.1em; }

.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: .4em 2.1em .4em 1em; }

.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em; }

/* no icon support for input elements, provide padding by default */
input.ui-button {
  padding: .4em 1em; }

/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
  position: absolute;
  top: 50%;
  margin-top: -8px; }

.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px; }

.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
  left: .5em; }

.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
  right: .5em; }

/* button sets */
.ui-buttonset {
  margin-right: 7px; }

.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -.3em; }

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0; }

.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none; }

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0; }

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em; }

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px; }

.ui-datepicker .ui-datepicker-prev {
  left: 2px; }

.ui-datepicker .ui-datepicker-next {
  right: 2px; }

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px; }

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px; }

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px; }

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center; }

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0; }

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%; }

.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em; }

.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0; }

.ui-datepicker td {
  border: 0;
  padding: 1px; }

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none; }

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0; }

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible; }

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left; }

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto; }

.ui-datepicker-multi .ui-datepicker-group {
  float: left; }

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em; }

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%; }

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%; }

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%; }

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0; }

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left; }

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0; }

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl; }

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto; }

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto; }

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto; }

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto; }

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right; }

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px; }

.ui-dialog {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  outline: 0; }

.ui-dialog .ui-dialog-titlebar {
  padding: .4em 1em;
  position: relative; }

.ui-dialog .ui-dialog-title {
  float: left;
  margin: .1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis; }

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px; }

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: .5em 1em;
  background: none;
  overflow: auto; }

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em; }

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right; }

.ui-dialog .ui-dialog-buttonpane button {
  margin: .5em .4em .5em 0;
  cursor: pointer; }

.ui-dialog .ui-resizable-se {
  width: 12px;
  height: 12px;
  right: -5px;
  bottom: -5px;
  background-position: 16px 16px; }

.ui-draggable .ui-dialog-titlebar {
  cursor: move; }

.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none; }

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: none; }

.ui-menu .ui-menu {
  position: absolute; }

.ui-menu .ui-menu-item {
  position: relative;
  margin: 0;
  padding: 3px 1em 3px .4em;
  cursor: pointer;
  min-height: 0;
  /* support: IE7 */
  /* support: IE10, see #8844 */
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); }

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0; }

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px; }

/* icon support */
.ui-menu-icons {
  position: relative; }

.ui-menu-icons .ui-menu-item {
  padding-left: 2em; }

/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: .2em;
  margin: auto 0; }

/* right-aligned */
.ui-menu .ui-menu-icon {
  left: auto;
  right: 0; }

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden; }

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%; }

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  filter: alpha(opacity=25);
  /* support: IE8 */
  opacity: 0.25; }

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none; }

.ui-resizable {
  position: relative; }

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none; }

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none; }

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0; }

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0; }

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%; }

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%; }

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px; }

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px; }

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px; }

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px; }

.ui-selectable {
  -ms-touch-action: none;
  touch-action: none; }

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black; }

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none; }

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  /* Support: IE7 */
  overflow-x: hidden;
  padding-bottom: 1px; }

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0; }

.ui-selectmenu-open {
  display: block; }

.ui-selectmenu-button {
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  cursor: pointer; }

.ui-selectmenu-button span.ui-icon {
  right: 0.5em;
  left: auto;
  margin-top: -8px;
  position: absolute;
  top: 50%; }

.ui-selectmenu-button span.ui-selectmenu-text {
  text-align: left;
  padding: 0.4em 2.1em 0.4em 1em;
  display: block;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.ui-slider {
  position: relative;
  text-align: left; }

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none; }

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0; }

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit; }

.ui-slider-horizontal {
  height: .8em; }

.ui-slider-horizontal .ui-slider-handle {
  top: -.3em;
  margin-left: -.6em; }

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%; }

.ui-slider-horizontal .ui-slider-range-min {
  left: 0; }

.ui-slider-horizontal .ui-slider-range-max {
  right: 0; }

.ui-slider-vertical {
  width: .8em;
  height: 100px; }

.ui-slider-vertical .ui-slider-handle {
  left: -.3em;
  margin-left: 0;
  margin-bottom: -.6em; }

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%; }

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0; }

.ui-slider-vertical .ui-slider-range-max {
  top: 0; }

.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none; }

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle; }

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  margin: .2em 0;
  vertical-align: middle;
  margin-left: .4em;
  margin-right: 22px; }

.ui-spinner-button {
  width: 16px;
  height: 50%;
  font-size: .5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0; }

/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
  border-top: none;
  border-bottom: none;
  border-right: none; }

/* vertically center icon */
.ui-spinner .ui-icon {
  position: absolute;
  margin-top: -8px;
  top: 50%;
  left: 0; }

.ui-spinner-up {
  top: 0; }

.ui-spinner-down {
  bottom: 0; }

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
  /* need to fix icons sprite */
  background-position: -65px -16px; }

.ui-tabs {
  position: relative;
  /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: .2em; }

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: .2em .2em 0; }

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px .2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap; }

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: .5em 1em;
  text-decoration: none; }

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px; }

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text; }

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer; }

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none; }

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
  -webkit-box-shadow: 0 0 5px #aaa;
  box-shadow: 0 0 5px #aaa; }

body .ui-tooltip {
  border-width: 2px; }

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
  font-size: 1.1em; }

.ui-widget .ui-widget {
  font-size: 1em; }

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
  font-size: 1em; }

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #eeeeee url("images/ui-bg_highlight-soft_100_eeeeee_1x100.png") 50% top repeat-x;
  color: #333333; }

.ui-widget-content a {
  color: #333333; }

.ui-widget-header {
  border: 1px solid #e78f08;
  background: #f6a828 url("images/ui-bg_gloss-wave_35_f6a828_500x100.png") 50% 50% repeat-x;
  color: #ffffff;
  font-weight: bold; }

.ui-widget-header a {
  color: #ffffff; }

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #cccccc;
  background: #f6f6f6 url("images/ui-bg_glass_100_f6f6f6_1x400.png") 50% 50% repeat-x;
  font-weight: bold;
  color: #1c94c4; }

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: #1c94c4;
  text-decoration: none; }

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 1px solid #fbcb09;
  background: #fdf5ce url("images/ui-bg_glass_100_fdf5ce_1x400.png") 50% 50% repeat-x;
  font-weight: bold;
  color: #c77405; }

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
  color: #c77405;
  text-decoration: none; }

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid #fbd850;
  background: #ffffff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
  font-weight: bold;
  color: #eb8f00; }

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #eb8f00;
  text-decoration: none; }

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #fed22f;
  background: #ffe45c url("images/ui-bg_highlight-soft_75_ffe45c_1x100.png") 50% top repeat-x;
  color: #363636; }

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #363636; }

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: #b81900 url("images/ui-bg_diagonals-thick_18_b81900_40x40.png") 50% 50% repeat;
  color: #ffffff; }

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #ffffff; }

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #ffffff; }

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold; }

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: Alpha(Opacity=70);
  /* support: IE8 */
  font-weight: normal; }

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
  /* support: IE8 */
  background-image: none; }

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
  /* support: IE8 - See #6059 */ }

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px; }

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("images/ui-icons_222222_256x240.png"); }

.ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.png"); }

.ui-state-default .ui-icon {
  background-image: url("images/ui-icons_ef8c08_256x240.png"); }

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
  background-image: url("images/ui-icons_ef8c08_256x240.png"); }

.ui-state-active .ui-icon {
  background-image: url("images/ui-icons_ef8c08_256x240.png"); }

.ui-state-highlight .ui-icon {
  background-image: url("images/ui-icons_228ef1_256x240.png"); }

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_ffd27a_256x240.png"); }

/* positioning */
.ui-icon-blank {
  background-position: 16px 16px; }

.ui-icon-carat-1-n {
  background-position: 0 0; }

.ui-icon-carat-1-ne {
  background-position: -16px 0; }

.ui-icon-carat-1-e {
  background-position: -32px 0; }

.ui-icon-carat-1-se {
  background-position: -48px 0; }

.ui-icon-carat-1-s {
  background-position: -64px 0; }

.ui-icon-carat-1-sw {
  background-position: -80px 0; }

.ui-icon-carat-1-w {
  background-position: -96px 0; }

.ui-icon-carat-1-nw {
  background-position: -112px 0; }

.ui-icon-carat-2-n-s {
  background-position: -128px 0; }

.ui-icon-carat-2-e-w {
  background-position: -144px 0; }

.ui-icon-triangle-1-n {
  background-position: 0 -16px; }

.ui-icon-triangle-1-ne {
  background-position: -16px -16px; }

.ui-icon-triangle-1-e {
  background-position: -32px -16px; }

.ui-icon-triangle-1-se {
  background-position: -48px -16px; }

.ui-icon-triangle-1-s {
  background-position: -64px -16px; }

.ui-icon-triangle-1-sw {
  background-position: -80px -16px; }

.ui-icon-triangle-1-w {
  background-position: -96px -16px; }

.ui-icon-triangle-1-nw {
  background-position: -112px -16px; }

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px; }

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px; }

.ui-icon-arrow-1-n {
  background-position: 0 -32px; }

.ui-icon-arrow-1-ne {
  background-position: -16px -32px; }

.ui-icon-arrow-1-e {
  background-position: -32px -32px; }

.ui-icon-arrow-1-se {
  background-position: -48px -32px; }

.ui-icon-arrow-1-s {
  background-position: -64px -32px; }

.ui-icon-arrow-1-sw {
  background-position: -80px -32px; }

.ui-icon-arrow-1-w {
  background-position: -96px -32px; }

.ui-icon-arrow-1-nw {
  background-position: -112px -32px; }

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px; }

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px; }

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px; }

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px; }

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px; }

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px; }

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px; }

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px; }

.ui-icon-arrowthick-1-n {
  background-position: 0 -48px; }

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px; }

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px; }

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px; }

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px; }

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px; }

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px; }

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px; }

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px; }

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px; }

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px; }

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px; }

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px; }

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px; }

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px; }

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px; }

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px; }

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px; }

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px; }

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px; }

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px; }

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px; }

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px; }

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px; }

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px; }

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px; }

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px; }

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px; }

.ui-icon-arrow-4 {
  background-position: 0 -80px; }

.ui-icon-arrow-4-diag {
  background-position: -16px -80px; }

.ui-icon-extlink {
  background-position: -32px -80px; }

.ui-icon-newwin {
  background-position: -48px -80px; }

.ui-icon-refresh {
  background-position: -64px -80px; }

.ui-icon-shuffle {
  background-position: -80px -80px; }

.ui-icon-transfer-e-w {
  background-position: -96px -80px; }

.ui-icon-transferthick-e-w {
  background-position: -112px -80px; }

.ui-icon-folder-collapsed {
  background-position: 0 -96px; }

.ui-icon-folder-open {
  background-position: -16px -96px; }

.ui-icon-document {
  background-position: -32px -96px; }

.ui-icon-document-b {
  background-position: -48px -96px; }

.ui-icon-note {
  background-position: -64px -96px; }

.ui-icon-mail-closed {
  background-position: -80px -96px; }

.ui-icon-mail-open {
  background-position: -96px -96px; }

.ui-icon-suitcase {
  background-position: -112px -96px; }

.ui-icon-comment {
  background-position: -128px -96px; }

.ui-icon-person {
  background-position: -144px -96px; }

.ui-icon-print {
  background-position: -160px -96px; }

.ui-icon-trash {
  background-position: -176px -96px; }

.ui-icon-locked {
  background-position: -192px -96px; }

.ui-icon-unlocked {
  background-position: -208px -96px; }

.ui-icon-bookmark {
  background-position: -224px -96px; }

.ui-icon-tag {
  background-position: -240px -96px; }

.ui-icon-home {
  background-position: 0 -112px; }

.ui-icon-flag {
  background-position: -16px -112px; }

.ui-icon-calendar {
  background-position: -32px -112px; }

.ui-icon-cart {
  background-position: -48px -112px; }

.ui-icon-pencil {
  background-position: -64px -112px; }

.ui-icon-clock {
  background-position: -80px -112px; }

.ui-icon-disk {
  background-position: -96px -112px; }

.ui-icon-calculator {
  background-position: -112px -112px; }

.ui-icon-zoomin {
  background-position: -128px -112px; }

.ui-icon-zoomout {
  background-position: -144px -112px; }

.ui-icon-search {
  background-position: -160px -112px; }

.ui-icon-wrench {
  background-position: -176px -112px; }

.ui-icon-gear {
  background-position: -192px -112px; }

.ui-icon-heart {
  background-position: -208px -112px; }

.ui-icon-star {
  background-position: -224px -112px; }

.ui-icon-link {
  background-position: -240px -112px; }

.ui-icon-cancel {
  background-position: 0 -128px; }

.ui-icon-plus {
  background-position: -16px -128px; }

.ui-icon-plusthick {
  background-position: -32px -128px; }

.ui-icon-minus {
  background-position: -48px -128px; }

.ui-icon-minusthick {
  background-position: -64px -128px; }

.ui-icon-close {
  background-position: -80px -128px; }

.ui-icon-closethick {
  background-position: -96px -128px; }

.ui-icon-key {
  background-position: -112px -128px; }

.ui-icon-lightbulb {
  background-position: -128px -128px; }

.ui-icon-scissors {
  background-position: -144px -128px; }

.ui-icon-clipboard {
  background-position: -160px -128px; }

.ui-icon-copy {
  background-position: -176px -128px; }

.ui-icon-contact {
  background-position: -192px -128px; }

.ui-icon-image {
  background-position: -208px -128px; }

.ui-icon-video {
  background-position: -224px -128px; }

.ui-icon-script {
  background-position: -240px -128px; }

.ui-icon-alert {
  background-position: 0 -144px; }

.ui-icon-info {
  background-position: -16px -144px; }

.ui-icon-notice {
  background-position: -32px -144px; }

.ui-icon-help {
  background-position: -48px -144px; }

.ui-icon-check {
  background-position: -64px -144px; }

.ui-icon-bullet {
  background-position: -80px -144px; }

.ui-icon-radio-on {
  background-position: -96px -144px; }

.ui-icon-radio-off {
  background-position: -112px -144px; }

.ui-icon-pin-w {
  background-position: -128px -144px; }

.ui-icon-pin-s {
  background-position: -144px -144px; }

.ui-icon-play {
  background-position: 0 -160px; }

.ui-icon-pause {
  background-position: -16px -160px; }

.ui-icon-seek-next {
  background-position: -32px -160px; }

.ui-icon-seek-prev {
  background-position: -48px -160px; }

.ui-icon-seek-end {
  background-position: -64px -160px; }

.ui-icon-seek-start {
  background-position: -80px -160px; }

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px; }

.ui-icon-stop {
  background-position: -96px -160px; }

.ui-icon-eject {
  background-position: -112px -160px; }

.ui-icon-volume-off {
  background-position: -128px -160px; }

.ui-icon-volume-on {
  background-position: -144px -160px; }

.ui-icon-power {
  background-position: 0 -176px; }

.ui-icon-signal-diag {
  background-position: -16px -176px; }

.ui-icon-signal {
  background-position: -32px -176px; }

.ui-icon-battery-0 {
  background-position: -48px -176px; }

.ui-icon-battery-1 {
  background-position: -64px -176px; }

.ui-icon-battery-2 {
  background-position: -80px -176px; }

.ui-icon-battery-3 {
  background-position: -96px -176px; }

.ui-icon-circle-plus {
  background-position: 0 -192px; }

.ui-icon-circle-minus {
  background-position: -16px -192px; }

.ui-icon-circle-close {
  background-position: -32px -192px; }

.ui-icon-circle-triangle-e {
  background-position: -48px -192px; }

.ui-icon-circle-triangle-s {
  background-position: -64px -192px; }

.ui-icon-circle-triangle-w {
  background-position: -80px -192px; }

.ui-icon-circle-triangle-n {
  background-position: -96px -192px; }

.ui-icon-circle-arrow-e {
  background-position: -112px -192px; }

.ui-icon-circle-arrow-s {
  background-position: -128px -192px; }

.ui-icon-circle-arrow-w {
  background-position: -144px -192px; }

.ui-icon-circle-arrow-n {
  background-position: -160px -192px; }

.ui-icon-circle-zoomin {
  background-position: -176px -192px; }

.ui-icon-circle-zoomout {
  background-position: -192px -192px; }

.ui-icon-circle-check {
  background-position: -208px -192px; }

.ui-icon-circlesmall-plus {
  background-position: 0 -208px; }

.ui-icon-circlesmall-minus {
  background-position: -16px -208px; }

.ui-icon-circlesmall-close {
  background-position: -32px -208px; }

.ui-icon-squaresmall-plus {
  background-position: -48px -208px; }

.ui-icon-squaresmall-minus {
  background-position: -64px -208px; }

.ui-icon-squaresmall-close {
  background-position: -80px -208px; }

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px; }

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px; }

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px; }

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px; }

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px; }

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px; }

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 4px; }

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 4px; }

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 4px; }

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 4px; }

/* Overlays */
.ui-widget-overlay {
  background: #666666 url("images/ui-bg_diagonals-thick_20_666666_40x40.png") 50% 50% repeat;
  opacity: .5;
  filter: Alpha(Opacity=50);
  /* support: IE8 */ }

.ui-widget-shadow {
  margin: -5px 0 0 -5px;
  padding: 5px;
  background: #000000 url("images/ui-bg_flat_10_000000_40x100.png") 50% 50% repeat-x;
  opacity: .2;
  filter: Alpha(Opacity=20);
  /* support: IE8 */
  border-radius: 5px; }

.awesomplete [hidden] {
  display: none; }

.awesomplete .visually-hidden {
  position: absolute;
  clip: rect(0, 0, 0, 0); }

.awesomplete {
  display: inline-block;
  position: relative; }

.awesomplete > input {
  display: block; }

.awesomplete > ul {
  position: absolute;
  left: 0;
  z-index: 1;
  min-width: 100%;
  box-sizing: border-box;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff; }

.awesomplete > ul:empty {
  display: none; }

.awesomplete > ul {
  border-radius: .3em;
  margin: .2em 0 0;
  background: rgba(255, 255, 255, 0.9);
  background: linear-gradient(to bottom right, white, rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0.05em 0.2em 0.6em rgba(0, 0, 0, 0.2);
  text-shadow: none; }

@supports (transform: scale(0)) {
  .awesomplete > ul {
    transition: 0.3s cubic-bezier(0.4, 0.2, 0.5, 1.4);
    transform-origin: 1.43em -.43em; }

  .awesomplete > ul[hidden],
  .awesomplete > ul:empty {
    opacity: 0;
    transform: scale(0);
    display: block;
    transition-timing-function: ease; } }
/* Pointer */
.awesomplete > ul:before {
  content: "";
  position: absolute;
  top: -.43em;
  left: 1em;
  width: 0;
  height: 0;
  padding: .4em;
  background: white;
  border: inherit;
  border-right: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.awesomplete > ul > li {
  position: relative;
  padding: .2em .5em;
  cursor: pointer; }

.awesomplete > ul > li:hover {
  background: #b8d3e0;
  color: black; }

.awesomplete > ul > li[aria-selected="true"] {
  background: #3d6d8f;
  color: white; }

.awesomplete mark {
  background: #eaff00; }

.awesomplete li:hover mark {
  background: #b5d100; }

.awesomplete li[aria-selected="true"] mark {
  background: #3d6b00;
  color: inherit; }

img[data-src] {
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
  will-change: opacity; }

/* appear animation */
img[data-src][src] {
  opacity: 1; }

/* by Asad */
.courses-in-basket #updateuser {
  display: none; }

.courses-in-basket .appCourseList .headingSection ul li .even {
  padding: 7px 90px 3px 50px !important; }

.modal-dialog {
  width: 750px;
  max-width: 100%; }

html, body, .container, .scroller {
  height: auto !important; }

.red-btn {
  background: #ca0000; }

/* careers on course page */
.course-tabs-buttons {
  width: 100%;
  background: #79299a; }
  .course-tabs-buttons .nav-tabs {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    border: 0; }
    .course-tabs-buttons .nav-tabs li {
      margin-bottom: 0; }
      .course-tabs-buttons .nav-tabs li a {
        padding: 30px 0px;
        margin-right: 50px;
        display: block;
        font-size: 23px;
        font-weight: bold;
        color: #fff;
        background: transparent !important;
        position: relative;
        border: 0 !important;
        opacity: .65; }
      .course-tabs-buttons .nav-tabs li.active a {
        opacity: 1; }
        .course-tabs-buttons .nav-tabs li.active a:after {
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0;
          width: 100%;
          content: "";
          background: #c2570f;
          height: 8px; }
  @media (max-width: 767px) {
    .course-tabs-buttons .nav-tabs li a {
      font-size: 18px;
      margin-right: 30px; } }

/* select career */
.select-career {
  width: 100%;
  text-align: center;
  padding: 50px 0;
  padding-top: 15px; }
  .select-career label {
    width: 100%;
    max-width: 480px;
    margin: auto;
    text-align: center;
    position: relative;
    font-size: 23px;
    font-weight: bold;
    color: #662382; }
    .select-career label select {
      -webkit-appearance: none;
      -moz-appearance: none;
      -ms-appearance: none;
      appearance: none;
      background: transparent;
      outline: 0;
      box-shadow: none;
      width: 100%;
      text-transform: uppercase;
      font-size: 19px;
      font-weight: bold;
      border: #662382 solid 2px;
      padding: 10px 15px;
      color: #662382;
      margin-top: 10px;
      position: relative;
      z-index: 2; }
      .select-career label select::-ms-expand {
        display: none; }
    .select-career label .fa {
      font-size: 30px;
      color: #662382;
      position: absolute;
      right: 15px;
      bottom: 12px;
      z-index: 1; }

/*    interest summary     */
.interest-summary {
  background: #c2570f;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 50px 15px;
  margin-bottom: 50px; }
  .interest-summary h1 {
    font-size: 33px;
    color: #fff;
    margin-bottom: 15px; }
  .interest-summary p {
    font-size: 16px;
    color: #fff; }

/*   career details section    */
.career-details-section {
  width: 100%;
  margin-bottom: 50px; }
  .career-details-section h2 {
    font-size: 23px;
    color: #662382;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: #662382 solid 2px; }
  .career-details-section p {
    font-size: 16px; }

/*  expectec salary   */
#expectec_salary {
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  text-align: center;
  position: relative;
  display: table; }
  #expectec_salary span {
    font-size: 137px;
    color: #662382;
    position: relative;
    z-index: 2;
    font-weight: bold;
    display: block;
    line-height: 1; }
  #expectec_salary:after {
    content: "";
    height: 18px;
    position: absolute;
    left: 5px;
    right: 50px;
    bottom: -5px;
    background: #c2570f; }
  @media (max-width: 767px) {
    #expectec_salary span {
      font-size: 60px; }
    #expectec_salary:after {
      height: 10px; } }

.national-average-tag {
  font-size: 16px;
  font-weight: bold;
  padding: 8px 20px;
  width: 190px;
  text-align: center;
  color: #000;
  border: #000 solid 1px;
  border-radius: 100px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 30px;
  margin-bottom: 50px;
  text-transform: uppercase; }

.notice {
  background: #fbeb7a;
  padding: 16px;
  border-radius: 5px;
  font-size: smaller; }

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