/**
 * 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.04 / 04.07.2009
 *
 * This file contain standard comliant styles
 *
 */


a {
  color: #345678;
  outline: none; /* removing dotted links */
}

a:hover {
  color: #28425c;
}

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