@charset "UTF-8";
/* CSS Document */
/* Heading of Form "Fill in the form below to send me email..." */
label.header {
	font-size: 20px;;
	text-align: center;
	padding-bottom: 30px;
	padding-top: 10px;
	}
/* second line of Header "Fields marked (*) are required" */
label.header span {
	font-size: 12px;
	text-align: center;
	margin-left: 200px;
	padding-bottom: 30px;
	}
/* fieldset (fieldset are the grouping of the form lables and fields)
	"Your Name" and "Name of Company" is the first fieldset
	"State you live in" "Your Email" and "Message" is the second fieldset */
fieldset {
	background: url(../images/bkgrd_purple.png);
	margin-bottom : 10px;
	padding : 20px;
	border : 1px solid #761AA3;
	overflow: hidden;
	}
fieldset input {
	float : right;
	width : 45%;
	border : 1px solid #999;
	font-size: 16px;
	}
fieldset input:hover {
	border-color : #000;
	}
fieldset input:active, input:focus {
	border-color : #93C;
	}
label, label span {
	display : block; padding-bottom : .25em;
	}
label {
	float : left; width : 100%;
	}
label span {
	float : left;
	width : 45%;
	text-align : right;
	font-size: 16px;
	}
/* message filed area */
fieldset textarea { float : right; width : 45%; border : 1px solid #e590b8;}
fieldset textarea:hover { border-color : #000; }
fieldset textarea:active, textarea:focus { border-color : #900; }
/* =div "submit button" */
form div { 
	margin-bottom : 20px; 
	padding : 10px 20px; 
	/*border : 1px solid #a23668;*/ 
	text-align : center;
	}
form div input {
	padding : 0 1em;
	color : #90305c;
	font : bold 12px Tahoma, Verdana, Arial, sans-serif;
	color : #fff;
	text-transform : uppercase;
	background: #A6BC2A;
	border-top: 2px double #999;
	border-right: 2px double #333;
	border-bottom: 2px double #333;
	border-left: 2px double #333;
	}

form div input:link {
	background: #A6BC2A;
	}
form div input:hover {
	background: #999;
	}