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

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

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

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

#lightboxoth{
	display:none;
	position: absolute;
	top:50%;
	left:50%;
	z-index:9999;
    margin:-200px 0 0 -300px;
    border: 2px solid #434343;
    /* background: #000 url(images/product_details.gif) no-repeat; */
	background-color:#FFFFFF;
    width: 604px;
    /* height: 400px; */
    padding: 12px;
    /*
	font-family: Tahoma;
    color:#FFFFFF;
	*/
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#000000;

}

#lightboxoth h1{
  font-size:130%;
}
#lightboxoth[id]{
	position:fixed;
}

#overlayoth{
	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);
}
#overlayoth[id]{
	position:fixed;
}

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

#lbClose {
text-align:right;
}

.lbAction {
width:100%;height:19px;display:block;
background: url(../img/closelabel.gif) no-repeat right;
}

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

#scrollbox{
    width:570px;
    height:340px;
    margin-top:15px;
    margin-left:15px;
    border: 1px solid red;
    overflow:auto;
}

