﻿fieldset {
  clear: both;
  border-color: #000;
  border-width: 1px;
  border-style: solid;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 10px;
}

fieldset legend
{
    font-size: 1.5em; /* 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  */
    color: Black;
    font-weight: bold;
    font-variant: small-caps;
}

fieldset label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 150px; 
	padding: 0;
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
	font-weight:bold;
    height: 17px;
}

input, textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}


.formclarify
{
    color: Gray;
    font-size:8pt;
    margin-left:5px;
}

#val
{
    padding-left:150px;
}

.forminset
{
    margin-left:160px;
}

.goodlabel
{
    color:#00733f;
    font-weight:bold;
}
.badlabel
{
    color:red;
    font-weight:bold;
}

