/*******************************************************************************
  *Copyright 2009, 2010 Innovation Gate GmbH. All Rights Reserved.
  *
  *This file is part of the OpenWGA server platform.
  *
  *OpenWGA is free software: you can redistribute it and/or modify
  *it under the terms of the GNU General Public License as published by
  *the Free Software Foundation, either version 3 of the License, or
  *(at your option) any later version.
  *
  *In addition, a special exception is granted by the copyright holders
  *of OpenWGA called "OpenWGA plugin exception". You should have received
  *a copy of this exception along with OpenWGA in file COPYING.
  *If not, see <http://www.openwga.com/gpl-plugin-exception>.
  *
  *OpenWGA is distributed in the hope that it will be useful,
  *but WITHOUT ANY WARRANTY; without even the implied warranty of
  *MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *GNU General Public License for more details.
  *
  *You should have received a copy of the GNU General Public License
  *along with OpenWGA in file COPYING.
  *If not, see <http://www.gnu.org/licenses/>.
 ******************************************************************************/
/***
 * Image zoomer:
 */
.ext-el-mask {
	background-color:black;
	height:100%;
	left:0;
	opacity:0.8;
	filter: alpha(opacity=80);
	position:absolute;
	top:0;
	width:100%;
	z-index:20000;
}

#modal-image{
	position: absolute;
	top: -10000px;
	left: -10000px;
	padding: 10px;
	background-color: #555555;
	color: white;
	/*border: solid gray 1px;*/
	overflow: hidden;
	
	box-shadow: 0 0 50px #222222;
	-moz-box-shadow: 0 0 50px #222222;
	-webkit-box-shadow: 0 0 50px #222222;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	text-align: center;
}
#modal-image *{
	font: 12px verdana;
	color: #efefef;
}
#modal-image .loading{
	position: absolute;
	padding: 10px 0 0 40px;
	height: 100px;
	text-align: left;
}
#modal-image img{
	padding: 0px;
}
#modal-image .img-title{
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	width: 80%;
}

.img-info{
	position: absolute;
	background: black;
	overflow: auto;
	display: none;
}
.img-info-link{
	background: url(../../plugin-wga-app-framework/file/icons/information.png) no-repeat;
	width: 16px;
	height: 16px;
	cursor: pointer;
}
