

.Messages {
	width: 100%;	
	max-width: 800px;
	max-height: 200px;
	padding-bottom: 20px;
	opacity: 1;
	transition: 
		padding-bottom 0.5s ease-out 0.3s, 
		max-height 0.4s ease-out ,
		opacity 1s ease-out;
}

.MessagesHidden {
	opacity: 0;
	/*transition: all 1s ease-in-out;*/
	max-height: 0px;
	padding-bottom: 0px;
	overflow: hidden;
}

.MessageItem {
	border: 1px solid #dfdfdf;
	display: block;
	padding: 12px;
	margin-bottom: 12px;
	/*width: 100%;*/
	background-color: #efefef;
}

.MessageType0 { border-left: 4px solid #efefef; }
.MessageType1 { border-left: 4px solid green; background-color: rgba(0, 255, 0, 0.1); }
.MessageType2 { border-left: 4px solid yellow; background-color: rgba(255, 255, 0, 0.1); }
.MessageType3 { border-left: 4px solid red; background-color: rgba(255, 0, 0, 0.1); }
.MessageType4 { border-left: 4px solid red; background-color: rgba(255, 0, 0, 0.1); }

