/*
*  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:100%;
  position:fixed;
  _position:absolute;
  top:0;
  left:0;
  z-index:3276800;
  background-color:#EFEFEF; /* Cinza Claro */
  font-size:18px;
  color:#000;
  text-align:center;
  font-family: Arial, Verdana, sans-serif;
  padding:20px 0px;
  border-bottom:1px solid #bbb;
}
.jquery-notify-bar.error {
	color:#f00;
	background-color:#fdd;
	border-top:1px solid red;
	border-bottom:1px solid red;
	background:url('../img/feedback-negativo.png') 50px center no-repeat #FFECEC;
}
.jquery-notify-bar.success {
	color:#060;
	background-color:#BBFFB6;
	border-top:1px solid green;
	border-bottom:1px solid green;
	background:url('../img/feedback-positivo.png') 50px center no-repeat #F2F9F1;
}
.jquery-notify-bar.carregando {
	color:#060;
	background-color:#FFFF33;
	border-top:1px solid #FFCC00;
	border-bottom:1px solid #FFCC00;
	background:url('../img/notify/ajax-loading.gif') 50px center no-repeat #FFFF99;
}
.notify-bar-close {
	position:absolute;
	left:95%;
	font-size:11px;
}