.overlay {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 900001; /* it... can't... be... */
    background: rgba(0, 0, 0, .8);
    display: table;
    text-align: center;
    opacity: 0;
    -ms-transition: opacity .5s ease-in;
    -o-transition: opacity .5s ease-in;
    -moz-transition: opacity .5s ease-in;
    -webkit-transition: opacity .5s ease-in;
    transition: opacity .5s ease-in;
    display: none;
}
.overlay.visible {
    opacity: 1;
}
.overlay .modal {
    display: table-cell;
    vertical-align: middle;
}
.overlay .modal .inner {
    display: block;
    width: 650px;
    padding: 30px 40px 0px 40px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(0,0,0,1);
    background: white;
    font-family: Helvetica, Arial, sans-serif;
    -ms-transition: margin-top .5s ease-in;
    -o-transition: margin-top .5s ease-in;
    -moz-transition: margin-top .5s ease-in;
    -webkit-transition: margin-top .5s ease-in;
    transition: margin-top .5s ease-in;
    margin-top: -50px;
}
.overlay .modal .inner.visible {
    margin: 0px auto 0px auto;
}
.overlay .modal .inner p {
    color: black;
}
.overlay .modal .inner p.gray {
    color: gray;
    font-size: 1em;
}

.overlay .modal .bottom {
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background: #ddd;
    padding: 20px 40px;
    width: 100%;
    margin-top: 20px;
    border-top: 1px solid #aaa;
    margin-left: -40px;
}
.overlay .modal .bottom .disclosure {
    color: gray;
    font-size: .9em;
    line-height: 1.3em;
    margin: 10px 0px 0px 0px;
    padding: 0px;
}
.overlay .modal .bottom .disclosure a {
    color: #444;
}