form {
	font:14px Arial, Helvetica, sans-serif;
	font-weight:bold;
	margin:8px;
	padding:0px 0px;
	width:668px;	
	}
	
	form ol {
		list-style:none;
		margin:0;
		padding:0;
		}
		
		form li {
			padding:6px;
			background:#e1e1e1;
			margin-bottom:1px;
			}
			
			form li#send {
				background:none;
				margin-top:6px;
				}
		
		form label {
			float:left;
			width:177px;
			text-align:left;	
			margin-right:7px;
			color:#1a1a1a;
			line-height:23px; /* This will make the labels vertically centered with the inputs */
			}
			
		form input,
		form textarea {
			padding:4px;
			font:14px Arial, Helvetica, sans-serif;
			border:1px solid #999999;
			background:#CCC;
			}
			
			form input:focus,
			form textarea:focus {
				border:1px solid rgb(199, 39, 86);
				background:white;
				}
			
		form li#send button {
			background:#003366 url(images/css-form-send.gif) no-repeat 8px 50%;
			border:none;
			padding:4px 8px 4px 28px;
			border-radius:15%; /* Don't expect this to work on IE6 or 7 */
			-moz-border-radius:15%;
			-webkit-border-radius:15%;			
			color:#fff;
			margin-left:77px; /* Total width of the labels + their right margin */
			cursor:hand;
			}
			
			form li#send button:hover { 
				background-color:#006633;
				}