/* CSS Document */

/* lightbox css */

 .black_overlay{
            display: none;
            position:absolute;
            top: 0%;
            left:0%;
            width:100%;
            height:100%;
            background-color: black;
            z-index:1001;
            -moz-opacity: 0.6;
            opacity:.60;
            filter: alpha(opacity=60);
        }
        .white_content {
            display: none;
            position: absolute;
            top:5%;
            left:8%;
            width:80%;
            height:85%;
            padding:4px;
            border:16px solid #0095d9;
            background-color: white;
            z-index:1002;
          overflow: auto;
        }

