
/* Vereinigung aller Formatierungen auf einer CSS-Seite */

h1
	{
		//text-align:center;
		color: blueviolet;
		background-color: lavender;
		font-family: Calibri;
		padding: 12px;
		//border: solid crimson 5px;
	}

body
	{
		color: blue;
		background-color: lavenderblush;
		font-size: 22px;		
		font-family: Calibri;
		margin-left: 2.5cm; margin-right: 2.5cm;
		margin-top: 2cm; margin-bottom: 2 cm;lush
	}
	
p  /* Absatz */
	{
		color: blue;
		font-size: 22px;		
		font-family: Calibri;
		padding: 15px;
	}
	
ul /* ul = unsortierte Liste formatieren */
	{
		color: blue;
		/*background-color: gold;*/
		font-family: Calibri;
		font-size: 22px;
	}
	
ol /* ol = ordered list formatieren */
	{
		color: blue;
		//background-color: gold;
		font-family: Calibri;
		font-size: 22px;
	}
	
dl /* dl = Definitionsliste formatieren */
	{
		//color: Mediumblue;
		//background-color: gold;
		//font-family: Calibri;
		//font-size: 22px;
	}
	
span
	{
		color: blue;
		font-family: Calibri;
		font-size: 19px;
		// font-style: italic;
		font-weight: bold;
		letter-spacing: 1px;
	}
	
/* The padding clears an area around the content (inside the border)
of an element. The padding is affected by the background color of the
element. The top, right, bottom, and left padding can be changed
independently using separate properties. A shorthand padding property
can also be used, to change all paddings at once.
http://www.w3schools.com/css/default.asp

text-decoration: unter-, über- und durchstreichen von Text

h1 {
    text-decoration: overline;
}

h2 {
    text-decoration: line-through;
}

h3 {
    text-decoration: underline;
}

*/
