

/* .............. fieldset is like a div - contains the input form . . . .  */

fieldset {
  margin:0 0 10px 0; 
  padding:3px; 
  border:1px solid #333; 
}

/* .............. dt is the definition term in a definition list, which is contained in a dl . . . .  */

fieldset dt {
font-family: "Century Gothic", "Gill Sans", Arial, sans-serif;
float: left;
text-align: right;
width: 250px;
padding: 3px;
border: none;
}

/* .............. dd is the definition description . . . .  */
/* .......Setting width smaller blows display!     . . . .  */


fieldset dd {
width: 600px;
text-align: left;
margin: 0;
padding: 5px;
border: none;
}


form { 
  margin:0; 
  padding:0; 
} 


/* .............. legend is the form title .it ends up on the fieldset border like a caption . . .  */

legend {
  background-color: #DDDDDD; 
  margin: 0; 
  padding:5px; 
  border-style:solid; 
  border-width:1px; 
  border-color:#FFF #AAA #666 #FFF; 
} 

label { 
   font-weight:bold; 
} 

#name, #e-mail { 
  width:80%; 
} 

input, textarea { 
   border:3px double #333; 
}

/* .............. in table & TD, for testing: border: 1px solid #ccc; . .  */



table {
border: none;
width: 100%;
border-collapse: collapse;
}

/* .............. Padding is top, right, bottom, left . .  */

th,td {
border: none;
padding: 1px 2px 1px 1px;
}

/* ....... tried "color: #000000;" in tr and ul and li, none work .........*/

tr {
  text-align: left; 
 font-size: small;
}


li {
text-align: left;
}