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

#form_table{
	width:450px;
	font-family: arial;
	color:#000;
	}
#form_table th {
	text-align: right;
	color: #000;
	font-size: 14px;
	}
#form_table td {
	position: relative;
	width: 40%;
	}
#form_table caption {
	background:url(images/caption.png) center left;
	height: 58px;
	 line-height: 58px;
	 width: 450px;
	 font-size: 21px;
	 font-weight: bolder;
	 }
#form_table input, #form_table textarea {
	width: 250px;
	background-color: #eee;
	display: inline;
	color: #000;
	border:2px solid #ccc;
	margin:2px 5px;
	font-family: arial;
	height: 28px;
	font-size: 13px;
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
}
#form_table input[type="submit"], #form_table input[type="reset"] {
	width: 120px;
	background-color: #666;
	color:#FFFFFF;
	
	
	}
#form_table input:focus, #form_table textarea:focus{
	background:#fff;
	color:#000;
	
	}
#form_table input + span, #form_table textarea + span {
	display: none;
	background:url(images/message.png) no-repeat center left;
	line-height: 32px;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	padding:0px 20px;
	position: absolute;
	width: 180px;
	z-index:99;
	}
 