#column { /* represents the container in your site for this form */
	width:170px;
	font-family: arial, sans-serif;
	margin:0 15px;
	border:1px solid #666;
	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:.5em 0 0 0em;
	}
form#tiny_form_vert .formsection {
	width:150px; /* had to fix this width for IE */
	float:left; /*makes the formsection divs enclose floats */
	padding:.25em;
	}
#tiny_form_vert label {
	float:left;
	width:38%; /* makes room for inputs next to labels */
	margin-top:.35em;
	color:#000; /* color of labels */
	font-size:.7em; /* size of label rel to parent */
	}
#tiny_form_vert input[type="image"] {
	margin:0; /* create space above and  below button */
	font-size:.7em; /*  sizes button */
	display:block; /* makes button accept margins */
	margin-left:38%; /* aligns button under inputs */
	}
/* styles for the msgs/errors list */
#tiny_form_vert p {
	display:none; /* hides para unless error class is present - see below */
	}	
#tiny_form_vert p.error {
	display:block; /* show paragraph when error class is present */
	color:red;
	font-size:.75em; /* smaller font size */
	}
#tiny_form_vert li {
	font-size:.7em; 
	list-style-type:none; /* removes bullets off list */
	}
#tiny_form_vert a {
	color:#069; /* unhovered link color */
	}
#tiny_form_vert a:hover {
	color:#336; /* hovered link color */
	text-decoration:none; /* remove link underline when rolled */
	}