#lightwindow_overlay {
	/* REQUIRED */
	z-index: 5000000;
	/* REQUIRED */
}

#lightwindow {
	/* REQUIRED */
	/* Of Note - The height and width of this element are set to 0px */

	z-index: 9990000;



	/* REQUIRED */
}

	#lightwindow_container {
		/* REQUIRED */
		display: none;
		visibility: hidden;
		position: absolute;
		/* REQUIRED */
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		background-color: #ffffff;

		border-radius: 5px 5px 5px 5px;
		-moz-border-radius: 5px 5px 5px 5px;
		-webkit-border-radius: 5px 5px 5px 5px;

		-webkit-box-shadow: 0px 0px 48px 7px rgba(0,0,0,0.75);
		-moz-box-shadow: 0px 0px 48px 7px rgba(0,0,0,0.75);
		box-shadow: 0px 0px 48px 7px rgba(0,0,0,0.75);

		line-height: 1.42857;
		font-size: 14px;


	}

	/* IE6 needs this or it messes with our positioning */
	* html #lightwindow_container {
		overflow: hidden;
	}

	#lightwindow_contents {
		line-height: 1.42857;
		font-size: 14px;
		margin-left: 10px;
		margin-top: 20px;
	}

#lightwindow_loading {
	/* REQUIRED */
	height: 100%;
	width: 100%;
	top: 0px;
	left: 0px;
	z-index: 99990000;
	position: absolute;
	background-color: #FFF;
	/* REQUIRED */

	padding: 10px;
}



#lightwindow_title_bar {
	height: 60px;
	overflow: hidden;
	padding: 15px;
	border-bottom: 1px solid #e5e5e5;
	font-style: bold;
	font-size: 12px;
	background-color: #FFF;

	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;

}

	#lightwindow_title_bar_title {
		color: #000000;
		font-size: 18px;
		font-style: bold;
		line-height: 25px;
		text-align: left;
		float: left;
		font-family: Verdana;
	}

	a#lightwindow_title_bar_close_link,
	a:link#lightwindow_title_bar_close_link,
	a:visited#lightwindow_title_bar_close_link {
		float: right;
		text-align: right;
		cursor: pointer;
		color: #FFF;
		line-height: 25px;
		font-style: bold;
		font-size: 10px;
		text-transform: uppercase;
		padding: 0;
		margin: 0;
		padding-right: 5px;
		padding-left: 5px;
		font-family: Verdana;
		border-radius: 5px 5px 5px 5px;
		-moz-border-radius: 5px 5px 5px 5px;
		-webkit-border-radius: 5px 5px 5px 5px;
		background-color: #f37021;
	}

	a:hover#lightwindow_title_bar_close_link,
	a:active#lightwindow_title_bar_close_link {
		color: #f37021;
		background-color: #FFF;
		border:1px solid #f37021;
		font-size: 10px;
		text-transform: uppercase;
		border-radius: 5px 5px 5px 5px;
		-moz-border-radius: 5px 5px 5px 5px;
		-webkit-border-radius: 5px 5px 5px 5px;
	}


