/* Sign-up Form CSS */
#signup_form { /* form container div */
	width:270px;
	font-family: Lucida, arial, sans-serif;
	margin:0px;
	border:0px;
	float:left;
	}
#signup_form_top { /* form container div */
	font-family: Lucida, arial, sans-serif;
	margin:0px;
	border:0px;
	float:left;
	padding-left: 45px;
	}
#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;
	}
#signup_form_top form#tiny_form_vert .formsection {
	width:185px;  /*had to fix this width for IE */
	float:left; /* removed float:left so form spaces correctly in IE6 - makes the formsection divs enclose floats */
	padding:5px 2px 2px 2px;
	}
#signup_form form#tiny_form_vert .formsection {
	width:185px;  /*had to fix this width for IE */
	float:left; /* removed float:left so form spaces correctly in IE6 - makes the formsection divs enclose floats */
	padding:0 2px 2px 2px;
	}
form#tiny_form_vert .formsectionSubmit {
	/*width:260px; had to fix this width for IE */
	float:left; /* makes the formsection divs enclose floats */
	padding:0 2px 2px 2px;
	}
#signup_form_top #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 */
	}
#signup_form #tiny_form_vert label {
	float:left;
	/*width:17%; makes room for inputs next to labels */
	color:#000000; /* color of labels */
	font-size:10px; /* size of label rel to parent */
	}
#tiny_form_vert input[type="image"] {
	margin:0; /* create space above and below button */
	font-size:11px; /*  sizes button */
	display:block; /* makes button accept margins */
	margin-left:38%; /* aligns button under inputs */
	}
#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/button_signup_blue_small.jpg) top left no-repeat;
	border:none;
	height:28px; /* button graphic height needs to be defined to show image */
	width:128px; /* button graphic width needs to be defined to show image */
	color:#FFFFFF;
	font:bold 10px Arial, Helvetica, sans-serif;
	padding:5px 0 4px 5px;
	text-align: left;
	}
#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/button_signup_red_small.jpg);
	border:none;
	height:28px; /* button graphic height needs to be defined to show image */
	width:128px; /* button graphic width needs to be defined to show image */
	}