.tmodal.overlay
{
    display:none;
    position:fixed;
    left:0px;
    top:0px;
    width:100%;
    height:100%;
    background:black;
    z-index:99999999;
}

.tmodal
{
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index:999999999;
    left:0px;
    top:0px;
}
.tmodal .middle
{
    display: table-cell;
    vertical-align: middle;
}
.tmodal .inner
{
    border:1px solid #777;
    background:white;
    margin-left: auto;
    margin-right: auto;
    width:100%;
    height:100%;
    overflow-y:auto;
    -webkit-box-shadow: 0px 0px 46px -4px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 46px -4px rgba(0,0,0,1);
    box-shadow: 0px 0px 46px -4px rgba(0,0,0,1);
    position:relative;
}

.tmodal .header
{
    background:#ddd;
    padding:10px;
    position:relative;
    font-weight:bold;
    color:black;
}
.tmodal .header a.close
{
    width:16px;
    height:16px;
    display:inline-block;
    background-image:url("close-16.png");
    background-repeat:no-repeat;
    position:absolute;
    right:6px;
    top:10px;
    cursor:pointer;
}
.tmodal .content
{
    padding:10px;
    min-height:auto;
}

.tmodal .buttons
{
}