/*
*  Notify Bar - jQuery plugin
*
*  Copyright (c) 2009-2010 Dmitri Smirnov
*
*  Licensed under the MIT license:
*  http://www.opensource.org/licenses/mit-license.php
*
*  Version: 1.2
*
*  Project home:
*  http://www.dmitri.me/blog/notify-bar
*/
.jquery-notify-bar {
	width: 50%;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1010;
	background-color: #efefef;
	font-size: 13px;
	font-weight: bold;
	color: #000;
	/*text-align:center;*/
	font-family: Arial, Verdana, sans-serif;
	padding: 10px 10px 10px 60px;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

.jquery-notify-bar.error {
	color: #800;
	background: #FFE3E3 url("../images/message_error.png") no-repeat 10px 50%;
	border: 2px solid #D00;
}

.jquery-notify-bar.success {
	color: #005f00;
	background: #dfffdf url("../images/message_info.png") no-repeat 10px 50%;
	border: 2px solid #9fcf9f;
}

.jquery-notify-bar.error a {
	color: #800;
}

.jquery-notify-bar.success a {
	color: #005f00;
}

.jquery-notify-bar a.notify-bar-close {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 11px;
	color: #333333;
}