/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 *
 * Version: 1.3.1 (05/03/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-loading {
	background-image: url("../../images/ajax-preload-new-2.gif");
	background-repeat: no-repeat;
	background-position: center center;
	/*background-color: rgba(0, 0, 0, .75);*/
	border-radius: 50%;
	-webkit-border-radius: 50%;
	margin: -45px 0 0 -45px;
	position: fixed;
	top: 50%;
	left: 50%;
	height: 90px;
	width: 90px;
	overflow: hidden;
	z-index: 1104;
	display: none;
}

#fancybox-loading div {
	display: none;
}

* html #fancybox-loading {	/* IE6 */
	position: absolute;
	margin-top: 0;
}

#fancybox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: #000;
	z-index: 1100;
	display: none;
}

* html #fancybox-overlay {	/* IE6 */
	position: absolute;
	width: 100%;
}

#fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}

#fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0 !important;
	margin: 0;
	z-index: 1101;
	display: none;
	width: 100% !important;
}

#fancybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
	background: transparent;
}

#fancybox-inner {
	position: static;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: 0 auto;
	outline: none;
	overflow: hidden;
}

#fancybox-hide-sel-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
}

#fancybox-close {
	position: fixed;
	top: 0px;
	right: 0px;
	width: 70px;
	height: 70px;
	background-image: url('../../images/icon-close.png');
	background-position: left bottom;
	background-color: transparent;
	cursor: pointer;
	z-index: 1103;
	display: none;
}

#fancybox_error {
	color: #444;
	font: normal 12px/20px Arial;
	padding: 7px;
	margin: 0;
}

#fancybox-content {
	height: auto;
	width: auto;
	padding: 0;
	margin: 0;
}

#fancybox-img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	line-height: 0;
	vertical-align: top;
	-ms-interpolation-mode: bicubic;
}

#fancybox-frame {
	position: relative;
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

#fancybox-title {
	position: absolute;
	bottom: 21px !important;
	left: 0;
	font-family: Arial;
	font-size: 12px;
	z-index: 1102;
}

#fancybox-title-wrap {
  background: none repeat scroll 0 0 #2A3034;
  display: block;
  text-align: left;
  width: 100%;
}

.fancybox-title-inside {
	padding: 10px 0;
	text-align: center;
	color: #333;
}

.fancybox-title-outside {
	padding-top: 5px;
	color: #FFF;
	text-align: center;
	font-weight: bold;
}

.fancybox-title-over {
	color: #FFF;
	text-align: left;
}

#fancybox-title-over {
}

#fancybox-title-wrap span {
	font-size: 13px;
	height: 32px;
	padding: 7px;
}

#fancybox-title-left,
#fancybox-title-right {
	display: none !important;
}

#fancybox-title-main {
	font-weight: normal;
	font-family: din-regular;
	line-height: 29px;
	color: #EAFF00;
}

#fancybox-left, 
#fancybox-right {
	background-color: rgba(0, 0, 0, 0);
	background-image: url("../../images/arrow-slider.png");
	background-repeat: no-repeat;
	cursor: pointer;
	display: none;
	height: 42px;
	margin-top: -30px;
	position: fixed;
	top: 50%;
	width: 60px;
	z-index: 1102;
}

#fancybox-left {
	background-position: right -99px;
	left: 0;
}

#fancybox-right {
	background-position: -80px -19px;
	right: 0;
}

.fancy-bg {
	position: absolute;
	padding: 0;
	margin: 0;
	border: 0;
	width: 20px;
	height: 20px;
	z-index: 1001;
}

