﻿/* Lightbox CSS                                       */
/* @description - Cascading Style Sheet for Lightbox  */
/* @author      - Raymund Beltran (SUPERALB)          */


#lightbox {
	position: absolute;
	top: 0px;
	left: 0px;
	margin-left: 0px;
	width: 600px;
	height: 400px;
	background: #fff;
	-moz-border-radius: 15px;
	border-radius: 15px;
	-webkit-border-radius: 15px;
  	-ms-border-radius: 15px;
  	-o-border-radius: 15px;
	border: 5px solid #4169E1; /* add skyblue border according to bug 9767*/
/* 	background: url('../images/bg.gif') repeat; */
	z-index: 1001;
	display: block;
}

#lightbox-shadow {
	position: absolute;
	top: 0px;
	left: 0px;
	margin-left: 0px;
	width: 0px;
	height: 0px;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
	opacity: 0.7;
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	background: #000;
	z-index: 1000;
	display: none;
}

#lightbox-close {
  position: absolute;
  top: 0px;
  left: 0px;
  margin-left: 0px;
  width: 30px;
  height: 30px;
  background: url('../images/close.png') top right no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  transition: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  z-index: 1002;
  display: block;
}

#lightbox-close:hover {
  cursor: pointer;
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}


.lightboxTitle {
    color:blue; 
	text-align: center;
	font-size:16.5px; /*changed to 150% from 11px */
}

.lightboxSubTitle {
    text-align: center; 
    font-size: 11px;
	padding-top: 0px; 
	padding-left: 15px; 
	padding-bottom: 0px; 
	padding-right: 15px;
}

.lightboxContent {
    text-align: left; 
    font-size: 16.5px; /*changed to 150% from 11px */
    word-wrap: break-word; 
	padding-left: 15px; 
	padding-top: 0px;
	padding-bottom: 0px; 
	padding-right: 15px; 
}

