div#msg {
	display:block;
	position:fixed;
	top:0;
	right:30%;
	left:30%;
	z-index:+5555555;
	background:#fff;
	padding:10px;
	font-size:18px;
	border-radius:0 0 5px 5px;
	border:1px solid #aaa;
	border-top:0;
	transition:top 1s;
}
div#msg.none {
	top:-50px;
}
div#msg.SUCCESS,
div#msg.info {
	background:#d9fed9;
}
div#msg.ERROR {
	background:#ffdcdc;
}
div#msg .fa:before {
	content:"\f05a";
}
div#msg.info .fa:before {
	content:"\f058";
}
div#msg.error-msg .fa:before {
	content:"\f071";
}

div#alert {
	position:fixed;
	top:0;
	right:0;
	left:0;
	bottom:0;
	z-index:+5555555;
	background:rgba(0, 0, 0, 0.4);
}

#alert > div {
	width:300px;
	margin:10% auto;
	padding:10px;
	background:#fff;
	border-radius:4px;
}

#alert > div > div {
	border-radius:4px;
	border:1px solid red;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
	box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

#alert .panel-heading {
	border-bottom-color:red;
}

.dropdown-tip {
	width:250px;
}

.dropdown-tip i.fa-star,
.dropdown-tip span {
	display:inline-block;
	vertical-align:top;
	margin-top:5px;
}

.dropdown-tip span {
	width:90%;
	text-align:justify;
}