/*
**  NAME
**	http://www.diku.dk/styles/diku.css
**
**  DESCRIPTION
**	This is the style used by official web pages at DIKU.  The use
**	of CSS elements has been limited to a minimum in order to reduce
**	the number of presentational differences between different 
**	browsers.
**
**  AUTHOR
**	Kim H. Søemosegaard <shotokan@diku.dk>
**	Copyright © 2002 DIKU
*/


/*  --------------------------------------------------------------------
**  Fonts:
**	The body of the text is set in whatever font is chosen by the
**	browser/user while headings are set preferably in a sans serif
**	font.
**  --------------------------------------------------------------------
*/

H1, H2, H3, H4, H5, H6 {
  font-family:		Lucida, Gill, Arial, Helvetica, sans-serif;
}


/*  --------------------------------------------------------------------
**  Colors:
**	All pages are set in black on a slightly off-white background.
**	From time to time we need additional colors and then use a set
**	of dusty red/green/blue. Also, we may need a dark grey and a 
**	light grey to emphasize rows in a table.
**  --------------------------------------------------------------------
*/

/* Foreground colors */
.fgwhite { color:	#f2f0e6; }
.fgblack { color:	#000000; }
.fgred	 { color:	#990000; }
.fggreen { color:	#cccc99; }
.fgblue	 { color:	#2b557f; }

/* Background colors */
.bgwhite { background:	#f2f0e6; border-color: #f2f0e6; }
.bgblack { background:	#000000; border-color: #000000; }
.bgred	 { background:	#990000; border-color: #990000; }
.bggreen { background:	#cccc99; border-color: #cccc99; }
.bgblue	 { background:	#2b557f; border-color: #2b557f; }

/* Table header and data background colors */
.thead	 { background:	#dfddd0; border-color: #dfddd0; }
.tdata0  { background:	#eeeeee; border-color: #eeeeee; }
.tdata1	 { background:	#dddddd; border-color: #dddddd; }

/* Default colors are black writing on (off-)white background */
BODY {
  background:		#f2f0e6;
  border-color:		#f2f0e6;
  color:		#000000;
}

/* Use the set of dusty colors for links */
A:link { color:		#2b557f; }
A:visited { color:	#990000; }


/*  --------------------------------------------------------------------
**  Text properties:
**  --------------------------------------------------------------------
*/

/* Center first-level headers */
H1 { text-align:	center; }

/* Don't underline links - it reduces the readability */
A { text-decoration:	none; }

/* Addresses are centered with a line above */
ADDRESS {
  text-align:		center;
  border-top-width:	thin;
  border-top-style:	solid;
}

