/* http://www.webcredible.co.uk/user-friendly-resources/css/css-forms.shtml */

label
{
width: 8em; /* effective column wih for form labels */
float: left;
text-align: right;
margin-right: 0.5em; /*small amount of spacing after the label */
display: block
}

select,
input,
textarea
{
color: white;
background: #333333;
border: 1px solid grey;

}

textarea
{
font-family: Verdana, Arial, sans-serif;
font-size:12px;
}


select:focus,
textarea:focus, 
input:focus {
   border: 1px solid red;
}

fieldset
{
border: 2px solid grey;
width:55em;
background: #101010;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
margin-right: -8em; 
}

legend
{
color: white;
font-size:87%;
/*background: black;*/
background: url(images/menuBack16x2.png) repeat;
border: 0px solid red;
padding: 2px 6px;

}

