modal.css 1.1 KB
.ModalContainer {
	z-index:	10000;
	position:	absolute;
	top:		0px;
	left:		0px;
	width:		100%;
	height:		100%;
}
.ModalContainer .ModalOverlay {
	opacity:	.6;
	filter:		alpha(opacity=60);
	background-color:	black;
	width:		100%;
	height:		100%;
	top:		0px;
	left:		0px;
	position:	absolute;

}
.ModalContainer .ModalWindow {
	position:	absolute;
	padding:	0;
	margin:		0;
	min-width:	40%;
}
.ModalContainer .ModalWindow .ModalHeader {
	position:	relative;
	clear:		both;
	height:		0px;
}
.ModalContainer .ModalWindow .ModalHeader .ModalTitle {
	color:		white;
	font-size:	12pt;
}

.ModalTitle h1 {
	padding:	0;
	margin:		0;
	font:		normal 28px Trebuchet MS,Arial,Helvetica,sans-serif;
}
.ModalContainer .ModalWindow .ModalHeader .ModalActions {
	position:	absolute;
	bottom:		-37px;
	right:		14px;
}
.ModalContainer .ModalWindow .ModalHeader .ModalActions .ModalClose {
	width:		26px;
	height:		23px;
	background:	url(../Images/gallery/btn_close.png) no-repeat top right;
	display:	block;
	color:		black;
}
.ModalContainer .ModalWindow .ModalContent {
	margin:		0;
	padding:	0;
	background-color:	white;
	overflow:	scrollable;
}