/*
    ColorBox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block;}
.cboxIframe{width:100%; height:100%; display:block; border:0;}

/* 
    User Style:
    Change the following styles to modify the appearance of ColorBox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/

/* Theme made by DigitalMind 03-05-2012 www.digitalmind.be */
#cboxOverlay
	{
	background:#000;
	}
	
#colorbox
	{
	background: #FFF;
	
	/* shaduw */
    	-moz-box-shadow:  1px  1px 15px #000;
	-webkit-box-shadow:  1px  1px 15px #000;
	box-shadow:  1px  1px 15px #000;		
	}
	
    
#cboxContent
	{
	background: #FFF;
	margin-top:32px; 
	.margin-top: 20px;
	overflow:visible;
	}
	
.cboxIframe
	{
	background:#fff;
	}
	
#cboxError
	{
	padding:50px; 
	}
	
#cboxLoadedContent
	{
	background:#FFF; 
	}
	
#cboxLoadingGraphic
	{
	background:url(../images/css/loading.gif) no-repeat center center;
	}
	
#cboxLoadingOverlay
	{
	background:#000;
	}
	
#cboxTitle
	{
	position:absolute; 
	top:-21px; 
	left: 15px; 
	color:#666;
	font: normal 11px/11px arial, helvetica, sans-serif;
	display: none!important;
	}
	
#cboxCurrent
	{
	position:absolute; 
	top:-22px; 
	right:205px; 
	text-indent:-9999px;
	}
	
#cboxSlideshow,
#cboxPrevious, 
#cboxNext, 
#cboxClose
	{
	border-left: 1px dotted #ccc;		
	text-indent:-9999px; 
	width:33px; 
	height:33px; 
	position:absolute; 
	top:-33px; 
	background:url(../images/css/controls.png) no-repeat 0 0;
	}
	
#cboxPrevious
	{
	border-right: 1px dotted #ccc;			
	background-position:0px 0px; 
	right:66px;
	}
	
#cboxPrevious:hover
	{
	background-position:0px -33px;
	}
	
#cboxNext
	{
	background-position:-30px 0px; 
	right:33px;
	}
	
#cboxNext:hover
	{
	background-position:-30px -33px;
	}
	
#cboxClose
	{
	background-position:-66px 0px; 
	right:0;
	}
        
#cboxClose:hover
	{
	background-position:-66px -33px;
	}
	
.cboxSlideshow_on #cboxPrevious, 
.cboxSlideshow_off #cboxPrevious
	{
	right: 66px;
	}
	
.cboxSlideshow_on #cboxSlideshow
	{
	border-right: 1px dotted #ccc;				
	background-position:-97px 0; 
	right: 99px;
	}
        
.cboxSlideshow_on #cboxSlideshow:hover
	{
	background-position:-97px -33px;
	}
	
.cboxSlideshow_off #cboxSlideshow
	{
	border-right: 1px dotted #ccc;					
	background-position:-130px 0px; 
	right: 99px;
	}
	
.cboxSlideshow_off #cboxSlideshow:hover
	{
	background-position:-130px -33px;
	}
