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

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

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

#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.7;
	opacity:.70;
	filter: alpha(opacity=70);
}

.UsePNGForBackground {
	background-image: url(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:0px;
	margin-left:20px;
	margin-right:20px;
	margin-bottom:20px;
	margin-top:20px;
	border-width:1px;
	border-style:solid;
	border-color:#fff;
	background:#ccc;
}

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

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