/*
 * jQuery message plug-in 1.0
 *
 * http://bassistance.de/jquery-plugins/jquery-plugin-message/
 *
 * Copyright (c) 2009 Jörn Zaefferer
 *
 * $Id$
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
.jquery-message {
    font: normal 20px / 50px Helvetica, Arial, Sans-Serif;
    letter-spacing: -1px;
    position: absolute;
    /* top: 250px; */
	bottom: 50px;
    left: 25%;
    width: 50%;
    color: black;
    text-align: center;
    display: none;
    opacity: 0;
    z-index: 100000;
    border: 1px solid green; 
    background-color: #E0F8E1;
}

.jquery-message .round {
}

.jquery-message p {
    padding: 5px 25px;
    display: inline;
    background: #E0F8E1 url(/content/images/info20.gif) no-repeat left center;
}

.jquery-message a {
    display: none;
}