/**
 * POPUP CONTAINER STYLES
 */
#popupMask {
	position: absolute;
	z-index: 200;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .6;
	filter: alpha(opacity=60);
	/* this hack is so it works in IE
	 * I find setting the color in the css gives me more flexibility 
	 * than the PNG solution.
	 */
	background-color:transparent !important;
	background-color: #333333;
	/* this hack is for opera support
	 * you can uncomment the background-image if you don't care about opera.
	 * this gives you the flexibility to use any bg color that you want, instead of the png
	 */
	background-image:/**/ url("maskBG.png") !important; // For browsers Moz, Opera, etc. **/
	background-image:none;
	background-repeat: repeat;
	display:none;
}
#popupContainer {
	position: absolute;
	z-index: 201;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
}
#popupInner {
	border: 0;
	background-image:url(http://www.easleadgen.com/images/popup_bg.png);
	background-repeat:no-repeat;
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 202;
}
#popupTitleBar {
/**	background-color: #486CAE;
	color: #ffffff; 
	font-weight: bold; **/
	height: 1.3em;
	padding-top: 35px;
	padding-right: 35px;
	border-bottom: 0;
	position: relative;
	z-index: 203;
}
#popupTitle {
	float:left;
	font-size: 1.1em;
}
#popupControls {
	float: right;
	cursor: pointer;
	cursor: hand;
}
#popup_content{
	position:relative;
	padding-left: 50px;
	padding-right: 50px;
	text-align:left;
	font-family: "Trebuchet MS", Verdana;
	font-size: 13px;
	text-decoration: none;
	line-height: 120%;
}
.orange_title {
	font-size: 26px; 
	font-family: "Trebuchet MS", Verdana;
	color: #D37147;
	line-height:30px;
}
.orange_subtitle {
	font-size: 18px; 
	font-family: "Trebuchet MS", Verdana;
	font-weight: normal;
/**	font-family: "Trebuchet MS", Verdana; **/
	color: #D37147;
	line-height:22px;
/**	font-weight:bold; **/
}

a:link	 {text-decoration: none; color: #D37147;}
a:active {text-decoration: none; color: #D37147;}
a:visited{text-decoration: none; color: #D37147;}
a:hover	 {text-decoration: none; color: #5F5B5B;}

.dotted_line{
	background-image:url(http://www.easleadgen.com/images/dotted_bg.gif);
	background-repeat:repeat-x;
	height:12px;
}
