/* FIXME this styles must be in common blocks CSS */

/* Fullview */
	#ipix-fullview{
		position:absolute;
		z-index:3001000;
		border:1px solid #D3D3D3;
		background:#FFF;
		box-shadow:0 4px 20px -5px #000;
		-moz-box-shadow:0 4px 20px -5px #000;
		-webkit-box-shadow:0 4px 20px -5px #000;
		/* -moz-transition:top 0.1s; */
		}
	#ipix-fullview-core{
		}
	#ipix-fullview-title-wrap{
		position:relative;
		margin:0;
		font-size:1.5em;
		font-weight:normal;
		}
		#ipix-fullview-close{
			display:none;
			position:absolute;
			z-index:10;
			right:-13px;
			top:-13px;
			width:27px;
			height:27px;
			overflow:hidden;
			cursor:pointer;
			background:url('../i/picviewer.png') no-repeat -200px 0;
			}
			#ipix-fullview-close:hover{
				background-position:-200px -50px;
				}
			#ipix-fullview:hover #ipix-fullview-close{
				display:block;
				}
	#ipix-fullview-img-wrap{
		position:relative;
		z-index:5;
		}
		#ipix-fullview-img-wrap .ipix-fullview-clickable{
			display:block;
			position:absolute;
			z-index:1001;
			top:0;
			bottom:0;
			width:50%;
			cursor:pointer;
			}
			.ipix-fullview-animated .ipix-fullview-clickable{
				visibility:hidden;
				}
		#ipix-fullview-clickable-l{
			left:0;
			}
		#ipix-fullview-clickable-r{
			right:0;
			}
		#ipix-fullview-img-wrap .ipix-fullview-arrow{
			display:none;
			position:absolute;
			top:50%;
			width:80px;
			height:88px;
			margin:-50px 0 0;
			background-image:url('../i/picviewer.png');
			background-repeat:no-repeat;
			}
			#ipix-fullview-img-wrap .ipix-fullview-clickable:hover .ipix-fullview-arrow{
				display:block;
				}
		#ipix-fullview-clickable-l .ipix-fullview-arrow{
			left:-48px;
			background-position:0 0;
			}
		#ipix-fullview-clickable-r .ipix-fullview-arrow{
			right:-48px;
			background-position:-100px 0;
			}
	#ipix-fullview-img{
		display:block;
		width:500px;
		height:500px;
		text-align:center;
		}
	#ipix-fullview-dsc{
		max-width:640px;
		font-size:1em !important;
		color:#000 !important;
		}
		#ipix-fullview-title{
			padding:0.3em 30px;
			margin:0 0 0.15em;
			font-size:1.25em;
			font-weight:bold;
			color:#000 !important
			}
		#ipix-fullview-text{
			padding:1em 30px;
			overflow:hidden;
			}
		.ipix-fullview-animated #ipix-fullview-dsc{
			visibility:hidden;
			}
		
	/* Loader */
		#ipix-fullview:after{
			display:block;
			opacity:0;
			position:absolute;
			z-index:1;
			top:50%;
			left:50%;
			margin:-8px 0 0 -8px; 
			content:' ';
			width:16px;
			height:16px;
			background:url('../i/loader.gif') no-repeat center center;
			-moz-transition:opacity 4s;
			}
		#ipix-fullview.ipix-fullview-animated:after{
			opacity:1;
			}
/* Overlay */
	.picviewer-overlay{
	    position:fixed;
	    top:0;
	    left:0;
		z-index:300999;
	    height:100%;
	    width:100%;
	    opacity:0.6;
		background: none repeat scroll 0 0 #FFFFFF;
		}