﻿/* CSS of pop up dialog */
.messageBackSkin {
    background-color: gray;
    opacity: 0.75;
    filter: alpha(opacity=55);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 10000;
    position: fixed;
}

#messageBlock {
    background: #504E4E none repeat scroll 0 0;
    border: 3px solid #504E4E;
    left: 50%;
    top: 50%;
    position: fixed;
    z-index: 10002;
}

#messageBlock {
    width: 500px;
    height: 150px;
    margin-left: -250px;
    margin-top: -125px;
}

#messageHeading {
    background-color: #B7BABB;
    border-bottom: solid 1px #eee;
    padding: 0.5em 1em;
    font-size: medium;
    font-weight: bold;
}    

#closeButton {
            
    border: none;
    display: inline-block;
    color: black;
    font-family: Arial, "Liberation Sans", FreeSans, sans-serif;
    font-size: 13px;
    font-weight: bold;
    padding: 1px 10px;
    text-decoration: none;
    -webkit-transition: background-color 0.1s ease-in;
    -moz-transition: background-color 0.1s ease-in;
    transition: background-color 0.1s ease-in;
    width: 75px;
    margin-top: 10px;
    background: #FEE139;
    border-radius: 4px;
}

#closeButton:hover {
    color: white !important;
}

.ml-close a {
    cursor: pointer;
    display: block;
    height: 15px;
    width: 15px;
}
/* End CSS of pop up dialog */
