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

html, body, * {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px;
	font-style: inherit;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 150%;
}

h2 {
  font-size: 130%;
}

h3 {
  font-size: 110%;
}

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

strong {
  font-weight: bold;
}

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

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

/** 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;
}

/* use this with spans to break the line e.g. after slashes or hyphens */
.break {
  visibility: hidden;
  line-height:0.1%;
  font-size:0.1%;
  text-decoration: none !important;
}

