

div.fadeShow-container
{
	position: relative;
	width: 100%;
	height: 100%;
	background-color:rgba(255,255,255,0.3);
/* background: -moz-linear-gradient(239deg, rgba(48,69,255,1) 0%, rgba(128,10,128,1) 100%);  */
/* background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(128,10,128,1)), color-stop(100%, rgba(48,69,255,1)));  */
/* background: -webkit-linear-gradient(239deg, rgba(48,69,255,1) 0%, rgba(128,10,128,1) 100%);  */
/* background: -o-linear-gradient(239deg, rgba(48,69,255,1) 0%, rgba(128,10,128,1) 100%);  */
/* background: -ms-linear-gradient(239deg, rgba(48,69,255,1) 0%, rgba(128,10,128,1) 100%);  */
/* background: linear-gradient(211deg, rgba(48,69,255,1) 0%, rgba(128,10,128,1) 100%); */
/* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3045FF', endColorstr='#800A80',GradientType=0 );  */
	overflow: hidden;
}

div.fadeShow-container
  div.image
{
	position: absolute;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: 100% auto;
	background-repeat: no-repeat;
	transition: opacity 1.5s ease-in-out;
	-moz-transition: opacity 1.5s ease-in-out;
	-webkit-transition: opacity 1.5s ease-in-out;
	opacity: 0;
}


div.fadeShow-container
  div.image.fillHeight
{
	background-size: auto 100%;
}

div.fadeShow-container
  div.image.active
{
	z-index: 3;
	opacity: 1;
}

div.fadeShow-container
  div.image.inactive
{
	z-index: 2;
	opacity: 0;
}

div.fadeShow-container
  div.image
  	img
{
	width: 100px; /* leave this at 100px, we do calculations based on that number*/
	display: none;
}

