.advertising {
  background: #BF9948;
  width: 100%;
  color: black;
  font-size: 1.5em;
  text-align: center;
  margin-top: -10px;
  border-radius: 0px 0px 5px 5px;
  margin-bottom: 5px;
  line-height: 2em;
}
.advertising a {
  color: black;
}
.advertising.affix {
  position: fixed;
  top: 45px;
  left: 0px;
  width: 100%;
  margin-top: 0;
  z-index: 999999999;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.live-search-container {
  margin: 0 0 5px 0;
  padding: 5px 5px 10px 5px;
  background: #ccc;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.live-search-container.orange {
  background: #f56526;
}
.live-search-container.blue {
  background: #507dc3;
}
.live-search-container.red {
  background: #ff0000;
}
.live-search-container.dark-blue {
  background: #27436d;
}
.live-search-container.green {
  background: #379121;
}
.live-search-container .live-search-text {
  color: white;
  float: right;
  font-size: 1.5em;
  display: inline-block;
  line-height: 30px;
}
.live-search-container .live-search-form {
  position: relative;
  display: inline-block;
}
.live-search-container .live-search-form .live-search-input-container {
  background: white;
  position: relative;
  padding-right: 100px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.live-search-container .live-search-form .live-search-input-container .live-search-input {
  height: 30px;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 5px;
  -moz-border-radius-topleft: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  padding: 0 10px;
  margin: 0;
  min-width: 350px;
}
.live-search-container .live-search-form .live-search-input-container .live-search-select {
  margin: 0;
  width: 100px;
  text-align: center;
  font-size: 1em;
}
.live-search-container .live-search-form .live-search-input-container .live-search-select.live-search-custom {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 29px;
  padding: 8px 0 7px 0;
  border-left: 1px solid #ececec;
  cursor: pointer;
}
.live-search-container .live-search-form .live-search-input-container .live-search-select.live-search-custom:after {
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  display: block;
  content: ' ';
  height: 30px;
  width: 30px;
  position: absolute;
  right: 107px;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #444 transparent transparent transparent;
  margin-top: -2px;
  pointer-events: none;
}
.live-search-container .live-search-form .live-search-input-container .live-search-select.live-search-custom.live-search-customOpen:after {
  border-width: 4px 0 4px 4px;
  border-color: transparent transparent transparent #444;
  margin-top: -4px;
}
.live-search-container .live-search-form .live-search-input-container .live-search-button {
  height: 30px;
  margin: 0;
  display: inline-block;
  padding: 0 10px;
  line-height: 30px;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  min-width: 100px;
  font-weight: 400;
  font-size: 1em;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  cursor: pointer;
  background: #ececec;
  color: #444;
}
.live-search-container .live-search-form .live-search-input-container .live-search-button:hover {
  background: #f9f9f9;
  color: #444;
}
.live-search-container .live-search-form .live-search-load-box {
  display: none;
  position: absolute;
  top: 100%;
  max-height: 500px;
  left: 0;
  width: 100%;
  background: #f9f9f9;
  color: #444;
  z-index: 21;
  overflow: auto;
  padding: 10px 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block {
  margin: 0;
  padding: 0 10px;
  list-style: none;
  float: left;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block#live-search-photos {
  width: 95%;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block#live-search-sets {
  width: 95%;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block#live-search-tags {
  width: 95%;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block#live-search-tags li {
  display: inline-block;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block#live-search-tags li.header {
  display: block;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block#live-search-tags li:last-child a:after {
  content: '';
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block#live-search-tags li a:after {
  content: ',';
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block#live-search-tags li a img {
  display: none;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block#live-search-tags li a .description {
  display: none;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block#live-search-tags li a .related-photos {
  display: none;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block li {
  padding: 5px;
  margin-bottom: 5px;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block li a {
  color: #444;
  display: block;
  overflow: auto;
  text-decoration: none;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block li a img {
  float: right;
  height: 50px;
  opacity: 0.6;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block li a .description {
  display: block;
  color: #919191;
  margin-top: 5px;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block li a .related-photos {
  clear: both;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block li a .related-photos a {
  display: inline-block;
  margin: 1px 1px 1px 0;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block li a .related-photos a img {
  float: none;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block li a:hover,
.live-search-container .live-search-form .live-search-load-box ul.live-search-block li a:focus {
  text-decoration: underline;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block li a:hover > img,
.live-search-container .live-search-form .live-search-load-box ul.live-search-block li a:focus > img {
  opacity: 1;
}
.live-search-container .live-search-form .live-search-load-box ul.live-search-block li.header {
  height: auto;
  width: auto;
  background: inherit;
  font-weight: bold;
  font-size: 1.1em;
}
.live-search-container.affix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 0;
  z-index: 999999999;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.live-search-container.affix .live-search-container-inner {
  margin: 0 auto;
}
.affix .photo-tech-buttons {
  margin-left: 0px;
  margin-top: 5px;
}
.photo-tech-buttons {
  margin-left: 0px;
  display: inline-block;
}
.photo-tech-buttons .tech {
  display: inline-block;
  margin-right: 5px;
  border-radius: 5px;
  background: white;
  height: 1.8em;
}
.photo-tech-buttons .tech .decorator {
  border-width: 20px 20px 0 0px;
}
.photo-tech-buttons .tech button {
  height: 1.8em;
  margin-left: 20px;
  padding: 5px;
  border-radius: 5px;
}
.wide-layout .extra-buttons {
  height: 17px;
}
.extra-buttons {
  height: 19px;
}
.narrow .extra-buttons {
  display: none !important;
}
.extra-buttons .filter-button {
  display: table;
  background: white;
  border-radius: 5px;
  font-size: 1.1em;
  float: left;
  margin-right: 5px;
  padding: 2px;
}
.extra-buttons .filter-image {
  height: 25px;
  width: 25px;
  display: table-cell;
  vertical-align: middle;
}
.extra-buttons button {
  background: white;
  font-size: 11px;
  margin-left: 5px;
  margin-right: 5px;
  text-transform: capitalize;
  color: #555;
  line-height: 2em;
  font-weight: bold;
}
.extra-buttons .barrel {
  background: url('/images/barrel.jpg');
  background-size: 25px 25px;
}
.extra-buttons .metal {
  background: url('/images/metal.jpg');
  background-size: 25px 25px;
}
.extra-buttons .grass {
  background: url('/images/grass.jpg');
  background-size: 25px 25px;
}
.extra-buttons .sky {
  background: url('/images/sky.jpg');
  background-size: 25px 25px;
}
.extra-buttons .wood {
  background: url('/images/wood.jpg');
  background-size: 25px 25px;
}
.wide-layout .extra-buttons button {
  margin-top: 3px;
}
.extra-buttons button:hover {
  cursor: pointer;
}
.extra-buttons .studio {
  background: url('/images/studio.jpg');
  background-size: 25px 25px;
}
.extra-buttons .headtextures {
  background: url('/images/headtexture.jpg');
  background-size: 25px 25px;
}
.extra-buttons .groom {
  background: url('/images/groom.jpg');
  background-size: 25px 25px;
}
.extra-buttons .scans {
  background: url('/images/scan.jpg');
  background-size: 25px 25px;
}
.extra-buttons .street {
  background: url('/images/street.jpg');
  background-size: 25px 25px;
}
.extra-buttons .maps {
  background: url('/images/maps.jpg');
  background-size: 25px 25px;
}
.extra-buttons .costumes {
  background: url('/images/costumes.png');
  background-size: 25px 25px;
}
