/*
 * Combined style sheet for the index pages and the slide pages.
 */



/* Style for all bodies. */
body {
	font-family: Verdana, Arial, sans-serif;
	background-color: black;
	color: silver;
	max-width: 65em;
	margin: 1em auto;
	font-size: 1em;

}

img  {
	width: 70%;
	height: auto;
	border: 0.1em solid silver;
}
/* Put a border on all generated images */

.nav {
	list-style-type: disc;
	list-style-position: outside;
}

/* Align the content of the cells on the index pages to the center. */
#index td {
	text-align: center;
}

/* Remove the margin under the images on the index pages. */
#index .image {
	margin-left: 2;
	margin-right: 2;
	margin-bottom: 0;
}

/* Header */

h1 {
	/*font-size: 30px;*/
	font-weight: bold;
}


/* Custom link styles */
a:focus {
	background-color: red;
	color: yellow;
}

a:active {
	text-decoration: none;
	color: olive;
}

a:visited {
	color: teal;
}

a:hover {
	text-decoration: underline;
	color: olive;
}

a:link {
	text-decoration: none;
	/*background-image: url(../Bilder/Pfeil3-20x13-blau.GIF);*/
	background-position: left;
	color: teal;
}

a::before {
  content: "⇒ " ;
}

hr { 
    width: 99%; 
    height: 0.5em; 
    margin: 0 auto;
    color: silver;
    background: blue;
}


