/*
*  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-outer
*/

.jquery-notify-outer {
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:32768;
/*  background-color:#efefef; */
  background-color: transparent;
  font-size:18px;
  color:#000;
  text-align:center;
  font-family: Arial, Verdana, sans-serif;
  padding:0px 0px 20px 0px;
/*  border-bottom:1px solid #bbb;*/
}
.jquery-notify-outer.error {
  color:#f00;
  background-color:#fdd;
}
.jquery-notify-outer.success {
  color:#060;
/*  background-color:#BBFFB6;*/
  background-color:transparent;


}
.notify-outer-close {
  position:absolute;
/*  left:95%;*/
  left:70%;
  font-size:11px;
  background-color: transparent;
}

#notifycontainer {
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:32767;
  background-color: transparent;
  font-size:18px;
  color:#000;
  text-align:center;
  padding:0px 0px 20px 0px;
}

#notifycontent {
	margin-left: 20%;
	margin-right: 20%;
	background: transparent;
	width: 550px;
}

#notifyouter {
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:32767;
  background-color: transparent;
  font-size:18px;
  color:#000;
  text-align:center;
  padding:0px 0px 20px 0px;
}

#notifyinner {
/*	margin-left: 20%;
	margin-right: 20%;
	width: 550px; */
	background-color: transparent;
	position: relative;
}

#notify-mid a {
	color: #111;
	text-decoration: none;
}
