/*
http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/
*/
.black_overlay {
    display: none;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity = 80);
}

.lightbox {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 700px;
    height: 420px;
    padding: 16px;
    z-index: 1002;
    overflow: auto;
    -moz-opacity: 0.9;
    opacity: .90;
    filter: alpha(opacity = 90);

    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    border-radius: 12px;
    border: 7px solid #fff;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    background:#096172 url(/images/background-texture-white.png) repeat 0 0;
}

#close-lightbox {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor:pointer;
}

#fb_share_trip {
    margin-top: 20px;
    width: 150px;
}

#lightbox-content {
    margin-top: 30px;
    font-size: 16px;
}

.sweepstakes_gallery {
    position: absolute;
    bottom: 20px;
}

.ad180 {
    float: left;
    margin-right: 10px;
    position: relative;
    z-index: 1;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    background: url(/images/background-texture-dark-blue.png) repeat 50% 50%;
}

.ad180 .ad {
    display: block;
    width: 180px;
    height: 150px;
    padding: 15px;
}

.ad180 .ad img {
    display: block
}
