/*
 * 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-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
    position:fixed !important; position:absolute;
    /* top: 250px; */
	top: 50%;
    left: 50%;
	margin-left: -122px;
	margin-top: -25px;
    width: 245px;
    color: #fff;
/*    background-color:#000000;
	background-color: rgba(112, 0, 0, 1);
*/
	background: #45484d; /* old browsers */
	background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* ie */

	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border-color: rgba(255, 255, 255, 0.2);
	border-width:1px;
	border-style:solid;	
	-webkit-box-shadow: 0px 0px 20px #000000; -moz-box-shadow: -10px 10px 20px #000000; box-shadow: 0px 0px 20px #000000;
	text-shadow: 2px 2px 5px #000000; filter: dropshadow(color=#000000, offx=1, offy=1);
    text-align: center;
    display: none;
    opacity: 0;
    z-index: 100;
	padding-bottom:20px;
	padding-top:20px;
	padding-left:10px;
	padding-right:10px;	
}

.opera .jquery-message { background:none; background-image:url(../graphics/interface/message.png); background-repeat:repeat-x; background-position:center; }
.ie .jquery-message { background:none; background-image:url(../graphics/interface/message.png); background-repeat:repeat-x; background-position:center; border:none; }

.jquery-message .round {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;	
/*
	border-left: solid 2px #6a6a6a;
    border-right: solid 2px #6a6a6a;
    font-size: 1px;
    height: 2px;
*/
}

.jquery-message p {
    padding: .3em;
    display: inline;
}

.jquery-message a {
    display: none;
}