@charset "utf-8";

.validationmsg
{
	position: absolute;
	background: #981d1d;
	height: 20px;
	line-height: 20px;
	font-size: 12px;
	color: #fff;
	padding: 0 15px 0 5px;
	border-radius: 0 3px 3px 0;
	box-shadow: 2px 2px 2px rgba(0,0,0,.2);
	z-index: 200;
}
.validationmsg:before
{
	display: block;
	position: absolute;
	height: 0;
	width: 0;
	content: ' ';
	border: 10px solid transparent;
	border-right-color: #cd5555;
	border-right-color: #981d1d;
	top: 0;
	left: -20px;
}
.validationmsgleft
{
	position: absolute;
	background: #981d1d;
	height: 20px;
	line-height: 20px;
	font-size: 12px;
	color: #fff;
	padding: 0 10px;
	border-radius: 3px 0 0 3px;
	box-shadow: 2px 2px 2px rgba(0,0,0,.2);
	z-index: 200;
}
.validationmsgleft:before
{
	display: block;
	position: absolute;
	height: 0;
	width: 0;
	content: ' ';
	border: 10px solid transparent;
	border-left-color: #981d1d;
	top: 0;
	right: -20px;
}