@font-face {
    font-family: 'roboto';
    src: url('../fonts/Roboto-Regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'roboto';
    src: url('../fonts/Roboto-Bold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;

}
html, body {
    width: 100%;
    height: 100%;
    background: #151616 url(../img/bk-rects.png);
    color: #687;
    font-family: 'roboto', sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}
.ls-spacer {
    flex: 1 1;
}
.ls-con-nav {
    flex: 0 0;
	flex-basis: auto;
}
.ls-con-main {
    flex: 0 0;    
	flex-basis: auto;
}
.ls-con-footer {
    flex: 0 0;
	flex-basis: auto;
}
a {
    color: #9fc;
}
.ls-gates {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: block;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.ls-gates span.ls-left,
.ls-gates span.ls-right {
    display: block;
    position: absolute;
    background: rgba(128,255,0,.8);
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1001;
    /* background: url(../img/bricks.jpg) no-repeat;
    background-size: cover; */
    background: #9c6;
}
.ls-gates span.ls-left {
    left: 0;
    background: #063 right center url(../img/gates-left.jpg) no-repeat;
    background-size: cover;
}
.ls-gates span.ls-right {
    right: 0;
    background: #063 left center url(../img/gates-right.jpg) no-repeat;
    background-size: cover;
}
.ls-gates span.ls-circle {
    background: #000 center center url(../img/atom.svg) no-repeat;
    background-size: 120px 120px;
    display: block;
    border: 3px solid #ff0;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -90px 0 0 -90px;
    z-index: 1100;
    box-shadow: 0 0 3px rgba(0,0,0,.5);
}
.ls-gates a {
    display: block;
    width: 140px;
    height: 30px;
    background: #ff0;
    color: #000;
    line-height: 30px;
    text-align: center;
    font-size: 18px;
    position: absolute;
    top: 70%;
    left: 50%;
    margin: -15px 0 0 -70px;
    text-decoration: none;
    z-index: 1010;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 3px;
}
.ls-gates a::before {
    content: "";
    display: block;
    width: 140px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 0 30px #000,  0 0 50px 30px #333;
    z-index: 1005;    
}
.ls-gates a:hover::after {
    content: "";
    display: block;
    width: 100px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 20px;
    box-shadow: 0px 0px 50px 5px #ff0;
    text-decoration: none;
    z-index: 1015;
    border-radius: 50%;
}
.ls-gates.ls-closed span.ls-left,
.ls-gates.ls-closed span.ls-right {
    animation: gates-opening 3s;
    width: 0;
}
.ls-gates.ls-closed span.ls-circle {
    animation: gates-key 1s;
    opacity: 0;
}
.ls-gates.ls-closed a {
    animation: gates-btn-hiding .5s;
    transform: scale(.1);
}
@keyframes gates-opening { 0% {width:50%} 20% {width:50%} 100% {width:0} }
@keyframes gates-key { 0% {transform:rotate(0deg);opacity:1} 100% {transform:rotate(180deg);opacity:0} }
@keyframes gates-btn-hiding { 0% {transform:scale(1)} 5% {transform:scale(1.5)} 100% {transform:scale(.1)} }
.ls-page-map {
    position: relative;
}
.ls-map-popup {
    display: block;
    position: fixed;
    background: rgba(0,0,0,.5);
    z-index: 100;
}
.ls-map-popup-content {
    display: block;
    position: absolute;
    background: #fff;
    z-index: 101;    
}
.ls-map-popup.ls-opened {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
}
.ls-map-popup.ls-closed {
    top: 50%;
    left: 50%;
    bottom: 50%;
    right: 50%;
    opacity: 0;
}
.ls-map-popup-content.ls-opened {
    top: 0;
    left: 10%;
    bottom: 0;
    right: 10%;
    animation: popup-showing .5s;
}
.ls-map-popup-content.ls-closed {
    top: 50%;
    left: 50%;
    bottom: 50%;
    right: 50%;
    opacity: 0;
    animation: popup-hiding .3s;
}
@keyframes popup-showing { 0% {top:50%;left:50%;bottom:50%;right:50%} 100% {top:0;left:10%;bottom:0;right:10%} }
@keyframes popup-hiding { 0% {top:0;left:10%;bottom:0;right:10%} 100% {top:50%;left:50%;bottom:50%;right:50%} }
.ls-map-popup-content a.ls-close {
    display: block;
    border-radius: 50%;
    background: #ccc;
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    margin-left: -20px;
    z-index: 120;
}
.ls-map-popup-content a.ls-close:hover {
    background: #16b18b;
    box-shadow: 0 0 10px #16b18b;
}
.ls-map-popup-content a.ls-close::before,
.ls-map-popup-content a.ls-close::after {
    content: "";
    display: block;
    position: absolute;
    top: 20px;
    left: 10px;
    right: 10px;
    height: 1px;
    background: #fff;
    transform: rotate(-45deg);
}
.ls-map-popup-content a.ls-close::before {
    transform: rotate(45deg);
}
.ls-map-popup-content a.ls-close:hover::before {
    animation: rotator1 .2s;
    transform: rotate(-45deg)
}
.ls-map-popup-content a.ls-close:hover::after {
    animation: rotator2 .2s;
    transform: rotate(-135deg);
}
@keyframes rotator1 {
    0% { transform: rotate(45deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(-45deg); }
}
@keyframes rotator2 {
    0% { transform: rotate(-45deg); }
    50% { transform: rotate(-90deg); }
    100% { transform: rotate(-135deg); }
}
.ls-map-popup-content {
    padding: 30px 30px;
}
.ls-gallery div.ls-main {
    height: 200px;
    background: #ddd center center no-repeat;
    background-size: contain;
    cursor: pointer;
}
.ls-gallery a.ls-preview {
    display: block;
    height: 50px;
    background: center center no-repeat;
    background-size: cover;
}
.ls-gallery ul {
    list-style: none;
    padding: 15px 0 0 0;
    margin: 0;
}
.ls-gallery li {
    display: block;
    width: 25%;
    padding: 0 5px 5px 0;
    float: left;
}

.ls-con-nav {
    position: relative;
    z-index: 20;
    height: 100px;
}
.ls-con-nav i {
    display: block;
    position: absolute;
    z-index: 10;
}
.ls-con-nav i:nth-child(1) {
    width: 40px;
    height: 50px;
    box-shadow: 0 0 20px #0fb;
    top: 45px;
    left: 78px;
}
.ls-con-nav i:nth-child(2) {
    width: 40px;
    height: 0;
    box-shadow: 0 0 20px 2px #0fb;
    top: 20px;
    left: 78px;
}
.ls-con-nav i:nth-child(3) {
    width: 50px;
    height: 0;
    box-shadow: 0 0 10px 1px #ff0;
    top: 32px;
    left: 73px;
}
a.ls-logo {
    display: block;
    background: left center url(../img/logo.svg) no-repeat;
    background-size: contain;
    height: 100px;
    padding: 27px 0 0 75px;
    font-size: 11px;
    color: #7d7d7d;
    text-decoration: none;
    position: absolute;
    top: 10px;
    left: 68px;
    z-index: 22;
}
a.ls-logo strong {
    font-size: 22px;
    font-weight: normal;
    color: #fff;
    display: block;
    letter-spacing: -1px;
    line-height: 20px;
    padding-bottom: 10px;
}
.ls-social-btns {
    font-size: 14px;
    position: relative;
    text-align: right;
}
.ls-social-btns a {
    display: inline-block;
    width: 20px;
    height: 20px;
    text-decoration: none;
    position: relative;
    border: 1px solid #7d7d7d;
    color: #7d7d7d;
    line-height: 20px;
    text-align: center;
    border-radius: 3px;
}
.ls-social-btns a.ls-social-vk {
    background-color: #9ce;
}
.ls-social-btns a.ls-social-fb {
    background-color: #9be;
}
.ls-social-btns a.ls-social-ok {
    background-color: #ec9;
}
.ls-social-btns a.ls-social-tw {
    background-color: #9de;
}
.ls-main-nav {
    display: block;
    border: none;
    position: absolute;
    right: 55px;
    top: 40px;
    font-size: 13px;
}
.ls-main-nav.nav-tabs>li>a,
.ls-main-nav.nav-tabs>li>a:focus {
    border-radius: 0;
    border: none;
    color: #d7d7d7;
    background: left center url(../img/tm-div.png) no-repeat;
}
.ls-main-nav.nav-tabs>li:last-child>a:after {
    content: " ";
    background: right center url(../img/tm-div.png) no-repeat;
    display: block;
    width: 100%;
    height: 38px;
    position: absolute;
    top: 0;
    right: -5px;
 }
.ls-main-nav.nav-tabs>li>a:hover {
    border: none;
    color: #0fb;
    background: left center url(../img/tmh-div.png) no-repeat;
}
.ls-main-nav.nav-tabs>li>a:hover:after {
    content: " ";
    background: right center url(../img/tmh-div.png) no-repeat;
    display: block;
    width: 100%;
    height: 38px;
    position: absolute;
    top: 0;
    right: -5px;
    z-index: 10;
    cursor: pointer;
 }
.ls-main-nav.nav-tabs>li>a:hover:before {
    content: " ";
    background: right center url(../img/tmh-bk.png) repeat-x;
    display: block;
    width: 100%;
    height: 38px;
    position: absolute;
    top: 0;
    right: -3px;
    z-index: 9;
    cursor: pointer;
 }
.ls-con-main {
    height: 580px;
    position: relative;
    z-index: 3;
}
.notitle.ls-con-main:before {
    content: "";
    display: block;
    position: absolute;
    top: 40px;
    bottom: 5px;
    left: 50px;
    right: 50px;
    box-shadow: 0px 0px 60px #0fb;
}
#ls-mapplic {
    height: 470px;
    background: #94a863;
    z-index: 10;
    position: relative;
}
.ls-map {
    position: relative;
    z-index: 1;
}
.ls-map .mapplic-zoom-buttons {
    left: auto;
    right: 0;
}
.ls-map .mapplic-clear-button {
    left: auto;
    right: 0;
}
.ls-layer-3x3 {
    position: absolute;
    /*
    top: -40px;
    left: -48px;
    right: -80px;
    bottom: -121px;
    */
    top: 0;
    bottom: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.ls-layer-3x3>div:nth-child(1) {
    display: flex;
    height: 260px;
    flex-direction: row;
}
.ls-layer-3x3>div:nth-child(1)>div:nth-child(1) {
    display: flex;
    width: 550px;
    flex-direction: row;
    height: 260px;
    background: left top url(../img/bk-pages/cr-tl.png) no-repeat;
}
.ls-layer-3x3>div:nth-child(1)>div:nth-child(2) {
    display: flex;
    flex: 1;
    flex-direction: row;
    height: 260px;
    background: center top url(../img/bk-pages/cr-top.png) repeat-x;
}
.ls-layer-3x3>div:nth-child(1)>div:nth-child(3) {
    display: flex;
    width: 550px;
    flex-direction: row;
    height: 260px;
    background: right top url(../img/bk-pages/cr-tr.png) no-repeat;
}
.ls-layer-3x3>div:nth-child(2) {
    display: flex;
    flex: 1;
    flex-direction: row;
}
.ls-layer-3x3>div:nth-child(2)>div:nth-child(1) {
    display: flex;
    width: 550px;
    flex-direction: column;
    background: left top url(../img/bk-pages/cr-left.png) repeat-y;
}
.ls-layer-3x3>div:nth-child(2)>div:nth-child(2) {
    display: flex;
    flex: 1;
    flex-direction: column;
}
.ls-layer-3x3>div:nth-child(2)>div:nth-child(3) {
    display: flex;
    width: 550px;
    flex-direction: column;
    background: right top url(../img/bk-pages/cr-right.png) repeat-y;
}
.ls-layer-3x3>div:nth-child(3) {
    display: flex;
    height: 200px;
    flex-direction: row;
}
.ls-layer-3x3>div:nth-child(3)>div:nth-child(1) {
    display: flex;
    width: 550px;
    flex-direction: row;
    height: 200px;
    background: left bottom url(../img/bk-pages/cr-bl.png) no-repeat;
}
.ls-layer-3x3>div:nth-child(3)>div:nth-child(2) {
    display: flex;
    flex: 1;
    flex-direction: row;
    height: 200px;
    background: center bottom url(../img/bk-pages/cr-bottom.png) repeat-x;
}
.ls-layer-3x3>div:nth-child(3)>div:nth-child(3) {
    display: flex;
    width: 550px;
    flex-direction: row;
    height: 200px;
    background: right bottom url(../img/bk-pages/cr-br.png) no-repeat;
}
.notitle .ls-layer-3x3>div:nth-child(1)>div:nth-child(1) {
    background-image: url(../img/bk-map/cr-tl.png);
}
.notitle .ls-layer-3x3>div:nth-child(1)>div:nth-child(2) {
    background-image: url(../img/bk-map/cr-top.png);
}
.notitle .ls-layer-3x3>div:nth-child(1)>div:nth-child(3) {
    background-image: url(../img/bk-map/cr-tr.png);
}
.notitle .ls-layer-3x3>div:nth-child(2)>div:nth-child(1) {
    background-image: url(../img/bk-map/cr-left.png);
}
.notitle .ls-layer-3x3>div:nth-child(2)>div:nth-child(3) {
    background-image: url(../img/bk-map/cr-right.png);
}
.notitle .ls-layer-3x3>div:nth-child(3)>div:nth-child(1) {
    background-image: url(../img/bk-map/cr-bl.png);
}
.notitle .ls-layer-3x3>div:nth-child(3)>div:nth-child(2) {
    background-image: url(../img/bk-map/cr-bottom.png);
}
.notitle .ls-layer-3x3>div:nth-child(3)>div:nth-child(3) {
    background-image: url(../img/bk-map/cr-br.png);
}
.ls-zoom {
    position: absolute;
    right: -65px;
    top: 5px;
    color: #fff;
    z-index: 10;
    width: 30px;
    height: 25px;
    font-size: 12px;
}
.ls-zoom-bar {
    position: absolute;
    right: -20px;
    top: 0;
    z-index: 10;
    width: 10px;
    height: 471px;
    background: url(../img/zoom-bk-0.png);
}
.ls-zoom-bar>div {
    background: url(../img/zoom-bk-1.png);
}
.ls-searchbox {
    display: block;
    width: 278px;
    height: 38px;
    position: absolute;
    z-index: 15;
    background: #232323 right 5px url(../img/search.svg) no-repeat;
    background-size: 20px 20px;
    top: 0;
    left: 0;
    color: #666;
}
.ls-searchbox:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 38px solid #232323;
    border-right:  38px solid transparent;
    position: absolute;
    right: -38px;
    bottom: 0;
    z-index: 20;
}
.ls-searchbox #ls-map-search {
    background: #000  linear-gradient(#1e594a 0%, #000 50%, #1e594a 100%);
    border: 1px solid #2ea182;
    width: 250px;
    margin-top: 0;
    margin-left: 0;
    color: #2ea182;
    height: 30px;
    padding: 0 8px;
}
.ls-searchbox #ls-map-search::-webkit-input-placeholder { color: #2b7462; }
.ls-searchbox #ls-map-search:-moz-placeholder { color: #2b7462; }
.ls-searchbox #ls-map-search::-moz-placeholder { color: #2b7462; }
.ls-searchbox #ls-map-search:-ms-input-placeholder { color: #2b7462; }
.ls-mapmode.nav-tabs.nav-justified {
    display: block;
    width: 420px;
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,.75);
    z-index: 15;
    border: none;
}
.ls-mapmode.nav-tabs.nav-justified>li>a, 
.ls-mapmode.nav-tabs.nav-justified>li>a:focus {
    background: none;
    border-radius: 0;
    border: none;
    color: #7d7d7d;
    cursor: pointer;
    font-size: 13px;
}
.ls-mapmode.nav-tabs.nav-justified>li>a:hover {
    background: none;
    border: none;
    color: #fff;
}
.ls-mapmode.nav-tabs.nav-justified>li.active>a {
    border-collapse: collapse;
    border-top: 3px solid #ef0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    color: #fff;
    position: relative;
    cursor: pointer;
}
.ls-mapmode.nav-tabs.nav-justified>li.active>a:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: -3px;
    background: linear-gradient(rgba(238,255,0,0.5) 0%, rgba(0,0,0,0) 100%);
    cursor: pointer;
    z-index: 17;
    filter: blur(5px);
}
.ls-mapnav {
    position: absolute;
    top: 470px;
    left: 0;
    width: 100%;
    z-index: 5;
}
.ls-mapnav.nav-tabs {
    background: #232323;
}
.ls-mapnav.nav-tabs.nav-justified>li>a {
    font-size: 13px;
    line-height: 68px;
    border-radius: 0;
    border: none;
    padding-top: 0;
    padding-bottom: 0;
    color: #7f7f7f;
}
.ls-mapnav.nav-tabs.nav-justified>li>a i {
    font-size: 36px;
    vertical-align: -8px;
    display: inline-block;
    padding-right: 10px;
}
.ls-mapnav.nav-tabs.nav-justified>li>a:hover {
    border: none;
    background: none;
    color: #fff;
}
.ls-mapnav.nav-tabs.nav-justified>li.active>a {
    background: none;
    border-collapse: collapse;
    border-top: 4px solid #ef0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    color: #fff;
    position: relative;
    z-index: 6;
    cursor: pointer;
}
.ls-mapnav.nav-tabs.nav-justified>li.active>a:before {
    content: "";
    position: absolute;
    top:0;
    right: 0;
    left: 0;
    height: 1px;
    background: #570;
    box-shadow: 0 2px 5px #ef0, 0 5px 10px #ef0, 0 12px 25px #ef0;
    cursor: pointer;
    z-index: 7;
}
.ls-mapnav.nav-tabs.nav-justified>li.active:after,
.ls-mapnav.nav-tabs.nav-justified>li.active:before {
    content: "";
    position: absolute;
    top: -20px;
    width: 50%;
    right: 0;
    height: 5px;
    box-shadow: #ef0 0 15px 20px, 
         #ef0 0 25px 30px, 
         #ef0 0 40px 40px;
    z-index: 7;
    transform: rotate(10deg);
    animation: old-lamp 7s infinite, old-lamp2 3s infinite;
}
@keyframes old-lamp {
    20% { opacity: 0.9; } 
    20.5% { opacity: 0.3; } 
    20.7% { opacity: 0.9; } 
    21.7% { opacity: 0.9; } 
    22.5% { opacity: 0.4; } 
    22.6% { opacity: 0.9; }}
