/* - - - - - - - - - - - - - - - - - - - - -

Title : Lightbox CSS
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

- - - - - - - - - - - - - - - - - - - - - */

#lightbox{
	display:none;
	position: absolute;
	top:50%;
	left:40%;
	z-index:9999;
	width:640px;
	height:364px;
	margin:-220px 0 0 -250px;
	border:1px solid #fff;
	background:#fff;
	color:#525252;
	text-align:left;
}
#lightbox[id]{
	position:fixed;
}

#overlay{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#000;
	-moz-opacity: 0.8;
	opacity:.80;
	filter: alpha(opacity=80);
}
#overlay[id]{
	position:fixed;
}

#lightbox.done #lbLoadMessage{
	display:none;
}
#lightbox.done #lbContent{
	display:block;
}
#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:block;
}

/*#lightbox.done img{
	width:100%;
	height:100%;
}*/



/*****************************************************************************/
#ptContent {
	position:relative;
}
#screen, #specs {
	float:left;
}
#screen {
	margin:15px 20px;
	width:382px;
}
#screen img {
	margin-bottom:10px;
}
#specs {
	margin:15px 10px 0 0;
	width:204px;
}
#specs h5 {
	background:url(../images/backTitLB.gif) repeat-x;
	font-size:16px;
	font-weight:lighter;
	height:25px;
	margin:0;
	padding:0;
}

#closeLB {
	clear:both;
	background:#e5e5e5;
	text-align:right;
	position:absolute;
	width:640px;
	bottom:0;
}

#paginacion {
	float:right;
}
#paginacion a {
	color:#990000;
	padding:2px;
	text-decoration:none;
}
#paginacion a:hover {
	color:#fff;
	background:#990000;
	text-decoration:none;
}
#verSite a {
	color:#0019b3;
	background:#DDEEFF url(../images/flechaVS.gif) no-repeat right;
	border:1px solid #0019b3;
	text-decoration:none;
	font-weight:bold;
	padding:1px 20px 1px 4px;
}
#verSite a:hover {
	color:#fff;
	background:#0019b3 url(../images/flechaVSOn.gif) no-repeat right;;
	border:1px solid #0019b3;
	text-decoration:none;
	padding:1px 20px 1px 4px;
}
