/*
* spezielles Layout für den Hauptframe
*/

#design tr td{
	border: 2px solid red;
	background-color: green;
}	


/* Formatierung der unnummerierte Listen */
ul{
	list-style: square;
	font-size: 10pt;
} 


/* Formatierung der Unterlisten mit fester Fontgröße,
*  damit bei mittlerer Schriftgröße alle Listenelemente gleich groß wirken
*/

li ul{
	font-size: 10pt;
}

li ul ul{
	font-size: 9pt;
}

li ul ul ul{
	font-size: 8pt;
}


ol{
	font-size: 10pt;
}

/* Linkformatierung */
a {
	text-decoration: none;
	color: #FF0000;
}

/*a:hover {
	text-decoration: none;
	color: #FFFFFF;
	background: #FF0000;
}*/

