/*
  Styles for messages
  From https://design.amazon.com/patterns/node/24
    only modification is to replace '../sprites/' with '/images/' in image urls
*/

/* begin alert,message,error styles */

.msg {
	font-size: 12px;
	border: solid 1px #0071B5;
	position: relative;
	background-color: #ffffdd;
	padding: 8px 50px 8px 0px;
	margin: 10px 0px;
}
.msg span {
	left: 10px;
	top: 10px;
	width: 25px;
	height: 25px;
	display: block;
	position: absolute;
	background-image: url(//d36cz9buwru1tt.cloudfront.net/error-sprite.gif);
	background-repeat: no-repeat;
}
.msg h6 {
	font-size: 13px;
	font-weight: bold;
	margin: 0px 0px 4px 45px;
	padding: 0px;
}
.msg p { margin: 0px 0px 6px 45px; width: 100% }
.msg ul { margin: 0px 0px 6px 15px; padding: 0px; }
.msg li {
	margin: 0px 0px 2px 45px;
	/* also undo screen_1 styles */
	padding-left: 0;
	list-style-type: disc;
	background: none;
}
.msg a:visited {
	color: #004B91;
}
.msgMini {
	font-size: 11px;
	line-height: 140%;
	border: solid 1px #DDDAC0;
	position: relative;
	background-color: #ffffdd;
	padding: 5px 35px 5px 0px;
	margin: 10px 0px;
}
.msgMini span {
	left: 6px;
	top: 7px;
	width: 17px;
	height: 17px;
	display: block;
	position: absolute;
	background-image: url(//d36cz9buwru1tt.cloudfront.net/error-sprite-mini.gif);
	background-repeat: no-repeat;
}
.msgMini h6 {
	font-size: 11px;
	font-weight: bold;
	margin: 0px 0px 3px 30px;
	padding: 0px;
}
.msgMini p { margin: 0px 0px 4px 30px; width: 100% }
.msgMini ul { margin: 0px 0px 4px 15px; padding: 0px; }
.msgMini li { margin: 0px 0px 2px 30px; }
.msgSuccess { border-color: #447F00; color: #006633; }
.msgSuccess span { background-position: 0px -25px; }
.msgMiniSuccess { color: #006633; }
.msgMiniSuccess span { background-position: 0px -17px; }
.msgWarning { border-color: #E47911; }
.msgWarning span { background-position: 0px -50px; }
.msgMiniWarning span { background-position: 0px -34px; }
.msgError { border-color: #A31919; color: #A31919; }
.msgError span { background-position: 0px -75px; }
.msgMiniError { color: #A31919; }
.msgMiniError span { background-position: 0px -51px; }

/* End alert,message,error styles */
