/*
 * style sheet
 */

body {	background: white;
	color: black
}

.tema {	color: maroon;
	font-weight: bold }

.show { color: #7040ff;
	font-weight: bold }	

/* that's purple */

.revista { color: teal;
	   font-weight: normal }

/* that's grey / green */

.person { color: blue;
	  font-weight: normal }

.group	{ color: blue;
	  font-weight: normal }

/*
 * links
 */

A:link    {color: teal}
A:visited {color: teal}
A:active  {color: teal}
A:hover	  {color: blue}

