/* diese Datei wird sowohl im Frontend, als auch im Backend-RTE (content_css) eingebunden */

/* da wir gruen nicht als Textfarbe haben moechten (gruen = Linkfarbe!), nur auf Blockelemente anwenden */
div.highlighted, p.highlighted {
	background: #eef7f1;
	border: 2px dashed #007e82;
	padding: 3px;
	color: #007e82;
}


/* das rote haben wir mit rotem Rand, wenn es auf ein Blockelement bezogen ist */
div.important, p.important {
	background: #ffd6cf;
	border: 2px dashed #be0027;
	padding: 3px;
}

/* die Textfarbe rot ist okay (egal ob inline oder block-element) */
.important {
	color: #be0027;
}

div.orange, p.orange {
	border: 2px solid #f5a300;
	background-color: #f4d28e;
	padding: 3px;
}
span.orange {
	color: #f5a300;
}

table {
	border-spacing: 0;
}

table p {
	margin: 0;
}

td {
	padding: 0 3px 3px 0;
}

table.orange td {
	min-width: 130px;
	padding: 4px 20px 4px 5px; 
}

table.orange tr td:first-child, table.orange tr th:first-child {
	background: #faddbd;
}
