├── .github └── workflows │ └── terraform.yml ├── README.md ├── css ├── fontAwesome.css └── style.css ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff └── fontawesome-webfont.woff2 ├── images └── bg.jpg ├── index.html └── js └── jquery-3.3.1.min.js /.github/workflows/terraform.yml: -------------------------------------------------------------------------------- 1 | # This workflow installs the latest version of Terraform CLI and configures the Terraform CLI configuration file 2 | # with an API token for Terraform Cloud (app.terraform.io). On pull request events, this workflow will run 3 | # `terraform init`, `terraform fmt`, and `terraform plan` (speculative plan via Terraform Cloud). On push events 4 | # to the main branch, `terraform apply` will be executed. 5 | # 6 | # Documentation for `hashicorp/setup-terraform` is located here: https://github.com/hashicorp/setup-terraform 7 | # 8 | # To use this workflow, you will need to complete the following setup steps. 9 | # 10 | # 1. Create a `main.tf` file in the root of this repository with the `remote` backend and one or more resources defined. 11 | # Example `main.tf`: 12 | # # The configuration for the `remote` backend. 13 | # terraform { 14 | # backend "remote" { 15 | # # The name of your Terraform Cloud organization. 16 | # organization = "example-organization" 17 | # 18 | # # The name of the Terraform Cloud workspace to store Terraform state files in. 19 | # workspaces { 20 | # name = "example-workspace" 21 | # } 22 | # } 23 | # } 24 | # 25 | # # An example resource that does nothing. 26 | # resource "null_resource" "example" { 27 | # triggers = { 28 | # value = "A example resource that does nothing!" 29 | # } 30 | # } 31 | # 32 | # 33 | # 2. Generate a Terraform Cloud user API token and store it as a GitHub secret (e.g. TF_API_TOKEN) on this repository. 34 | # Documentation: 35 | # - https://www.terraform.io/docs/cloud/users-teams-organizations/api-tokens.html 36 | # - https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets 37 | # 38 | # 3. Reference the GitHub secret in step using the `hashicorp/setup-terraform` GitHub Action. 39 | # Example: 40 | # - name: Setup Terraform 41 | # uses: hashicorp/setup-terraform@v1 42 | # with: 43 | # cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }} 44 | 45 | name: 'Terraform' 46 | 47 | on: 48 | push: 49 | branches: 50 | - main 51 | pull_request: 52 | 53 | jobs: 54 | terraform: 55 | name: 'Terraform' 56 | runs-on: ubuntu-latest 57 | environment: production 58 | 59 | # Use the Bash shell regardless whether the GitHub Actions runner is ubuntu-latest, macos-latest, or windows-latest 60 | defaults: 61 | run: 62 | shell: bash 63 | 64 | steps: 65 | # Checkout the repository to the GitHub Actions runner 66 | - name: Checkout 67 | uses: actions/checkout@v2 68 | 69 | # Install the latest version of Terraform CLI and configure the Terraform CLI configuration file with a Terraform Cloud user API token 70 | - name: Setup Terraform 71 | uses: hashicorp/setup-terraform@v1 72 | with: 73 | cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }} 74 | 75 | # Initialize a new or existing Terraform working directory by creating initial files, loading any remote state, downloading modules, etc. 76 | - name: Terraform Init 77 | run: terraform init 78 | 79 | # Checks that all Terraform configuration files adhere to a canonical format 80 | - name: Terraform Format 81 | run: terraform fmt -check 82 | 83 | # Generates an execution plan for Terraform 84 | - name: Terraform Plan 85 | run: terraform plan 86 | 87 | # On push to main, build or change infrastructure according to Terraform configuration files 88 | # Note: It is recommended to set up a required "strict" status check in your repository for "Terraform Cloud". See the documentation on "strict" required status checks for more information: https://help.github.com/en/github/administering-a-repository/types-of-required-status-checks 89 | - name: Terraform Apply 90 | if: github.ref == 'refs/heads/main' && github.event_name == 'push' 91 | run: terraform apply -auto-approve 92 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 404-error-page 2 | -------------------------------------------------------------------------------- /css/fontAwesome.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | @font-face { 6 | font-family: 'FontAwesome'; 7 | src: url("../fonts/fontawesome-webfont.eot?v=4.7.0"); 8 | src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg"); 9 | font-weight: normal; 10 | font-style: normal; } 11 | 12 | .fa { 13 | display: inline-block; 14 | font: normal normal normal 14px/1 FontAwesome; 15 | font-size: inherit; 16 | text-rendering: auto; 17 | -webkit-font-smoothing: antialiased; 18 | -moz-osx-font-smoothing: grayscale; } 19 | 20 | .fa-lg { 21 | font-size: 1.33333333em; 22 | line-height: .75em; 23 | vertical-align: -15%; } 24 | 25 | .fa-2x { 26 | font-size: 2em; } 27 | 28 | .fa-3x { 29 | font-size: 3em; } 30 | 31 | .fa-4x { 32 | font-size: 4em; } 33 | 34 | .fa-5x { 35 | font-size: 5em; } 36 | 37 | .fa-fw { 38 | width: 1.28571429em; 39 | text-align: center; } 40 | 41 | .fa-ul { 42 | padding-left: 0; 43 | margin-left: 2.14285714em; 44 | list-style-type: none; } 45 | 46 | .fa-ul > li { 47 | position: relative; } 48 | 49 | .fa-li { 50 | position: absolute; 51 | left: -2.14285714em; 52 | width: 2.14285714em; 53 | top: .14285714em; 54 | text-align: center; } 55 | 56 | .fa-li.fa-lg { 57 | left: -1.85714286em; } 58 | 59 | .fa-border { 60 | padding: .2em .25em .15em; 61 | border: solid .08em #eee; 62 | border-radius: .1em; } 63 | 64 | .fa-pull-left { 65 | float: left; } 66 | 67 | .fa-pull-right { 68 | float: right; } 69 | 70 | .fa.fa-pull-left { 71 | margin-right: .3em; } 72 | 73 | .fa.fa-pull-right { 74 | margin-left: .3em; } 75 | 76 | .pull-right { 77 | float: right; } 78 | 79 | .pull-left { 80 | float: left; } 81 | 82 | .fa.pull-left { 83 | margin-right: .3em; } 84 | 85 | .fa.pull-right { 86 | margin-left: .3em; } 87 | 88 | .fa-spin { 89 | -webkit-animation: fa-spin 2s infinite linear; 90 | animation: fa-spin 2s infinite linear; } 91 | 92 | .fa-pulse { 93 | -webkit-animation: fa-spin 1s infinite steps(8); 94 | animation: fa-spin 1s infinite steps(8); } 95 | 96 | @-webkit-keyframes fa-spin { 97 | 0% { 98 | transform: rotate(0deg); } 99 | 100% { 100 | transform: rotate(359deg); } } 101 | 102 | @keyframes fa-spin { 103 | 0% { 104 | transform: rotate(0deg); } 105 | 100% { 106 | transform: rotate(359deg); } } 107 | 108 | .fa-rotate-90 { 109 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; 110 | transform: rotate(90deg); } 111 | 112 | .fa-rotate-180 { 113 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; 114 | transform: rotate(180deg); } 115 | 116 | .fa-rotate-270 { 117 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; 118 | transform: rotate(270deg); } 119 | 120 | .fa-flip-horizontal { 121 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; 122 | transform: scale(-1, 1); } 123 | 124 | .fa-flip-vertical { 125 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; 126 | transform: scale(1, -1); } 127 | 128 | :root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical { 129 | -webkit-filter: none; 130 | filter: none; } 131 | 132 | .fa-stack { 133 | position: relative; 134 | display: inline-block; 135 | width: 2em; 136 | height: 2em; 137 | line-height: 2em; 138 | vertical-align: middle; } 139 | 140 | .fa-stack-1x, .fa-stack-2x { 141 | position: absolute; 142 | left: 0; 143 | width: 100%; 144 | text-align: center; } 145 | 146 | .fa-stack-1x { 147 | line-height: inherit; } 148 | 149 | .fa-stack-2x { 150 | font-size: 2em; } 151 | 152 | .fa-inverse { 153 | color: #fff; } 154 | 155 | .fa-glass:before { 156 | content: "\f000"; } 157 | 158 | .fa-music:before { 159 | content: "\f001"; } 160 | 161 | .fa-search:before { 162 | content: "\f002"; } 163 | 164 | .fa-envelope-o:before { 165 | content: "\f003"; } 166 | 167 | .fa-heart:before { 168 | content: "\f004"; } 169 | 170 | .fa-star:before { 171 | content: "\f005"; } 172 | 173 | .fa-star-o:before { 174 | content: "\f006"; } 175 | 176 | .fa-user:before { 177 | content: "\f007"; } 178 | 179 | .fa-film:before { 180 | content: "\f008"; } 181 | 182 | .fa-th-large:before { 183 | content: "\f009"; } 184 | 185 | .fa-th:before { 186 | content: "\f00a"; } 187 | 188 | .fa-th-list:before { 189 | content: "\f00b"; } 190 | 191 | .fa-check:before { 192 | content: "\f00c"; } 193 | 194 | .fa-remove:before, .fa-close:before, .fa-times:before { 195 | content: "\f00d"; } 196 | 197 | .fa-search-plus:before { 198 | content: "\f00e"; } 199 | 200 | .fa-search-minus:before { 201 | content: "\f010"; } 202 | 203 | .fa-power-off:before { 204 | content: "\f011"; } 205 | 206 | .fa-signal:before { 207 | content: "\f012"; } 208 | 209 | .fa-gear:before, .fa-cog:before { 210 | content: "\f013"; } 211 | 212 | .fa-trash-o:before { 213 | content: "\f014"; } 214 | 215 | .fa-home:before { 216 | content: "\f015"; } 217 | 218 | .fa-file-o:before { 219 | content: "\f016"; } 220 | 221 | .fa-clock-o:before { 222 | content: "\f017"; } 223 | 224 | .fa-road:before { 225 | content: "\f018"; } 226 | 227 | .fa-download:before { 228 | content: "\f019"; } 229 | 230 | .fa-arrow-circle-o-down:before { 231 | content: "\f01a"; } 232 | 233 | .fa-arrow-circle-o-up:before { 234 | content: "\f01b"; } 235 | 236 | .fa-inbox:before { 237 | content: "\f01c"; } 238 | 239 | .fa-play-circle-o:before { 240 | content: "\f01d"; } 241 | 242 | .fa-rotate-right:before, .fa-repeat:before { 243 | content: "\f01e"; } 244 | 245 | .fa-refresh:before { 246 | content: "\f021"; } 247 | 248 | .fa-list-alt:before { 249 | content: "\f022"; } 250 | 251 | .fa-lock:before { 252 | content: "\f023"; } 253 | 254 | .fa-flag:before { 255 | content: "\f024"; } 256 | 257 | .fa-headphones:before { 258 | content: "\f025"; } 259 | 260 | .fa-volume-off:before { 261 | content: "\f026"; } 262 | 263 | .fa-volume-down:before { 264 | content: "\f027"; } 265 | 266 | .fa-volume-up:before { 267 | content: "\f028"; } 268 | 269 | .fa-qrcode:before { 270 | content: "\f029"; } 271 | 272 | .fa-barcode:before { 273 | content: "\f02a"; } 274 | 275 | .fa-tag:before { 276 | content: "\f02b"; } 277 | 278 | .fa-tags:before { 279 | content: "\f02c"; } 280 | 281 | .fa-book:before { 282 | content: "\f02d"; } 283 | 284 | .fa-bookmark:before { 285 | content: "\f02e"; } 286 | 287 | .fa-print:before { 288 | content: "\f02f"; } 289 | 290 | .fa-camera:before { 291 | content: "\f030"; } 292 | 293 | .fa-font:before { 294 | content: "\f031"; } 295 | 296 | .fa-bold:before { 297 | content: "\f032"; } 298 | 299 | .fa-italic:before { 300 | content: "\f033"; } 301 | 302 | .fa-text-height:before { 303 | content: "\f034"; } 304 | 305 | .fa-text-width:before { 306 | content: "\f035"; } 307 | 308 | .fa-align-left:before { 309 | content: "\f036"; } 310 | 311 | .fa-align-center:before { 312 | content: "\f037"; } 313 | 314 | .fa-align-right:before { 315 | content: "\f038"; } 316 | 317 | .fa-align-justify:before { 318 | content: "\f039"; } 319 | 320 | .fa-list:before { 321 | content: "\f03a"; } 322 | 323 | .fa-dedent:before, .fa-outdent:before { 324 | content: "\f03b"; } 325 | 326 | .fa-indent:before { 327 | content: "\f03c"; } 328 | 329 | .fa-video-camera:before { 330 | content: "\f03d"; } 331 | 332 | .fa-photo:before, .fa-image:before, .fa-picture-o:before { 333 | content: "\f03e"; } 334 | 335 | .fa-pencil:before { 336 | content: "\f040"; } 337 | 338 | .fa-map-marker:before { 339 | content: "\f041"; } 340 | 341 | .fa-adjust:before { 342 | content: "\f042"; } 343 | 344 | .fa-tint:before { 345 | content: "\f043"; } 346 | 347 | .fa-edit:before, .fa-pencil-square-o:before { 348 | content: "\f044"; } 349 | 350 | .fa-share-square-o:before { 351 | content: "\f045"; } 352 | 353 | .fa-check-square-o:before { 354 | content: "\f046"; } 355 | 356 | .fa-arrows:before { 357 | content: "\f047"; } 358 | 359 | .fa-step-backward:before { 360 | content: "\f048"; } 361 | 362 | .fa-fast-backward:before { 363 | content: "\f049"; } 364 | 365 | .fa-backward:before { 366 | content: "\f04a"; } 367 | 368 | .fa-play:before { 369 | content: "\f04b"; } 370 | 371 | .fa-pause:before { 372 | content: "\f04c"; } 373 | 374 | .fa-stop:before { 375 | content: "\f04d"; } 376 | 377 | .fa-forward:before { 378 | content: "\f04e"; } 379 | 380 | .fa-fast-forward:before { 381 | content: "\f050"; } 382 | 383 | .fa-step-forward:before { 384 | content: "\f051"; } 385 | 386 | .fa-eject:before { 387 | content: "\f052"; } 388 | 389 | .fa-chevron-left:before { 390 | content: "\f053"; } 391 | 392 | .fa-chevron-right:before { 393 | content: "\f054"; } 394 | 395 | .fa-plus-circle:before { 396 | content: "\f055"; } 397 | 398 | .fa-minus-circle:before { 399 | content: "\f056"; } 400 | 401 | .fa-times-circle:before { 402 | content: "\f057"; } 403 | 404 | .fa-check-circle:before { 405 | content: "\f058"; } 406 | 407 | .fa-question-circle:before { 408 | content: "\f059"; } 409 | 410 | .fa-info-circle:before { 411 | content: "\f05a"; } 412 | 413 | .fa-crosshairs:before { 414 | content: "\f05b"; } 415 | 416 | .fa-times-circle-o:before { 417 | content: "\f05c"; } 418 | 419 | .fa-check-circle-o:before { 420 | content: "\f05d"; } 421 | 422 | .fa-ban:before { 423 | content: "\f05e"; } 424 | 425 | .fa-arrow-left:before { 426 | content: "\f060"; } 427 | 428 | .fa-arrow-right:before { 429 | content: "\f061"; } 430 | 431 | .fa-arrow-up:before { 432 | content: "\f062"; } 433 | 434 | .fa-arrow-down:before { 435 | content: "\f063"; } 436 | 437 | .fa-mail-forward:before, .fa-share:before { 438 | content: "\f064"; } 439 | 440 | .fa-expand:before { 441 | content: "\f065"; } 442 | 443 | .fa-compress:before { 444 | content: "\f066"; } 445 | 446 | .fa-plus:before { 447 | content: "\f067"; } 448 | 449 | .fa-minus:before { 450 | content: "\f068"; } 451 | 452 | .fa-asterisk:before { 453 | content: "\f069"; } 454 | 455 | .fa-exclamation-circle:before { 456 | content: "\f06a"; } 457 | 458 | .fa-gift:before { 459 | content: "\f06b"; } 460 | 461 | .fa-leaf:before { 462 | content: "\f06c"; } 463 | 464 | .fa-fire:before { 465 | content: "\f06d"; } 466 | 467 | .fa-eye:before { 468 | content: "\f06e"; } 469 | 470 | .fa-eye-slash:before { 471 | content: "\f070"; } 472 | 473 | .fa-warning:before, .fa-exclamation-triangle:before { 474 | content: "\f071"; } 475 | 476 | .fa-plane:before { 477 | content: "\f072"; } 478 | 479 | .fa-calendar:before { 480 | content: "\f073"; } 481 | 482 | .fa-random:before { 483 | content: "\f074"; } 484 | 485 | .fa-comment:before { 486 | content: "\f075"; } 487 | 488 | .fa-magnet:before { 489 | content: "\f076"; } 490 | 491 | .fa-chevron-up:before { 492 | content: "\f077"; } 493 | 494 | .fa-chevron-down:before { 495 | content: "\f078"; } 496 | 497 | .fa-retweet:before { 498 | content: "\f079"; } 499 | 500 | .fa-shopping-cart:before { 501 | content: "\f07a"; } 502 | 503 | .fa-folder:before { 504 | content: "\f07b"; } 505 | 506 | .fa-folder-open:before { 507 | content: "\f07c"; } 508 | 509 | .fa-arrows-v:before { 510 | content: "\f07d"; } 511 | 512 | .fa-arrows-h:before { 513 | content: "\f07e"; } 514 | 515 | .fa-bar-chart-o:before, .fa-bar-chart:before { 516 | content: "\f080"; } 517 | 518 | .fa-twitter-square:before { 519 | content: "\f081"; } 520 | 521 | .fa-facebook-square:before { 522 | content: "\f082"; } 523 | 524 | .fa-camera-retro:before { 525 | content: "\f083"; } 526 | 527 | .fa-key:before { 528 | content: "\f084"; } 529 | 530 | .fa-gears:before, .fa-cogs:before { 531 | content: "\f085"; } 532 | 533 | .fa-comments:before { 534 | content: "\f086"; } 535 | 536 | .fa-thumbs-o-up:before { 537 | content: "\f087"; } 538 | 539 | .fa-thumbs-o-down:before { 540 | content: "\f088"; } 541 | 542 | .fa-star-half:before { 543 | content: "\f089"; } 544 | 545 | .fa-heart-o:before { 546 | content: "\f08a"; } 547 | 548 | .fa-sign-out:before { 549 | content: "\f08b"; } 550 | 551 | .fa-linkedin-square:before { 552 | content: "\f08c"; } 553 | 554 | .fa-thumb-tack:before { 555 | content: "\f08d"; } 556 | 557 | .fa-external-link:before { 558 | content: "\f08e"; } 559 | 560 | .fa-sign-in:before { 561 | content: "\f090"; } 562 | 563 | .fa-trophy:before { 564 | content: "\f091"; } 565 | 566 | .fa-github-square:before { 567 | content: "\f092"; } 568 | 569 | .fa-upload:before { 570 | content: "\f093"; } 571 | 572 | .fa-lemon-o:before { 573 | content: "\f094"; } 574 | 575 | .fa-phone:before { 576 | content: "\f095"; } 577 | 578 | .fa-square-o:before { 579 | content: "\f096"; } 580 | 581 | .fa-bookmark-o:before { 582 | content: "\f097"; } 583 | 584 | .fa-phone-square:before { 585 | content: "\f098"; } 586 | 587 | .fa-twitter:before { 588 | content: "\f099"; } 589 | 590 | .fa-facebook-f:before, .fa-facebook:before { 591 | content: "\f09a"; } 592 | 593 | .fa-github:before { 594 | content: "\f09b"; } 595 | 596 | .fa-unlock:before { 597 | content: "\f09c"; } 598 | 599 | .fa-credit-card:before { 600 | content: "\f09d"; } 601 | 602 | .fa-feed:before, .fa-rss:before { 603 | content: "\f09e"; } 604 | 605 | .fa-hdd-o:before { 606 | content: "\f0a0"; } 607 | 608 | .fa-bullhorn:before { 609 | content: "\f0a1"; } 610 | 611 | .fa-bell:before { 612 | content: "\f0f3"; } 613 | 614 | .fa-certificate:before { 615 | content: "\f0a3"; } 616 | 617 | .fa-hand-o-right:before { 618 | content: "\f0a4"; } 619 | 620 | .fa-hand-o-left:before { 621 | content: "\f0a5"; } 622 | 623 | .fa-hand-o-up:before { 624 | content: "\f0a6"; } 625 | 626 | .fa-hand-o-down:before { 627 | content: "\f0a7"; } 628 | 629 | .fa-arrow-circle-left:before { 630 | content: "\f0a8"; } 631 | 632 | .fa-arrow-circle-right:before { 633 | content: "\f0a9"; } 634 | 635 | .fa-arrow-circle-up:before { 636 | content: "\f0aa"; } 637 | 638 | .fa-arrow-circle-down:before { 639 | content: "\f0ab"; } 640 | 641 | .fa-globe:before { 642 | content: "\f0ac"; } 643 | 644 | .fa-wrench:before { 645 | content: "\f0ad"; } 646 | 647 | .fa-tasks:before { 648 | content: "\f0ae"; } 649 | 650 | .fa-filter:before { 651 | content: "\f0b0"; } 652 | 653 | .fa-briefcase:before { 654 | content: "\f0b1"; } 655 | 656 | .fa-arrows-alt:before { 657 | content: "\f0b2"; } 658 | 659 | .fa-group:before, .fa-users:before { 660 | content: "\f0c0"; } 661 | 662 | .fa-chain:before, .fa-link:before { 663 | content: "\f0c1"; } 664 | 665 | .fa-cloud:before { 666 | content: "\f0c2"; } 667 | 668 | .fa-flask:before { 669 | content: "\f0c3"; } 670 | 671 | .fa-cut:before, .fa-scissors:before { 672 | content: "\f0c4"; } 673 | 674 | .fa-copy:before, .fa-files-o:before { 675 | content: "\f0c5"; } 676 | 677 | .fa-paperclip:before { 678 | content: "\f0c6"; } 679 | 680 | .fa-save:before, .fa-floppy-o:before { 681 | content: "\f0c7"; } 682 | 683 | .fa-square:before { 684 | content: "\f0c8"; } 685 | 686 | .fa-navicon:before, .fa-reorder:before, .fa-bars:before { 687 | content: "\f0c9"; } 688 | 689 | .fa-list-ul:before { 690 | content: "\f0ca"; } 691 | 692 | .fa-list-ol:before { 693 | content: "\f0cb"; } 694 | 695 | .fa-strikethrough:before { 696 | content: "\f0cc"; } 697 | 698 | .fa-underline:before { 699 | content: "\f0cd"; } 700 | 701 | .fa-table:before { 702 | content: "\f0ce"; } 703 | 704 | .fa-magic:before { 705 | content: "\f0d0"; } 706 | 707 | .fa-truck:before { 708 | content: "\f0d1"; } 709 | 710 | .fa-pinterest:before { 711 | content: "\f0d2"; } 712 | 713 | .fa-pinterest-square:before { 714 | content: "\f0d3"; } 715 | 716 | .fa-google-plus-square:before { 717 | content: "\f0d4"; } 718 | 719 | .fa-google-plus:before { 720 | content: "\f0d5"; } 721 | 722 | .fa-money:before { 723 | content: "\f0d6"; } 724 | 725 | .fa-caret-down:before { 726 | content: "\f0d7"; } 727 | 728 | .fa-caret-up:before { 729 | content: "\f0d8"; } 730 | 731 | .fa-caret-left:before { 732 | content: "\f0d9"; } 733 | 734 | .fa-caret-right:before { 735 | content: "\f0da"; } 736 | 737 | .fa-columns:before { 738 | content: "\f0db"; } 739 | 740 | .fa-unsorted:before, .fa-sort:before { 741 | content: "\f0dc"; } 742 | 743 | .fa-sort-down:before, .fa-sort-desc:before { 744 | content: "\f0dd"; } 745 | 746 | .fa-sort-up:before, .fa-sort-asc:before { 747 | content: "\f0de"; } 748 | 749 | .fa-envelope:before { 750 | content: "\f0e0"; } 751 | 752 | .fa-linkedin:before { 753 | content: "\f0e1"; } 754 | 755 | .fa-rotate-left:before, .fa-undo:before { 756 | content: "\f0e2"; } 757 | 758 | .fa-legal:before, .fa-gavel:before { 759 | content: "\f0e3"; } 760 | 761 | .fa-dashboard:before, .fa-tachometer:before { 762 | content: "\f0e4"; } 763 | 764 | .fa-comment-o:before { 765 | content: "\f0e5"; } 766 | 767 | .fa-comments-o:before { 768 | content: "\f0e6"; } 769 | 770 | .fa-flash:before, .fa-bolt:before { 771 | content: "\f0e7"; } 772 | 773 | .fa-sitemap:before { 774 | content: "\f0e8"; } 775 | 776 | .fa-umbrella:before { 777 | content: "\f0e9"; } 778 | 779 | .fa-paste:before, .fa-clipboard:before { 780 | content: "\f0ea"; } 781 | 782 | .fa-lightbulb-o:before { 783 | content: "\f0eb"; } 784 | 785 | .fa-exchange:before { 786 | content: "\f0ec"; } 787 | 788 | .fa-cloud-download:before { 789 | content: "\f0ed"; } 790 | 791 | .fa-cloud-upload:before { 792 | content: "\f0ee"; } 793 | 794 | .fa-user-md:before { 795 | content: "\f0f0"; } 796 | 797 | .fa-stethoscope:before { 798 | content: "\f0f1"; } 799 | 800 | .fa-suitcase:before { 801 | content: "\f0f2"; } 802 | 803 | .fa-bell-o:before { 804 | content: "\f0a2"; } 805 | 806 | .fa-coffee:before { 807 | content: "\f0f4"; } 808 | 809 | .fa-cutlery:before { 810 | content: "\f0f5"; } 811 | 812 | .fa-file-text-o:before { 813 | content: "\f0f6"; } 814 | 815 | .fa-building-o:before { 816 | content: "\f0f7"; } 817 | 818 | .fa-hospital-o:before { 819 | content: "\f0f8"; } 820 | 821 | .fa-ambulance:before { 822 | content: "\f0f9"; } 823 | 824 | .fa-medkit:before { 825 | content: "\f0fa"; } 826 | 827 | .fa-fighter-jet:before { 828 | content: "\f0fb"; } 829 | 830 | .fa-beer:before { 831 | content: "\f0fc"; } 832 | 833 | .fa-h-square:before { 834 | content: "\f0fd"; } 835 | 836 | .fa-plus-square:before { 837 | content: "\f0fe"; } 838 | 839 | .fa-angle-double-left:before { 840 | content: "\f100"; } 841 | 842 | .fa-angle-double-right:before { 843 | content: "\f101"; } 844 | 845 | .fa-angle-double-up:before { 846 | content: "\f102"; } 847 | 848 | .fa-angle-double-down:before { 849 | content: "\f103"; } 850 | 851 | .fa-angle-left:before { 852 | content: "\f104"; } 853 | 854 | .fa-angle-right:before { 855 | content: "\f105"; } 856 | 857 | .fa-angle-up:before { 858 | content: "\f106"; } 859 | 860 | .fa-angle-down:before { 861 | content: "\f107"; } 862 | 863 | .fa-desktop:before { 864 | content: "\f108"; } 865 | 866 | .fa-laptop:before { 867 | content: "\f109"; } 868 | 869 | .fa-tablet:before { 870 | content: "\f10a"; } 871 | 872 | .fa-mobile-phone:before, .fa-mobile:before { 873 | content: "\f10b"; } 874 | 875 | .fa-circle-o:before { 876 | content: "\f10c"; } 877 | 878 | .fa-quote-left:before { 879 | content: "\f10d"; } 880 | 881 | .fa-quote-right:before { 882 | content: "\f10e"; } 883 | 884 | .fa-spinner:before { 885 | content: "\f110"; } 886 | 887 | .fa-circle:before { 888 | content: "\f111"; } 889 | 890 | .fa-mail-reply:before, .fa-reply:before { 891 | content: "\f112"; } 892 | 893 | .fa-github-alt:before { 894 | content: "\f113"; } 895 | 896 | .fa-folder-o:before { 897 | content: "\f114"; } 898 | 899 | .fa-folder-open-o:before { 900 | content: "\f115"; } 901 | 902 | .fa-smile-o:before { 903 | content: "\f118"; } 904 | 905 | .fa-frown-o:before { 906 | content: "\f119"; } 907 | 908 | .fa-meh-o:before { 909 | content: "\f11a"; } 910 | 911 | .fa-gamepad:before { 912 | content: "\f11b"; } 913 | 914 | .fa-keyboard-o:before { 915 | content: "\f11c"; } 916 | 917 | .fa-flag-o:before { 918 | content: "\f11d"; } 919 | 920 | .fa-flag-checkered:before { 921 | content: "\f11e"; } 922 | 923 | .fa-terminal:before { 924 | content: "\f120"; } 925 | 926 | .fa-code:before { 927 | content: "\f121"; } 928 | 929 | .fa-mail-reply-all:before, .fa-reply-all:before { 930 | content: "\f122"; } 931 | 932 | .fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before { 933 | content: "\f123"; } 934 | 935 | .fa-location-arrow:before { 936 | content: "\f124"; } 937 | 938 | .fa-crop:before { 939 | content: "\f125"; } 940 | 941 | .fa-code-fork:before { 942 | content: "\f126"; } 943 | 944 | .fa-unlink:before, .fa-chain-broken:before { 945 | content: "\f127"; } 946 | 947 | .fa-question:before { 948 | content: "\f128"; } 949 | 950 | .fa-info:before { 951 | content: "\f129"; } 952 | 953 | .fa-exclamation:before { 954 | content: "\f12a"; } 955 | 956 | .fa-superscript:before { 957 | content: "\f12b"; } 958 | 959 | .fa-subscript:before { 960 | content: "\f12c"; } 961 | 962 | .fa-eraser:before { 963 | content: "\f12d"; } 964 | 965 | .fa-puzzle-piece:before { 966 | content: "\f12e"; } 967 | 968 | .fa-microphone:before { 969 | content: "\f130"; } 970 | 971 | .fa-microphone-slash:before { 972 | content: "\f131"; } 973 | 974 | .fa-shield:before { 975 | content: "\f132"; } 976 | 977 | .fa-calendar-o:before { 978 | content: "\f133"; } 979 | 980 | .fa-fire-extinguisher:before { 981 | content: "\f134"; } 982 | 983 | .fa-rocket:before { 984 | content: "\f135"; } 985 | 986 | .fa-maxcdn:before { 987 | content: "\f136"; } 988 | 989 | .fa-chevron-circle-left:before { 990 | content: "\f137"; } 991 | 992 | .fa-chevron-circle-right:before { 993 | content: "\f138"; } 994 | 995 | .fa-chevron-circle-up:before { 996 | content: "\f139"; } 997 | 998 | .fa-chevron-circle-down:before { 999 | content: "\f13a"; } 1000 | 1001 | .fa-html5:before { 1002 | content: "\f13b"; } 1003 | 1004 | .fa-css3:before { 1005 | content: "\f13c"; } 1006 | 1007 | .fa-anchor:before { 1008 | content: "\f13d"; } 1009 | 1010 | .fa-unlock-alt:before { 1011 | content: "\f13e"; } 1012 | 1013 | .fa-bullseye:before { 1014 | content: "\f140"; } 1015 | 1016 | .fa-ellipsis-h:before { 1017 | content: "\f141"; } 1018 | 1019 | .fa-ellipsis-v:before { 1020 | content: "\f142"; } 1021 | 1022 | .fa-rss-square:before { 1023 | content: "\f143"; } 1024 | 1025 | .fa-play-circle:before { 1026 | content: "\f144"; } 1027 | 1028 | .fa-ticket:before { 1029 | content: "\f145"; } 1030 | 1031 | .fa-minus-square:before { 1032 | content: "\f146"; } 1033 | 1034 | .fa-minus-square-o:before { 1035 | content: "\f147"; } 1036 | 1037 | .fa-level-up:before { 1038 | content: "\f148"; } 1039 | 1040 | .fa-level-down:before { 1041 | content: "\f149"; } 1042 | 1043 | .fa-check-square:before { 1044 | content: "\f14a"; } 1045 | 1046 | .fa-pencil-square:before { 1047 | content: "\f14b"; } 1048 | 1049 | .fa-external-link-square:before { 1050 | content: "\f14c"; } 1051 | 1052 | .fa-share-square:before { 1053 | content: "\f14d"; } 1054 | 1055 | .fa-compass:before { 1056 | content: "\f14e"; } 1057 | 1058 | .fa-toggle-down:before, .fa-caret-square-o-down:before { 1059 | content: "\f150"; } 1060 | 1061 | .fa-toggle-up:before, .fa-caret-square-o-up:before { 1062 | content: "\f151"; } 1063 | 1064 | .fa-toggle-right:before, .fa-caret-square-o-right:before { 1065 | content: "\f152"; } 1066 | 1067 | .fa-euro:before, .fa-eur:before { 1068 | content: "\f153"; } 1069 | 1070 | .fa-gbp:before { 1071 | content: "\f154"; } 1072 | 1073 | .fa-dollar:before, .fa-usd:before { 1074 | content: "\f155"; } 1075 | 1076 | .fa-rupee:before, .fa-inr:before { 1077 | content: "\f156"; } 1078 | 1079 | .fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before { 1080 | content: "\f157"; } 1081 | 1082 | .fa-ruble:before, .fa-rouble:before, .fa-rub:before { 1083 | content: "\f158"; } 1084 | 1085 | .fa-won:before, .fa-krw:before { 1086 | content: "\f159"; } 1087 | 1088 | .fa-bitcoin:before, .fa-btc:before { 1089 | content: "\f15a"; } 1090 | 1091 | .fa-file:before { 1092 | content: "\f15b"; } 1093 | 1094 | .fa-file-text:before { 1095 | content: "\f15c"; } 1096 | 1097 | .fa-sort-alpha-asc:before { 1098 | content: "\f15d"; } 1099 | 1100 | .fa-sort-alpha-desc:before { 1101 | content: "\f15e"; } 1102 | 1103 | .fa-sort-amount-asc:before { 1104 | content: "\f160"; } 1105 | 1106 | .fa-sort-amount-desc:before { 1107 | content: "\f161"; } 1108 | 1109 | .fa-sort-numeric-asc:before { 1110 | content: "\f162"; } 1111 | 1112 | .fa-sort-numeric-desc:before { 1113 | content: "\f163"; } 1114 | 1115 | .fa-thumbs-up:before { 1116 | content: "\f164"; } 1117 | 1118 | .fa-thumbs-down:before { 1119 | content: "\f165"; } 1120 | 1121 | .fa-youtube-square:before { 1122 | content: "\f166"; } 1123 | 1124 | .fa-youtube:before { 1125 | content: "\f167"; } 1126 | 1127 | .fa-xing:before { 1128 | content: "\f168"; } 1129 | 1130 | .fa-xing-square:before { 1131 | content: "\f169"; } 1132 | 1133 | .fa-youtube-play:before { 1134 | content: "\f16a"; } 1135 | 1136 | .fa-dropbox:before { 1137 | content: "\f16b"; } 1138 | 1139 | .fa-stack-overflow:before { 1140 | content: "\f16c"; } 1141 | 1142 | .fa-instagram:before { 1143 | content: "\f16d"; } 1144 | 1145 | .fa-flickr:before { 1146 | content: "\f16e"; } 1147 | 1148 | .fa-adn:before { 1149 | content: "\f170"; } 1150 | 1151 | .fa-bitbucket:before { 1152 | content: "\f171"; } 1153 | 1154 | .fa-bitbucket-square:before { 1155 | content: "\f172"; } 1156 | 1157 | .fa-tumblr:before { 1158 | content: "\f173"; } 1159 | 1160 | .fa-tumblr-square:before { 1161 | content: "\f174"; } 1162 | 1163 | .fa-long-arrow-down:before { 1164 | content: "\f175"; } 1165 | 1166 | .fa-long-arrow-up:before { 1167 | content: "\f176"; } 1168 | 1169 | .fa-long-arrow-left:before { 1170 | content: "\f177"; } 1171 | 1172 | .fa-long-arrow-right:before { 1173 | content: "\f178"; } 1174 | 1175 | .fa-apple:before { 1176 | content: "\f179"; } 1177 | 1178 | .fa-windows:before { 1179 | content: "\f17a"; } 1180 | 1181 | .fa-android:before { 1182 | content: "\f17b"; } 1183 | 1184 | .fa-linux:before { 1185 | content: "\f17c"; } 1186 | 1187 | .fa-dribbble:before { 1188 | content: "\f17d"; } 1189 | 1190 | .fa-skype:before { 1191 | content: "\f17e"; } 1192 | 1193 | .fa-foursquare:before { 1194 | content: "\f180"; } 1195 | 1196 | .fa-trello:before { 1197 | content: "\f181"; } 1198 | 1199 | .fa-female:before { 1200 | content: "\f182"; } 1201 | 1202 | .fa-male:before { 1203 | content: "\f183"; } 1204 | 1205 | .fa-gittip:before, .fa-gratipay:before { 1206 | content: "\f184"; } 1207 | 1208 | .fa-sun-o:before { 1209 | content: "\f185"; } 1210 | 1211 | .fa-moon-o:before { 1212 | content: "\f186"; } 1213 | 1214 | .fa-archive:before { 1215 | content: "\f187"; } 1216 | 1217 | .fa-bug:before { 1218 | content: "\f188"; } 1219 | 1220 | .fa-vk:before { 1221 | content: "\f189"; } 1222 | 1223 | .fa-weibo:before { 1224 | content: "\f18a"; } 1225 | 1226 | .fa-renren:before { 1227 | content: "\f18b"; } 1228 | 1229 | .fa-pagelines:before { 1230 | content: "\f18c"; } 1231 | 1232 | .fa-stack-exchange:before { 1233 | content: "\f18d"; } 1234 | 1235 | .fa-arrow-circle-o-right:before { 1236 | content: "\f18e"; } 1237 | 1238 | .fa-arrow-circle-o-left:before { 1239 | content: "\f190"; } 1240 | 1241 | .fa-toggle-left:before, .fa-caret-square-o-left:before { 1242 | content: "\f191"; } 1243 | 1244 | .fa-dot-circle-o:before { 1245 | content: "\f192"; } 1246 | 1247 | .fa-wheelchair:before { 1248 | content: "\f193"; } 1249 | 1250 | .fa-vimeo-square:before { 1251 | content: "\f194"; } 1252 | 1253 | .fa-turkish-lira:before, .fa-try:before { 1254 | content: "\f195"; } 1255 | 1256 | .fa-plus-square-o:before { 1257 | content: "\f196"; } 1258 | 1259 | .fa-space-shuttle:before { 1260 | content: "\f197"; } 1261 | 1262 | .fa-slack:before { 1263 | content: "\f198"; } 1264 | 1265 | .fa-envelope-square:before { 1266 | content: "\f199"; } 1267 | 1268 | .fa-wordpress:before { 1269 | content: "\f19a"; } 1270 | 1271 | .fa-openid:before { 1272 | content: "\f19b"; } 1273 | 1274 | .fa-institution:before, .fa-bank:before, .fa-university:before { 1275 | content: "\f19c"; } 1276 | 1277 | .fa-mortar-board:before, .fa-graduation-cap:before { 1278 | content: "\f19d"; } 1279 | 1280 | .fa-yahoo:before { 1281 | content: "\f19e"; } 1282 | 1283 | .fa-google:before { 1284 | content: "\f1a0"; } 1285 | 1286 | .fa-reddit:before { 1287 | content: "\f1a1"; } 1288 | 1289 | .fa-reddit-square:before { 1290 | content: "\f1a2"; } 1291 | 1292 | .fa-stumbleupon-circle:before { 1293 | content: "\f1a3"; } 1294 | 1295 | .fa-stumbleupon:before { 1296 | content: "\f1a4"; } 1297 | 1298 | .fa-delicious:before { 1299 | content: "\f1a5"; } 1300 | 1301 | .fa-digg:before { 1302 | content: "\f1a6"; } 1303 | 1304 | .fa-pied-piper-pp:before { 1305 | content: "\f1a7"; } 1306 | 1307 | .fa-pied-piper-alt:before { 1308 | content: "\f1a8"; } 1309 | 1310 | .fa-drupal:before { 1311 | content: "\f1a9"; } 1312 | 1313 | .fa-joomla:before { 1314 | content: "\f1aa"; } 1315 | 1316 | .fa-language:before { 1317 | content: "\f1ab"; } 1318 | 1319 | .fa-fax:before { 1320 | content: "\f1ac"; } 1321 | 1322 | .fa-building:before { 1323 | content: "\f1ad"; } 1324 | 1325 | .fa-child:before { 1326 | content: "\f1ae"; } 1327 | 1328 | .fa-paw:before { 1329 | content: "\f1b0"; } 1330 | 1331 | .fa-spoon:before { 1332 | content: "\f1b1"; } 1333 | 1334 | .fa-cube:before { 1335 | content: "\f1b2"; } 1336 | 1337 | .fa-cubes:before { 1338 | content: "\f1b3"; } 1339 | 1340 | .fa-behance:before { 1341 | content: "\f1b4"; } 1342 | 1343 | .fa-behance-square:before { 1344 | content: "\f1b5"; } 1345 | 1346 | .fa-steam:before { 1347 | content: "\f1b6"; } 1348 | 1349 | .fa-steam-square:before { 1350 | content: "\f1b7"; } 1351 | 1352 | .fa-recycle:before { 1353 | content: "\f1b8"; } 1354 | 1355 | .fa-automobile:before, .fa-car:before { 1356 | content: "\f1b9"; } 1357 | 1358 | .fa-cab:before, .fa-taxi:before { 1359 | content: "\f1ba"; } 1360 | 1361 | .fa-tree:before { 1362 | content: "\f1bb"; } 1363 | 1364 | .fa-spotify:before { 1365 | content: "\f1bc"; } 1366 | 1367 | .fa-deviantart:before { 1368 | content: "\f1bd"; } 1369 | 1370 | .fa-soundcloud:before { 1371 | content: "\f1be"; } 1372 | 1373 | .fa-database:before { 1374 | content: "\f1c0"; } 1375 | 1376 | .fa-file-pdf-o:before { 1377 | content: "\f1c1"; } 1378 | 1379 | .fa-file-word-o:before { 1380 | content: "\f1c2"; } 1381 | 1382 | .fa-file-excel-o:before { 1383 | content: "\f1c3"; } 1384 | 1385 | .fa-file-powerpoint-o:before { 1386 | content: "\f1c4"; } 1387 | 1388 | .fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before { 1389 | content: "\f1c5"; } 1390 | 1391 | .fa-file-zip-o:before, .fa-file-archive-o:before { 1392 | content: "\f1c6"; } 1393 | 1394 | .fa-file-sound-o:before, .fa-file-audio-o:before { 1395 | content: "\f1c7"; } 1396 | 1397 | .fa-file-movie-o:before, .fa-file-video-o:before { 1398 | content: "\f1c8"; } 1399 | 1400 | .fa-file-code-o:before { 1401 | content: "\f1c9"; } 1402 | 1403 | .fa-vine:before { 1404 | content: "\f1ca"; } 1405 | 1406 | .fa-codepen:before { 1407 | content: "\f1cb"; } 1408 | 1409 | .fa-jsfiddle:before { 1410 | content: "\f1cc"; } 1411 | 1412 | .fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before { 1413 | content: "\f1cd"; } 1414 | 1415 | .fa-circle-o-notch:before { 1416 | content: "\f1ce"; } 1417 | 1418 | .fa-ra:before, .fa-resistance:before, .fa-rebel:before { 1419 | content: "\f1d0"; } 1420 | 1421 | .fa-ge:before, .fa-empire:before { 1422 | content: "\f1d1"; } 1423 | 1424 | .fa-git-square:before { 1425 | content: "\f1d2"; } 1426 | 1427 | .fa-git:before { 1428 | content: "\f1d3"; } 1429 | 1430 | .fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before { 1431 | content: "\f1d4"; } 1432 | 1433 | .fa-tencent-weibo:before { 1434 | content: "\f1d5"; } 1435 | 1436 | .fa-qq:before { 1437 | content: "\f1d6"; } 1438 | 1439 | .fa-wechat:before, .fa-weixin:before { 1440 | content: "\f1d7"; } 1441 | 1442 | .fa-send:before, .fa-paper-plane:before { 1443 | content: "\f1d8"; } 1444 | 1445 | .fa-send-o:before, .fa-paper-plane-o:before { 1446 | content: "\f1d9"; } 1447 | 1448 | .fa-history:before { 1449 | content: "\f1da"; } 1450 | 1451 | .fa-circle-thin:before { 1452 | content: "\f1db"; } 1453 | 1454 | .fa-header:before { 1455 | content: "\f1dc"; } 1456 | 1457 | .fa-paragraph:before { 1458 | content: "\f1dd"; } 1459 | 1460 | .fa-sliders:before { 1461 | content: "\f1de"; } 1462 | 1463 | .fa-share-alt:before { 1464 | content: "\f1e0"; } 1465 | 1466 | .fa-share-alt-square:before { 1467 | content: "\f1e1"; } 1468 | 1469 | .fa-bomb:before { 1470 | content: "\f1e2"; } 1471 | 1472 | .fa-soccer-ball-o:before, .fa-futbol-o:before { 1473 | content: "\f1e3"; } 1474 | 1475 | .fa-tty:before { 1476 | content: "\f1e4"; } 1477 | 1478 | .fa-binoculars:before { 1479 | content: "\f1e5"; } 1480 | 1481 | .fa-plug:before { 1482 | content: "\f1e6"; } 1483 | 1484 | .fa-slideshare:before { 1485 | content: "\f1e7"; } 1486 | 1487 | .fa-twitch:before { 1488 | content: "\f1e8"; } 1489 | 1490 | .fa-yelp:before { 1491 | content: "\f1e9"; } 1492 | 1493 | .fa-newspaper-o:before { 1494 | content: "\f1ea"; } 1495 | 1496 | .fa-wifi:before { 1497 | content: "\f1eb"; } 1498 | 1499 | .fa-calculator:before { 1500 | content: "\f1ec"; } 1501 | 1502 | .fa-paypal:before { 1503 | content: "\f1ed"; } 1504 | 1505 | .fa-google-wallet:before { 1506 | content: "\f1ee"; } 1507 | 1508 | .fa-cc-visa:before { 1509 | content: "\f1f0"; } 1510 | 1511 | .fa-cc-mastercard:before { 1512 | content: "\f1f1"; } 1513 | 1514 | .fa-cc-discover:before { 1515 | content: "\f1f2"; } 1516 | 1517 | .fa-cc-amex:before { 1518 | content: "\f1f3"; } 1519 | 1520 | .fa-cc-paypal:before { 1521 | content: "\f1f4"; } 1522 | 1523 | .fa-cc-stripe:before { 1524 | content: "\f1f5"; } 1525 | 1526 | .fa-bell-slash:before { 1527 | content: "\f1f6"; } 1528 | 1529 | .fa-bell-slash-o:before { 1530 | content: "\f1f7"; } 1531 | 1532 | .fa-trash:before { 1533 | content: "\f1f8"; } 1534 | 1535 | .fa-copyright:before { 1536 | content: "\f1f9"; } 1537 | 1538 | .fa-at:before { 1539 | content: "\f1fa"; } 1540 | 1541 | .fa-eyedropper:before { 1542 | content: "\f1fb"; } 1543 | 1544 | .fa-paint-brush:before { 1545 | content: "\f1fc"; } 1546 | 1547 | .fa-birthday-cake:before { 1548 | content: "\f1fd"; } 1549 | 1550 | .fa-area-chart:before { 1551 | content: "\f1fe"; } 1552 | 1553 | .fa-pie-chart:before { 1554 | content: "\f200"; } 1555 | 1556 | .fa-line-chart:before { 1557 | content: "\f201"; } 1558 | 1559 | .fa-lastfm:before { 1560 | content: "\f202"; } 1561 | 1562 | .fa-lastfm-square:before { 1563 | content: "\f203"; } 1564 | 1565 | .fa-toggle-off:before { 1566 | content: "\f204"; } 1567 | 1568 | .fa-toggle-on:before { 1569 | content: "\f205"; } 1570 | 1571 | .fa-bicycle:before { 1572 | content: "\f206"; } 1573 | 1574 | .fa-bus:before { 1575 | content: "\f207"; } 1576 | 1577 | .fa-ioxhost:before { 1578 | content: "\f208"; } 1579 | 1580 | .fa-angellist:before { 1581 | content: "\f209"; } 1582 | 1583 | .fa-cc:before { 1584 | content: "\f20a"; } 1585 | 1586 | .fa-shekel:before, .fa-sheqel:before, .fa-ils:before { 1587 | content: "\f20b"; } 1588 | 1589 | .fa-meanpath:before { 1590 | content: "\f20c"; } 1591 | 1592 | .fa-buysellads:before { 1593 | content: "\f20d"; } 1594 | 1595 | .fa-connectdevelop:before { 1596 | content: "\f20e"; } 1597 | 1598 | .fa-dashcube:before { 1599 | content: "\f210"; } 1600 | 1601 | .fa-forumbee:before { 1602 | content: "\f211"; } 1603 | 1604 | .fa-leanpub:before { 1605 | content: "\f212"; } 1606 | 1607 | .fa-sellsy:before { 1608 | content: "\f213"; } 1609 | 1610 | .fa-shirtsinbulk:before { 1611 | content: "\f214"; } 1612 | 1613 | .fa-simplybuilt:before { 1614 | content: "\f215"; } 1615 | 1616 | .fa-skyatlas:before { 1617 | content: "\f216"; } 1618 | 1619 | .fa-cart-plus:before { 1620 | content: "\f217"; } 1621 | 1622 | .fa-cart-arrow-down:before { 1623 | content: "\f218"; } 1624 | 1625 | .fa-diamond:before { 1626 | content: "\f219"; } 1627 | 1628 | .fa-ship:before { 1629 | content: "\f21a"; } 1630 | 1631 | .fa-user-secret:before { 1632 | content: "\f21b"; } 1633 | 1634 | .fa-motorcycle:before { 1635 | content: "\f21c"; } 1636 | 1637 | .fa-street-view:before { 1638 | content: "\f21d"; } 1639 | 1640 | .fa-heartbeat:before { 1641 | content: "\f21e"; } 1642 | 1643 | .fa-venus:before { 1644 | content: "\f221"; } 1645 | 1646 | .fa-mars:before { 1647 | content: "\f222"; } 1648 | 1649 | .fa-mercury:before { 1650 | content: "\f223"; } 1651 | 1652 | .fa-intersex:before, .fa-transgender:before { 1653 | content: "\f224"; } 1654 | 1655 | .fa-transgender-alt:before { 1656 | content: "\f225"; } 1657 | 1658 | .fa-venus-double:before { 1659 | content: "\f226"; } 1660 | 1661 | .fa-mars-double:before { 1662 | content: "\f227"; } 1663 | 1664 | .fa-venus-mars:before { 1665 | content: "\f228"; } 1666 | 1667 | .fa-mars-stroke:before { 1668 | content: "\f229"; } 1669 | 1670 | .fa-mars-stroke-v:before { 1671 | content: "\f22a"; } 1672 | 1673 | .fa-mars-stroke-h:before { 1674 | content: "\f22b"; } 1675 | 1676 | .fa-neuter:before { 1677 | content: "\f22c"; } 1678 | 1679 | .fa-genderless:before { 1680 | content: "\f22d"; } 1681 | 1682 | .fa-facebook-official:before { 1683 | content: "\f230"; } 1684 | 1685 | .fa-pinterest-p:before { 1686 | content: "\f231"; } 1687 | 1688 | .fa-whatsapp:before { 1689 | content: "\f232"; } 1690 | 1691 | .fa-server:before { 1692 | content: "\f233"; } 1693 | 1694 | .fa-user-plus:before { 1695 | content: "\f234"; } 1696 | 1697 | .fa-user-times:before { 1698 | content: "\f235"; } 1699 | 1700 | .fa-hotel:before, .fa-bed:before { 1701 | content: "\f236"; } 1702 | 1703 | .fa-viacoin:before { 1704 | content: "\f237"; } 1705 | 1706 | .fa-train:before { 1707 | content: "\f238"; } 1708 | 1709 | .fa-subway:before { 1710 | content: "\f239"; } 1711 | 1712 | .fa-medium:before { 1713 | content: "\f23a"; } 1714 | 1715 | .fa-yc:before, .fa-y-combinator:before { 1716 | content: "\f23b"; } 1717 | 1718 | .fa-optin-monster:before { 1719 | content: "\f23c"; } 1720 | 1721 | .fa-opencart:before { 1722 | content: "\f23d"; } 1723 | 1724 | .fa-expeditedssl:before { 1725 | content: "\f23e"; } 1726 | 1727 | .fa-battery-4:before, .fa-battery:before, .fa-battery-full:before { 1728 | content: "\f240"; } 1729 | 1730 | .fa-battery-3:before, .fa-battery-three-quarters:before { 1731 | content: "\f241"; } 1732 | 1733 | .fa-battery-2:before, .fa-battery-half:before { 1734 | content: "\f242"; } 1735 | 1736 | .fa-battery-1:before, .fa-battery-quarter:before { 1737 | content: "\f243"; } 1738 | 1739 | .fa-battery-0:before, .fa-battery-empty:before { 1740 | content: "\f244"; } 1741 | 1742 | .fa-mouse-pointer:before { 1743 | content: "\f245"; } 1744 | 1745 | .fa-i-cursor:before { 1746 | content: "\f246"; } 1747 | 1748 | .fa-object-group:before { 1749 | content: "\f247"; } 1750 | 1751 | .fa-object-ungroup:before { 1752 | content: "\f248"; } 1753 | 1754 | .fa-sticky-note:before { 1755 | content: "\f249"; } 1756 | 1757 | .fa-sticky-note-o:before { 1758 | content: "\f24a"; } 1759 | 1760 | .fa-cc-jcb:before { 1761 | content: "\f24b"; } 1762 | 1763 | .fa-cc-diners-club:before { 1764 | content: "\f24c"; } 1765 | 1766 | .fa-clone:before { 1767 | content: "\f24d"; } 1768 | 1769 | .fa-balance-scale:before { 1770 | content: "\f24e"; } 1771 | 1772 | .fa-hourglass-o:before { 1773 | content: "\f250"; } 1774 | 1775 | .fa-hourglass-1:before, .fa-hourglass-start:before { 1776 | content: "\f251"; } 1777 | 1778 | .fa-hourglass-2:before, .fa-hourglass-half:before { 1779 | content: "\f252"; } 1780 | 1781 | .fa-hourglass-3:before, .fa-hourglass-end:before { 1782 | content: "\f253"; } 1783 | 1784 | .fa-hourglass:before { 1785 | content: "\f254"; } 1786 | 1787 | .fa-hand-grab-o:before, .fa-hand-rock-o:before { 1788 | content: "\f255"; } 1789 | 1790 | .fa-hand-stop-o:before, .fa-hand-paper-o:before { 1791 | content: "\f256"; } 1792 | 1793 | .fa-hand-scissors-o:before { 1794 | content: "\f257"; } 1795 | 1796 | .fa-hand-lizard-o:before { 1797 | content: "\f258"; } 1798 | 1799 | .fa-hand-spock-o:before { 1800 | content: "\f259"; } 1801 | 1802 | .fa-hand-pointer-o:before { 1803 | content: "\f25a"; } 1804 | 1805 | .fa-hand-peace-o:before { 1806 | content: "\f25b"; } 1807 | 1808 | .fa-trademark:before { 1809 | content: "\f25c"; } 1810 | 1811 | .fa-registered:before { 1812 | content: "\f25d"; } 1813 | 1814 | .fa-creative-commons:before { 1815 | content: "\f25e"; } 1816 | 1817 | .fa-gg:before { 1818 | content: "\f260"; } 1819 | 1820 | .fa-gg-circle:before { 1821 | content: "\f261"; } 1822 | 1823 | .fa-tripadvisor:before { 1824 | content: "\f262"; } 1825 | 1826 | .fa-odnoklassniki:before { 1827 | content: "\f263"; } 1828 | 1829 | .fa-odnoklassniki-square:before { 1830 | content: "\f264"; } 1831 | 1832 | .fa-get-pocket:before { 1833 | content: "\f265"; } 1834 | 1835 | .fa-wikipedia-w:before { 1836 | content: "\f266"; } 1837 | 1838 | .fa-safari:before { 1839 | content: "\f267"; } 1840 | 1841 | .fa-chrome:before { 1842 | content: "\f268"; } 1843 | 1844 | .fa-firefox:before { 1845 | content: "\f269"; } 1846 | 1847 | .fa-opera:before { 1848 | content: "\f26a"; } 1849 | 1850 | .fa-internet-explorer:before { 1851 | content: "\f26b"; } 1852 | 1853 | .fa-tv:before, .fa-television:before { 1854 | content: "\f26c"; } 1855 | 1856 | .fa-contao:before { 1857 | content: "\f26d"; } 1858 | 1859 | .fa-500px:before { 1860 | content: "\f26e"; } 1861 | 1862 | .fa-amazon:before { 1863 | content: "\f270"; } 1864 | 1865 | .fa-calendar-plus-o:before { 1866 | content: "\f271"; } 1867 | 1868 | .fa-calendar-minus-o:before { 1869 | content: "\f272"; } 1870 | 1871 | .fa-calendar-times-o:before { 1872 | content: "\f273"; } 1873 | 1874 | .fa-calendar-check-o:before { 1875 | content: "\f274"; } 1876 | 1877 | .fa-industry:before { 1878 | content: "\f275"; } 1879 | 1880 | .fa-map-pin:before { 1881 | content: "\f276"; } 1882 | 1883 | .fa-map-signs:before { 1884 | content: "\f277"; } 1885 | 1886 | .fa-map-o:before { 1887 | content: "\f278"; } 1888 | 1889 | .fa-map:before { 1890 | content: "\f279"; } 1891 | 1892 | .fa-commenting:before { 1893 | content: "\f27a"; } 1894 | 1895 | .fa-commenting-o:before { 1896 | content: "\f27b"; } 1897 | 1898 | .fa-houzz:before { 1899 | content: "\f27c"; } 1900 | 1901 | .fa-vimeo:before { 1902 | content: "\f27d"; } 1903 | 1904 | .fa-black-tie:before { 1905 | content: "\f27e"; } 1906 | 1907 | .fa-fonticons:before { 1908 | content: "\f280"; } 1909 | 1910 | .fa-reddit-alien:before { 1911 | content: "\f281"; } 1912 | 1913 | .fa-edge:before { 1914 | content: "\f282"; } 1915 | 1916 | .fa-credit-card-alt:before { 1917 | content: "\f283"; } 1918 | 1919 | .fa-codiepie:before { 1920 | content: "\f284"; } 1921 | 1922 | .fa-modx:before { 1923 | content: "\f285"; } 1924 | 1925 | .fa-fort-awesome:before { 1926 | content: "\f286"; } 1927 | 1928 | .fa-usb:before { 1929 | content: "\f287"; } 1930 | 1931 | .fa-product-hunt:before { 1932 | content: "\f288"; } 1933 | 1934 | .fa-mixcloud:before { 1935 | content: "\f289"; } 1936 | 1937 | .fa-scribd:before { 1938 | content: "\f28a"; } 1939 | 1940 | .fa-pause-circle:before { 1941 | content: "\f28b"; } 1942 | 1943 | .fa-pause-circle-o:before { 1944 | content: "\f28c"; } 1945 | 1946 | .fa-stop-circle:before { 1947 | content: "\f28d"; } 1948 | 1949 | .fa-stop-circle-o:before { 1950 | content: "\f28e"; } 1951 | 1952 | .fa-shopping-bag:before { 1953 | content: "\f290"; } 1954 | 1955 | .fa-shopping-basket:before { 1956 | content: "\f291"; } 1957 | 1958 | .fa-hashtag:before { 1959 | content: "\f292"; } 1960 | 1961 | .fa-bluetooth:before { 1962 | content: "\f293"; } 1963 | 1964 | .fa-bluetooth-b:before { 1965 | content: "\f294"; } 1966 | 1967 | .fa-percent:before { 1968 | content: "\f295"; } 1969 | 1970 | .fa-gitlab:before { 1971 | content: "\f296"; } 1972 | 1973 | .fa-wpbeginner:before { 1974 | content: "\f297"; } 1975 | 1976 | .fa-wpforms:before { 1977 | content: "\f298"; } 1978 | 1979 | .fa-envira:before { 1980 | content: "\f299"; } 1981 | 1982 | .fa-universal-access:before { 1983 | content: "\f29a"; } 1984 | 1985 | .fa-wheelchair-alt:before { 1986 | content: "\f29b"; } 1987 | 1988 | .fa-question-circle-o:before { 1989 | content: "\f29c"; } 1990 | 1991 | .fa-blind:before { 1992 | content: "\f29d"; } 1993 | 1994 | .fa-audio-description:before { 1995 | content: "\f29e"; } 1996 | 1997 | .fa-volume-control-phone:before { 1998 | content: "\f2a0"; } 1999 | 2000 | .fa-braille:before { 2001 | content: "\f2a1"; } 2002 | 2003 | .fa-assistive-listening-systems:before { 2004 | content: "\f2a2"; } 2005 | 2006 | .fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before { 2007 | content: "\f2a3"; } 2008 | 2009 | .fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before { 2010 | content: "\f2a4"; } 2011 | 2012 | .fa-glide:before { 2013 | content: "\f2a5"; } 2014 | 2015 | .fa-glide-g:before { 2016 | content: "\f2a6"; } 2017 | 2018 | .fa-signing:before, .fa-sign-language:before { 2019 | content: "\f2a7"; } 2020 | 2021 | .fa-low-vision:before { 2022 | content: "\f2a8"; } 2023 | 2024 | .fa-viadeo:before { 2025 | content: "\f2a9"; } 2026 | 2027 | .fa-viadeo-square:before { 2028 | content: "\f2aa"; } 2029 | 2030 | .fa-snapchat:before { 2031 | content: "\f2ab"; } 2032 | 2033 | .fa-snapchat-ghost:before { 2034 | content: "\f2ac"; } 2035 | 2036 | .fa-snapchat-square:before { 2037 | content: "\f2ad"; } 2038 | 2039 | .fa-pied-piper:before { 2040 | content: "\f2ae"; } 2041 | 2042 | .fa-first-order:before { 2043 | content: "\f2b0"; } 2044 | 2045 | .fa-yoast:before { 2046 | content: "\f2b1"; } 2047 | 2048 | .fa-themeisle:before { 2049 | content: "\f2b2"; } 2050 | 2051 | .fa-google-plus-circle:before, .fa-google-plus-official:before { 2052 | content: "\f2b3"; } 2053 | 2054 | .fa-fa:before, .fa-font-awesome:before { 2055 | content: "\f2b4"; } 2056 | 2057 | .fa-handshake-o:before { 2058 | content: "\f2b5"; } 2059 | 2060 | .fa-envelope-open:before { 2061 | content: "\f2b6"; } 2062 | 2063 | .fa-envelope-open-o:before { 2064 | content: "\f2b7"; } 2065 | 2066 | .fa-linode:before { 2067 | content: "\f2b8"; } 2068 | 2069 | .fa-address-book:before { 2070 | content: "\f2b9"; } 2071 | 2072 | .fa-address-book-o:before { 2073 | content: "\f2ba"; } 2074 | 2075 | .fa-vcard:before, .fa-address-card:before { 2076 | content: "\f2bb"; } 2077 | 2078 | .fa-vcard-o:before, .fa-address-card-o:before { 2079 | content: "\f2bc"; } 2080 | 2081 | .fa-user-circle:before { 2082 | content: "\f2bd"; } 2083 | 2084 | .fa-user-circle-o:before { 2085 | content: "\f2be"; } 2086 | 2087 | .fa-user-o:before { 2088 | content: "\f2c0"; } 2089 | 2090 | .fa-id-badge:before { 2091 | content: "\f2c1"; } 2092 | 2093 | .fa-drivers-license:before, .fa-id-card:before { 2094 | content: "\f2c2"; } 2095 | 2096 | .fa-drivers-license-o:before, .fa-id-card-o:before { 2097 | content: "\f2c3"; } 2098 | 2099 | .fa-quora:before { 2100 | content: "\f2c4"; } 2101 | 2102 | .fa-free-code-camp:before { 2103 | content: "\f2c5"; } 2104 | 2105 | .fa-telegram:before { 2106 | content: "\f2c6"; } 2107 | 2108 | .fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before { 2109 | content: "\f2c7"; } 2110 | 2111 | .fa-thermometer-3:before, .fa-thermometer-three-quarters:before { 2112 | content: "\f2c8"; } 2113 | 2114 | .fa-thermometer-2:before, .fa-thermometer-half:before { 2115 | content: "\f2c9"; } 2116 | 2117 | .fa-thermometer-1:before, .fa-thermometer-quarter:before { 2118 | content: "\f2ca"; } 2119 | 2120 | .fa-thermometer-0:before, .fa-thermometer-empty:before { 2121 | content: "\f2cb"; } 2122 | 2123 | .fa-shower:before { 2124 | content: "\f2cc"; } 2125 | 2126 | .fa-bathtub:before, .fa-s15:before, .fa-bath:before { 2127 | content: "\f2cd"; } 2128 | 2129 | .fa-podcast:before { 2130 | content: "\f2ce"; } 2131 | 2132 | .fa-window-maximize:before { 2133 | content: "\f2d0"; } 2134 | 2135 | .fa-window-minimize:before { 2136 | content: "\f2d1"; } 2137 | 2138 | .fa-window-restore:before { 2139 | content: "\f2d2"; } 2140 | 2141 | .fa-times-rectangle:before, .fa-window-close:before { 2142 | content: "\f2d3"; } 2143 | 2144 | .fa-times-rectangle-o:before, .fa-window-close-o:before { 2145 | content: "\f2d4"; } 2146 | 2147 | .fa-bandcamp:before { 2148 | content: "\f2d5"; } 2149 | 2150 | .fa-grav:before { 2151 | content: "\f2d6"; } 2152 | 2153 | .fa-etsy:before { 2154 | content: "\f2d7"; } 2155 | 2156 | .fa-imdb:before { 2157 | content: "\f2d8"; } 2158 | 2159 | .fa-ravelry:before { 2160 | content: "\f2d9"; } 2161 | 2162 | .fa-eercast:before { 2163 | content: "\f2da"; } 2164 | 2165 | .fa-microchip:before { 2166 | content: "\f2db"; } 2167 | 2168 | .fa-snowflake-o:before { 2169 | content: "\f2dc"; } 2170 | 2171 | .fa-superpowers:before { 2172 | content: "\f2dd"; } 2173 | 2174 | .fa-wpexplorer:before { 2175 | content: "\f2de"; } 2176 | 2177 | .fa-meetup:before { 2178 | content: "\f2e0"; } 2179 | 2180 | .sr-only { 2181 | position: absolute; 2182 | width: 1px; 2183 | height: 1px; 2184 | padding: 0; 2185 | margin: -1px; 2186 | overflow: hidden; 2187 | clip: rect(0, 0, 0, 0); 2188 | border: 0; } 2189 | 2190 | .sr-only-focusable:active, .sr-only-focusable:focus { 2191 | position: static; 2192 | width: auto; 2193 | height: auto; 2194 | margin: 0; 2195 | overflow: visible; 2196 | clip: auto; } -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Author: W3layouts 3 | Author URL: http://w3layouts.com 4 | */ 5 | :root { 6 | --para-color: #555555; 7 | --theme-color: #fff; 8 | --theme-hover-color: #333; 9 | } 10 | 11 | html { 12 | scroll-behavior: smooth; 13 | } 14 | 15 | body, 16 | html { 17 | margin: 0; 18 | padding: 0; 19 | font-family: 'Work Sans', sans-serif; 20 | } 21 | 22 | * { 23 | box-sizing: border-box; 24 | } 25 | 26 | .d-grid { 27 | display: grid; 28 | } 29 | 30 | .d-flex { 31 | display: flex; 32 | display: -webkit-flex; 33 | } 34 | 35 | .text-center { 36 | text-align: center; 37 | } 38 | 39 | .text-left { 40 | text-align: left; 41 | } 42 | 43 | .text-right { 44 | text-align: right; 45 | } 46 | 47 | button, 48 | input, 49 | select { 50 | -webkit-appearance: none; 51 | outline: none; 52 | } 53 | 54 | button, 55 | .btn, 56 | select { 57 | cursor: pointer; 58 | } 59 | 60 | a { 61 | text-decoration: none; 62 | } 63 | 64 | iframe { 65 | border: none; 66 | } 67 | 68 | ul { 69 | margin: 0; 70 | padding: 0 71 | } 72 | 73 | h1, 74 | h2, 75 | h3, 76 | h4, 77 | h5, 78 | h6, 79 | p { 80 | margin: 0; 81 | padding: 0 82 | } 83 | 84 | p { 85 | color: #444; 86 | font-size: 16px; 87 | line-height: 24px; 88 | } 89 | 90 | .p-relative { 91 | position: relative; 92 | } 93 | 94 | .p-absolute { 95 | position: absolute; 96 | } 97 | 98 | .p-fixed { 99 | position: fixed; 100 | } 101 | 102 | .p-sticky { 103 | position: sticky; 104 | } 105 | 106 | .btn, 107 | button, 108 | .actionbg, 109 | input { 110 | border-radius: 4px; 111 | -webkit-border-radius: 4px; 112 | -moz-border-radius: 4px; 113 | -o-border-radius: 4px; 114 | -ms-border-radius: 4px; 115 | } 116 | 117 | .btn, 118 | button, 119 | .btn:hover, 120 | button:hover { 121 | transition: 0.5s ease; 122 | -webkit-transition: 0.5s ease; 123 | -o-transition: 0.5s ease; 124 | -ms-transition: 0.5s ease; 125 | -moz-transition: 0.5s ease; 126 | } 127 | 128 | /*-------------------- 129 | Page 130 | --------------------*/ 131 | .page { 132 | position: absolute; 133 | width: 100%; 134 | z-index: 1; 135 | overflow: hidden; 136 | box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 137 | } 138 | 139 | /*-------------------- 140 | Content 141 | --------------------*/ 142 | .content { 143 | text-align: center; 144 | display: grid; 145 | grid-template-rows: 1fr auto 1fr; 146 | min-height: 100vh; 147 | align-items: center; 148 | padding: 30px 15px; 149 | } 150 | 151 | .w3l-error-grid { 152 | margin: 0px auto; 153 | max-width: 850px; 154 | text-align: center; 155 | padding: 1em; 156 | } 157 | 158 | .content h1 { 159 | font-weight: 700; 160 | font-size: 175px; 161 | color: #eee; 162 | opacity: .4; 163 | } 164 | 165 | .content h2 { 166 | font-size: 30px; 167 | margin-bottom: 10px; 168 | color: #eee; 169 | font-weight: 500; 170 | } 171 | 172 | .content p { 173 | font-size: 16px; 174 | color: #ccc; 175 | line-height: 24px; 176 | margin-top: 10px; 177 | } 178 | 179 | .content a.home { 180 | display: inline-block; 181 | font-size: 16px; 182 | border: 2px solid #CDD4DE; 183 | padding: 12px 30px; 184 | border-radius: 4px; 185 | cursor: pointer; 186 | color: #CDD4DE; 187 | margin-top: 50px; 188 | } 189 | 190 | .content a.home:hover { 191 | background: rgba(152, 152, 152, 0.15); 192 | border: 2px solid #fff; 193 | background: #fff; 194 | color: #333; 195 | } 196 | 197 | .copy-right p { 198 | color: #aaa; 199 | } 200 | 201 | .copy-right p a { 202 | color: #fff; 203 | } 204 | 205 | .copy-right p a:hover { 206 | color: #888; 207 | } 208 | 209 | a.brand-logo { 210 | color: var(--theme-color); 211 | font-weight: 600; 212 | font-size: 35px; 213 | line-height: 40px; 214 | border: none; 215 | background: none; 216 | padding: 0px; 217 | text-transform: uppercase; 218 | } 219 | 220 | /*-------------------- 221 | Image 222 | --------------------*/ 223 | img { 224 | position: absolute; 225 | top: 0; 226 | left: 0; 227 | width: 100%; 228 | height: 100%; 229 | z-index: -1; 230 | transform: scale(1.1); 231 | } 232 | 233 | 234 | @media (max-width: 991px) { 235 | .content h1 { 236 | font-size: 120px; 237 | } 238 | } 239 | 240 | @media (max-width: 568px) {} 241 | 242 | @media (max-width: 440px) { 243 | .content { 244 | padding-bottom: 20px; 245 | padding-top: 20px; 246 | } 247 | 248 | a.brand-logo { 249 | font-size: 30px; 250 | line-height: 35px; 251 | } 252 | 253 | .content h1 { 254 | font-size: 100px; 255 | } 256 | 257 | .content p { 258 | font-size: 15px; 259 | } 260 | } -------------------------------------------------------------------------------- /fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/404-error-page/35d624ef6f4a051f366015366e8fe049495f0bee/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/404-error-page/35d624ef6f4a051f366015366e8fe049495f0bee/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/404-error-page/35d624ef6f4a051f366015366e8fe049495f0bee/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/404-error-page/35d624ef6f4a051f366015366e8fe049495f0bee/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/404-error-page/35d624ef6f4a051f366015366e8fe049495f0bee/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/404-error-page/35d624ef6f4a051f366015366e8fe049495f0bee/images/bg.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 404-Page Error not found 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 |
33 | 34 |
35 |
36 | 44 |
45 |

