

#bgslider {
	height: 100%;
	width: 100%;
    position:absolute;
	z-index:0;
	top: 0;
	left: 0;
	overflow: hidden;
}

#bgslider img {
    position:absolute;
    top:0;
    left:0;
    z-index:8;
    opacity:0.0;
}

#bgslider img.active {
    z-index:10;
    opacity:1.0;
}

#bgslider img.last-active {
    z-index:9;
}

#bgslider img {
	/* Set rules to fill background */
	min-height: 100%;
	min-width: 1024px;
			
	/* Set up proportionate scaling */
	width: 100%;
	height: auto;
			
	/* Set up positioning */
	position: absolute;
	top: 0;
	left: 0;
}



@media (max-width: 767px) {
	#bgslider img {
		min-height: auto;
		min-width: auto;
				
		/* Set up proportionate scaling */
		width: 100%;
		height: auto;
				
		/* Set up positioning */
		position: absolute;
		top: 70px;
		left: 0;
	}
}
