/*
	* Homepage: yorck-von-wartneburg.de
	* Date: 22.08.2005
	* Menü Symbole: Schalter, Knöpfe, Drop-Down-Menüs
*/

/* Grösse der Buttons relativ zur Schriftgrösse*/
#button_mouse_over, #button_mouse_click {
	font-size: 1em;
	font-weight: bold;
	text-align: center;
	color: white;
	background-color: #ccc;
	display: block;
	width: auto;
	padding: 5px 15px 5px 15px;
	border-width: 2px;
	border-style: solid;
	border-color: white black black white;
}
/*Einzelner Button: bei Mouse-Over-Ereignis ':hover' ->Ein-Druck-Effekt, Verküpfung an anchor <a> wg. IE*/
#button_mouse_over:link { font-weight:bold; color:black; text-decoration:none }
#button_mouse_over:visited { font-weight:bold; color:#000080; text-decoration:none }
#button_mouse_over:hover { /*Darstellung Button bei Mouse-Over-Ereignis*/
	background-color: gray;
	border-color: black white white black;
	font-weight: bold; 
	color: #e5f5fd; 
	text-decoration: none; 
}
#button_mouse_over:active { font-weight:bold; color:red; text-decoration:underline }
#button_mouse_click:focus { /*Darstellung Button bei Focus-Ereignis mit Tab-Taste*/
	font-weight: bold; 
	color: #0000C0; 
	text-decoration: none;
}

/*Einzelner Button: beim Link-Klick-Ereignis ':active' ->Ein-Druck-Effekt, Verküpfung an anchor <a> wg. IE*/
#button_mouse_click:link { /*Darstellung des Links vor aufsuchen der Seite*/
	font-weight: bold;
	color: black;
	text-decoration: none;
}
#button_mouse_click:visited { /*Darstellen bereits besuchter Seiten*/
	font-weight: bold;
	color: #000080;
	text-decoration: none;
}
#button_mouse_click:hover { /*Darstellung Button bei Mouse-Over-Ereignis*/
	font-weight: bold; 
	color: green; 
	text-decoration: none;
}
#button_mouse_click:active { /*Darstellung  Button bei Mouse-Click-Event*/
	background-color: gray;
	border-color: black white white black;
	font-weight: bold;
	color: red;
	text-decoration: underline;
}
#button_mouse_click:focus { /*Darstellung Button bei Focus-Ereignis mit Tab-Taste*/
	font-weight: bold; 
	color: #0000C0; 
	text-decoration: none;
}

/*Liste von Buttons vertikal angeordnet*/
ul#nav {
	list-style-type: none; /*Listenzeichen verschwinden lassen*/
	font-family: Helvetica, Arial, sans-serif;
	font-size: 15px;
}
ul#nav li a { /*Darstellung Button in Ruheposition*/
	font-size: 1em;
	font-weight: bold;
	text-align: center;
	color: blue;
	background-color: #ccc;
	display: block;
	width: 180px;
	w\idth: 184px;
	margin-bottom: -40px;
	padding: 10px;
	border-width: 2px;
	border-style: solid;
	border-color: white black black white;
}
#nav li a:link { font-weight:bold; color:blue; text-decoration:none }
#nav li a:visited { font-weight:bold; color:#000080; text-decoration:none }

#nav li a:hover { /*Darstellung Button bei Mouse-Over-Ereignis*/
	background-color: gray;
	border-color: black white white black;
	font-weight: bold; 
	color: white; 
	text-decoration: none; 
}
#nav li a:active { font-weight:bold; color:red; text-decoration:underline }

