@CHARSET "ISO-8859-1";

/* Bloc image */
#mybox #imgAbs {
	display: none;
	position: fixed;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: black;
	z-index:1001;
	-moz-opacity: 0.8;
	opacity:.80;
	filter: alpha(opacity=80);
}
#mybox #imgCont {
	display: none;
	position: fixed;
/*
	top: 10%;
	left: 25%;
	width: 50%;
	height: 80%;
*/
	padding: 10px;
	border: 2px solid #ccc;
	background-color: white;
	z-index:1002;
	overflow: auto;
	text-align:center;
/*
	border-bottom-width: 30px;	
	padding-bottom: 30px;
*/	
}
#mybox #imgInner {
	background-color: blue;
	width:100%;
	height:100%;
	border: 1px solid #BBB;
}

/* ie6 hack */ 
* html #mybox #imgAbs, * html #mybox #imgCont { 
	position: absolute; 
}
#mybox #imgClose {
	display: none;
	position: absolute;
	top: 10px;
	right: 10px;
	height: 30px;
	width: 30px;
	background: url('closebox.png') top left no-repeat;
	cursor: pointer;
	z-index: 1003;
}

