blob: 66a202ed9c2fbb49baee72718e3ab64c1ca78123 (
plain) (
blame)
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
|
.verticalMenu {
margin-bottom:50px;
margin-left:10px;
/* text-align:right;*/
}
ul#menuBlock {
/* float:right; */
float:left;
margin:0px;
padding:0px;
list-style:none;
height:24px;
}
ul#menuBlock li {
position:relative;
display:block;
float:left;
width:150px;
border:1px outset #D3D3D3;
height:21px;
text-align:center;
background:#E6E6FA;
padding-top:5px;
padding-bottom:-2px;
}
ul#menuBlock li a {
color:#696969;
font: bold 12px/1 Verdana,arial;
}
ul#menuBlock li ul {
margin:0px;
padding:0px;
list-style:none;
position:absolute;
top:24px;
left:-1px;
display:none;
}
ul#menuBlock li ul li {
}
/*ul#menuBlock li:hover ul{
display:block;
}*/
|