@charset "utf-8";
body {
  width: 100%;
  background-image: url("bg.jpg");
  background-size:  cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
}
li {
  list-style: none;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
a:hover {
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
a img {
  transition: 0.1s;
}
a img:hover {
  transform: scale(1.02);
}
.fluid img {
  width: 100%;
  height: auto;
}
.note {
  font-size: 0.7rem;
  line-height: 1.7em;
}
@media screen and (max-width: 992px) {
  .container {
    width: 100%;
  }
  .note {
    font-size: 0.6rem;
  }
}