HTML, BODY {
	padding: 0px;
	margin: 0px;
	font-family: 'Calibri', 'Verdana', 'Arial', 'Helvetica';
	font-size: 14px;
	height: 100%;
	width: 100%;
	background-color: black;
	color: white;
}

.main_container {
	margin-left: auto;
	margin-right: auto;
	width: 1000px;
	height: 100%;
	border: 0px solid red;
	position: relative;
}

.main_container .header {
	height: 50px;
	position: relative;
}

.header .logo {
	float: left;
	display: inline;
	text-transform: uppercase;
	margin-top: 36px;
}

.header .contacts {
	float: right;
	display: inline;
	font-size: 13px;
	margin: 32px 0px 0px 25px;
}
.contacts A {
	color: #ffd204;
	text-decoration: none;
}
.contacts A:HOVER {
	text-decoration: underline;
}

.main_container .footer {
/*	position: absolute;
	bottom: 0px;*/
	height: 71px;
	width: inherit;
	padding-top: 50px;
}
.footer .logo {
	float: left;
	display: inline;
	padding-left: 12px;
	background-image: url('/img/logo2.png');
	background-repeat: no-repeat;
	background-position: bottom left;
	height: 71px;
	width: 260px;
}
.footer .copyright {
	float: right;
	display: inline;
	margin-top: 30px;
	font-size: 16px;
}
.clear {
	clear: both;
}