﻿/** for mf_overlay function **/
div#mask
{
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.7);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#70000000, endColorstr=#70000000)";
    display: none;
    top: 0px;
    left: 0px;
    z-index: 999;
    /*TODO: path below*/
    behavior: url('PIE.htc');
}
div.mf_overlay
{
    z-index: 1000;
    position: fixed;
}
a.mf_close
{
    opacity: 0.3;
    filter: alpha(opacity=30);
    border: 2px solid black;
    color: Black;
    font-weight: 900;
    padding: 1px 4px;
    position: absolute;
    top: 3px;
    right: 5px;
    cursor: pointer;
    text-decoration: none !important;
}


/***************************/
/** for messaging fuction **/
div#message_wrap
{
    font-family: Arial,Helvetica,sans-serif;
    position: fixed; /*bottom: 0px;*/ /*top: 0px;*/
    left: 0px;
    width: 100%;
    z-index: 105;
    text-align: center;
    font-weight: bold;
    font-size: 100%;
    color: white;
    padding: 10px 0px;
    min-height: 30px;
    background-color: #000;
    opacity: 0.85 !important;
    filter: alpha(opacity=85) !important; /* without width, IE6/7 will not apply filter/opacity to the element ?! */
}
div#message_wrap span
{
    text-align: center;
    width: 95%;
    float: left;
}
div#message_wrap a
{
    cursor: pointer;
}
a.close-notify
{
    white-space: nowrap;
    float: right;
    margin-right: 10px;
    color: #fff;
    text-decoration: none;
    border: 2px #fff solid;
    padding-left: 3px;
    padding-right: 3px;
    cursor: pointer;
}
a.close-notify a
{
    color: #fff;
}