
/*
 * Styleheet for xPopup widget
 */

div.xpopup {
    position: absolute;
    display: none;
	z-index: 1;
	width: 50%;
	height: 25%;

    text-align: left;
    font-size: 8pt;
    line-height: 160%;
    padding: 22px 1px 1px 1px;
	background: #e0e0e0;

	border-top: 1px solid #999999;
	border-left: 1px solid #999999;
	border-bottom: 1px solid #808080;
	border-right: 1px solid #808080;
}
div.xpopup div.inner {
	width: 100%;
	height: 100%;
	margin: 3px 3px 3px 3px;
	padding: 6px 6px 6px 6px;
	background: #FFFFCC;
	border-bottom: 1px solid #d0d0d0;
	border-right: 1px solid #d0d0d0;
	border-top: 2px solid #808080;
	border-left: 1px solid #808080;
	overflow-y: auto;
}
div.xpopup div.close {
	position: absolute;
	top: 0px;
	right: 0px;
	margin-top: 3px;
	margin-right: 3px;
}

