/* CSS document */

		form
		{
	margin: 0px;
	padding: 0px;
		}

		input[type=text],
		input[type=password],
		textarea
		{
	background-color: #f4f4f4;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #484745;
	border-right-color: #484745;
	border-bottom-color: #484745;
	border-left-color: #484745;
	color: #333333;
	margin: 1px;
	padding-top: 3px;
	padding-right: 2px;
	padding-bottom: 3px;
	padding-left: 2px;
	box-shadow:3px 3px 2px 2px rgba(0,0,0,0.1) inset; 
		}

		input[type="text"]:focus,
		input[type="password"]:focus,
		textarea:focus
		{
	border-color: #4787b1;
	box-shadow: 0 0 5px 2px rgba(255,203,49, 0.9);
	-moz-box-shadow: 0 0 5px 2px rgba(255,203,49, 0.9);
	-webkit-box-shadow: 0 0 5px 2px rgba(255,203,49, 0.9);
	-o-box-shadow: 0 0 5px 2px rgba(255,203,49, 0.9);
	outline: none;
		}

		input[type=button]:focus,
		input[type=submit]:focus,
		button:focus
		{
	border-color: #4787b1;
	box-shadow: 0 0 5px 2px rgba(255,203,49, 0.9);
	-moz-box-shadow: 0 0 5px 2px rgba(255,203,49, 0.9);
	-webkit-box-shadow: 0 0 5px 2px rgba(255,203,49, 0.9);
	-o-box-shadow: 0 0 5px 2px rgba(255,203,49, 0.9);
	outline: none;
		}
		
		input[type=button],
		input[type=submit],
		button
		{
	color: #000000;
	background-color: #CCC;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	background-image: none;
	border-radius: 2px 2px 2px 2px;
	-moz-border-radius: 2px 2px 2px 2px;
	-webkit-border-radius: 2px 2px 2px 2px;
	box-shadow: 2px 2px 4px -1px rgba(0,0,0,0.3);
	border: 1px solid #999;
	background-image: linear-gradient(center top, rgb(192,200,207) 7%, rgb(224,224,224) 69%);
	background-image: -o-linear-gradient(center top, rgb(192,200,207) 7%, rgb(224,224,224) 69%);
	background-image: -moz-linear-gradient(center top, rgb(192,200,207) 7%, rgb(224,224,224) 69%);
	background-image: -webkit-linear-gradient(center top, rgb(192,200,207) 7%, rgb(224,224,224) 69%);
	background-image: -ms-linear-gradient(center top, rgb(192,200,207) 7%, rgb(224,224,224) 69%);
	background-image: -webkit-gradient(%20linear,%20center%20top,%20right%20bottom,%20color-stop(0.07,%20rgb(192,200,207)),%20color-stop(0.69,%20rgb(224,224,224)));
	margin-top: 6px;
	margin-right: 1px;
	margin-bottom: 6px;
	margin-left: 1px;
	text-shadow: -1px -1px 1px #fff;
	font-family: 'Play',sans-serif;
	padding: 1em;
		}
		
				input[type=button]:hover,
		input[type=submit]:hover,
		button:hover
		{
	border: 2px solid #FFF;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
		}