/* notification styles */
.notification
{
	position:relative;
	margin:0px;
	padding:0px;
	border:1px solid;
	background-position:10px 11px;
	background-repeat:no-repeat;
	font-size:12px;
	width:99%;

	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
}

.attention
{
	background:#fffbcc url(../images/icons/exclamation.png) 10px 11px no-repeat;
	border-color:#e6db55;
	color:#666452;
}
.information
{
	background:#dbe3ff url(../images/icons/information.png) 10px 11px no-repeat;
	border-color:#a2b4ee;
	color:#585b66;
}
.success
{
	background:#d5ffce url(../images/icons/tick_circle.png) 10px 11px no-repeat;
	border-color:#9adf8f;
	color:#556652;
}
.success_small
{
	background-color:#d5ffce;
	border-color:#9adf8f;
	color:#556652;
	padding:2px;
}
.error
{
	background:#ffcece url(../images/icons/cross_circle.png) 10px 11px no-repeat;
	border-color:#eb008b;
	color:#665252;
}
.warning
{
	background-color:#ffcece;
	border-color:#df8f8f;
	color:#665252;
	padding:2px;
}

.notification_inside
{
	display:block;
	font-style:normal;
	padding:10px 10px 10px 36px;
	line-height:1.5em;
}
.notification_close
{
	background:url(../images/icons/cross_gray_small.png);
	background-position:top center;
	background-repeat:no-repeat;
	color:#990000;
	font-size:9px;
	position:absolute;
	right:5px;
	top:5px;
	display:inline-block;
	width:7px;
	height:7px;
	text-decoration:none;
}
