/* Start of CMSMS style sheet 'inizio' */
/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
   background-color: inherit; 
   color: #0000CC; 
}

a:visited {
   text-decoration: none;
   background-color: inherit;
  color: #0000CC;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   color: #FF0033;
}


/*****************
basic layout 
*****************/

body {

   background-color: #fff;
   color: #333;
   margin:1em;    /* gives some air for the pagewrapper */
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

/* End of 'inizio' */

