/* CSS for photo album:

NOTE: Image <p>s should be of class "img", for text <p> there is the
class "text", but it is also the default.

I want a black background, and the text to appear as black typewriter on
white "paper slips".

Headlines are written white on black, also in a typewriter font.

*/

body { 
 	background: black;
	color: white;
	font-family: Courier,monospace;
	font-size: 12pt;
	margin-top: 1cm;
	margin-right: 3cm;
	margin-left: 3cm;
	padding-left: 1cm;
	margin-bottom: 1cm;
}

h1 {
	color: white;
	background: black;
	font-size: 18pt;
	font-family: Courier, monospace;
	line-height: 24pt;
 	font-weight: lighter;
	padding-bottom: 1em;
	letter-spacing: 1px;
}

h2 {
	color: white;
	background: black;
	font-size: 14pt;
	font-family: Courier, monospace;
	line-height: 18pt;
}

h3 {
	color: white;
	background: black;
	font-family: Courier, monospace;
	font-size: 12 pt;
	font-weight: bold;
}

a:link {
	text-decoration: underline;
}

a:visited {
	text-decoration: underline;
}

a.footer {
	text-decoration: none;
}

p.img {
	color: black;
	background: black;
}

p.text {
	color: black;
	background: white;
	font-family: Courier, monospace;
	padding-bottom: 1em;
	margin-top: 0em;
	line-height: 1.2;
}

p.navi {
	text-align: center
}

pre {
	font-family: Courier, monospace;
	font-size: 12pt;
	line-height: 12pt;
}

pre.footer {
	font-size: 10pt;
	line-height: 12pt;
}

tt {
	font-family: Courier, monospace;
}

img {
	line-height: normal; /* no effect */
}

ol {
	list-style-type: decimal;
	list-style-position: outside;
	line-height: 1.2;
}

ul {
	list-style-type: disc;
	list-style-position: outside;
	line-height: 1.2;
}

ul.text {
	color: black;
	background: white;
	list-style-type: disc;
	list-style-position: outside;
	line-height: 1.2;
}



