* {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.divly-aside-block {
 display: block;
 width: 300px;
 max-width: 100%;
 height: 300px;
 background: url('/images/divly_uhelp.png') no-repeat center;
 margin: 30px auto 0;
 border-radius: 2px;
}

html {
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
position: relative;
}
a {
    color: #488bfa;
    text-decoration: none;
}
.hidden {
    display: none;
}
.intro {
    display: block;
    width: 1000px;
    margin: 0 auto;
}
.intro.intro--tabled {
    display: table;
    width: 100%;
    height: 100%;
    max-width: 1000px;
}
.intro.intro--footer {
    width: auto;
    max-width: 1000px;
 	display: inline-block;
}
.table-cell {
    display: table-cell;
    vertical-align: middle;
}

/* header */
header {
    background: url('../images/header_bg.png') no-repeat center;
    background-size: cover;
    height: 120px;
    transition: opacity .3s ease-out;
    -webkit-transition: opacity .3s ease-out;
}
header.main {
    height: 145px;
}
header .logo-block {
    float: left;
}
header.main .logo-block {
    float: none;
}
header .logo-block {
    margin: 2px 0;
    color: #ffffff;
    text-align: center;
    font-weight: 400;
    font-size: 32px;
}
header .logo-block a {
    color: #ffffff;
    text-decoration: none;
}
header .logo-block span {
    vertical-align: middle;
}
.logo {
    display: inline-block;
    background: url('../images/logo.svg') no-repeat center;
    background-size: contain;
    width: 188px;
    height: 50px;
    vertical-align: middle;
    margin: 0;
font-size: 0;
}

.create-button {
    float: right;
    background: transparent;
    border: 2px solid;
    border-color: #ffffff;
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 17px;
    line-height: 18px;
    margin: 4px 0 0;
    transition: background .2s ease, color .2s ease;
    -webkit-transition: background .2s ease, color .2s ease;
}

.create-button:hover {
    background: #ffffff;
    color: #488bfa;
}

/* search */

.search {
    margin: 40px 0;
    text-align: center;
}
.search-block {
    position: relative;
    display: inline-block;
}
.search.search--header {
    float: right;
    margin: -70px 0 0;
}
.search-form input[type="text"] {
    width: 400px;
    height: 50px;
    outline: none;
    border: 2px solid #e0e2e6;
    border-right: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: inline-block;
    vertical-align: middle;
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    padding: 0 20px;
    transition: border .25s ease;
    -webkit-transition: border .25s ease;
}
.search-form input[type="text"]:hover {
    border: 2px solid #CACCD0;
    border-right: none;
}
.search-form input[type="text"]:focus {
    border: 2px solid #488bfa;
    border-right: none;
}
.search--header .search-form input[type="text"] {
    width: 225px;
    height: 40px;
    border: 1px solid #e4e5e7;
}
.search-form input[type="submit"] {
    height: 50px;
    display: inline-block;
    background: #00c381;
    border: none;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    padding: 0 25px;
    letter-spacing: -1px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    vertical-align: middle;
    margin: 0 0 0 -6px;
    outline: none;
    cursor: pointer;
    transition: background .25s ease;
    -webkit-transition: background .25s ease;
}
.search-form input[type="submit"]:hover, .search-form input[type="submit"]:focus {
    background: #16D695;
}
.search--header .search-form input[type="submit"] {
    background: #00c381 url('../images/icon_search.png') no-repeat center;
    font-size: 0;
    height: 40px;
    padding: 0 20px;
}
.search--header .search-form input[type="submit"]:hover, .search--header .search-form input[type="submit"]:focus {
    background: #16D695 url('../images/icon_search.png') no-repeat center;
}

/* breadcrums */
.breadcrumbs {
    display: block;
    margin: 0 0 40px;
    padding: 0 20px;
    cursor: default;
    transition: opacity .3s ease-out;
    -webkit-transition: opacity .3s ease-out;
}
.breadcrumb {
    color: #84878d;
    display: inline-block;
    vertical-align: middle;
    cursor: default;
}
.breadcrumb a {
    color: #84878d;
    cursor: pointer;
    display: inline-block;
    transition: color .3s ease;
    -webkit-transition: color .3s ease;
}
.breadcrumb a:hover,
.breadcrumb a:focus {
    color: #2c2e32;
}
.breadcrumb a:after {
    content: '';
    width: 80%;
    margin: 0 auto;
    height: 1px;
    display: block;
    background: #2c2e32;
    transition: transform .2s ease-in;
    -webkit-transition: transform .2s ease-in;
    transform: scale(0);
    -webkit-transform: scale(0);
}
.breadcrumb a:hover:after {
    transform: scale(1);
    -webkit-transform: scale(1);
    transition: transform .2s ease-out;
    -webkit-transition: transform .2s ease-out;
}
.breadcrumb:after {
    content: '\f105';
    font-family: 'FontAwesome';
    margin: 0 10px;
}
.breadcrumb:last-child:after {
    content: none;
}

/* aside bar */
.bar {
    float: left;
    width: 300px;
}
.bar.bar--fixed {
    position: fixed;
    top: 30px;
}
.bar.bar--bottom {
    position: absolute !important;
}
.bar-categories, .bar-entries {
    margin: 0;
    padding: 0;
    list-style: none;
}
.bar-categories li, .bar-entries li {
    display: block;
}
.bar-categories li a, .bar-entries li a {
    display: block;
    width: 100%;
    height: 100%;
    background: #f5f5f6;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #2c2e32;
    transition: background .15s ease;
    -webkit-transition: background .15s ease;
    padding: 12px 20px;
}
.bar-entries li a:hover,
.bar-entries li a:focus,
.bar-entries li.active a,
.bar-categories li a:hover,
.bar-categories li a:focus,
.bar-categories li.active a {
    background: #e4e5e7;
}
.bar-cats, .cat-entries {
max-height: 500px;
    overflow-y: auto;
}
.bar-entries .cat-entries {
    padding-left: 0;
}
.bar-entries.cat-entries li a:before {
content: '\f105';
    font-family: 'FontAwesome';
    color: #84878d;
    margin: 0 10px 0 0;
}
.bar-entries .fa-long-arrow-left {
margin: 0 8px 0 0;
}
.bar-entries .cat-entries li a {
font-size: 15px;
    padding: 10px 20px;
}
.bar-entries .cat-entries li:last-child {
padding-bottom: 20px;
background: #f5f5f6;
}
.bar-categories table tr:first-child li a {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.bar-categories table tr:last-child li a {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}
.bar-cats, .bar-entries {
      /*position: absolute;*/
display:none;
    width: 300px;
    z-index: -1;
   opacity: 0;
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  -ms-transition: all 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
  transition: all 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
}
.showed {
    opacity: 1;
z-index: 1;
display:block;
}
/* body */
.body-list li a.search-link {
    color: #488bfa;
    text-decoration: none;
    opacity: 1;
    transition: opacity .2s ease;
    -webkit-transition: opacity .2s ease;
}
.body-list li a.search-link:hover {
    opacity: 0.8;
}
a.search-link b {
    background: #F5F5F6;
    border-radius: 3px;
    padding: 0 4px 2px;
    display: inline-block;
}
.search-message {
    display: block;
    font-size: 14px;
    color: #84878d;
    padding: 8px 20px 10px;
}
.search-message b {
    background: #F5F5F6;
    padding: 0 4px;
    display: inline-block;
    border-radius: 3px;
}
main {
    margin: 40px 0 100px;
}
main.main-page {
    margin: 0;
}
.body {
    width: 100%;
    padding-left: 360px;
    transition: opacity .3s ease-out;
    -webkit-transition: opacity .3s ease-out;
}
.body-title {
    margin: 0 0 30px;
    position: relative;
}
.body-title h1 {
    color: #2c2e32;
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    font-weight: 300;
    margin: 0;
}
h1.body-title {
    color: #2c2e32;
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    font-weight: 300;
    margin: 0 0 30px;
}
.moder-panel {
    position: absolute;
    margin: 0;
    top: 8px;
    right: 0;
}
.moder-panel .u-mpanel-tooltip {
    display: none;
}
.body-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.body-list li {
    font-size: 17px;
    margin: 0 0 10px;
}
.body-list.body-list--search li {
    margin: 0 0 20px;
}
.body-list li:before {
    content: '\f105';
    font-family: 'FontAwesome';
    color: #84878d;
    margin: 0 10px 0 0;
}
.body-list li a {
    color: #84878d;
    transition: color .2s ease;
    -webkit-transition: color .2s ease;
}
.body-list li a:hover,
.body-list li a:focus {
    color: #498bfa;
}

/* content */
.content {
    overflow: hidden;
clear: both;
}
.content.content--home {
    text-align: center;
}
.content.content--add-post {
    padding: 60px 40px 80px;
}
.content.content--add-post .manTable tr {

}
.category-block {
    width: 33%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin: 0 0 60px;
    padding: 0 10px;
}
.category {
    display: inline-block;
    text-align: left;
    width: 100%;
}
.category .category__name {
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: #2c2e32;
    display: block;
    margin: 0 0 14px;
}
.category .category__name a {
    color: #2c2e32;
    text-decoration: none;
    transition: color .2s ease;
    -webkit-transition: color .2s ease;
}
.category .category__name a:hover,
.category .category__name a:focus {
    color: #488bfa;
    text-decoration: none;
}
.category .category__list {
    display: block;
    width: 100%;
}
.category .category__list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    width: 100%;
}
.category .category__list ul li {
    color: #84878d;
    display: block;
    margin: 0 0 4px;
}
.category .category__list ul li:last-child {
    margin: 0;
}
.category .category__list li:before {
    content: '\f105';
    font-family: 'FontAwesome';
    color: #84878d;
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px 2px 0;
}
.category .category__list li a {
    color: #84878d;
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    transition: color .2s ease;
    -webkit-transition: color .2s ease;
    max-width: 90%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.category .category__list li a:hover,
.category .category__list li a:focus {
    color: #498bfa;
}
.category .category__all-link {
    display: inline-block;
    margin: 14px 0 0;
}
.category .category__all-link:after {
    content: '';
    display: block;
    width: 80%;
    margin: 2px auto 0;
    height: 1px;
    background: rgba(72, 139, 250, 0.8);
    transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transform: scale(0);
    -webkit-transform: scale(0);
}
.category .category__all-link:hover:after,
.category .category__all-link:focus:after {
    transform: scale(1);
    -webkit-transform: scale(1);
    transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
}

/* manual */
.manual {
    color: #84878d;
    font-size: 16px;
    line-height: 22px;
}
.manual a {
    color: #488bfa;
    text-decoration: none;
}
.manual a:hover,
.manual a:focus {
    text-decoration: underline;
}
.manual img {
    max-width: 100%;
}

/* footer */
footer {
        background: #fff;
    padding: 60px 0 50px;
    text-align: center;
    transition: opacity .3s ease-out;
    -webkit-transition: opacity .3s ease-out;
}
.logo-and-copyright {
    display: inline-block;
    vertical-align: top;
    margin: 0 20px 0 0;
}
.logo.logo--footer {
    background: url('https://www.ucoz.ru/ucoz/v3/images/logo-ukit.png') no-repeat center;
    background-size: contain;
    width: 172px;
    height: 51px;
    margin-bottom: 15px;
    display: block;
}
.copyright, .copy-subtitle {
    display: block;
    text-align: left;
    color: #96999e;
    font-size: 13px;
}
.footer-menu {
    display: inline-block;
    vertical-align: top;
    text-align: left;
}
.footer-column {
    display: inline-block;
    vertical-align: top;
    padding: 0 24px;
}
.footer-column .footer-column__name {
    color: #222222;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 10px;
}
.footer-column .footer-column__list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-column .footer-column__list li {
    font-size: 14px;
    margin: 0 0 8px;
}
.footer-column .footer-column__list li:last-child {
    margin: 0;
}
.footer-column .footer-column__list li a {
    color: #444444;
    transition: color .2s ease;
    -webkit-transition: color .2s ease;
}
.footer-column .footer-column__list li a:hover,
.footer-column .footer-column__list li a:focus {
    color: #488bfa;
}

/* social buttons 
.social-buttons {
    display: block;
    overflow: hidden;
    margin: 20px 0 0;
}
.social-buttons .social-buttons__button {
    display: block;
    float: left;
    width: 34px;
    height: 34px;
    background: #444444;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    line-height: 34px;
    margin: 0;
    transition: background .25s ease;
    -webkit-transition: background .25s ease;
}
.social-buttons .social-buttons__button:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.social-buttons .social-buttons__button:last-child {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.social-buttons .social-buttons__button.social-buttons__button--vk {
    background: #4D75A3;
}
.social-buttons .social-buttons__button.social-buttons__button--vk:hover,
.social-buttons .social-buttons__button.social-buttons__button--vk:focus {
    background: #6a8fb9;
}
.social-buttons .social-buttons__button.social-buttons__button--fb {
    background: #3B5998;
}
.social-buttons .social-buttons__button.social-buttons__button--fb:hover,
.social-buttons .social-buttons__button.social-buttons__button--fb:focus {
    background: #4c70ba;
}
.social-buttons .social-buttons__button.social-buttons__button--tw {
    background: #55ACEE;
}
.social-buttons .social-buttons__button.social-buttons__button--tw:hover,
.social-buttons .social-buttons__button.social-buttons__button--tw:focus {
    background: #83c3f3;
}
.social-buttons .social-buttons__button.social-buttons__button--gp {
    background: #DC4E41;
}
.social-buttons .social-buttons__button.social-buttons__button--gp:hover,
.social-buttons .social-buttons__button.social-buttons__button--gp:focus {
    background: #e4766c;
}
.social-buttons .social-buttons__button.social-buttons__button--ok {
    background: #E67E17;
}
.social-buttons .social-buttons__button.social-buttons__button--ok:hover,
.social-buttons .social-buttons__button.social-buttons__button--ok:focus {
    background: #ec9844;
}*/

.social-buttons {
	display: flex;
	overflow: hidden;
	margin: 20px 0 0;
	gap: 5px;
}
.social-buttons__button{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 8px;
}

.social-buttons .social-buttons__button--tg-news {
	background: #549BE2;
}

.social-buttons .social-buttons__button--tg-community {
	border: 1px solid #549BE2;
	background-color: transparent;
}

.social-buttons .social-buttons__button--tg-news:hover,
.social-buttons .social-buttons__button--tg-community:hover{
	opacity: .8;
}

.bar-button {
    width: 32px;
    height: 32px;
    top: 68px;
    left: 20px;
    cursor: pointer;
    z-index: 3;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,.2);
    color: #ffffff;
    position: fixed;
    transition: background .3s ease-in-out;
    -webkit-transition: background .3s ease-in-out;
    display: none;
}
.bar-button:hover {
    background: rgba(0,0,0,.3);
}
.bar-button:before {
    content: '\f0c9';
    font-family: 'FontAwesome';
}

body.bar-opened header,
body.bar-opened .breadcrumbs,
body.bar-opened .body,
body.bar-opened footer {
    opacity: 0.15;
}

/* media */
@media only screen and (max-width: 1024px),
only screen and (max-device-width: 1024px) {
    .intro {
        /*width: 800px;*/
        width: 780px;
    }
    .intro.intro--tabled {
        max-width: 800px;
    }
    .intro.intro--footer {
        max-width: 800px;
    }
    .category-block {
        width: 48%;
    }
    .only-desktop {
        display: none;
    }
    .body {
        padding-left: 0;
    }
    .bar {
        float: none;
        position: fixed;
        z-index: 2;
        top: 120px;
        left: -200px;
        opacity: 0;
        visibility: hidden;
        box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.25);
        transition: all .25s ease;
        -webkit-transition: all .25s ease;
    }
    body.bar-opened .bar {
        opacity: 1;
        visibility: visible;
        left: 20px;
    }
    .bar.bar--fixed {
        top: 120px;
    }
    .bar-button {
        display: block;
    }
}

