.notification-message{
		background-size: 40px 40px;
		background-image: linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
							transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
							transparent 75%, transparent);
		 box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
		 width: 100%;
		 border: 1px solid;
		 color: #fff;
		 padding: 15px;
		 position: fixed;
		 _position: absolute;
		 text-shadow: 0 1px 0 rgba(0,0,0,.5);
		 z-index: 999;
		 top:-70px;
		 animation: animate-bg 5s linear infinite;
}

.notification-message.info {
		 background-color: #4ea5cd;
		 border-color: #3b8eb5;
}

.notification-message.error {
		 background-color: #de4343;
		 border-color: #c43d3d;
}

.notification-message.warning {
		 background-color: #eaaf51;
		 border-color: #d99a36;
}

.notification-message.success {
		 background-color: #61b832;
		 border-color: #55a12c;
}

.notification-message h3 {
		 margin: 0 0 5px 0;
}

.notification-message p {
		 margin: 0;
}

@keyframes animate-bg {
    from {
        background-position: 0 0;
    }
    to {
       background-position: -80px 0;
    }
}
