/**
 *
 * @copyright PasswordStrength (c) 2013 João Parreira <joaofrparreira@gmail.com>
 *
 * Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License
 *  
 * This work is licensed under the Creative Commons 
 * Attribution-NonCommercial-ShareAlike 3.0 Unported License. 
 * To view a copy of this license, visit 
 * http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to 
 * Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 
 * 94041, USA.
 * ---------------------------------------------------- 
 *
 * Date: 9/Jan/2013
 * File: passStrengthMeasure.jQuery.js 
 * Encoding: UTF-8
 *
 * @author: João Parreira <joaofrparreira@gmail.com>
 * @package Project: passwordStrength.jquery 
 * @version 0.1.3
 *
 **/

#passwordStrength {
        width:113px;
        height:25px;
        background-color: white;
        display: inline-block;
	position: relative;
	top: -2px;
	vertical-align: middle;
}

 #passwordStrength #progressbar {
        height:25px;
        display:block;
        overflow:hidden;
        border:1px solid #ccc;
        border-radius: 3px;
    }

#passwordStrength #progress {
        display:block;
        height:25px;
        width:0%;
        z-index: 100;
    }

#passwordStrength #percentage {
        display:block;
        width:100%;
        text-align:center;
        z-index: 1000;
        height: 25px;
        font-weight: bold;
        position:absolute;
	line-height: 111%;
        top:4px;
        left:0;
    }
#passwordStrength #time {
	display: none;
}