@charset "iso-8859-1";
/* CSS Document */

.formRow{
	padding-bottom: 8px;
	position: relative;
}
.formRow label{
	display: block;
	height:28px;
	line-height: 28px;
}
.formRow input[type="text"],
.formRow input[type="password"],
.formRow select,
.formRow textarea{
	box-sizing:border-box;
	width: 100%;
	padding: 2px 15px;
	border-radius: 3px;
	border:1px solid #aaa;
	background: #fff;
	min-height: 28px;
	line-height: normal;
}
.formRow textarea{
	resize:vertical;
	font-family: inherit;
}
.alertMsgWrap{
	position: absolute;
	left:0;
	width:280px;
	margin-left: 15px;
	background:#ebebeb;
	padding: 15px;
    box-sizing: border-box;
    box-shadow: 1px 1px 5px 0 rgba(0,0,0,.4);
    border-radius: 3px;
    z-index: 50;
    border:1px solid #ccc;
}
.alertMsgWrap:before{
	content:'';
	display:block;
	height:12px;
	width:12px;
	background:#ebebeb;
	position: absolute;
	top: -7px;
    z-index: 40;
    border: 1px solid #ccc;
    left: 20px;
    border-right: none;
    border-bottom: none;
    transform: rotate(45deg);
}
.alertMsgText{
	font-size: 13px;
	font-weight: bold;
}
.notValid{
	background-color:#f2dede !important;
}