/* 
 * v0.1
 * this file is a dependency of generalpurpose.js, 
 * any thing that is not related to generalpurpose.js or not used as general purpose should not be put here.
 * all the class should start with "g-*" as its namespace.
 * and please only define class here.
 *
 */

.g-mask {
    display:block;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index:9500;
    background-color:#000000;
    opacity:0.5;
    filter:alpha(opacity=50);
}

.g-bubble {
    display:inline-block;
    position:fixed;
    top:50%;
    left:50%;
    color:#FFFFFF;
    background-color:#000000;
    opacity:0.75;
    filter:alpha(opacity=75);
    border-radius:5px;
    padding:25px 20px;
    width:240px;
    font-size:17px;
    text-align:center;
    z-index:9501;
    margin-top:-40px;
    margin-left:-140px;
    line-height:24px;
    letter-spacing:1px;
}

