/*
	Sets the style of the image slider wrapper <div> to be centered horizontally and vertically.
	It also sets its default dimensions and the overflowing hidden (to fix the IE image positioning bug).
*/
.threesixty {
	position:relative;
	/* This one fixes the IE positioning bug */
	overflow:hidden;
	width:960px;
	height:625px;
	margin: 0 auto;
}
.sixtyicon{
	background: url(/image/catalog/ui/360.png) no-repeat;
	width: 106px;
    height: 38px;
    position: absolute;
    right: 5%;
    top: 10%;
    z-index: 1;
}
.sixtytxt{
	POSITION: absolute;
    top: 109%;
    font-size: 16px;
    width: 9em;
    left: 50%;
    color: #666;
    margin-left: -4em;
}
/*
	Defines the criteria for the max. 1024px wide tablets portrait mode and sets the image slider dimensions and centering according to it.
*/
@media (max-width:998px) {
	.threesixty {
		width:720px;
		height:468px;
	}
}
@media (max-width:768px) {
	.threesixty {
		width:580px;
		height:380px;
	}
	.sixtyicon{
		background-size: contain;
		width: 80px;
		height: 28px;
		top: 5%;
		right:3%;
	}
	.sixtytxt{
		font-size: 12px;
		margin-left: -4.5em;
	}
}
@media (max-width:600px) {
	.threesixty {
		width:460px;
		height:300px;
	}
}
/*
	Defines the criteria of the max. 480px wide mobiles' landscape mode and sets the image slider dimensions and centering according to it.
*/
@media (max-width:480px) {
	.threesixty {
		width: 116vw;
	    height: 74vw;
	    margin-left: -8vw;
	}
	.sixtyicon{
		background-size: contain;
		width: 80px;
		height: 28px;
		top: 0;
		right: 16%;
	}
}
/*
	Defines the criteria of the max. 480px wide mobiles' portrait mode and sets the image slider dimensions and centering according to it.
*/
@media	screen and (max-device-width: 480px) and (orientation:portrait),
				screen and (-webkit-min-device-pixel-ratio: 2) and (orientation:portrait) {
	.threesixty {
		
	}
}
/*
	Makes the image slider invisible by default
*/
.threesixty_images {
	display: none;
}
/*
	Sets every image in the slider to be absolute positioned and dynamically sized.
*/
.threesixty img {
	position:absolute;
	/* This one fixes the IE positioning bug */
	top:0;
	width:100%;
	height:auto;
}
/*
	Sets the style of the visible current frame of the image slider animation
*/
.current-image {
	visibility:visible;
	width:100%;
}
/*
	Sets the style of the visible "previous" frame of the image slider animation
*/
.previous-image {
	visibility:hidden;
	width:0;
}
/*
	Sets the dimensions of the CanvasLoader placeholder <div>, it also centeres it horizontally and vertically inside the wrapper and makes it invisible by default
*/
#spinner {
	position:absolute;
	left:50%;
	top:50%;
	width:90px;
	height:90px;
	margin-left:-45px;
	margin-top:-50px;
	display:none;
}
/*
	Sets the style of the percentage <span> of the preloader by setting its dimensions and centering it horizontally and vertically 
*/
#spinner span {
	position:absolute;
	top:50%;
	width:100%;
	color:#333;
	font:0.8em Arial, Verdana, sans;
	text-align:center;
	line-height:0.6em;
	margin-top:-0.3em;
}