html, body {
  background-color: #000;
  padding:0px;
  margin:0px;
}
#main {
  left:0px;
  top:0px;
  bottom:0px;
  right:0px;
  position:absolute;
}
#col_left {
  position:absolute;
  top:0px;
  bottom:0px;
  right:50%;
  margin-right: 245px;
  left:0px;
}
#col_left #img_vertical_left {
  height:100%;
  width:90px;
  background-image: url(../gfx/vertikal_line_left.gif);
  background-repeat: repeat-y;
  position: absolute;
  right:50px;
}
#col_center {
  position:absolute;
  height:100%;
  left:50%;
  width:450px;
  margin-left: -225px;
}
#col_center #pulse_top {
  position:absolute;
  top:50px;
  margin-left: 105px;
  width:240px;
  height:240px;
  overflow: hidden;
}
#col_center #pulse_center {
  position:absolute;
  top:300px;
  margin-left:9px;
  background-image: url(../gfx/pulse_center.gif);
  width:432px;
  height:196px;
  background-position: center;
}
#col_center #pulse_bottom {
  position:absolute;
  top:507px;
  margin-left: 105px;
  width:240px;
  height:240px;
  overflow: hidden;
}
#col_right {
  position:absolute;
  top:0px;
  bottom:0px;
  left:50%;
  margin-left: 245px;
  right:0px;
}
#col_right #img_vertical_right {
  height:100%;
  width:90px;
  background-image: url(../gfx/vertikal_line_right.gif);
  background-repeat: repeat-y;
  position: absolute;
  left:50px;
}
#bottom_line {
  position:absolute;
  left:50%;
  margin-left:-225px;
  width:450px;
  bottom:0px;
  height:40px;
  text-align: center;
  color: #FFF;
  line-height: 40px;
  font-size: 0.9em;
  background-color: #000;
}
#bottom_left_tile {
  position:absolute;
  left:0px;
  bottom:0px;
  width:216px;
  height:288px;
  color:orange;
}
#bottom_left_tile:hover {
  cursor:pointer;
}
#bottom_right_tile {
  position:absolute;
  right:0px;
  top:0px;
  width:334px;
  height:96px;
  background-image: url(../gfx/bottom_right.gif);
}
/* Quick-zoom Container */
@keyframes img-hover-zoom--quick-zoom {
  from {
    transform: scale(1);
    transform-origin: 120 120;
  }
  to {
    transform: scale(2);
    transform-origin: 120 120;
  }
}
.img-hover-zoom--quick-zoom img {
  animation-duration: .25s;
  animation-iteration-count: infinite;
  animation-name:img-hover-zoom--quick-zoom;
  animation-timing-function: ease-in;
  animation-direction: alternate;
}
@keyframes img-hover-zoom--zoom-n-rotate {
  from {
    transform: scale(1) rotate(0deg);
  }
  to {
    transform: scale(2) rotate(25deg);
  }
}
.img-hover-zoom--zoom-n-rotate img {
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name:img-hover-zoom--zoom-n-rotate;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}
