@charset "utf-8";
/* CSS Document */
html, body{
  min-height: 100%;
}
body{
  position: relative;
}
#custom-box-overlay{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	z-index:1001;
	-moz-opacity: 0.8;
	opacity:.80;
	filter: alpha(opacity=80);
}
#custom-box-content {
	display: none;
	position: absolute;
	top: 20%;
	left: 25%;
	z-index:1002;
	overflow: hidden;
	background: #ffffff;
	padding: 16px;
	border-top-left-radius: 4px;
	border-top-right-radius: 16px;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 16px;
}