/**
 * Standard Cascading Style Sheets
 *
 * This CSS/CSS layout is part of Credox Framework [www.credox.org] 
 *
 *
 * @author Hristo Drumev
 * @package framework
 * @copyright Hristo Drumev [www.hdrumev.com]
 * @version 0.03 / 22.10.2007
 *
 * This file contain standard comliant styles
 *
 */

a {
  color: #2a5c77;
}

a:hover {
  color: #ca1c25;
}

a img {
  border: none;
}

hr {
  clear: both;
  width: 100%;
  height: 0px;
  border: none;
  border-top: 1px solid #000;
  margin: 7px 0;
}

/* only for IE */
* html hr { 
  margin: 0;
}

.normal {
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
}

.strong {
  font-weight: bold;
}

.em {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.floatleft {
  float: left;
}

.floatright {
  float: right;
}

.clear {
  clear: both;
  font-size: 0;
  height: 1px;
}