/* CSS Document */

/*****************************************
AUTHOR: Heidi Weiland
EMAIL: heidi@soundwebsolutions.net
DATE: June 2006

NOTES: Styling for forms
*******************************************/

form {
width:350px;
}
fieldset {
margin:1em 0;
padding:1em;
border:1px solid #ccc;
background:#f8f8f8;
}
legend {
font-weight:bold;
background-color:#fff;
}
label {
display:block;
}
input {
width:10em;
}
input[type="text"] { /*use the 'attribute selector' to select only those inputs that are of type="text"*/
border-top:2px solid #999;
border-left:2px solid #999;
border-bottom:1px solid #ccc;
border-right:1px solid #ccc;
}

#submit {
width:9em;
}