/* ********************************************** */
#popFrame{
	display:none;

	/*
	min-width:200px;
	min-height:200px;
	*/

	position:fixed;
	background-color:#fff;
	padding:0;
	margin:0;
	box-shadow:0 0 10px #999;
	border-radius:10px;
	
	z-index:9998;
}

#popFrameHead{
position:relative;
	height:35px;
	padding:0;
	margin:0;
	background-color:#69f;
	color:#fff;
	border-radius:10px 10px 0 0;
	box-shadow: 0px 0px 15px 5px #36f inset;
}

#popFrameClose{
position:absolute;
top:0;
right:0;
/*
	float:right;
*/	
	cursor:pointer;
	width:35px;
	height:19px;
	font-size:19px;
	line-height:19px;
	font-weight:bold;
	color:#fff;
	padding:8px 0;
	text-align:center;
	margin:0;
	background:transparent url('../img/popdivclose.png') no-repeat center center;		
	border-radius:0 10px 0 0;
}
#popFrameClose:hover{
	background-color:#9cf;
	color:#f00;
}

#popFrameDrag{
	float:left;
	height:17px; /* 35-(2*9) */
	padding: 9px 51px 9px 8px;
	/* IE6-7-8 */
	width: 100%\9;
	/* padding: 51+8px=59px */	
    width: -moz-calc(100% - 59px); 
    width: -webkit-calc(100% - 59px);
    width: calc(100% - 59px);	
	font-size:18px;
	font-weight:bold;
	border-radius:10px 0 0 0;
	cursor:move;
}
	
#popFrameBody{
	clear:both;
	background-color:transparent;
	padding:0;
	height:auto\9;
    height: -moz-calc(100% - 45px);
    height: -webkit-calc(100% - 45px);
    height: calc(100% - 45px);	
	overflow:hidden;
}

#popFrameIframe{
	border:0 none;
	overflow:auto;
}

#popFrameFoot{
	position:absolute;
	height:10px;
	width:100%;
	padding:0;
	margin:0;
	background-color:#69f;
	color:#fff;
	border-radius:0 0 10px 10px;
	bottom:0;
	left:0;
	box-shadow: 0px 0px 5px 1px #36f inset;
}

#popFrameResizer{
	position:absolute;
	bottom:0;
	right:0;
	width:20px;
	height:10px;
	/*
	background: #ddd;
	*/
	background: url('../img/popframe_resizer.png') no-repeat right bottom;
	
	cursor: se-resize;
	border-radius:0 0 10px 0;
	
	/*
	box-shadow: 0px 0px 3px 0px #999 inset;
	*/
}






