/**
 * multiscroll 0.0.6 Beta
 * https://github.com/alvarotrigo/multiscroll.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.ms-section {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.ms-section.ms-table {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.ms-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    table-layout: fixed;
}

.ms-easing {
    -webkit-transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
}

#multiscroll-nav {
    position: fixed;
    z-index: 3;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
    padding: 6px 6px;
    border-radius: 10px;
}

#multiscroll-nav.right {
    right: 17px;
}

#multiscroll-nav.left {
    left: 38px;
}

#multiscroll-nav ul {
    margin: 0;
    padding: 0;
    position: relative;
}

.runner {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    top: 0px;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, 0px);
    -webkit-transform: translate(-50%, 0px);
    transition: 0.3s ease 0s;
    display: none;
}

#multiscroll-nav li {
    display: block;
    position: relative;

}

#multiscroll-nav li:last-child {
    margin-bottom: 0px;
}

/*#multiscroll-nav li:before {*/
    /*content: '';*/
    /*display: block;*/
    /*width: 2px;*/
    /*height: 40px;*/
    /*position: absolute;*/
    /*top: -39px;*/
    /*background: #fff;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
/*}*/

#multiscroll-nav li:first-child:before {
    height: 0px;
}

#multiscroll-nav li > a {
    width: 50px;
    height: 50px;
    display: block;
    position: relative;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
    font-size: 0px;
    text-align: center;
}

#multiscroll-nav li > a:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 0%;
    height: 100%;
}

#multiscroll-nav span {
    display: inline-block;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    z-index: 1;
    border-radius: 50%;
    transform: scale(1);
    -webkit-transform: scale(1);
    background: #3F4657;
    transition: 0.6s ease 0s;
}

#multiscroll-nav li .active span, #multiscroll-nav li:hover span {
    background: #ADC2E1;
}

.multiscroll-tooltip.right {
    right: 20px;
}

.multiscroll-tooltip.left {
    right: 75%;
}

.multiscroll-tooltip {
    position: absolute;
    top: 50%;
    font-size: 14px;
    color: #3F4657;
    white-space: nowrap;
    opacity: 0;
    transform: translate(0px, -50%);
    -webkit-transform: translate(0px, -50%);
    margin-right: 10px;
    transition: 0.3s ease 0s;
}

#multiscroll-nav li:hover .multiscroll-tooltip {
    opacity: 1;
    margin-right: 0px;
    transform: translate(0px, -50%);
    -webkit-transform: translate(0px, -50%);
}




