
/* definiamo la tipolgia di font e la dimensione per i tag fondamentali */
/* kind of font and size relating to the basic tags */
TD {
	FONT:  10pt verdana, arial, helvetica, sans-serif
}
P {
	FONT:  10pt verdana, arial, helvetica, sans-serif
}
DIV {
	FONT:  10pt verdana, arial, helvetica, sans-serif
}

/* caratteristiche dei link di base */
/* property of basic hyperlinks */

A {
	COLOR: #000000; CURSOR: hand; FONT: 10pt verdana, arial, helvetica, sans-serif; TEXT-DECORATION: underline
}
A:hover {
	COLOR: #800000; TEXT-DECORATION: underline
}
A:active {
	COLOR: #800000; TEXT-DECORATION: underline
}

A.btnLink{
text-decoration:none;
}
.gobutton {
	width:50px;
    color: #FFFFFF;
    text-decoration: none;
	background-color:#800000;

}
/* 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 : 10pt;
	font-family : verdana;
	color : #000000;
	border-width : 1;
	border-style : solid;
	border-color : #000000;
	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 : 0;
	border-style : solid;
	border-color : #800000;
}



/* tale classe definisce uno dei due colori base ovvero il verde */
/* basic colour: black */
.green {
	COLOR: #000000
}

/* tale classe definisce l'altro colore base ovvero l'arancione */
/* basic colour: maroon */
.arancio{
	COLOR: #800000
}



/* 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 different from IE */

.hrgreen { margin-top: 7px; margin-bottom: 7px; background-color: #000000}
.hrarancio { margin-top: 7px; margin-bottom: 7px; background-color: #800000}


/***************/
/*  CATEGORIES */
/***************/
li.categories{
	border-width : 0;
	border-style : solid;
	border-color : #800000;
	margin-left  : 5px;
}

.msg {
	color: #0000FF;
	font-style: italic;
	font-size: smaller;
	text-align:center;

}

.errmsg {
	color: red;
	font-style: italic;
	font-size: smaller;
	text-align:center;

}

/***************/
/*BLOG CALENDAR*/
/***************/

/* 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*/
/*-----------------------------*/
TD.cal_currentday_noBlog{
	COLOR: #ffffff; background-color : #800000
}


/* 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*/
/*-----------------------------*/
TD.cal_currentday_Blog A:link,TD.cal_currentday_Blog A:visited , TD.cal_currentday_Blog A:hover,TD.cal_currentday_Blog A:active{
	COLOR: #000000;
	FONT:  10pt verdana, arial, helvetica, sans-serif;
	TEXT-DECORATION: none;
	border-width : 1;
	border-style : solid;
	border-color : #800000;

}

/* 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*/
/*-----------------------------*/
TD.cal_day_Blog A:link, TD.cal_day_Blog A:visited, TD.cal_day_Blog A:hover, TD.cal_day_Blog A:active {
	color: red;
	background-color : #ffffcc;
	text-decoration: underline;
	vertical-align: text-top;
	font:  10pt verdana, arial, helvetica, sans-serif;
}


