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

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

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

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

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

a.toolbar_link {
    font-family: "Trebuchet MS", arial;
    color: #333333;
    text-decoration:underline;
    font-size:14px;
    font-weight:bold;
}
a.lbOn_toolbar {
    font-family: "Trebuchet MS", arial;
    color: #333333;
    text-decoration:underline;
    font-size:14px;
    font-weight:bold;
}
a.lbOn_toolbar:hover {
    color:#000;
    font-weight:bold;
}
a.lbOn_toolbar:visited {
}
a.lbOn_sidebar {
    font-family: Trebuchet MS Bold, arial;
    color: #333333;
    text-decoration:underline;
    font-size:14px;
}
a.lbOn_sidebar:hover {
    color: #FFA200;
}
a.lbOn_sidebar:visited {
    color: #333333;
    text-decoration:underline;

}
.disabled_link {
    font-family: Trebuchet MS, arial;
    color: #333333;
    font-size:14px;
}
a.lbOn {
    font-family: Trebuchet MS, arial;
    /*color: #008000;*/
    color: #333333;
    font-weight:bold;
    /*color: #315dc6;*/
    text-decoration:underline;
}
a.lbOn:hover {
    font-family: Trebuchet MS Bold, arial;
    color: #FFA200;
    /*color:#000000;*/
    font-weight:bold;
    /*color: green;*/
    text-decoration:underline;
}
a.lbOn:visited {
    font-family: Trebuchet MS Bold, arial;
    color: green;
    /*color: #FFA200;*/
    /*color: #315dc6;*/
    text-decoration:underline;

}
#overlay{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#000;
	-moz-opacity: 0.5;
	opacity:.50;
	filter: alpha(opacity=50);
}
#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%;
}
