/*
GHOST BOARD PLUG-IN
Special for site http://www.jazzglobus.com/
Created by Victor Waldberg, IWD ©2014-15
Ver.1.2.0 (Release: 30.12.2015)

CASCADE STYLE SHEET
*/

#ghosts {
    padding: 0;
    margin: 4px;
    overflow: hidden;
    height: 572px;
    width: 752px;
    text-align: left;
    background-color: #000000;
    display: inline-block;
    border: solid 3px #666666;
    position: relative;
}

    #ghosts span.slide {
        display: none;
        width: 180px;
        height: 135px;
        overflow: hidden;
        color: #888888;
        font: normal 12px Arial,Tahoma;
        margin: 6px 0 0 6px; /* margin: 4px; */
    }

        #ghosts span.slide .title {
            display: none;
            color: #ffffff;
        }

    #ghosts .ghost {
        position: absolute;
    }

        #ghosts .ghost img {
            filter: gray; /* IE6-9 */
            filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
            -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
        }

            /* Disable grayscale on hover */
            #ghosts .ghost img:hover {
                filter: none;
                -webkit-filter: grayscale(0);
            }
