﻿body { font-family:Calibri }

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,.5);
    z-index: 10;
}
#messageBox
{
    display: none;
    background-color: #eee;
    border-radius: 5px;
    border: 1px solid #aaa;
    position: fixed;
    width: 300px;
    left: 50%;
    margin-left:-150px;
    padding: 6px 8px 8px;
    box-sizing: border-box;
    text-align: center;
    margin-top: 270px;
    font-size:medium;
}
#messageBox .button {
    color: #000;
    background-color: #ccc;
    display: inline-block;
    border-radius: 3px;
    border: 1px solid #aaa;
    padding: 2px;
    text-align: center;
    width: 80px;
    height: 28px;
    cursor: pointer;
    margin: auto;
}
#messageBox .button:hover
{
    background-color: #f2571a;
    color:white;
}
#messageBox .message
{
    text-align: left;
    margin-bottom: 10px;
    text-align: center;
}
#confirmBox
{
    display: none;
    background-color: #eee;
    border-radius: 5px;
    border: 1px solid #aaa;
    position: fixed;
    width: 300px;
    left: 50%;
    margin-left: -150px;
    padding: 6px 8px 8px;
    box-sizing: border-box;
    text-align: center;
    margin-top: 70px;
    font-size:medium;
}
#confirmBox .button {
    color: #000;
    background-color: #ccc;
    display: inline-block;
    border-radius: 3px;
    border: 1px solid #aaa;
    padding: 2px;
    text-align: center;
    width: 80px;
    height: 22px;
    cursor: pointer;
    margin: auto;
}
#confirmBox .button:hover
{
    background-color: #f2571a;
    color:white;
}
#confirmBox .message
{
    text-align: left;
    margin-bottom: 10px;
    text-align: center;
}
