/*Navigation*/
.navigation-clean {
    background:#fff;
    padding-top:10px;
    padding-bottom:10px;
    color:#333;
    border-radius:0;
    box-shadow:none;
    border:none;
    margin-bottom:0;
    height: 65px;
  }
  
  @media (max-width:767px) {
    .navigation-clean {
      padding-top:0;
      padding-bottom:0;
    }
  }
  
  @media (max-width:767px) {
    .navigation-clean .navbar-header {
      padding-top:10px;
      padding-bottom:10px;
    }
  }
  
  .navigation-clean .navbar-brand {
    font-weight:bold;
    color:inherit;
  }
  
  .navigation-clean .navbar-brand:hover {
    color:#222;
  }
  
  .navigation-clean.navbar-inverse .navbar-brand:hover {
    color:#f0f0f0;
  }
  
  .navigation-clean .navbar-brand img {
    height:100%;
    display:inline-block;
    margin-right:10px;
    width:auto;
  }
  
  .navigation-clean .navbar-toggle {
    border-color:#ddd;
  }
  
  .navigation-clean .navbar-toggle:hover, .navigation-clean .navbar-toggle:focus {
    background:none;
  }
  
  .navigation-clean.navbar-inverse .navbar-toggle {
    border-color:#555;
  }
  
  .navigation-clean .navbar-toggle .icon-bar {
    background-color:#888;
  }
  
  .navigation-clean.navbar-inverse .navbar-toggle .icon-bar {
    background-color:#eee;
  }
  
  .navigation-clean .navbar-collapse, .navigation-clean .navbar-form {
    border-top-color:#ddd;
  }
  
  .navigation-clean.navbar-inverse .navbar-collapse, .navigation-clean.navbar-inverse .navbar-form {
    border-top-color:#333;
  }
  
  .navigation-clean .navbar-nav > .active > a, .navigation-clean .navbar-nav > .open > a {
    background:none;
    box-shadow:none;
  }
  
  .navigation-clean.navbar-default .navbar-nav > .active > a, .navigation-clean.navbar-default .navbar-nav > .active > a:focus, .navigation-clean.navbar-default .navbar-nav > .active > a:hover {
    color:#8f8f8f;
    box-shadow:none;
    background:none;
    pointer-events:none;
  }
  
  .navigation-clean.navbar .navbar-nav > li > a {
    padding-left:18px;
    padding-right:18px;
  }
  
  .navigation-clean.navbar-default .navbar-nav > li > a {
    color:#465765;
  }
  
  .navigation-clean.navbar-default .navbar-nav > li > a:focus, .navigation-clean.navbar-default .navbar-nav > li > a:hover {
    color:#37434d !important;
    background-color:transparent;
  }
  
  .navigation-clean .navbar-nav > li > .dropdown-menu {
    margin-top:-5px;
    box-shadow:0 4px 8px rgba(0,0,0,.1);
    background-color:#fff;
    border-radius:2px;
  }
  
  @media (max-width:767px) {
    .navigation-clean .navbar-nav .open .dropdown-menu {
      box-shadow:none;
    }
  }
  
  @media (max-width:767px) {
    .navigation-clean .navbar-nav .open .dropdown-menu > li > a {
      color:#37434d;
      padding-top:12px;
      padding-bottom:12px;
      line-height:1;
    }
  }
  
  .navigation-clean .dropdown-menu > li > a:focus, .navigation-clean .dropdown-menu > li > a {
    line-height:2;
    font-size:14px;
    color:#37434d;
  }
  
  .navigation-clean .dropdown-menu > li > a:focus, .navigation-clean .dropdown-menu > li > a:hover {
    background:#eee;
    color:inherit;
  }
  
  .navigation-clean.navbar-inverse {
    background-color:#1f2021;
    color:#fff;
  }
  
  .navigation-clean.navbar-inverse .navbar-nav > .active > a, .navigation-clean.navbar-inverse .navbar-nav > .active > a:focus, .navigation-clean.navbar-inverse .navbar-nav > .active > a:hover {
    color:#8f8f8f;
    box-shadow:none;
    background:none;
    pointer-events:none;
  }
  
  .navigation-clean.navbar-inverse .navbar-nav > li > a {
    color:#dfe8ee;
  }
  
  .navigation-clean.navbar-inverse .navbar-nav > li > a:focus, .navigation-clean.navbar-inverse .navbar-nav > li > a:hover {
    color:#fff !important;
    background-color:transparent;
  }
  
  .navigation-clean.navbar-inverse .navbar-nav > li > .dropdown-menu {
    background-color:#1f2021;
  }
  
  .navigation-clean.navbar-inverse .dropdown-menu > li > a:focus, .navigation-clean.navbar-inverse .dropdown-menu > li > a {
    color:#f2f5f8;
  }
  
  .navigation-clean.navbar-inverse .dropdown-menu > li > a:focus, .navigation-clean.navbar-inverse .dropdown-menu > li > a:hover {
    background:#363739;
  }
  
  @media (max-width:767px) {
    .navigation-clean.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
      color:#fff;
    }
  }  
