/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 * 
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */


#fancybox-overlay {
	display:none;
	
	position:fixed;
	top:0;
	left:0;
	z-index:1000;

	width:100%;

	background:#000 !IMPORTANT;
	opacity:0.60 !IMPORTANT;
	-moz-opacity:0.60 !IMPORTANT;
	filter: alpha(opacity=60) !IMPORTANT;
}

#fancybox-wrap {
	display:none;
	
	position:absolute;
	z-index: 1101;

	width:628px !IMPORTANT;
	margin:20px 0 0 20px;

	text-align:center;
}

#fancybox-wrap #fancybox-content {	
	width:620px !IMPORTANT;
	border:4px solid #006079 !IMPORTANT;
}

#fancybox-wrap #fancybox-frame {
	width:100%;
	height:100%;
}

#fancybox-close {
	position:absolute;
	right:0;
	top:0;
	z-index:1002;
	
	background:url(i_close.gif) no-repeat;
	width:23px;
	height:21px;

	cursor:pointer;
}

#fancybox-wrap #fancybox-content {
	display:table-cell;

	text-align:center;
	vertical-align:middle;
}

#fancybox-wrap #fancybox-left {
	display:none;
	
	position:absolute;
	left:0;
	top:0;

	width:30px;
	height:100%;
}

#fancybox-wrap #fancybox-right {
	position:absolute;
	right:0;
	top:0;

	width:30px;
	height:100%;
}