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

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:50%;
	z-index:9999;
	width:880px;
	height:575px;
	margin:-320px 0 0 -450px;
	border: none;
	background: transparent;
	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%;
}

/* SAT Custom CSS Stuff */

#guest_card {background-image: url('../images/episodes_guests/card_back.jpg'); background-repeat: repeat; padding: 20px; overflow: hidden;}
#guest_card h1 {font-size: 25pt; margin-bottom: 20px;}
#guest_card ul {width: 175px; float: left;}
#guest_card ul li {height: 20px;}
#guest_card ul li a {color: #2E5D8A; text-decoration: none;}
#guest_card ul li a:hover {color: #000; background: #EEE797;}
#guest_card ul li a:visted {text-decoration: line-through;}

#guest_card img.guest_pic {width: 300px; float: right; margin-top: -75px;}
#guest_card img.close {width: 30px; float: right; margin-top: -70px; margin-right: -15px;}
#guest_card img.close_guest {width: 30px; float: right; margin-top: -112px; margin-right: -20px;}

#guest_card h3 {margin: 20px 0;}
#guest_card h4 {margin: -15px 0 20px 0; font-size: 15pt;}
#guest_card p.ep {color: #DF3D3D;}

#guest_card p.nav {margin-bottom: 3px;}
#guest_card p.nav a {color: #2E5D8A; text-decoration: none;}
#guest_card p.nav a:hover {color: #000; background: #EEE797;}

#guest_card p.close {margin-bottom: 15px;}
#guest_card p.close a {background: #E94B4B; color: #fff; text-decoration: none;}
#guest_card p.close a:hover {background: #E8A44A;}
