.password_utility_wrapper {
	display: none;
	position: fixed;
	width: 250px;
	padding: 15px;
	background: #fefefe;
	font-size: 1em;
	border-radius: 5px;
	box-shadow: 0 1px 3px #ccc;
	border: 1px solid #BBB;
	z-index: 99999;
}

.password_utility_wrapper h4 {
	margin: 0 0 10px 0;
	padding: 0;
	font-weight: normal;
}

.password_utility_wrapper::before {
	content: "\25B2";
	position: absolute;
	top: -12px;
	left: 10%;
	font-size: 1em;
	line-height: 14px;
	color: #ddd;
	text-shadow: none;
	display: block;
}

.password_utility_wrapper li {
	font-size: 1em;
}

.password_utility_wrapper li.invalid {
	background: url(./images/invalid.png) no-repeat 0 50%;
	padding-left: 22px;
	line-height: 24px;
	color: #ec3f41;
}

.password_utility_wrapper li.valid {
	background: url(./images/valid.png) no-repeat 0 50%;
	padding-left: 22px;
	line-height: 24px;
	color: #3a7d34;
}