/*
VISUAL EFFECTS
background color of form: fieldset
background color of submit btns: input.submit

Change input lengths 
	(i.e. <li class="i2">) 
	input.i1 {width:50px;} - fits dates
	input.i2 {width:90px;} - passwords
	input.i3 {width:179px;} - email, web addresses
	input.i4 {width:350px;} - titles

	default input length is 120px

MARKUP RULES
Align fields in a row 
	give a class of "inline" to each <li> you want in the row. Give the first <li> in the row a class of "first_inline" to make its label    align correctly with the rest of the labels.

<li>s containing checkboxes or radios need a class of either "checkbox" or "radio"

any forms unique to a specific site should be styled in the "SPECIALIZED FORMS" area at the bottom of this stylesheet

required fields labels should have a class of "bold"
*/

form, input, fieldset, legend, label {
	margin:0;
	padding:0;
}

form {margin-bottom:20px;}

fieldset, legend {
	background-color:#ebebeb; /* background color of form */
	border:0px solid black;
}

fieldset {
	margin-top:10px;
	margin-bottom:10px;
	padding:20px;
	padding-top:0px;
	padding-bottom:10px;
}

legend {
	font-size:16px;
	font-weight:bold;
	margin-top:12px;
	margin-bottom:10px;
	margin-left:-20px;
	padding:4px 13px;
}

input, textarea, select {
	border:1px solid #7f9db9;
	font:12px arial, sans-serif;
	padding-top:2px;
	padding-right:2px;
	padding-bottom:2px;
	padding-left:2px;
}

input {
	width:120px;
}

textarea {
	width:350px;
	height:70px;
}

/* BEGIN CLASSES */
form.form_user ul {
	margin:0;
	padding:0;
	list-style:none;
	list-style-image:none;
	border:0px solid black;
}

/* ie.css */
.form_user ul li {
	float:left;
	margin-right:9px;
	margin-bottom:8px;
	border:0px solid black;
}

li.inline, li.first_inline {
	float:left;
	clear:none;
	border:0px solid blue;
}

li.radio, li.checkbox {
	float:left;
	clear:none;
	border:0px solid black;
}
li.clear {clear:both;height:auto;}
input.checkbox, input.radio, li.radio input , li.checkbox input {
	width:14px;
	height:14px;
	margin-right:0px;
	padding:0;
	vertical-align:middle;
	border:0;
}
li.radio span, li.checkbox span { /* the overall label for a group of checkboxes or radios */
	width:100px;
	text-align:right;
	display:block;
	float:left;
	margin-right:10px;
	padding-left:20px;
	border:0px solid black;
}
li.radio label, li.checkbox label {
	float:none;
	text-align:left;
	margin-right:20px;
	margin-left:2px;
	width:auto;
}

input.submit { 
	background-color:#007cd1; /* background color of submit buttons */
	color:#fff;
	border:1px solid #000;
	width:auto;
	font-size:11px;
	font-weight:bold;
	padding-top:2px;
	padding-right:7px;
	padding-bottom:2px;
	padding-left:7px;	
}
.submit:visited {}
.submit:hover {
	background-color:#fff; /* hover background color of submit buttons */
	color:#000;
}
form div.clear {
	height:auto;
}

input.i1 {width:50px;}
input.i2 {width:90px;}
input.i3 {width:179px;}
input.i4 {width:350px;}

.error, .success {
	font-size:14px;
	font-weight:bold;
	display:block;
	padding:5px;
}
.error {
	background-color: #CC0000;
	color:#fff;
}
.success {
	background-color:#39b44a;
	color:#fff;
}

/* BEGIN CUSTOM, SITE SPECIFIC FORMS */
form#shop_locator {
	background-image:url("/img/bg-search.gif");
	background-position:top left;
	background-repeat:repeat-x;
	position:absolute;
	top:0px;
	right:0px;
	width:293px;
	height:56px;
	margin:0;
	padding:0;
	padding-left:15px;
	font-size:13px;
	color:#fff;
	font-weight:bold;
}
#shop_locator input {border:1px solid #57b8e3;width:95px;height:13px;color:#a2a2a2;font-size:11px;}
#shop_locator input#btn_find {border:0px;width:49px;height:25px;position:absolute;top:20px;right:10px;}
#shop_locator fieldset, #shop_locator legend {
	background-color:transparent; 
	border:0px solid black;
}
#shop_locator fieldset {
	margin:0px;
	padding:0px;
}
#shop_locator legend {
	font-size:13px;
	color:#fff;
	margin:0;
	font-weight:bold;
	padding:0;
	padding-top:6px;
	padding-bottom:3px;
}

form#form_repairpal {
	position:relative;
	height:250px;
	background-image:url("/img/bg-repairpal.gif");
	background-position:bottom left;
	background-repeat:no-repeat;
	background-color:#ff7900;
	border:1px solid #ccc;
}
#form_repairpal fieldset {
	margin:0px;
	padding:0px;
}
#form_repairpal legend {
	font-size:16px;
	color:#fff;
	margin:0;
	font-weight:bold;
	padding:0;
	padding-top:6px;
	padding-bottom:8px;
	padding-left:12px;
}
#form_repairpal fieldset, #form_repairpal legend {
	background-color:transparent; 
	border:0px solid black;
}
#form_repairpal select {margin-bottom:10px;width:180px;height:22px;border:0;font-weight:bold;font-size:16px;}
#form_repairpal input#btn_go {border:0px;width:52px;height:28px;position:absolute;top:128px;left:120px;}
/* END CUSTOM, SITE SPECIFIC FORMS */