/*	--------------------------------------------------
	Reveal Modals
	-------------------------------------------------- */

.reveal-modal-bg {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #000;
    background: rgba(0,0,0,.8);
    z-index: 100;
    display: none;
    top: 0;
    left: 0;
}

.reveal-modal {
    visibility: hidden;
    top: 75px;
    left: 50%;
    margin-left: -375px;
    width: 736px;
    height: 500px;
    background: #EEEEEE url(../images/modal-gloss.png) no-repeat -200px -80px;
    position: absolute;
    z-index: 101;
    padding: 30px 15px 10px 20px;
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.4);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
    -box-shadow: 0 0 10px rgba(0,0,0,.4);
}

    .reveal-modal .close-reveal-modal {
        font-size: 4em;
        line-height: .5;
        position: absolute;
        top: 30px;
        right: 10px;
        color: #13A870;
        text-shadow: 0 -1px 1px rbga(0,0,0,.6);
        font-weight: lighter;
        cursor: pointer;
    }

    .reveal-modal h1 {
        font-size: 1.5em;
        font-weight: bold;
        padding-bottom: 1em;
    }

    .reveal-modal h2 {
        padding-bottom: 0.5em;
    }

    .reveal-modal p, .reveal-modal li {
        color: #5C5B5B;
        padding-bottom: 1em;
    }

    .reveal-modal ul {
        list-style-type: normal;
        list-style: disc;
        padding-left: 1em;
        padding-top: 1em;
    }

