/* infieldLabel styles */
.formrow {
	display: block;
	position: relative;
}

.formrow label {
	bottom: 0;
	color: #777;
	display: block;
	left: 0;
	line-height: 39px;
	margin: 0;
	right: 0;
	top: 0;
}

.js .formrow label {
	cursor: text;
	font-size: 14px;
	padding: 0 10px;
	position: absolute;
	white-space: nowrap;
}

.placeholder-focus label {
	background-color: rgba(0, 0, 0, 0.85);
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	   -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	        box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	bottom: auto;
	color: #fff;
	line-height: 32px;
	right: auto;
	top: -40px;
}

.no-rgba .placeholder-focus label {
	background-color: #111;
}

.placeholder-focus label:after {
	border-top: 5px solid rgba(0, 0, 0, 0.8);
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	bottom: -5px;
	content: '';
	display: block;
	height: 0;
	left: 10px;
	position: absolute;
}

.no-rgba .placeholder-focus label:after {
	border-top-color: #111;
}

.formrow-image.placeholder-focus label {
	top: -122px;
}

.placeholder-hide label {
	bottom: auto;
	left: -9999px;
	right: auto;
	top: -9999px;
}