/*
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;
}

label {
	margin-left:4px;
}

form {
	margin-bottom:20px;
	font-size:12px;
}

fieldset, legend {
	background-color:inherit; /* background color of form */
	border:0px solid black;
}

fieldset {
	margin-top:10px;
	margin-bottom:10px;
	padding:20px;
	padding-top:0px;
	padding-bottom:10px;
	color:white;
}

legend {
	font-size:16px;
	font-weight:bold;
	margin-top:12px;
	margin-bottom:10px;
	margin-left:-20px;
	padding:4px 13px;
}

form ul {
	margin:0;
	padding:0;
	list-style:none;
	list-style-image:none;
	border:0px solid black;
}

form ul li {
	clear:both;
	margin-right:0px;
	padding-bottom:10px;
	border:0px solid black;
}

li label, li.inline label, li.first_inline label {
	float:left;
	text-align:right;
	min-width:100px;
	margin-top:4px;
	margin-right:4px;
	margin-left:10px;
}
li.inline label {
	width:auto;
	/*float:none;*/
}

/*
input, textarea, select {
	border:1px solid #7f9db9;
	font:12px arial, sans-serif;
}*/

input, textarea {
	padding-top:2px;
	padding-right:2px;
	padding-bottom:2px;
	padding-left:2px;
}
/*
input {
	width:120px;
}

textarea {
	width:350px;
	height:70px;
}

select {min-width:126px;}*/

/* BEGIN CLASSES */
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.noinput span {
}
li.clear {clear:both;height:auto;}
input.checkbox, input.radio, li.radio input , li.checkbox input {
	width:14px;
	height:auto;
	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:#9e0000; /* background color of submit buttons * /
	color:#fff;
	border:1px solid #000;
	width:auto;
	font-size:11px;
	font-weight:normal;
	padding-top:2px;
	padding-right:7px;
	padding-bottom:2px;
	padding-left:7px;
}
.submit:visited {}
.submit:hover {
	background-color:#000; /* hover background color of submit buttons * /
	color:#fff;
}
*/

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:#557755;
	color:#fff;
}
.green {
	color:#55CC55;
}
.red {
	color:#CC0000;
}

.hidden {display:none;}

.notice {
	color:red;
	font-weight:bold;
	font-size:14px;
}

/* BEGIN SPECIALIZED FORMS */
form#form_login {
	background-color:#e8ebf0;
	width:320px;
	height:34px;
	background-image:url("/img/bg-signin.gif");
	background-position:top left;
	background-repeat:no-repeat;
	margin:0;
	padding:0;
	position:absolute;
	top:0px;
	right:10px;
}

@media only screen and (max-width: 1018px) {
	form#form_login {
		display:none;
	}
}

#form_login div {
	position:absolute;top:10px; right:65px;
}
#form_login label {padding-left:6px;padding-right:4px;color:#588a43;font-size:12px;font-weight:bold;}
#form_login input#login_email {margin-top:6px;padding-top:4px;color:#9e9e9e;font-size:11px;width:120px;height:14px;border:1px solid #e0d9d9;margin-right:2px;}
#form_login input#login_password {margin-top:6px;padding-top:4px;color:#9e9e9e;font-size:11px;width:72px;height:14px;border:1px solid #e0d9d9}
#form_login input#login_btn {position:absolute;top:6px;right:6px;width:41px;height:19px;}

#form_login div#user_links {
	top:0px;
}

#form_login label#user_greeting {
	top: 3px;
	position: absolute;
}

form#form_search {
	width:290px;
	height:34px;
	margin:0;
	padding:0;

	position:absolute;
	top:0px;
	right:14px;
	border:0px solid blue;
}
#form_search label {position:absolute;top:19px;left:5px;color:#588a43;font-size:12px;font-weight:bold;}

#form_search input#search_query {margin-top:12px;margin-left:68px;padding-top:3px;color:#000;font-size:14px;width:180px;height:19px;border:1px solid #84ae25;margin-right:2px;}
#form_search input#go_btn {position:absolute;top:12px;right:0px;width:27px;height:23px;}

form#form_finder {
	width:160px;
	}
/* END SPECIALIZED FORMS */