.notification.success {
	background: url("../img/icons/16/success.png") no-repeat scroll 10px
		10px #F1FFBF;
	border-color: #A6D50F;
	font-size: 18px;
}

.notification.success span.strong {
	color: #283304;
}
.notification.png_bg.success {
-webkit-animation-name: animGenie;
	animation-name: animGenie;
	-webkit-animation-duration: 0.4s;
	animation-duration: 0.4s;
}
@-webkit-keyframes animGenie {
	0% { opacity:0; -webkit-transform: translate3d(0,calc(200% + 30px),0) scale3d(0,1,1); -webkit-animation-timing-function: ease-in; }
	40% { opacity:0.5; -webkit-transform: translate3d(0,0,0) scale3d(0.02,1.1,1); -webkit-animation-timing-function: ease-out; }
	70% { opacity:0.6; -webkit-transform: translate3d(0,-40px,0) scale3d(0.8,1.1,1); }
	100% { opacity:1; -webkit-transform: translate3d(0,0,0) scale3d(1,1,1); }
}

@keyframes animGenie {
	0% { opacity:0; -webkit-transform: translate3d(0,calc(200% + 30px),0) scale3d(0,1,1); -webkit-animation-timing-function: ease-in; transform: translate3d(0,calc(200% + 30px),0) scale3d(0,1,1); animation-timing-function: ease-in; }
	40% { opacity:0.5; -webkit-transform: translate3d(0,0,0) scale3d(0.02,1.1,1); -webkit-animation-timing-function: ease-out; transform: translate3d(0,0,0) scale3d(0.02,1.1,1); animation-timing-function: ease-out; }
	70% { opacity:0.6; -webkit-transform: translate3d(0,-40px,0) scale3d(0.8,1.1,1); transform: translate3d(0,-40px,0) scale3d(0.8,1.1,1); }
	100% { opacity:1; -webkit-transform: translate3d(0,0,0) scale3d(1,1,1); transform: translate3d(0,0,0) scale3d(1,1,1); }
}
.notification.error {
	background: url("../img/icons/16/error.png") no-repeat scroll 10px 10px
		#FECDC6;
	border-color: #F45D43;
	font-size: 18px;
}

.notification.error span.strong {
	color: #33130E;
}

.notification.warning {
	background: url("../img/icons/16/warning.png") no-repeat scroll 10px
		10px #FFECB0;
	border-color: #FFBC2A;
}

.notification.warning span.strong {
	color: #332508;
}

.notification.info {
	background: url("../img/icons/16/information.png") no-repeat scroll 10px
		10px #D4E7F5;
	border-color: #589AD7;
}

.notification.info span.strong {
	color: #152433;
}

.notification.tip {
	background: url("../img/icons/16/tip.png") no-repeat scroll 10px 10px
		#FFECCD;
	border-color: #DD9854;
}

.notification.tip span.strong {
	color: #332313;
}

.notification {
	border: 1px solid #FFFFFF;
	/* border-radius: 3px 3px 3px 3px; */
	margin: 0;
	padding: 10px 35px;
	position: fixed;
	line-height: 16px;
	top: 0px;
	left: 0;
	width: 90%;
	z-index: 1000;
}

.notification.no-margin {
	border-left: 1px solid #CCCCCC;
	border-radius: 0 0 0 0;
	border-right: 1px solid #CCCCCC;
	margin: 0;
}

.notification .close {
	background: url("../img/icons/16/close.png") no-repeat scroll 0 0
		transparent;
	cursor: pointer;
	display: block;
	height: 16px;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 16px;
}

.notification .close:hover {
	opacity: 1;
}

.notification.nopic {
	background-image: none;
	padding: 10px;
}

.notification span.strong {
	margin-right: 10px;
}

.errors p {
	background: url("../img/icons/16/error.png") no-repeat 10px center
		#FECDC6;
	color: #33130E;
	border: 1px solid #F45D43;
	border-radius: 3px 3px 3px 3px;
	margin-bottom: 20px;
	padding: 5px 10px 5px 35px;
	height: 16px;
	line-height: 16px;
	margin: 2px;
}

.errors p span,.notification.error span {
	font-style: italic;
	color: #F45D43;
}