.view-msg-box {
	/* Fallback for web browsers that doesn't support RGBa */
	background: rgb(255, 255, 255);
	/* RGBa with 0.6 opacity */
	background: rgba(255, 255, 255, 0.7);
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 1000;
	text-align: center;
	vertical-align: middle;
}

.ie .view-msg-box{
	filter:alpha(opacity=75);
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
}

.view-msg-text {
	background:#000;
	top: 45%;
	font-size: 20px;
	text-align: center;
	vertical-align: middle;
	padding:10px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius:30px;
	opacity: .75;
	-moz-opacity: .75;
	width: 40%;
	color: #fff;
	text-shadow: #000 0 -1px -1px;
}

.view-msg-text .clickable {
	color: blue;
}