/* CSS para formularios */

form
{	
	width: 50%;
	margin: 2em;
}

	form div
	{
		clear: both;
		overflow: hidden;
		margin: 0.5em auto;
		width: 90%;
	}

		div label
		{	
			margin: 0.5em auto;
			display: block;
			float: left;
		}

		div input
		{
			width: 200px;
			border: #CCCCCC solid 1px;
			padding: 0.3em;
			font-size: 8pt;
			float: right;
		}

		div input:focus
		{
			border: #0099CC solid 1px;
			font-size:8pt;
		}

		div textarea
		{
			width: 200px;
			height: 75px;
			font-size: 8pt;
			border: #CCC solid 1px;
			padding: 0.3em;
			float: right;
		}

		div textarea:focus
		{
			border: #0099CC solid 1px;
		}

	.boton, .boton:link, .boton:hover, .boton:active, .boton:visited
	{
		color: #FFFFFF;
		border: #0099CC outset 1px;
		font-size: 7pt;
		font-weight: bold;
		width: 50px;
		background: #0099CC;
		padding: 3px;
	}
