/* forms in page */

form { margin: 0; text-indent: 0; word-spacing: 0; }

/* form div */
.frm { margin: 0; padding: 0 0 0 10px; text-align: justify; font-size: 11px; }
.frm small { font-size: 12px; }

/* label */
.frm label { float: left; width: 115px; padding-right: 20px; text-align: left; font-weight: bold; color: #000; }
.frm label span { font-weight: bold; color: #f00; }

/* input */
.frm input { 
	display: block; float: left; height: 20px; margin-bottom: 10px; padding: 3px 0 0 3px; border: 1px solid #dcdcdc;
	background: #fbf6f6; font-size: 11px;
}
.frm input.code { width: 50px; }
.frm input.small { width: 120px; }
.frm input.medium { width: 200px; }
.frm input.large { width: 310px; }

/* input buttons */
.frm input.button { height: 25px; margin: 0; background: #be0f02; color: #fff; }
.frm input.submit { text-align: center; }
.frm input.reset  { margin-left: 10px; text-align: center; }

/* select */
.frm select { 
	display: block; float: left; width: 50px; height: 20px; margin: 0 0 10px 0; padding: 0; border: 1px solid #dcdcdc; z-index: 0; background: #f0f0f0; font-size: 11px;
}

/* textarea */
.frm textarea { 
	display: block; float: left; width: 320px; height: 100px; margin-bottom: 10px; padding: 3px 20px 0 3px;
	border: 1px solid #dcdcdc; background: #fbf8f8; font: 11px "Trebuchet", Tahoma;
}

/* br */
.frm br { clear: left; }

/* form messages */
.error { display: block; text-align: center; font-weight: bold; font-size: 12px; color: #d90000; }
.success { display: block; text-align: center; font-weight: bold; font-size: 12px; color: #3eb523; }

