
body{
    margin:0;
    padding:0;
}

.scroller{
    position: relative;
    background-color: #e6e6e6;
    width: 100%;
    height: 0;
    min-width: 960px;
    overflow: hidden;
    -webkit-transition: height 0.3s ease-in-out;
    -moz-transition: height 0.3s ease-in-out;
    -ms-transition: height 0.3s ease-in-out;
    -o-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
}

.scroller-wrap{
    height: 100%;
    display:none;
}

.scroller-container{
    position: absolute;
    height: inherit;
    top: 0;
    left: 50%;
}

.slide{
    position: relative;
    display: block;
    float: left;
}

.slide img{
    position:abolute;
    top:0;
    left:0;
    z-index:1;
    height: inherit;
    width: auto;
    z-index: 1;
    position: relative;
}

.left-arrow {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 100px;
    z-index: 10;
    right: 50px;
}

.right-arrow {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 100px;
    z-index: 10;
    left: 50px;
}

/* -- black on mouseover on the slides -- */

.cover{ 
    position:absolute;
    top:0;
    left:0;
    z-index:2;
    width:100%;
    height:100%;
    background:none;
    -webkit-transition: background 150ms ease-in 200ms;
    -moz-transition: background 150ms ease-in 200ms;
    -o-transition: background 150ms ease-in 200ms;
    transition: background 150ms ease-in 200ms;
}             
.cover:hover{
    cursor:pointer;    
    background: rgba(0,0,0, 0.7);
}

/* -- big overlays -- */

.black_get_bigger{
    background: rgba(0,0,0, 0.9);
    position:fixed;
    z-index:1000;
}

.big_slide{
    background-size: cover;
    z-index: 999;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.big_slide .closebtn{
    position: absolute;
    top: 10px;
    right: 20px;
    color: rgba(255, 255, 255, 0.51);
    text-transform: uppercase;
    font-family: Helvetica;
    border: solid 1px rgba(255, 255, 255, 0.51);
    padding: 10px;
    cursor: pointer;
}

/* -- big image -- */

.big_image{
    margin: auto auto;
    display: block;
    position:relative;
    
    /* center the image*/
    top:50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* -- mini nav -- */

.mini_nav {
    position:absolute;
    bottom:20px;
    width: 100%;
    text-align: center;
}

.mini_nav .inside{
    display:inline-block;
}

.mini_nav .slide{
    max-width:100px;
    max-height:100px;
    margin-left:20px;
    border:solid 2px black;
}

.mini_nav .slide:first-child { 
     margin-left:0;
}

.mini_nav .slide.active{
    border:solid 2px white;
}

.mini_nav .slide .cover:hover{ 
    background:none;
    cursor:pointer;
}

.mini_nav .slide img{
    max-width:100%;
    max-height:100%;
}