/* Sign-up Form CSS */
#signupForm {
	height:170px; /* eBook form height so #contentInner expands to contain form */
}
#sidebarSignupForm { /* form container div */
	font-family: Lucida, arial, sans-serif;
	border:0px;
	float:left;
	}
#tiny_form_vert * { /* removes margins and padding of all elements in this form */
	margin:0;
	padding:0;
	}
form#tiny_form_vert {
	float:left;
	margin:0 0 0 0;
	}
form#tiny_form_vert .formsection {
	width:195px; /* had to fix this width for IE so wouldn't wrap lines */
	/* float:left; /* removed float:left so form spaces correctly in IE6 - makes the formsection divs enclose floats */
	padding:2px;
	}
form#tiny_form_vert .formsectionSubmit {
	width:195px; /* had to fix this width for IE so wouldn't wrap lines */
	float:left; /* makes the formsection divs enclose floats */
	padding-top:7px;
	padding-left:14px;
	}
#tiny_form_vert label {
	float:left;
	width:17%; /* makes room for inputs next to labels */
	margin-top:5px;
	color:#000000; /* color of labels */
	font-size:11px; /* size of label rel to parent */
	}
#tiny_form_vert input[type="submit"] { /* replaces default form "Submit" button with custom blue button graphic, IE6 shows default button, see ie-6.css for hack */
	background:url(../images/submit-button-pink.png);
	border:none;
	height:20px; /* button graphic height needs to be defined to show image */
	width:187px; /* button graphic width needs to be defined to show image */
	color:#FFFFFF;
	font-size:11px;
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
	}
#tiny_form_vert input:hover[type="submit"] { /* replaces default form "Submit" button with custom red button graphic, IE6 shows default button, see ie-6.css for hack */
	background:url(../images/submit-button-green.png);
	border:none;
	height:20px; /* button graphic height needs to be defined to show image */
	width:187px; /* button graphic width needs to be defined to show image */
	}
	
/* Duplicate CSS covering Programs-Products.html page where there are more than one form on a page, JavaScript validation code needs different form name to work */
#tiny_form_vert1 * { /* removes margins and padding of all elements in this form */
	margin:0;
	padding:0;
	}
form#tiny_form_vert1 {
	float:left;
	margin:0 0 0 0;
	}
form#tiny_form_vert1 .formsection {
	width:195px; /* had to fix this width for IE so wouldn't wrap lines */
	/* float:left; /* removed float:left so form spaces correctly in IE6 - makes the formsection divs enclose floats */
	padding:2px;
	}
form#tiny_form_vert1 .formsectionSubmit {
	width:195px; /* had to fix this width for IE so wouldn't wrap lines */
	float:left; /* makes the formsection divs enclose floats */
	padding-top:10px;
	padding-left:14px;
	}
#tiny_form_vert1 label {
	float:left;
	width:17%; /* makes room for inputs next to labels */
	margin-top:5px;
	color:#000000; /* color of labels */
	font-size:11px; /* size of label rel to parent */
	}
#tiny_form_vert1 input[type="submit"] { /* replaces default form "Submit" button with custom blue button graphic, IE6 shows default button, see ie-6.css for hack */
	background:url(../images/submit-button-pink.jpg);
	border:none;
	height:20px; /* button graphic height needs to be defined to show image */
	width:187px; /* button graphic width needs to be defined to show image */
	color:#FFFFFF;
	font-size:11px;
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
	}
#tiny_form_vert1 input:hover[type="submit"] { /* replaces default form "Submit" button with custom red button graphic, IE6 shows default button, see ie-6.css for hack */
	background:url(../images/submit-button-green.jpg);
	border:none;
	height:20px; /* button graphic height needs to be defined to show image */
	width:187px; /* button graphic width needs to be defined to show image */
	}	
