/******************************************************************************
 * Font related CSS like font sizes, family, weight, alignment.               *
 ******************************************************************************/

body {
  font-size: 0.75em;
}

* {
  font-family: Arial,Verdana,Helvetica,sans-serif;
  font-size: inherit;
}

h1 {
  font-size: 150%;
}

h2 {
  font-size: 130%;
  border-bottom: 1px dotted #CCC;
  margin-top: 20px;
}

h3 {
  font-size: 110%;
}

code {
  font-family: monospace;
}

/** font weights and styles ***************************************************/

strong {
  font-weight: bold;
}

.normal {
  font-weight: normal;
  font-size: 12px;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

/* highlight text with a background color */
.highBg {
  background: #FFE8D9;
  padding: 0 1px;
}

/** horizontal alignment ******************************************************/

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.justify {
  text-align: justify;
}

/** vertical alignment ********************************************************/

.top {
  vertical-align: top;
}

.middle {
  vertical-align: middle;
}

.bottom {
  vertical-align: bottom;
}

/** other stuff ***************************************************************/

.nowrap {
  white-space: nowrap;
}

.linebreak {
  visibility: hidden !important;
  line-height: 0 !important;
  font-size: 0 !important;
  text-decoration: none !important;
  font-family: Helvetica; /* needed for Konq */
}
