/* CSS Document */

#form
{
	width: 95%;
	position:inherit;
}

#form p
{
	margin: 2px 0;
}

/* fieldset , legend */
#form fieldset
{
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
	border: #CCC 1px solid;
}

#form fieldset:hover
{
	background-color: #FFF;
}

#form fieldset legend
{
	padding: 0 10px;
	font-family: "Trebuchet MS";

	font-size: 18px;

	color: #FF8B24;
}
/* Label */
#form label
{
	background-color: #FFCC66;
	display: block;
	width: 40%;
	float: left;
	padding-right: 1%;
	text-align: right;
	letter-spacing: 1px;
}


#form label:hover
{
	font-weight: bold;
}


#form .form_label_nostyle
{
	background: none;
}

/* Input */
#form input, #form select
{
	margin-left: 1%;
	width: 48%;
	border: #CCC 1px solid;
}
#form textarea
{
	padding-right: 1%;
	display: block;
	width: 100%;
	border: #CCC 1px solid;
}
#form input[type="checkbox"], #form input[type="radio"]
{
	margin-left: 1%;
	width: 1.5em;
	border: #CCC 1px solid;
}
#form input:hover, #form select:hover, #form input:focus, #form select:focus
{
	border: #999 1px solid;
	background-color: #DDEEFF;
}

#form .form_input_day_month
{
	width: 3%;
}

#form .form_input_year
{
	width: 6%;
}
/* button submit */
#form input[type="submit"]
{
	border: #DDEEFF 1px solid;
	width: 27%;
}

#form input[type="submit"]:hover
{
	background-color: #66CC33;
	cursor: pointer;
}

#form input[type="button"]
{
	border: #DDEEFF 1px solid;
	width: 27%;
}

#form input[type="button"]:hover
{
	background-color: #66CC33;
	cursor: pointer;
}