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
63
64
65
66
67
68
69
70
71
|
.tab-panel
{
position: relative;
float: left;
width: 100%;
}
.tab-normal
{
font-family: Verdana, Helvetica, Arial;
font-size: 12px;
display: inline;
margin: 1px -5px 1px 5px;
float: left;
padding: 3px 6px 4px 6px;
background: rgb(234,242,255);
border: 1px solid;
border-color: rgb(120,172,255);
z-index: 1;
position: relative;
top: 0;
}
.tab-active
{
position: relative;
display: inline;
float: left;
font-family: Verdana, Helvetica, Arial;
font-size: 12px;
border: 1px solid rgb(120,172,255);
border-bottom: 0;
z-index: 3;
padding: 2px 6px 8px 6px;
margin: 1px -6px -2px 0px;
top: -2px;
background: white;
}
.tab-view
{
clear: both;
border: 1px solid rgb(120,172,255);
z-index: 2;
position: relative;
top: -2px;
padding: 10px;
}
.tab-active a
{
color: black;
text-decoration: none;
font-weight: bold;
}
.tab-normal a
{
color: gray;
text-decoration: none;
font-weight: bold;
}
.tab-normal a:hover, .tab-normal a:focus
{
color: rgb(120,172,255);
text-decoration: none;
font-weight: bold;
}
|