/* definiamo il colore dello sfondo e della barra di scorrimento (IE6) */
/* background colour and property of sliding bar (IE6) */
BODY {
	background: #ffffff;
}

/* definiamo la tipolgia di font e la dimensione per i tag fondamentali */
/* kind of font and size relating to the basic tags */
TD {
	FONT:  10px verdana, arial, helvetica, sans-serif
}
P {
	FONT:  1opx verdana, arial, helvetica, sans-serif
}
DIV {
	FONT:  1em verdana, arial, helvetica, sans-serif
}

/* caratteristiche dei link di base*/
/* property of basic hyperlinks*/
A {
   COLOR: Blue;
   CURSOR: hand;
   FONT: 1em verdana, arial, helvetica, sans-serif;
   TEXT-DECORATION: underline;
}
A:hover {
   COLOR: Blue;
   TEXT-DECORATION: none;
}
A:active {
   COLOR: Fuchsia;
}

/* tale classe definisce gli style per i tag relativi ai moduli ( input, select )*/
/* this class is related to the form tags ( input, select )*/
.form  {
   font-size: 10px;
   font-family: verdana;
   color: #000000;
   border-width: 1;
   border-style: solid;
   border-color: Aqua;
   background-color: #ffffff;
}

/* tale classe definisce gli style per i bordi tabelle, dove definiti */
/*  this class is related to the edges of the tables, where defined */
.tablemenu  {
   border-width: 1;
   border-style: solid;
   border-color: #6495ED;
}

/* questa classe individua il giorno corrente nel calendario nel caso
in cui ci siano blog associati a quel giorno*/
/* this class define the current day in the calendar in the case in which  
blogs are present*/
.back A:link {
   COLOR: #6495ED;
   FONT: 9px verdana, arial, helvetica, sans-serif;
   TEXT-DECORATION: none;
   border-width: 1;
   border-style: solid;
   border-color: #6495ED;
}
.back A:visited {
   COLOR: #99cc00;
   FONT: 10px verdana, arial, helvetica, sans-serif;
   TEXT-DECORATION: none;
   border-width: 1;
   border-style: solid;
   border-color: #6495ED;
}
.back A:hover {
   COLOR: #6495ED;
   FONT: 10px verdana, arial, helvetica, sans-serif;
   TEXT-DECORATION: none;
   border-width: 1;
   border-style: solid;
   border-color: #6495ED;
}
.back A:active {
   COLOR: #6495ED;
   FONT: 10px verdana, arial, helvetica, sans-serif;
   TEXT-DECORATION: none;
   border-width: 1;
   border-style: solid;
   border-color: #6495ED;
}

/* questa classe individua un giorno generico nel calendario nel caso
in cui ci siano blog associati a quel giorno*/
/* this class define a general day in the calendar in the case in which  
blogs are present*/
.back2 A:link {
   COLOR: #6495ED;
   FONT: 10px verdana, arial, helvetica, sans-serif;
   TEXT-DECORATION: none;
}
.back2 A:visited {
   COLOR: #6495ED;
   FONT: 10px verdana, arial, helvetica, sans-serif;
   TEXT-DECORATION: none;
}
.back2 A:hover {
   COLOR: #6495ED;
   FONT: 10px verdana, arial, helvetica, sans-serif;
   TEXT-DECORATION: none;
}
.back2 A:active {
	COLOR: #6495ED; FONT:  10px verdana, arial, helvetica, sans-serif; TEXT-DECORATION: none
}

/* tale classe definisce uno dei due colori base ovvero il verde */
/* basic colour: green */
.green {
	COLOR: #6495ED
}

/* tale classe definisce l'altro colore base ovvero l'arancione */
/* basic colour: orange */
.arancio{
	COLOR: #6495ED
}

/* questa classe individua il giorno corrente nel calendario nel caso
in cui nessun blog risulti associato a quel giorno*/
/* this class define a current day in the calendar in the case in which  
no blogs are present*/
.giornocorrente{
	COLOR: #ffffff; background : #6495ED
}

/* queste classi simulano il tag hr per evitare incompatibilità con browser diversi da IE */
/* these classes simulate the tag hr in order to avoid problems with browser various from IE */
/* Thanks ..:: gico ::.. */
.hrgreen { margin-top: 7px; margin-bottom: 7px; background-color: #6495ED}
.hrarancio { margin-top: 7px; margin-bottom: 7px; background-color: #6495ED}
