body {
    padding: 20px 10%;

}

.lb-overlay {
    position:fixed; /* keeps the lightbox window in the current         viewport */
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA9JREFUeNpiYGBg2AwQYAAAuAC01qHx9QAAAABJRU5ErkJggg==) repeat;
    text-align:center;
    display: none;
}

.lb-simple {
    width: 650px;
    background-color: #fff;
    border: 1px solid #0775d6;
    z-index: 10;
    border-radius: 3px;
    position: absolute;
    top: 100px;
    left: 100px;
    -webkit-box-shadow:  0px 0px 20px 0px rgba(255, 255, 255, 0.5);
    box-shadow:  0px 0px 20px 0px rgba(255, 255, 255, 0.5);
    display: none;
}

.lb-simple .lb-body {
    position: relative;
    z-index: 11;
}

.lb-scroll {
    overflow: auto;
    height: 480px;
    padding: 20px;
}


.lb-simple .lb-close {
    position: absolute;
    width: 25px;
    height: 25px;
    line-height: 25px;
    top: -8px;
    right: -8px;
    background-color: #0775d6;
    color: #fff;
    display: block;
    text-align: center;
    text-decoration: none;
    z-index: 12;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
}

.lb-container .lb-close:hover {
    background-color: #ff0000;
    color: #fff;
    text-decoration: none;
}