/**************************************************
/*	POP-UP
**************************************************/
#pop {
    float:left;
    position:relative;
   	/*width: 768px;*/
	width: 98%;
	min-height:380px;
	padding:5px 0 5px 5px;
    background-color:#FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	color: #3C6879;
}

#pop h1 {
	height:41px;
	margin:0 0 15px 0;
	padding:18px 0 0 50px;
	font-size:14px;
	font-weight:normal;
	background-color: #FDFCF7;
	background:url(../images/bg-pop.gif) no-repeat top left;


}

#picto-pop {
    z-index:1;
    position:relative;
	border:0;
	float:right;
	margin:-20px 8px 0 0;
	width:19px;
	min-height:16px;		
}

.let:first-letter{
    font-weight:bold;
   	text-transform:uppercase;
	font-size:17px;
}




#popupMask {
	position: absolute;
	z-index: 900;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .4;
	filter: alpha(opacity=75);
	/* 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: #403d34;
	/* 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("mask.png") !important; // For browsers Moz, Opera, etc.
	background-image:none;
	background-repeat: repeat;
	display:none;
}
#popupContainer {
	position: absolute;
	z-index: 901;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
	background-color: #FDFCF7;
	border: 1px solid #004236;
}
#popupInner {
	/*border: 2px solid #000000;*/
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 202;
}
#popupTitleBar {
	background-color: #F3E7CB;
	color: #004236;
	/*font-weight: bold;*/
	height: 1.3em;
	padding: 5px;
	border-bottom: 1px solid #004236;
	position: relative;
	z-index: 203;
}
#popupTitle {
	float:left;
	font-size: 1.1em;
}
#popupControls {
	float: right;
	cursor: hand;
}