
html, body {
	padding: 0px;
	margin: 0px;
	font-family: Arial;
	/*font-size: 1em;
	font-size: 16px;*/
	font-weight: normal;
	color: #7A7A7A;
	background: url(/resources/images/bg.gif) left repeat-y;
	background-color: #fff;
}

form, input, textarea {
	margin: 0px;
	padding: 0px;
}

input { 
	vertical-align: middle;
}

img {
	border: 0px;
	display: inline;
	vertical-align: middle;
}

ol {
	
}

ol li {
	padding: 6px 0px 0px 0px;	
	position: relative;
}


ol.sub1,
ol.sub2,
ol.sub3
{
	counter-reset: section; /*Создает новый счетчик для каждого тега <ol>*/
	list-style-type: none;
}
/*
ol li::before {
	counter-increment: section;      
	content: 
		counters(section,".") ". "; 
		font-weight: bold;
		position: absolute;
		left: -3em;
		margin-right: -1em;
		list-style-position: outside ;
}
*/

ol.sub1
{
	padding-left: 1em;
}
ol.sub1 li::before {
	counter-increment: section;      /*Инкрементировуется только счетчик 
	                               текущего уровня вложенности*/
	content: 
		counters(section,".") ". "; 
		/*color: red;  */
		font-weight: bold;
		position: absolute;
		left: -1em;
		margin-right: -1em;
		list-style-position: outside ;/*Добавляем значения всех уровней 
                                    вложенности, используя разделитель '.'*/
                                   /*Если необходима поддержка < IE8, 
                                      необходимо убедиться, что после 
                                      разделителя ('.') не стоит пробел*/
}

ol.sub2
{
	padding-left: 2em;
}
ol.sub2 li::before {
	counter-increment: section;      /*Инкрементировуется только счетчик 
	                               текущего уровня вложенности*/
	content: 
		counters(section,".") ". "; 
		/*color: red;  */
		font-weight: bold;
		position: absolute;
		left: -2em;
		margin-right: -2em;
		list-style-position: outside ;/*Добавляем значения всех уровней 
                                    вложенности, используя разделитель '.'*/
                                   /*Если необходима поддержка < IE8, 
                                      необходимо убедиться, что после 
                                      разделителя ('.') не стоит пробел*/
}

ol.sub3
{
	padding-left: 3em;
}
ol.sub3 li::before {
	counter-increment: section;      /*Инкрементировуется только счетчик 
	                               текущего уровня вложенности*/
	content: 
		counters(section,".") ". "; 
		/*color: red;  */
		font-weight: bold;
		position: absolute;
		left: -3em;
		margin-right: -3em;
		list-style-position: outside ;/*Добавляем значения всех уровней 
                                    вложенности, используя разделитель '.'*/
                                   /*Если необходима поддержка < IE8, 
                                      необходимо убедиться, что после 
                                      разделителя ('.') не стоит пробел*/
}

ol.sub0
{
	padding-left: 1em;
	counter-reset: none;
}
ol.sub0 li::before {
	counter-increment: none;      /*Инкрементировуется только счетчик 
	                               текущего уровня вложенности*/
	content: 
		counters(1,".") ". "; 
		color: red;  
		font-weight: bold;
		position: absolute;
		left: -3em;
		margin-right: -3em;
		list-style-position: outside ;/*Добавляем значения всех уровней 
                                    вложенности, используя разделитель '.'*/
                                   /*Если необходима поддержка < IE8, 
                                      необходимо убедиться, что после 
                                      разделителя ('.') не стоит пробел*/
content: none !important;
}

ul {
	margin: 0px;
	padding: 0px 0px 6px 14px;
	list-style: square; 
	list-style-position: outside;
}

ul li {
	margin: 0px;
	padding: 6px 0px 0px 0px;
}

ul li::before {
	content: none !important;
}

em {
	
}

div {
	font-size: 13px;
	font-size: 1rem;
}

p { 
	margin: 0px 0px 10px 0px;
}

p img { 
	margin: 0px 10px 10px 0px;
}

h1, h2, h3, h4, h5, h6 {
	margin: 5px 0px 5px 0px;
	padding: 0px;
	font-family: Arial;
}

h1 { 
	font-size: 22px;
	font-size: 2rem;
}

h2 { 
	font-size: 20px;
	font-size: 1.6rem;
	margin-bottom: 20px;
}

h3 { 
	font-size: 13px;
	font-size: 1.2rem;
	padding-top: 13px;
}

h4 { 
	font-size: 16px;
	font-size: 1.1rem;
}

h5 { 
	font-size: 14px;
	font-size: 1rem;
	color: #d45f38;
}

h6 { 
	font-size: 12px;
	font-size: .8rem;
}


/* links */
a:link, 
a:visited, 
a:active {
	text-decoration: none;
	color: #dd3b50;
}

a:hover,
a:visited:hover {
	text-decoration: underline;
	color: #dd3b50;
}

a.alter:link, 
a.alter:visited, 
a.alter:active {
	text-decoration: underline;
	color: #d45f38;
}

a.alter:hover,
a.alter:visited:hover {
	text-decoration: none;
	color: #d45f38;
}

/* form */
.textbox {
	padding: 3px 2px;
	border: 1px solid #7A7A7A;
	font-size: 13px;
	font-family: Arial;
}

.button {
	padding: 3px 2px;
	border: 1px solid #7A7A7A;
	font-size: 13px;
}

/* share */
.uppercased { 
	text-transform: uppercase !important;
}

.underlined { 
	text-decoration: underline !important;
}

.italic { 
	font-style: italic !important;
}

.bold { 
	font-weight: bold !important;
}

.normal { 
	font-weight: normal !important;
}

.justify { 
	text-align: justify !important;
}

.center { 
	width: 100%;
	text-align: center !important;
}

.left { 
	text-align: left !important;
}

.right { 
	text-align: right !important;
}

.fleft { 
	float: left;
}

.fright { 
	float: right;
}

.hidden { 
	display: none;
}

.nohidden { 
	display: ;
}

img.left {
	float: left;
	margin: 0px 20px 5px 0px;
}

img.right {
	float: right;
	margin: 0px 0px 5px 20px;
}

.centered {
	margin: 0px auto;
	padding: 0px auto;
}

/**/

.pager {
	text-align: center;
	margin: 10px 0px;
}

.pager span {
	padding: 0px 5px;
}

.example__label
{
	color: #d9643d;
}

.example__text
{
	font-family: Times New Roman;
	font-size: 14pt;
	line-height: 1.5;
	background-color: #fff;
	border: 1px solid #f1b792;
	border-radius: .6em;
	color: #7a7a7a;
	padding: 1em;
	margin-bottom: 1em;
}


.partners__container {
    background-color: #fbfdfd;
    margin: 0px 0 60px 0;
    border:0px solid #ccc;

display: -webkit-flex; 
-webkit-justify-content: space-around;
-webkit-align-items: center;
display: flex;
justify-content: space-around;
align-items: center;

}

.partners__container_logo
{
    width: 70px;
    border: 0px solid #cc0;
} 
.partners__container_logo img
{
    max-width: 70px;
} 
.partners__container_text
{
	width: 70%;
	font-weight: bold;
	border: 0px solid #c0c;
} 
.partners__container_text a
{
	text-decoration: none;
	color: #7A7A7A;
} 
.partners__container_text a:hover
{
	text-decoration: underline;
	color: #dd3b50;
} 
