@charset "utf-8";
/* CSS Document */

.strength_meter{
		background: none repeat scroll 0 0 silver;
    border-radius: 0 0 2px 2px;
    height: 17px;
    margin-top: -1px;
    width: 100%;
}
.strength_meter div{
		color: #393939;
    font-size: 10px;
    font-weight: bold;
    height: 17px;
    line-height: 16px;
    text-align: center;
    width: 100%;
}
.veryweak{
	  background-color: #ff3535;
	  border-radius: 0 0 2px 2px;
    height: 17px;
    margin-top: -1px;
 		width: 23% !important;
}
.weak{
		background-color: #FFB78C;
    border-radius: 0 0 2px 2px;
    height: 17px;
    margin-top: -1px;
    width: 35% !important;
}
.medium{
		background-color: #FFEC8B;
    border-radius: 0 0 2px 2px;
    height: 17px;
    margin-top: -1px;
    width: 60% !important;
}
.strong{
		background-color: #C3FF88;
    border-radius: 0 0 2px 2px;
    height: 17px;
    margin-top: -1px;
    width: 100% !important;
}
.button_strength{
  display: none;
}

0
