form fieldset a
{	
	font-weight: bold;
	color:#1C5064;
	font-size:90%;
}
p.caption
{
	font-weight: bold;
	text-align: center; 
	width: 100%;
}
p.center
{
	text-align: center; 
	width: 100%;
}
a.question
{
	font-weight: bold;
	font-style: italic;
}

form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 420px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
	font-weight: bold;
}

form label#no { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 420px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
	font-weight: bold;
	color: red;
}

form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:100% verdana,arial,sans-serif;
  margin: 0;
  padding: 0;
  min-width: 750px;
  max-width: 800px;
  width: 800px; 
}

form fieldset {
  border-color: silver;
  border-width: 1px;
  border-style: solid;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0;
}

form fieldset legend {
	font-size:1em; /* bump up legend font size, not too large or it'll overwrite border on left */
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}
form input#edit{
	width: 160px;
	border:1px solid silver;
}
form fieldset radio {
	display: block; 
}

form fieldset div.validation-advice{
	border: 1px solid red;
	width:100%;
}


form fieldset input{
	height:20px;
}

