/*******************************************************
 *** Definiert die Attribute der grafischen Buttons
 *******************************************************/
.monitor_button {
	position: relative;
	float: left;
	
	width: 239px;
	height: 100px;
	margin: 5px;
	overflow: hidden;
	
	font-size: 16px;
	font-weight: bold;
		
	background-image: -moz-linear-gradient(270deg, #fff, #4775A2);
	background-image: -webkit-linear-gradient(270deg, #fff, #4775A2);
	background: -o-linear-gradient(top, #fff, #4775A2);
	background: -ms-linear-gradient(top, #fff 30%, #4775A2 100%);
	
	border-top: 2px solid #9cf;
	border-left: 2px solid #9cf;
	border-right: 2px solid #369;
	border-bottom: 2px solid #369;
	
}

/** Labels der Buttons werden zentriert angezeigt */
.monitor_button_text {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	width: inherit;
	height: inherit;
}

/** Sub-Labels werden am unteren Rand ausgerichtet */
.monitor_button_sub_text {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 5px;
	color: white;
	font-size: 10px;
	font-weight: bold;
}

/***************************************
 *** Rahmen der Buttons 
 ***************************************/
.button_border {
	/* border-radius: 8px; */
	border-top: 2px solid #9cf;
	border-left: 2px solid #9cf;
	border-right: 2px solid #369;
	border-bottom: 2px solid #369;
/* 	-moz-border-radius: 8px;
	-webkit-border-radius: 8px; */
}

/***************************************
 *** Aussehen eines gedrückten Buttons 
 ***************************************/
.button_active {
	color: darkgree;
	border-bottom: 2px solid lightgrey;
	border-right: 2px solid lightgrey;
	border-left: 2px solid #444;
	border-top: 2px solid #444;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	
	background-color: #69c;
	background-image:-moz-linear-gradient(270deg, #fff, drakgreen); /* #9BC6F0); */ 
	background-image:-webkit-linear-gradient(270deg, #fff, drakgreen);
	background: -o-linear-gradient(top, #fff, drakgreen);
	background: -ms-linear-gradient(top, #fff 30%, drakgreen 100%);
}
