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

Title : picnikbox CSS
Adapted from lightbox CSS, original author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006
Picniked : April 17, 2007
Freewebsed : June 26, 2007

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

#overlay {
	/* Netscape 4, IE 4.x-5.0/Win and other lesser browsers will use this */
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.UseOpacityForBackground{
	background-color:#000;
	-moz-opacity: 0.5;
	opacity:.50;
	filter: alpha(opacity=50);
}

.UsePNGForBackground {
	background-image: url(../../graphics/lightbox_overlay.png);
}

/*body > div#overlay {*/
  /* used by Opera 5+, Netscape6+/Mozilla, Konqueror, Safari, OmniWeb 4.5+, iCab, ICEbrowser */
  /*position: fixed;*/
/*}*/

#picnikbox {
	display:none;
	position:absolute;
	top:0;
	left:0;
	margin:50px 20px 20px;
	width:92%;
	height:88%;
	border-width:1px;
	border-style:solid;
	border-color:#fff;
	background:#ccc;
}

#picnikiframe {
	width:100%;
	height:100%;
	border:none;
}

#picnikclose {
	position:absolute;
	top:31px;
	right:20px;
	width:82px !important;
	height:19px !important;
	z-index:10000;
	cursor:pointer;
}