    html > body.grayscale * {
        -moz-filter: grayscale(100%);
        -webkit-filter: grayscale(100%);
        filter: gray; /* IE6-9 */
        filter: grayscale(100%);
    }

    #fear-real-article {
        display: block;
        width: 100%;
        background-color: #fff;
        text-align: center;
        font-family: "TungstenBold",Georgia,Times,serif;
        color: #000;
        text-transform: uppercase;
        font-size: 2.35rem;
        padding: .5rem;
        margin-bottom: -70px;
        transition: margin-bottom .5s;
    }
    html > body.grayscale #fear-real-article {
        margin-bottom: 0;
    }
    html > body.grayscale #fear-real-article a {
        color: #333;
    }

    /* grayscale toggle button */
    #ghostrider {
        position: relative;
        display: block;
        background-color: #86c8bc;
        height: 60px;
        width: 100px;
        border-radius: 30px;
        padding: 4px;
        align-self: center;
        transform: scale(75%);
    }
    #ghostrider.selected div {
        margin-left: 35px;
    }
    #ghostrider div {
        display: block;
        background-color: rgb(144, 179, 179);
        padding: 0.5rem;
        height: 100%;
        width: 56px;
        border-radius: 26px;
        background-color: #004f59;
        margin-left: 0;
        transition: margin-left .5s;
    }
    #ghostrider div img {
        height: 100%!important;
    }
    #ghostrider span {
        position: absolute;
        display:block;
        color:#fff;
        top:0;
        left:0;
        height:100%;
        width: 45%;
        padding-top: 22px;
        font-size: 12px;
        text-align: center;
        z-index: -1;
        color: #004f59;
        font-weight: bold;
    }
    #ghostrider span + span {
        left: auto;
        right:0;
    }

    /* ReCaptcha grayscale display workarounds */
    html > body.grayscale form.basic_subscribe > div:first-of-type {
        visibility: hidden;
    }
    html > body.grayscale #gboxovr {
        z-index: 1000;
    }
    #gbox {
        border: 1px dashed orange;
        position: fixed;
        height: 80px;
        right: 0;
        bottom: 0;
        z-index: 100000;
        visibility: visible;
    }
