/*
    Document   : style
    Created on : Aug 29, 2012, 3:59:32 PM
    Author     : Nick
    Description:
        Purpose of the stylesheet follows.
*/


div#show {
    width:280px;
    height:320px;
    padding:20px;
    left:50%;
    margin-left: 0px;
    top:50%;
    margin-top: 0px;
    background:#7C3307;
    border-radius:6px;
}

input[type="checkbox"] {
    display:none;
}

input[type="checkbox"] + label {
    color:#FFFFCC;
    font-family:Arial, sans-serif;
    font-size:14px;
}

input[type="checkbox"] + label span {
    display:inline-block;
    width:19px;
    height:19px;
    margin:-1px 4px 0 0;
    vertical-align:middle;
    background:url(check_radio_sheet.png) left top no-repeat;
    cursor:pointer;
}

input[type="checkbox"]:checked + label span {
    background:url(check_radio_sheet.png) -19px top no-repeat;
}
