@charset "windows-1251";
html {
	overflow-y: scroll; /* всегда показываем вертикальную полосу прокрутки  */
}
html, body {
	height: 100%; /* чтобы подвал книзу можно было прижать */
}
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: #666666;
	line-height: 1;
}
.thrColAbsHdr #container {
	width: 950px;
	background-color: #FFF;
	min-height: 100%;
	margin: 0px auto 0px auto;
} 

img {
	outline: 0;
	border: 0 none;
	margin: 0;
	padding: 0;
}
a:link {
	text-decoration: underline;
	color: #00F;

}
h1 {
	font-size: 1.2em;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	color: #0F3D63;
	text-indent: 10px;
}


h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	text-align: left;
	text-indent: 10px;
	color: #0F3D63;
	margin-bottom: -0.1em;
}

h3 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1em;
	font-style: normal;
	text-align: center;
	color: #005A8E;
	border-bottom: 5px;
}
h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	text-align: left;
	text-indent: 10px;
	color: #0F3D63;
}


a:visited {
	text-decoration: underline;
	color: #00F;
}
a:active {
	text-decoration: underline;
	color: #00F;
}

a:hover {
	text-decoration: underline;
	color: #800000;
}




/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/
.thrColAbsHdr #header {
	height: 130px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-color: #C0C0C0;
	text-align: center;
	padding-top: 5px;
} 


.thrColAbsHdr  #navbar {
	height: 25px;
	width: auto;
	left: 3px;
	background-color: #C0C0C0;
	padding-left: 2px;
	border-bottom: 3px solid #005A8E;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;

}
ul.menu {overflow:hidden; zoom: 1;}

ul.menu li {
	width:135px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 0.8em;
	background-color: #C0C0C0;
	background-image: url(img/li-bg.gif);
	background-repeat: repeat-x;
	background-position: 0% 50%;
	float: left;
	font-weight: bold;
}

ul.menu a {
	display:block;
	height:25px;
	text-align:center;
	background-color: #C0C0C0;
	color:#400000;
	text-decoration:none;
	line-height:25px;
	white-space:nowrap;
	margin: 0 1px;
	z-index:1;
	position: relative;
				}
ul.menu a:hover {
	margin: 0 -1px;
	z-index: 2;
	border-left: 2px solid #333;
	border-right: 2px solid #333;
	background-color: #C0C0C0;
	background-image: url(img/li-a-hover.gif);
	background-repeat: repeat-x;
	background-position: 0 0;
	color: #FFF;
				}
#mainarea{
	margin: 0;
	padding: 10px 0 65px 0;
	width: auto;
	float: none;
	overflow: auto;
	}
#leftcol {
	width: 198px;
	float: left;
	}
.thrColAbsHdr #sidebar1 {
	background: #EBEBEB; /* padding keeps the content of the div away from the edges */
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #005A8E;
	border-top-style: dashed;
	border-top-width: 1px;
	border-top-color: #005A8E;
	border-bottom-color: #005A8E;
	border-bottom-style: dashed;
	border-bottom-width: 1px;
	padding-top: 5px;
}
ul.leftmenu {
	}
ul.leftmenu li {
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	font-weight: bold;
	}
ul.leftmenu a {
	color: #400000;
	text-align: left;
	line-height: 25px;
	display: block;
	height: 25px;
	padding-left: 10px;
	text-decoration: none;
	}
ul.leftmenu a:hover {
	color: #FFF;
	background-image: url(img/li-a-hover.gif);
	background-repeat: repeat-x;
	}
