/* CSS for Forms in the Contiuing Education, LEARN Center, and Graduate Studies */
 		#form {
			margin: 0px 0px 0px 40px;
			padding: 0px;
			width: 450px;
		}
		
		input.buttons {
			margin: 3px 6px 0px 0px;
			background-color: #666633;
			font-size: 15px;
			color: #ffffff;
			font-weight: bold;
			border: 2px outset #cccc99;
		}
			
		input.bgfill {
			background-color: #ccd9c6;
			border: 1px inset #000000;
		}
		
		textarea.bgfill {
			background-color: #ccd9c6;
			border: 1px inset #000000;
		}
		
		#form ul {
			list-style: none;
			margin: 0px;
			padding: 0px;
		}
		
		#form ul li {
			margin: 1px;
		}
		
		#form ul li span {
			padding: 3px 5px 3px 0px;
			display: block;
			float: left;
			width: 80px;
			text-align: left;
			white-space: nowrap;
			}
			
			
/* 			
<------   FORM EXAMPLE  ------------------------------->
				<div class="form">
					<Form Action="http://www.uww.edu/cgi-bin/comments.exe" Method="Post">
					<Input Type="Hidden" Name="mailto" Value="leitzkela31@uww.edu">
					<Input Type="Hidden" Name="Request" Value="Winter">
						<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='#ff0000'" 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='#ff0000'" 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='#ff0000'" 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='#ff0000'" 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='#ff0000'" onblur="this.style.backgroundColor='#e6e6ff'" type="text" size=30 name="E-mail" alt="E-mail"></li>
							<br />
							<input type=submit class="buttons" name="Submit" value="Submit" alt="Submit">
							<input type=reset class="buttons" name="Reset" value="Reset" alt="Reset">
						</ul>
					</form>
				</div>
				
<-------- END OF FORM EXAMPLE -------------------------->
 */