404

46 |

Page not found

47 |

I tried to catch some fog, but i missed it

48 | Back to Home 49 |
50 | 51 |
52 |

© 2021 ALBINPRAVEEN. All rights reserved | Design by 53 | ALBINPRAVEEN

54 |
55 |
56 | error image 57 |
58 | 59 | 60 | 93 |
94 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery v3.3.1 -ajax,-ajax/jsonp,-ajax/load,-ajax/parseXML,-ajax/script,-ajax/var/location,-ajax/var/nonce,-ajax/var/rquery,-ajax/xhr,-manipulation/_evalUrl,-event/ajax,-effects,-effects/Tween,-effects/animatedSelector | (c) JS Foundation and other contributors | jquery.org/license */ 2 | !function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(e,t){"use strict";var n=[],r=e.document,i=Object.getPrototypeOf,o=n.slice,a=n.concat,u=n.push,s=n.indexOf,l={},c=l.toString,f=l.hasOwnProperty,d=f.toString,p=d.call(Object),h={},g=function e(t){return"function"==typeof t&&"number"!=typeof t.nodeType},v=function e(t){return null!=t&&t===t.window},y={type:!0,src:!0,noModule:!0};function m(e,t,n){var i,o=(t=t||r).createElement("script");if(o.text=e,n)for(i in y)n[i]&&(o[i]=n[i]);t.head.appendChild(o).parentNode.removeChild(o)}function b(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[c.call(e)]||"object":typeof e}var x="3.3.1 -ajax,-ajax/jsonp,-ajax/load,-ajax/parseXML,-ajax/script,-ajax/var/location,-ajax/var/nonce,-ajax/var/rquery,-ajax/xhr,-manipulation/_evalUrl,-event/ajax,-effects,-effects/Tween,-effects/animatedSelector",w=function(e,t){return new w.fn.init(e,t)},C=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;w.fn=w.prototype={jquery:x,constructor:w,length:0,toArray:function(){return o.call(this)},get:function(e){return null==e?o.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=w.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return w.each(this,e)},map:function(e){return this.pushStack(w.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(o.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n0&&t-1 in e)}var E=function(e){var t,n,r,i,o,a,u,s,l,c,f,d,p,h,g,v,y,m,b,x="sizzle"+1*new Date,w=e.document,C=0,T=0,E=ae(),N=ae(),k=ae(),A=function(e,t){return e===t&&(f=!0),0},D={}.hasOwnProperty,S=[],L=S.pop,j=S.push,q=S.push,O=S.slice,P=function(e,t){for(var n=0,r=e.length;n+~]|"+I+")"+I+"*"),_=new RegExp("="+I+"*([^\\]'\"]*?)"+I+"*\\]","g"),U=new RegExp(M),V=new RegExp("^"+R+"$"),X={ID:new RegExp("^#("+R+")"),CLASS:new RegExp("^\\.("+R+")"),TAG:new RegExp("^("+R+"|[*])"),ATTR:new RegExp("^"+B),PSEUDO:new RegExp("^"+M),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+I+"*(even|odd|(([+-]|)(\\d*)n|)"+I+"*(?:([+-]|)"+I+"*(\\d+)|))"+I+"*\\)|)","i"),bool:new RegExp("^(?:"+H+")$","i"),needsContext:new RegExp("^"+I+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+I+"*((?:-\\d)?\\d*)"+I+"*\\)|)(?=[^-]|$)","i")},Q=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,G=/^[^{]+\{\s*\[native \w/,K=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,J=/[+~]/,Z=new RegExp("\\\\([\\da-f]{1,6}"+I+"?|("+I+")|.)","ig"),ee=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},te=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ne=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},re=function(){d()},ie=me(function(e){return!0===e.disabled&&("form"in e||"label"in e)},{dir:"parentNode",next:"legend"});try{q.apply(S=O.call(w.childNodes),w.childNodes),S[w.childNodes.length].nodeType}catch(e){q={apply:S.length?function(e,t){j.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function oe(e,t,r,i){var o,u,l,c,f,h,y,m=t&&t.ownerDocument,C=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==C&&9!==C&&11!==C)return r;if(!i&&((t?t.ownerDocument||t:w)!==p&&d(t),t=t||p,g)){if(11!==C&&(f=K.exec(e)))if(o=f[1]){if(9===C){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&b(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return q.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return q.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!k[e+" "]&&(!v||!v.test(e))){if(1!==C)m=t,y=e;else if("object"!==t.nodeName.toLowerCase()){(c=t.getAttribute("id"))?c=c.replace(te,ne):t.setAttribute("id",c=x),u=(h=a(e)).length;while(u--)h[u]="#"+c+" "+ye(h[u]);y=h.join(","),m=J.test(e)&&ge(t.parentNode)||t}if(y)try{return q.apply(r,m.querySelectorAll(y)),r}catch(e){}finally{c===x&&t.removeAttribute("id")}}}return s(e.replace($,"$1"),t,r,i)}function ae(){var e=[];function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}return t}function ue(e){return e[x]=!0,e}function se(e){var t=p.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function le(e,t){var n=e.split("|"),i=n.length;while(i--)r.attrHandle[n[i]]=t}function ce(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function fe(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function de(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function pe(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ie(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function he(e){return ue(function(t){return t=+t,ue(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function ge(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}n=oe.support={},o=oe.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},d=oe.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!==p&&9===a.nodeType&&a.documentElement?(p=a,h=p.documentElement,g=!o(p),w!==p&&(i=p.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",re,!1):i.attachEvent&&i.attachEvent("onunload",re)),n.attributes=se(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=se(function(e){return e.appendChild(p.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=G.test(p.getElementsByClassName),n.getById=se(function(e){return h.appendChild(e).id=x,!p.getElementsByName||!p.getElementsByName(x).length}),n.getById?(r.filter.ID=function(e){var t=e.replace(Z,ee);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(Z,ee);return function(e){var n="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&g)return t.getElementsByClassName(e)},y=[],v=[],(n.qsa=G.test(p.querySelectorAll))&&(se(function(e){h.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+I+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+I+"*(?:value|"+H+")"),e.querySelectorAll("[id~="+x+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+x+"+*").length||v.push(".#.+[+~]")}),se(function(e){e.innerHTML="";var t=p.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+I+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(n.matchesSelector=G.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&se(function(e){n.disconnectedMatch=m.call(e,"*"),m.call(e,"[s!='']:x"),y.push("!=",M)}),v=v.length&&new RegExp(v.join("|")),y=y.length&&new RegExp(y.join("|")),t=G.test(h.compareDocumentPosition),b=t||G.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},A=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e===p||e.ownerDocument===w&&b(w,e)?-1:t===p||t.ownerDocument===w&&b(w,t)?1:c?P(c,e)-P(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],u=[t];if(!i||!o)return e===p?-1:t===p?1:i?-1:o?1:c?P(c,e)-P(c,t):0;if(i===o)return ce(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)u.unshift(n);while(a[r]===u[r])r++;return r?ce(a[r],u[r]):a[r]===w?-1:u[r]===w?1:0},p):p},oe.matches=function(e,t){return oe(e,null,null,t)},oe.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&d(e),t=t.replace(_,"='$1']"),n.matchesSelector&&g&&!k[t+" "]&&(!y||!y.test(t))&&(!v||!v.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return oe(t,p,null,[e]).length>0},oe.contains=function(e,t){return(e.ownerDocument||e)!==p&&d(e),b(e,t)},oe.attr=function(e,t){(e.ownerDocument||e)!==p&&d(e);var i=r.attrHandle[t.toLowerCase()],o=i&&D.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},oe.escape=function(e){return(e+"").replace(te,ne)},oe.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},oe.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(A),f){while(t=e[o++])t===e[o]&&(i=r.push(o));while(i--)e.splice(r[i],1)}return c=null,e},i=oe.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else while(t=e[r++])n+=i(t);return n},(r=oe.selectors={cacheLength:50,createPseudo:ue,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(Z,ee),e[3]=(e[3]||e[4]||e[5]||"").replace(Z,ee),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||oe.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&oe.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return X.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&U.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(Z,ee).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+" "];return t||(t=new RegExp("(^|"+I+")"+e+"("+I+"|$)"))&&E(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=oe.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace(W," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),u="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,s){var l,c,f,d,p,h,g=o!==a?"nextSibling":"previousSibling",v=t.parentNode,y=u&&t.nodeName.toLowerCase(),m=!s&&!u,b=!1;if(v){if(o){while(g){d=t;while(d=d[g])if(u?d.nodeName.toLowerCase()===y:1===d.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?v.firstChild:v.lastChild],a&&m){b=(p=(l=(c=(f=(d=v)[x]||(d[x]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]||[])[0]===C&&l[1])&&l[2],d=p&&v.childNodes[p];while(d=++p&&d&&d[g]||(b=p=0)||h.pop())if(1===d.nodeType&&++b&&d===t){c[e]=[C,p,b];break}}else if(m&&(b=p=(l=(c=(f=(d=t)[x]||(d[x]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]||[])[0]===C&&l[1]),!1===b)while(d=++p&&d&&d[g]||(b=p=0)||h.pop())if((u?d.nodeName.toLowerCase()===y:1===d.nodeType)&&++b&&(m&&((c=(f=d[x]||(d[x]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]=[C,b]),d===t))break;return(b-=i)===r||b%r==0&&b/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||oe.error("unsupported pseudo: "+e);return i[x]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?ue(function(e,n){var r,o=i(e,t),a=o.length;while(a--)e[r=P(e,o[a])]=!(n[r]=o[a])}):function(e){return i(e,0,n)}):i}},pseudos:{not:ue(function(e){var t=[],n=[],r=u(e.replace($,"$1"));return r[x]?ue(function(e,t,n,i){var o,a=r(e,null,i,[]),u=e.length;while(u--)(o=a[u])&&(e[u]=!(t[u]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}}),has:ue(function(e){return function(t){return oe(e,t).length>0}}),contains:ue(function(e){return e=e.replace(Z,ee),function(t){return(t.textContent||t.innerText||i(t)).indexOf(e)>-1}}),lang:ue(function(e){return V.test(e||"")||oe.error("unsupported lang: "+e),e=e.replace(Z,ee).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:pe(!1),disabled:pe(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return Y.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:he(function(){return[0]}),last:he(function(e,t){return[t-1]}),eq:he(function(e,t,n){return[n<0?n+t:n]}),even:he(function(e,t){for(var n=0;n=0;)e.push(r);return e}),gt:he(function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function xe(e,t,n){for(var r=0,i=t.length;r-1&&(o[l]=!(a[l]=f))}}else y=we(y===a?y.splice(h,y.length):y),i?i(null,a,y,s):q.apply(a,y)})}function Te(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],u=a||r.relative[" "],s=a?1:0,c=me(function(e){return e===t},u,!0),f=me(function(e){return P(t,e)>-1},u,!0),d=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];s1&&be(d),s>1&&ye(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace($,"$1"),n,s0,i=e.length>0,o=function(o,a,u,s,c){var f,h,v,y=0,m="0",b=o&&[],x=[],w=l,T=o||i&&r.find.TAG("*",c),E=C+=null==w?1:Math.random()||.1,N=T.length;for(c&&(l=a===p||a||c);m!==N&&null!=(f=T[m]);m++){if(i&&f){h=0,a||f.ownerDocument===p||(d(f),u=!g);while(v=e[h++])if(v(f,a||p,u)){s.push(f);break}c&&(C=E)}n&&((f=!v&&f)&&y--,o&&b.push(f))}if(y+=m,n&&m!==y){h=0;while(v=t[h++])v(b,x,a,u);if(o){if(y>0)while(m--)b[m]||x[m]||(x[m]=L.call(s));x=we(x)}q.apply(s,x),c&&!o&&x.length>0&&y+t.length>1&&oe.uniqueSort(s)}return c&&(C=E,l=w),b};return n?ue(o):o}return u=oe.compile=function(e,t){var n,r=[],i=[],o=k[e+" "];if(!o){t||(t=a(e)),n=t.length;while(n--)(o=Te(t[n]))[x]?r.push(o):i.push(o);(o=k(e,Ee(i,r))).selector=e}return o},s=oe.select=function(e,t,n,i){var o,s,l,c,f,d="function"==typeof e&&e,p=!i&&a(e=d.selector||e);if(n=n||[],1===p.length){if((s=p[0]=p[0].slice(0)).length>2&&"ID"===(l=s[0]).type&&9===t.nodeType&&g&&r.relative[s[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(Z,ee),t)||[])[0]))return n;d&&(t=t.parentNode),e=e.slice(s.shift().value.length)}o=X.needsContext.test(e)?0:s.length;while(o--){if(l=s[o],r.relative[c=l.type])break;if((f=r.find[c])&&(i=f(l.matches[0].replace(Z,ee),J.test(s[0].type)&&ge(t.parentNode)||t))){if(s.splice(o,1),!(e=i.length&&ye(s)))return q.apply(n,i),n;break}}}return(d||u(e,p))(i,t,!g,n,!t||J.test(e)&&ge(t.parentNode)||t),n},n.sortStable=x.split("").sort(A).join("")===x,n.detectDuplicates=!!f,d(),n.sortDetached=se(function(e){return 1&e.compareDocumentPosition(p.createElement("fieldset"))}),se(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||le("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),n.attributes&&se(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||le("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),se(function(e){return null==e.getAttribute("disabled")})||le(H,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),oe}(e);w.find=E,w.expr=E.selectors,w.expr[":"]=w.expr.pseudos,w.uniqueSort=w.unique=E.uniqueSort,w.text=E.getText,w.isXMLDoc=E.isXML,w.contains=E.contains,w.escapeSelector=E.escape;var N=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&w(e).is(n))break;r.push(e)}return r},k=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},A=w.expr.match.needsContext;function D(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var S=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function L(e,t,n){return g(t)?w.grep(e,function(e,r){return!!t.call(e,r,e)!==n}):t.nodeType?w.grep(e,function(e){return e===t!==n}):"string"!=typeof t?w.grep(e,function(e){return s.call(t,e)>-1!==n}):w.filter(t,e,n)}w.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?w.find.matchesSelector(r,e)?[r]:[]:w.find.matches(e,w.grep(t,function(e){return 1===e.nodeType}))},w.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(w(e).filter(function(){for(t=0;t1?w.uniqueSort(n):n},filter:function(e){return this.pushStack(L(this,e||[],!1))},not:function(e){return this.pushStack(L(this,e||[],!0))},is:function(e){return!!L(this,"string"==typeof e&&A.test(e)?w(e):e||[],!1).length}});var j,q=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(w.fn.init=function(e,t,n){var i,o;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(i="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:q.exec(e))||!i[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(i[1]){if(t=t instanceof w?t[0]:t,w.merge(this,w.parseHTML(i[1],t&&t.nodeType?t.ownerDocument||t:r,!0)),S.test(i[1])&&w.isPlainObject(t))for(i in t)g(this[i])?this[i](t[i]):this.attr(i,t[i]);return this}return(o=r.getElementById(i[2]))&&(this[0]=o,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):g(e)?void 0!==n.ready?n.ready(e):e(w):w.makeArray(e,this)}).prototype=w.fn,j=w(r);var O=/^(?:parents|prev(?:Until|All))/,P={children:!0,contents:!0,next:!0,prev:!0};w.fn.extend({has:function(e){var t=w(e,this),n=t.length;return this.filter(function(){for(var e=0;e-1:1===n.nodeType&&w.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?w.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?s.call(w(e),this[0]):s.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(w.uniqueSort(w.merge(this.get(),w(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function H(e,t){while((e=e[t])&&1!==e.nodeType);return e}w.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return N(e,"parentNode")},parentsUntil:function(e,t,n){return N(e,"parentNode",n)},next:function(e){return H(e,"nextSibling")},prev:function(e){return H(e,"previousSibling")},nextAll:function(e){return N(e,"nextSibling")},prevAll:function(e){return N(e,"previousSibling")},nextUntil:function(e,t,n){return N(e,"nextSibling",n)},prevUntil:function(e,t,n){return N(e,"previousSibling",n)},siblings:function(e){return k((e.parentNode||{}).firstChild,e)},children:function(e){return k(e.firstChild)},contents:function(e){return D(e,"iframe")?e.contentDocument:(D(e,"template")&&(e=e.content||e),w.merge([],e.childNodes))}},function(e,t){w.fn[e]=function(n,r){var i=w.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=w.filter(r,i)),this.length>1&&(P[e]||w.uniqueSort(i),O.test(e)&&i.reverse()),this.pushStack(i)}});var I=/[^\x20\t\r\n\f]+/g;function R(e){var t={};return w.each(e.match(I)||[],function(e,n){t[n]=!0}),t}w.Callbacks=function(e){e="string"==typeof e?R(e):w.extend({},e);var t,n,r,i,o=[],a=[],u=-1,s=function(){for(i=i||e.once,r=t=!0;a.length;u=-1){n=a.shift();while(++u-1)o.splice(n,1),n<=u&&u--}),this},has:function(e){return e?w.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||s()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l};function B(e){return e}function M(e){throw e}function W(e,t,n,r){var i;try{e&&g(i=e.promise)?i.call(e).done(t).fail(n):e&&g(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}w.extend({Deferred:function(t){var n=[["notify","progress",w.Callbacks("memory"),w.Callbacks("memory"),2],["resolve","done",w.Callbacks("once memory"),w.Callbacks("once memory"),0,"resolved"],["reject","fail",w.Callbacks("once memory"),w.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},"catch":function(e){return i.then(null,e)},pipe:function(){var e=arguments;return w.Deferred(function(t){w.each(n,function(n,r){var i=g(e[r[4]])&&e[r[4]];o[r[1]](function(){var e=i&&i.apply(this,arguments);e&&g(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+"With"](this,i?[e]:arguments)})}),e=null}).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var u=this,s=arguments,l=function(){var e,l;if(!(t=o&&(r!==M&&(u=void 0,s=[e]),n.rejectWith(u,s))}};t?c():(w.Deferred.getStackHook&&(c.stackTrace=w.Deferred.getStackHook()),e.setTimeout(c))}}return w.Deferred(function(e){n[0][3].add(a(0,e,g(i)?i:B,e.notifyWith)),n[1][3].add(a(0,e,g(t)?t:B)),n[2][3].add(a(0,e,g(r)?r:M))}).promise()},promise:function(e){return null!=e?w.extend(e,i):i}},o={};return w.each(n,function(e,t){var a=t[2],u=t[5];i[t[1]]=a.add,u&&a.add(function(){r=u},n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+"With"](this===o?void 0:this,arguments),this},o[t[0]+"With"]=a.fireWith}),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),i=o.call(arguments),a=w.Deferred(),u=function(e){return function(n){r[e]=this,i[e]=arguments.length>1?o.call(arguments):n,--t||a.resolveWith(r,i)}};if(t<=1&&(W(e,a.done(u(n)).resolve,a.reject,!t),"pending"===a.state()||g(i[n]&&i[n].then)))return a.then();while(n--)W(i[n],u(n),a.reject);return a.promise()}});var $=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;w.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&$.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},w.readyException=function(t){e.setTimeout(function(){throw t})};var F=w.Deferred();w.fn.ready=function(e){return F.then(e)["catch"](function(e){w.readyException(e)}),this},w.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--w.readyWait:w.isReady)||(w.isReady=!0,!0!==e&&--w.readyWait>0||F.resolveWith(r,[w]))}}),w.ready.then=F.then;function z(){r.removeEventListener("DOMContentLoaded",z),e.removeEventListener("load",z),w.ready()}"complete"===r.readyState||"loading"!==r.readyState&&!r.documentElement.doScroll?e.setTimeout(w.ready):(r.addEventListener("DOMContentLoaded",z),e.addEventListener("load",z));var _=function(e,t,n,r,i,o,a){var u=0,s=e.length,l=null==n;if("object"===b(n)){i=!0;for(u in n)_(e,t,u,n[u],!0,o,a)}else if(void 0!==r&&(i=!0,g(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(w(e),n)})),t))for(;u1,null,!0)},removeData:function(e){return this.each(function(){J.remove(this,e)})}}),w.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=K.get(e,t),n&&(!r||Array.isArray(n)?r=K.access(e,t,w.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=w.queue(e,t),r=n.length,i=n.shift(),o=w._queueHooks(e,t),a=function(){w.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return K.get(e,n)||K.access(e,n,{empty:w.Callbacks("once memory").add(function(){K.remove(e,[t+"queue",n])})})}}),w.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length\x20\t\r\n\f]+)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ge.optgroup=ge.option,ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td;function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&D(e,t)?w.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n-1)i&&i.push(o);else if(l=w.contains(o.ownerDocument,o),a=ve(f.appendChild(o),"script"),l&&ye(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}!function(){var e=r.createDocumentFragment().appendChild(r.createElement("div")),t=r.createElement("input");t.setAttribute("type","radio"),t.setAttribute("checked","checked"),t.setAttribute("name","t"),e.appendChild(t),h.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,e.innerHTML="",h.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue}();var xe=r.documentElement,we=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Te=/^([^.]*)(?:\.(.+)|)/;function Ee(){return!0}function Ne(){return!1}function ke(){try{return r.activeElement}catch(e){}}function Ae(e,t,n,r,i,o){var a,u;if("object"==typeof t){"string"!=typeof n&&(r=r||n,n=void 0);for(u in t)Ae(e,u,n,r,t[u],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Ne;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return w().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=w.guid++)),e.each(function(){w.event.add(this,t,i,r,n)})}w.event={global:{},add:function(e,t,n,r,i){var o,a,u,s,l,c,f,d,p,h,g,v=K.get(e);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&w.find.matchesSelector(xe,i),n.guid||(n.guid=w.guid++),(s=v.events)||(s=v.events={}),(a=v.handle)||(a=v.handle=function(t){return"undefined"!=typeof w&&w.event.triggered!==t.type?w.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(I)||[""]).length;while(l--)p=g=(u=Te.exec(t[l])||[])[1],h=(u[2]||"").split(".").sort(),p&&(f=w.event.special[p]||{},p=(i?f.delegateType:f.bindType)||p,f=w.event.special[p]||{},c=w.extend({type:p,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&w.expr.match.needsContext.test(i),namespace:h.join(".")},o),(d=s[p])||((d=s[p]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(p,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?d.splice(d.delegateCount++,0,c):d.push(c),w.event.global[p]=!0)}},remove:function(e,t,n,r,i){var o,a,u,s,l,c,f,d,p,h,g,v=K.hasData(e)&&K.get(e);if(v&&(s=v.events)){l=(t=(t||"").match(I)||[""]).length;while(l--)if(u=Te.exec(t[l])||[],p=g=u[1],h=(u[2]||"").split(".").sort(),p){f=w.event.special[p]||{},d=s[p=(r?f.delegateType:f.bindType)||p]||[],u=u[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=d.length;while(o--)c=d[o],!i&&g!==c.origType||n&&n.guid!==c.guid||u&&!u.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(d.splice(o,1),c.selector&&d.delegateCount--,f.remove&&f.remove.call(e,c));a&&!d.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||w.removeEvent(e,p,v.handle),delete s[p])}else for(p in s)w.event.remove(e,p+t[l],n,r,!0);w.isEmptyObject(s)&&K.remove(e,"handle events")}},dispatch:function(e){var t=w.event.fix(e),n,r,i,o,a,u,s=new Array(arguments.length),l=(K.get(this,"events")||{})[t.type]||[],c=w.event.special[t.type]||{};for(s[0]=t,n=1;n=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n-1:w.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&u.push({elem:l,handlers:o})}return l=this,s\x20\t\r\n\f]*)[^>]*)\/>/gi,Se=/\s*$/g;function qe(e,t){return D(e,"table")&&D(11!==t.nodeType?t:t.firstChild,"tr")?w(e).children("tbody")[0]||e:e}function Oe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Pe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function He(e,t){var n,r,i,o,a,u,s,l;if(1===t.nodeType){if(K.hasData(e)&&(o=K.access(e),a=K.set(t,o),l=o.events)){delete a.handle,a.events={};for(i in l)for(n=0,r=l[i].length;n1&&"string"==typeof v&&!h.checkClone&&Le.test(v))return e.each(function(i){var o=e.eq(i);y&&(t[0]=v.call(this,i,o.html())),Re(o,t,n,r)});if(d&&(i=be(t,e[0].ownerDocument,!1,e,r),o=i.firstChild,1===i.childNodes.length&&(i=o),o||r)){for(s=(u=w.map(ve(i,"script"),Oe)).length;f")},clone:function(e,t,n){var r,i,o,a,u=e.cloneNode(!0),s=w.contains(e.ownerDocument,e);if(!(h.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||w.isXMLDoc(e)))for(a=ve(u),r=0,i=(o=ve(e)).length;r0&&ye(a,!s&&ve(e,"script")),u},cleanData:function(e){for(var t,n,r,i=w.event.special,o=0;void 0!==(n=e[o]);o++)if(Y(n)){if(t=n[K.expando]){if(t.events)for(r in t.events)i[r]?w.event.remove(n,r):w.removeEvent(n,r,t.handle);n[K.expando]=void 0}n[J.expando]&&(n[J.expando]=void 0)}}}),w.fn.extend({detach:function(e){return Be(this,e,!0)},remove:function(e){return Be(this,e)},text:function(e){return _(this,function(e){return void 0===e?w.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Re(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||qe(this,e).appendChild(e)})},prepend:function(){return Re(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=qe(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Re(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Re(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(w.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return w.clone(this,e,t)})},html:function(e){return _(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Se.test(e)&&!ge[(pe.exec(e)||["",""])[1].toLowerCase()]){e=w.htmlPrefilter(e);try{for(;n=0&&(s+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-s-u-.5))),s}function et(e,t,n){var r=We(e),i=Fe(e,t,r),o="border-box"===w.css(e,"boxSizing",!1,r),a=o;if(Me.test(i)){if(!n)return i;i="auto"}return a=a&&(h.boxSizingReliable()||i===e.style[t]),("auto"===i||!parseFloat(i)&&"inline"===w.css(e,"display",!1,r))&&(i=e["offset"+t[0].toUpperCase()+t.slice(1)],a=!0),(i=parseFloat(i)||0)+Ze(e,t,n||(o?"border":"content"),a,r,i)+"px"}w.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Fe(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,u=Q(t),s=Ue.test(t),l=e.style;if(s||(t=Ke(u)),a=w.cssHooks[t]||w.cssHooks[u],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"==(o=typeof n)&&(i=ie.exec(n))&&i[1]&&(n=se(e,t,i),o="number"),null!=n&&n===n&&("number"===o&&(n+=i&&i[3]||(w.cssNumber[u]?"":"px")),h.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(s?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,u=Q(t);return Ue.test(t)||(t=Ke(u)),(a=w.cssHooks[t]||w.cssHooks[u])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Fe(e,t,r)),"normal"===i&&t in Xe&&(i=Xe[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),w.each(["height","width"],function(e,t){w.cssHooks[t]={get:function(e,n,r){if(n)return!_e.test(w.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?et(e,t,r):ue(e,Ve,function(){return et(e,t,r)})},set:function(e,n,r){var i,o=We(e),a="border-box"===w.css(e,"boxSizing",!1,o),u=r&&Ze(e,t,r,a,o);return a&&h.scrollboxSize()===o.position&&(u-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Ze(e,t,"border",!1,o)-.5)),u&&(i=ie.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=w.css(e,t)),Je(e,n,u)}}}),w.cssHooks.marginLeft=ze(h.reliableMarginLeft,function(e,t){if(t)return(parseFloat(Fe(e,"marginLeft"))||e.getBoundingClientRect().left-ue(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),w.each({margin:"",padding:"",border:"Width"},function(e,t){w.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+oe[r]+t]=o[r]||o[r-2]||o[0];return i}},"margin"!==e&&(w.cssHooks[e+t].set=Je)}),w.fn.extend({css:function(e,t){return _(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=We(e),i=t.length;a1)}}),w.fn.delay=function(t,n){return t=w.fx?w.fx.speeds[t]||t:t,n=n||"fx",this.queue(n,function(n,r){var i=e.setTimeout(n,t);r.stop=function(){e.clearTimeout(i)}})},function(){var e=r.createElement("input"),t=r.createElement("select").appendChild(r.createElement("option"));e.type="checkbox",h.checkOn=""!==e.value,h.optSelected=t.selected,(e=r.createElement("input")).value="t",e.type="radio",h.radioValue="t"===e.value}();var tt,nt=w.expr.attrHandle;w.fn.extend({attr:function(e,t){return _(this,w.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){w.removeAttr(this,e)})}}),w.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?w.prop(e,t,n):(1===o&&w.isXMLDoc(e)||(i=w.attrHooks[t.toLowerCase()]||(w.expr.match.bool.test(t)?tt:void 0)),void 0!==n?null===n?void w.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=w.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!h.radioValue&&"radio"===t&&D(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(I);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),tt={set:function(e,t,n){return!1===t?w.removeAttr(e,n):e.setAttribute(n,n),n}},w.each(w.expr.match.bool.source.match(/\w+/g),function(e,t){var n=nt[t]||w.find.attr;nt[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=nt[a],nt[a]=i,i=null!=n(e,t,r)?a:null,nt[a]=o),i}});var rt=/^(?:input|select|textarea|button)$/i,it=/^(?:a|area)$/i;w.fn.extend({prop:function(e,t){return _(this,w.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[w.propFix[e]||e]})}}),w.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&w.isXMLDoc(e)||(t=w.propFix[t]||t,i=w.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=w.find.attr(e,"tabindex");return t?parseInt(t,10):rt.test(e.nodeName)||it.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),h.optSelected||(w.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),w.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){w.propFix[this.toLowerCase()]=this});function ot(e){return(e.match(I)||[]).join(" ")}function at(e){return e.getAttribute&&e.getAttribute("class")||""}function ut(e){return Array.isArray(e)?e:"string"==typeof e?e.match(I)||[]:[]}w.fn.extend({addClass:function(e){var t,n,r,i,o,a,u,s=0;if(g(e))return this.each(function(t){w(this).addClass(e.call(this,t,at(this)))});if((t=ut(e)).length)while(n=this[s++])if(i=at(n),r=1===n.nodeType&&" "+ot(i)+" "){a=0;while(o=t[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(u=ot(r))&&n.setAttribute("class",u)}return this},removeClass:function(e){var t,n,r,i,o,a,u,s=0;if(g(e))return this.each(function(t){w(this).removeClass(e.call(this,t,at(this)))});if(!arguments.length)return this.attr("class","");if((t=ut(e)).length)while(n=this[s++])if(i=at(n),r=1===n.nodeType&&" "+ot(i)+" "){a=0;while(o=t[a++])while(r.indexOf(" "+o+" ")>-1)r=r.replace(" "+o+" "," ");i!==(u=ot(r))&&n.setAttribute("class",u)}return this},toggleClass:function(e,t){var n=typeof e,r="string"===n||Array.isArray(e);return"boolean"==typeof t&&r?t?this.addClass(e):this.removeClass(e):g(e)?this.each(function(n){w(this).toggleClass(e.call(this,n,at(this),t),t)}):this.each(function(){var t,i,o,a;if(r){i=0,o=w(this),a=ut(e);while(t=a[i++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else void 0!==e&&"boolean"!==n||((t=at(this))&&K.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":K.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&(" "+ot(at(n))+" ").indexOf(t)>-1)return!0;return!1}});var st=/\r/g;w.fn.extend({val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=g(e),this.each(function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,w(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=w.map(i,function(e){return null==e?"":e+""})),(t=w.valHooks[this.type]||w.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))});if(i)return(t=w.valHooks[i.type]||w.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(st,""):null==n?"":n}}}),w.extend({valHooks:{option:{get:function(e){var t=w.find.attr(e,"value");return null!=t?t:ot(w.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,u=a?null:[],s=a?o+1:i.length;for(r=o<0?s:a?o:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),w.each(["radio","checkbox"],function(){w.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=w.inArray(w(e).val(),t)>-1}},h.checkOn||(w.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),h.focusin="onfocusin"in e;var lt=/^(?:focusinfocus|focusoutblur)$/,ct=function(e){e.stopPropagation()};w.extend(w.event,{trigger:function(t,n,i,o){var a,u,s,l,c,d,p,h,y=[i||r],m=f.call(t,"type")?t.type:t,b=f.call(t,"namespace")?t.namespace.split("."):[];if(u=h=s=i=i||r,3!==i.nodeType&&8!==i.nodeType&&!lt.test(m+w.event.triggered)&&(m.indexOf(".")>-1&&(m=(b=m.split(".")).shift(),b.sort()),c=m.indexOf(":")<0&&"on"+m,t=t[w.expando]?t:new w.Event(m,"object"==typeof t&&t),t.isTrigger=o?2:3,t.namespace=b.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+b.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=i),n=null==n?[t]:w.makeArray(n,[t]),p=w.event.special[m]||{},o||!p.trigger||!1!==p.trigger.apply(i,n))){if(!o&&!p.noBubble&&!v(i)){for(l=p.delegateType||m,lt.test(l+m)||(u=u.parentNode);u;u=u.parentNode)y.push(u),s=u;s===(i.ownerDocument||r)&&y.push(s.defaultView||s.parentWindow||e)}a=0;while((u=y[a++])&&!t.isPropagationStopped())h=u,t.type=a>1?l:p.bindType||m,(d=(K.get(u,"events")||{})[t.type]&&K.get(u,"handle"))&&d.apply(u,n),(d=c&&u[c])&&d.apply&&Y(u)&&(t.result=d.apply(u,n),!1===t.result&&t.preventDefault());return t.type=m,o||t.isDefaultPrevented()||p._default&&!1!==p._default.apply(y.pop(),n)||!Y(i)||c&&g(i[m])&&!v(i)&&((s=i[c])&&(i[c]=null),w.event.triggered=m,t.isPropagationStopped()&&h.addEventListener(m,ct),i[m](),t.isPropagationStopped()&&h.removeEventListener(m,ct),w.event.triggered=void 0,s&&(i[c]=s)),t.result}},simulate:function(e,t,n){var r=w.extend(new w.Event,n,{type:e,isSimulated:!0});w.event.trigger(r,null,t)}}),w.fn.extend({trigger:function(e,t){return this.each(function(){w.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return w.event.trigger(e,t,n,!0)}}),h.focusin||w.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){w.event.simulate(t,e.target,w.event.fix(e))};w.event.special[t]={setup:function(){var r=this.ownerDocument||this,i=K.access(r,t);i||r.addEventListener(e,n,!0),K.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=K.access(r,t)-1;i?K.access(r,t,i):(r.removeEventListener(e,n,!0),K.remove(r,t))}}});var ft=/\[\]$/,dt=/\r?\n/g,pt=/^(?:submit|button|image|reset|file)$/i,ht=/^(?:input|select|textarea|keygen)/i;function gt(e,t,n,r){var i;if(Array.isArray(t))w.each(t,function(t,i){n||ft.test(e)?r(e,i):gt(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)});else if(n||"object"!==b(t))r(e,t);else for(i in t)gt(e+"["+i+"]",t[i],n,r)}w.param=function(e,t){var n,r=[],i=function(e,t){var n=g(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(Array.isArray(e)||e.jquery&&!w.isPlainObject(e))w.each(e,function(){i(this.name,this.value)});else for(n in e)gt(n,e[n],t,i);return r.join("&")},w.fn.extend({serialize:function(){return w.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=w.prop(this,"elements");return e?w.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!w(this).is(":disabled")&&ht.test(this.nodeName)&&!pt.test(e)&&(this.checked||!de.test(e))}).map(function(e,t){var n=w(this).val();return null==n?null:Array.isArray(n)?w.map(n,function(e){return{name:t.name,value:e.replace(dt,"\r\n")}}):{name:t.name,value:n.replace(dt,"\r\n")}}).get()}}),w.fn.extend({wrapAll:function(e){var t;return this[0]&&(g(e)&&(e=e.call(this[0])),t=w(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return g(e)?this.each(function(t){w(this).wrapInner(e.call(this,t))}):this.each(function(){var t=w(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=g(e);return this.each(function(n){w(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){w(this).replaceWith(this.childNodes)}),this}}),w.expr.pseudos.hidden=function(e){return!w.expr.pseudos.visible(e)},w.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},h.createHTMLDocument=function(){var e=r.implementation.createHTMLDocument("").body;return e.innerHTML="
",2===e.childNodes.length}(),w.parseHTML=function(e,t,n){if("string"!=typeof e)return[];"boolean"==typeof t&&(n=t,t=!1);var i,o,a;return t||(h.createHTMLDocument?((i=(t=r.implementation.createHTMLDocument("")).createElement("base")).href=r.location.href,t.head.appendChild(i)):t=r),o=S.exec(e),a=!n&&[],o?[t.createElement(o[1])]:(o=be([e],t,a),a&&a.length&&w(a).remove(),w.merge([],o.childNodes))},w.offset={setOffset:function(e,t,n){var r,i,o,a,u,s,l,c=w.css(e,"position"),f=w(e),d={};"static"===c&&(e.style.position="relative"),u=f.offset(),o=w.css(e,"top"),s=w.css(e,"left"),(l=("absolute"===c||"fixed"===c)&&(o+s).indexOf("auto")>-1)?(a=(r=f.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(s)||0),g(t)&&(t=t.call(e,n,w.extend({},u))),null!=t.top&&(d.top=t.top-u.top+a),null!=t.left&&(d.left=t.left-u.left+i),"using"in t?t.using.call(e,d):f.css(d)}},w.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each(function(t){w.offset.setOffset(this,e,t)});var t,n,r=this[0];if(r)return r.getClientRects().length?(t=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:t.top+n.pageYOffset,left:t.left+n.pageXOffset}):{top:0,left:0}},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===w.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===w.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=w(e).offset()).top+=w.css(e,"borderTopWidth",!0),i.left+=w.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-w.css(r,"marginTop",!0),left:t.left-i.left-w.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===w.css(e,"position"))e=e.offsetParent;return e||xe})}}),w.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,t){var n="pageYOffset"===t;w.fn[e]=function(r){return _(this,function(e,r,i){var o;if(v(e)?o=e:9===e.nodeType&&(o=e.defaultView),void 0===i)return o?o[t]:e[r];o?o.scrollTo(n?o.pageXOffset:i,n?i:o.pageYOffset):e[r]=i},e,r,arguments.length)}}),w.each(["top","left"],function(e,t){w.cssHooks[t]=ze(h.pixelPosition,function(e,n){if(n)return n=Fe(e,t),Me.test(n)?w(e).position()[t]+"px":n})}),w.each({Height:"height",Width:"width"},function(e,t){w.each({padding:"inner"+e,content:t,"":"outer"+e},function(n,r){w.fn[r]=function(i,o){var a=arguments.length&&(n||"boolean"!=typeof i),u=n||(!0===i||!0===o?"margin":"border");return _(this,function(t,n,i){var o;return v(t)?0===r.indexOf("outer")?t["inner"+e]:t.document.documentElement["client"+e]:9===t.nodeType?(o=t.documentElement,Math.max(t.body["scroll"+e],o["scroll"+e],t.body["offset"+e],o["offset"+e],o["client"+e])):void 0===i?w.css(t,n,u):w.style(t,n,i,u)},t,a?i:void 0,a)}})}),w.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,t){w.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),w.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),w.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}}),w.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),g(e))return r=o.call(arguments,2),i=function(){return e.apply(t||this,r.concat(o.call(arguments)))},i.guid=e.guid=e.guid||w.guid++,i},w.holdReady=function(e){e?w.readyWait++:w.ready(!0)},w.isArray=Array.isArray,w.parseJSON=JSON.parse,w.nodeName=D,w.isFunction=g,w.isWindow=v,w.camelCase=Q,w.type=b,w.now=Date.now,w.isNumeric=function(e){var t=w.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},"function"==typeof define&&define.amd&&define("jquery",[],function(){return w});var vt=e.jQuery,yt=e.$;return w.noConflict=function(t){return e.$===w&&(e.$=yt),t&&e.jQuery===w&&(e.jQuery=vt),w},t||(e.jQuery=e.$=w),w}); 3 | --------------------------------------------------------------------------------