@charset "UTF-8";
/* CSS Document */

div#modal {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index:1000000;
}
div#modal div.background {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0.75;
	filter: alpha(opacity=75);
	-ms-filter: "alpha(opacity=75)";
}
div#modal div.container {
	position: relative;
	width: 500px;
	height: 740px;
	background-color: #ffffff;
	padding:20px 10px 5px;
	overflow:auto;
}

div#modal div.container div.closeBtn{
	position:absolute;
	width:30px;
	height:30px;
	background:url(close.png) center center no-repeat;
	right:4px;
	top:4px;
	cursor:pointer;
}