/* Default styling for forms
-------------------------------------------------------------- */
	
	input[type="text"], textarea {
	  margin: 0;
	  font-size: 100%;
	  vertical-align: middle;
	}
	
	input[type="text"] {
	  *overflow: visible;
	  line-height: normal;
	}

	label, input[type="text"], textarea {
	  font-weight: normal;
	  font-size: 1em;
	  line-height: 18px;
	}
	input[type="text"], textarea { font-family:Arial, Helvetica, sans-serif;}
	
	input[type="text"], textarea {
		position:relative; *zoom:1;
		display: inline-block;
		
		width: auto; height: auto;
		padding: 7px; margin-bottom: 5px;
		
		background:#fff;
		
		border: 1px solid #c7c7c7;

		text-indent: 5px;
		color: #1d1c1b;
		font-size: 1em;
		line-height: 1.2;
		
		behavior: url(PIE.htc);
	}
	textarea {
	  height: 94px !important;
	  overflow: auto;
	  vertical-align: top;
	  margin-left:20px;
	}
	
	label {
	  display: block;
	  margin-bottom: 5px;
	  color: #333;
	}
	label input[type="text"], label textarea {
	  display: block;
	}

/*-- input[type="text"] efects -- */		
	input[type="text"][type="text"]:hover, textarea:hover {
		color:#555;
	}
	
/*-- input[type="text"] focus -- */		
	input[type="text"]:focus, textarea:focus {
		
		outline: 0;
		outline: thin dotted \9;
		
		
	}
	
/*-- size -- */
	.input-large, input[type="text"].input-large { width: 341px;background-color:#f0f0f0;border:none;margin-top:-19px;height:20px;}

	


