/*
**	@desc:	PHP ajax login form using jQuery
**	@author:	programmer@chazzuka.com
**	@url:		http://www.chazzuka.com/blog
**	@date:	15 August 2008
**	@license:	Free!, but i'll be glad if i my name listed in the credits'
*/
@charset "utf-8";
/* CSS Document */
	html,
	body
	{
		background:#fff;
		padding:0px;
		margin:0;
		font:normal 11px/normal arial;
		color:#000;
		text-align:center;
	}
	
	#wrapper
	{
		background:#fff;
		border:solid 1px #fff;
		margin:0 auto;
		width:150px;
		height:110px;
		text-align:left;
		padding:0px; /*para la posicion de los textbox*/
		position: absolute;
		left: 0px;
		top: 35px;
	}
	
	a
	{
		text-decoration:none;
		color:#000;
		border-bottom:dotted 1px #000;
	}
	
	a:hover
	{
		color:#000;
		border-bottom:solid 1px #000;
	}
	
	form
	{
		padding:0px; margin:0; position: absolute;
	}
	
	#msg
	{
		text-align:center; color:red; padding:0px 0 10px 0;
	}
	
	label
	{
		font-weight:bold;
		display:block;
	}
	
	.textfield
	{
		background:#fff;
		border:solid 2px #969696;
		padding:3px;
		width:90%;
	}
	
	.textfield:hover,
	.textfield:focus
	{
		background:#3391EB;
		border:solid 1px #ffffff;
		color:#fff;
	}
	
	.buttonfield
	{
		background:#c4ccfe;
		border:solid 1px #001066;
		color:#001066;
		font:bold 11px/normal Tahoma, Verdana;
		margin-top:10px;
		padding:4px;
	}
	
	.buttonfield:hover,
	.buttonfield:focus
	{
		background:#6c83fe;
		border:solid 1px #00106a;
		color:#fff;
	}
	
	#wait
	{
	position:absolute;
	top:1px;
	left:1px;
	background:#1285CC;
	padding:5px;
	font:normal 12px/normal tahoma;
	color:#FFFFFF;
	text-align:left;
	width: 262px;
	height: 12px;
	}
	
	#footer 
	{
		padding:10px 0px;
		width:183px;
		text-align:center;
		font:normal 10px/normal arial;
		color:#666;
		position: absolute;
		left: 2px;
		top: 88px;
	}
