/*
*  Notify Bar - jQuery plugin
*
*  Copyright (c) 2009-2013 Dmitri Smirnov
*
*  Licensed under the MIT license:
*  http://www.opensource.org/licenses/mit-license.php
*  
*  Version: 1.4
*
*  Project home:
*  http://www.whoop.ee/posts/2013-04-05-the-resurrection-of-jquery-notify-bar/
*/

/* Default bars' style */

.jquery-notify-bar {
	width: 100%;
	position: fixed;
	top:0;
	left:0;
	padding-top: 1.3rem;
	padding-bottom: 1.3rem;
	height: auto;
	z-index: 100000;
	background-color: #d95b5b;
	font-size: 18px;
	color: #fff;
	text-align: center;
	cursor: pointer;
	border-bottom: 1px solid #eee;
}

.jquery-notify-bar.bottom {
	bottom: 0;
	top: auto;
	border-top: 1px solid #ddd;
	border-bottom: 0;
	-webkit-box-shadow: inset 0 1px 0 0 #fff;
	-moz-box-shadow: inset 0 1px 0 0 #fff;
	box-shadow: inset 0 1px 0 0 #fff;
}

.jquery-notify-bar .button {
	background: #fff;
	border: #fff;
	color: #D95B5B;
	margin-top: 1rem;
}

/* Style for close button */
.notify-bar-close {
	color: #ffffff;
	float: right; 
	margin-right: 20px;
}

