html,
body
{
	width: 100%;
	height: 100%;
}

form .require
{
	margin-left: .3em;
	color: #F00;
}

form .txt_fld, 
form .file_fld, 
form .chk_fld
{
	position: relative;
	width: 364px;
	padding: 12px 18px;
	border-bottom: 1px solid #EEE;
	text-align: right;
}

form .txt_fld label, 
form .file_fld label, 
form .chk_fld label
{
	display: block;
	float: left;
	width: 90;
	padding-top: 8px;
	text-align: left;
}

form .txt_fld input, 
form .txt_fld textarea, 
form .txt_fld select, 
form .chk_fld ul
{
	width: 244px;
	padding: 8px;
	border-radius: 4px;
	font-size: 100%;
	outline: none;
	border: 1px solid #CCC;
}

form .txt_fld select.date
{
	width: auto;
}

form .txt_fld input.err, 
form .txt_fld textarea.err
{
	background: #fde5e5;
}

form .txt_fld textarea
{
	height: 5em;
}

form .txt_fld select
{
	width: 262px;
	height: 2.5em;
}

form .file_fld input
{
	width: 244px;
	padding: 8px;
	border-radius: 4px;
	font-size: 100%;
	outline: none;
}

form .chk_fld ul
{
	float: right;
	border: none;
	text-align: left;
	line-height: 1.5em;
}

form .chk_fld ul li
{
}

form .chk_fld ul li label
{
	display: inline;
	float: none;
	padding-left: .35em;
}

form .btn_fld
{
	width: 364px;
	padding: 12px 18px;
}

form .btn_fld button
{
	float: right;
	display: block;
}

button
{
	background: #6D7476; 
	border: none;
	width: auto;
	overflow: visible;
	color: #FFF;
	padding: 6px 12px;
	border-radius: 4px;
	font-weight: bold;
	
	-moz-transition: 0.15s;
	-webkit-transition: 0.15s;
	-o-transition: 0.15s;
	transition: 0.15s;
}

button:hover
{
	cursor: pointer;
	background: #A9B3B6; 
}

#flow
{
	position: absolute;
	top: 0;
	left: 0;
	background: #FFF;
	width: 100%;
	height: 100%;
	display: none;
}

#flow .flow
{
	display: none;
}

#flow #loading
{
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -5px;
	width: 100%;
}

#flow #complete
{
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
}

#flow .ok_btn
{
	padding-top: 12px;
}