﻿#overlay {
    display: none;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index:1001;
    -moz-opacity: 0.8;
    opacity:.80;
    filter: alpha(opacity=80);
}
#dialog {
    display: none;
    position: absolute;
    width: 100%;
    top: 100px;
    z-index:1002;
}
* html #dialog,
*:first-child+html #dialog {
    left: 0;
}
#dialog-inner {
    background: #fff;
    margin: 0 auto;
    position: relative;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
}
#dialog-content {
    padding: 20px;
}
#dialog-content h2 {
    text-align: left;
    border: none;
    margin-bottom: 10px;
}
#dialog-content div {
    text-align: left;
}
#dialog-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
}
#dialog-text-inner {
    padding: 20px;
    margin: 0 20px 20px;
    color: #fff;
    background: #000;
    -moz-opacity: 0.8;
    opacity:.80;
    filter: alpha(opacity=80);
}
#dialog-close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 13px;
    height: 13px;
    text-indent: -9999px;
    overflow: hidden;
    background: url(close.gif) no-repeat 2px 2px;
}
#dialog-close:hover {
    background: url(close.gif) no-repeat 2px -18px;
}
