﻿/* colorbox */
#content p {
    overflow: hidden;
}

#content p strong {
    color:#ffffff;
    font-weight:bold;
    font-size:19px;
    text-shadow: 0px 0px 10px #fff;

    position: absolute;
    display: block;
    z-index: 1;
    bottom: 0;
    width: 261px;
    height: 30px;
    background: rgba(188, 25, 25, 0.5);
    text-align: left;
    padding: 15px;
}

#content p span {
    position: absolute;
    display: block;
    z-index: 0;
    top: 15px;
    width: 290px;
    height: 190px;
    box-shadow: inset 0 0 50px rgba(50, 30, 0, 0.6),
                inset 0 0 100px rgba(50, 30, 0, 0.3);
    background: rgba(255, 155, 0, 0.2);
    opacity: 0;
}

#content p:nth-child(1) strong {
    opacity: 0;
}

#content p:nth-child(3) img {
    position: absolute;
    top: 0px;
}
/*******/