/* CSS Forms */

/* New Customer Account Form */

#newcustform	{
					border:1px solid #cccccc;
					margin-top:10px;
					width:550px;
			}

#newcustform label	{
						display: block;  /* block float the labels to left column, set a width */
						float: left; 
						width: 120px;
						margin: 0px 10px 0px 5px; 
						text-align: right; 
						line-height:1em;
						font-weight:bold;
					}
#newcustform input	{
						width:200px;
					}
#newcustform p	{
					clear: both;
				}
				
#newcustform submit	{
						border:1px solid #cccccc;
						width:60px;
						margin:10px;
					}
				
#passwordStrength
{
	height:10px;
	display:block;
	float:left;
}

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

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

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

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

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

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

/* Forgot password form */

#resetpasswd	{
					border:1px solid #cccccc;
					margin-top:10px;
					width:400px;
				}
#resetpasswd label	{
						display: block;  /* block float the labels to left column, set a width */
						float: left; 
						width: 100px;
						margin: 0px 10px 0px 5px; 
						text-align: right; 
						line-height:1em;
						font-weight:bold;
					}
#resetpasswd input	{
						width:150px;
					}
#resetpasswd p	{
					clear: both;
				}
				
#resetpasswd submit	{
						border:1px solid #cccccc;
						width:60px;
						margin:10px;
					}
					
/* Login page login form */

#loginform	{
					border:1px solid #cccccc;
					margin-top:10px;
					width:350px;
			}
#loginform label	{
						display: block;  /* block float the labels to left column, set a width */
						float: left; 
						width: 70px;
						margin: 0px 10px 0px 5px; 
						text-align: right; 
						line-height:1em;
						font-weight:bold;
					}
#loginform input	{
						width:150px;
						padding-left: 5px;
					}
#loginform p	{
					clear: both;
				}
				
#loginform submit	{
						border:1px solid #cccccc;
						width:60px;
						margin:10px;
					}


/* Login form in home page */
#smallLogin
