.htext-edit {

	height: 35px;
	width: 100%;
   
	margin-bottom: 7px;
	
 	font-size: 20px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
  	color: black; /* font color */
  	
	border: solid;
	border-width: 1px;
   border-radius: 5px;
   border-color: white;

	box-shadow: inset 0 2px 0 rgba(0,0,0,.2), 0 0 4px rgba(0,0,0,0.1);  /* shadow */  
  
}

.htext-edit:focus { 
	
	-webkit-box-shadow: inset 0 2px 0 rgba(0,0,0,.2), 0 0 4px rgba(0,0,0,0.1), 0 0 5px 2px white;
  	   -moz-box-shadow: inset 0 2px 0 rgba(0,0,0,.2), 0 0 4px rgba(0,0,0,0.1), 0 0 5px 2px white;
    	 	  box-shadow: inset 0 2px 0 rgba(0,0,0,.2), 0 0 4px rgba(0,0,0,0.1), 0 0 5px 2px white;
    
   -webkit-transition: all .2s linear;
      -moz-transition: all .2s linear;
           transition: all .2s linear;
    

}


.htext-edit-red-focus { 

	border-width: 3px;
	border-color: #FF0000;

}

::-webkit-input-placeholder { /* WebKit browsers */
    color:    lightgray;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    lightgray;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    lightgray;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    lightgray;
}





