/*** copy on div's styling and replace the id with the new div's id in the 3 locations***/


/* div_one pop-up div styling end */
#div_one {
	background-color: #ffffff;
	color: #000000;
	position: absolute;
	display: none;
	padding: 40px;
	width: 700px;
	top: 80px;
	left: 77px;
	opacity: 0;
	KHTMLOpacity: 0;
	filter: alpha(opacity=0); 
	-moz-opacity: 0;
	z-index: 1000;
}

#div_one .fa_close {
	position: absolute;
	top: 5px;
	right: 5px;
}

#div_one.show {
	display: block;
}
/* div_one pop-up div styling end */

/* div_two pop-up div styling end */
#div_two {
	background-color: #ffffff;
	color: #000000;
	position: absolute;
	display: none;
	padding: 40px;
	width: 700px;
	top: 80px;
	left: 77px;
	opacity: 0;
	KHTMLOpacity: 0;
	filter: alpha(opacity=0); 
	-moz-opacity: 0;
	z-index: 1000;
}

#div_two .fa_close {
	position: absolute;
	top: 5px;
	right: 5px;
}

#div_two.show {
	display: block;
}
/* div_two pop-up div styling end */

/* div_three pop-up div styling end */
#div_three {
	background-color: #ffffff;
	color: #000000;
	position: absolute;
	display: none;
	padding: 40px;
	width: 700px;
	top: 80px;
	left: 77px;
	opacity: 0;
	KHTMLOpacity: 0;
	filter: alpha(opacity=0); 
	-moz-opacity: 0;
	z-index: 1000;
}

#div_three .fa_close {
	position: absolute;
	top: 5px;
	right: 5px;
}

#div_three.show {
	display: block;
}
/* div_three pop-up div styling end */


/* bg filter */
#bgfilter {
	background: #666666;
	visibility: hidden;
	position: fixed;
	display: none;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	KHTMLOpacity: 0;
	-moz-opacity:0;
	opacity:0;
	filter:alpha(opacity=100);
	z-index: 500;	
}

#bgfilter .fa_close {
	position: absolute;
	top: 5px;
	right: 5px;
}

#bgfilter.show {
	display: block;
	visibility: visible;
}
/* bg filter end*/