/**
 *
 * jQuery plugin: Popup 1.0
 *
 * Copyright (c) 2008 Yves Bresson
 * www.ybresson.com
 *
 * Default styles
 *
 */

#popup {
    display: none;
    position: fixed;
    width: 350px;
    background-color: rgb( 255, 227, 82 );
    z-index: 20;
    padding: 5px; /* same as rounding */
    border: 1px double black;
    color: black;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 12px;
}

#popup_bg {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000000;
    border: 1px solid #cecece;
    z-index: 10;
}

#popup_title {
    font-weight: bold;
    color: #00287B;
    font-size:150%;
}

#popup_close {
    position: absolute;
    right: 10px;
    cursor: pointer;
    margin: 0;
    top: 0;
}

#popup_message {
    padding: 8px;
    color: black; /*min-height: 120px;*/
}
