@charset "UTF-8";
/* CSS Document */

/* -------------------------------------------------------------- 
   
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   
-------------------------------------------------------------- */
/* Label */
label {
width:150px;
display:block;
float:left;

padding: 0 3px 0 0}

label b{
color:#960000}

/* Fieldsets */
fieldset    { padding:10px; margin: 0 0 10px 0; border: 0}
legend      { font-weight: bold; font-size:1em;padding:0 0.5em 0 0.5em;color:#333  }

fieldset div{ padding:5px 0; width:100%; float:left; border-bottom:1px solid #d4d4d4 }

fieldset div div{
border:0}


/* Text fields */
input   { border:1px solid #bbb; background:#f6f6f6; padding:2px; }
input:focus,#contatti input.title:focus         { border:1px solid #999; background:#fff; }

input#invia{ margin:0.5em 0.5em 0.5em 75px; border:1px outset #960000; color:#960000; cursor:pointer; clear:both; background-color:#666666} 


/* Textareas */
textarea            { width: 200px; height: 80px; margin:0.5em 0.5em 0.5em 0; }
textarea            { border:1px solid #bbb; background:#eee; padding:5px; }
textarea:focus      { border:1px solid #999; background:#fff; }

div#textarea{
width:100%}

/* Select fields */
select              { border:1px solid #ccc; background:#f6f6f6; width:150px; color:#999 }
select:focus        { border:1px solid #999; background:#fff; }


form{
margin:15px 15px 30px 15px}

fieldset div{ padding:5px 0; }

fieldset{
margin: 5px 0;
border:1px solid #b6b6b6}


fieldset p{
font-style:italic;
margin-bottom:5px;}

