#forma, #forma1{
	margin:10px;
	font-size:1‚4px;	
	}

input{	
	font-size:14px;
	margin-bottom:10px;	
	margin-top:5px;
	padding:5px;
	}	

.small{
	font-size:14px;
	
	}	

.left-input{
	float:left;
	margin-right:20px;
	margin-bottom:10px;	
	}

.left-input input{
	width:195px;
	
	}	

.test{
	font-size:9px;
	color:red;	
	}	

form.cmxform label.error, label.error {
	/* remove the next line when you have trouble in IE6 with labels in list */
	color: red;
	font-style: italic;
	font-size:10px;	
}	

input.error { 
	border: 1px dotted red;
	background: #FCC;
 }
 
input[type=submit] {	
cursor:pointer; /*forces the cursor to change to a hand when the button is hovered*/
padding:5px 25px; /*add some padding to the inside of the button*/
background:#35b128; /*the colour of the button*/
border:1px solid #33842a; /*required or the default border for the browser will appear*/
/*give the button curved corners, alter the size as required*/
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
width:300px;
/*give the button a drop shadow*/
-webkit-box-shadow: 0 0 4px rgba(0,0,0, .75);
-moz-box-shadow: 0 0 4px rgba(0,0,0, .75);
box-shadow: 0 0 4px rgba(0,0,0, .75);
/*style the text*/
color:#f3f3f3;
font-size:1.6em;
 }

input[type=submit]:hover{
background-color :#399630; /*make the background a little darker*/
/*reduce the drop shadow size to give a pushed button effect*/
-webkit-box-shadow: 0 0 1px rgba(0,0,0, .75);
-moz-box-shadow: 0 0 1px rgba(0,0,0, .75);
box-shadow: 0 0 1px rgba(0,0,0, .75);
} 