/* **********************************************************
 *	Styles for the pop up Div element(s)
 *
 *	CREATED:		04 FEB 2009 (for this site)
 *	LAST MODIFIED:	09 FEB 2009
 *	AUTHOR:			Michael Philippone 
 *	AUTHOR EMAIL:	michael@corporatezen.com
 ********************************************************* */

/*
 * Generic popup styles, same for every implementation:
 */
.jsPopUp
{ 
	background-color:#f0f0f0;
	z-index:9999;
	position:absolute;
		top:0;
		left:0;
	height:0;
	width:0;

	overflow:auto;
}

.jsPopUpTitleBar a 
{ 
	color:#FFFFFF; 
	font-weight:bold; 
	text-decoration:none; 
}

.jsPopUpTitleBar 
{

	background-color: #193259;
	background-image: url('/images/contactFormHeader.png');

	color:#FFFFFF;
	height:30px;
}

.jsPopUpTitleBar:after { clear:both; }

.jsPopUpTitleBarText 
{

	float:left;	
	font-weight:bold;
}

.jsPopUpContent
{

	padding:0px 20px 0px 20px;
}

.titleBarCloseBtn
{
	float:right;
	margin-right:5px;
	margin-top:7px;
}

.overlay 
{
	background-color:#303030;
	width:0;
	height:0px;
	position:absolute;
	top:0;
	left:0;
	z-index:99;
	display:none;
	opacity: .75;
	filter: alpha(opacity=75);
	-khtml-opacity:0.75;	/* Konqueror-specific opacity style */
  	-moz-opacity:0.75; 		/* Mozilla-specific opacity style */
}

.clear { clear:both; }