/* Forms
------------------------------
Use this style sheet for all pages with forms, it will cover the basic styles. 
To adjust the width of form text, change the <lable> tags locally with style=width:x
To adjust the size of the input fields, adjust them locally with the old stand by size=x tag

*/

.hitme {
    font: normal 75% "Arial", Helvetica, Verdana, Lucida Grande;
    }

form {
	margin: 0;
	padding: 0;
	}
	
fieldset { 
    margin-bottom: 20px;
    padding: 10px;
    width: 75%; 
    }

legend {
	padding: 0;
	color: #000;
	padding: 0 2px;
	font-weight: bold;
	_margin: 0 -7px; /* IE Win */
	}

label {
	display: inline-block;
	line-height: 1.8;
	vertical-align: top;
	width: 175px;
	}

input, textarea, select {
	margin: 0;
	padding: 1px;
	font-size: 100%;
	font-family: inherit;
	}
	
fieldset ol {
	margin: 0;
	padding: 0;
	}
	
fieldset li {
	list-style: none;
	padding: 5px;
	margin: 0;
	}

select { padding: 0; }
	
p { margin: 10px 0; }
	
em {
	font-weight: bold;
	font-style: normal;
	color: #c00;
	}



