﻿/* 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;*/
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);
 


}



.lightbox-content 
{
 /*position:absolute;/*IE6*/
 position:        fixed;
   -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
  top:              20%;
  left:             30%;
  min-width:400px;
   min-height:250px;
  width:           40%;
  height:           25%;
 _width:           400px; /*IE6*/
  _height:          250px; /*IE6*/
  text-align:center;
  padding:          10px;
  /*border:           8px solid #c9dbed;*/
  background-color: white;
  z-index:          1002;
  overflow:         auto;
-webkit-box-shadow: 0 0 0 10px  rgba(0,0,0,0.5);
box-shadow: 0 0 0 10px rgba(0,0,0,0.5);
  -moz-box-shadow:  0 0 0 10px rgba(0,0,0,0.5);

}

.lightbox-content td {border:0; padding:0}
