#lightboxcontent h1{

    font-size: 1.4em;

    padding-bottom: 10px;
    margin-bottom: 15px;

    width: 100%;
    border-bottom: 1px solid #eee;

    white-space: nowrap;
    overflow-x: hidden;

}

#lightbox{

    position: absolute;

    width: 1080px;
    min-height: 300px;

    left: 50%;
    top: 56px;
    margin-left: -540px;
    /*margin-top: -220px;*/

    /*box-shadow: 0px 0px 200px black;*/

    z-index: 100;


    background-color: white;

    display: none;


}
#lightboxcontent > * {
    /*padding-left: 20px;*/
}

#lightboxcontent{

    background-color: white;

    position: absolute;

    padding: 50px;

    top: 0px;
    /*bottom: 0px;*/
    left: 0px;
    right: 0px;

    max-height: 700px;

    overflow: auto;


}

#lightboxclose{
    position: absolute;

    right: 10px;
    top: 0px;

    font-size: 20px;
    font-weight: 400;

    z-index: 101;

    color: #bbb;

}

#lightboxclose:hover{
    cursor: pointer;

    color: #888;

}

#lightboxoverlay{

    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;

    background-color: black;
    opacity: 0.27;

    z-index: 99;

    display: none;
}