/*
	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:absolute;
	/* This one fixes the IE positioning bug */
	overflow:hidden;
	top:0%;
	left:50%;
	width:960px;
	height:640px;
	margin-left:-480px;
            padding-top: 10px;

	cursor:ew-resize;
}
/*
	Defines the criteria for the max. 1024px wide tablets portrait mode and sets the image slider dimensions and centering according to it.
*/
@media screen and (max-width: 1024px) {
	#threesixty {
		width:900px;
		height:600px;
		margin-left:-450px;
	
	}
}

@media screen and (max-width: 900px) {
	#threesixty {
		width:720px;
		height:480px;
		margin-left:-360px;

	}
}
/*
	Defines the criteria of the max. 480px wide mobiles' landscape mode and sets the image slider dimensions and centering according to it.
*/
@media screen and (max-width: 720px) {
	#threesixty {
		width:540px;
		height:360px;
		margin-left:-270px;
	
	}
}
/*
	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-width: 540px) {
	#threesixty {
		width:320px;
		height:212px;
		margin-left:-160px;
	
	}
}
/*
	Makes the image slider invisible by default
*/
#threesixty_images {
	display: none;
}

#threesixty_images li {
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    text-align:center;
}
/*
	Sets every image in the slider to be absolute positioned and dynamically sized.
*/
#threesixty img {
	position:relative;
	/* This one fixes the IE positioning bug */
	margin:0 auto;
	height:100%;
	width: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;
}