/* general  html css file, */
/* by m.galli,  march 2005 */


/* css syntax is: element { attribute: value,value ; } */
/*                element.class { attribute: value,value ; } */
/*                       .class { attribute: value ; } (for all elements) /*
/*                element, element, element {attribute: value ; } (attribute assigned to more elements)/*
/*                element0 element1 {attribute: value ; } ( element1 into element0 ) */
/*                element:pseudo-selector { attribute: value ; } 
/*                       pseudo selectors are: p:first-letter first-line 
/*                                             a:link active visited hover 
/*                #idname { ... } */

/* css are used as: < element class=name_css_class ...>   */ 
/*                  < element id=idname   .. >                   */ 
/*                  < element style="attribure: value ; attribute: value ; " ..> */ 

/* dimensions are in: em, ex, px, pt, pc, in , cm , mm    */ 
/* colors are: RGB(255,255,255) ; #FFFFFF  white */
/*     other color names: aqua, black, blue, fuchsia, gray, green, lime, maroon,
                                  navy, olive, purple, red, silver, teal, yellow  */

BODY.def {
    /* width: ;  */          /* 300px  auto 50% */
    /* height: ; */
    font-family: Verdana, Arial, Helvetica, sans-serif ,fantasy, serif  ;
    font-size:medium;        /* medium, small, large , x-large 12pt, 120%  */
    font-weight: normal ;   /* bold, bolder, lighter */
    font-style: normal ;    /* italic */ 
    text-decoration: none ; /* underline, blink, line-through */ 
    text-transform: none ;  /* capitalize, uppercase, lowercase */ 
    text-align: justify;    /* left, right, center */
    text-indent: 5pt ;         
    background-color: RGB(200,200,200) ; 
    /*color: */
    /* background-image: url('bgdesert.jpg');  
    margin-top: 10px ;       /* margin: 10px 10px 10px 10px ; */
    margin-bottom: 10px ;
    margin-left: 10px ; 
    margin-right: 10px ; 
    padding: 0pt 0pt 0pt 0pt ;  /* internal box border */
    /* border-top */     /* style colore, ove style= dotted,dashed,solid,groove,ridge,inset,outset*/    
    /* border-top-width */
    /* border-color */
    /* border-style */
    /* float:none */      /* left, right : floating text around the element */ 
    /* clear:none */      /* left, right : NO floating text around the element */ 
    /* white-spaces: normal */  /* pre, no-wrap  */
  }
H1.def,H2.def,H3.def,H4.def { 
    text-align: center ; 
}    

UL.def {
   list-style-type: circle ; /* none, disc,square, circle, decimal, lower-roman ,upper-alpha */
   /* list-style-image: url(file.gif) */ 
   list-style-position: outside ; /* outside, inside= text of list NOT indented respect to bullet*/
}
OL.def {
   list-style-type: decimal ; /* none, disc,square, circle, decimal, lower-roman ,upper-alpha */
   /* list-style-image: url(file.gif) */ 
   list-style-position: outside ; /* outside inside= list  indented */
}
   
 TABLE.def{
   text-align:center;
    border-style:groove;
    background-color:white;
   
}

TD.def{
   text-align:center; 
   border:inherit;
   border-style:groove;
} 

