.modal {
    /* Important properties, don't change */
    position: fixed !important;
    position: absolute;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    z-index: 20;
    
    /* Styling properties */
    background-color: #222;
    border: 1px solid #888;
    color: white;
    
    /* Default properties */
    padding: 5px;
    width: 500px;
    height: 350px;
}

#modalBorder {
    position: fixed !important;
    position: absolute;
    display: none;
    z-index: 10;
    
    /* Styling properties */
    background-color: black;
    border: 2px solid black;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    filter: alpha(opacity=75);
    -moz-opacity: 0.75;
    opacity: .75;    
    
    /* Default properties */
    width: 530px;
    height: 390px;
}
    
#modalBorder a {
    float: right;
    padding-right: 1em;
    color: white;
    font-size: 0.9em;
    text-decoration: underline;
    letter-spacing: 0.1em;
    font-weight: bold;
}

#modalBorder a:hover {
    text-decoration: none;
}

.modal h1 {
    padding: 0.25em;
    margin: -5px -5px .5em -5px;
    border-bottom: 1px solid #888;
    background-color: White;
    font-size: 1.3em;
    font-weight: bold;
    color: Black;
}

.modal .footer {
    padding: 0.25em;
    margin: .5em -5px -5px -5px;
    border-top: 1px solid #888;
    background-color: White;
    color: black;
    text-align: right;
}

.modal fieldset legend {
    color: white;
}
