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


/* estilos del formulario de acceso */


 input {
   width: 270px; 
   padding: 5px 5px 0px 5px;
   height:25px;
   margin: 0px;
   background: #2E5B85;
   border:0px;
   background: -moz-linear-gradient(top, #2E5B85 0%, #528DD6 20%); /* firefox */
   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#528DD6), color-stop(20%,#2E5B85)); /* webkit */
   border-radius: 5px;  
   -moz-border-radius: 5px; 
   -webkit-border-radius: 5px;
   -moz-box-shadow: 0px 1px 0px #f2f2f2;
   -webkit-box-shadow: 0px 1px 0px #f2f2f2;
   font-family: sans-serif; 
   font-size: 16px; color: #f2f2f2; 
   text-shadow: 0px -1px 0px #334f71;
   text-align:left;
   }

input::-webkit-input-placeholder  {
   color: #ddd; 
   text-shadow: 0px -1px 0px #38506b;   
   }
   
input:-moz-placeholder {
   color: #ddd; 
   text-shadow: 0px -1px 0px #38506b;   
   } 

input:focus, textarea:focus {
   background: #728eaa;
   background: -moz-linear-gradient(top, #204c5c 0%, #2D6CBB 20%); /* firefox */
   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#204c5c), color-stop(20%,#2D6CBB)); /* webkit */
   }

input[type=submit]{
	width: 260px;
	height: 52px;
	float: right;
	-moz-box-shadow: 0px 0px 5px #999;
	-webkit-box-shadow: 0px 0px 5px #999;
	border: 1px solid #214F87;
	background: -moz-linear-gradient(top, #528DD6 0%, #2E5B85 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#528DD6), color-stop(100%,#2E5B85)); /* webkit */
	cursor: pointer;
	margin: 0;	
	 text-transform: uppercase;
	 text-align:center;
   }

input[type=submit]:hover {
	width: 270px;
	height: 52px;
	float: left;
	-moz-box-shadow: 0px 0px 5px #999;
	-webkit-box-shadow: 0px 0px 5px #999;
	border: 1px solid #214F87;
	background: -moz-linear-gradient(top, #9FC0E8 0%, #214F87 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#214F87), color-stop(100%,#214F87)); /* webkit */
	cursor: pointer;
	margin: 0;
	text-transform: uppercase; 
	text-align:center;
   }


