#oscarheader {
  position: absolute;
  bottom: 0;
  right: 80px;
  overflow: hidden;

  width: 116px;
  height: 90px;

  background: url(/images/oscars/oscar_header.png) 0 0 no-repeat;
  zoom: 1;

  -webkit-transition: all 0.2s linear;
     -moz-transition: all 0.2s linear;
      -ms-transition: all 0.2s linear;
       -o-transition: all 0.2s linear;
          transition: all 0.2s linear;
}

#oscarheader:hover {
  background: url(/images/oscars/oscar_header_on.png) 0 0 no-repeat;
  cursor: pointer;
}

#oscarheader div {
  position: absolute;
  display: block;
  bottom: -30px;
  width: 100%;

  padding: 2px;
  border: 1px solid #777;
  border-bottom: 0;

  text-align: center;
  color: #FFF;
  font-size: 12px;
  text-shadow: 1px 1px 2px #111;

  border-radius:         7px 7px 0 0;
  -moz-border-radius:    7px 7px 0 0;
  -webkit-border-radius: 7px 7px 0 0;

  background-color: #3d3525;
  background: -webkit-gradient(radial,center center,0,center center,460,from(#75674b),to(#3d3525));
  background: -webkit-radial-gradient(circle,#75674b,#3d3525);
  background: -moz-radial-gradient(circle,#75674b,#3d3525);
  background: -ms-radial-gradient(circle,#75674b,#3d3525);

  -webkit-transition: all 0.2s linear;
     -moz-transition: all 0.2s linear;
      -ms-transition: all 0.2s linear;
       -o-transition: all 0.2s linear;
          transition: all 0.2s linear;
}

#oscarheader:hover div {
  bottom: 0;
}