.thrColAbsHdr #mainContent {
	background-color: #FFFFFF;
	font-family: Tahoma, Courier New, Times New Roman, Arial;
	padding: 0 10px;
	margin-left: 200px;
	text-align: left;
}
.thrColAbsHdr #footer {
	padding: 5px 0 0 5px;
	background-color: #C0C0C0;
	border-right-width: 1px;
	border-bottom-width: 3px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #005A8E;
	border-bottom-color: #005A8E;
	height: 65px;
	position: relative;
	width: 944px;
	margin-right: auto;
	margin-left: auto;
	margin-top: -73px;
	clear: both;
	margin-bottom: auto;
} 
.tahoma70 { 
	font-family: Tahoma, Courier New, Times New Roman, Arial;
	font-size: 70%;
	text-align: left;



}
#slogo { 
	width: 60px;
	float: left;
	height: 60px;


}
#pdfcatalog { /* this class can be used to float an element left in your page */
	text-align: justify;
	padding-left: 20px;
	padding-right: 10px;
	padding-top: 10px;
	background-color: #EBEBEB;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #005A8E;
	padding-bottom: 15px;
	border-bottom-style: dashed;
	border-bottom-width: 1px;
	border-bottom-color: #005A8E;
	border-top-color: #005A8E;
	border-top-style: dashed;
	border-top-width: 1px;
	margin-top: 15px;
	height: 55px;





}

#pdficon {
	float: left;
	margin-right: 10px;






}
#counters {
	width: 247px;
	height: 60px;
	padding-left: 12px;
	float: right;
}
#threeicons {
	position: absolute;
	top: 130px;
	left: 825px;
	visibility: hidden;
}
#running {
	width: 872px;
	height: 65px;
	margin-left: 65px;

}
#run { 
	height: 30px;
	width: 595px;
	margin-top: 12px;








}
#keywords {
	height: 60px;
	width: 595px;
	margin-left: 0px;
	float: left;
	text-align: center;








}
#copyright {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.6em;
	color: #000000;
	float: right;
	margin-top: 5px;
	text-align: center;
	width: 250px;




}
#kw1  a { 
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	text-decoration: underline;









}
#kw1 { 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	text-align: center;
	color: #FFFFFF;
	font-weight: 500;
	line-height: 1.1em;
	padding: 0;
	margin-bottom: 10px;

}
p.prod {
	font-family: Tahoma, Courier New, Times New Roman, Arial;
	font-size: 0.7em;
	margin-bottom: 0.2em;
	text-align: left;
	
}

p.main {
	font-family: Tahoma, Courier New, Times New Roman, Arial;
	font-size: 0.9em;
	line-height: normal;
	color: #0F3D63;
	width: auto;
	padding-left: 10px;
	text-align: justify;
	
}
p.main_center {
	font-family: Tahoma, Courier New, Times New Roman, Arial;
	font-size: 8.5pt;
	line-height: normal;
	color: #0F3D63;
	width: auto;
	padding-left: 10px;
	text-align: center;
	
}
#table_prod {
	font-family: Tahoma, "Courier New", "Times New Roman", Arial;
	font-size: 8.5pt;
	text-align: center;
	color: #0F3D63;
}
#tr_head {
	font-family: Tahoma, "Courier New", "Times New Roman", Arial;
	color: #FFFFFF;
	background-image: url(img/table-head.gif);
	background-repeat: repeat;

}
li {
	font-size: 8.5pt;
	color: #0F3D63;
}

p.mainwti {
	font-family: Tahoma, Courier New, Times New Roman, Arial;
	font-size: 0.9em;
	text-align: justify;
	line-height: normal;
	color: #0F3D63;
	width: auto;
	padding-left: 10px;
	text-indent: 15px;
	
}

p#nav {
	padding-left: 0px;
	font-family: Tahoma, "Courier New", "Times New Roman", Arial;
	color: #804000;
}
p#nav a {
	padding-left: 10px;
	font-family: Tahoma, "Courier New", "Times New Roman", Arial;
	color: #804000;
	font-size: 0.6em;
}

ol.preimuschestva  li {
	font-family: Tahoma, Courier New, Times New Roman, Arial;
	font-size: 0.9em;
	color: #804000;
}
/*Opera Fix*/
body:before {
	content:"";
	height:100%;
	float:left;
	width:0;
	margin-top:-32767px;
}

