/* - - - - - - - - - - - - - - - - - - - - -

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:520px;
	margin:-220px 0 0 -250px;
/*	height:400px;
	border:1px solid #fff;
*/	background:#ffffff url(../images/searchfilter/loading.gif) center center no-repeat;
	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 #lbLoadMessage p {
	padding:30px;
}
#lightbox.done #lbContent{
	display:block;
}
#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:block;
}

#lightbox.done img{
	width:100%;
	height:100%;
}

/* Search Filter */
#SendTo, #Industry, #Documents {
/*	left:227px;
	position:absolute;
	z-index:100;
	top:0px;
	border:1px solid #1b75bb;
*/	width:100%;
}
.SendTo {
	background:#ffffff url(../images/searchfilter/scan_process_bg.png) top left no-repeat;
	border-bottom:1px solid #1b75bb;
	float:left;
	width:520px;
	padding:70px 0px 10px 0px;
}
.Industry {
	background:#ffffff url(../images/searchfilter/industry_process_bg.png) top left no-repeat;
	border-bottom:1px solid #1b75bb;
	float:left;
	width:520px;
	padding:70px 0px 10px 0px;
}
.Documents {
	background:#ffffff url(../images/searchfilter/doc_process_bg.png) top left no-repeat;
	border-bottom:1px solid #1b75bb;
	float:left;
	width:520px;
	padding:70px 0px 10px 0px;
}


div.item {
	width:228px;
	height:30px;
	padding:0px;
}
div.item a:link,
div.item a:visited {
	color:#ffffff;
	height:30px;
	font-size:16px;
	font-weight:bold;
	padding:9px 97px 9px 30px;
	text-decoration:none;
}
div.item a:hover {
	color:#434343;
	background:#a2def6 url(../images/searchfilter/box_bg.png) left top repeat-x;
	height:30px;
	font-size:16px;
	font-weight:bold;
	width:183px;
	padding:9px 90px 9px 30px;
	text-decoration:none;
}
a.lbAction {
	background:url(../images/searchfilter/close_box.png) center right no-repeat;
	padding:3px 15px 0px 0px;
	margin:2px;
	float:right;
	color:#1b75bb;
	text-decoration:none;
	font-size:10px;
}

div.searchfilter_line {
	display:block;
	margin:10px 0px 0px 20px;
	float:left;
	width:44%;
}
div.searchfilter_title {
	display:block;
	margin:5px;
	font-weight:bold;
	font-size:14px;
}
div.buttons {
	display:block;
	width:450px;
	margin:5px;
	float:left;
}
input.search {
	background:#ffffff;
	border:1px solid #D33333;
	font-weight:bold;
	height:30px;
	color:#D33333;
}
input.back {
	background:#ffffff;
	border:1px solid #1B75BB;
	font-weight:bold;
	height:30px;
	color:#1B75BB;
}
input.next {
	background:#ffffff;
	border:1px solid #1B75BB;
	font-weight:bold;
	height:30px;
	color:#1B75BB;
}
form {
	padding:0px;
	margin:0px;
}

button, input[type="reset"],
input[type="button"],
input[type="submit"] {
	background:#ffffff;
	font-weight:bold;
	height:30px;
	cursor:pointer;
	width:20%;
}
button[disabled]:active,
button[disabled],
input[type="reset"][disabled]:active,
input[type="reset"][disabled],
input[type="button"][disabled]:active,
input[type="button"][disabled],
select[disabled] > input[type="button"],
select[disabled] > input[type="button"]:active,
input[type="submit"][disabled]:active,
input[type="submit"][disabled] {
	background:#ffffff;
	border:1px solid #cccccc;
	font-weight:bold;
	height:30px;
	color:#cccccc;
	cursor:default;
}