/*Credit Outreach Form CSS*/
		input.buttons {
			margin: 3px 6px 0px 0px;
			background-color: #4169aa;
			font-size: 15px;
			color: #ffffcc;
			font-weight: bold;
			border: 2px outset #ffffcc;
		}
			
		input.bgfill {
			background-color: #4169aa;
			border: 1px inset #000000;
		}

		input.bgfill:focus
		{
			background:#ffffcc;
		}
		
		.form{
			width: 475px;
			padding: 3px;
			margin: 0px;
			}
			
		.form ul {
			list-style: none;
			margin: 0px;
			padding: 0px;
		}
		
		.form ul li {
	margin: 1px;
	list-style: none;
		}
		
		.form ul li span {
	padding: 3px 5px 3px 0px;
	display: block;
	float: left;
	width: 125px;
	text-align: left;
	white-space: nowrap;
	list-style: none;
			}
			
			
/* 			
<------   FORM EXAMPLE  -----------------------------
				<div class="form">
					<Form Action="http://www.uww.edu/cgi-bin/comments.exe" Method="Post">
					<Input Type="Hidden" Name="mailto" Value="uww@uww.edu">
					<Input Type="Hidden" Name="Request" Value="grantview">
						<ul>
							<li><span>Name:</span><input class="bgfill" onfocus="this.style.backgroundColor='#ffffff'" onblur="this.style.backgroundColor='#e6e6ff'" type="text" size=30 name="Name" alt="Name"></li>
							<li><span>Address:</span><input class="bgfill" onfocus="this.style.backgroundColor='#ffffff'" onblur="this.style.backgroundColor='#e6e6ff'" type="text" size=30 name="Address" alt="Address"></li>
							<li><span>City:</span><input class="bgfill" onfocus="this.style.backgroundColor='#ffffff'" onblur="this.style.backgroundColor='#e6e6ff'" type="text" size=30 name="City" alt="City"></li>
							<li><span>State:</span><input class="bgfill" onfocus="this.style.backgroundColor='#ffffff'" onblur="this.style.backgroundColor='#e6e6ff'" type="text" size=10 name="State" alt="State"></li>
							<li><span>Zip:</span><input class="bgfill" onfocus="this.style.backgroundColor='#ffffff'" onblur="this.style.backgroundColor='#e6e6ff'" type="text" size=10 name="Zip" alt="Zip"></li>
							<li><span>E-mail:</span><input class="bgfill" onfocus="this.style.backgroundColor='#ffffff'" onblur="this.style.backgroundColor='#e6e6ff'" type="text" size=30 name="E-mail" alt="E-mail"></li>
							<br>
							<input type=submit class="blue" name="Submit" value="Submit" alt="Submit">
							<input type=reset class="blue" name="Reset" value="Reset" alt="Reset">
						</ul>
					</form>
				</div>
				
<-------- END OF FORM EXAMPLE ------------------------
 */
