/*
   alerts.css - v0.1
   MKM UI Framework
   
   Created by Dave Waller on 2011-11-23.
   Copyright 2012 MyKnowledgeMap Ltd. All rights reserved.
*/

.message {
	background: #ceedff url("../images/message-info.png") no-repeat 15px 15px;
	border: 2px solid #179bf4;
	margin: 10px 0;
	padding: 15px 10px 10px 60px;
}
.message-info p,
.message-success p,
.message-warning p,
.message-error p {
	font-size: 12px;
	margin: 10px 0 0 0;
}
.message-info h3,
.message-success h3,
.message-warning h3,
.message-error h3 {
	color: #fff;
	font-size: 20px;
	margin: 0 0 10px 0;
}
.message-success,
p.message-small-success {
	background-color: #e1ffce;
	background-image: url("../images/message-success.png");
	border-color: #62bb11;
}
.message-warning,
p.message-small-warning {
	background-color: #fff7b9;
	background-image: url("../images/message-warning.png");
	border-color: #e19300;
}
.message-error,
p.message-small-error {
	background-color: #ffddce;
	background-image: url("../images/message-error.png");
	border-color: #ef5934;
}
.message-info h3 {
	color: #005bca;
}
.message-success h3 {
	color: #4a9d00;
}
.message-warning h3 {
	color: #c46700;
}
.message-error h3 {
	color: #ca0000;	
}
p.message-small-info,
p.message-small-success,
p.message-small-warning,
p.message-small-error {
	background-position: 5px 5px;
	line-height: 20px;
	margin: 10px 0;
	padding: 3px 25px 3px 25px;
}
p.message-small-info { 
	background-image: url("../images/message-small-info.png");
}
p.message-small-warning { 
	background-image: url("../images/message-small-warning.png");
}
p.message-small-error { 
	background-image: url("../images/message-small-error.png");
}
p.message-small-success { 
	background-image: url("../images/message-small-success.png");
}
span.notification {
	display:inline-block;
	font-weight: bold;
	color:white;
	font-size:11px;
	line-height:11px;
				
	background: #e5575a; /* Old browsers */
	background: -moz-linear-gradient(top,  #e5575a 1%, #d40c0c 97%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#e5575a), color-stop(97%,#d40c0c)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #e5575a 1%,#d40c0c 97%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #e5575a 1%,#d40c0c 97%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #e5575a 1%,#d40c0c 97%); /* IE10+ */
	background: linear-gradient(top,  #e5575a 1%,#d40c0c 97%); /* W3C */
				
	border:solid 2px #FFFFFF;
	border-radius: 20px;
				
	padding:1px 4px 2px 3px;
				
	-webkit-text-shadow:none;
	-moz-text-shadow:none;
	text-shadow:none;
	box-shadow: 0px 1px 2px #333, inset 0px 1px 0px #666;
				
	position:relative;
	top:-8px; left:-5px;
}