
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: >>> POPUPS */

.myPanel { clear:both; }

.popup { 
	position: fixed;
	top: 50%;
	left: 20%;
	padding:20px 0 0;
	width: 280px;
	height: 375px;
	border:2px solid #ccc;
	background-color:#fff;
	-moz-box-shadow:2px 2px 5px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow:2px 2px 5px rgba(0, 0, 0, 0.5); 
	box-shadow:2px 2px 5px rgba(0, 0, 0, 0.5);  
	z-index: 10000;
}
.popupHeader { position:absolute;top:0;left:0;width:100%; height:20px; background-color:#ccc; }
.popupContent { height:100%; }
.popupContent.scroll { overflow:auto; }
.popupFooter { }

.popupHeader .close { position:absolute; top:0; right:0; cursor:pointer; }

