﻿/* Css picture and jquery-galleria */
ul.pictureGallery {
    padding:0;
    margin: 10px auto;
}

ul.pictureGallery li {
    list-style: none;
    display: inline-block;
    position: relative;
    margin: 5px;
    height: 100px;
    width: 120px;
    overflow: hidden;
    padding: 0px;
}

    .containerPicture.over {
        border: 2px dashed #000;
    }

    ul.pictureGallery li img {
        max-width: 100%;
        max-height: 100%;   
        margin: auto;
        display: block;
    }

    ul.pictureGallery li img:hover {
        opacity: 0.65;
    }
    
    ul.pictureGallery li a {
        display: block;
        height: 100%;
        padding: 0px;
        margin: 0px;
    }
    
    ul.pictureGallery li div {
        color: #000;
        cursor: pointer;       
    }
    
    .wide {
        width: 100%;
        height: 100%;
        display:block;
        vertical-align:middle;
        text-align:center;
    }
    
    ul.pictureGallery li div:hover {
        color: red;
    }
    
    .picture-context-menu-items {
        right: 3px;
        font-size: 18px;
        position: absolute;
        background-color: transparent;
        top: 3px;
        line-height: 1em;
    }
    .picture-context-menu-items:hover {
        color: red;
    }
    
/* jquery-galleria */
#container-galleria {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-color: #000;
}
    
#galleria {
    position: relative;  
    width: 100%; 
    height: 100%; 
    background:#000; 
}

.galleria-info {
    display: none;
}
    
.galleria-exit {
    /*background-image: url(../Scripts/galleria-1.2.9/galleria/themes/classic/classic-map.png);
    background-repeat: no-repeat;
    background-position: -753px -11px;
    opacity: 0.5;
    filter: alpha(opacity=50);*/
    background-color: black;
    position: absolute;
    top:10px;
    right:15px;
    cursor: pointer;
    display: block; 
    color: White;
    z-index: 1;
    /*width: 9px;
    height: 9px*/
}

.galleria-exit:hover {
    color: Orange;
    /*opacity: 1;
    filter: alpha(opacity=100);*/
}
