/*      Emanuele Feronato (2007)
        http://www.emanueleferonato.com
        Create a Lightbox effect only with CSS - only a few javascript needed
        adapted for the page by ALA
*/
.black_overlay{
			display: none;
			position: absolute;
			top: 0%;
			left: 0%;
			width: 100%;
   /*         height: 100%;    */
            height: 1400px;
 			background-color: #dddddd;
			z-index:1001;
			-moz-opacity: 0.8;
			opacity:.80;
			filter: alpha(opacity=80);
		}
.white_content {
			display: none;
			position: absolute;
            top: 50px !important;
			top: 8%;
			left: 8%;
            width: 80%;
    /*        height: 90%;   */
            min-height: 200px;
            padding: 16px;
			border: 16px solid #990000;
			background-color: #F4F7C4;
            background-image: url(../images/pierre3a.jpg);
    /*        background-attachment: fixed;       */
            background-repeat: repeat;
			z-index:1002;
			overflow: auto;
            text-decoration: none;
 	}
/* for the page */
.pageHeader {
/*     POSITION: absolute; TOP: 80px; LEFT: 80px;     */
}
#pageLoading {
          POSITION: absolute;
          LEFT: 80px;
          TOP: 80px;
}
#light {
}
.Cfull {
}
.Ploading {
       /*     width: 99%; height: 99%;       */
}
.Cloading {
          display: none;
}
#Loading {
     POSITION: absolute; TOP: 80px; LEFT: 20px;
}


