/* only includes elements unique to form */
/* meant for use in addition to sssstylesheet.css */

/**{border: 1px dashed blue;}*/

form{
	margin: 20px;
	padding: 20px;
	width: 760px;
	height: 280px;
	position: relative;
	-webkit-box-shadow: #ccc 0px 0px 20px 0px;
	-moz-box-shadow: #ccc 0px 0px 20px 0px;
	box-shadow: #ccc 0px 0px 20px 0px;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 14px;
}

form>span{
	position: absolute;
}

/*label{
	color: #ccc;
	font-size: 90%;
	font-family: Verdana, sans-serif;
	text-align: right;
	display: inline-block;
	width: 200px;
	height: 20px;
}*/

input, textarea, select, button{
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input {
	vertical-align: middle;
}

select{
	width: 220px;
}

#submit{
	width: 220px;
	height: 40px;
	color: red;
	background-color: white;
	font-family: Verdana, sans-serif;
	font-size: 20px;
	font-weight: bold;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 14px;
}

#submit:hover{
	color: #fff7e6;
	background-color: #333c66;
}

input:focus, textarea:focus{
	border: 2px solid #900;
}

.salutation{}

.name input{
	width: 450px;
}

.type{}

.date input{
	width: 150px;
}

.loc input{
	width: 450px;
}

.email input{
	width: 320px;
}

.tel input{
	width: 200px;
}

.notes textarea{
	width: 420px;
	vertical-align: top;
	height: 70px;
	resize: none;
	overflow: auto;
}

.valediction {}

.submit{
	top: 260px;	left: 320px;
}










