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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
* {
font-family: Arial, Verdana, Helvetica, sans-serif;
/* font-family: Verdana, Arial, Helvetica, sans-serif; */
}
A:link IMG, A:visited { border-style: none }
/* A:focus {text-decoration: underline } */
a:link, a:visited {
/* text-decoration: none; */
color: #000000;
}
a[href]:hover {
text-decoration: underline;
color: #7e0079;
}
textarea, input[type="text"] {
border: 1px solid #666666;
padding: 1px;
}
textarea:hover, input[type="text"]:hover {
border: 1px solid #7e0079;
padding: 1px;
}
textarea:focus, input[type="text"]:focus {
background-color: #ffffdd;
border: 1px solid #7e0079;
}
input[type="reset"]:hover, input[type="submit"]:hover, input[class="button"]:hover {
/* border: 1px solid #7e0079; */
color: #7e0079;
}
/* a:focus { background-color: #ccccee } */
a.fstab {
background-color:#cccccc;
color: #666666;
border:1px solid;
border-top-color:#666666;
border-left-color:#666666;
border-right-color:#666666;
border-bottom-color:#7e0079;
-moz-border-radius-topleft:8px;
-moz-border-radius-topright:8px;
-webkit-border-radius-topleft:8px;
-webkit-border-radius-topright:8px;
border-radius-topleft:8px;
border-radius-topright:8px;
/*font-weight:bold;*/
/*padding-left:12px;
padding-right:12px;*/
padding-left:4px;
padding-right:4px;
font-size:16px;
font-weight:bold;
text-decoration:none;
overflow:visible;
}
a.fstab:hover {
text-decoration:none;
border-color:#7e0079;
}
/* a:link:hover.fsblackbutton,
a:visited:hover.fsblackbutton
*/
a.fstabselected {
background-color:#f8f8f8;
color: #000000;
border:1px solid;
border-top-color:#7e0079;
border-left-color:#7e0079;
border-right-color:#7e0079;
border-bottom-color:#ffffff;
-moz-border-radius-topleft:8px;
-moz-border-radius-topright:8px;
-webkit-border-radius-topleft:8px;
-webkit-border-radius-topright:8px;
border-radius-topleft:8px;
border-radius-topright:8px;
/*font-weight:bold;*/
/*padding-left:12px;
padding-right:12px;*/
padding-left:4px;
padding-right:4px;
font-size:16px;
font-weight:bold;
text-decoration:none;
overflow:visible;
}
a.fstabselected:hover {
text-decoration:none;
color: #000000;
}
|