.threesixty {
  position: relative;
  margin: 0 auto;
  max-height: 100%;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: auto;

  /* REMOVED BY SIMON 
    overflow: hidden; */

  /* ADDED BY SIMON */
  min-width: 300%;
  left: -415px;
  top: -55px;
  margin-bottom: 150px;
  padding-bottom: 150px;
  max-width: 1200px;

}
.threesixty.light a, .threesixty.light a:hover, .threesixty.light a:visited {
  color: #ddd;
  text-decoration: none;
}
.threesixty.dark a, .threesixty.dark a:hover, .threesixty.dark a:visited {
  color: #222;
  text-decoration: none;
}
.threesixty .threesixty_images {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.threesixty .threesixty_images img {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
}
.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);
  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;
  font-size: 2em;
  width: 32px;
  height: 32px;
  float: left;
}
.threesixty .nav_bar a.nav_bar_play:before {
  content: "\f04b";
}
.threesixty .nav_bar a.nav_bar_previous:before {
  content: "\f04a";
}
.threesixty .nav_bar a.nav_bar_stop:before {
  content: "\f04c";
}
.threesixty .nav_bar a.nav_bar_next:before {
  content: "\f04e";
}
.threesixty a#fs {
  z-index: 12;
  display: block;
  position: absolute;
  font-size: 1.5em;
  width: 26px;
  height: 26px;
  right: 5px;
  bottom: 5px;
  cursor: pointer;
}
.threesixty a#fs.off:before {
  content: "\f2d0";
}
.threesixty a#fs.on:before {
  content: "\f2d2";
}

.info {
  position: absolute;
  height: 30px;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: center;
}

/* html */
:-webkit-full-screen body,
:-moz-full-screen body {
  background: blue;
}
:-webkit-full-screen .threesixty,
:-moz-full-screen .threesixty {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
