#feedbackout {
  z-index: 1000;
  position: fixed;
  top: 70px;
  right: 1px;
  width: 18px;
  padding: 40px 0;
  text-align: center;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

#feedbackout_inner {
  top: 60px;
  right: -500px;
  position: fixed;
  width: auto;
  padding: 0px;
  background: #FFFFFF;
  height: 90%;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  text-align: left;
  border:1px solid #333;
}

#feedbackout:hover {
  z-index: 1000;
  right: 0px;
}

#feedbackout:hover #feedbackout_inner {
  z-index: 1000;
  right: 0px;
  width:500px;
}

.feedbacktitle {
  display: block;
  writing-mode: lr-tb;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  right: -28px;
  top: 100px;
  font-family: inherit;
  font-size: 15px;
  font-weight: bold;
  color:rgb(4, 107, 153);
  line-height: inherit;
  border:1px solid #000;
  padding: 10px;
  background-color: #E6E8E8;
  border: 1px solid #046B99;
  border-bottom: none;
  text-align: center;
} 