﻿div.popupwin
{
    position: fixed;
    height: 100%;
    width: 100%;
    display: none;
}
div.popupwin > a.overlay
{
    opacity: 0.8;
    filter: alpha(opacity=80);
    background-color: #000;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: block;
    cursor: default;
    text-decoration: none;
    z-index: 99999;
}
div.popupwin > div.content
{
    position: fixed;
    margin: auto;
    background-color: #333;
    width: 100%!important;
    top: 50%;
    left: 0;
    margin-top: -200px;
    margin-left: 0!important;
    z-index: 100000;
}
div.popupwin > div.content > h1
{
    background-color: #000;
    color: #FFF;
    font-size: 18px;
    font-weight: normal;
    padding: 10px 15px;
    text-transform: uppercase;
    display: block;
    margin: 0;
}
div.popupwin > div.content > div.main
{
    padding-top: 10px;
    overflow-y: auto;
    min-height: 100px;
    padding-bottom: 10px;
}
div.popupwin > div.content > div.main > ul
{
    background-color: #333;
    color: #FFF;
    font-weight: bold;
    padding: 0;
}
div.popupwin > div.content > div.main > ul > li
{
    list-style: none;
    border-bottom: 1px #FFF solid;
    padding: 5px 15px;
}
div.popupwin > div.content > div.footer
{
    background-color: #000;
    width: 100%;
    height: 69px;
    text-align: right;
    padding: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}