/* jQuery Notifications plugin - http://programmingmind.com */
/* notification container */
#jquery-notifications {
  position: fixed;
  left: 0px;
  top: 0px;
  width:100%;
  height:100%;
  text-align:center;
  margin-top: 50px;
  z-index: 9998;
}
#jquery-notifications p {
	border: #feaa00 1px dotted;
	border-left: #feaa00 5px solid;
	padding:15px;
	background-color:#fff7e8;
	color: #000;
	margin: 20px 0px 20px 0px;
	font-weight: bold;
	font-size: 12px;
	text-shadow: 0 1px #fff;
	/* filter:DropShadow(color=#ffffff, offx=0, offy=1); */
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow:0 0 5px #CCC;
	-moz-box-shadow:0 0 5px #CCC;
	-webkit-box-shadow:0 0 5px #CCC
}
#jquery-notifications p a {
  position: absolute;
  right: 10px;
  margin-right: 10px;
  color: black;
  text-decoration: none;
  padding-right: 5px;
  padding-left: 5px;
}
#jquery-notifications .notice {
  color: #000
}
#jquery-notifications .success {
  color: #045419
}
#jquery-notifications .warning {
  color: #753903
}
#jquery-notifications .error {
  color: #570f01
}