/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 29-Nov-2015, 22:13:23
    Author     : seanmcgee
*/

@import url(https://fonts.googleapis.com/css?family=Open+Sans);

html
{
    height: 100%;    
}

*
{
    padding: 0;  
    margin: 0;
}

body
{
    width: 100%;
    height: 100%;
}

#sliderHolder
{
    width: 100%;
    margin-top: 1em;
    // margin: auto;
    border-bottom: solid rgb(100,0,0) thick;
    border-top: solid rgb(100,0,0) thick;
    height: 50%;
    display:block;
    background-color:white;
    position: relative;
}


#mainViewer
{
    height: 65%;
   // max-height: 400px;
    width: 100%;
    display: block;
    list-style-type: none;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0;
    // margin-bottom: .5%;
}
.galleryImage
{
    height: 100%;
   // max-height: 400px;
    width: 100%;
    font-size: 0;
    background-color: white;
    display: inline-block;
    margin-bottom: 10px;
    
}

.galleryImage img
{
    height: 100%;
    //max-height: 400px;
   
    margin: auto;
    display: block; 
    cursor: pointer;
    box-shadow: 0px 0px 5px 3px rgba(0,0,0,.7);
}



#thumbnailViewer
{
    height: 100px;
    width: 80%;
    display: block;
    list-style-type: none;
    overflow: hidden;
    white-space: nowrap;
    margin: auto;
    background-color:#f3f6f8;
    font-size: 0;
}

.thumbnailImage
{
    height: 100%;
    background-color: green;
    display: inline-block;
    margin-left: .5%;
    margin-right: .5%; 
    cursor: pointer;
    font-size: 0;
}

.thumbnailImage img
{
    height: 98%;
    margin: auto;
    display: block;  
}


.coverButton
{
    //background-color: rgba(0,0,0,.3);
    //color: #7a8114;
    color: #f3f6f8;
    text-shadow: 2px 2px 2px black;
    
    z-index: 5;
    width: 15%;
    height: 75%;
    text-align: center;
    font-size: 1em;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;

}

.coverButton h1
{
    margin-top: 150px;  
}

#next
{
    display: block;
    float: right;
    position: absolute;
    right: 0px;
}


#previous
{
    display: block;
    float: left;
    position: absolute;
}

#lightbox
{
    position: absolute;
    display: none;
    width: 100%;
    margin-left:0%;
    height: 100%;
    background-color:black;
    z-index: 50;
    top: 0;
}

#closeLightbox
{
    height: 20px;
    width: 20px;
    text-align: center;
    padding: 5px;
    color: white;
    font-size: 1em;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
    border-radius: 100%;
    border: solid medium white;
    font-weight: 300;

    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
}

#closeLightbox:hover
{
    // color: red;
    font-weight: 500;
    border: solid  medium  red;
    // background-color: white;
}

#lightboxImage
{
    width: 90%;
    height: 90%;
    margin: auto;
    margin-top: 1%;
    background-color: black;
    text-align: center;
}

#fullImage
{
    height: auto;
    //width: auto;
    max-width: 100%;

    margin-top:25px;
    margin-bottom: 25px;
    border: thick outset white;
    // -webkit-filter: drop-shadow(0px 0px 30px rgba(255,255,235,1));
}

@media only screen and (min-width:641px)and (max-width:910px)
{

    #mainViewer
    {
        height: 30%;
    }
    #fullImage
    {
        height: 80%;

        margin-top:25px;
        margin-bottom: 25px;
        border: thick outset white;
        // -webkit-filter: drop-shadow(0px 0px 30px rgba(255,255,235,1));
    }

}

@media only screen and (min-width:911px)
{

    #mainViewer
    {
        height: 30%;
    }
    #fullImage
    {
        height: 100%;

        margin-top:25px;
        margin-bottom: 25px;
        border: thick outset white;
        // -webkit-filter: drop-shadow(0px 0px 30px rgba(255,255,235,1));
    }

    .coverButton
    {
        //background-color: rgba(0,0,0,.2);
        color: #7a8114;;
        z-index: 5;
        width: 10%;
        height: 85%;
        text-align: center;
        font-size: 4em;
        cursor: pointer;
        font-family: 'Open Sans', sans-serif;
    }

}