/* Start of CMSMS style sheet 'indexpagina' */
/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #18507C; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #18507C;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #C3D4DF;
   color: #385C72;
}

.style1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}

.style2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.style3 {
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
}
.style4 {font-size: 11px; font-family: Arial, Helvetica, sans-serif; color: #0000FF; }

.datum {
	font-family: Tahoma;
	font-size: 12px;
	color: #FFFFFF;
}
/* End of 'indexpagina' */

