/**
 * Styling der Meldungen: Error, Notice, usw.
 * NUR Verwendbar mit Joomla >= 3.3, da Bootstraped. 
 * Siehe http://getbootstrap.com/2.3.2/components.html#alerts
 * und http://docs.joomla.org/Display_error_messages_and_notices
 * @author: PM, RH
 **/
	#system-message {
		padding: 10px;
		background: #ECF0F1;
		margin-bottom: 15px;
		padding: 0px;
		background: none;
		max-width: 960px;
		margin-left: auto;
		margin-right: auto;
	}

	#system-message .alert {
		padding: 8px 35px 8px 14px;
		margin-bottom: 20px;
		text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
		background-color: #fcf8e3;
		border: 1px solid #fbeed5;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		border-radius: 4px;
	}
	#system-message .alert-danger, #system-message .alert-error {
		color: #b94a48;
		background-color: #f2dede;
		border-color: #eed3d7;
	}
	#system-message .alert-success {
		color: #468847;
		background-color: #dff0d8;
		border-color: #d6e9c6;
	}
	#system-message .alert-info {
		color: #3a87ad;
		background-color: #d9edf7;
		border-color: #bce8f1;
	}
	
	#system-message .alert .close {
		position: relative;
		top: -2px;
		right: -21px;
		line-height: 20px;
	}
	#system-message button.close {
		padding: 0;
		cursor: pointer;
		background: transparent;
		border: 0;
		-webkit-appearance: none;
	}
	#system-message .close {
		cursor: pointer;
		float: right;
		font-size: 20px;
		font-weight: bold;
		line-height: 20px;
		color: #000000;
		text-shadow: 0 1px 0 #ffffff;
		opacity: 0.2;
		filter: alpha(opacity=20);
	}
	