@charset "utf-8";

/************************************************************************************
GENERAL
*************************************************************************************/
/* clearfix */
.clearfix:after {
	content: "."; 
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix {
	min-height: 1px;
}

* html .clearfix {
	height: 1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}

/************************************************************************************
form
*************************************************************************************/
pre {
	/* Mozilla */
	white-space: -moz-pre-wrap;
	/* Opera 4-6 */
	white-space: -pre-wrap;
	/* Opera 7 */
	white-space: -o-pre-wrap;
	/* CSS3 */
	white-space: pre-wrap;
	/* IE 5.5+ */
	word-wrap: break-word;
}

#form dl {
	border-bottom:1px solid #cbedf1;
	padding-bottom:20px;
	margin-bottom:20px;
	clear:both;
	word-wrap:break-word;
}

#form dt,
#form dt label {
	float:left;
	width:200px;
	font-weight:bold;
	color:#1c293a;
	font-size:18px;
}
#form dt span {
	background:#f05426;
	color:#fff;
	font-size:13px;
	padding:3px 10px;
	border-radius:2px;
}
#form dd {
	float:right;
	width:560px;
	word-wrap:break-word;
}
#form dd .caption {
	font-size:14px;
}
#form input[type="checkbox"],
#form input[type="radio"] {
	margin-bottom:20px;
	margin-right:10px;
}
#form input[type="checkbox"]:last-child,
#form input[type="radio"]:last-child {
	margin-bottom:0;
}
#form input[type="radio"] {
	margin-right:10px;
}
#form input[type="checkbox"] {
	margin-bottom:20px;
}
#form textarea {
	width:90%;
	height:100px;
	padding:10px;
	border-radius:2px;
	border:1px solid #27cae0;
	background:#e7f6f8;
	font-size:16px;
	margin-bottom:5px;
	word-wrap:break-word;
}
#form input[type="text"],
#form input[type="email"],
#form input[type="tel"]{
	padding:10px;
	width:530px;
	border-radius:2px;
	border:1px solid #27cae0;
	background:#e7f6f8;
	font-size:16px;
	margin-bottom:5px;
}
#form select {
	border-radius:2px;
	border:1px solid #27cae0;
	background:#e7f6f8;
	font-size:16px;
	margin-bottom:5px;
}


#form .btn {
	text-align:center;
	margin-bottom:30px;
}
#form .btn input[type="submit"] {
	background:#1ac3dc;
	border-radius:5px;
	padding:15px 0;
	width:400px;
	border:none;
	color:#fff;
	font-weight:bold;
	font-size:22px;
	text-align:center;
	text-shadow: 0 -1px 0 #01a2b7;
}
#form .btn input[type="submit"]:hover {
	background:#34e0f9;
	cursor:pointer;
}
#form .btn input[type="button"] {
	background:#96a2b8;
	border-radius:5px;
	padding:20px 0;
	width:400px;
	border:none;
	color:#fff;
	font-weight:bold;
	font-size:20px;
	text-align:center;
	text-shadow: none;
	margin-top:10px;
}
#form .btn input[type="button"]:hover {
	background:#b3bed0;
	cursor:pointer;
}



