/* reset section */
/* HTML5 display-role reset for older browsers */
#threesixty article,
#threesixty aside,
#threesixty details,
#threesixty figcaption,
#threesixty figure, 
#threesixty footer,
#threesixty header,
#threesixty hgroup,
#threesixty menu,
#threesixty nav,
#threesixty section {
	display: block;
}
#threesixty  {
	line-height: 1;
}
#threesixty ol, #threesixty ul, #threesixty li {
	list-style: none;
	padding: 0;
	margin: 0;
}
#threesixty blockquote, #threesixty q {
	quotes: none;
}
#threesixty blockquote:before, #threesixty blockquote:after,
#threesixty q:before, #threesixty q:after {
	content: '';
	content: none;
}
#threesixty table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
	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:50%;
	left:50%;
	width:900px;
	height:700px;
	margin-left:-450px;
	margin-top:-350px;
}

@media	screen and (max-device-width: 1199px), screen and (max-width: 899px), screen and (max-height: 699px)  {
	#threesixty {
		width:675px;
		height:525px;
		margin-left:-337.5px;
		margin-top:-262.5px;
	}
}

@media	screen and (max-device-width: 899px), screen and (max-width: 674px), screen and (max-height: 504px)  {
	#threesixty {
		width:450px;
		height:350px;
		margin-left:-225px;
		margin-top:-175px;
	}
}

@media	screen and (max-device-width: 480px), screen and (max-width: 449px), screen and (max-height: 329px)  {
	#threesixty {
		width:360px;
		height:280px;
		margin-left:-180px;
		margin-top:-140px;
	}
}

@media	screen and (max-device-width: 320px), screen and (max-width: 361px), screen and (max-height: 269px)  {
	#threesixty {
		width:270px;
		height:210px;
		margin-left:-135px;
		margin-top:-105px;
	}
}

#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;
}