/* CSS Document */

.black_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);
}
.white_container {
	display: none;
	position: absolute;
	top: 25%;
	left: 25%;
	width: 600px;
	height: 350px;
	border: 5px solid orange;
	z-index:1002;
}
.white_content {
	width: 100%;
	height: 260px;
	overflow: auto;
	text-align:center;
	background-color: #FFFFFF;
}
.white_footer{
	background-color: #FFFFFF;
	width: 100%;
	text-align: center;
	height: 90px;
}
