/*
 * 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 {
    letter-spacing: -1px;
    position: absolute;
    /* top: 250px; */
	top: 20%;
    left: 35%;
    width: 30%;
    color: #fff;
    background-color:#000;
    text-align: center;
    display: none;
    opacity: 0;
    z-index: 100000;
	padding:3px 0;
	font-size:1.2em;
	border-radius:5px;
}

.jquery-message .round {
    font-size: 1px;
    height: 2px;
}

.jquery-message p {
    padding: .3em;
    display: inline;
}

.jquery-message a {
    display: none;
}