﻿/* Lightbox style obtained from http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/ */




.lightbox-overlay {
/*position:         absolute;  overlay does not cover entire page when there's a scroll*/

position:       fixed;
  top:              0%;
  left:            0%;
  width:            100%;
  height:           100%;
  background-color: gray;
  z-index:          1001;
  -moz-opacity:     0.6;
  opacity:          .60;
  filter:           alpha(opacity=60);
  


		/*  	
emmanuele
			position: absolute;
			top: 0%;
			left: 0%;
			width: 100%;
			height: 100%;
			background-color: black;
			z-index:1001;
			-moz-opacity: 0.8;
			opacity:.80;
			filter: alpha(opacity=80);*/

}

/*.lightbox-content {
  position:        fixed;
  top:              15%;
  left:             15%;
  width:           60%;
  height:           70%;
  padding:          16px;
  border:           14px solid #E4F5B0;
  background-color: white;
  z-index:          1002;
  overflow:         auto;
}*/

.lightbox-content 
{
	/*position:absolute;/*IE6*/

  position:        fixed;
   -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
  top:              22%;
  left:             18%;
  min-width:550px;
   min-height:300px;
  width:           60%;
  height:           40%;
 _width:           650px; /*IE6*/
  _height:          300px; /*IE6*/
  text-align:center;
  padding:          10px;
  border:           8px solid #c9dbed;
  background-color: white;
  z-index:          1002;
  overflow:         auto;
  -moz-box-shadow: 6px 6px 6px #666; /*Mozilla*/
-webkit-box-shadow: 6px 6px 6px #666; /*Safari and Chrome*/
box-shadow: 6px 6px 6px #666; /*Firefox 3.1+ and Safari 3+*/

}

.lightbox-content td {border:0; padding:0}