@media only screen and (max-width: 800px),
only screen and (max-device-width: 800px) {
    .intro {
        /*width: 600px;*/
        width: 580px;
    }
    .intro.intro--tabled {
        max-width: 600px;
    }
    .intro.intro--footer {
        max-width: 600px;
    }
    .no-low-width {
        display: none;
    }
    .search.search--header {
        display: none;
    }
    .bar-categories li a {
        font-size: 15px;
    }
    .bar {
        width: 250px;
    }
}

@media only screen and (max-width: 760px),
only screen and (max-device-width: 760px) {
    .bar-button {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 21px;
        background: rgba(0, 0, 0, 0.5);
        box-shadow: -1px 1px 5px rgba(0,0,0,.15);
        top: 20px;
    }
    .bar-button:hover {
        background: rgba(0, 0, 0, 0.5);
    }
    .bar,
    .bar.bar--fixed {
        top: 90px;
    }
}

@media only screen and (max-width: 600px),
only screen and (max-device-width: 600px) {
    .intro {
        width: 480px;
    }
    .intro.intro--tabled {
        max-width: 500px;
    }
    .intro.intro--footer {
        max-width: 500px;
     
    }
    .category-block {
        width: 100%;
    }
    .search-form input[type="text"] {
        width: 300px;
    }
    .no-mobile {
        display: none;
    }
    .body {
        padding: 0 20px;
        margin: 50px 0 0;
    }
    .content--in-manual .body {
        margin: 0;
    }
}

