/** 
*	CSS	RESET
*/

html, body, div, h1, h2, h3, ul, ol, li, form, fieldset, input, textarea {
    margin: 0;
    padding: 0;
}

ul {
	list-style: none;
}

img, fieldset {
	border: 0 none;
}

img {
	margin: 0;
	padding: 0;	
}

h1, h2, h3 {
	font-weight: normal;
}

em {
	font-style: italic;
}

strong {
	font-weight: bold;
}

ol,ul {
	list-style:none;
}

a {
	outline:none;
}

/**
*	GENARAL SETTINGS
*/

body {
	background: #4c4e4d;
	color: #474747;
	font-family:  Helvetica, Arial, sans-serif;
	font-size: 13px;	
}

h1,h2,h3,h4,h5,h6 {
	margin: 0 0 15px 0;
}

h1 {
	font-size: 24px;
	font-weight: bold;
}

h2 {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 10px 0;
}

h3 {
	color:#000000;
	font-size:14px;
	font-weight:bold;
	margin: 0 0 15px 0;
}

h4 {
	color: #010000;
	font-size: 11px;
	font-weight: bold;	
	margin: 0 0 15px 0;	
}

a:link,
a:visited,
a:active {
	color: #0044cc;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

p {
	margin: 0 0 15px 0;
}

ul {
	margin: 10px 0;
	padding-left: 50px;
}

li {
	padding: 5px 0;
}

.img-left {
	float: left;
	margin: 0 10px 10px 0;
}

.img-right {
	float: right;
	margin: 0 0 10px 10px;
}

.left {
	float: left;
}

.right {
	float: right;
}

.txt-right {
	text-align: right;
}

.txt-left {
	text-align: left;
}

/** 
*	CLEAR FIX
*/


.clearfix {
	display: block;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	font-size:1px;
}

.clr {	
	clear: both;
}