.switch-container {
    background-color: transparent !important;
    position: relative;
    width: 980px;
    margin: 0 auto;
}
.switcher-left {
    position: fixed;
    top: 0;
    right: 0;
    background-image: url(/static/imgs/switcher/switch_privat_line.png);
    background-position: 0 0;
    background-repeat: repeat-y;
    height: 100%;
    width: 1px;
    z-index: 1000;
}
.normal .switcher-left {
    display: none;
}
.switch.privat {
    width: 180px;
    height: 360px;
    background-image: url(/static/imgs/switcher/pb_new.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 32%;
    top: 11%;
    cursor: pointer;
    position: absolute;
    left:-60px;
}

.switcher-right {
    position: fixed;
    top: 0;
    right: 0;
    /* background-image: url(/static/imgs/switcher/switch_blogger_line.png); */
    background-position: 0 0;
    background-repeat: repeat-y;
    height: 100%;
    width: 0;
    z-index: 1000;
}
.blogger .switcher-right {
    display: none;
}
.switch.blogger {
    width: 180px;
    height: 360px;
    background-image: url(/static/imgs/switcher/blog_new.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 32%;
    top: 11%;
    cursor: pointer;
    position: absolute;
    left: -60px;
}

.normal #switch-content {
    width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.normal #switch-content.out {
    margin-left: -1000px;
}
.blogger #switch-content {
    width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.blogger #switch-content.out {
    margin-right: 1000px;
}
body.loader {
    background-image: url(/static/imgs/switcher/loader_2.gif);
    background-position: center 0;
    background-repeat: no-repeat;
}