/*
base CSS file

tested on explorer 5+ / netscape 6 / netscape 4.7 (buggy)

safe (supported) colors are:
black, silver, gray, white, maroon, red, purple, fuchsia, green, lime, olive, yellow, navy, blue, teal, aqua
more at http://www.w3.org/MarkUp/Guide/Style
CSS reference at http://www.w3schools.com/css/default.asp
also you can specify colors with: rgb(value1, value2,value3) or #112233

to validate this css use: http://jigsaw.w3.org/css-validator/validator.html.en

*/

/* whole page settings */
body {
    /* default text color */
    color: black;

    /* background color */
    background-color: white;
    
    /* backgound image */
    /* background-image: url(/img/bg.gif); */

    /* no page margins */
    margin: 0px; padding: 0px;
    
    direction: ltr;
}

/* base font for page, table cells and p elements */
body, td, p {
    font-family: Arial, sans-serif; 
font-size: 8pt;
 
}

/* -------------------------------- */

/* "compact" tables */
table {
    /* no border */
    border-style: none; 
    
    /* no margin around table */
    margin: 0px; 
    
    /* no internal borders */
    border-collapse: collapse;
}

/* table cell padding */
td {
	padding: 0px;
}

/* -------------------------------- */

img {
	/* no border on image when linked */
	border-style: none; 
}

/* -------------------------------- */

/* normal link */
a {
    color: #BB413A; text-decoration: none;
}

/* visited (cached) link */
a:visited {
    color: #BB413A; 
}

/* link on mouse over */
a:hover {           
    color: white; text-decoration: none;
}

{ font:  italic  small-caps  600  25pts/30pts  Courier; 
} 

/* -------------------------------- */

td.testo{
font-size: 7pt;
line-height: 20px;
text-align=justify;
color: #8397C9; 
padding: 2px;
/*cursor: crosshair;*/
text-shadow: 0px 0px 20px yellow, 0px 0px 10px orange, red 5px -5px;
align-text: left;
}



td.testo2{
font-size: 8pt;
line-height: 10px;
text-align=justify;
color: #555555; 
cursor: crosshair;

}

