<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.alerts {
	margin: 10px 0px 15px 0px;
	clear: both;
}

.alerts .alert-sm {
	padding: 6px 10px;
}

.alerts .alert {
	position: relative;
	margin-bottom: 5px;
}

.alerts .alert .fa {
	font-size: 1.5em;
	margin-right: 6px;
}

.alerts .alert-sm .fa {
	font-size: 1.2em;
}

.alerts .alert .fa.dismiss {
	float: right;
	margin-right: 0px;
	opacity: 0.8;
}

.alerts .alert .fa.dismiss:hover {
	opacity: 1;
	cursor: pointer;
}

.alerts .alert span:first-letter {
	text-transform: uppercase;
}


#fullscreen-message-overlay {
	top: 0px;
	left: 0px;
	display: none;
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 1000000000000;
	
	/* RGBa with 0.6 opacity */
	background: rgba(50, 50, 50, 0.9);
	/* For IE 5.5 - 7*/
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99333333, endColorstr=#99333333);
	/* For IE 8*/
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99333333, endColorstr=#99333333)";
}

	#fullscreen-message {
		position: absolute;
		left: 50%;
		margin-left: -215px;
		width: 430px;
		min-height: 170px;
		height: auto;
		background: #fff;
		z-index: 10000000000000;
	}
	
		#fullscreen-message .wrap {
			margin: 10px;
			background: #f5f3f6;
			min-height: 90px;
			height: auto;
			padding: 30px;
			
			line-height: 22px;
			color: #333333;
		}
		
		#fullscreen-message h1 {
			margin-bottom: 15px;
			color: #000000;
		}
		
		#fullscreen-message #close {
			width: 53px;
			height: 52px;
			background: url(../images/close.png) center no-repeat;
			position: absolute;
			right: -10px;
			top: -10px;
			cursor: pointer;
			z-index: 100000000000000;			
		}
		
		
#quick-message {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 80%;
	max-width: 350px;
	z-index: 1000000;
}

#quick-message #message {
	font-weight: normal;
	margin: 0px 10px;
	background: #fff;
	color: #fff;	
	border-radius: 2px;
	outline: solid 30px #fff;
	border: solid 1px #eee;
	padding: 1px;
	box-shadow2: #000 0px 0px 100px;
}

#quick-message .alerts {
	padding: 0px;
	margin: 0px;
}

#quick-message .alerts .alert {
	margin: 0px;	
	border-radius: 0px;
	border: none;
	margin-top: 1px;
}

#quick-message .alerts .alert:first-child {
	margin: 0px;
}

#quick-message .alerts .alert a {
	text-decoration: underline;
}
#quick-message .alerts .alert a:hover {
	text-decoration: none;
}

#quick-message-close {
	display: inline-block;
	cursor: pointer;
	position: absolute;
	right: -11px;
	top: -23px;
}

#quick-message-close .fa {
	color: #E5D2D2;
	font-size: 1.5em;
}

#quick-message-close .fa:hover {
	color: #E65E5E;
}</pre></body></html>