/* 
	author: istockphp.com
*/
#backgroundPopup { 
	z-index:1000;
	position: fixed;
	display:none;
	height:100%;
	width:100%;
	background:#ccc;	
	top:0px;  
	left:0px;
}
#toPopup {
    background: none repeat scroll 0 0 #fff;
    border: 5px solid #ccc;
    border-radius: 20px;
    color: #333333;
    display: none;
	font-size: 14px;
    left: 50%;
    margin-left: -400px;
    position: fixed;
    top: 10%;
    width: 800px;
	height: 600px;
    z-index: 1001;
}
div.loader {
    background: url("../images/popup/loading.gif") no-repeat scroll 0 0 transparent;
    height: 32px;
    width: 32px;
	display: none;
	z-index: 9999;
	top: 40%;
	left: 50%;
	position: absolute;
	margin-left: -10px;
}
div.close {
    background: url("../images/popup/closebox.png") no-repeat scroll 0 0 transparent;
    bottom: 24px;
    cursor: pointer;
    float: right;
    height: 30px;
    left: 27px;
    position: relative;
    width: 30px;
}
div#popup_content {
    margin: 4px 7px;
}