div.LivingActor-ui-Toast {
	text-align: center;
	z-index: 9000;
}
	div.LivingActor-ui-Toast-up 
	,div.LivingActor-ui-Toast-down 
	,div.LivingActor-ui-Toast-left 
	,div.LivingActor-ui-Toast-right {
		position:fixed;
		background:#e0e0e0;
		border:1px solid #bbbbbb;
	}
		div.LivingActor-ui-Toast-up {
			bottom:0;
			right:20px;
			min-height: 40px;
			border-bottom: none;
			padding:5px 20px;
			border-radius:6px 6px 0 0;
		}
		div.LivingActor-ui-Toast-down {
			top:0;
			margin:auto;
			min-height: 40px;
			width: 50%;
			left:25%;
			border-top: none;
			padding:5px 20px;
			border-radius:0 0 6px 6px;
		}
		div.LivingActor-ui-Toast-left {
			top: 10%;
			right: 0;
			border-right: none;
			border-radius:6px 0 0 6px;
			padding:5px;
		}
		div.LivingActor-ui-Toast-right {
			top: 10%;
			left: 0;
			border-left: none;
			border-radius:0 6px 6px 0;
			padding:5px;
		}
	
	div.LivingActor-ui-Toast-fade {
	}

	div.LivingActor-ui-ToastMsg.alert {
		padding: 7px 14px;
	    border-width: 1px;
   		border-style: solid;
		border-radius: 6px;
		font-weight: 800;
	    margin-bottom: 10px;
		width: auto;
	}

	div.LivingActor-ui-ToastMsg.alert.alert-success {
		background-color: #dff0d8;
		border-color: #d6e9c6;
		color: #3c763d;
	}

	div.LivingActor-ui-ToastMsg.alert.alert-info {
		background-color: #d9edf7;
		border-color: #bce8f1;
		color: #31708f;
	}

	div.LivingActor-ui-ToastMsg.alert.alert-warning {
		background-color: #fcf8e3;
		border-color: #faebcc;
		color: #8a6d3b;
	}

	div.LivingActor-ui-ToastMsg.alert.alert-danger {
		background-color: #f2dede;
		border-color: #ebccd1;
		color: #a94442;
	}