@charset "UTF-8";
/* CSS Document */

/* ssEmail.css */
/* Structure and Layout for Email Form */

/* Form - Appearance Block of Form */
fieldset {
	border: 1px solid #ccc;
	background: #f8f8f8;
}

/* Form - Label for Each Element */
label {
	display: block;
}

/* Form - Text Input Area */
input {
	width: 250px;
}

/* Form - Text Input Area for Message */
textarea {
	width: 525px;
	height: 105px;
}

/* Form - Modiflies the Look for Input and Textarea When Selected */
input:focus, textarea:focus {
	background: #ffc;
}

/* Form - Added Borders for Visual Depth for Input Fields */
input[type="text"], textarea {
	border-top:	2px solid #999;
	border-left: 1px solid #999;
	border-bottom: 1px solid #ccc;
	border-right: 2px solid #ccc;
}

/* Form - Checkbox */
label.checkbox {
	display: inline;
}

/* Form - Button Modification for Submit Button */
input[type=submit] {
	width: 100px;
	float: right;
}
