.form {

	width:100%;
}
.form div{
	box-shadow: 0 0 5px 1px #999;
	-moz-box-shadow: 0 0 5px 1px #999;
	-webkit-box-shadow: 0 0 5px 1px #999;
	border:0px solid #f7f7f7;
	-webkit-border-radius:20px;
	-moz-border-radius:20px;
	border-radius:20px;
	margin: 1% 0;
	padding:1%;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dddddd'); /* for IE */
	background-image: -moz-linear-gradient(top, #ffffff, #dddddd);
	background-image: -webkit-gradient(linear,center top,center bottom,from(#ffffff),to(#dddddd));
}
.form div input{
	font-family: trebuchet MS;
	font-size: 100%;
	background: #ffffff;
	width:72%;
	-webkit-border-radius:15px;
	-moz-border-radius:15px;
	border-radius:15px;
	border:1px solid #ccc;
	height:90%;
	font-weight:bold;
	margin-left: 10%;
	padding-left:3%;
	padding-right:4%;
}
.form button{
	font-family: trebuchet MS;
	font-size: 80%;
	cursor:pointer;
	border:0px solid #f7f7f7;
	margin-left: 3%;
	-webkit-border-radius:15px;
	-moz-border-radius:15px;
	border-radius:15px;
	width:13%;
	height:90%;
	color:#ffffff;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#444444', endColorstr='#222222'); /* for IE */
	background:#111111;
	background-image:-moz-linear-gradient(top, #444444, #222222);
	background-image: -webkit-gradient(linear,center top,center bottom,from(#444444),to(#222222));
	-webkit-transition: all 1s ease-in;
	-moz-transition: all 1s ease-in;
	-o-transition: all 1s ease-in;
    
}
.form button:hover{
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}