1#railbar-fixed-cs {
2    position: absolute;
3    top: 0;
4    right: -66px;
5    width: 44px;
6}
7
8#railbar-fixed-cs div {
9    position: fixed;
10}
11
12#railbar-fixed-cs div ul {
13    position: absolute;
14    right: -22px;
15    max-height: 85vh;
16    overflow-y: auto;
17}
18
19#railbar-fixed-cs div ul li a span {
20    display: none;
21}
22
23[dir=rtl] #railbar-fixed-cs {
24    right: auto;
25    left: -44px;
26}
27
28[dir=rtl] #railbar-fixed-cs div.tools ul {
29    right: auto;
30    left: 0;
31    text-align: left;
32}
33
34#railbar-fixed-cs:hover ul {
35    background-color: #fff;
36    border-color: #ccc;
37    border-radius: 2px;
38    box-shadow: 2px 2px 2px #999;
39}
40
41#railbar-fixed-cs:hover ul li a span {
42    display: inline-block;
43}
44