@keyframes old-lamp2 {
    50% { opacity: 0.9; } 
    50.5% { opacity: 0.3; } 
    50.7% { opacity: 0.9; }}
.ls-mapnav.nav-tabs.nav-justified>li.active:after {
    transform: rotate(-10deg);
    right: auto;
    left: 0;
}
.ls-mapnav.nav-tabs.nav-justified>li.active>a:hover {
}
.ls-page-timeline {
    margin-top: 33px;
    margin-left: 40px;
    margin-right: 39px;
    margin-bottom: 43px; 
    position: relative;
}
.ls-page-timeline>h2 {
    height: 70px;
    font-size: 24px;
    font-weight: normal;
    color: #16b18b;
    line-height: 65px;
    padding: 0 0 0 30px;
    margin: 0;
}
#timeline-embed {
    height: 485px;
    background: #fff;
    z-index: 10;
    position: relative;
    margin-right: -30px;
}
#timeline-embed .tl-menubar {
    display: none;
}
.#timeline-embed tl-attribution {
    display: none;
}
#timeline-embed .tl-timenav {
    background: #fff;
}
#timeline-embed .tl-timemarker .tl-timemarker-content {
    background: #d7d7d7;
    color: #666;
}
#timeline-embed .tl-timemarker:hover .tl-timemarker-content {
    background: #16b18b;
    color: #fff;
}
#timeline-embed .tl-storyslider {
    background: #fff;
}
#timeline-embed .tl-slide-background {
    background: #fff;
}
#timeline-embed .tl-timeaxis-background {
    background: #aed3ca;
    border-top: 1px solid #9dbdb5;
}
#timeline-embed .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick {
    color: #728983;
}
#timeline-embed .tl-timemarker .tl-timemarker-content-container {
    border-radius: 0;
    border: none;
    box-shadow: none;
}
#timeline-embed .tl-timemarker .tl-timemarker-timespan .tl-timemarker-line-left, 
#timeline-embed .tl-timemarker .tl-timemarker-timespan .tl-timemarker-line-right {
    border-color: #d9d9d9;
}
#timeline-embed .tl-timemarker .tl-timemarker-timespan .tl-timemarker-line-left:after, 
#timeline-embed .tl-timemarker .tl-timemarker-timespan .tl-timemarker-line-right:after {
    background: #637873;
}
#timeline-embed .tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-left, 
#timeline-embed .tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-right {
    border-color: #189878;
}
#timeline-embed .tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-left:after, 
#timeline-embed .tl-timemarker:hover .tl-timemarker-timespan .tl-timemarker-line-right:after {
    background: #189878;
}
#timeline-embed .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline {
    color: #666;
}
#timeline-embed .tl-timemarker:hover .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline {
    color: #fff;
}
#timeline-embed .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-major .tl-timeaxis-tick:before, 
#timeline-embed .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick:before {
    border-left-color: #839e97;
}
#timeline-embed .tl-timeaxis .tl-timeaxis-content-container .tl-timeaxis-minor .tl-timeaxis-tick {
    color: #839e97;
}
#timeline-embed .tl-attribution {
    opacity: .5;
    display: none;
}
#timeline-embed .tl-timeline p {
    font-size: 14px;
}
#timeline-embed .tl-text-content-container h2 {
    font-size: 18px;
    line-height: 22px;
}
#timeline-embed .tl-text-content-container h3 {
    font-size: 14px;
    color: #17a984;
}
#timeline-embed .tl-timemarker .tl-timemarker-line-left, 
#timeline-embed .tl-timemarker .tl-timemarker-line-right {
    box-shadow: none;
}
#timeline-embed .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline p.tl-headline-fadeout::after, 
#timeline-embed .tl-timemarker .tl-timemarker-content-container .tl-timemarker-content .tl-timemarker-text h2.tl-headline.tl-headline-fadeout::after {
    display: none;
}
.ls-page-map {
    margin-top: 40px;
    margin-left: 48px;
    margin-right: 80px;
    margin-bottom: 121px; 
    position: relative;       
}
.ls-con-footer {
    position: relative;
    z-index: 20;
    padding: 60px 50px 20px 65px;
    color: #7b7b7b;
    font-size: 12px;
}
.ls-popup-textbox {
    height: 360px;
    overflow-y: scroll;
    padding-bottom: 50px;
    padding-right: 30px;
}
.ls-popup-textbox::before {
    content: "";
    display: block;
    z-index: 110;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 25px;
    height: 50px;
    background: linear-gradient(rgba(255,255,255,0),rgba(255,255,255,1));
}
.ls-map-popup-content .ls-game {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    height: 100%;
    display: none;
}
.ls-map-popup-content img.ls-puzzle {
    max-width: 100%;
    max-height: 260px;    
}
.snappuzzle-wrap { position: relative; display: block; }
.snappuzzle-pile { position: relative; }
.snappuzzle-piece { cursor: move; }
.snappuzzle-slot { position: absolute; background: #fff; opacity: .8; }
.snappuzzle-slot-hover { background: #eee; }
.ls-map-popup-content .ls-game .row {
    margin: 0;
    padding: 0;
}
.ls-map-popup-content .ls-game .col-xs-6 {
    padding: 15px 15px 15px 30px;
}
.ls-map-popup-content .ls-game .col-xs-6:last-child {
    padding: 15px 30px 15px 15px;
}
.ls-map-popup-content .ls-game h2 {
    font-size: 26px;
    font-weight: lighter;
    color: #16b18b;
    margin-bottom: 10px;
    padding: 15px 0 0 30px;
}
.ls-map-popup-content .ls-game p {
    padding: 0 0 5px 30px;
    font-size: 18px;
}
.ls-map-popup-content .ls-game .ls-congs {
    position: absolute;
    display: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 150px 30px 80px 30px;
    background: #fff;
    text-align: center;
    z-index: 105;
}
.ls-page-history {
    margin-top: 32px;
    margin-left: 40px;
    margin-right: 39px;
    margin-bottom: 43px; 
    position: relative;
    z-index: 10;
    height: 556px;
    position: relative;
}
.ls-page-history .ls-heading {
    height: 70px;
}
.ls-page-history .ls-heading h2 {
    font-size: 24px;
    font-weight: normal;
    line-height: 65px;    
    color: #16b18b;
    margin: 0;
    padding-left: 30px;
}
.ls-page-history .ls-heading .nav>li>a:focus,
.ls-page-history .ls-heading .nav>li>a:hover {
    background-color: rgba(22,177,139,.75);
    color: #000;
}
.ls-page-history .ls-heading .nav {
    padding-top: 15px;
}
.ls-page-history .ls-heading .nav li.active a {
    text-decoration: underline;
}

.ls-map-popup-content .ls-game .row-source,
.ls-map-popup-content .ls-game .row-target {
    text-align: center;
    padding: 30px 0 0 0;
    position: relative;
    z-index: 103;
}
.ls-game .row-source span,
.ls-game .row-target span {
    font-size: 28px;
    background: #fff;
    display: inline-block;
    text-align: center;
    color: #666;
    margin: 0 5px 0 0;
    width: 32px;
    height: 44px;
    line-height: 44px;
    text-transform: uppercase;
    cursor: pointer;
}
.ls-game .row-source span {
    border: 1px solid #999;
}
.ls-game .row-target span {
    border: 1px solid #16b18b;
}
.ls-game .row-target.game-complete span {
    background: #16b18b;
    box-shadow: 0 0 3px #fff;
    color: #fff;
}
.ls-game .row-source.game-complete {
    display: none;
}

.ls-page-stories {
    margin-top: 32px;
    margin-left: 40px;
    margin-right: 69px;
    margin-bottom: 43px; 
    position: relative;
    z-index: 10;
    height: 556px;
    position: relative;
}
.ls-page-stories h2.ls-heading {
    height: 70px;
    font-size: 24px;
    font-weight: normal;
    line-height: 65px;    
    color: #16b18b;
    margin: 0;
    padding-left: 30px;
}
.ls-stories-case {
    position: relative;
    min-height: 400px;
}
.ls-stories-case>div.ls-case {
    position: absolute;
    z-index: 15;
    background: center center url(../img/case.png) no-repeat;
    height: 400px;
    width: 100%;
}
.ls-stories-case>div.ls-glow {
    display: block;
    position: absolute;
    top: 45%;
    left: 35%;
    bottom: 35%;
    right: 47%;
    z-index: 14;
    box-shadow: 0px 0px 120px 60px #0fb;
}
.ls-stories-form {
    padding-top: 70px;
}
.ls-stories-form p {
    color: #fff;
}
.ls-stories-form .row {
    padding-top: 40px;
}
.ls-stories-form input,
.ls-stories-form textarea {
    border: 1px solid #ccc;
    border-top-color: #16b18b;
    border-left-color: #16b18b;
    background: rgba(0,128,80,.5);
    color: #16b18b;
    border-radius: 0;
    margin-bottom: 15px;
}
.ls-stories-form textarea {
    height: 133px;
}
.ls-stories-form button {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #21ab81;
    border: none;
    outline: none;
    color: #000;
    padding: 5px 30px;
    width: 300;
    cursor: pointer;
}
.ls-stories-form button:hover {
    background: #21ab81;
    box-shadow: 0px 0px 10px #0fb;
}
.ls-game.ls-yesno {
    background: #fff right bottom url(../img/tof.png) no-repeat;
    background-size: 50%;
}
.ls-game.ls-yesno .row-question {
    width: 50%;
}
.ls-map-popup-content .ls-game.ls-yesno .row-button {
    padding: 15px 30px;    
}
.ls-map-popup-content .ls-game.ls-yesno .row-button button {
    border: 1px solid #064;
    background: none;
    color: #064;
    padding: 5px 30px;
    cursor: pointer;
}
.ls-map-popup-content .ls-game.ls-yesno .row-button button:hover {
    background: #064;
    color: #efd;
}
.ls-map-popup-content .ls-game.ls-yesno .row-button button.ls-good {
    background: #9c3;
    border-color: #9c3;
    color: #fff;
    box-shadow: 0 0 10px #9c3;
}
.ls-map-popup-content .ls-game.ls-yesno .row-button button.ls-bad {
    background: #d66;
    border-color: #d66;
    color: #fff;
    box-shadow: 0 0 10px #d66;
}
.ls-atom {
    display: block;
    width: 300px;
    height: 300px;
    position: absolute;
    bottom: -50px;
    right: -150px;
    z-index: 1000;
    animation: show-atom .5s;
}
@keyframes show-atom {
    0%   { opacity: 0; transform: scale(.1); } 
    95%  { transform: scale(1.1); } 
    100% { opacity: 1; transform: scale(1); }}
.ls-atom.ls-closed {
    opacity: 0;
    animation: hide-atom .5s;
}
@keyframes hide-atom {
    0%   { opacity: 1; transform: scale(1); } 
    100% { opacity: 0; transform: scale(.1); }}
.mapplic-pin {
	background-image: url(../img/pin1.png);
	background-size: 39px 39px;
	width: 39px;
	height: 39px;
	margin-top: -19px;
	margin-left: -19px;
}
.mapplic-pin.pin-obelisk {
	background-image: url(../img/pin3.png);
}
.mapplic-pin.pin-valley {
	background-image: url(../img/pin2.png);
}
.ls-no-pins .mapplic-pin {
    opacity: 0.5;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px #cf3;
}
.mapplic-levels {
    display: none;
}
.tl-credit {
    display: none;
}
.tl-headline {
    display: none;
}
.row.ls-text,
.ls-today-text {
    margin: 1px 0 0 0;
    padding: 15px 30px;
    height: 485px;
    overflow-y: scroll;
    font-size: 16px;
    color: #fff;
}
.row.ls-text::-webkit-scrollbar-track,
.ls-today-text::-webkit-scrollbar-track {
	border-left: 1px solid #1d463a;
	background-color: #0d2820;
}
.row.ls-text::-webkit-scrollbar,
.ls-today-text::-webkit-scrollbar {
	width: 7px;
	background-color: #0d2820;
}
.row.ls-text::-webkit-scrollbar-thumb,
.ls-today-text::-webkit-scrollbar-thumb {
	background-color: #23725b;	
}
.mapplic-coordinates {
    background: #000;
    color: #000;
    opacity: .3;
    margin: 0;
    bottom: 0;
    top: auto;
    left: 0;
    padding: 0;
    width: 80px;
    font-size: 10px;
    line-height: 12px;
    position: absolute;
}
.mapplic-coordinates-x {
    left: 5px;
    top: 0;
    position: absolute;
    display: block;
    background: none;
    border-radius: 0;
    padding: 0;
    color: #df0;
}
.mapplic-coordinates-y {
    right: 5px;
    top: 0;
    position: absolute;
    display: block;
    background: none;
    border-radius: 0;
    padding: 0;
    color: #df0;
}
.mapplic-zoom-buttons a.mapplic-zoomin-button,
.mapplic-zoom-buttons a.mapplic-zoomout-button,
a.mapplic-clear-button {
    background-color: rgba(0,0,0,.8);
    border: none;
}
.ls-social-btns a:hover {
    color: #0fc;
    text-shadow: 0 0 5px #0fc;
    border-color: #0fc;
    box-shadow: 0 0 8px #0fc;
}
.ls-map-popup-content .ls-popup-textbox h1 {
    font-size: 26px;
    font-weight: lighter !important;
    color: #16b18b !important;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.ls-popup-textbox::-webkit-scrollbar-track {
	background-color: #eee;
}
.ls-popup-textbox::-webkit-scrollbar {
	width: 7px;
	background-color: #16b18b;
}
.ls-popup-textbox::-webkit-scrollbar-thumb {
	background-color: #16b18b;	
}
.ls-map-popup-content a.ls-startgame {
    font-size: 14px;
    color: #16b18b;
	border: 1px solid #16b18b;
    background: #fff;
    line-height: 30px;
    width: 200px;
    padding: 0 15px;
    display: block;
    position: absolute;
    left: 30px;
    height: 30px;
    bottom: 25px;
    z-index: 102;
	text-align: center;
}
.ls-map-popup-content a.ls-startgame:hover {
    background: #16b18b;
    box-shadow: 0 0 10px #16b18b;
	color: #fff;
	text-decoration: none;
}
.ls-text a {
    color: #0fc;
}
.ls-text a:hover {
    color: #0fc;
    text-shadow: 0 0 3px #0fc;
}
.ls-game.ls-words {
    background: #fff left bottom url(../img/word-left.png) no-repeat;
    position: absolute;
}
.ls-game.ls-words::after {
    display: block;
    content: "";
    height: 100%;
    background: right bottom url(../img/word-right.png) no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
}
.tl-icon-image {
    display: none !important;
}
.ls-full-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,.95) center center no-repeat;
    background-size: contain;
    z-index: 200;
    animation: full-photo .5s;
}
@keyframes full-photo {
    0% { top: 50%; left: 50%; right: 50%; bottom: 50%; opacity: 0; }
    100% { top: 0; left: 0; right: 0; bottom: 0; opacity: 1; }
}
.ls-img-close {
    display: block;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,.5);
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 201;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #16b18b;
}
.ls-img-close:hover {
    background: #16b18b;
}
.ls-img-close::before,
.ls-img-close::after {
    content: "";
    display: block;
    position: absolute;
    top: 20px;
    left: 10px;
    right: 10px;
    height: 1px;
    background: #16b18b;
    transform: rotate(-45deg);
}
.ls-img-close::before {
    transform: rotate(45deg);
}
.ls-img-close:hover::before,
.ls-img-close:hover::after {
    background: #000;
}
.ls-img-next, .ls-img-prev {
    display: block;
    position: absolute;
    top: 50%;
    right: -60px;
    margin-top: -60px;
    width: 0;
    height: 0;
    border-radius: 50%;
    border-top: 60px solid rgba(0,0,0,.5);
    border-right: 60px solid rgba(0,0,0,.5);
    border-bottom: 60px solid transparent;
    border-left: 60px solid transparent;
    transform: rotate(45deg);
    z-index: 201;
    cursor: pointer;
}
.ls-img-next::after, 
.ls-img-prev::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-top: 1px solid #16b18b;
    border-right: 1px solid #16b18b;
    position: absolute;
    z-index: 202;
    top: -15px;
    left: -5px;
}
.ls-img-prev {
    transform: rotate(-135deg);
    left: -60px;
}
.ls-img-next:hover, 
.ls-img-prev:hover {
    border-top-color: #16b18b;
    border-right-color: #16b18b;
}
.ls-img-next:hover::after, 
.ls-img-prev:hover::after {
    border-top-color: #000;
    border-right-color: #000;
}

