/* 
 * Ajax notification message.
 ***********************************/
#alertmessage{
	position: fixed;
	top: 0;
	left: 0;
	z-index:999999;
	cursor:pointer;
	width: 100%;
    height: 100%;
    background: rgab(255,255,255,0.95);
	display: none;
}
	#alertmessage .alert{
		text-align: center;
		margin: 25% auto;
        width: 50%;
        line-height: 5;  
        border-radius: 0;      
	}

/* 
 * Password Strength 
 ***********************************/
.password_strength_container {
	position: relative;
	width: 100%;
	height: 10px;
}
.password_strength_wrapper {
	background: #E9E9E9;
	position: relative;
	width: 100%;
	height: 4px;
}
.password_strength {
	height: 4px;
	background-color: #C81818;
	width: 0;
	position: absolute;
	left: 0;
}
.password_strength_separator {
	height: 4px;
	width: 2px;
	background: #fff;
	position: absolute;
	left: 0;
}
.password_strength_desc{
	float: right;
	margin-top: 6px;
	line-height: 16px;
	height: 16px;
	font-weight: bold;
}