/* forms */

	form label {
		display:block;
		color:#000;
	}

		form label.obrigatorio {
			font-weight:bold;
		}

		form input, textarea {
			width:300px;
			padding:3px;
			margin-bottom:6px;
			font-family:Arial, Helvetica, sans-serif;
			font-size:12px;
			border: #afafaf 1px solid;
		}

		form #Enviar, form #Limpar {
			width:152px;
			font-weight:bold;
			background:#565656;
			color:#fff;
			border:none;
			outline:none;
		}


/* validacao dos forms */


	#msg_erro1, #msg_erro2, #msg_erro3,  #msg_erro4 {
		display:none;
		font-weight:bold;
		font-size:11px;
		color:red;
		padding-left:32px;
		margin-right:50px;
		margin-top:20px;
		background:url(ico_alerta.gif) 0 0 no-repeat;
	}

		#msg_erro1.on, #msg_erro2.on, #msg_erro3.on, #msg_erro4.on {
			display:block;
			float:right;
		}


		form label.on {
			font-weight:bold;
			color:red;
		}

		form input.on, form textarea.on {
			border:1px solid #ff0000;
		}

