/**
 * layout
 * standard classes
*/
.st__clear:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}
.st__clear { 
  display: block; /* safari */
}
.st__fleft {
  float: left;
}
.st__fright {
  float: right;
}
.st__nofloat {
  float: none;
}
.st__block {
  display: block;
}
.st__absolute {
  position: absolute;
}
.st__center {
  text-align: center;
}
.st__normal {
  font-weight: normal;
}

/**
 * typo
 * standard classes
*/
.st__pointer {
  cursor: pointer;
}
.st__move {
  cursor: move;
}
.st__cursor_def {
  cursor: default;
}
.st__underline {
  text-decoration: underline;
}
.st__underline:hover {
  text-decoration: none;
}
.st__noline {
  text-decoration: none;
}
.st__noline:hover {
  text-decoration: underline;
}
.st__bold {
  font-weight: bold;
}

/**
 * form
 * standard classes
*/
input.st__text {
  height: 16px;
  padding: 2px 0 0 3px;
}
input.st__radio,
input.st__checkbox {
  background: none;
  height: 13px;
  width: 13px;
}
input.st__submit {
  border: none;
  cursor: pointer;
  font: 12px arial, verdana, sans-serif;
}
