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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
input.fsblackbutton {
background-color:#aaaaaa;
color: #333333;
border:1px solid #888888;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
font-family: Arial, Verdana, Helvetica, sans-serif;
font-weight:bold;
padding-left:12px;
padding-right:12px;
padding-top:0px;
padding-bottom:0px;
margin-bottom:4px;
overflow:visible;
}
input.fsblackbutton:hover,input.fsblackbutton:focus,
input.fsblackbuttonselected:hover, input.fsblackbuttonselected:focus {
background:#aaaaaa;
}
input.fsblackbuttonselected {
background-color:#aaaaaa;
color: #7e0079;
border:1px solid #7e0079;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
font-family: Arial, Verdana, Helvetica, sans-serif;
font-weight:bold;
padding-left:12px;
padding-right:12px;
padding-top:0px;
padding-bottom:0px;
margin-bottom:4px;
overflow:visible;
}
input.fstext {
border: 1px solid #666666;
padding: 1px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
vertical-align:bottom;
text-align:right;
font-family: Arial,Verdana,Helvetica,sans-serif;
font-size: 13px;
margin:0px;
}
input.fstext:focus {
border: 1px solid #7e0079;
}
a.fslink {
text-decoration: underline;
}
a:hover.fslink {
color: #7e0079;
}
a.fsblackbutton {
background-color:#333333;
color: #ffffff;
border:1px solid;
border-top-color:#cccccc;
border-left-color:#cccccc;
border-right-color:#aaaaaa;
border-bottom-color:#aaaaaa;
/*font-weight:bold;*/
/*padding-left:12px;
padding-right:12px;*/
padding-left:4px;
padding-right:4px;
font-size:16px;
text-decoration:none;
overflow:visible;
}
a.fsblackbuttonselected,
a:link:hover.fsblackbutton,
a:visited:hover.fsblackbutton {
background-color:#7e0079;
color: #ffffff;
border:1px solid;
border-top-color:#cccccc;
border-left-color:#cccccc;
border-right-color:#aaaaaa;
border-bottom-color:#aaaaaa;
/*font-weight:bold;*/
/*padding-left:12px;
padding-right:12px;*/
padding-left:4px;
padding-right:4px;
font-size:16px;
text-decoration:none;
overflow:visible;
}
a.fsdarkbutton {
background-color:#555555;
color: #ffffff;
border:1px solid;
border-top-color:#cccccc;
border-left-color:#cccccc;
border-right-color:#aaaaaa;
border-bottom-color:#aaaaaa;
/*font-weight:bold;*/
/*padding-left:12px;
padding-right:12px;*/
padding-left:4px;
padding-right:4px;
font-size:16px;
text-decoration:none;
overflow:visible;
}
a.fsdarkbuttonselected,
a:link:hover.fsdarkbutton,
a:visited:hover.fsdarkbutton {
background-color:#7e0079;
color: #ffffff;
border:1px solid;
border-top-color:#cccccc;
border-left-color:#cccccc;
border-right-color:#aaaaaa;
border-bottom-color:#aaaaaa;
/*font-weight:bold;*/
/*padding-left:12px;
padding-right:12px;*/
padding-left:4px;
padding-right:4px;
font-size:16px;
text-decoration:none;
overflow:visible;
}
|