/* CSS Document */

a {
 color:#006633;
}
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: #FFFFFF;
}
.oneColFixCtr #container {
	width: 600px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
}
.oneColFixCtr #mainContent {
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 20px;
	margin-left: 60px;
	font-size: medium;
	font-weight: bold;
	color: #006633;
	text-align: center;
}


/* вертикальное выравнивание для IE: */
.oneColFixCtr  #vert_text_allign_0 {
	font-size: small;
	font-style: normal;
	font-variant: normal;
	text-align: left;
	width: 100%;
	position: relative;
	height: 100%;
	overflow: hidden;
}


.oneColFixCtr  #vert_text_allign_1 {
	font-size: small;
	font-style: normal;
	font-variant: normal;
	text-align: left;
	width: 100%;
	top: 50%;
	position: absolute;
	left: 50%;
}

.oneColFixCtr  #vert_text_allign_2 {
	font-size: small;
	font-style: normal;
	font-variant: normal;
	text-align: justify;
	width: 100%;
	top: -65%;
	position: relative;
	left: -50%;
}




/* вертикальное выравнивание  для GEKO: */
.oneColFixCtr  #vert_text_allign_0_geko {
	font-size: small;
	font-style: normal;
	font-variant: normal;
	display: table;
	position: static;
	height: 80%;
	width: 100%;
	margin-left: -10px;
}


.oneColFixCtr  #vert_text_allign_1_geko {
	font-size: small;
	font-style: normal;
	font-variant: normal;
	display: table-cell;
	vertical-align: middle;
	position: static;
	text-align:center;
}

.oneColFixCtr  #vert_text_allign_2_geko {
	font-size: small;
	font-style: normal;
	font-variant: normal;
	top:auto;
	left:auto;
	margin:0 auto;
	background-position: left;
	text-align: justify;
}

