div#modal{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 9990;
	display: none;
}

	div#modal-mask{
		background-color:#333;
		opacity: 0.4;
		filter: alpha(opacity=40);
		position: relative;
		width: 100%;
		height: 100%;
	}
	
	div#modal-shell{
		position: absolute;
		top: 25%;
		left: 25%;
	}
		
		div#modal-backdrop{
			background: url(../../images/widget/modal/modal-backdrop.bkg.png);
			position: relative;
			padding: 10px;
			-moz-border-radius: 10px;
			-webkit-border-radius: 10px;
		}
	
			div#modal-backdrop a#modal-close{
				background: url(../../images/widget/modal/cancel.png) top left no-repeat;
				text-indent: -9999px;
				position: absolute;
				overflow: hidden;
				z-index: 9999;
				top: 0px;
				right: 0px;
				width: 16px;
				height: 16px;
			}
			
			div#modal-padding{
				background-color: #FFF;
				padding: 5px;
				border: 1px solid #333;
			}
				
				div#modal-padding div#modal-content{}
				
					div#modal-content div#modal-preloader{
						background: url(../../images/widget/modal/loader.gif) top left no-repeat;
						width: 100px;
						height: 100px;
					}