/*Navigation*/
/*Left Sidebar*/
#sidebar {
    background:#1f2021;
    width:260px;
    position:fixed;
    top:0;
    left:-260px;
    height:100vh;
    z-index:1031;
    color:#fff;
    overflow-y:scroll;
  }
  
  #sidebar.active {
    left:0;
    z-index: 1032;
    box-shadow:3px 3px 3px rgba(0, 0, 0, 0.2);
    overflow: scroll !important;
    min-height: 300px;
  }
  
  #sidebar.sidebar-right {
    left:auto;
    right:-260px;
  }
  
  #sidebar.sidebar-right.active {
    right:0;
  }
  
  #sidebar ul li {
    background-color: #0071bc;
  }
  .leftsidebar {
    cursor:pointer;
  }
  
  #sidebar, #sidebar * {
    -webkit-transition:all 0.3s;
    transition:all 0.3s;
  }
  
  #sidebar #close-sidebar {
    width:35px;
    height:35px;
    line-height:35px;
    text-align:center;
    background:rgba(255,255,255,.2);
    float:right;
    cursor:pointer;
    margin:0 0 0 7px;
  }
  
  #sidebar.sidebar-right #close-sidebar {
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg);
  }
  
  #sidebar #close-sidebar:hover {
    background:rgba(255,255,255,.4);
  }
  
  .sidebar-overlay {
    position:fixed;
    width:100vw;
    height:100vh;
    background:rgba(0, 0, 0, 0.7);
    z-index:1031;
    display:none;
    top: 0;
  }
  
  #sidebar .sidebar-header {
    padding:15px;
    background:rgba(0,0,0,.4);
    min-height:65px;
    text-align:left;
  }

  .sidebar-header img {
    width: 100%;
  }
  
  .sidebar-header h1, .sidebar-header h2, .sidebar-header h3, .sidebar-header h4, .sidebar-header h5 {
    margin:0;
  }
  
  #sidebar > *:not(.sidebar-header):not(ul):not(.full-width) {
    max-width:230px;
    margin-left:15px;
  }
  
  #sidebar > ul {
    list-style:none;
    padding:0;
  }
  
  #sidebar ul li a {
    padding:10px 15px;
    color:#fff;
    display:block;
    text-decoration:none;
    background:rgba(0,0,0,.1);
    margin-bottom:1px;
  }
  
  #sidebar ul li a:hover, #sidebar ul li.active > a, #sidebar a[aria-expanded="true"] {
    background:rgba(0,0,0,.2);
  }
  
  #sidebar a[data-toggle="collapse"] {
    position:relative;
  }
  
  #sidebar a[aria-expanded="false"]::before, a[aria-expanded="true"]::before {
    content:'\e259';
    display:block;
    position:absolute;
    right:20px;
    top:calc(50% - 6px);
    font-family:'Glyphicons Halflings';
    font-size:0.6em;
  }
  
  #sidebar a[aria-expanded="true"]::before {
    content:'\e260';
  }
  
  #sidebar ul ul a {
    padding-left:30px;
    background:rgba(255,255,255,.1);
  }
  
  #sidebar ul ul a:hover {
    background:rgba(255,255,255,.2);
  }
  
  #sidebar ul ul ul a {
    padding-left:60px;
    background:rgba(255,255,255,.3);
  }
  
  #sidebar ul ul ul a:hover {
    background:rgba(255,255,255,.4);
  }
  
  #sidebar .btn.btn-default {
    background:rgba(0,0,0,.4);
    border:none;
    color:#fff;
  }
  
  #sidebar .btn.btn-default:hover {
    background:rgba(0,0,0,.5);
  }
  
  #sidebar hr {
    border-color:rgba(255,255,255,.3);
  }