.ls-mapnav > li { 
    display: table-cell !important; 
    width: 1% !important;
}

.ls-prometheus {
    width: 64px;
    height: 64px;
    background: url(../img/prometheus_logo.png) center center no-repeat;
    background-size: contain;
    display: block;
    position: relative;
    left: 50%;
    margin-left: -38px;
    margin-top: -4px;
    opacity: .5;
}

@media only screen and (max-width : 1200px) {
    .ls-mapnav li span {
        display: none;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .ls-mapnav li span {
        display: none;
    }
    .ls-mapmode.nav-tabs.nav-justified {
        width: 300px;
    }
    .ls-main-nav li {
        max-width: 100px;
        background: none;
    }
    .ls-main-nav li a {
        max-width: 95px;
        text-overflow: ellipsis;
        overflow-x: hidden;
        background: none;
    }
    .ls-main-nav.nav-tabs>li>a,
    .ls-main-nav.nav-tabs>li>a::before {
        background: none;
    }
    .ls-main-nav.nav-tabs>li>a:hover,
    .ls-main-nav.nav-tabs>li>a:hover::before {
        background: none;
    }
    a.ls-logo {
        width: 70px;
        overflow: hidden;
    }
    .ls-layer-3x3 {
        display: none;
    }
    .notitle.ls-con-main:before {
        right: 80px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .ls-mapnav.nav-tabs.nav-justified > li > a i {
        font-size: 24px;
    }
    .ls-searchbox {
        display: none;
    }
    .ls-mapnav li span {
        display: none;
    }
    .ls-mapmode.nav-tabs.nav-justified {
        width: 300px;
    }
    .ls-main-nav li {
        max-width: 80px;
    }
    .ls-main-nav li a {
        max-width: 80px;
        font-size: 8px;
    }
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
    a.ls-logo {
       display: none;
    }
    a.ls-logo::before {
       display: none;
    }
    .ls-con-nav i {
        display: none;
    }
    .ls-main-nav li:nth-child(4) {
        display: none;
    }
    .ls-main-nav li:nth-child(5) {
        display: none;
    }
    .ls-mapnav.nav-tabs.nav-justified > li > a i {
        font-size: 18px;
    }
    .ls-searchbox {
        display: none;
    }
    .ls-mapmode.nav-tabs.nav-justified {
        width: 200px;
    }
    .ls-mapnav li span {
        display: none;
    }
    .ls-mapnav > li { 
        display: table-cell !important; 
        width: 1% !important;
    }
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
    .ls-mapnav.nav-tabs.nav-justified > li > a i {
        font-size: 12px;
    }
    .ls-searchbox {
        display: none;
    }
    .ls-mapmode.nav-tabs.nav-justified {
        width: 200px;
    }
    .ls-mapnav li span {
        display: none;
    }
}