wzp
2021-07-19 e65183d31755a0e5fae4bf428435d2e0fd6afdc5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
@CHARSET "UTF-8";
 
.arrowsidemenu{
    width: 180px; /*width of menu*/
    border-style: solid solid none solid;
    border-color: #94AA74;
    border-size: 1px;
    border-width: 1px;
}
    
.arrowsidemenu div a{ /*header bar links*/
    font: bold 12px Verdana, Arial, Helvetica, sans-serif;
    display: block;
    background: transparent url(arrowgreen.gif) 100% 0;
    height: 24px; /*Set to height of bg image-padding within link (ie: 32px - 4px - 4px)*/
    padding: 4px 0 4px 10px;
    line-height: 24px; /*Set line-height of bg image-padding within link (ie: 32px - 4px - 4px)*/
    text-decoration: none;
}
    
.arrowsidemenu div a:link, .arrowsidemenu div a:visited{
    color: #26370A;
}
 
.arrowsidemenu div a:hover{
    background-position: 100% -32px;
}
 
.arrowsidemenu div.unselected a{ /*header that's currently not selected*/
    color: #6F3700;
}
 
    
.arrowsidemenu div.selected a{ /*header that's currently selected*/
    color: blue;
    background-position: 100% -64px !important;
}
 
.arrowsidemenu ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
 
.arrowsidemenu ul li{
    border-bottom: 1px solid #a1c67b;
}
 
 
.arrowsidemenu ul li a{ /*sub menu links*/
    display: block;
    font: normal 12px Verdana, Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: black;
    padding: 5px 0;
    padding-left: 10px;
    border-left: 10px double #a1c67b;
}
 
.arrowsidemenu ul li a:hover{
    background: #d5e5c1;
}