.popover {
  color: black;
  font-weight: normal;
  line-height: 1;
  cursor: auto;
  position: absolute;
  display: none;
  opacity: 0;
  background-color: #f2f1ec;
  border: 2px solid #AAAAAA;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: opacity 0.25s linear;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -moz-transition: opacity 0.25s linear;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.25s linear; }
  .popover.active {
    opacity: 1; }
  .popover > .triangle {
    position: absolute;
    top: -50px;
    float: left;
    font-size: 0px;
    line-height: 0%;
    width: 0px;
    border-top: 25px solid rgba(0,0,0,0);
    border-left: 25px solid rgba(0,0,0,0);
    border-right: 25px solid rgba(0,0,0,0);
    border-bottom: 25px solid #0071bb; }
  .popover > .popheader {
    font-weight: bold;
    margin: 0px;
    padding: 8px 3px 3px 3px;
    height: 18px;
    color: #b5d1e6;
    background-color: black;
    background-image: linear-gradient(top, rgb(60,136,187) 4%, rgb(13,86,146) 50%);
    background-image: -o-linear-gradient(top, rgb(60,136,187) 4%, rgb(13,86,146) 50%);
    background-image: -moz-linear-gradient(top, rgb(60,136,187) 4%, rgb(13,86,146) 50%);
    background-image: -webkit-linear-gradient(top, rgb(60,136,187) 4%, rgb(13,86,146) 50%);
    background-image: -ms-linear-gradient(top, rgb(60,136,187) 4%, rgb(13,86,146) 50%);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border: 2px solid #AAAAAA;
    text-align: center; }
  .popover > .popcontent {
    width: 600px;
    padding:5px;
    overflow-x: hidden;
    overflow-y: auto; }