#password-meter {
	width: 96%;
	height: 20px;
	background: #fff;
	float: right !important;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #999;
}

#password-meter-progress {
	height: 100%;
	width: 0%;
	transition: width 400ms linear;
}

#password-meter-progress.low {
	background: #c00;
	border-radius: 3px;
}

#password-meter-progress.medium {
	background: #f50;
	border-radius: 3px;
}

#password-meter-progress.high {
	background: #080;
	border-radius: 3px;
}