/*-------------------------------------------------------*\

This is the CSS for custom text areas and text input fields

\*-------------------------------------------------------*/

input.cleardefault{
	position:relative;
	color:#aaa;
	border:none;
	width:100%;
	background:none;
	background-image:url('.');/* This a workaround for an IE bug - you cannot select a textarea or field if it has a transparent background. Credit to "rednael" http://blog.rednael.com/2009/09/01/TrappingMouseEventsOnTransparentInputElementsOrTextareasInIE.aspx */
}

input.noscripttxtfield{
	position:relative;
	color:black;
	border:none;
	width:100%;
	background:none;
	background-image:url('.');/* This a workaround for an IE bug - you cannot select a textarea or field if it has a transparent background. Credit to "rednael" http://blog.rednael.com/2009/09/01/TrappingMouseEventsOnTransparentInputElementsOrTextareasInIE.aspx */
}

textarea.emailtxt{
	width:100%;
	height:20em;
	position:relative;
	border:none;
	background:none;
	background-image:url('.');/* This a workaround for an IE bug - you cannot select a textarea or field if it has a transparent background. Credit to "rednael" http://blog.rednael.com/2009/09/01/TrappingMouseEventsOnTransparentInputElementsOrTextareasInIE.aspx */
}

.txtfieldspacer{
	position:relative;
	padding:5px;
}



.textfield{
	position:relative;
}
/*text field*/
.textback {
	position:absolute;
	top:7px;
	left:7px;
	right:7px;
	bottom:7px;
}
/*sides*/
.textleft{
	position:absolute;
	top:7px;
	left:0px;
	width:7px;
	bottom:7px;
}
.textright{
	position:absolute;
	top:7px;
	right:0px;
	width:7px;
	bottom:7px;
}
.texttop{
	position:absolute;
	top:0px;
	right:7px;
	height:7px;
	left:7px;
}
.textbottom{
	position:absolute;
	bottom:0px;
	right:7px;
	height:7px;
	left:7px;
}
/*corners*/
.texttopleft{
	position:absolute;
	top:0px;
	left:0px;
	height:7px;
	width:7px;
}
.texttopright{
	position:absolute;
	top:0px;
	right:0px;
	height:7px;
	width:7px;
}
.textbottomleft{
	position:absolute;
	bottom:0px;
	left:0px;
	height:7px;
	width:7px;
}
.textbottomright{
	position:absolute;
	bottom:0px;
	right:0px;
	height:7px;
	width:7px;
}

