@charset "UTF-8";
/* CSS Document */

/* FORM ELEMENTS */


form { float: left; width: 50%; }
#contactInfo { float: left; font-family: Arial, Helvetica, sans-serif; width: 50%; }
#contactInfo ul, #contactInfo ul li { list-style: none; margin: 0; padding: 0;}
form label { 
	display: inline-block;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	margin-right: 10px;
	text-align: left;
	width: 100px;
}

form input[type="text"], form textarea, form input[type="submit"] {
	background: url(submit.png) repeat-x #3C3;
}

form input[type="text"] { line-height: 2em; }



form input[type="text"], form textarea {  border: 1px solid #ccc; background-color: #fff; background-position: 0 -90px; margin: 4px 0; width: 200px; }

form textarea { height: 200px; vertical-align: top; }

form #buttonBox {
	margin: 10px 0 0 110px;
}

form input[type="submit"] {
	border: none;
	color: #fff;
	height: 22px;
	font-weight: bold;
	cursor: pointer;
	margin: 0 5px 3px 0; 
	text-shadow: 0 1px 1px #000;
	text-transform: uppercase; 
	vertical-align: middle;
}

form input[type="submit"]:hover { background-color: #000; background-position: 0 -22px; }

