/*
 * SimpleModal Basic Modal Dialog
 * http://simplemodal.com
 *
 * Copyright (c) 2013 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 */

#basic-modal-content {
    display: none;
}

/* Overlay */
#simplemodal-overlay {
    background-color: #CCC;
}

/* Container */
#simplemodal-container {
    color: #444;
    /*background-color: #333;*/
    /*border: 4px solid #444;*/
    padding: 12px;
    /*border-radius:10px;*/
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    /*border-radius: 4px;*/
    margin: 0 auto 2%;
    background-color: #ffffff;
    padding: 0 0 0 0;
    -moz-box-shadow: 2px 5px 20px rgba(0,0,0,.2);
    -webkit-box-shadow: 2px 5px 20px rgba(0,0,0,.2);
    box-shadow: 2px 5px 20px rgba(0,0,0,.2);
    min-width: 30%;
    /*max-width: 35%;*/
    min-height: 20%;
}

.simplemodal-header {
    background-color: aqua;
}

#simplemodal-container .simplemodal-data {
    /*padding: 8px;*/
    padding-left: 2%;
    font-weight: 700;
    margin-top: 25px;
    font-size: 17px;
}

.simplemodal-data {
    text-align: center;
    vertical-align: middle;
}

#simplemodal-container code {
    background: #141414;
    border-left: 3px solid #65B43D;
    color: #bbb;
    display: block;
    font-size: 12px;
    margin-bottom: 12px;
    padding: 4px 6px 6px;
}

#simplemodal-container a {
    color: blue;
}

    #simplemodal-container a.modalCloseImg {
        background: url(close15.png) no-repeat;
        width: 25px;
        height: 29px;
        display: inline;
        z-index: 3200;
        position: absolute;
        top: 0;
        right: -16px;
        cursor: pointer;
    }

#simplemodal-container h3 {
    color: #84b8d9;
}

#simplemodal-container a.modalCloseImg {
    right: 0;
    width: 23px;
    height: 22px;
    margin-top: 2px;
    margin-right: 3px;
}

}

#simplemodal-container a.modalCloseImg:hover {
    right: 0;
    width: 25px;
    height: 20px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#33FF0000, endColorstr=#33FF0000); /* For IE 5.5 - 7*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#33FF0000, endColorstr=#33FF0000)"; /* For IE 8*/
    background: rgba(14, 14, 14, 0.2); /* Modern browser */
}

#table-container {
    position: relative;
    width: auto;
    height: auto;
    max-height:300px;
    overflow: auto;
    background-color: #FFF;
    border: 1px solid silver;
    padding: 0 10px 0 0;
}
