.threesixty {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.threesixty .threesixty_images {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.threesixty .threesixty_images img {
  position: absolute;
  top: 0;
  max-width: 100%;
	max-height: 100%;
}
.threesixty .threesixty_images img.previous-image {
  visibility: hidden;
  /*
           Do not put here any other styles.
           It causes massive recalc / repaints and image flickering,
           especially on Firefox.
        */

}
.threesixty .threesixty_images img.current-image {
  visibility: visible;
  /*
           Do not put here any other styles.
           It causes massive recalc / repaints and image flickering,
           especially on Firefox.
        */

}
.threesixty .spinner {
  width: 60px;
  display: block;
  margin: 0 auto;
  height: 30px;
  background: #333;
  background: rgba(0, 0, 0, 0.7);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.threesixty .spinner span {
  font-family: Arial, "MS Trebuchet", sans-serif;
  font-size: 12px;
  font-weight: bolder;
  color: #FFF;
  text-align: center;
  line-height: 30px;
  display: block;
}
.threesixty .nav_bar {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 11;
}
.threesixty .nav_bar a {
  display: block;
  width: 32px;
  height: 32px;
  float: left;
/*  background: url(../images/sprites360.png) no-repeat;*/
  text-indent: -99999px;
}
.threesixty .nav_bar a.nav_bar_play {
/*  background-position: 0 0 !important;*/
	position: relative;
}
.threesixty .nav_bar a.nav_bar_play:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	top: 0;
	left: 4px;
	border: 20px solid transparent;
	border-left: 27px solid #dde8f0;
}
.threesixty .nav_bar a.nav_bar_play:hover:after {
	border-left: 27px solid #f78230;
}
.threesixty .nav_bar a.nav_bar_previous {
	background: url(../img/arrows-sprite.png) no-repeat;
	width: 25px;
	height: 42px;
	margin: 0 10px;
	background-position: 0px -132px;
/*  background-position: 0 -73px !important;*/
}
.threesixty .nav_bar a.nav_bar_previous:hover {
	background-position: 0px -90px;
}	
.threesixty .nav_bar a.nav_bar_stop {
/*  background-position: 0 -37px !important;*/
	position:relative;
}
.threesixty .nav_bar a.nav_bar_stop:before,
.threesixty .nav_bar a.nav_bar_stop:after {
	content: '';
	position: absolute;
	width: 7px;
	height: 42px;
	top: 0;
	left: 5px;
	background: #dde8f0;
}
.threesixty .nav_bar a.nav_bar_stop:after {
	left: inherit;
	right: 5px;
}
.threesixty .nav_bar a.nav_bar_stop:hover:before,
.threesixty .nav_bar a.nav_bar_stop:hover:after {
	background:#f78230;
}

.threesixty .nav_bar a.nav_bar_next {
	background: url(../img/arrows-sprite.png) no-repeat;
	width: 25px;
	height: 42px;
	margin: 0 10px;
	background-position: 0px -42px;
/*  background-position: 0 -104px !important;*/
}
.threesixty .nav_bar a.nav_bar_next:hover {
	background-position: 0px 0px;
}	
/* html */
.threesixty:-webkit-full-screen {
  background: #ffffff;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding-top: 200px;
}
.threesixty:-moz-full-screen {
  background: #ffffff;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding-top: 200px;
}