@media only screen and (max-width: 500px),
only screen and (max-device-width: 500px) {
    .intro {
        width: 100%;
    }
    .intro.intro--tabled {
        width: 100%;
        max-width: 100%;
    }
    .intro.intro--footer {
        width: 100%;
        max-width: 100%;
    }
    .logo.logo--header {
        display: block;
        margin: 4px auto 0;
    }
    .search-form input[type="text"] {
        width: 200px;
    }
    .search-form input[type="submit"] {
        background: #00c381 url('../images/icon_search.png') no-repeat center;
        font-size: 0;
        padding: 0 20px;
    }
    .search-form input[type="submit"]:hover,
    .search-form input[type="submit"]:focus {
        background: #16D695 url('../images/icon_search.png') no-repeat center;
    }
    .category {
        text-align: center;
    }
    .category .category__list {
        text-align: left;
    }
    .no-low-mobile {
        display: none;
    }
    .logo-block {
        width: 100%;
    }
    header {
        height: 145px;
    }
    .logo-and-copyright {
        margin: 0;
    }
.create-button {
display: none;
}
    .content {
        padding: 0 20px;
    }
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
table:not([class]) {
border: 1px solid #e5e5e5;
}
table:not([class]) td, table:not([class]) th {
padding: 7px;
}
table:not([class]) th {
font-weight: bold;
text-align: center;
}
pre, code {
    font-family: Courier New,monospace;
    font-size: 14px;
}
pre {
    display: block;
    padding: 10.5px;
    margin: 0 0 11px;
    line-height: 1.42857143;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    overflow-x: auto; 
}
code {
    padding: 2px;
    background: #F0F0F0;
    color: #0000FF;
}
blockquote {
border-left: 6px solid #e5e5e5;
    padding: 6px;
    background: #f5f5f5;
}
.pagesBlockuz1 {
 margin-top: 40px;
 display: block;
}
.catPages1 {
 padding-left: 10.3%;
 text-align: left;
 font-size: 0;
}
.pagesBlock2 {
 float: right;
}
.swchItem,
.swchItem1 {
 border: 2px solid #d7dcde;
 border-radius: 8px;
 color: #d7dcde;
 line-height: 44px;
}
.swchItem,
.swchItemA,
.swchItemDots,
.swchItem1,
.swchItemA1 {
 display: inline-block;
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
 margin: 0 7px;
 width: 47px;
 height: 48px;
 border-radius: 8px;
 text-align: center;
 font-size: 18px;
 line-height: 44px;
}
.swchItem:first-child,
.swchItemA:first-child,
.swchItem1:first-child,
.swchItemA1:first-child {
 margin-left: 0;
}
.swchItem:last-child,
.swchItemA:last-child,
.swchItem1:last-child,
.swchItemA1:last-child {
 margin-right: 0;
}
.swchItemA,
.swchItemA1 {
 border: 2px solid #488bfa;
 background-color: #488bfa;
 color: #fff;
}
.swchItemDots {
 margin: 0;
 width: 33px;
 color: #d7dcde;
}
.swchItemDots span {
 width: 33px;
}
.swchItem > span,
.swchItemA > span,
.swchItem1 > span,
.swchItemA1 > span {
 display: inline-block;
 width: 44px;
 height: 43px;
 vertical-align: middle;
}
.swchItem:hover,
.swchItem1:hover {
 border-color: #488bfa;
 color: #488bfa;
}
.swchItem.prevPage,
.swchItem.nextPage {
 width: 33px;
 border: none;
 vertical-align: top;
}
.swchItem.prevPage > span,
.swchItem.nextPage > span {
 overflow: hidden;
 width: 6px!important;
 height: 10px!important;
 background: url(/img/new/page-arr.png) no-repeat 0 0;
 text-indent: 150%;
 white-space: nowrap;
 vertical-align: middle!important;
}
.swchItem.prevPage:hover > span {
 background-position: 0 -10px;
}
.swchItem.nextPage > span {
 background-position: -6px 0;
}
.swchItem.nextPage:hover > span {
 background-position: -6px -10px;
}
.pagesBlock1 {
 float: right;
 clear: both;
 padding-bottom: 10px;
}
.pagesBlock1 .swchItem,
.pagesBlock1 .swchItemA,
.pagesBlock1 .swchItemDots,
.pagesBlock2 .swchItem1,
.pagesBlock2 .swchItemA1 {
 margin: 0 2px;
 padding: 0 9px;
 width: inherit;
 height: 30px;
 text-align: center;
 font-size: 14px;
 line-height: 26px;
}
.pagesBlock1 .swchItemDots,
.pagesBlock2 .swchItemDots {
 padding: 0;
}
.pagesBlock1 .swchItem > span,
.pagesBlock1 .swchItemA > span,
.pagesBlock1 .swchItemDots > span,
.pagesBlock2 .swchItem1 > span,
.pagesBlock2 .swchItemA1 > span,
.pagesBlock2 .swchItemDots > span {
 width: inherit;
 height: 26px;
 vertical-align: top;
}
.unsupported{
color: #ff6a6a;
}
.supported{
color: #63a762
}
.obsolete {
color: #FF9C00;
}
ul.u-mpanel-l {list-style:none;}