div.jnotify-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100000;
}

div.jnotify-container div.jnotify-notification {
	position: relative;
}

div.jnotify-container div.jnotify-dismissible {
	cursor: pointer;
}

div.jnotify-container div.jnotify-notification div.jnotify-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #e3f0db;
	filter: alpha(opacity=95);
	-moz-opacity: 0.95;
	opacity: 0.95;
	z-index: 1;
}

div.jnotify-container div.jnotify-notification a.jnotify-close,
div.jnotify-container div.jnotify-notification a.jnotify-close:link,
div.jnotify-container div.jnotify-notification a.jnotify-close:visited,
div.jnotify-container div.jnotify-notification a.jnotify-close:focus,
div.jnotify-container div.jnotify-notification a.jnotify-close:hover {
	position: absolute;
	top: 2px;
	right: 5px;
	padding: 0 5px;
	font: bold 1.4em Verdana,Arial,Helvetica,sans-serif;
	line-height: 1em;
	color: #567b1b;
	text-decoration: none;
	z-index: 3;
	cursor: pointer;
}

div.jnotify-container div.jnotify-notification div.jnotify-message {
	position: relative;
	z-index: 2;
	padding: 20px;
	text-align: center;
	color: #567b1b;
	font: bold 1.4em Verdana,Arial,Helvetica,sans-serif;
	line-height: 1.2em;
}

div.jnotify-container div.jnotify-notification div.jnotify-message * {
	font: inherit;
	font-size: 1em;
}

/* notification type == "error" */
div.jnotify-container div.jnotify-notification-error div.jnotify-background {
	background-color: #e4abb9;
}

div.jnotify-container div.jnotify-notification-error a.jnotify-close,
div.jnotify-container div.jnotify-notification-error div.jnotify-message {
	color: #a72947 !important;
}

/* notification type == "warning" */
div.jnotify-container div.jnotify-notification-warning div.jnotify-background {
	background-color: #fff7d1;
}

div.jnotify-container div.jnotify-notification-warning a.jnotify-close,
div.jnotify-container div.jnotify-notification-warning div.jnotify-message {
	color: #c2a928 !important;
}