/*Left Sidebar*/
/*Right Sidebar*/
#rightsidebar , #rightsidebar_join, #rightsidebar-upgrade {
    background:#1f2021;
    width:260px;
    position:fixed;
    top:0;
    right:-260px;
    height:100vh;
    z-index:1031;
    color:#fff;
    overflow-y:scroll;
  }
  
  #rightsidebar.active , #rightsidebar_join.active, #rightsidebar-upgrade.active {
    right:0;
    z-index: 1032;
    box-shadow:3px 3px 3px rgba(0, 0, 0, 0.2);
    overflow: scroll !important;
    min-height: 300px;
  }
  
  #rightsidebar.sidebar-right , #rightsidebar_join.sidebar-right, #rightsidebar-upgrade.sidebar-right {
    left:auto;
    right:-260px;
  }
  
  #rightsidebar.sidebar-right.active , #rightsidebar_join.sidebar-right.active, #rightsidebar-upgrade.sidebar-right.active {
    right:0;
  }
  
  .leftsidebar {
    cursor:pointer;
  }
  
  #rightsidebar, #rightsidebar * , #rightsidebar_join, #rightsidebar_join *, #rightsidebar-upgrade, #rightsidebar-upgrade * {
    -webkit-transition:all 0.3s;
    transition:all 0.3s;
  }
  
  #rightsidebar #close-sidebar , #rightsidebar_join #close-sidebar, #rightsidebar-upgrade #close-sidebar {
    width:35px;
    height:35px;
    line-height:35px;
    text-align:center;
    background:rgba(255,255,255,.2);
    float:right;
    cursor:pointer;
    margin:0 0 0 7px;
  }
  
  #rightsidebar.sidebar-right #close-sidebar , #rightsidebar_join.sidebar-right #close-sidebar, #rightsidebar-upgrade.sidebar-right #close-sidebar {
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg);
  }
  
  #rightsidebar #close-sidebar:hover , #rightsidebar_join #close-sidebar:hover, #rightsidebar-upgrade #close-sidebar:hover {
    background:rgba(255,255,255,.4);
  }
  
  
  #rightsidebar .sidebar-header , #rightsidebar_join .sidebar-header, #rightsidebar-upgrade .sidebar-header {
    padding:15px;
    background:rgba(0,0,0,.4);
    min-height:65px;
    text-align:left;
  }
  
  .sidebar-header h1, .sidebar-header h2, .sidebar-header h3, .sidebar-header h4, .sidebar-header h5 {
    margin:0;
  }
  
  #rightsidebar > *:not(.sidebar-header):not(ul):not(.full-width) , #rightsidebar_join > *:not(.sidebar-header):not(ul):not(.full-width), #rightsidebar-upgrade > *:not(.sidebar-header):not(ul):not(.full-width) {
    max-width:230px;
    margin-left:15px;
  }
  
  #rightsidebar > ul , #rightsidebar_join > ul, #rightsidebar-upgrade > ul {
    list-style:none;
    padding:0;
  }
  
  #rightsidebar ul li a , #rightsidebar_join ul li a, #rightsidebar-upgrade ul li a {
    padding:10px 15px;
    color:#fff;
    display:block;
    text-decoration:none;
    background:rgba(0,0,0,.1);
    margin-bottom:1px;
  }
  
  #rightsidebar ul li a:hover, #rightsidebar ul li.active > a, #rightsidebar a[aria-expanded="true"] , #rightsidebar_join ul li a:hover, #rightsidebar_join ul li.active > a, #rightsidebar_join a[aria-expanded="true"], #rightsidebar-upgrade ul li a:hover, #rightsidebar-upgrade ul li.active > a, #rightsidebar-upgrade a[aria-expanded="true"] {
    background:rgba(0,0,0,.2);
  }
  
  #rightsidebar a[data-toggle="collapse"] , #rightsidebar_join a[data-toggle="collapse"], #rightsidebar-upgrade a[data-toggle="collapse"] {
    position:relative;
  }
  
  #rightsidebar a[aria-expanded="false"]::before, a[aria-expanded="true"]::before , #rightsidebar_join a[aria-expanded="false"]::before, a[aria-expanded="true"]::before, #rightsidebar-upgrade a[aria-expanded="false"]::before, a[aria-expanded="true"]::before {
    content:'\e259';
    display:block;
    position:absolute;
    right:20px;
    top:calc(50% - 6px);
    font-family:'Glyphicons Halflings';
    font-size:0.6em;
  }
  
  #rightsidebar a[aria-expanded="true"]::before , #rightsidebar_join a[aria-expanded="true"]::before, #rightsidebar-upgrade a[aria-expanded="true"]::before {
    content:'\e260';
  }
  
  #rightsidebar ul ul a , #rightsidebar_join ul ul a, #rightsidebar-upgrade ul ul a {
    padding-left:30px;
    background:rgba(255,255,255,.1);
  }
  
  #rightsidebar ul ul a:hover , #rightsidebar_join ul ul a:hover, #rightsidebar-upgrade ul ul a:hover {
    background:rgba(255,255,255,.2);
  }
  
  #rightsidebar ul ul ul a , #rightsidebar_join ul ul ul a, #rightsidebar-upgrade ul ul ul a {
    padding-left:60px;
    background:rgba(255,255,255,.3);
  }
  
  #rightsidebar ul ul ul a:hover , #rightsidebar_join ul ul ul a:hover, #rightsidebar-upgrade ul ul ul a:hover {
    background:rgba(255,255,255,.4);
  }
  
  #rightsidebar .btn.btn-default , #rightsidebar_join .btn.btn-default, #rightsidebar-upgrade .btn.btn-default {
    background:rgba(0,0,0,.4);
    border:none;
    color:#fff;
  }
  
  #rightsidebar .btn.btn-default:hover , #rightsidebar_join .btn.btn-default:hover, #rightsidebar-upgrade .btn.btn-default:hover {
    background:rgba(0,0,0,.5);
  }
  
  #rightsidebar hr , #rightsidebar_join hr, #rightsidebar-upgrade hr {
    border-color:rgba(255,255,255,.3);
  }
