/**
 * COLORS
 * $Id: classes.css,v 1.2 2005/07/15 16:30:55 Yoyo Exp $
 */
.grey, .grey * {
  color: #888;
}
.red, .red *, .error, .error * {
  color: red!important;
}
.orange, .orange * {
  color: #F60;
}
a.grey:hover, .grey a:hover {
  color: #333;
}

/**
 * ALIGNEMENTS
 */
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.justify {
  text-align: justify;
}
.float-right {
  float: right;
}

/**
 * FLOATS
 */
.float-right {
  float: right;
}
.float-left {
  float: left;
}
.clear {
  clear: both;
}


/**
 * FORMS
 */
input.large, select.large {
  width: 50%;
}
input.big, select.big, textarea.big {
  width: 1000%;
}
table.form {
  width: 99%;
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: collapse;
}
table.form th {
  width: 25%;
  text-align: right;
  vertical-align: top;
  padding-top: 3px;
}
table.form td {
  width: 75%;
}
table.form input, table.form select {
  width: 80%;
}
table.form textarea {
  width: 99%;
}


/**
 * FONTS
 */
.italic {
  font-style: italic;
}
.strong, .b {
  font-weight: bold;
}
.no-underline, .no-underline * {
  text-decoration: none!important;
}
.underline, .underline * {
  text-decoration: underline;
}
.small {
  font-size: 0.8em;
}

/**
 * BORDERS
 */
.border-top {
  border-top: 1px dotted #CCC;
}
img.border {
  border: 1px solid #CCC;
}

/**
 * MISC
 */
.no-display {
  display: none;
}