/*###########################################################################################################*/
/* Globale Styles */
/*###########################################################################################################*/

/*************************************************************************************************************/
/* Reset */
/* #region */
*
{
	margin: 0;
	padding: 0;
}

*,
*:before,
*:after 
{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
/* #endregion */



/*************************************************************************************************************/
/* Variablen */
/* #region */
:root 
{
	--main-color: #e30613 ;
	--second-color: #edcd1f;;
	--link-color: rgb(23,120,212);
}
/* #endregion */



/*************************************************************************************************************/
/* HTML und BODY */
/* #region */
html
{
	overflow-y: scroll;	/* Scrolleiste immer anzeigen */ 
}

html,
body
{
	width: 100%;
	height: 100%;
	font-size: 0.625em; /*Auf 10px zurücksetzen, so kann besser gerechnet werden (z.B. 1.2em entsprechen 12px)*/
}

body
{
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-size: 1.6em;
	line-height: 1.6em;
	text-align: left;
	background: #fff;
	color: #333;
}
/* #endregion */



/*************************************************************************************************************/
/* Absatz */
/* #region */
p
{
	padding: 0;
	margin: 0 0 10px 0;
}
/* #endregion */



/*************************************************************************************************************/
/* Link */
/* #region */
a,
a:link, 
a:visited, 
a:active
{
	color: var(--main-color);
	cursor: pointer;
}

a:hover
{
	text-decoration: underline;
	color: var(--second-color);
}
/* #endregion */



/*************************************************************************************************************/
/* Überschriften */
/* #region */
h1, h2, h3, h4, h5, h6
{
	margin: 0;
}

h1
{
	padding: 0 0 1em 0;
	font-size: 2.4em;
	font-weight: normal;
	line-height: 1.6em;
	letter-spacing: 2px;
	color: var(--main-color);
	text-transform: uppercase;
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

h2
{
	padding: 2em 0 0.3em 0;
	font-size: 1.8em;
	font-weight: normal;
	line-height: 1.2em;
}

h2:first-child
{
	padding-top: 0.5em;
}

h3
{
	padding: 0.8em 0 0.4em 0;
	font-size: 1.5em;
	font-weight: normal;
	line-height: normal;
	color: #999;
}
/* #endregion */



/*************************************************************************************************************/
/* Liste */
/* #region */
ul, 
ol
{
	margin: 0 0 1em 0;
	padding: 0;
}

li
{
	margin: 0 0 2px 0;
	padding: 0 0 0 0; 
	text-indent: 0;
	list-style-position: outside;
}

ul li
{
	list-style-type: square;
	margin-left: 18px;
}

li ul,
li ol
{
	padding: 4px 0 0 10px;
}
/* #endregion */



/*************************************************************************************************************/
/* Definitionsliste */
/* #region */
dl
{
	display: inline-block;
	width: 100%;
	margin-bottom: 1em;
}

dt
{
	float: left;
	width: 35%;
	font-weight: bold;
	text-align: left;
	margin: 0 0 5px 0;
	padding: 3px 0 3px 0;
	clear: left;
}

dt.sub
{
	font-weight: normal;
	font-style: italic;
}

dd
{
	float: left;
	width: 65%;
	margin: 0 0 5px 0;
	padding: 3px 0 3px 0;
	color: #666;
}
/* #endregion */



/*************************************************************************************************************/
/* Hoch/Tief */
/* #region */
sup
{
	font-size: 0.7em;
	line-height: 0;
}
/* #endregion */



/*************************************************************************************************************/
/* Generelle Textformatierungen */
/* #region */
.text-unterstrichen	{ text-decoration: underline; }
.text-gestrichen	{ text-decoration: line-through; }
.text-fett 			{ font-weight: bold; }
.text-kursiv 		{ font-style: italic; }
.text-gruen 		{ color: #009900 !important; }
.text-rot			{ color: #F33 !important; } 
.text-blau 			{ color: #0066FF !important; }
.text-dunkelblau 	{ color: rgb(0,43,107) !important; }
.text-weiss 		{ color: #fff !important; }
.text-grau 			{ color: #777 !important; }
.text-schwarz 		{ color: #000 !important; }
.text-orange 		{ color: #F90 !important; }

.align-right		{ text-align: right !important; } 
.align-center		{ text-align: center !important; } 

span.text-gruen 	{ background-color: rgba(255,255,255,1); }
span.text-rot 		{ background-color: rgba(255,255,255,1); }
span.text-blau 		{ background-color: rgba(255,255,255,1); }
/* #endregion */