/*Right Sidebar*/
/*featherlight*/
/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, NoÃ«l Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
html.with-featherlight{overflow:hidden}.featherlight{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:2147483647;text-align:center;white-space:nowrap;cursor:pointer;background:#333;background:rgba(0,0,0,0)}.featherlight:last-of-type{background:rgba(0,0,0,.8)}.featherlight:before{content:'';display:inline-block;height:100%;vertical-align:middle}.featherlight .featherlight-content{position:relative;text-align:left;vertical-align:middle;display:inline-block;overflow:none;padding:0px 0px 0px 0px;border-bottom:0px solid transparent;margin-left:5%;margin-right:5%;max-height:95%;background:#fff;cursor:auto;white-space:normal}.featherlight .featherlight-inner{display:block}.featherlight link.featherlight-inner,.featherlight script.featherlight-inner,.featherlight style.featherlight-inner{display:none}.featherlight .featherlight-close-icon{position:absolute;z-index:9999;top:0;right:0;line-height:25px;width:25px;cursor:pointer;text-align:center;font-family:Arial,sans-serif;background:#fff;background:rgba(255,255,255,.3);color:#000;border:0;padding:0}.featherlight .featherlight-close-icon::-moz-focus-inner{border:0;padding:0}.featherlight .featherlight-image{width:100%}.featherlight-iframe .featherlight-content{border-bottom:0;padding:0;-webkit-overflow-scrolling:touch}.featherlight iframe{border:0}.featherlight *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@media only screen and (max-width:1024px){.featherlight .featherlight-content{margin-left:0;margin-right:0;max-height:98%;padding:10px 10px 0;border-bottom:10px solid transparent}}@media print{html.with-featherlight>*>:not(.featherlight){display:none}}
/*featherlight*/
/*Lightbox*/
.lightbox { display: none; }
/*Lightbox*/
/*spinner*/
#img-spinner {
  width: 100%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
}
.featherlight .featherlight-content {
  background: black;
  width: 80%;
}

.featherlight .featherlight-close-icon {
  background: none;
  color: white;
  right: -25px;
  top: -4px;
}
#lightboxcontainer video {
  max-width: 100%;
}
/*spinner*/


