/* CSS Document */div#column { /*IN THE SAMPLE, THIS DIV REPRESENTS THE CONTAINING COLUMN SO YOU WILL PROBABLY NOT USE THIS STYLE *//* UNLESS YOUR HAVE A DIV WITH THIS ID, THIS RULE WILL NOT HAVE ANY EFFECT ON YOUR SITE */	margin:20px; /* TEMP-remove - to push the form out of the browser corner in this example */	width:8em; /* width of the containing element */	border:1px solid #AAA; /* the border on the containing element */	font-family:Arial, sans-serif; 	float:left;	}#tiny_form_vert * { /* removes margins and padding of all elements in this form */	margin:0;	padding:0;	}form#tiny_form_vert {	padding:4%; /* relative padding inside the form element */	float:left; /*makes div shrink-wrap form */	margin-bottom:0;	}#tiny_form_vert input[type="submit"] {	float:right; /* moves submit button to right - IDWIMIE */	margin:.5em 0 .2em 0; /* create space above and  below button */	}/* styles for the msgs/errors list */#tiny_form_vert p {	display:none; /* hides list unless error class is present - see below */	margin-top:0em;	width:100%;	clear:both; /* ensures text cannot float up beside button */	}	#tiny_form_vert ul {	font-size:.85em; /* smaller font-size for links */	margin:0 0 0em; 	padding:.2em	}#tiny_form_vert li {	list-style-type:none; /* removes bullets off list */	}#tiny_form_vert p.error {	display:block; /* show paragraph when error class is in it */	color:red;	font-size:.8em; /* smaller font size */	}#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 */	}