

/** You can use this style for your INPUT, TEXTAREA, SELECT elements **/
input, textarea{
	border: 1px solid #0000ff;
	/** remember to change image path **/
	background: url() no-repeat #000000;
	font-family: tahoma, helvetica, sans-serif;
	font-style: normal;
	font-size: 14px;
	color: #ffffff;
}

/** You can use this style for your LABEL elements **/
.mylabelstyle {
	font-family: tahoma, helvetica, sans-serif;
	font-style: bold;
	font-size: 13px;
	color: #82983e;
}

/** 
*  You can use this style for your INPUT, TEXTAREA, SELECT elements 
*  for onmousehover event
**/
input:hover , textarea:hover{
	border: 1px solid #FFFFFF;
	/** remember to change image path **/
	background: url(none) no-repeat #333333;
	color: #ffffff;
}

