/* ALLGEMEINES */
/* AUSRICHTUNG */
/* FARBEN */
/*   Hintergrundfarben */
/*   Schriftfarben */
/* TEXTAUSZEICHNUNGEN */
/* SONSTIGES */
/* GENERELLE ELEMENTE */
/*   Arbeitsbereich */
/*   Usermessage */
/* MEDIA QUERIES */


/***************** Allgemeines *****************/

html, body {
	background-color: #ceeab9;
	color: #eee;
  	height: 99%;  	
  	margin: 0px;
  	padding: 0px;

  	font-family: Arial, Helvetica, sans-serif;
  	font-size: 14px;
  	font-weight: normal;
}

hr {	
	background-color: #555;
	height: 1px;
}

a {
	color: #eee;
}

a:hover {
	color: #eee;
	text-decoration: none;
}
/**************** AUSRICHTUNG *******************/

.leftAlignment {
	padding-left: 0px;
	margin-left: 0px;
}

.rightAlignment {
	padding-right: 0px;
	margin-right: 0px;
}

.around5Px {
	margin: 5px;
}

.around10Px {
	margin: 10px;
}

.marginTop5 {
	margin-top: 5px;
}

.marginBottom5 {
	margin-bottom: 5px;
}

.textCenter {
	text-align: center;
}

.noMargin {
	margin: 0px !important;
}

.noPaddingLeft {
	padding-left: 0px !important;
}

.noPaddingRight {
	padding-right: 0px !important;
}


/**************** FARBEN *******************/

/************* Hintergrundfarben ****************/

.ColBG_White {
	background-color: white;
}

.ColBG_Black {
	background-color: black;
}

.ColBG_Anthrazit {
	background-color: #444;
}

.ColBG_Red {
	background-color: red;
}

.ColBG_Gray {
	background-color: #dadada !important;
}

.ColBG_Lightgray {
	background-color: #f3f3f3 !important;
}


/************* Schriftfarben ****************/

.ColFont_White {
	color: white;
}

.ColFont_Black {
	color: black;
}

.ColFont_Anthrazit {
	color: #444;
}

.ColFont_Green {
	color: #117714;
}

.ColFont_Red {
	color: red;
}

.ColFont_LightGray {
	color: #b1b1b1;
}


/**************** Textauszeichnungen *******************/

.fontWeightNormal {
	font-weight: normal;
}

.fontWeightBold {
	font-weight: bold;
}


/**************** SONSTIGES *******************/

.noDisplay {
	display: none !important;
}


/**************** GENERELLE ELEMENTE *******************/

/**************** Arbeitsbereich *******************/
#WorkArea {
	position: relative;	
	/*top: 70px;*/
}

/**************** Usermessage *******************/
  
#UserMessage, #ErrorMessage {
	position: fixed;
    bottom: 0px;
    left: 0px;
    padding-left: 35px;
    padding-top: 10px;
    height: 50px;
    width: 100%;

	display: none;
	z-index: 5;
        
    font-size: 20px;
    font-weight: normal;       
}

#UserMessage #buttonReport, #ErrorMessage #buttonReport {
	position: fixed; 
	bottom: 1.3em; 
	right: 9em; 
	padding: 5px 7px;

	font-size: 0.95rem;
}

#UserMessage #buttonSchliessen, #ErrorMessage #buttonSchliessen {
	position: fixed; 
	bottom: 1.3em; 
	right: 1em; 
	padding: 5px 7px;

	font-size: 0.95rem;
}

#UserMessage {
    background-color: #0e8f33;
    color: #ccc;
}

#ErrorMessage {
    background-color: #b50410;
    color: #eee;

    /*display: inline !important;*/
}

#buttonErrorMessageBericht, #buttonErrorMessageClose {	
	float: right;
	margin-right: 15px;
	padding: 4px 5px;
	font-size: 0.85rem;
}


/**************** Sonstiges *******************/

/*input {
	border-color: #aaa !important;
	color: #b50410 !important;
	border-radius: 4px !important;
}


textarea {
	border-color: #aaa !important;
	color: #b50410 !important;
}

button {
	border-color: #aaa !important;
}

label {
	font-weight: bold;
}*/

/**************** MEDIA QUERIES *******************/

@media only screen and (max-width: 767px) {

	#buttonErrorMessageBericht, #buttonErrorMessageClose {	
		font-size: 0.75rem;		
	}

}