/*
 * 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-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1104;
	display: none;
}
#fancybox-loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	background-image: url('http://showrooms.dcdesigncenter.com/admin/resources/wdc/images/frontend/fancybox/fancy_loading.png');
}
#fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1100;
	display: none;
	background:rgba(63,61,62,0.5) none!important;
}
#fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}
#fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	z-index: 1101;
	outline: none;
	display: none;
}
#fancybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
        min-width: 250px;
	background: #fff;
	border: 0px solid #fff;
	-moz-box-shadow: 0 0 10px 10px rgba(53,52,53,0.4);
	-webkit-box-shadow: 0 0 10px 10px rgba(53,52,53,0.4);
	box-shadow: 0 0 10px 10px rgba(53,52,53,0.4);
	padding: 10px 20px;
}
#fancybox-content {
	width: 0;
	height: 0;
	outline: none;
	position: relative;
	overflow: hidden;
	z-index: 1102;
	border: 0px solid #fff;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#fancybox-content.gallery-fancy-content{
	padding-top: 30px;
}
#fancybox-close {
	position: absolute;
        top: 12px;
        right: 12px;
	width: 23px;
	height: 23px;
	background: transparent url(http://showrooms.dcdesigncenter.com/admin/resources/wdc/images/frontend/fancybox/close.png) no-repeat;
	cursor: pointer;
	z-index: 1103;
	display: none;
}
#fancybox-error {
	color: #444;
	font: normal 12px/20px Arial;
	padding: 14px;
	margin: 0;
}

#fancybox-img {
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	line-height: 0;
	vertical-align: top;
}
#fancybox-left {
	left: 30px;
	display: none;
}
#fancybox-right {
	right: 30px;
	display: none;
}
#fancybox-left-ico, 
#fancybox-right-ico {
	position: absolute;
	bottom: 16px;
	width: 16px;
	height: 16px;
	margin-top: -15px;
	cursor: pointer;
	z-index: 1102;
	display: block;
}
#fancybox-left-ico {
	left: 30px;
}
#fancybox-right-ico {
	right: 30px;
}
#fancybox-left-ico {
	background: url("http://showrooms.dcdesigncenter.com/admin/resources/wdc/images/frontend/showrooms_profile/previous.png") top left no-repeat; 
}
#fancybox-right-ico {
	background: url("http://showrooms.dcdesigncenter.com/admin/resources/wdc/images/frontend/showrooms_profile/next.png") top left no-repeat; 
}
#fancybox-left:hover, 
#fancybox-right:hover {
	visibility: visible; /* IE6 */
}

/* IE6 */

.fancybox-ie6 #fancybox-close { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_close.png', sizingMethod='scale'); }
#fancybox-loading.fancybox-ie6 {
	position: absolute; margin-top: 0;
	top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px');
}
#fancybox-loading.fancybox-ie6 div	{ background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_loading.png', sizingMethod='scale'); }

/* IE6, IE7, IE8 */

.fancybox-ie .fancybox-bg { background: transparent !important; }




/*--------new -----------------------*/
#fancybox-title-float
{
    display: block;
    clear: both;
    margin-bottom: 20px;
    height: 65px;
    min-width: 200px;
}
#fancybox-title-float img {
    float:left;
    margin:0 10px 0 0;
}
#fancybox-title-float {
    display:block;
    text-align:left;
}
#fancybox-title-float span {
    font-size:16px;
    font-weight:bold;
    color:#333;
}
#fancybox-title-float span.name {
    display:inline;
    color:#4B80DA;
    font-size:12px;
    font-weight:normal;
    padding:0;
}