/* 
    Document   : pan
    Created on : 2-nov-2013, 23.01.25
    Author     : alessio
    Description:
        Purpose of the stylesheet follows.
*/

body {
    padding: 10px;
    background-color: #ffcc00;
}

.hidden { 
    display: none;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.overlay {
    background: #000;
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 100;
    cursor: none;
    /*Trasperenza cross browser*/
    opacity: .7;
    filter: alpha(opacity=70);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";   
}

.box {
    padding: 10px;
    width: 80%;
    height: 50%;
    position: absolute;

    /*top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;*/

    /*left: 50%;
    top: 50%;*/
    transform: translate(-50%,-50%);
    width: 90%;
    height: 45%;
    
    background-color: #FFF;
    display: none;
    z-index: 300;
    position: absolute;
    -moz-border-radius: 15px; 
    -webkit-border-radius: 15px;
    border-radius: 15px;
}

img {
    vertical-align: middle;
}