/* === DEBUGGING === */

#debug_message {
	position: fixed;
	z-index: 9999;
	top: -1px;
	left: 19px;
	height: 12px;
	padding: 4px 8px;
	color: white;
	font-family: Arial;
	font-size: 12px;
	font-weight: bold;
	background-color: #A10F1A;
	border: 1px solid black;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
}

#debug_message a {
	text-decoration: none;
	background: none;
	background-color: black;
	border: 1px solid white;
	border-bottom: none;
	padding: 1px 3px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
	color: white;
}

#debug_message a:hover {
	background-color: white;
	color: black;
	border-color: black;
}

#debug_message .headline {
	font-size: 13px;
	font-weight: bold;
	line-height: 13px;
}

#admin_panel {
	position: fixed;
	z-index: 8888;
	top: -1px;
	left: -1px;
	padding: 3px;
	font-family: Arial;
	font-size: 12px;
	background: #A10F1A;
	border: 1px solid black;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
}

#admin_panel a {
	background: none;
	padding-left: 0;
	border: none;
}

#debug_server,
#debug_page,
#debug_config {
	position: absolute;
	z-index: 7777;
	top: -1px;
	left: -1px;
	text-align: left;
	padding: 25px 3px 3px;
	background: white;
	border: 1px solid black;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	font-family: Arial;
	font-size: 11px;
}

#debug_server .headline,
#debug_page .headline,
#debug_config .headline {
	display: block;
	font-size: 13px;
	padding: 2px;
	font-weight: bold;
	background: #CFC;
	border: 1px solid black;
}

/* === SYSTEM MESSAGE === */

#system_message {
	position:fixed;
	top:-2px;
	right:-2px;
	color:black;
	padding:10px;
	border: 2px solid #bbb;
  background: #ddd;
	-moz-border-radius-bottomleft: 6px;
	-webkit-border-bottom-left-radius: 6px;
	z-index:6666;
	text-align: left;
}

#system_message.error {
	background: #FEE;
	border: 2px solid #F99;
}

#system_message.warning {
	background: #FFFFC0;
	border: #FFFF00 2px solid;
}

#system_message.info {
  background: #ECFFEC;
  border: #A8FFA8 2px solid;
}

#system_message span.headline {
	display: block;
	font-size:120%;
	font-weight:bold;
	letter-spacing:1px;
	margin-bottom: 10px;
	padding: 3px 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	text-align: center;
}

#system_message.error span.headline {
	background: #F99;
}

#system_message.warning span.headline {
	background: #FFFF00;
}

#system_message.info span.headline {
	background: #A8FFA8;
}

