/*
VISUAL EFFECTS
background color of form: fieldset
background color of submit btns: input.submit

to include multiple fields on one horizontal line: apply "float_left" class to li
to change the length of an input: apply "short, shorter, long or longer" class to input

MARKUP RULES
checkboxes and 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
*/

form, input, fieldset, legend, label {
	margin:0;
	padding:0;
}

form {margin-bottom:10px;}

fieldset, legend {
	background-color:#ececec; /* background color of form */
	border:0px solid black;
}

/*ie.css*/
fieldset {
	margin-top:10px;
	margin-bottom:10px;
	padding:20px;
	padding-top:0px;
	padding-bottom:30px;
}

legend {
	font-size:14px;
	font-weight:bold;
	margin-top:12px;
	margin-bottom:10px;
	margin-left:-20px;
	padding:4px 13px;
}

label {font-size:12px;}

form ul {
	margin:0;
	padding:0;
	list-style:none;
	list-style-image:none;
}

/*ie.css*/
form ul li {
	float:left;
	margin-right:25px;
	margin-bottom:10px;
	border:0px solid white;
}

input, textarea, select {
	border:1px solid #000;
	font:12px arial, sans-serif;
}

input, textarea {
	padding-top:1px;
	padding-right:2px;
	padding-bottom:1px;
	padding-left:2px;
}

input {
	width:120px;
}

textarea {
	width:300px;
	height:70px;
}

/* BEGIN CLASSES */
input.checkbox, input.radio {
	width:14px;
	margin-right:4px;
	margin-left:0px;
	padding:0;
	vertical-align:middle;
	border:0px;
}

input.submit { 
	background-color:#99d7ec; /* background color of submit buttons */
	color:#000;
	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:#009ccf; /* hover background color of submit buttons */
	color:#000;
}

input.long {width:170px;}
input.longer {width:350px;}
input.short {width:90px;}
input.shorter {width:58px;}
input.shortest {width:28px;}

.error, .success {
	font-size:14px;
	font-weight:bold;
	display:block;
	padding:5px;
}
.error {
	background-color: #CC0000;
	color:#fff;
}
.success {
	background-color:#39b44a;
	color:#fff;
}

.hidden {display:none;}

/* BEGIN SPECIALIZED FORMS */
li.floated_label label {
	float:left;
	width:105px;
	text-align:right;
	margin-right:6px;
}
form#email_newsletter {
	margin-top:10px;
	margin-bottom:10px;
}

#email_newsletter p {margin:0;}

#email_newsletter input#email {
	width:88px;
	margin:0;
	margin-top:8px;
	margin-right:5px;
}

fieldset {
	padding-top:5px;
}

#email_newsletter input#btn_submit {width:26px;height:26px;border:0;margin:0;margin-top:-3px;}

form#form_search {
	position:absolute;
	top:16px;
	left:749px;
}

#form_search input {
	width:95px;
	height:18px;
	border:1px solid #7f9db9;
	margin:0;
	
	padding:0;
	padding-left:2px;
}

/*ie.css*/
#form_search input.search {
	width:17px;
	height:20px;
	border:0;
	margin-top:-1px;
	padding:0;
	vertical-align:middle;
}


.inline_checkboxes li {float:none;}
/* END SPECIALIZED FORMS */
/*form {
	margin:0;
	padding:0;
}

input {
	border:1px solid #000;
}

input.submit {
	border:0;
}*/

/* BEGIN NEWSLETTER SIGNUP FORM */