/*
 * easy-autocomplete
 * jQuery plugin for autocompletion
 * 
 * @author Åukasz PaweÅ‚czak (http://github.com/pawelczak)
 * @version 1.3.5
 * Copyright  License: 
 */

 .easy-autocomplete{position:relative}.easy-autocomplete input{border-color:#ccc;border-radius:4px;border-style:solid;border-width:1px;box-shadow:0 1px 2px rgba(0,0,0,0.1) inset;color:#555;float:none;padding:6px 12px}.easy-autocomplete input:hover,.easy-autocomplete input:focus{box-shadow:none}.easy-autocomplete a{display:block}.easy-autocomplete.eac-blue-light input:hover,.easy-autocomplete.eac-blue-light input:focus{border-color:#66afe9;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(102,175,233,0.6)}.easy-autocomplete.eac-blue-light ul{border-color:#66afe9;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(102,175,233,0.6)}.easy-autocomplete.eac-blue-light ul li,.easy-autocomplete.eac-blue-light ul .eac-category{border-color:#66afe9}.easy-autocomplete.eac-blue-light ul li.selected,.easy-autocomplete.eac-blue-light ul .eac-category.selected{background-color:#ecf5fc}.easy-autocomplete.eac-green-light input:hover,.easy-autocomplete.eac-green-light input:focus{border-color:#41DB00;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(146,237,107,0.6)}.easy-autocomplete.eac-green-light ul{border-color:#41DB00;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(146,237,107,0.6)}.easy-autocomplete.eac-green-light ul li,.easy-autocomplete.eac-green-light ul .eac-category{border-color:#41DB00}.easy-autocomplete.eac-green-light ul li.selected,.easy-autocomplete.eac-green-light ul .eac-category.selected{background-color:#9eff75}.easy-autocomplete.eac-red-light input:hover,.easy-autocomplete.eac-red-light input:focus{border-color:#ff5b5b;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(255,90,90,0.6)}.easy-autocomplete.eac-red-light ul{border-color:#ff5b5b;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(255,90,90,0.6)}.easy-autocomplete.eac-red-light ul li,.easy-autocomplete.eac-red-light ul .eac-category{border-color:#ff5b5b}.easy-autocomplete.eac-red-light ul li.selected,.easy-autocomplete.eac-red-light ul .eac-category.selected{background-color:#ff8e8e}.easy-autocomplete.eac-yellow-light input:hover,.easy-autocomplete.eac-yellow-light input:focus{border-color:#ffdb00;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(255,231,84,0.6)}.easy-autocomplete.eac-yellow-light ul{border-color:#ffdb00;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(255,231,84,0.6)}.easy-autocomplete.eac-yellow-light ul li,.easy-autocomplete.eac-yellow-light ul .eac-category{border-color:#ffdb00}.easy-autocomplete.eac-yellow-light ul li.selected,.easy-autocomplete.eac-yellow-light ul .eac-category.selected{background-color:#ffe233}.easy-autocomplete.eac-dark-light input:hover,.easy-autocomplete.eac-dark-light input:focus{border-color:#333;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(55,55,55,0.6)}.easy-autocomplete.eac-dark-light ul{border-color:#333;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(55,55,55,0.6)}.easy-autocomplete.eac-dark-light ul li,.easy-autocomplete.eac-dark-light ul .eac-category{border-color:#333}.easy-autocomplete.eac-dark-light ul li.selected,.easy-autocomplete.eac-dark-light ul .eac-category.selected{background-color:#4d4d4d;color:#fff}.easy-autocomplete.eac-dark{color:#fff}.easy-autocomplete.eac-dark input{background-color:#404040;border-radius:4px;box-shadow:0;color:#f6f6f6}.easy-autocomplete.eac-dark input:hover,.easy-autocomplete.eac-dark input:focus{border-color:#333;box-shadow:0}.easy-autocomplete.eac-dark ul{border-color:#333}.easy-autocomplete.eac-dark ul li,.easy-autocomplete.eac-dark ul .eac-category{background-color:#404040;border-color:#333}.easy-autocomplete.eac-dark ul li.selected,.easy-autocomplete.eac-dark ul .eac-category.selected{background-color:#737373;color:#f6f6f6}.easy-autocomplete.eac-dark-glass{color:#fff}.easy-autocomplete.eac-dark-glass input{background-color:rgba(0,0,0,0.8);border-radius:4px;box-shadow:0;color:#f6f6f6}.easy-autocomplete.eac-dark-glass input:hover,.easy-autocomplete.eac-dark-glass input:focus{border-color:rgba(0,0,0,0.8);box-shadow:0}.easy-autocomplete.eac-dark-glass ul{border-color:rgba(0,0,0,0.8)}.easy-autocomplete.eac-dark-glass ul li,.easy-autocomplete.eac-dark-glass ul .eac-category{background-color:rgba(0,0,0,0.8);border-color:rgba(0,0,0,0.8)}.easy-autocomplete.eac-dark-glass ul li.selected,.easy-autocomplete.eac-dark-glass ul .eac-category.selected{background-color:rgba(64,64,64,0.8);color:#f6f6f6}.easy-autocomplete.eac-dark-glass ul li:last-child,.easy-autocomplete.eac-dark-glass ul .eac-category:last-child{border-radius:0 0 4px 4px}.easy-autocomplete.eac-blue{color:#fff}.easy-autocomplete.eac-blue input{background-color:#6d9ed1;border-radius:4px;box-shadow:0;color:#f6f6f6}.easy-autocomplete.eac-blue input::-webkit-input-placeholder{color:#f6f6f6}.easy-autocomplete.eac-blue input:-moz-placeholder{color:#f6f6f6}.easy-autocomplete.eac-blue input::-moz-placeholder{color:#f6f6f6}.easy-autocomplete.eac-blue input:-ms-input-placeholder{color:#f6f6f6}.easy-autocomplete.eac-blue input:hover,.easy-autocomplete.eac-blue input:focus{border-color:#5A91CB;box-shadow:0}.easy-autocomplete.eac-blue ul{border-color:#5A91CB}.easy-autocomplete.eac-blue ul li,.easy-autocomplete.eac-blue ul .eac-category{background-color:#6d9ed1;border-color:#5A91CB}.easy-autocomplete.eac-blue ul li.selected,.easy-autocomplete.eac-blue ul .eac-category.selected{background-color:#94b8dd;color:#f6f6f6}.easy-autocomplete.eac-yellow{color:#333}.easy-autocomplete.eac-yellow input{background-color:#ffdb7e;border-color:#333;border-radius:4px;box-shadow:0;color:#333}.easy-autocomplete.eac-yellow input:hover,.easy-autocomplete.eac-yellow input:focus{border-color:#333;box-shadow:0}.easy-autocomplete.eac-yellow ul{border-color:#333}.easy-autocomplete.eac-yellow ul li,.easy-autocomplete.eac-yellow ul .eac-category{background-color:#ffdb7e;border-color:#333}.easy-autocomplete.eac-yellow ul li.selected,.easy-autocomplete.eac-yellow ul .eac-category.selected{background-color:#ffe9b1;color:#333}.easy-autocomplete.eac-purple{color:#333}.easy-autocomplete.eac-purple input{background-color:#d6d1e7;border-color:#b8afd5;box-shadow:0;color:#333}.easy-autocomplete.eac-purple input:hover,.easy-autocomplete.eac-purple input:focus{border-color:#333;box-shadow:0}.easy-autocomplete.eac-purple ul{border-color:#333}.easy-autocomplete.eac-purple ul li,.easy-autocomplete.eac-purple ul .eac-category{background-color:#d6d1e7;border-color:#333}.easy-autocomplete.eac-purple ul li.selected,.easy-autocomplete.eac-purple ul .eac-category.selected{background-color:#ebe8f3;color:#333}.easy-autocomplete.eac-bootstrap input{border-color:#ccc;border-radius:4px;border-style:solid;border-width:1px;color:#555;padding:6px 12px}.easy-autocomplete-container{left:0;position:absolute;width:100%;z-index:2}.easy-autocomplete-container ul{background:none repeat scroll 0 0 #ffffff;border-top:1px dotted #ccc;display:none;margin-top:0;padding-bottom:0;padding-left:0;position:relative;top:-1px}.easy-autocomplete-container ul li,.easy-autocomplete-container ul .eac-category{background:inherit;border-color:#ccc;border-image:none;border-style:solid;border-width:0 1px;display:block;font-size:14px;font-weight:normal;padding:4px 12px}.easy-autocomplete-container ul li:last-child{border-radius:0 0 2px 2px;border-width:0 1px 1px}.easy-autocomplete-container ul li.selected{background:none repeat scroll 0 0 #ebebeb;cursor:pointer}.easy-autocomplete-container ul li.selected div{font-weight:normal}.easy-autocomplete-container ul li div{display:block;font-weight:normal;word-break:break-all}.easy-autocomplete-container ul li b{font-weight:bold}.easy-autocomplete-container ul .eac-category{font-color:#aaa;font-style:italic}.eac-description .eac-item span{color:#aaa;font-style:italic;font-size:0.9em}.eac-icon-left .eac-item img{margin-right:4px;max-height:30px}.eac-icon-right .eac-item{margin-top:8px;min-height:24px;position:relative}.eac-icon-right .eac-item img{margin-left:4px;max-height:30px;position:absolute;right:-4px;top:-8px}
 /*# sourceMappingURL=easy-autocomplete.min.css.map */
 
 /**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.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(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{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;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform: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;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
 .owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
 