/*
 * Original code is  from http://www.codeassembly.com/How-to-make-a-password-strength-meter-for-your-register-form/
 * and modified a bit
 */

#passwordDescription {
	font-size: 12px;
}
#passwordChangeDescription {
	font-size: 11px;
}
#passwordChangeDescription p {
	display: list-item;
    list-style-position: inside;
    margin: 0px;
}
#passwordSignupDescription {
	font-size: 12px;
}
#passwordSignupDescription p {
	display: list-item;
    list-style-position: inside;
    margin: 0px;
}
#passwordDescription p {
	display: list-item;
    list-style-position: inside;
    margin: 0px;
}

#passwordStrength
{
	height:5px;
	display:block;
	float:left;
}

.strength0
{
        width:250px;
        background:#cccccc;
}

.strength1
{
        width:50px;
        background:#ff0000;
}

.strength2
{
        width:100px;    
        background:#ff5f5f;
}

.strength3
{
        width:150px;
        background:#56e500;
}

.strength4
{
        background:#4dcd00;
        width:200px;
}

.strength5
{
        background:#399800;
        width:250px;
}