[690] | 1 | <?php include('../inc/config.php');
|
---|
| 2 | Header('Content-type: text/css');
|
---|
| 3 | ?>
|
---|
| 4 |
|
---|
| 5 | body
|
---|
| 6 | {
|
---|
| 7 | height: 100%;
|
---|
| 8 | background-color: black;
|
---|
| 9 | margin-top: -10px;
|
---|
| 10 | }
|
---|
| 11 |
|
---|
| 12 | .textinput
|
---|
| 13 | {
|
---|
| 14 | width: 130px;
|
---|
| 15 | }
|
---|
| 16 |
|
---|
| 17 | #page
|
---|
| 18 | {
|
---|
| 19 | width: 982px;
|
---|
| 20 | min-height: 100%;
|
---|
| 21 | height: auto !important;
|
---|
| 22 | height: 100%;
|
---|
| 23 | background-image: url('<?php echo($Config['Web']['BaseURL']); ?>/imgs/web/middle.jpg');
|
---|
| 24 | position: absolute;
|
---|
| 25 | top: 0px;
|
---|
| 26 | right: 50%;
|
---|
| 27 | margin-right: -491px;
|
---|
| 28 | margin-bottom: 0px;
|
---|
| 29 | }
|
---|
| 30 |
|
---|
| 31 | #top
|
---|
| 32 | {
|
---|
| 33 | top: 174px;
|
---|
| 34 | height: 90px;
|
---|
| 35 | background-image: url('<?php echo($Config['Web']['BaseURL']); ?>/imgs/web/top_menu.jpg');
|
---|
| 36 | }
|
---|
| 37 |
|
---|
| 38 | #footer
|
---|
| 39 | {
|
---|
| 40 | right: 0px;
|
---|
| 41 | background-color: red;
|
---|
| 42 | position: absolute;
|
---|
| 43 | top: 100%;
|
---|
| 44 | width: 982px;
|
---|
| 45 | height: 100px;
|
---|
| 46 | margin-top: -100px;
|
---|
| 47 | background-image: url('<?php echo($Config['Web']['BaseURL']); ?>/imgs/web/bottom.jpg');
|
---|
| 48 | z-index: 1;
|
---|
| 49 | }
|
---|
| 50 |
|
---|
| 51 | #copyright
|
---|
| 52 | {
|
---|
| 53 | margin-left: 140px;
|
---|
| 54 | font-size:12px;
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 | #menu
|
---|
| 58 | {
|
---|
| 59 | top: 200px;
|
---|
| 60 | width: 150px;
|
---|
| 61 | margin-left: 110px;
|
---|
| 62 | margin-top: -50px;
|
---|
| 63 | height: auto;
|
---|
| 64 | text-align: justify;
|
---|
| 65 | padding-bottom: 100px;
|
---|
| 66 | z-index: 5;
|
---|
| 67 | float: left;
|
---|
| 68 | }
|
---|
| 69 |
|
---|
| 70 | #content
|
---|
| 71 | {
|
---|
| 72 | top: 200px;
|
---|
[704] | 73 | width: 530px;
|
---|
| 74 | margin-left: 70px;
|
---|
[690] | 75 | margin-top: -50px;
|
---|
| 76 | height: auto;
|
---|
| 77 | text-align: justify;
|
---|
| 78 | padding-bottom: 100px;
|
---|
| 79 | z-index: 5;
|
---|
| 80 | float: left;
|
---|
| 81 | overflow: auto;
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 | .mainmenu a
|
---|
| 85 | {
|
---|
| 86 | display: block;
|
---|
| 87 | width: 150px;
|
---|
| 88 | height: 33px;
|
---|
| 89 | line-height: 33px;
|
---|
| 90 | margin-top: -21px;
|
---|
| 91 | overflow: hidden;
|
---|
| 92 | color: white;
|
---|
| 93 | font-weight: bold;
|
---|
| 94 | font-family: Verdana;
|
---|
| 95 | font-size: 12px;
|
---|
| 96 | background-image: url('<?php echo($Config['Web']['BaseURL']); ?>/imgs/web/deselected.jpg');
|
---|
| 97 | text-decoration: none;
|
---|
| 98 | text-align: center;
|
---|
| 99 | margin-bottom: 1px;
|
---|
| 100 | }
|
---|
| 101 |
|
---|
| 102 | #mainmenu a:hover
|
---|
| 103 | {
|
---|
| 104 | color: yellow;
|
---|
| 105 | background-image: url('<?php echo($Config['Web']['BaseURL']); ?>/imgs/web/selected.jpg');
|
---|
| 106 | }
|
---|
| 107 |
|
---|
| 108 | input
|
---|
| 109 | {
|
---|
| 110 | color: black;
|
---|
| 111 | border: 1px solid black;
|
---|
| 112 | background-color: transparent;
|
---|
| 113 | }
|
---|
| 114 |
|
---|
| 115 | textarea
|
---|
| 116 | {
|
---|
| 117 | color: black;
|
---|
| 118 | background-color: transparent;
|
---|
| 119 | border: 1px solid black
|
---|
| 120 | }
|
---|
| 121 |
|
---|
| 122 | select
|
---|
| 123 | {
|
---|
| 124 | color: black;
|
---|
| 125 | background-color: #daaf6b;
|
---|
| 126 | border: 1px solid black
|
---|
| 127 | }
|
---|
| 128 |
|
---|
| 129 | table
|
---|
| 130 | {
|
---|
| 131 | border-collapse: collapse;
|
---|
| 132 | border-color: rgb(48,48,48);
|
---|
| 133 | }
|
---|
| 134 |
|
---|
| 135 | #header
|
---|
| 136 | {
|
---|
| 137 | height: 174px;
|
---|
| 138 | }
|
---|
| 139 |
|
---|
| 140 | a
|
---|
| 141 | {
|
---|
| 142 | font-family: Times New Roman;
|
---|
| 143 | color: #4c4c4c;
|
---|
| 144 | text-decoration: none;
|
---|
| 145 | }
|
---|
| 146 |
|
---|
| 147 | a:hover
|
---|
| 148 | {
|
---|
| 149 | font-family: Times New Roman;
|
---|
| 150 | color: black;
|
---|
| 151 | text-decoration: underline;
|
---|
| 152 | }
|
---|
| 153 |
|
---|
| 154 | .NewsCategoryTable
|
---|
| 155 | {
|
---|
| 156 | border-width: 1px;
|
---|
| 157 | border-style: solid;
|
---|
| 158 | width: 500px;
|
---|
[704] | 159 | margin-left: auto;
|
---|
| 160 | margin-right: auto;
|
---|
| 161 | text-align: center;
|
---|
[690] | 162 | }
|
---|
| 163 |
|
---|
| 164 | .NewsCategoryTable td
|
---|
| 165 | {
|
---|
| 166 | text-align: center;
|
---|
| 167 | border-width: 1px;
|
---|
| 168 | border-style: solid;
|
---|
| 169 | }
|
---|
| 170 |
|
---|
| 171 | .NewsQuickInfoTable
|
---|
| 172 | {
|
---|
| 173 | border-width: 1px;
|
---|
| 174 | border-style: solid;
|
---|
[704] | 175 | width: 526px;
|
---|
[690] | 176 | margin-left: auto;
|
---|
| 177 | margin-right: auto;
|
---|
| 178 | text-align: center;
|
---|
| 179 | }
|
---|
| 180 |
|
---|
| 181 | .NewsQuickInfoTable td
|
---|
| 182 | {
|
---|
[704] | 183 | padding: 2px;
|
---|
[690] | 184 | text-align: left;
|
---|
[704] | 185 | border-color: #703f10;
|
---|
[690] | 186 | border-width: 1px;
|
---|
| 187 | border-style: solid;
|
---|
| 188 | }
|
---|
| 189 |
|
---|
| 190 | .BaseTable
|
---|
| 191 | {
|
---|
| 192 | margin-left: auto;
|
---|
| 193 | margin-right: auto;
|
---|
| 194 | text-align: center;
|
---|
| 195 | border-width: 2px 2px 2px 2px;
|
---|
| 196 | border-style: solid;
|
---|
| 197 | border-color: black;
|
---|
| 198 | }
|
---|
| 199 |
|
---|
| 200 | .BaseTable th
|
---|
| 201 | {
|
---|
| 202 | border-width: 1px 1px 1px 1px;
|
---|
| 203 | border-style: solid;
|
---|
| 204 | border-color: black;
|
---|
| 205 | }
|
---|
| 206 |
|
---|
| 207 | .BaseTable td
|
---|
| 208 | {
|
---|
| 209 | text-align: center;
|
---|
| 210 | border-width: 1px 1px 1px 1px;
|
---|
| 211 | border-style: solid;
|
---|
| 212 | border-color: black;
|
---|
| 213 | }
|
---|
| 214 |
|
---|
| 215 | .Banners
|
---|
| 216 | {
|
---|
| 217 | text-align: center;
|
---|
| 218 | }
|
---|
| 219 |
|
---|
| 220 | .Banners img
|
---|
| 221 | {
|
---|
| 222 | border-width: 0px;
|
---|
| 223 | }
|
---|
| 224 |
|
---|
| 225 | .DownloadTable
|
---|
| 226 | {
|
---|
| 227 | margin-left: auto;
|
---|
| 228 | margin-right: auto;
|
---|
| 229 | text-align: left;
|
---|
| 230 | border-collapse: collapse;
|
---|
| 231 | width: 90%;
|
---|
| 232 | }
|
---|
| 233 |
|
---|
| 234 | .DownloadTable th
|
---|
| 235 | {
|
---|
| 236 | border-bottom-width: thin;
|
---|
| 237 | border-bottom-color: white;
|
---|
| 238 | border-bottom-style: solid;
|
---|
| 239 | }
|
---|
| 240 |
|
---|
[704] | 241 | h2
|
---|
| 242 | {
|
---|
| 243 | margin-top: 0px;
|
---|
| 244 | }
|
---|
| 245 |
|
---|
| 246 | h3
|
---|
| 247 | {
|
---|
| 248 | margin-top: 0px;
|
---|
| 249 | }
|
---|
| 250 |
|
---|
[690] | 251 | .h10
|
---|
| 252 | {
|
---|
| 253 | color: red;
|
---|
| 254 | font-style: arial;
|
---|
| 255 | font-weight: bold;
|
---|
| 256 | }
|
---|
| 257 |
|
---|
| 258 | .h11
|
---|
| 259 | {
|
---|
| 260 | color: blue;
|
---|
| 261 | font-style: arial;
|
---|
| 262 | font-weight: bold;
|
---|
| 263 | }
|
---|
| 264 |
|
---|
| 265 | .PageTitle
|
---|
| 266 | {
|
---|
| 267 | text-align: center;
|
---|
| 268 | }
|
---|
| 269 |
|
---|
| 270 | .GMTeamTable
|
---|
| 271 | {
|
---|
| 272 | margin-left: auto;
|
---|
| 273 | margin-right: auto;
|
---|
| 274 | text-align: center;
|
---|
| 275 | border-width: 0px 0px 1px 0px;
|
---|
| 276 | border-style: solid;
|
---|
| 277 | border-color: black;
|
---|
| 278 | }
|
---|
| 279 |
|
---|
| 280 | .GMTeamTable th
|
---|
| 281 | {
|
---|
| 282 | border-width: 0px;
|
---|
| 283 | border-style: solid;
|
---|
| 284 | border-color: black;
|
---|
| 285 | text-align: left;
|
---|
| 286 | font-weight: normal;
|
---|
| 287 | }
|
---|
| 288 |
|
---|
| 289 | .GMTeamTable td
|
---|
| 290 | {
|
---|
| 291 | text-align: center;
|
---|
| 292 | border-width: 0px;
|
---|
| 293 | border-style: solid;
|
---|
| 294 | border-color: black;
|
---|
| 295 | text-align: left;
|
---|
| 296 | font-weight: bold;
|
---|
| 297 | }
|
---|
| 298 |
|
---|
| 299 | .GMTeamTable tr.start td
|
---|
| 300 | {
|
---|
| 301 | border-width: 1px 0px 0px 0px;
|
---|
| 302 | border-style: solid;
|
---|
| 303 | border-color: black;
|
---|
| 304 | }
|
---|
| 305 |
|
---|
| 306 | .GMTeamTable tr.start th
|
---|
| 307 | {
|
---|
| 308 | border-width: 1px 0px 0px 0px;
|
---|
| 309 | border-style: solid;
|
---|
| 310 | border-color: black;
|
---|
| 311 | }
|
---|
| 312 |
|
---|
| 313 | .SimpleTable
|
---|
| 314 | {
|
---|
| 315 | margin-left: auto;
|
---|
| 316 | margin-right: auto;
|
---|
| 317 | text-align: center;
|
---|
| 318 | border-width: 0px 0px 0px 0px;
|
---|
| 319 | border-style: solid;
|
---|
| 320 | border-color: black;
|
---|
| 321 | }
|
---|
| 322 |
|
---|
| 323 | .Center
|
---|
| 324 | {
|
---|
| 325 | margin-left: auto;
|
---|
| 326 | margin-right: auto;
|
---|
| 327 | text-align: center;
|
---|
| 328 | }
|
---|
| 329 |
|
---|