@charset "UTF-8";

.notification-container {
	width: 100%;
	max-width: 400px;
	height: auto;
	min-height: 30px;
	background-color: #333333;
	color: #ffffff;
	display: block;
	position: fixed;
	bottom: 0px;
	right: 0px;
	filter: alpha(opacity=98);
	-khtml-opacity: 0.98;
	-moz-opacity: 0.98;
	opacity: 0.98;
}

.notification-container .notification-message {
	padding: 0px 10px;
	font-family: sans-serif;
	max-width: 80%;
	float: left;
	margin: 10px 10px;
	padding: 0px;
}

.notification-container .notification-close {
	padding: 0px 10px;
	font-family: sans-serif;
	max-width: 5%;
	float: right;
}

.notification-container.notification-visible, .notification-container.notification-appearing {
	cursor: pointer;
	border-top: none;
	border-left: 5px solid #99dd99;
}

@media all and (max-width: 400px){
	.notification-container.notification-visible, .notification-container.notification-appearing {
		border-left: none;
		border-top: 5px solid #99dd99;
	}
}

.notification-container.notification-hidden, .notification-hidden { display: none; }
.notification-trigger { cursor: pointer; }