/* site defaults */
body {
  font-size: 120%; }

/* formatting ... */
a {
  position: relative;
  text-decoration: none;
  border-bottom: 1px solid #333333;
  padding-right: 15px;
  color: #000000; }
  a:after {
    /* internal: icon */
    content: '\21D9';
    position: absolute;
    right: 0;
    bottom: 2px;
    font-size: 70%; }
  a[href^="http:"], a[href^="https:"] {
    /* external: icon */ }
    a[href^="http:"]:after, a[href^="https:"]:after {
      content: '\21D7'; }
  a[href^="#"] {
    /* anchor: icon */ }
    a[href^="#"]:after {
      content: '\21F3'; }

abbr, acronym {
  position: relative; }
  abbr[title], acronym[title] {
    text-decoration: none;
    /* firefox */
    border-bottom: 1px dotted #5c5c5c;
    padding-right: 20px; }
    abbr[title]:after, acronym[title]:after {
      /* icon: fragezeichen dahinter */
      content: '(?)';
      position: absolute;
      right: 0px;
      top: 10%;
      font-size: 70%; }

address {
  /* style like <code> */
  font-style: inherit;
  font-family: monospace, monospace; }

blockquote {
  background: #e6e6e6;
  border-left: 10px solid #bfbfbf;
  margin: 20px 0;
  padding: 10px; }

big {
  /* not really pretty -> how to visualize this */
  font-size: inherit;
  font-weight: 700; }

comment {
  position: relative;
  color: #333333;
  padding-left: 20px; }
  comment:before {
    content: '//';
    position: absolute;
    left: 5px;
    top: 0; }

del {
  background-color: #bfbfbf;
  padding: 0 5px; }

em {
  position: relative;
  font-style: inherit;
  padding-right: 15px;
  font-weight: 700; }
  em:after {
    content: '(!)';
    position: absolute;
    right: 0;
    top: 10%;
    font-size: 70%; }

ins {
  text-decoration: none;
  border-bottom: 1px dotted #333333; }

kbd {
  /* key tab visualisation */
  border: 1px solid #333333;
  border-radius: 3px;
  padding: 0 5px; }

mark {
  /* sass -> many colors? */
  background-color: #96FF5E;
  padding: 0 5px; }
  mark.mark-error {
    background-color: #FC5584; }

s, strike {
  text-decoration: none;
  /*we're replacing the default line-through*/
  position: relative;
  display: inline-block;
  /* don't wrap to multiple lines */
  padding: 0 5px;
  color: #333333;
  background: -webkit-repeating-linear-gradient(135deg, transparent, transparent 10px, #bfbfbf 10px, #bfbfbf 20px);
  background: repeating-linear-gradient(-45deg, transparent, transparent 10px, #bfbfbf 10px, #bfbfbf 20px); }

samp {
  position: relative;
  padding: 0 15px; }
  samp:before {
    content: '[';
    position: absolute;
    left: 0;
    top: 0; }
  samp:after {
    content: ']';
    position: absolute;
    right: 0;
    top: 0; }

u {
  text-decoration: none;
  border-bottom: 3px double #333333
  /* 3px ist minimum */ }

ol, ul {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0; }

li {
  position: relative;
  padding: 5px 0 10px 35px;
  line-height: 25px; }
  li:before {
    font-size: 70%;
    line-height: 25px;
    vertical-align: middle;
    width: 25px;
    color: #bfbfbf;
    text-align: center;
    height: 25px;
    content: counter(item,decimal-leading-zero);
    counter-increment: item;
    position: absolute;
    left: 0;
    border: 1px solid #bfbfbf;
    border-radius: 50%;
    background: white;
    z-index: 2; }
  li:after {
    content: '';
    height: 100%;
    width: 1px;
    position: absolute;
    left: 13px;
    top: 0;
    background: #bfbfbf; }
