/*!
 * jQuery confirmOn Plugin 0.1.0
 * https://github.com/invetek/jquery-confirmon
 *
 * Copyright 2013 Loran Kloeze - Invetek
 * Released under the MIT license
 */

body {
    font-family: verdana;
    padding: 0;       
    font-size: 11px;
}

hr {
    border-top: solid 1px black;
    border-bottom: none;
    margin: 10px 0 25px 0;
}

.contentwrapper {
    margin: 150px 0 0 200px;
    width: 800px;
}

table {
    border-collapse: collapse;
}

tr:first-child td {
   border-top: solid 1px #CCC; 
}

td {
    padding: 10px;
    border-bottom: solid 1px #CCC;
}

td:first-child {
    font-weight: bold;
    text-align: left;
    width: 200px;
    padding: 10px;
}

#div_1, #div_2 {
    width: 150px;
    padding: 8px 5px 5px 5px;
    min-height: 40px;
    color: #ddd;
    background-color: #0099cc;
    text-align: center;
}

.myprefix-overlay {
        background-color: black;
        background-color: rgba(125, 0, 0, 0.60);        
        width: 100%;
        height: 100%;
        margin: 0;
        top: 0;
        left: 0;
        position: fixed;
        z-index: 150;
        display: none;
        
}

.myprefix-box {
        background-color: #99ddcc;
        color: #222;
        border: solid 1px #666666;  
        box-shadow: 0px 1px 10px #222;
        padding: 20px 10px 35px 10px;
        text-align: center;
        font-weight: bold;
        font-size: 15px;
        z-index: 151;
        display: none;
        position: absolute;
        margin-left: -15%;
        width: 30%;
        left: 50%;
        top: 185px;
        
}

.myprefix-box button {
        margin: 10px 5px;
        padding: 5px 10px;
        text-align: center;
        background-color: #99ddcc;
        border: 1px solid #222;
        border-radius: 7px;
        color: #222;
        font-weight: bold;
}

.myprefix-box button:hover {
        background-color: #00bbee;
        cursor: pointer;
}