/*Bootstrap port*/
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
  font-family: "Gentium Book Basic", "Palatino", Georgia, serif;  
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, .25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, .25);
  border-left-width: 0;
}
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, .25);
}
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, .25);
}
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}

/*Mine*/
pre,
code {
  color: #444;
  font-family: 'Inconsolata', 'Consolas', Monaco, "Droid Sans Mono", monospace !important;
  font-weight: 200;
  font-size: 0.9em;
  width:100%;
  max-width:600px;
}
code {
  background-color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #969696;
}
pre code {
  border: none;
}
pre {
  position: relative;
  padding: 2px 6px !important;
  margin-bottom: 1em;
  background-color: #fff;
  border-width: 0px !important;
  line-height: 1.25em; 
}
word {
  padding: 5px 15px;
  cursor: pointer;
  color: #CE3816;
  background-color: rgba(206,56,22,0.1);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-weight: 700;
  transition: background-color 300ms;
  -webkit-transition: background-color 300ms;
  -moz-transition: background-color 300ms;
  -o-transition: background-color 300ms;
  -ms-transition: background-color 300ms;
}
word:hover {
  background-color: rgba(206,56,22,0.2);
  text-decoration: none;
}
.popover {
  width: 50%;
  max-width: 600px;
  padding: 6px;
  -webkit-border-radius: 4;
  -moz-border-radius: 4;
  border-radius: 4;
  font-family: "Gentium Book Basic", "Garamond", serif;
  font-size: 0.8em;
}
.popover .popover-title {
  margin-top: 6px;
  padding-bottom: 0;
  border-bottom: none;
  background-color: #fff;
  font-size: 1.25em;
  font-weight: 700;
}
.popover .popover-content {
  padding-top: 0;
  font-family: "Gentium Book Basic", "Garamond", serif;
}
.popover .popover-content h1,
.popover .popover-content h2,
.popover .popover-content h3 {
  margin-bottom: 6px;
  padding-bottom: 3px;
  font-family: "Gentium Book Basic", "Garamond", serif;
  font-size: 1em;
  font-style: italic;
  border-bottom: 1px solid #c0c0c0;
  color: #c0c0c0;
}
.popover .popover-content a {
  padding-left: 10px;
}
.popover .popover-content p,
.popover .popover-content li {
  margin-bottom: 0.5em;
}
.popover .popover-content pre.prettyprint {
  border: none !important;
}
.popover .popover-content span.source {
  font-weight: 700;
}
.popover .popover-content span.source::before {
  content: '\f21b';
  font-family: "Ionicons";
  font-size: 0.35em;
  padding-right: 6px;
}
