
/****************************

LightBox Stuff

http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/

*****************************/
.blackOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	z-index:1001;
	-moz-opacity: 0.5;
	opacity:.5;
	filter: alpha(opacity=50);
	
}

.lightBox iframe {
	border: none;
	height:450px;
	width: 100%;
	
}

.lightBox {
	display: none;
	
	width:550px;
	margin-left:-255px;
	left:50%;
	top:-10px;

	position: fixed;
	z-index:1002;
	overflow:none;
}

/****************************

AlertBox style

*****************************/

.lightBoxContent {

	text-align:left;
	width:470px;
	margin-top:30px;

}

/****************************

Settings Box

http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/

*****************************/
/* Borders */
.r div { margin-left:17px; margin-right:26px; background-color:#f4f9d7;}
.t {background: url(/scripts/lightbox/images/seg-settings-topbg.png) repeat-x top left; margin-left:17px; margin-right:26px; padding-top:22px;}
.l {background: url(/scripts/lightbox/images/seg-settings-leftbg.png) repeat-y top left; margin-left:-17px; margin-right:-26px;}
.r {background: url(/scripts/lightbox/images/seg-settings-rightbg.png) repeat-y top right;}
.b {background: url(/scripts/lightbox/images/seg-settings-botbg.png) repeat-x bottom left; padding-bottom:29px;}
.bl {background: url(/scripts/lightbox/images/seg-settings-botleft.png) 0 100% no-repeat}
.br {background: url(/scripts/lightbox/images/seg-settings-botright.png) 100% 100% no-repeat}
.tl {background: url(/scripts/lightbox/images/seg-settings-topleft.png) 0 0 no-repeat}
.tr {background: url(/scripts/lightbox/images/seg-settings-topright.png) 100% 0 no-repeat;}

a.close {
	display:block;
	
	cursor:pointer;

	width:18px;
	height:16px;

	margin-right:-3px;
	margin-top:-10px;
	
	float:right;
	background: url(/scripts/lightbox/images/seg-rules-close.gif) no-repeat left top;

}
