#dialog-overlay {
    /* set it to fill the whil screen */
    width:100%;
    height:210px;
     
    /* transparency for different browsers */
    filter:alpha(opacity=50);
    -moz-opacity:0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
    background:#000;
 
    /* make sure it appear behind the dialog box but above everything else */
    position:absolute;
    top:0; 
    left:0;
    z-index:300;
 
    /* hide it by default */
    display:none;
}

#dialog-yes-no, #dialog-ok 
{
    /* make sure it has the second highest z-index */
    position:absolute;
    top: 40px;
    left: 0px;
    z-index:400;
    width:100%;
 
    /* hide it by default */
    display:none;
}

#dialog-splash1-screen, #dialog-splash2-screen
{
    /* make sure it has the second highest z-index */
    position:absolute;
    top: 40px;

    left: 0px;
    z-index:400;
    width:100%;
 
    /* hide it by default */
    display:none;
}


#dialog-box-yes-no, #dialog-box-ok {     
    /* css3 drop shadow */
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
     
    /* css3 border radius */
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
     
    background:#eee;    
    width:280px;
}

#dialog-box-splash1-screen, #dialog-box-splash2-screen {
    /* css3 drop shadow */
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
     
    /* css3 border radius */
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
     
    background:#eee;
    width:66%;
    /*margin-left: 30px;
    margin-right: 30px;*/
}
 
#dialog-box-yes-no .dialog-content, #dialog-box-ok .dialog-content {
    /* style the content */
    text-align:left;
    padding:10px;
    margin:13px;
    color:#666;
}

#dialog-box-splash1-screen .dialog-content, #dialog-box-splash2-screen .dialog-content {
    /* style the content */
    text-align:left;
    padding:10px 2px 10px 2px;

    margin:13px;
    color:#666;
}
 
a.button {
    /* styles for button */
    margin:10px 4px 0 4px;
    text-align:center;
    display: block;
    width:50px;
    padding: 5px 10px 6px;
    color: #000000;/*#fff;*/
    text-decoration: none;    
    line-height: 1;
     
    /* button color */
    background-color: #A8C9E3;/*#e33100;*/
     
    /* css3 implementation :) */
    /* rounded corner */
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
     
    /* drop shadow */
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
     
    /* text shaow */
    text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(0,0,0,0.25);
    position: relative;
    cursor: pointer;     
}
 
a.button:hover {
    background-color: #0072C6; 
}
 
/* extra styling */
#dialog-box-yes-no .dialog-content p, #dialog-box-ok .dialog-content p {
    font-weight:700; margin:0;
}
 
#dialog-box-yes-no .dialog-content ul, #dialog-box-ok .dialog-content ul {
    margin:10px 0 10px 20px;
    padding:0;
    height:50px;
}
