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

#contactFrame {
	width:500px;
	height:230px;
	overflow:hidden;
	border:1px solid #CCC;
}

form { 
  margin: 0;
  padding: 0;
  width: 360px; 
}

label {
	font-size:13px;
}

ul#ulcontactForm {
	margin-top:10px;
}

ul#ulcontactForm li{
	display:block;
	margin-bottom:10px;
	list-style:none;
	text-align:left;
}

form fieldset {
  /* clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border:none;
  padding:0;
  margin: 0;
}

.textField {
	background-color:#FFFFFF;
	border: 1px solid #CCC;
	width:300px;
	height:15px;
}

.textArea {
	background-color:#FFFFFF;
	border: 1px solid #CCC;
	width:300px;
	height:40px;

}

.button {
	color:#666666;
	text-align:center;
	width:50px;
	height:30px;
	background-color:#FFFFFF;
	border:1px solid #CCC;
	cursor:pointer;
}

.button:hover {
	color:#FFF;
	background-color:#CCC;
}

