/*div#modal-window h1,
div#modal-window h2,
div#modal-window h4,
div#modal-window h5,
div#modal-window h6 { text-align: center; margin-bottom: 5px; }

div#overlay {
    position: fixed;
    background: #CCC;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: alpha(opacity=50);
    opacity: .5;
    z-index: 500;
    cursor: pointer;
}

div#overlay.hide { display: none; }

div#modal-window {
    font-family:"ProximaNovaSoft-Bold", "Comic Sans MS", cursive;
    position: fixed;
    top: 30%;
    left: 50%;
    height:188px;
    z-index: 1000;
    background: #000;
    padding:20px;
    box-shadow: 0 0 10px #333;
    -webkit-transition: top .4s ease-in-out;
    -moz-transition: top .4s linear;
    -o-transition: top .4s linear;
    -ms-transition: top .4s linear;
    transition: top .4s linear;
    width: 500px;
    border: 2px solid #333;
    color: #FFF;
    font-size:2em;


}
#modal-window-msg{margin-top:11px;}
div#modal-window.hide { top: -1000px; display: block; }

div#modal-window .button {
    margin-left:210px;
    margin-top:10px;
    cursor: pointer;
    text-decoration: none;
    font-size: 20px;
    padding: 4px 10px 4px;
    color: #F00;
    background-color: #000;
}

@media screen and (max-width: 960px) {
    div#modal-window { width: 90%; }
    div#modal-window .button { position: absolute; top: 10px; right: 10px; }
}
*/