From 0cd2517c5e71f65ee47ab6f42e5d88b11bb13152 Mon Sep 17 00:00:00 2001 From: Damian Myrda Date: Sat, 7 Sep 2024 14:49:59 -0500 Subject: [PATCH] Remodeling --- Caddyfile | 19 + Dockerfile | 14 + README.md | 4 +- compose.yml | 35 +- mail/.gitignore | 4 + mail.env => mail/env | 6 +- start.sh | 13 + web/.gitignore | 2 + web/config.toml | 7 + web/content/projects.md | 14 + web/static/css/bootstrap-responsive.css | 1127 ++++ web/static/css/bootstrap-responsive.min.css | 1106 ++++ web/static/css/bootstrap.css | 6204 +++++++++++++++++++ web/static/css/bootstrap.min.css | 5226 ++++++++++++++++ web/static/css/fonts/Fixedsys500c.eot | Bin 0 -> 27396 bytes web/static/css/fonts/Fixedsys500c.otf | Bin 0 -> 55624 bytes web/static/css/fonts/Fixedsys500c.svg | 646 ++ web/static/css/fonts/Fixedsys500c.ttf | Bin 0 -> 27216 bytes web/static/css/fonts/Fixedsys500c.woff | Bin 0 -> 13468 bytes web/static/css/fonts/Px437_IBM_EGA8.otf | Bin 0 -> 15560 bytes web/static/js/bootstrap.js | 2425 ++++++++ web/static/js/bootstrap.min.js | 1454 +++++ web/static/js/wakatime.js | 51 + web/templates/404.html | 27 + web/templates/base.html | 38 + web/templates/index.html | 95 + web/templates/nav.html | 21 + web/templates/projects.html | 21 + 28 files changed, 18536 insertions(+), 23 deletions(-) create mode 100644 Caddyfile create mode 100644 Dockerfile create mode 100644 mail/.gitignore rename mail.env => mail/env (99%) create mode 100755 start.sh create mode 100644 web/.gitignore create mode 100644 web/config.toml create mode 100644 web/content/projects.md create mode 100644 web/static/css/bootstrap-responsive.css create mode 100644 web/static/css/bootstrap-responsive.min.css create mode 100644 web/static/css/bootstrap.css create mode 100644 web/static/css/bootstrap.min.css create mode 100644 web/static/css/fonts/Fixedsys500c.eot create mode 100644 web/static/css/fonts/Fixedsys500c.otf create mode 100644 web/static/css/fonts/Fixedsys500c.svg create mode 100644 web/static/css/fonts/Fixedsys500c.ttf create mode 100644 web/static/css/fonts/Fixedsys500c.woff create mode 100644 web/static/css/fonts/Px437_IBM_EGA8.otf create mode 100644 web/static/js/bootstrap.js create mode 100644 web/static/js/bootstrap.min.js create mode 100644 web/static/js/wakatime.js create mode 100644 web/templates/404.html create mode 100644 web/templates/base.html create mode 100644 web/templates/index.html create mode 100644 web/templates/nav.html create mode 100644 web/templates/projects.html diff --git a/Caddyfile b/Caddyfile new file mode 100644 index 0000000..a64ce1a --- /dev/null +++ b/Caddyfile @@ -0,0 +1,19 @@ +prime8.dev { + root * /web/ + file_server + try_files {path} {path}.html + + tls damian@prime8.dev + + handle_errors { + @404 { + expression {http.error.status_code} == 404 + } + rewrite @404 /404.html + file_server + } +} + +mail.prime8.dev { + tls damian@prime8.dev +} diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1ed3249 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +FROM ghcr.io/getzola/zola:v0.19.1 AS builder + +COPY ./web/ /src/ +WORKDIR /src/ + +RUN ["zola", "build"] + +FROM caddy:latest + +COPY ./Caddyfile /etc/caddy/Caddyfile +COPY --from=builder /src/public/ /web/ + +EXPOSE 80 +EXPOSE 443 diff --git a/README.md b/README.md index e632804..45db882 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# prime8 +# p8d -This is my website that is themed like an old school BBS. +This is my website located at prime8.dev ## installing diff --git a/compose.yml b/compose.yml index 0839440..4d591a8 100644 --- a/compose.yml +++ b/compose.yml @@ -1,33 +1,32 @@ services: - bbs: - container_name: bbs - image: moncheeta/bbs + web: + build: . ports: + - "80:80" - "443:443" volumes: - - /etc/letsencrypt/live/prime8.dev/fullchain.pem:/ssl/fullchain.pem:ro - - /etc/letsencrypt/live/prime8.dev/privkey.pem:/ssl/privkey.pem:ro + - ./Caddyfile:/etc/caddy/Caddyfile + - ./web/data/:/data/caddy/ + - ./web/config/:/config/caddy/ restart: always - stop_grace_period: 1m mail: container_name: mail image: ghcr.io/docker-mailserver/docker-mailserver:latest hostname: mail.prime8.dev - env_file: mail.env + env_file: ./mail/env ports: - - "25:25" # SMTP (explicit TLS => STARTTLS, Authentication is DISABLED => use port 465/587 instead) - - "143:143" # IMAP4 (explicit TLS => STARTTLS) - - "465:465" # ESMTP (implicit TLS) - - "587:587" # ESMTP (explicit TLS => STARTTLS) - - "993:993" # IMAP4 (implicit TLS) + - "25:25" # SMTP (explicit TLS => STARTTLS, Authentication is DISABLED => use port 465/587 instead) + - "143:143" # IMAP4 (explicit TLS => STARTTLS) + - "465:465" # ESMTP (implicit TLS) + - "587:587" # ESMTP (explicit TLS => STARTTLS) + - "993:993" # IMAP4 (implicit TLS) volumes: - - /etc/localtime:/etc/localtime/:ro - - ./docker-data/dms/mail-data/:/var/mail/ - - ./docker-data/dms/mail-state/:/var/mail-state/ - - ./docker-data/dms/mail-logs/:/var/log/mail/ - - ./docker-data/dms/config/:/tmp/docker-mailserver/ - - /etc/letsencrypt/:/etc/letsencrypt/:ro + - ./mail/data/:/var/mail/ + - ./mail/state/:/var/mail-state/ + - ./mail/logs/:/var/log/mail/ + - ./mail/config/:/tmp/docker-mailserver/ + - ./web/data/:/etc/caddy/certificates/ cap_add: - NET_ADMIN healthcheck: diff --git a/mail/.gitignore b/mail/.gitignore new file mode 100644 index 0000000..dc17088 --- /dev/null +++ b/mail/.gitignore @@ -0,0 +1,4 @@ +/data/ +/state/ +/logs/ +/config/ diff --git a/mail.env b/mail/env similarity index 99% rename from mail.env rename to mail/env index 29ff969..94baec7 100644 --- a/mail.env +++ b/mail/env @@ -238,12 +238,12 @@ SMTP_ONLY= # custom => Enables custom certificates # manual => Let's you manually specify locations of your SSL certificates for non-standard cases # self-signed => Enables self-signed certificates -SSL_TYPE=letsencrypt +SSL_TYPE=manual # These are only supported with `SSL_TYPE=manual`. # Provide the path to your cert and key files that you've mounted access to within the container. -SSL_CERT_PATH= -SSL_KEY_PATH= +SSL_CERT_PATH=/etc/caddy/certificates/acme-v02.api.letsencrypt.org-directory/mail.prime8.dev/mail.prime8.dev.crt +SSL_KEY_PATH=/etc/caddy/certificates/acme-v02.api.letsencrypt.org-directory/mail.prime8.dev/mail.prime8.dev.key # Optional: A 2nd certificate can be supported as fallback (dual cert support), eg ECDSA with an RSA fallback. # Useful for additional compatibility with older MTA and MUA (eg pre-2015). SSL_ALT_CERT_PATH= diff --git a/start.sh b/start.sh new file mode 100755 index 0000000..e2633ca --- /dev/null +++ b/start.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +docker-compose up --build -d web +echo "Built" +echo "Waiting for changes..." + +trap "docker compose down web; exit" INT + +inotifywait -m -r -e modify ./web --exclude "\.git" | +while read -r directory events filename; do + docker compose up --build -d web + echo "Rebuilt" +done diff --git a/web/.gitignore b/web/.gitignore new file mode 100644 index 0000000..b0c33e9 --- /dev/null +++ b/web/.gitignore @@ -0,0 +1,2 @@ +/data/ +/config/ diff --git a/web/config.toml b/web/config.toml new file mode 100644 index 0000000..af115dd --- /dev/null +++ b/web/config.toml @@ -0,0 +1,7 @@ +base_url = "https://prime8.dev" + +[extra] +tabs = [ + { name = "home", url = "/" }, + { name = "projects", url = "/projects" }, +] diff --git a/web/content/projects.md b/web/content/projects.md new file mode 100644 index 0000000..40e36e6 --- /dev/null +++ b/web/content/projects.md @@ -0,0 +1,14 @@ ++++ +template = "projects.html" ++++ + +
+
+

CSC Website

+

I made a website for Computer Science Club(CSC) at Prospect High School during a mini-hackathon. The website displays the date and time of the next meeting, recent annocements, members, and any projects those members want to share.

+
+
+

Veterans Donation Website

+

For my first ever hackathon, I decided to help out veterans through donations. It interacts with Venmo's APIs for users to donate.

+
+
diff --git a/web/static/css/bootstrap-responsive.css b/web/static/css/bootstrap-responsive.css new file mode 100644 index 0000000..f55509c --- /dev/null +++ b/web/static/css/bootstrap-responsive.css @@ -0,0 +1,1127 @@ +/*! + * Bootstrap Responsive v2.3.1 + * + * Copyright 2012 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world @twitter by @mdo and @fat. + */ + +.clearfix { + *zoom: 1; +} + +.clearfix:before, +.clearfix:after { + display: table; + line-height: 0; + content: ""; +} + +.clearfix:after { + clear: both; +} + +.hide-text { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.input-block-level { + display: block; + width: 100%; + min-height: 20px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +@-ms-viewport { + width: device-width; +} + +.hidden { + display: none; + visibility: hidden; +} + +.visible-phone { + display: none !important; +} + +.visible-tablet { + display: none !important; +} + +.hidden-desktop { + display: none !important; +} + +.visible-desktop { + display: inherit !important; +} + +@media (min-width: 768px) and (max-width: 979px) { + .hidden-desktop { + display: inherit !important; + } + .visible-desktop { + display: none !important ; + } + .visible-tablet { + display: inherit !important; + } + .hidden-tablet { + display: none !important; + } +} + +@media (max-width: 767px) { + .hidden-desktop { + display: inherit !important; + } + .visible-desktop { + display: none !important; + } + .visible-phone { + display: inherit !important; + } + .hidden-phone { + display: none !important; + } +} + +.visible-print { + display: none !important; +} + +@media print { + .visible-print { + display: inherit !important; + } + .hidden-print { + display: none !important; + } +} + +@media (min-width: 1200px) { + .row { + margin-left: -24px; + *zoom: 1; + } + .row:before, + .row:after { + display: table; + line-height: 0; + content: ""; + } + .row:after { + clear: both; + } + [class*="span"] { + float: left; + min-height: 1px; + margin-left: 16px; + } + .container, + .navbar-static-top .container, + .navbar-fixed-top .container, + .navbar-fixed-bottom .container { + width: 1128px; + } + .span12 { + width: 1128px; + } + .span11 { + width: 1032px; + } + .span10 { + width: 936px; + } + .span9 { + width: 840px; + } + .span8 { + width: 744px; + } + .span7 { + width: 648px; + } + .span6 { + width: 552px; + } + .span5 { + width: 456px; + } + .span4 { + width: 360px; + } + .span3 { + width: 264px; + } + .span2 { + width: 168px; + } + .span1 { + width: 72px; + } + .offset12 { + margin-left: 1176px; + } + .offset11 { + margin-left: 1080px; + } + .offset10 { + margin-left: 984px; + } + .offset9 { + margin-left: 888px; + } + .offset8 { + margin-left: 792px; + } + .offset7 { + margin-left: 696px; + } + .offset6 { + margin-left: 600px; + } + .offset5 { + margin-left: 504px; + } + .offset4 { + margin-left: 408px; + } + .offset3 { + margin-left: 312px; + } + .offset2 { + margin-left: 216px; + } + .offset1 { + margin-left: 120px; + } + .row-fluid { + width: 100%; + *zoom: 1; + } + .row-fluid:before, + .row-fluid:after { + display: table; + line-height: 0; + content: ""; + } + .row-fluid:after { + clear: both; + } + .row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 20px; + margin-left: 2.127659574468085%; + *margin-left: 2.07469347277317%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="span"]:first-child { + margin-left: 0; + } + .row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 2.127659574468085%; + } + .row-fluid .span12 { + width: 100%; + *width: 99.94703389830508%; + } + .row-fluid .span11 { + width: 91.48936170212765%; + *width: 91.43639560043273%; + } + .row-fluid .span10 { + width: 82.97872340425532%; + *width: 82.9257573025604%; + } + .row-fluid .span9 { + width: 74.46808510638297%; + *width: 74.41511900468805%; + } + .row-fluid .span8 { + width: 65.95744680851064%; + *width: 65.90448070681572%; + } + .row-fluid .span7 { + width: 57.44680851063829%; + *width: 57.39384240894338%; + } + .row-fluid .span6 { + width: 48.93617021276595%; + *width: 48.88320411107104%; + } + .row-fluid .span5 { + width: 40.42553191489362%; + *width: 40.372565813198705%; + } + .row-fluid .span4 { + width: 31.914893617021278%; + *width: 31.86192751532636%; + } + .row-fluid .span3 { + width: 23.404255319148934%; + *width: 23.351289217454017%; + } + .row-fluid .span2 { + width: 14.893617021276595%; + *width: 14.84065091958168%; + } + .row-fluid .span1 { + width: 6.382978723404255%; + *width: 6.33001262170934%; + } + .row-fluid .offset12 { + margin-left: 104.25531914893617%; + *margin-left: 104.14938694554633%; + } + .row-fluid .offset12:first-child { + margin-left: 102.12765957446808%; + *margin-left: 102.02172737107824%; + } + .row-fluid .offset11 { + margin-left: 95.74468085106382%; + *margin-left: 95.63874864767398%; + } + .row-fluid .offset11:first-child { + margin-left: 93.61702127659574%; + *margin-left: 93.5110890732059%; + } + .row-fluid .offset10 { + margin-left: 87.23404255319149%; + *margin-left: 87.12811034980164%; + } + .row-fluid .offset10:first-child { + margin-left: 85.1063829787234%; + *margin-left: 85.00045077533356%; + } + .row-fluid .offset9 { + margin-left: 78.72340425531914%; + *margin-left: 78.6174720519293%; + } + .row-fluid .offset9:first-child { + margin-left: 76.59574468085106%; + *margin-left: 76.48981247746121%; + } + .row-fluid .offset8 { + margin-left: 70.2127659574468%; + *margin-left: 70.10683375405696%; + } + .row-fluid .offset8:first-child { + margin-left: 68.08510638297872%; + *margin-left: 67.97917417958888%; + } + .row-fluid .offset7 { + margin-left: 61.70212765957446%; + *margin-left: 61.59619545618464%; + } + .row-fluid .offset7:first-child { + margin-left: 59.574468085106375%; + *margin-left: 59.46853588171655%; + } + .row-fluid .offset6 { + margin-left: 53.191489361702125%; + *margin-left: 53.08555715831229%; + } + .row-fluid .offset6:first-child { + margin-left: 51.063829787234035%; + *margin-left: 50.95789758384421%; + } + .row-fluid .offset5 { + margin-left: 44.68085106382979%; + *margin-left: 44.57491886043996%; + } + .row-fluid .offset5:first-child { + margin-left: 42.5531914893617%; + *margin-left: 42.447259285971874%; + } + .row-fluid .offset4 { + margin-left: 36.170212765957444%; + *margin-left: 36.06428056256762%; + } + .row-fluid .offset4:first-child { + margin-left: 34.04255319148936%; + *margin-left: 33.936620988099534%; + } + .row-fluid .offset3 { + margin-left: 27.659574468085104%; + *margin-left: 27.55364226469527%; + } + .row-fluid .offset3:first-child { + margin-left: 25.53191489361702%; + *margin-left: 25.425982690227183%; + } + .row-fluid .offset2 { + margin-left: 19.148936170212764%; + *margin-left: 19.043003966822933%; + } + .row-fluid .offset2:first-child { + margin-left: 17.02127659574468%; + *margin-left: 16.91534439235485%; + } + .row-fluid .offset1 { + margin-left: 10.638297872340425%; + *margin-left: 10.532365668950595%; + } + .row-fluid .offset1:first-child { + margin-left: 8.51063829787234%; + *margin-left: 8.40470609448251%; + } + input, + textarea, + .uneditable-input { + margin-left: 0; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 24px; + } + input.span12, + textarea.span12, + .uneditable-input.span12 { + width: 1114px; + } + input.span11, + textarea.span11, + .uneditable-input.span11 { + width: 1018px; + } + input.span10, + textarea.span10, + .uneditable-input.span10 { + width: 922px; + } + input.span9, + textarea.span9, + .uneditable-input.span9 { + width: 826px; + } + input.span8, + textarea.span8, + .uneditable-input.span8 { + width: 730px; + } + input.span7, + textarea.span7, + .uneditable-input.span7 { + width: 634px; + } + input.span6, + textarea.span6, + .uneditable-input.span6 { + width: 538px; + } + input.span5, + textarea.span5, + .uneditable-input.span5 { + width: 442px; + } + input.span4, + textarea.span4, + .uneditable-input.span4 { + width: 346px; + } + input.span3, + textarea.span3, + .uneditable-input.span3 { + width: 250px; + } + input.span2, + textarea.span2, + .uneditable-input.span2 { + width: 154px; + } + input.span1, + textarea.span1, + .uneditable-input.span1 { + width: 58px; + } + .thumbnails { + margin-left: -24px; + } + .thumbnails > li { + margin-left: 24px; + } + .row-fluid .thumbnails { + margin-left: 0; + } +} + +@media (min-width: 768px) and (max-width: 979px) { + .row { + margin-left: -16px; + *zoom: 1; + } + .row:before, + .row:after { + display: table; + line-height: 0; + content: ""; + } + .row:after { + clear: both; + } + [class*="span"] { + float: left; + min-height: 1px; + margin-left: 16px; + } + .container, + .navbar-static-top .container, + .navbar-fixed-top .container, + .navbar-fixed-bottom .container { + width: 656px; + } + .span12 { + width: 656px; + } + .span11 { + width: 600px; + } + .span10 { + width: 544px; + } + .span9 { + width: 488px; + } + .span8 { + width: 432px; + } + .span7 { + width: 376px; + } + .span6 { + width: 320px; + } + .span5 { + width: 264px; + } + .span4 { + width: 208px; + } + .span3 { + width: 152px; + } + .span2 { + width: 96px; + } + .span1 { + width: 40px; + } + .offset12 { + margin-left: 688px; + } + .offset11 { + margin-left: 632px; + } + .offset10 { + margin-left: 576px; + } + .offset9 { + margin-left: 520px; + } + .offset8 { + margin-left: 464px; + } + .offset7 { + margin-left: 408px; + } + .offset6 { + margin-left: 352px; + } + .offset5 { + margin-left: 296px; + } + .offset4 { + margin-left: 240px; + } + .offset3 { + margin-left: 184px; + } + .offset2 { + margin-left: 128px; + } + .offset1 { + margin-left: 72px; + } + .row-fluid { + width: 100%; + *zoom: 1; + } + .row-fluid:before, + .row-fluid:after { + display: table; + line-height: 0; + content: ""; + } + .row-fluid:after { + clear: both; + } + .row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 20px; + margin-left: 2.4390243902439024%; + *margin-left: 2.386058288548987%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="span"]:first-child { + margin-left: 0; + } + .row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 2.4390243902439024%; + } + .row-fluid .span12 { + width: 100%; + *width: 99.94703389830508%; + } + .row-fluid .span11 { + width: 91.46341463414635%; + *width: 91.41044853245143%; + } + .row-fluid .span10 { + width: 82.92682926829268%; + *width: 82.87386316659776%; + } + .row-fluid .span9 { + width: 74.39024390243902%; + *width: 74.3372778007441%; + } + .row-fluid .span8 { + width: 65.85365853658537%; + *width: 65.80069243489045%; + } + .row-fluid .span7 { + width: 57.31707317073171%; + *width: 57.2641070690368%; + } + .row-fluid .span6 { + width: 48.78048780487805%; + *width: 48.727521703183136%; + } + .row-fluid .span5 { + width: 40.24390243902439%; + *width: 40.190936337329475%; + } + .row-fluid .span4 { + width: 31.70731707317073%; + *width: 31.654350971475814%; + } + .row-fluid .span3 { + width: 23.170731707317074%; + *width: 23.117765605622157%; + } + .row-fluid .span2 { + width: 14.634146341463415%; + *width: 14.5811802397685%; + } + .row-fluid .span1 { + width: 6.097560975609756%; + *width: 6.044594873914841%; + } + .row-fluid .offset12 { + margin-left: 104.8780487804878%; + *margin-left: 104.77211657709796%; + } + .row-fluid .offset12:first-child { + margin-left: 102.4390243902439%; + *margin-left: 102.33309218685406%; + } + .row-fluid .offset11 { + margin-left: 96.34146341463415%; + *margin-left: 96.23553121124431%; + } + .row-fluid .offset11:first-child { + margin-left: 93.90243902439025%; + *margin-left: 93.7965068210004%; + } + .row-fluid .offset10 { + margin-left: 87.80487804878048%; + *margin-left: 87.69894584539064%; + } + .row-fluid .offset10:first-child { + margin-left: 85.36585365853658%; + *margin-left: 85.25992145514674%; + } + .row-fluid .offset9 { + margin-left: 79.26829268292683%; + *margin-left: 79.16236047953699%; + } + .row-fluid .offset9:first-child { + margin-left: 76.82926829268293%; + *margin-left: 76.72333608929308%; + } + .row-fluid .offset8 { + margin-left: 70.73170731707317%; + *margin-left: 70.62577511368333%; + } + .row-fluid .offset8:first-child { + margin-left: 68.29268292682927%; + *margin-left: 68.18675072343943%; + } + .row-fluid .offset7 { + margin-left: 62.19512195121951%; + *margin-left: 62.089189747829685%; + } + .row-fluid .offset7:first-child { + margin-left: 59.75609756097561%; + *margin-left: 59.650165357585784%; + } + .row-fluid .offset6 { + margin-left: 53.65853658536585%; + *margin-left: 53.552604381976025%; + } + .row-fluid .offset6:first-child { + margin-left: 51.21951219512195%; + *margin-left: 51.113579991732124%; + } + .row-fluid .offset5 { + margin-left: 45.12195121951219%; + *margin-left: 45.016019016122364%; + } + .row-fluid .offset5:first-child { + margin-left: 42.68292682926829%; + *margin-left: 42.57699462587846%; + } + .row-fluid .offset4 { + margin-left: 36.58536585365854%; + *margin-left: 36.4794336502687%; + } + .row-fluid .offset4:first-child { + margin-left: 34.146341463414636%; + *margin-left: 34.0404092600248%; + } + .row-fluid .offset3 { + margin-left: 28.04878048780488%; + *margin-left: 27.942848284415046%; + } + .row-fluid .offset3:first-child { + margin-left: 25.609756097560975%; + *margin-left: 25.50382389417114%; + } + .row-fluid .offset2 { + margin-left: 19.51219512195122%; + *margin-left: 19.40626291856139%; + } + .row-fluid .offset2:first-child { + margin-left: 17.073170731707318%; + *margin-left: 16.967238528317484%; + } + .row-fluid .offset1 { + margin-left: 10.975609756097562%; + *margin-left: 10.86967755270773%; + } + .row-fluid .offset1:first-child { + margin-left: 8.536585365853659%; + *margin-left: 8.430653162463829%; + } + input, + textarea, + .uneditable-input { + margin-left: 0; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 16px; + } + input.span12, + textarea.span12, + .uneditable-input.span12 { + width: 642px; + } + input.span11, + textarea.span11, + .uneditable-input.span11 { + width: 586px; + } + input.span10, + textarea.span10, + .uneditable-input.span10 { + width: 530px; + } + input.span9, + textarea.span9, + .uneditable-input.span9 { + width: 474px; + } + input.span8, + textarea.span8, + .uneditable-input.span8 { + width: 418px; + } + input.span7, + textarea.span7, + .uneditable-input.span7 { + width: 362px; + } + input.span6, + textarea.span6, + .uneditable-input.span6 { + width: 306px; + } + input.span5, + textarea.span5, + .uneditable-input.span5 { + width: 250px; + } + input.span4, + textarea.span4, + .uneditable-input.span4 { + width: 194px; + } + input.span3, + textarea.span3, + .uneditable-input.span3 { + width: 138px; + } + input.span2, + textarea.span2, + .uneditable-input.span2 { + width: 82px; + } + input.span1, + textarea.span1, + .uneditable-input.span1 { + width: 26px; + } +} + +@media (max-width: 767px) { + body { + padding-right: 18px; + padding-left: 18px; + } + .navbar-fixed-top, + .navbar-fixed-bottom, + .navbar-static-top { + margin-right: -10px; + margin-left: -10px; + } + .container-fluid { + padding: 0; + } + .dl-horizontal dt { + float: none; + width: auto; + clear: none; + text-align: left; + } + .dl-horizontal dd { + margin-left: 0; + } + .container { + width: auto; + } + .row-fluid { + width: 100%; + } + .row, + .thumbnails { + margin-left: 0; + } + .thumbnails > li { + float: none; + margin-left: 0; + } + [class*="span"], + .uneditable-input[class*="span"], + .row-fluid [class*="span"] { + display: block; + float: none; + width: 100%; + margin-left: 0; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .span12, + .row-fluid .span12 { + width: 100%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="offset"]:first-child { + margin-left: 0; + } + .input-large, + .input-xlarge, + .input-xxlarge, + input[class*="span"], + select[class*="span"], + textarea[class*="span"], + .uneditable-input { + display: block; + width: 100%; + min-height: 20px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .input-prepend input, + .input-append input, + .input-prepend input[class*="span"], + .input-append input[class*="span"] { + display: inline-block; + width: auto; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 0; + } + .modal { + position: fixed; + top: 20px; + right: 20px; + left: 20px; + width: auto; + margin: 0; + } + .modal.fade { + top: -100px; + } + .modal.fade.in { + top: 18px; + } +} + +@media (max-width: 480px) { + .nav-collapse { + -webkit-transform: translate3d(0, 0, 0); + } + .page-header h1 small { + display: block; + line-height: 20px; + } + input[type="checkbox"], + input[type="radio"] { + border: 1px solid #ccc; + } + .form-horizontal .control-label { + float: none; + width: auto; + padding-top: 0; + text-align: left; + } + .form-horizontal .controls { + margin-left: 0; + } + .form-horizontal .control-list { + padding-top: 0; + } + .form-horizontal .form-actions { + padding-right: 10px; + padding-left: 10px; + } + .media .pull-left, + .media .pull-right { + display: block; + float: none; + margin-bottom: 20px; + } + .media-object { + margin-right: 0; + margin-left: 0; + } + .modal { + top: 9px; + right: 4px; + left: 4px; + } + .modal-header .close { + padding: 10px; + margin: -10px; + } + .carousel-caption { + position: static; + } +} + +@media (max-width: 979px) { + body { + padding-top: 0; + } + .navbar-fixed-top, + .navbar-fixed-bottom { + position: static; + } + .navbar-fixed-top { + margin-bottom: 20px; + } + .navbar-fixed-bottom { + margin-top: 20px; + } + .navbar-fixed-top .navbar-inner, + .navbar-fixed-bottom .navbar-inner { + padding: 0; + } + .navbar .container { + width: auto; + padding: 0; + } + .navbar .brand { + padding: 10px 10px; + margin: 0; + } + .nav-collapse { + clear: both; + } + .nav-collapse .nav { + float: none; + margin: 0 0 10px; + } + .nav-collapse .nav > li { + float: none; + } + .nav-collapse .nav > li > a { + margin-bottom: 0; + } + .nav-collapse .nav > .divider-vertical { + display: none; + } + .nav-collapse .nav .nav-header { + color: #000000; + text-shadow: none; + } + .nav-collapse .nav > li > a, + .nav-collapse .dropdown-menu a { + padding: 0 10px; + color: #000000; + } + .nav-collapse .nav > li.active > a { + color: #bbbbbb; + } + .nav-collapse .btn { + padding: 10px 10px; + font-weight: normal; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + } + .nav-collapse .dropdown-menu li + li a { + margin-bottom: 0; + } + .nav-collapse .nav > li > a:hover, + .nav-collapse .nav > li > a:focus, + .nav-collapse .dropdown-menu a:hover, + .nav-collapse .dropdown-menu a:focus { + color: #bbbbbb; + background-color: #bbbbbb; + } + .navbar-inverse .nav-collapse .nav > li > a, + .navbar-inverse .nav-collapse .dropdown-menu a { + color: #000000; + } + .navbar-inverse .nav-collapse .nav > li > a:hover, + .navbar-inverse .nav-collapse .nav > li > a:focus, + .navbar-inverse .nav-collapse .dropdown-menu a:hover, + .navbar-inverse .nav-collapse .dropdown-menu a:focus { + color: #bbbbbb; + background-color: #000000; + } + .nav-collapse.in .btn-group { + padding: 0; + margin-top: 5px; + } + .nav-collapse .dropdown-menu { + position: static; + top: auto; + left: auto; + display: none; + float: none; + max-width: none; + padding: 0; + margin: 0; + background-color: transparent; + border: none; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + } + .nav-collapse .open > .dropdown-menu { + display: block; + } + .nav-collapse .dropdown-menu:before, + .nav-collapse .dropdown-menu:after { + display: none; + } + .nav-collapse .dropdown-menu .divider { + display: none; + } + .nav-collapse .nav > li > .dropdown-menu:before, + .nav-collapse .nav > li > .dropdown-menu:after { + display: none; + } + .nav-collapse .navbar-form, + .nav-collapse .navbar-search { + float: none; + padding: 10px 10px; + margin: 10px 0; + border-top: 1px solid #bbbbbb; + border-bottom: 1px solid #bbbbbb; + } + .navbar-inverse .nav-collapse .navbar-form, + .navbar-inverse .nav-collapse .navbar-search { + border-top-color: #000000; + border-bottom-color: #000000; + } + .navbar .nav-collapse .nav.pull-right { + float: none; + margin-left: 0; + } + .nav-collapse, + .nav-collapse.collapse { + height: 0; + overflow: hidden; + } + .nav-collapse > ul.nav > li.active > a { + color: #bbbbbb; + } + .navbar .btn-navbar { + display: block; + color: #ffffff; + background: #555555; + -webkit-box-shadow: 0 0 0; + -moz-box-shadow: 0 0 0; + box-shadow: 0 0 0; + } + .navbar .btn-navbar:after { + content: ""; + } + .navbar .btn-navbar:before { + content: "▼"; + } + .navbar .btn-navbar.active, + .navbar .btn-navbar:active { + margin-bottom: 20px; + color: #ffffff; + background: #000000; + outline: 0; + } + .navbar-static .navbar-inner { + padding-right: 10px; + padding-left: 10px; + } +} + +@media (min-width: 980px) { + .nav-collapse.collapse { + height: auto !important; + overflow: visible !important; + } +} diff --git a/web/static/css/bootstrap-responsive.min.css b/web/static/css/bootstrap-responsive.min.css new file mode 100644 index 0000000..5b97245 --- /dev/null +++ b/web/static/css/bootstrap-responsive.min.css @@ -0,0 +1,1106 @@ +/*! + * Bootstrap Responsive v2.3.1 + * + * Copyright 2012 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world @twitter by @mdo and @fat. + */ +.clearfix { + *zoom: 1; +} +.clearfix:before, +.clearfix:after { + display: table; + line-height: 0; + content: ""; +} +.clearfix:after { + clear: both; +} +.hide-text { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} +.input-block-level { + display: block; + width: 100%; + min-height: 20px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +@-ms-viewport { + width: device-width; +} +.hidden { + display: none; + visibility: hidden; +} +.visible-phone { + display: none !important; +} +.visible-tablet { + display: none !important; +} +.hidden-desktop { + display: none !important; +} +.visible-desktop { + display: inherit !important; +} +@media (min-width: 768px) and (max-width: 979px) { + .hidden-desktop { + display: inherit !important; + } + .visible-desktop { + display: none !important; + } + .visible-tablet { + display: inherit !important; + } + .hidden-tablet { + display: none !important; + } +} +@media (max-width: 767px) { + .hidden-desktop { + display: inherit !important; + } + .visible-desktop { + display: none !important; + } + .visible-phone { + display: inherit !important; + } + .hidden-phone { + display: none !important; + } +} +.visible-print { + display: none !important; +} +@media print { + .visible-print { + display: inherit !important; + } + .hidden-print { + display: none !important; + } +} +@media (min-width: 1200px) { + .row { + margin-left: -24px; + *zoom: 1; + } + .row:before, + .row:after { + display: table; + line-height: 0; + content: ""; + } + .row:after { + clear: both; + } + [class*="span"] { + float: left; + min-height: 1px; + margin-left: 16px; + } + .container, + .navbar-static-top .container, + .navbar-fixed-top .container, + .navbar-fixed-bottom .container { + width: 1128px; + } + .span12 { + width: 1128px; + } + .span11 { + width: 1032px; + } + .span10 { + width: 936px; + } + .span9 { + width: 840px; + } + .span8 { + width: 744px; + } + .span7 { + width: 648px; + } + .span6 { + width: 552px; + } + .span5 { + width: 456px; + } + .span4 { + width: 360px; + } + .span3 { + width: 264px; + } + .span2 { + width: 168px; + } + .span1 { + width: 72px; + } + .offset12 { + margin-left: 1176px; + } + .offset11 { + margin-left: 1080px; + } + .offset10 { + margin-left: 984px; + } + .offset9 { + margin-left: 888px; + } + .offset8 { + margin-left: 792px; + } + .offset7 { + margin-left: 696px; + } + .offset6 { + margin-left: 600px; + } + .offset5 { + margin-left: 504px; + } + .offset4 { + margin-left: 408px; + } + .offset3 { + margin-left: 312px; + } + .offset2 { + margin-left: 216px; + } + .offset1 { + margin-left: 120px; + } + .row-fluid { + width: 100%; + *zoom: 1; + } + .row-fluid:before, + .row-fluid:after { + display: table; + line-height: 0; + content: ""; + } + .row-fluid:after { + clear: both; + } + .row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 20px; + margin-left: 2.127659574468085%; + *margin-left: 2.07469347277317%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="span"]:first-child { + margin-left: 0; + } + .row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 2.127659574468085%; + } + .row-fluid .span12 { + width: 100%; + *width: 99.94703389830508%; + } + .row-fluid .span11 { + width: 91.48936170212765%; + *width: 91.43639560043273%; + } + .row-fluid .span10 { + width: 82.97872340425532%; + *width: 82.9257573025604%; + } + .row-fluid .span9 { + width: 74.46808510638297%; + *width: 74.41511900468805%; + } + .row-fluid .span8 { + width: 65.95744680851064%; + *width: 65.90448070681572%; + } + .row-fluid .span7 { + width: 57.44680851063829%; + *width: 57.39384240894338%; + } + .row-fluid .span6 { + width: 48.93617021276595%; + *width: 48.88320411107104%; + } + .row-fluid .span5 { + width: 40.42553191489362%; + *width: 40.372565813198705%; + } + .row-fluid .span4 { + width: 31.914893617021278%; + *width: 31.86192751532636%; + } + .row-fluid .span3 { + width: 23.404255319148934%; + *width: 23.351289217454017%; + } + .row-fluid .span2 { + width: 14.893617021276595%; + *width: 14.84065091958168%; + } + .row-fluid .span1 { + width: 6.382978723404255%; + *width: 6.33001262170934%; + } + .row-fluid .offset12 { + margin-left: 104.25531914893617%; + *margin-left: 104.14938694554633%; + } + .row-fluid .offset12:first-child { + margin-left: 102.12765957446808%; + *margin-left: 102.02172737107824%; + } + .row-fluid .offset11 { + margin-left: 95.74468085106382%; + *margin-left: 95.63874864767398%; + } + .row-fluid .offset11:first-child { + margin-left: 93.61702127659574%; + *margin-left: 93.5110890732059%; + } + .row-fluid .offset10 { + margin-left: 87.23404255319149%; + *margin-left: 87.12811034980164%; + } + .row-fluid .offset10:first-child { + margin-left: 85.1063829787234%; + *margin-left: 85.00045077533356%; + } + .row-fluid .offset9 { + margin-left: 78.72340425531914%; + *margin-left: 78.6174720519293%; + } + .row-fluid .offset9:first-child { + margin-left: 76.59574468085106%; + *margin-left: 76.48981247746121%; + } + .row-fluid .offset8 { + margin-left: 70.2127659574468%; + *margin-left: 70.10683375405696%; + } + .row-fluid .offset8:first-child { + margin-left: 68.08510638297872%; + *margin-left: 67.97917417958888%; + } + .row-fluid .offset7 { + margin-left: 61.70212765957446%; + *margin-left: 61.59619545618464%; + } + .row-fluid .offset7:first-child { + margin-left: 59.574468085106375%; + *margin-left: 59.46853588171655%; + } + .row-fluid .offset6 { + margin-left: 53.191489361702125%; + *margin-left: 53.08555715831229%; + } + .row-fluid .offset6:first-child { + margin-left: 51.063829787234035%; + *margin-left: 50.95789758384421%; + } + .row-fluid .offset5 { + margin-left: 44.68085106382979%; + *margin-left: 44.57491886043996%; + } + .row-fluid .offset5:first-child { + margin-left: 42.5531914893617%; + *margin-left: 42.447259285971874%; + } + .row-fluid .offset4 { + margin-left: 36.170212765957444%; + *margin-left: 36.06428056256762%; + } + .row-fluid .offset4:first-child { + margin-left: 34.04255319148936%; + *margin-left: 33.936620988099534%; + } + .row-fluid .offset3 { + margin-left: 27.659574468085104%; + *margin-left: 27.55364226469527%; + } + .row-fluid .offset3:first-child { + margin-left: 25.53191489361702%; + *margin-left: 25.425982690227183%; + } + .row-fluid .offset2 { + margin-left: 19.148936170212764%; + *margin-left: 19.043003966822933%; + } + .row-fluid .offset2:first-child { + margin-left: 17.02127659574468%; + *margin-left: 16.91534439235485%; + } + .row-fluid .offset1 { + margin-left: 10.638297872340425%; + *margin-left: 10.532365668950595%; + } + .row-fluid .offset1:first-child { + margin-left: 8.51063829787234%; + *margin-left: 8.40470609448251%; + } + input, + textarea, + .uneditable-input { + margin-left: 0; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 24px; + } + input.span12, + textarea.span12, + .uneditable-input.span12 { + width: 1114px; + } + input.span11, + textarea.span11, + .uneditable-input.span11 { + width: 1018px; + } + input.span10, + textarea.span10, + .uneditable-input.span10 { + width: 922px; + } + input.span9, + textarea.span9, + .uneditable-input.span9 { + width: 826px; + } + input.span8, + textarea.span8, + .uneditable-input.span8 { + width: 730px; + } + input.span7, + textarea.span7, + .uneditable-input.span7 { + width: 634px; + } + input.span6, + textarea.span6, + .uneditable-input.span6 { + width: 538px; + } + input.span5, + textarea.span5, + .uneditable-input.span5 { + width: 442px; + } + input.span4, + textarea.span4, + .uneditable-input.span4 { + width: 346px; + } + input.span3, + textarea.span3, + .uneditable-input.span3 { + width: 250px; + } + input.span2, + textarea.span2, + .uneditable-input.span2 { + width: 154px; + } + input.span1, + textarea.span1, + .uneditable-input.span1 { + width: 58px; + } + .thumbnails { + margin-left: -24px; + } + .thumbnails > li { + margin-left: 24px; + } + .row-fluid .thumbnails { + margin-left: 0; + } +} +@media (min-width: 768px) and (max-width: 979px) { + .row { + margin-left: -16px; + *zoom: 1; + } + .row:before, + .row:after { + display: table; + line-height: 0; + content: ""; + } + .row:after { + clear: both; + } + [class*="span"] { + float: left; + min-height: 1px; + margin-left: 16px; + } + .container, + .navbar-static-top .container, + .navbar-fixed-top .container, + .navbar-fixed-bottom .container { + width: 656px; + } + .span12 { + width: 656px; + } + .span11 { + width: 600px; + } + .span10 { + width: 544px; + } + .span9 { + width: 488px; + } + .span8 { + width: 432px; + } + .span7 { + width: 376px; + } + .span6 { + width: 320px; + } + .span5 { + width: 264px; + } + .span4 { + width: 208px; + } + .span3 { + width: 152px; + } + .span2 { + width: 96px; + } + .span1 { + width: 40px; + } + .offset12 { + margin-left: 688px; + } + .offset11 { + margin-left: 632px; + } + .offset10 { + margin-left: 576px; + } + .offset9 { + margin-left: 520px; + } + .offset8 { + margin-left: 464px; + } + .offset7 { + margin-left: 408px; + } + .offset6 { + margin-left: 352px; + } + .offset5 { + margin-left: 296px; + } + .offset4 { + margin-left: 240px; + } + .offset3 { + margin-left: 184px; + } + .offset2 { + margin-left: 128px; + } + .offset1 { + margin-left: 72px; + } + .row-fluid { + width: 100%; + *zoom: 1; + } + .row-fluid:before, + .row-fluid:after { + display: table; + line-height: 0; + content: ""; + } + .row-fluid:after { + clear: both; + } + .row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 20px; + margin-left: 2.4390243902439024%; + *margin-left: 2.386058288548987%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="span"]:first-child { + margin-left: 0; + } + .row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 2.4390243902439024%; + } + .row-fluid .span12 { + width: 100%; + *width: 99.94703389830508%; + } + .row-fluid .span11 { + width: 91.46341463414635%; + *width: 91.41044853245143%; + } + .row-fluid .span10 { + width: 82.92682926829268%; + *width: 82.87386316659776%; + } + .row-fluid .span9 { + width: 74.39024390243902%; + *width: 74.3372778007441%; + } + .row-fluid .span8 { + width: 65.85365853658537%; + *width: 65.80069243489045%; + } + .row-fluid .span7 { + width: 57.31707317073171%; + *width: 57.2641070690368%; + } + .row-fluid .span6 { + width: 48.78048780487805%; + *width: 48.727521703183136%; + } + .row-fluid .span5 { + width: 40.24390243902439%; + *width: 40.190936337329475%; + } + .row-fluid .span4 { + width: 31.70731707317073%; + *width: 31.654350971475814%; + } + .row-fluid .span3 { + width: 23.170731707317074%; + *width: 23.117765605622157%; + } + .row-fluid .span2 { + width: 14.634146341463415%; + *width: 14.5811802397685%; + } + .row-fluid .span1 { + width: 6.097560975609756%; + *width: 6.044594873914841%; + } + .row-fluid .offset12 { + margin-left: 104.8780487804878%; + *margin-left: 104.77211657709796%; + } + .row-fluid .offset12:first-child { + margin-left: 102.4390243902439%; + *margin-left: 102.33309218685406%; + } + .row-fluid .offset11 { + margin-left: 96.34146341463415%; + *margin-left: 96.23553121124431%; + } + .row-fluid .offset11:first-child { + margin-left: 93.90243902439025%; + *margin-left: 93.7965068210004%; + } + .row-fluid .offset10 { + margin-left: 87.80487804878048%; + *margin-left: 87.69894584539064%; + } + .row-fluid .offset10:first-child { + margin-left: 85.36585365853658%; + *margin-left: 85.25992145514674%; + } + .row-fluid .offset9 { + margin-left: 79.26829268292683%; + *margin-left: 79.16236047953699%; + } + .row-fluid .offset9:first-child { + margin-left: 76.82926829268293%; + *margin-left: 76.72333608929308%; + } + .row-fluid .offset8 { + margin-left: 70.73170731707317%; + *margin-left: 70.62577511368333%; + } + .row-fluid .offset8:first-child { + margin-left: 68.29268292682927%; + *margin-left: 68.18675072343943%; + } + .row-fluid .offset7 { + margin-left: 62.19512195121951%; + *margin-left: 62.089189747829685%; + } + .row-fluid .offset7:first-child { + margin-left: 59.75609756097561%; + *margin-left: 59.650165357585784%; + } + .row-fluid .offset6 { + margin-left: 53.65853658536585%; + *margin-left: 53.552604381976025%; + } + .row-fluid .offset6:first-child { + margin-left: 51.21951219512195%; + *margin-left: 51.113579991732124%; + } + .row-fluid .offset5 { + margin-left: 45.12195121951219%; + *margin-left: 45.016019016122364%; + } + .row-fluid .offset5:first-child { + margin-left: 42.68292682926829%; + *margin-left: 42.57699462587846%; + } + .row-fluid .offset4 { + margin-left: 36.58536585365854%; + *margin-left: 36.4794336502687%; + } + .row-fluid .offset4:first-child { + margin-left: 34.146341463414636%; + *margin-left: 34.0404092600248%; + } + .row-fluid .offset3 { + margin-left: 28.04878048780488%; + *margin-left: 27.942848284415046%; + } + .row-fluid .offset3:first-child { + margin-left: 25.609756097560975%; + *margin-left: 25.50382389417114%; + } + .row-fluid .offset2 { + margin-left: 19.51219512195122%; + *margin-left: 19.40626291856139%; + } + .row-fluid .offset2:first-child { + margin-left: 17.073170731707318%; + *margin-left: 16.967238528317484%; + } + .row-fluid .offset1 { + margin-left: 10.975609756097562%; + *margin-left: 10.86967755270773%; + } + .row-fluid .offset1:first-child { + margin-left: 8.536585365853659%; + *margin-left: 8.430653162463829%; + } + input, + textarea, + .uneditable-input { + margin-left: 0; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 16px; + } + input.span12, + textarea.span12, + .uneditable-input.span12 { + width: 642px; + } + input.span11, + textarea.span11, + .uneditable-input.span11 { + width: 586px; + } + input.span10, + textarea.span10, + .uneditable-input.span10 { + width: 530px; + } + input.span9, + textarea.span9, + .uneditable-input.span9 { + width: 474px; + } + input.span8, + textarea.span8, + .uneditable-input.span8 { + width: 418px; + } + input.span7, + textarea.span7, + .uneditable-input.span7 { + width: 362px; + } + input.span6, + textarea.span6, + .uneditable-input.span6 { + width: 306px; + } + input.span5, + textarea.span5, + .uneditable-input.span5 { + width: 250px; + } + input.span4, + textarea.span4, + .uneditable-input.span4 { + width: 194px; + } + input.span3, + textarea.span3, + .uneditable-input.span3 { + width: 138px; + } + input.span2, + textarea.span2, + .uneditable-input.span2 { + width: 82px; + } + input.span1, + textarea.span1, + .uneditable-input.span1 { + width: 26px; + } +} +@media (max-width: 767px) { + body { + padding-right: 18px; + padding-left: 18px; + } + .navbar-fixed-top, + .navbar-fixed-bottom, + .navbar-static-top { + margin-right: -10px; + margin-left: -10px; + } + .container-fluid { + padding: 0; + } + .dl-horizontal dt { + float: none; + width: auto; + clear: none; + text-align: left; + } + .dl-horizontal dd { + margin-left: 0; + } + .container { + width: auto; + } + .row-fluid { + width: 100%; + } + .row, + .thumbnails { + margin-left: 0; + } + .thumbnails > li { + float: none; + margin-left: 0; + } + [class*="span"], + .uneditable-input[class*="span"], + .row-fluid [class*="span"] { + display: block; + float: none; + width: 100%; + margin-left: 0; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .span12, + .row-fluid .span12 { + width: 100%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="offset"]:first-child { + margin-left: 0; + } + .input-large, + .input-xlarge, + .input-xxlarge, + input[class*="span"], + select[class*="span"], + textarea[class*="span"], + .uneditable-input { + display: block; + width: 100%; + min-height: 20px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .input-prepend input, + .input-append input, + .input-prepend input[class*="span"], + .input-append input[class*="span"] { + display: inline-block; + width: auto; + } + .controls-row [class*="span"] + [class*="span"] { + margin-left: 0; + } + .modal { + position: fixed; + top: 20px; + right: 20px; + left: 20px; + width: auto; + margin: 0; + } + .modal.fade { + top: -100px; + } + .modal.fade.in { + top: 18px; + } +} +@media (max-width: 480px) { + .nav-collapse { + -webkit-transform: translate3d(0, 0, 0); + } + .page-header h1 small { + display: block; + line-height: 20px; + } + input[type="checkbox"], + input[type="radio"] { + border: 1px solid #ccc; + } + .form-horizontal .control-label { + float: none; + width: auto; + padding-top: 0; + text-align: left; + } + .form-horizontal .controls { + margin-left: 0; + } + .form-horizontal .control-list { + padding-top: 0; + } + .form-horizontal .form-actions { + padding-right: 10px; + padding-left: 10px; + } + .media .pull-left, + .media .pull-right { + display: block; + float: none; + margin-bottom: 20px; + } + .media-object { + margin-right: 0; + margin-left: 0; + } + .modal { + top: 9px; + right: 4px; + left: 4px; + } + .modal-header .close { + padding: 10px; + margin: -10px; + } + .carousel-caption { + position: static; + } +} +@media (max-width: 979px) { + body { + padding-top: 0; + } + .navbar-fixed-top, + .navbar-fixed-bottom { + position: static; + } + .navbar-fixed-top { + margin-bottom: 20px; + } + .navbar-fixed-bottom { + margin-top: 20px; + } + .navbar-fixed-top .navbar-inner, + .navbar-fixed-bottom .navbar-inner { + padding: 0; + } + .navbar .container { + width: auto; + padding: 0; + } + .navbar .brand { + padding: 10px 10px; + margin: 0; + } + .nav-collapse { + clear: both; + } + .nav-collapse .nav { + float: none; + margin: 0 0 10px; + } + .nav-collapse .nav > li { + float: none; + } + .nav-collapse .nav > li > a { + margin-bottom: 0; + } + .nav-collapse .nav > .divider-vertical { + display: none; + } + .nav-collapse .nav .nav-header { + color: #000; + text-shadow: none; + } + .nav-collapse .nav > li > a, + .nav-collapse .dropdown-menu a { + padding: 0 10px; + color: #000; + } + .nav-collapse .nav > li.active > a { + color: #bbb; + } + .nav-collapse .btn { + padding: 10px 10px; + font-weight: normal; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + } + .nav-collapse .dropdown-menu li + li a { + margin-bottom: 0; + } + .nav-collapse .nav > li > a:hover, + .nav-collapse .nav > li > a:focus, + .nav-collapse .dropdown-menu a:hover, + .nav-collapse .dropdown-menu a:focus { + color: #bbb; + background-color: #bbb; + } + .navbar-inverse .nav-collapse .nav > li > a, + .navbar-inverse .nav-collapse .dropdown-menu a { + color: #000; + } + .navbar-inverse .nav-collapse .nav > li > a:hover, + .navbar-inverse .nav-collapse .nav > li > a:focus, + .navbar-inverse .nav-collapse .dropdown-menu a:hover, + .navbar-inverse .nav-collapse .dropdown-menu a:focus { + color: #bbb; + background-color: #000; + } + .nav-collapse.in .btn-group { + padding: 0; + margin-top: 5px; + } + .nav-collapse .dropdown-menu { + position: static; + top: auto; + left: auto; + display: none; + float: none; + max-width: none; + padding: 0; + margin: 0; + background-color: transparent; + border: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + } + .nav-collapse .open > .dropdown-menu { + display: block; + } + .nav-collapse .dropdown-menu:before, + .nav-collapse .dropdown-menu:after { + display: none; + } + .nav-collapse .dropdown-menu .divider { + display: none; + } + .nav-collapse .nav > li > .dropdown-menu:before, + .nav-collapse .nav > li > .dropdown-menu:after { + display: none; + } + .nav-collapse .navbar-form, + .nav-collapse .navbar-search { + float: none; + padding: 10px 10px; + margin: 10px 0; + border-top: 1px solid #bbb; + border-bottom: 1px solid #bbb; + } + .navbar-inverse .nav-collapse .navbar-form, + .navbar-inverse .nav-collapse .navbar-search { + border-top-color: #000; + border-bottom-color: #000; + } + .navbar .nav-collapse .nav.pull-right { + float: none; + margin-left: 0; + } + .nav-collapse, + .nav-collapse.collapse { + height: 0; + overflow: hidden; + } + .nav-collapse > ul.nav > li.active > a { + color: #bbb; + } + .navbar .btn-navbar { + display: block; + color: #fff; + background: #555; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; + } + .navbar .btn-navbar:after { + content: ""; + } + .navbar .btn-navbar:before { + content: "▼"; + } + .navbar .btn-navbar.active, + .navbar .btn-navbar:active { + margin-bottom: 20px; + color: #fff; + background: #000; + outline: 0; + } + .navbar-static .navbar-inner { + padding-right: 10px; + padding-left: 10px; + } +} +@media (min-width: 980px) { + .nav-collapse.collapse { + height: auto !important; + overflow: visible !important; + } +} diff --git a/web/static/css/bootstrap.css b/web/static/css/bootstrap.css new file mode 100644 index 0000000..256f7e2 --- /dev/null +++ b/web/static/css/bootstrap.css @@ -0,0 +1,6204 @@ +/*! + * Bootstrap v2.3.1 + * + * Copyright 2012 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world @twitter by @mdo and @fat. + */ + +.clearfix { + *zoom: 1; +} + +.clearfix:before, +.clearfix:after { + display: table; + line-height: 0; + content: ""; +} + +.clearfix:after { + clear: both; +} + +.hide-text { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.input-block-level { + display: block; + width: 100%; + min-height: 20px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +nav, +section { + display: block; +} + +audio, +canvas, +video { + display: inline-block; + *display: inline; + *zoom: 1; +} + +audio:not([controls]) { + display: none; +} + +html { + font-size: 100%; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} + +a:focus { + outline: thin solid #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +a:hover, +a:active { + outline: 0; +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sup { + top: -0.5em; +} + +sub { + bottom: -0.25em; +} + +img { + width: auto\9; + height: auto; + max-width: 100%; + vertical-align: middle; + border: 0; + -ms-interpolation-mode: bicubic; +} + +#map_canvas img, +.google-maps img { + max-width: none; +} + +button, +input, +select, +textarea { + margin: 0; + font-size: 100%; + vertical-align: middle; +} + +button, +input { + *overflow: visible; + line-height: normal; +} + +button::-moz-focus-inner, +input::-moz-focus-inner { + padding: 0; + border: 0; +} + +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + cursor: pointer; + -webkit-appearance: button; +} + +label, +select, +button, +input[type="button"], +input[type="reset"], +input[type="submit"], +input[type="radio"], +input[type="checkbox"] { + cursor: pointer; +} + +input[type="search"] { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; + -webkit-appearance: textfield; +} + +input[type="search"]::-webkit-search-decoration, +input[type="search"]::-webkit-search-cancel-button { + -webkit-appearance: none; +} + +textarea { + overflow: auto; + vertical-align: top; +} + +@media print { + * { + color: #000 !important; + text-shadow: none !important; + background: transparent !important; + box-shadow: none !important; + } + a, + a:visited { + text-decoration: none; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + .ir a:after, + a[href^="javascript:"]:after, + a[href^="#"]:after { + content: ""; + } + pre, + blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + img { + max-width: 100% !important; + } + @page { + margin: 0.5cm; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } +} + +@font-face { + font-family: "DOS"; + font-style: normal; + font-weight: normal; + src: url("fonts/Fixedsys500c.eot"); + src: + local("☺"), + url("fonts/Fixedsys500c.woff") format("woff"), + url("fonts/Fixedsys500c.ttf") format("truetype"), + url("fonts/Fixedsys500c.svg") format("svg"); +} + +body { + margin: 0; + font-family: DOS, Monaco, Menlo, Consolas, "Courier New", monospace; + font-size: 18px; + line-height: 20px; + color: #bbbbbb; + background-color: #000084; +} + +a { + color: #fefe54; + text-decoration: none; +} + +a:hover, +a:focus { + color: #fefe54; + background: #aa5500; +} + +.img-rounded { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.img-polaroid { + padding: 9px 4px 9px 4px; + background-color: #ffffff; + border: 2px solid #000000; +} + +.row { + margin-left: -16px; + *zoom: 1; +} + +.row:before, +.row:after { + display: table; + line-height: 0; + content: ""; +} + +.row:after { + clear: both; +} + +[class*="span"] { + float: left; + min-height: 1px; + margin-left: 16px; +} + +.container, +.navbar-static-top .container, +.navbar-fixed-top .container, +.navbar-fixed-bottom .container { + width: 944px; +} + +.span12 { + width: 944px; +} + +.span11 { + width: 864px; +} + +.span10 { + width: 784px; +} + +.span9 { + width: 704px; +} + +.span8 { + width: 624px; +} + +.span7 { + width: 544px; +} + +.span6 { + width: 464px; +} + +.span5 { + width: 384px; +} + +.span4 { + width: 304px; +} + +.span3 { + width: 224px; +} + +.span2 { + width: 144px; +} + +.span1 { + width: 64px; +} + +.offset12 { + margin-left: 976px; +} + +.offset11 { + margin-left: 896px; +} + +.offset10 { + margin-left: 816px; +} + +.offset9 { + margin-left: 736px; +} + +.offset8 { + margin-left: 656px; +} + +.offset7 { + margin-left: 576px; +} + +.offset6 { + margin-left: 496px; +} + +.offset5 { + margin-left: 416px; +} + +.offset4 { + margin-left: 336px; +} + +.offset3 { + margin-left: 256px; +} + +.offset2 { + margin-left: 176px; +} + +.offset1 { + margin-left: 96px; +} + +.row-fluid { + width: 100%; + *zoom: 1; +} + +.row-fluid:before, +.row-fluid:after { + display: table; + line-height: 0; + content: ""; +} + +.row-fluid:after { + clear: both; +} + +.row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 20px; + margin-left: 1.694915254237288%; + *margin-left: 1.6419491525423728%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +.row-fluid [class*="span"]:first-child { + margin-left: 0; +} + +.row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 1.694915254237288%; +} + +.row-fluid .span12 { + width: 100%; + *width: 99.94703389830508%; +} + +.row-fluid .span11 { + width: 91.52542372881356%; + *width: 91.47245762711864%; +} + +.row-fluid .span10 { + width: 83.0508474576271%; + *width: 82.99788135593218%; +} + +.row-fluid .span9 { + width: 74.57627118644066%; + *width: 74.52330508474574%; +} + +.row-fluid .span8 { + width: 66.10169491525423%; + *width: 66.04872881355931%; +} + +.row-fluid .span7 { + width: 57.6271186440678%; + *width: 57.574152542372886%; +} + +.row-fluid .span6 { + width: 49.152542372881356%; + *width: 49.09957627118644%; +} + +.row-fluid .span5 { + width: 40.677966101694906%; + *width: 40.62499999999999%; +} + +.row-fluid .span4 { + width: 32.20338983050847%; + *width: 32.15042372881356%; +} + +.row-fluid .span3 { + width: 23.728813559322035%; + *width: 23.675847457627118%; +} + +.row-fluid .span2 { + width: 15.254237288135592%; + *width: 15.201271186440676%; +} + +.row-fluid .span1 { + width: 6.779661016949152%; + *width: 6.726694915254237%; +} + +.row-fluid .offset12 { + margin-left: 103.38983050847457%; + *margin-left: 103.28389830508473%; +} + +.row-fluid .offset12:first-child { + margin-left: 101.69491525423729%; + *margin-left: 101.58898305084745%; +} + +.row-fluid .offset11 { + margin-left: 94.91525423728814%; + *margin-left: 94.8093220338983%; +} + +.row-fluid .offset11:first-child { + margin-left: 93.22033898305085%; + *margin-left: 93.11440677966101%; +} + +.row-fluid .offset10 { + margin-left: 86.44067796610167%; + *margin-left: 86.33474576271183%; +} + +.row-fluid .offset10:first-child { + margin-left: 84.74576271186439%; + *margin-left: 84.63983050847455%; +} + +.row-fluid .offset9 { + margin-left: 77.96610169491524%; + *margin-left: 77.8601694915254%; +} + +.row-fluid .offset9:first-child { + margin-left: 76.27118644067795%; + *margin-left: 76.16525423728811%; +} + +.row-fluid .offset8 { + margin-left: 69.4915254237288%; + *margin-left: 69.38559322033896%; +} + +.row-fluid .offset8:first-child { + margin-left: 67.79661016949152%; + *margin-left: 67.69067796610167%; +} + +.row-fluid .offset7 { + margin-left: 61.016949152542374%; + *margin-left: 60.91101694915255%; +} + +.row-fluid .offset7:first-child { + margin-left: 59.32203389830509%; + *margin-left: 59.21610169491526%; +} + +.row-fluid .offset6 { + margin-left: 52.54237288135593%; + *margin-left: 52.436440677966104%; +} + +.row-fluid .offset6:first-child { + margin-left: 50.847457627118644%; + *margin-left: 50.74152542372882%; +} + +.row-fluid .offset5 { + margin-left: 44.06779661016948%; + *margin-left: 43.961864406779654%; +} + +.row-fluid .offset5:first-child { + margin-left: 42.37288135593219%; + *margin-left: 42.26694915254237%; +} + +.row-fluid .offset4 { + margin-left: 35.593220338983045%; + *margin-left: 35.48728813559322%; +} + +.row-fluid .offset4:first-child { + margin-left: 33.89830508474576%; + *margin-left: 33.79237288135593%; +} + +.row-fluid .offset3 { + margin-left: 27.11864406779661%; + *margin-left: 27.01271186440678%; +} + +.row-fluid .offset3:first-child { + margin-left: 25.423728813559322%; + *margin-left: 25.317796610169488%; +} + +.row-fluid .offset2 { + margin-left: 18.644067796610166%; + *margin-left: 18.538135593220336%; +} + +.row-fluid .offset2:first-child { + margin-left: 16.94915254237288%; + *margin-left: 16.84322033898305%; +} + +.row-fluid .offset1 { + margin-left: 10.169491525423728%; + *margin-left: 10.063559322033898%; +} + +.row-fluid .offset1:first-child { + margin-left: 8.47457627118644%; + *margin-left: 8.36864406779661%; +} + +[class*="span"].hide, +.row-fluid [class*="span"].hide { + display: none; +} + +[class*="span"].pull-right, +.row-fluid [class*="span"].pull-right { + float: right; +} + +.container { + margin-left: 20px; + *zoom: 1; +} + +.container:before, +.container:after { + display: table; + line-height: 0; + content: ""; +} + +.container:after { + clear: both; +} + +.container-fluid { + padding-right: 16px; + padding-left: 16px; + *zoom: 1; +} + +.container-fluid:before, +.container-fluid:after { + display: table; + line-height: 0; + content: ""; +} + +.container-fluid:after { + clear: both; +} + +img { + -webkit-filter: contrast(800%); + -moz-filter: contrast(1000%); + -ms-filter: contrast(800%); + -o-filter: contrast(800%); + filter: contrast(1000%); +} + +p { + margin: 0 0 20px; +} + +.lead { + padding: 9px 14px 9px 14px; + margin: 9px 4px 9px 4px; + font-size: 18px; + color: #ffffff; + border: 2px solid #bbbbbb; +} + +small { + font-size: 100%; +} + +strong { + font-weight: normal; + color: #ffffff; +} + +em { + font-weight: normal; + color: #ffffff; +} + +cite { + font-style: normal; +} + +i, +cite, +em, +var, +address, +dfn { + font-style: normal; +} + +i:before, +cite:before, +em:before, +var:before, +address:before, +dfn:before, +i:after, +cite:after, +em:after, +var:after, +address:after, +dfn:after { + content: "/"; +} + +.muted { + display: none; + color: #bbbbbb; +} + +.text-warning { + color: #ffffff; +} + +a.text-warning:hover, +a.text-warning:focus { + color: #ffffff; +} + +.text-error { + color: #ffffff; +} + +a.text-error:hover, +a.text-error:focus { + color: #ffffff; +} + +.text-info { + color: #000000; +} + +a.text-info:hover, +a.text-info:focus { + color: #000000; +} + +.text-success { + color: #00aa00; +} + +a.text-success:hover, +a.text-success:focus { + color: #00aa00; +} + +.text-left { + text-align: left; +} + +.text-right { + text-align: right; +} + +.text-center { + text-align: center; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + margin: 0; + font-family: inherit; + font-weight: inherit; + line-height: 20px; + color: #ffffff; + text-rendering: optimizelegibility; +} + +h1 small, +h2 small, +h3 small, +h4 small, +h5 small, +h6 small { + font-weight: normal; + line-height: 1; + color: #bbbbbb; +} + +h1, +h2, +h3 { + line-height: 20px; +} + +h3:before { + content: ">>> "; +} + +h3:after { + content: " <<<"; +} + +h1 { + font-size: 18px; + text-transform: uppercase; +} + +h2 { + font-size: 18px; + text-align: center; + white-space: nowrap; +} + +h3 { + font-size: 18px; +} + +h4 { + font-size: 18px; + color: #fe54fe; +} + +h5 { + font-size: 18px; +} + +h6 { + font-size: 18px; +} + +h1 small { + font-size: 18px; +} + +h2 small { + font-size: 18px; +} + +h3 small { + font-size: 18px; +} + +h4 small { + font-size: 18px; +} + +.page-header { + padding: 20px 20px; + margin: 20px 0 20px; + background: #00aaaa; +} + +.page-header h1 { + color: #000000; +} + +ul, +ol { + padding: 0; + margin: 0 0 20px 18px; +} + +ul { + list-style: square; +} + +ol { + margin-left: 21px; + list-style: decimal; +} + +ol > li { + padding-left: 0; +} + +ul ul, +ul ol, +ol ol, +ol ul { + margin-bottom: 0; + list-style: square; +} + +li { + padding-left: 4px; + margin-left: 0; + line-height: 20px; +} + +ol > li { + margin-left: 12px; +} + +ul.unstyled, +ol.unstyled { + margin-left: 0; + list-style: none; +} + +ul.unstyled > li, +ol.unstyled > li { + padding-left: 0; +} + +ul.inline, +ol.inline { + margin-left: 0; + list-style: none; +} + +ul.inline > li, +ol.inline > li { + display: inline-block; + *display: inline; + padding-right: 9.5px; + padding-left: 10.7px; + *zoom: 1; +} + +dl { + margin-bottom: 20px; +} + +dt, +dd { + line-height: 20px; +} + +dt { + font-weight: normal; +} + +dd { + margin-left: 21px; +} + +.dl-horizontal { + *zoom: 1; +} + +.dl-horizontal:before, +.dl-horizontal:after { + display: table; + line-height: 0; + content: ""; +} + +.dl-horizontal:after { + clear: both; +} + +.dl-horizontal dt { + float: left; + width: 162px; + overflow: hidden; + clear: left; + text-align: right; + text-overflow: ellipsis; + white-space: nowrap; +} + +.dl-horizontal dd { + margin-left: 182px; +} + +hr { + margin: 6px 0 7px; + border: 0; + border-top: 0px solid #bbbbbb; + border-bottom: 2px solid #ffffff; +} + +abbr[title], +abbr[data-original-title] { + cursor: help; + border: 0; +} + +abbr.initialism { + font-size: 90%; + text-transform: uppercase; +} + +blockquote { + padding: 0 0 0 15px; + margin: 0 0 20px; + border-left: 5px solid #bbbbbb; +} + +blockquote p { + margin-bottom: 0; + font-size: 18px; + line-height: 20px; +} + +blockquote small { + display: block; + line-height: 20px; + color: #bbbbbb; +} + +blockquote small:before { + content: "\2014 \00A0"; +} + +blockquote.pull-right { + float: right; + padding-right: 1em; + padding-left: 0; + border-right: 5px solid #bbbbbb; + border-left: 0; +} + +blockquote.pull-right p, +blockquote.pull-right small { + text-align: right; +} + +blockquote.pull-right small:before { + content: ""; +} + +blockquote.pull-right small:after { + content: "\00A0 \2014"; +} + +q:before, +q:after, +blockquote:before, +blockquote:after { + content: ""; +} + +address { + display: block; + margin-bottom: 20px; + font-style: normal; + line-height: 20px; +} + +code, +pre { + padding: 0; + font-family: DOS, Monaco, Menlo, Consolas, "Courier New", monospace; + font-size: 18px; + color: #555555; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +code { + padding: 0; + color: #ffffff; + white-space: nowrap; + background-color: #000000; + border: 0; +} + +pre { + display: block; + padding: 0; + margin: 0 0 10px; + font-size: 18px; + font-weight: normal; + line-height: 20px; + word-break: break-all; + word-wrap: break-word; + white-space: pre; + white-space: pre-wrap; + background-color: #000000; + border: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +pre.prettyprint { + margin-bottom: 20px; +} + +pre code { + padding: 0; + color: inherit; + white-space: pre; + white-space: pre-wrap; + background-color: transparent; + border: 0; +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +form { + margin: 0 0 20px; +} + +fieldset { + padding: 0; + margin: 0; + border: 0; +} + +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 18px; + line-height: 40px; + color: #ffffff; + border: 0; +} + +legend small { + font-size: 20px; + color: #bbbbbb; +} + +legend:before { + content: "## "; +} + +legend:after { + content: " ##"; +} + +label, +input, +button, +select, +textarea { + font-size: 18px; + font-weight: normal; + line-height: 20px; +} + +input, +button, +select, +textarea { + font-family: DOS, Monaco, Menlo, Consolas, "Courier New", monospace; +} + +label { + display: block; + margin-bottom: 5px; +} + +select, +textarea, +input[type="text"], +input[type="password"], +input[type="datetime"], +input[type="datetime-local"], +input[type="date"], +input[type="month"], +input[type="time"], +input[type="week"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="search"], +input[type="tel"], +input[type="color"], +.uneditable-input { + display: inline-block; + height: 20px; + padding: 0 0; + margin: 10px 5px; + font-size: 18px; + line-height: 20px; + color: #000000; + vertical-align: middle; + background: #bbbbbb; + border: 2px solid #000000; +} + +input[type="text"]:before { + content: "["; +} + +input[type="text"]:after { + content: "]"; +} + +input, +textarea, +.uneditable-input { + width: 206px; +} + +textarea { + height: auto; +} + +textarea, +input[type="text"], +input[type="password"], +input[type="datetime"], +input[type="datetime-local"], +input[type="date"], +input[type="month"], +input[type="time"], +input[type="week"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="search"], +input[type="tel"], +input[type="color"], +.uneditable-input { + background-color: #bbbbbb; + border: 0; +} + +textarea:focus, +input[type="text"]:focus, +input[type="password"]:focus, +input[type="datetime"]:focus, +input[type="datetime-local"]:focus, +input[type="date"]:focus, +input[type="month"]:focus, +input[type="time"]:focus, +input[type="week"]:focus, +input[type="number"]:focus, +input[type="email"]:focus, +input[type="url"]:focus, +input[type="search"]:focus, +input[type="tel"]:focus, +input[type="color"]:focus, +.uneditable-input:focus { + outline: 0; +} + +input[type="radio"], +input[type="checkbox"] { + margin: 4px 0 0; + margin-top: 1px \9; + *margin-top: 0; + line-height: normal; +} + +input[type="file"], +input[type="image"], +input[type="submit"], +input[type="reset"], +input[type="button"], +input[type="radio"], +input[type="checkbox"] { + width: auto; +} + +select, +input[type="file"] { + height: 20px; + /* In IE7, the height of the select element cannot be changed by height, only font-size */ + + *margin-top: 4px; + /* For IE7, add top margin to align select with labels */ + + line-height: 20px; +} + +select { + width: 220px; + background-color: #ffffff; + border: 1px solid #cccccc; +} + +select[multiple], +select[size] { + height: auto; +} + +select:focus, +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus { + outline: thin solid #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +.uneditable-input, +.uneditable-textarea { + color: #bbbbbb; + cursor: not-allowed; + background-color: #fcfcfc; + border-color: #cccccc; +} + +.uneditable-input { + overflow: hidden; + white-space: nowrap; +} + +.uneditable-textarea { + width: auto; + height: auto; +} + +input:-moz-placeholder, +textarea:-moz-placeholder { + color: #bbbbbb; +} + +input:-ms-input-placeholder, +textarea:-ms-input-placeholder { + color: #bbbbbb; +} + +input::-webkit-input-placeholder, +textarea::-webkit-input-placeholder { + color: #bbbbbb; +} + +.radio, +.checkbox { + min-height: 20px; + padding-left: 20px; +} + +.radio input[type="radio"], +.checkbox input[type="checkbox"] { + float: left; + margin-left: -20px; +} + +.controls > .radio:first-child, +.controls > .checkbox:first-child { + padding-top: 5px; +} + +.radio.inline, +.checkbox.inline { + display: inline-block; + padding-top: 5px; + margin-bottom: 0; + vertical-align: middle; +} + +.radio.inline + .radio.inline, +.checkbox.inline + .checkbox.inline { + margin-left: 10px; +} + +.input-mini { + width: 60px; +} + +.input-small { + width: 90px; +} + +.input-medium { + width: 150px; +} + +.input-large { + width: 210px; +} + +.input-xlarge { + width: 270px; +} + +.input-xxlarge { + width: 530px; +} + +input[class*="span"], +select[class*="span"], +textarea[class*="span"], +.uneditable-input[class*="span"], +.row-fluid input[class*="span"], +.row-fluid select[class*="span"], +.row-fluid textarea[class*="span"], +.row-fluid .uneditable-input[class*="span"] { + float: none; + margin-left: 0; +} + +.input-append input[class*="span"], +.input-append .uneditable-input[class*="span"], +.input-prepend input[class*="span"], +.input-prepend .uneditable-input[class*="span"], +.row-fluid input[class*="span"], +.row-fluid select[class*="span"], +.row-fluid textarea[class*="span"], +.row-fluid .uneditable-input[class*="span"], +.row-fluid .input-prepend [class*="span"], +.row-fluid .input-append [class*="span"] { + display: inline-block; +} + +input, +textarea, +.uneditable-input { + margin-left: 0; +} + +.controls-row [class*="span"] + [class*="span"] { + margin-left: 16px; +} + +input.span12, +textarea.span12, +.uneditable-input.span12 { + width: 930px; +} + +input.span11, +textarea.span11, +.uneditable-input.span11 { + width: 850px; +} + +input.span10, +textarea.span10, +.uneditable-input.span10 { + width: 770px; +} + +input.span9, +textarea.span9, +.uneditable-input.span9 { + width: 690px; +} + +input.span8, +textarea.span8, +.uneditable-input.span8 { + width: 610px; +} + +input.span7, +textarea.span7, +.uneditable-input.span7 { + width: 530px; +} + +input.span6, +textarea.span6, +.uneditable-input.span6 { + width: 450px; +} + +input.span5, +textarea.span5, +.uneditable-input.span5 { + width: 370px; +} + +input.span4, +textarea.span4, +.uneditable-input.span4 { + width: 290px; +} + +input.span3, +textarea.span3, +.uneditable-input.span3 { + width: 210px; +} + +input.span2, +textarea.span2, +.uneditable-input.span2 { + width: 130px; +} + +input.span1, +textarea.span1, +.uneditable-input.span1 { + width: 50px; +} + +.controls-row { + *zoom: 1; +} + +.controls-row:before, +.controls-row:after { + display: table; + line-height: 0; + content: ""; +} + +.controls-row:after { + clear: both; +} + +.controls-row [class*="span"], +.row-fluid .controls-row [class*="span"] { + float: left; +} + +.controls-row .checkbox[class*="span"], +.controls-row .radio[class*="span"] { + padding-top: 5px; +} + +input[disabled], +select[disabled], +textarea[disabled], +input[readonly], +select[readonly], +textarea[readonly] { + cursor: not-allowed; + background-color: #bbbbbb; +} + +input[type="radio"][disabled], +input[type="checkbox"][disabled], +input[type="radio"][readonly], +input[type="checkbox"][readonly] { + background-color: transparent; +} + +.control-group.warning .control-label, +.control-group.warning .help-block, +.control-group.warning .help-inline { + color: #ffffff; +} + +.control-group.warning .checkbox, +.control-group.warning .radio, +.control-group.warning input, +.control-group.warning select, +.control-group.warning textarea { + color: #ffffff; +} + +.control-group.warning input, +.control-group.warning select, +.control-group.warning textarea { + border-color: #ffffff; +} + +.control-group.warning input:focus, +.control-group.warning select:focus, +.control-group.warning textarea:focus { + border-color: #ffffff; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} + +.control-group.warning .input-prepend .add-on, +.control-group.warning .input-append .add-on { + color: #ffffff; + background-color: #00aaaa; + border-color: #ffffff; +} + +.control-group.error .control-label, +.control-group.error .help-block, +.control-group.error .help-inline { + color: #ffffff; +} + +.control-group.error .checkbox, +.control-group.error .radio, +.control-group.error input, +.control-group.error select, +.control-group.error textarea { + color: #ffffff; +} + +.control-group.error input, +.control-group.error select, +.control-group.error textarea { + border-color: #ffffff; +} + +.control-group.error input:focus, +.control-group.error select:focus, +.control-group.error textarea:focus { + border-color: #ffffff; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} + +.control-group.error .input-prepend .add-on, +.control-group.error .input-append .add-on { + color: #ffffff; + background-color: #aa0000; + border-color: #ffffff; +} + +.control-group.success .control-label, +.control-group.success .help-block, +.control-group.success .help-inline { + color: #00aa00; +} + +.control-group.success .checkbox, +.control-group.success .radio, +.control-group.success input, +.control-group.success select, +.control-group.success textarea { + color: #00aa00; +} + +.control-group.success input, +.control-group.success select, +.control-group.success textarea { + border-color: #00aa00; +} + +.control-group.success input:focus, +.control-group.success select:focus, +.control-group.success textarea:focus { + border-color: #00aa00; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} + +.control-group.success .input-prepend .add-on, +.control-group.success .input-append .add-on { + color: #00aa00; + background-color: #000000; + border-color: #00aa00; +} + +.control-group.info .control-label, +.control-group.info .help-block, +.control-group.info .help-inline { + color: #000000; +} + +.control-group.info .checkbox, +.control-group.info .radio, +.control-group.info input, +.control-group.info select, +.control-group.info textarea { + color: #000000; +} + +.control-group.info input, +.control-group.info select, +.control-group.info textarea { + border-color: #000000; +} + +.control-group.info input:focus, +.control-group.info select:focus, +.control-group.info textarea:focus { + border-color: #000000; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} + +.control-group.info .input-prepend .add-on, +.control-group.info .input-append .add-on { + color: #000000; + background-color: #000000; + border-color: #000000; +} + +input:focus:invalid, +textarea:focus:invalid, +select:focus:invalid { + color: #b94a48; + border-color: #ee5f5b; +} + +input:focus:invalid:focus, +textarea:focus:invalid:focus, +select:focus:invalid:focus { + border-color: #e9322d; + -webkit-box-shadow: 0 0 6px #f8b9b7; + -moz-box-shadow: 0 0 6px #f8b9b7; + box-shadow: 0 0 6px #f8b9b7; +} + +.form-actions { + padding: 19px 20px 20px; + margin-top: 20px; + margin-bottom: 20px; + background-color: #f5f5f5; + border-top: 1px solid #e5e5e5; + *zoom: 1; +} + +.form-actions:before, +.form-actions:after { + display: table; + line-height: 0; + content: ""; +} + +.form-actions:after { + clear: both; +} + +.help-block, +.help-inline { + color: #e1e1e1; +} + +.help-block { + display: block; + margin-bottom: 10px; +} + +.help-inline { + display: inline-block; + *display: inline; + padding-left: 5px; + vertical-align: middle; + *zoom: 1; +} + +.input-append, +.input-prepend { + display: inline-block; + margin-bottom: 10px; + font-size: 0; + white-space: nowrap; + vertical-align: middle; +} + +.input-append input, +.input-prepend input, +.input-append select, +.input-prepend select, +.input-append .uneditable-input, +.input-prepend .uneditable-input, +.input-append .dropdown-menu, +.input-prepend .dropdown-menu, +.input-append .popover, +.input-prepend .popover { + font-size: 18px; +} + +.input-append input, +.input-prepend input, +.input-append select, +.input-prepend select, +.input-append .uneditable-input, +.input-prepend .uneditable-input { + position: relative; + margin-bottom: 0; + *margin-left: 0; + vertical-align: top; + -webkit-border-radius: 0 0 0px 0; + -moz-border-radius: 0 0 0px 0; + border-radius: 0 0 0px 0; +} + +.input-append input:focus, +.input-prepend input:focus, +.input-append select:focus, +.input-prepend select:focus, +.input-append .uneditable-input:focus, +.input-prepend .uneditable-input:focus { + z-index: 2; +} + +.input-append .add-on, +.input-prepend .add-on { + display: inline-block; + width: auto; + height: 20px; + min-width: 16px; + padding: 4px 5px; + font-size: 18px; + font-weight: normal; + line-height: 20px; + text-align: center; + text-shadow: 0; + background-color: #bbbbbb; + border: 0; +} + +.input-append .add-on, +.input-prepend .add-on, +.input-append .btn, +.input-prepend .btn, +.input-append .btn-group > .dropdown-toggle, +.input-prepend .btn-group > .dropdown-toggle { + vertical-align: top; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.input-prepend .add-on, +.input-prepend .btn { + margin-right: -1px; +} + +.input-prepend .add-on:first-child, +.input-prepend .btn:first-child { + -webkit-border-radius: 0 0 0 0px; + -moz-border-radius: 0 0 0 0px; + border-radius: 0 0 0 0px; +} + +.input-append input, +.input-append select, +.input-append .uneditable-input { + -webkit-border-radius: 0 0 0 0px; + -moz-border-radius: 0 0 0 0px; + border-radius: 0 0 0 0px; +} + +.input-append input + .btn-group .btn:last-child, +.input-append select + .btn-group .btn:last-child, +.input-append .uneditable-input + .btn-group .btn:last-child { + -webkit-border-radius: 0 0 0px 0; + -moz-border-radius: 0 0 0px 0; + border-radius: 0 0 0px 0; +} + +.input-append .add-on, +.input-append .btn, +.input-append .btn-group { + margin-left: -1px; +} + +.input-append .add-on:last-child, +.input-append .btn:last-child, +.input-append .btn-group:last-child > .dropdown-toggle { + -webkit-border-radius: 0 0 0px 0; + -moz-border-radius: 0 0 0px 0; + border-radius: 0 0 0px 0; +} + +.input-prepend.input-append input, +.input-prepend.input-append select, +.input-prepend.input-append .uneditable-input { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.input-prepend.input-append input + .btn-group .btn, +.input-prepend.input-append select + .btn-group .btn, +.input-prepend.input-append .uneditable-input + .btn-group .btn { + -webkit-border-radius: 0 0 0px 0; + -moz-border-radius: 0 0 0px 0; + border-radius: 0 0 0px 0; +} + +.input-prepend.input-append .add-on:first-child, +.input-prepend.input-append .btn:first-child { + margin-right: -1px; + -webkit-border-radius: 0 0 0 0px; + -moz-border-radius: 0 0 0 0px; + border-radius: 0 0 0 0px; +} + +.input-prepend.input-append .add-on:last-child, +.input-prepend.input-append .btn:last-child { + margin-left: -1px; + -webkit-border-radius: 0 0 0px 0; + -moz-border-radius: 0 0 0px 0; + border-radius: 0 0 0px 0; +} + +.input-prepend.input-append .btn-group:first-child { + margin-left: 0; +} + +input.search-query { + padding-right: 14px; + padding-right: 4px \9; + padding-left: 14px; + padding-left: 4px \9; + /* IE7-8 doesn't have border-radius, so don't indent the padding */ + + margin-bottom: 0; +} + +/* Allow for input prepend/append in search forms */ + +.form-search .input-append .search-query, +.form-search .input-prepend .search-query { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.form-search input, +.form-inline input, +.form-horizontal input, +.form-search textarea, +.form-inline textarea, +.form-horizontal textarea, +.form-search select, +.form-inline select, +.form-horizontal select, +.form-search .help-inline, +.form-inline .help-inline, +.form-horizontal .help-inline, +.form-search .uneditable-input, +.form-inline .uneditable-input, +.form-horizontal .uneditable-input, +.form-search .input-prepend, +.form-inline .input-prepend, +.form-horizontal .input-prepend, +.form-search .input-append, +.form-inline .input-append, +.form-horizontal .input-append { + display: inline-block; + *display: inline; + margin-bottom: 0; + vertical-align: middle; + *zoom: 1; +} + +.form-search .hide, +.form-inline .hide, +.form-horizontal .hide { + display: none; +} + +.form-search label, +.form-inline label, +.form-search .btn-group, +.form-inline .btn-group { + display: inline-block; +} + +.form-search .input-append, +.form-inline .input-append, +.form-search .input-prepend, +.form-inline .input-prepend { + margin-bottom: 0; +} + +.form-search .radio, +.form-search .checkbox, +.form-inline .radio, +.form-inline .checkbox { + padding-left: 0; + margin-bottom: 0; + vertical-align: middle; +} + +.form-search .radio input[type="radio"], +.form-search .checkbox input[type="checkbox"], +.form-inline .radio input[type="radio"], +.form-inline .checkbox input[type="checkbox"] { + float: left; + margin-right: 3px; + margin-left: 0; +} + +.control-group { + margin-bottom: 10px; +} + +legend + .control-group { + margin-top: 20px; + -webkit-margin-top-collapse: separate; +} + +.form-horizontal .control-group { + margin-bottom: 20px; + *zoom: 1; +} + +.form-horizontal .control-group:before, +.form-horizontal .control-group:after { + display: table; + line-height: 0; + content: ""; +} + +.form-horizontal .control-group:after { + clear: both; +} + +.form-horizontal .control-label { + float: left; + width: 162px; + padding-top: 5px; + text-align: right; +} + +.form-horizontal .controls { + *display: inline-block; + *padding-left: 20px; + margin-left: 182px; + *margin-left: 0; +} + +.form-horizontal .controls:first-child { + *padding-left: 182px; +} + +.form-horizontal .help-block { + margin-bottom: 0; +} + +.form-horizontal input + .help-block, +.form-horizontal select + .help-block, +.form-horizontal textarea + .help-block, +.form-horizontal .uneditable-input + .help-block, +.form-horizontal .input-prepend + .help-block, +.form-horizontal .input-append + .help-block { + margin-top: 10px; +} + +.form-horizontal .form-actions { + padding-left: 182px; +} + +table { + max-width: 100%; + background-color: transparent; + border-collapse: collapse; + border-spacing: 0; +} + +.table { + width: 100%; + margin-bottom: 20px; +} + +.table th, +.table td { + padding: 8px; + line-height: 20px; + text-align: left; + vertical-align: top; + border-top: 2px solid #dddddd; +} + +.table th { + font-weight: normal; +} + +.table thead th { + vertical-align: bottom; +} + +.table caption + thead tr:first-child th, +.table caption + thead tr:first-child td, +.table colgroup + thead tr:first-child th, +.table colgroup + thead tr:first-child td, +.table thead:first-child tr:first-child th, +.table thead:first-child tr:first-child td { + border-top: 0; +} + +.table tbody + tbody { + border-top: 2px solid #dddddd; +} + +.table .table { + background-color: #000084; +} + +.table-condensed th, +.table-condensed td { + padding: 4px 5px; +} + +.table-bordered { + margin-left: 4px; + border: 2px solid #dddddd; + border-collapse: separate; + *border-collapse: collapse; + border-left: 0; +} + +.table-bordered th, +.table-bordered td { + padding: inherit 5.2px; + border-left: 2px solid #dddddd; +} + +.table-bordered caption + thead tr:first-child th, +.table-bordered caption + tbody tr:first-child th, +.table-bordered caption + tbody tr:first-child td, +.table-bordered colgroup + thead tr:first-child th, +.table-bordered colgroup + tbody tr:first-child th, +.table-bordered colgroup + tbody tr:first-child td, +.table-bordered thead:first-child tr:first-child th, +.table-bordered tbody:first-child tr:first-child th, +.table-bordered tbody:first-child tr:first-child td { + border-top: 0; +} + +.table-bordered thead:first-child tr:first-child > th:first-child, +.table-bordered tbody:first-child tr:first-child > td:first-child, +.table-bordered tbody:first-child tr:first-child > th:first-child { + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topleft: 0; +} + +.table-bordered thead:first-child tr:first-child > th:last-child, +.table-bordered tbody:first-child tr:first-child > td:last-child, +.table-bordered tbody:first-child tr:first-child > th:last-child { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-topright: 0; +} + +.table-bordered thead:last-child tr:last-child > th:first-child, +.table-bordered tbody:last-child tr:last-child > td:first-child, +.table-bordered tbody:last-child tr:last-child > th:first-child, +.table-bordered tfoot:last-child tr:last-child > td:first-child, +.table-bordered tfoot:last-child tr:last-child > th:first-child { + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -moz-border-radius-bottomleft: 0; +} + +.table-bordered thead:last-child tr:last-child > th:last-child, +.table-bordered tbody:last-child tr:last-child > td:last-child, +.table-bordered tbody:last-child tr:last-child > th:last-child, +.table-bordered tfoot:last-child tr:last-child > td:last-child, +.table-bordered tfoot:last-child tr:last-child > th:last-child { + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomright: 0; +} + +.table-bordered tfoot + tbody:last-child tr:last-child td:first-child { + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -moz-border-radius-bottomleft: 0; +} + +.table-bordered tfoot + tbody:last-child tr:last-child td:last-child { + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomright: 0; +} + +.table-bordered caption + thead tr:first-child th:first-child, +.table-bordered caption + tbody tr:first-child td:first-child, +.table-bordered colgroup + thead tr:first-child th:first-child, +.table-bordered colgroup + tbody tr:first-child td:first-child { + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topleft: 0; +} + +.table-bordered caption + thead tr:first-child th:last-child, +.table-bordered caption + tbody tr:first-child td:last-child, +.table-bordered colgroup + thead tr:first-child th:last-child, +.table-bordered colgroup + tbody tr:first-child td:last-child { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-topright: 0; +} + +.table-striped tbody > tr:nth-child(odd) > td, +.table-striped tbody > tr:nth-child(odd) > th { + background-color: transparent; +} + +.table-hover tbody tr:hover > td, +.table-hover tbody tr:hover > th { + background-color: #f5f5f5; +} + +table td[class*="span"], +table th[class*="span"], +.row-fluid table td[class*="span"], +.row-fluid table th[class*="span"] { + display: table-cell; + float: none; + margin-left: 0; +} + +.table td.span1, +.table th.span1 { + float: none; + width: 48px; + margin-left: 0; +} + +.table td.span2, +.table th.span2 { + float: none; + width: 128px; + margin-left: 0; +} + +.table td.span3, +.table th.span3 { + float: none; + width: 208px; + margin-left: 0; +} + +.table td.span4, +.table th.span4 { + float: none; + width: 288px; + margin-left: 0; +} + +.table td.span5, +.table th.span5 { + float: none; + width: 368px; + margin-left: 0; +} + +.table td.span6, +.table th.span6 { + float: none; + width: 448px; + margin-left: 0; +} + +.table td.span7, +.table th.span7 { + float: none; + width: 528px; + margin-left: 0; +} + +.table td.span8, +.table th.span8 { + float: none; + width: 608px; + margin-left: 0; +} + +.table td.span9, +.table th.span9 { + float: none; + width: 688px; + margin-left: 0; +} + +.table td.span10, +.table th.span10 { + float: none; + width: 768px; + margin-left: 0; +} + +.table td.span11, +.table th.span11 { + float: none; + width: 848px; + margin-left: 0; +} + +.table td.span12, +.table th.span12 { + float: none; + width: 928px; + margin-left: 0; +} + +.table tbody tr.success > td { + background-color: #000000; +} + +.table tbody tr.error > td { + background-color: #aa0000; +} + +.table tbody tr.warning > td { + background-color: #00aaaa; +} + +.table tbody tr.info > td { + background-color: #000000; +} + +.table-hover tbody tr.success:hover > td { + background-color: #000000; +} + +.table-hover tbody tr.error:hover > td { + background-color: #910000; +} + +.table-hover tbody tr.warning:hover > td { + background-color: #009091; +} + +.table-hover tbody tr.info:hover > td { + background-color: #000000; +} + +[class^="icon-"], +[class*=" icon-"] { + display: none; + width: 14px; + height: 14px; + margin-top: 1px; + *margin-right: 0.3em; + line-height: 20px; + vertical-align: text-top; + background-image: url("../img/glyphicons-halflings.png"); + background-position: 14px 14px; + background-repeat: no-repeat; +} + +/* White icons with optional class, or on hover/focus/active states of certain elements */ + +.icon-white, +.nav-pills > .active > a > [class^="icon-"], +.nav-pills > .active > a > [class*=" icon-"], +.nav-list > .active > a > [class^="icon-"], +.nav-list > .active > a > [class*=" icon-"], +.navbar-inverse .nav > .active > a > [class^="icon-"], +.navbar-inverse .nav > .active > a > [class*=" icon-"], +.dropdown-menu > li > a:hover > [class^="icon-"], +.dropdown-menu > li > a:focus > [class^="icon-"], +.dropdown-menu > li > a:hover > [class*=" icon-"], +.dropdown-menu > li > a:focus > [class*=" icon-"], +.dropdown-menu > .active > a > [class^="icon-"], +.dropdown-menu > .active > a > [class*=" icon-"], +.dropdown-submenu:hover > a > [class^="icon-"], +.dropdown-submenu:focus > a > [class^="icon-"], +.dropdown-submenu:hover > a > [class*=" icon-"], +.dropdown-submenu:focus > a > [class*=" icon-"] { + background-image: url("../img/glyphicons-halflings-white.png"); +} + +.icon-glass { + background-position: 0 0; +} + +.icon-music { + background-position: -24px 0; +} + +.icon-search { + background-position: -48px 0; +} + +.icon-envelope { + background-position: -72px 0; +} + +.icon-heart { + background-position: -96px 0; +} + +.icon-star { + background-position: -120px 0; +} + +.icon-star-empty { + background-position: -144px 0; +} + +.icon-user { + background-position: -168px 0; +} + +.icon-film { + background-position: -192px 0; +} + +.icon-th-large { + background-position: -216px 0; +} + +.icon-th { + background-position: -240px 0; +} + +.icon-th-list { + background-position: -264px 0; +} + +.icon-ok { + background-position: -288px 0; +} + +.icon-remove { + background-position: -312px 0; +} + +.icon-zoom-in { + background-position: -336px 0; +} + +.icon-zoom-out { + background-position: -360px 0; +} + +.icon-off { + background-position: -384px 0; +} + +.icon-signal { + background-position: -408px 0; +} + +.icon-cog { + background-position: -432px 0; +} + +.icon-trash { + background-position: -456px 0; +} + +.icon-home { + background-position: 0 -24px; +} + +.icon-file { + background-position: -24px -24px; +} + +.icon-time { + background-position: -48px -24px; +} + +.icon-road { + background-position: -72px -24px; +} + +.icon-download-alt { + background-position: -96px -24px; +} + +.icon-download { + background-position: -120px -24px; +} + +.icon-upload { + background-position: -144px -24px; +} + +.icon-inbox { + background-position: -168px -24px; +} + +.icon-play-circle { + background-position: -192px -24px; +} + +.icon-repeat { + background-position: -216px -24px; +} + +.icon-refresh { + background-position: -240px -24px; +} + +.icon-list-alt { + background-position: -264px -24px; +} + +.icon-lock { + background-position: -287px -24px; +} + +.icon-flag { + background-position: -312px -24px; +} + +.icon-headphones { + background-position: -336px -24px; +} + +.icon-volume-off { + background-position: -360px -24px; +} + +.icon-volume-down { + background-position: -384px -24px; +} + +.icon-volume-up { + background-position: -408px -24px; +} + +.icon-qrcode { + background-position: -432px -24px; +} + +.icon-barcode { + background-position: -456px -24px; +} + +.icon-tag { + background-position: 0 -48px; +} + +.icon-tags { + background-position: -25px -48px; +} + +.icon-book { + background-position: -48px -48px; +} + +.icon-bookmark { + background-position: -72px -48px; +} + +.icon-print { + background-position: -96px -48px; +} + +.icon-camera { + background-position: -120px -48px; +} + +.icon-font { + background-position: -144px -48px; +} + +.icon-bold { + background-position: -167px -48px; +} + +.icon-italic { + background-position: -192px -48px; +} + +.icon-text-height { + background-position: -216px -48px; +} + +.icon-text-width { + background-position: -240px -48px; +} + +.icon-align-left { + background-position: -264px -48px; +} + +.icon-align-center { + background-position: -288px -48px; +} + +.icon-align-right { + background-position: -312px -48px; +} + +.icon-align-justify { + background-position: -336px -48px; +} + +.icon-list { + background-position: -360px -48px; +} + +.icon-indent-left { + background-position: -384px -48px; +} + +.icon-indent-right { + background-position: -408px -48px; +} + +.icon-facetime-video { + background-position: -432px -48px; +} + +.icon-picture { + background-position: -456px -48px; +} + +.icon-pencil { + background-position: 0 -72px; +} + +.icon-map-marker { + background-position: -24px -72px; +} + +.icon-adjust { + background-position: -48px -72px; +} + +.icon-tint { + background-position: -72px -72px; +} + +.icon-edit { + background-position: -96px -72px; +} + +.icon-share { + background-position: -120px -72px; +} + +.icon-check { + background-position: -144px -72px; +} + +.icon-move { + background-position: -168px -72px; +} + +.icon-step-backward { + background-position: -192px -72px; +} + +.icon-fast-backward { + background-position: -216px -72px; +} + +.icon-backward { + background-position: -240px -72px; +} + +.icon-play { + background-position: -264px -72px; +} + +.icon-pause { + background-position: -288px -72px; +} + +.icon-stop { + background-position: -312px -72px; +} + +.icon-forward { + background-position: -336px -72px; +} + +.icon-fast-forward { + background-position: -360px -72px; +} + +.icon-step-forward { + background-position: -384px -72px; +} + +.icon-eject { + background-position: -408px -72px; +} + +.icon-chevron-left { + background-position: -432px -72px; +} + +.icon-chevron-right { + background-position: -456px -72px; +} + +.icon-plus-sign { + background-position: 0 -96px; +} + +.icon-minus-sign { + background-position: -24px -96px; +} + +.icon-remove-sign { + background-position: -48px -96px; +} + +.icon-ok-sign { + background-position: -72px -96px; +} + +.icon-question-sign { + background-position: -96px -96px; +} + +.icon-info-sign { + background-position: -120px -96px; +} + +.icon-screenshot { + background-position: -144px -96px; +} + +.icon-remove-circle { + background-position: -168px -96px; +} + +.icon-ok-circle { + background-position: -192px -96px; +} + +.icon-ban-circle { + background-position: -216px -96px; +} + +.icon-arrow-left { + background-position: -240px -96px; +} + +.icon-arrow-right { + background-position: -264px -96px; +} + +.icon-arrow-up { + background-position: -289px -96px; +} + +.icon-arrow-down { + background-position: -312px -96px; +} + +.icon-share-alt { + background-position: -336px -96px; +} + +.icon-resize-full { + background-position: -360px -96px; +} + +.icon-resize-small { + background-position: -384px -96px; +} + +.icon-plus { + background-position: -408px -96px; +} + +.icon-minus { + background-position: -433px -96px; +} + +.icon-asterisk { + background-position: -456px -96px; +} + +.icon-exclamation-sign { + background-position: 0 -120px; +} + +.icon-gift { + background-position: -24px -120px; +} + +.icon-leaf { + background-position: -48px -120px; +} + +.icon-fire { + background-position: -72px -120px; +} + +.icon-eye-open { + background-position: -96px -120px; +} + +.icon-eye-close { + background-position: -120px -120px; +} + +.icon-warning-sign { + background-position: -144px -120px; +} + +.icon-plane { + background-position: -168px -120px; +} + +.icon-calendar { + background-position: -192px -120px; +} + +.icon-random { + width: 16px; + background-position: -216px -120px; +} + +.icon-comment { + background-position: -240px -120px; +} + +.icon-magnet { + background-position: -264px -120px; +} + +.icon-chevron-up { + background-position: -288px -120px; +} + +.icon-chevron-down { + background-position: -313px -119px; +} + +.icon-retweet { + background-position: -336px -120px; +} + +.icon-shopping-cart { + background-position: -360px -120px; +} + +.icon-folder-close { + width: 16px; + background-position: -384px -120px; +} + +.icon-folder-open { + width: 16px; + background-position: -408px -120px; +} + +.icon-resize-vertical { + background-position: -432px -119px; +} + +.icon-resize-horizontal { + background-position: -456px -118px; +} + +.icon-hdd { + background-position: 0 -144px; +} + +.icon-bullhorn { + background-position: -24px -144px; +} + +.icon-bell { + background-position: -48px -144px; +} + +.icon-certificate { + background-position: -72px -144px; +} + +.icon-thumbs-up { + background-position: -96px -144px; +} + +.icon-thumbs-down { + background-position: -120px -144px; +} + +.icon-hand-right { + background-position: -144px -144px; +} + +.icon-hand-left { + background-position: -168px -144px; +} + +.icon-hand-up { + background-position: -192px -144px; +} + +.icon-hand-down { + background-position: -216px -144px; +} + +.icon-circle-arrow-right { + background-position: -240px -144px; +} + +.icon-circle-arrow-left { + background-position: -264px -144px; +} + +.icon-circle-arrow-up { + background-position: -288px -144px; +} + +.icon-circle-arrow-down { + background-position: -312px -144px; +} + +.icon-globe { + background-position: -336px -144px; +} + +.icon-wrench { + background-position: -360px -144px; +} + +.icon-tasks { + background-position: -384px -144px; +} + +.icon-filter { + background-position: -408px -144px; +} + +.icon-briefcase { + background-position: -432px -144px; +} + +.icon-fullscreen { + background-position: -456px -144px; +} + +.dropup, +.dropdown { + position: relative; +} + +.dropdown-toggle { + *margin-bottom: -3px; +} + +.dropdown-toggle:active, +.open .dropdown-toggle { + outline: 0; +} + +.caret { + display: inline-block; + width: 0; + height: 0; + vertical-align: top; + /* + border-top: 4px solid @black; + border-right: 4px solid transparent; + border-left: 4px solid transparent; + */ +} + +.caret:before { + content: "▼"; +} + +.dropdown .caret { + margin-top: 8px; + margin-left: 2px; +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 9px 4px 9px 4px; + margin: -15.5px 4px 8px 4px; + list-style: none; + background-color: #bbbbbb; + border: 1px solid #000000; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + -webkit-box-shadow: 0px 0px 0 5px #bbbbbb; + -moz-box-shadow: 0px 0px 0 5px #bbbbbb; + box-shadow: 0px 0px 0 5px #bbbbbb; + -webkit-background-clip: padding-box; + -moz-background-clip: padding; + background-clip: padding-box; +} + +.dropdown-menu.pull-right { + right: 0; + left: auto; +} + +.dropdown-menu .divider { + *width: 100%; + height: 1px; + height: 0; + margin: 9px 1px; + *margin: -5px 0 5px; + overflow: hidden; + background-color: #e5e5e5; + border-bottom: 1px solid #000000; +} + +.dropdown-menu > li > a { + display: block; + padding: 0 10px; + clear: both; + font-weight: normal; + line-height: 20px; + color: #000000; + white-space: nowrap; +} + +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus, +.dropdown-submenu:hover > a, +.dropdown-submenu:focus > a { + color: #bbbbbb; + text-decoration: none; +} + +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + color: #bbbbbb; + text-decoration: none; + background-color: #fefe4a; + background-image: -moz-linear-gradient(top, #fefe54, #fefe3b); + background-image: -webkit-gradient( + linear, + 0 0, + 0 100%, + from(#fefe54), + to(#fefe3b) + ); + background-image: -webkit-linear-gradient(top, #fefe54, #fefe3b); + background-image: -o-linear-gradient(top, #fefe54, #fefe3b); + background-image: linear-gradient(to bottom, #fefe54, #fefe3b); + background-repeat: repeat-x; + outline: 0; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffefe54', endColorstr='#fffefe3b', GradientType=0); +} + +.dropdown-menu > .disabled > a, +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + color: #bbbbbb; +} + +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + text-decoration: none; + cursor: default; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.open { + *z-index: 1000; +} + +.open > .dropdown-menu { + display: block; +} + +.pull-right > .dropdown-menu { + right: 0; + left: auto; +} + +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + border-top: 0; + border-bottom: 1px solid #000000; + content: ""; +} + +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 1px; +} + +.dropdown-submenu { + position: relative; +} + +.dropdown-submenu > .dropdown-menu { + top: 0; + left: 100%; + margin-top: -6px; + margin-left: -1px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.dropdown-submenu:hover > .dropdown-menu { + display: block; +} + +.dropup .dropdown-submenu > .dropdown-menu { + top: auto; + bottom: 0; + margin-top: 0; + margin-bottom: -2px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.dropdown-submenu > a:after { + display: block; + float: right; + width: 0; + height: 0; + margin-top: 5px; + margin-right: -10px; + border-color: transparent; + border-left-color: #cccccc; + border-style: solid; + border-width: 1px; + content: " "; +} + +.dropdown-submenu:hover > a:after { + border-left-color: #bbbbbb; +} + +.dropdown-submenu.pull-left { + float: none; +} + +.dropdown-submenu.pull-left > .dropdown-menu { + left: -100%; + margin-left: 10px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.dropdown .dropdown-menu .nav-header { + padding-right: 16px; + padding-left: 16px; +} + +.typeahead { + z-index: 1051; + margin-top: 2px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0); +} + +.well-large { + padding: 24px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.well-small { + padding: 9px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.fade { + opacity: 0; + -webkit-transition: opacity 0.15s linear; + -moz-transition: opacity 0.15s linear; + -o-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} + +.fade.in { + opacity: 1; +} + +.collapse { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + -moz-transition: height 0.35s ease; + -o-transition: height 0.35s ease; + transition: height 0.35s ease; +} + +.collapse.in { + height: auto; +} + +.close { + float: right; + font-size: 18px; + font-weight: normal; + line-height: 20px; + color: #000000; + opacity: 0.2; + filter: alpha(opacity=20); +} + +.close:hover, +.close:focus { + color: #000000; + text-decoration: none; + cursor: pointer; +} + +button.close { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; +} + +.btn:hover:before, +.btn:hover:after { + color: #ffffff; +} + +.btn:before { + content: "< "; +} + +.btn:after { + content: " >"; +} + +.btn { + display: inline-block; + *display: inline; + padding: 0 10px; + margin-bottom: 20px; + *margin-left: 0.3em; + font-size: 18px; + line-height: 20px; + color: #000000; + text-align: center; + vertical-align: middle; + cursor: default; + background: #bbbbbb; + border: 0; + border-width: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + *zoom: 1; + -webkit-box-shadow: 10px 10px 0 #000000; + -moz-box-shadow: 10px 10px 0 #000000; + box-shadow: 10px 10px 0 #000000; +} + +.btn:first-child { + *margin-left: 0; +} + +.btn:hover, +.btn:focus { + color: #ffffff; + text-decoration: none; + background: #555555; + outline: 0; +} + +.btn:focus { + outline: thin solid #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +.btn.active, +.btn:active { + margin: 10px 0 10px 10px; + outline: 0; + -webkit-box-shadow: 0 0 0; + -moz-box-shadow: 0 0 0; + box-shadow: 0 0 0; +} + +.btn.disabled, +.btn[disabled] { + cursor: default; + background-image: none; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} + +.btn-large { + padding: 10px 10px; + font-size: 18px; + color: #000000; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-large [class^="icon-"], +.btn-large [class*=" icon-"] { + margin-top: 4px; +} + +.btn-small { + padding: 0; + font-size: 18px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-small [class^="icon-"], +.btn-small [class*=" icon-"] { + margin-top: 0; +} + +.btn-mini [class^="icon-"], +.btn-mini [class*=" icon-"] { + margin-top: -1px; +} + +.btn-mini { + padding: 0; + font-size: 18px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-block { + display: block; + width: 100%; + padding-right: 0; + padding-left: 0; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +.btn-block + .btn-block { + margin-top: 5px; +} + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} + +.btn-primary { + color: #000000; + background: #bbbbbb; +} + +.btn-warning { + *background-color: #f47a00; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-warning:hover, +.btn-warning:focus, +.btn-warning:active, +.btn-warning.active, +.btn-warning.disabled, +.btn-warning[disabled] { + color: #ffffff; +} + +.btn-danger { + *background-color: #ee5f5b; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-danger:hover, +.btn-danger:focus, +.btn-danger:active, +.btn-danger.active, +.btn-danger.disabled, +.btn-danger[disabled] { + color: #ffffff; +} + +.btn-success { + *background-color: #62c462; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-success:hover, +.btn-success:focus, +.btn-success:active, +.btn-success.active, +.btn-success.disabled, +.btn-success[disabled] { + color: #ffffff; +} + +.btn-info { + *background-color: #5bc0de; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-info:hover, +.btn-info:focus, +.btn-info:active, +.btn-info.active, +.btn-info.disabled, +.btn-info[disabled] { + color: #ffffff; +} + +.btn-inverse { + *background-color: #555555; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.btn-inverse:hover, +.btn-inverse:focus, +.btn-inverse:active, +.btn-inverse.active, +.btn-inverse.disabled, +.btn-inverse[disabled] { + color: #ffffff; +} + +button.btn, +input[type="submit"].btn { + *padding-top: 3px; + *padding-bottom: 3px; +} + +button.btn::-moz-focus-inner, +input[type="submit"].btn::-moz-focus-inner { + padding: 0; + border: 0; +} + +button.btn.btn-large, +input[type="submit"].btn.btn-large { + *padding-top: 7px; + *padding-bottom: 7px; +} + +button.btn.btn-small, +input[type="submit"].btn.btn-small { + *padding-top: 0; + *padding-bottom: 0; +} + +button.btn.btn-mini, +input[type="submit"].btn.btn-mini { + *padding-top: 0; + *padding-bottom: 0; +} + +.btn-link, +.btn-link:active, +.btn-link[disabled] { + background-color: transparent; + background-image: none; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} + +.btn-link { + color: #fefe54; + cursor: pointer; + border-color: transparent; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-link:hover, +.btn-link:focus { + color: #fefe54; + text-decoration: none; + background-color: #00aa00; +} + +.btn-link[disabled]:hover, +.btn-link[disabled]:focus { + color: #555555; + text-decoration: none; +} + +.btn-group { + position: relative; + display: inline-block; + *display: inline; + *margin-left: 0.3em; + font-size: 0; + white-space: nowrap; + vertical-align: middle; + *zoom: 1; +} + +.btn-group:first-child { + *margin-left: 0; +} + +.btn-group + .btn-group { + margin-left: 0; +} + +.btn-toolbar { + margin-top: 20px; + margin-bottom: 20px; + font-size: 0; +} + +.btn-toolbar > .btn + .btn, +.btn-toolbar > .btn-group + .btn, +.btn-toolbar > .btn + .btn-group { + margin-left: 5px; +} + +.btn-group > .btn { + position: relative; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-group > .btn + .btn { + margin-left: -1px; +} + +.btn-group > .btn, +.btn-group > .dropdown-menu, +.btn-group > .popover { + font-size: 18px; +} + +.btn-group > .btn-mini { + font-size: 18px; +} + +.btn-group > .btn-small { + font-size: 18px; +} + +.btn-group > .btn-large { + font-size: 18px; +} + +.btn-group > .btn:first-child { + margin-left: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-bottomleft: 0; + -moz-border-radius-topleft: 0; +} + +.btn-group > .btn:last-child, +.btn-group > .dropdown-toggle { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 0; +} + +.btn-group > .btn.large:first-child { + margin-left: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-bottomleft: 0; + -moz-border-radius-topleft: 0; +} + +.btn-group > .btn.large:last-child, +.btn-group > .large.dropdown-toggle { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 0; +} + +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; +} + +.btn-group > .btn + .dropdown-toggle { + *padding-top: 14px; + padding-right: 8px; + *padding-bottom: 14px; + padding-left: 8px; +} + +.btn-group > .btn-mini + .dropdown-toggle { + *padding-top: 2px; + padding-right: 5px; + *padding-bottom: 2px; + padding-left: 5px; +} + +.btn-group > .btn-small + .dropdown-toggle { + *padding-top: 5px; + *padding-bottom: 4px; +} + +.btn-group > .btn-large + .dropdown-toggle { + *padding-top: 7px; + padding-right: 12px; + *padding-bottom: 7px; + padding-left: 12px; +} + +.btn-group.open .dropdown-toggle { + background-image: none; +} + +.btn-group.open .btn.dropdown-toggle { + background-color: #aa5500; +} + +.btn-group.open .btn-primary.dropdown-toggle { + background-color: #fefe54; +} + +.btn-group.open .btn-warning.dropdown-toggle { + background-color: #a85400; +} + +.btn-group.open .btn-danger.dropdown-toggle { + background-color: #bd362f; +} + +.btn-group.open .btn-success.dropdown-toggle { + background-color: #51a351; +} + +.btn-group.open .btn-info.dropdown-toggle { + background-color: #2f96b4; +} + +.btn-group.open .btn-inverse.dropdown-toggle { + background-color: #555555; +} + +.btn .caret { + margin-top: 0; + margin-left: 0; +} + +.btn-large .caret { + margin-top: 0; +} + +.btn-large .caret { + border-top-width: 5px; + border-right-width: 5px; + border-left-width: 5px; +} + +.btn-mini .caret, +.btn-small .caret { + margin-top: 0; +} + +.dropup .btn-large .caret { + border-bottom-width: 5px; +} + +.btn-primary .caret, +.btn-warning .caret, +.btn-danger .caret, +.btn-info .caret, +.btn-success .caret, +.btn-inverse .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} + +.btn-group-vertical { + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; +} + +.btn-group-vertical > .btn { + display: block; + float: none; + max-width: 100%; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-group-vertical > .btn + .btn { + margin-top: -1px; + margin-left: 0; +} + +.btn-group-vertical > .btn:first-child { + -webkit-border-radius: 0 0px 0 0; + -moz-border-radius: 0 0px 0 0; + border-radius: 0 0px 0 0; +} + +.btn-group-vertical > .btn:last-child { + -webkit-border-radius: 0 0 0 0px; + -moz-border-radius: 0 0 0 0px; + border-radius: 0 0 0 0px; +} + +.btn-group-vertical > .btn-large:first-child { + -webkit-border-radius: 0 0px 0 0; + -moz-border-radius: 0 0px 0 0; + border-radius: 0 0px 0 0; +} + +.btn-group-vertical > .btn-large:last-child { + -webkit-border-radius: 0 0 0 0px; + -moz-border-radius: 0 0 0 0px; + border-radius: 0 0 0 0px; +} + +.alert { + padding: 8px 35px 8px 14px; + margin-bottom: 20px; + text-shadow: 0; + background-color: #00aaaa; + border: 1px solid #00aaaa; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.alert, +.alert h4 { + color: #ffffff; +} + +.alert h4 { + margin: 0; +} + +.alert .close { + position: relative; + top: -2px; + right: -21px; + line-height: 20px; +} + +.alert-success { + color: #00aa00; + background-color: #000000; + border-color: #000000; +} + +.alert-success h4 { + color: #00aa00; +} + +.alert-danger, +.alert-error { + color: #ffffff; + background-color: #aa0000; + border-color: #aa0000; +} + +.alert-danger h4, +.alert-error h4 { + color: #ffffff; +} + +.alert-info { + color: #000000; + background-color: #000000; + border-color: #000000; +} + +.alert-info h4 { + color: #000000; +} + +.alert-block { + padding-top: 14px; + padding-bottom: 14px; +} + +.alert-block > p, +.alert-block > ul { + margin-bottom: 0; +} + +.alert-block p + p { + margin-top: 5px; +} + +.nav { + margin-bottom: 20px; + margin-left: 0; + list-style: none; + background: #bbbbbb; +} + +.nav > li > a { + display: block; +} + +.nav > li > a::first-letter { + color: #aa0000; +} + +.nav > li > a:hover, +.nav > li > a:focus { + color: #bbbbbb; + text-decoration: none; + background-color: #000000; +} + +.nav > li > a > img { + max-width: none; +} + +.nav > .pull-right { + float: right; +} + +.nav-header { + display: block; + font-weight: normal; + line-height: 20px; + color: #000000; + text-transform: uppercase; +} + +.nav li + .nav-header { + line-height: 20px; +} + +.nav-list { + display: block; + padding: 10px 15px; + margin: 10px 5px; + margin-left: -5px; + border: 2px solid #000000; + -webkit-box-shadow: + 0 0 0 5px, + 11px 13px 0 4px black; + -moz-box-shadow: + 0 0 0 5px, + 11px 13px 0 4px black; + box-shadow: + 0 0 0 5px, + 11px 13px 0 4px black; +} + +.nav-list > li > a, +.nav-list .nav-header { + margin-right: -10px; + margin-left: -10px; +} + +.nav-list > li > a { + padding: 0 8px; + color: #000000; +} + +.nav-list > .active > a, +.nav-list > .active > a:hover, +.nav-list > .active > a:focus { + color: #ffffff; + background-color: #00aaaa; +} + +.nav-list [class^="icon-"], +.nav-list [class*=" icon-"] { + margin-right: 0; +} + +.nav-list .divider { + *width: 100%; + height: 1px; + margin: 9px 1px; + *margin: -5px 0 5px; + overflow: hidden; + background-color: #000000; + border-bottom: 1px solid #000000; +} + +.nav-tabs, +.nav-pills { + *zoom: 1; +} + +.nav-tabs:before, +.nav-pills:before, +.nav-tabs:after, +.nav-pills:after { + display: table; + line-height: 0; + content: ""; +} + +.nav-tabs:after, +.nav-pills:after { + clear: both; +} + +.nav-tabs > li, +.nav-pills > li { + float: left; +} + +.nav-tabs > li > a, +.nav-pills > li > a { + padding-right: 8px; + padding-left: 8px; + margin-right: 0; + line-height: 20px; + color: #000000; +} + +.nav-tabs { + border-bottom: 0.5em solid #bbbbbb; +} + +.nav-tabs > li { + margin-bottom: -1px; +} + +.nav-tabs > li > a { + line-height: 20px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.nav-tabs > li > a:hover, +.nav-tabs > li > a:focus { + background: #000000; +} + +.nav-tabs > .active > a, +.nav-tabs > .active > a:hover, +.nav-tabs > .active > a:focus { + color: #bbbbbb; + cursor: default; + background-color: #000084; + border: 0; + border-bottom-color: transparent; +} + +.nav-pills > li > a { + padding-top: 0; + padding-bottom: 0; + margin-top: 0; + margin-bottom: 0; + line-height: 20px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.nav-pills > .active > a, +.nav-pills > .active > a:hover, +.nav-pills > .active > a:focus { + color: #bbbbbb; + background-color: #fefe54; +} + +.nav-stacked > li { + float: none; +} + +.nav-stacked > li > a { + margin-right: 0; +} + +.nav-tabs.nav-stacked { + border-bottom: 0; +} + +.nav-tabs.nav-stacked > li > a { + border: 1px solid #ddd; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.nav-tabs.nav-stacked > li:first-child > a { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-topleft: 0; +} + +.nav-tabs.nav-stacked > li:last-child > a { + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -moz-border-radius-bottomright: 0; + -moz-border-radius-bottomleft: 0; +} + +.nav-tabs.nav-stacked > li > a:hover, +.nav-tabs.nav-stacked > li > a:focus { + z-index: 2; + border-color: #ddd; +} + +.nav-pills.nav-stacked > li > a { + margin-bottom: 3px; +} + +.nav-pills.nav-stacked > li:last-child > a { + margin-bottom: 1px; +} + +.nav-tabs .dropdown-menu { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.nav-pills .dropdown-menu { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.nav .dropdown-toggle .caret { + margin-top: 6px; + border-top-color: #fefe54; + border-bottom-color: #fefe54; +} + +.nav .dropdown-toggle:hover .caret, +.nav .dropdown-toggle:focus .caret { + border-top-color: #fefe54; + border-bottom-color: #fefe54; +} + +/* move down carets for tabs */ + +.nav .active .dropdown-toggle .caret { + border-top-color: #fff; + border-bottom-color: #fff; +} + +.nav-tabs .active .dropdown-toggle .caret { + border-top-color: #bbbbbb; + border-bottom-color: #bbbbbb; +} + +.nav > .dropdown.active > a:hover, +.nav > .dropdown.active > a:focus { + cursor: pointer; +} + +.nav-tabs .open .dropdown-toggle, +.nav-pills .open .dropdown-toggle, +.nav > li.dropdown.open.active > a:hover, +.nav > li.dropdown.open.active > a:focus { + color: #ffffff; + background-color: #bbbbbb; + border-color: #bbbbbb; +} + +.nav li.dropdown.open .caret, +.nav li.dropdown.open.active .caret, +.nav li.dropdown.open a:hover .caret, +.nav li.dropdown.open a:focus .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; + opacity: 1; + filter: alpha(opacity=100); +} + +.tabs-stacked .open > a:hover, +.tabs-stacked .open > a:focus { + border-color: #bbbbbb; +} + +.tabbable { + *zoom: 1; +} + +.tabbable:before, +.tabbable:after { + display: table; + line-height: 0; + content: ""; +} + +.tabbable:after { + clear: both; +} + +.tab-content { + overflow: auto; +} + +.tabs-below > .nav-tabs, +.tabs-right > .nav-tabs, +.tabs-left > .nav-tabs { + border-bottom: 0; +} + +.tab-content > .tab-pane, +.pill-content > .pill-pane { + display: none; +} + +.tab-content > .active, +.pill-content > .active { + display: block; +} + +.tabs-below > .nav-tabs { + border-top: 1px solid #ddd; +} + +.tabs-below > .nav-tabs > li { + margin-top: -1px; + margin-bottom: 0; +} + +.tabs-below > .nav-tabs > li > a { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.tabs-below > .nav-tabs > li > a:hover, +.tabs-below > .nav-tabs > li > a:focus { + border-top-color: #ddd; + border-bottom-color: transparent; +} + +.tabs-below > .nav-tabs > .active > a, +.tabs-below > .nav-tabs > .active > a:hover, +.tabs-below > .nav-tabs > .active > a:focus { + border-color: transparent #ddd #ddd #ddd; +} + +.tabs-left > .nav-tabs > li, +.tabs-right > .nav-tabs > li { + float: none; +} + +.tabs-left > .nav-tabs > li > a, +.tabs-right > .nav-tabs > li > a { + min-width: 74px; + margin-right: 0; + margin-bottom: 0; +} + +.tabs-left > .nav-tabs { + float: left; + margin-right: 18px; + border-right: 1px solid #ddd; +} + +.tabs-left > .nav-tabs > li > a { + margin-right: -1px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.tabs-left > .nav-tabs > li > a:hover, +.tabs-left > .nav-tabs > li > a:focus { + border-color: #bbbbbb #dddddd #bbbbbb #bbbbbb; +} + +.tabs-left > .nav-tabs .active > a, +.tabs-left > .nav-tabs .active > a:hover, +.tabs-left > .nav-tabs .active > a:focus { + border-color: #ddd transparent #ddd #ddd; + *border-right-color: #ffffff; +} + +.tabs-right > .nav-tabs { + float: right; + margin-left: 19px; + border-left: 1px solid #ddd; +} + +.tabs-right > .nav-tabs > li > a { + margin-left: -1px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.tabs-right > .nav-tabs > li > a:hover, +.tabs-right > .nav-tabs > li > a:focus { + border-color: #bbbbbb #bbbbbb #bbbbbb #dddddd; +} + +.tabs-right > .nav-tabs .active > a, +.tabs-right > .nav-tabs .active > a:hover, +.tabs-right > .nav-tabs .active > a:focus { + border-color: #ddd #ddd #ddd transparent; + *border-left-color: #ffffff; +} + +.nav > .disabled > a { + color: #bbbbbb; +} + +.nav > .disabled > a:hover, +.nav > .disabled > a:focus { + text-decoration: none; + cursor: default; + background-color: transparent; +} + +.navbar { + *position: relative; + *z-index: 2; + margin-bottom: 20px; + overflow: visible; +} + +.navbar-inner { + min-height: 20px; + padding-right: 12.4px; + padding-left: 12.4px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + *zoom: 1; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} + +.navbar-inner:before, +.navbar-inner:after { + display: table; + line-height: 0; + content: ""; +} + +.navbar-inner:after { + clear: both; +} + +.navbar .container { + width: auto; +} + +.nav-collapse.collapse { + height: auto; + overflow: visible; +} + +.navbar .brand { + display: block; + float: left; + padding: 0 10px; + margin-left: -10px; + font-size: 18px; + color: #000084; + text-shadow: 0; +} + +.navbar .brand:hover, +.navbar .brand:focus { + text-decoration: none; +} + +.navbar-text { + margin-bottom: 0; + line-height: 20px; + color: #000000; +} + +.navbar-link { + color: #000000; +} + +.navbar-link:hover, +.navbar-link:focus { + color: #555555; +} + +.navbar .divider-vertical { + height: 20px; + margin: 0 12.4px; + border-right: 1px solid #ffffff; + border-left: 1px solid #bbbbbb; +} + +.navbar .btn, +.navbar .btn-group { + margin-top: -5px; +} + +.navbar .btn-group .btn, +.navbar .input-prepend .btn, +.navbar .input-append .btn, +.navbar .input-prepend .btn-group, +.navbar .input-append .btn-group { + margin-top: 0; +} + +.navbar-form { + margin-bottom: 0; + *zoom: 1; +} + +.navbar-form:before, +.navbar-form:after { + display: table; + line-height: 0; + content: ""; +} + +.navbar-form:after { + clear: both; +} + +.navbar-form input, +.navbar-form select, +.navbar-form .radio, +.navbar-form .checkbox { + margin-top: -5px; +} + +.navbar-form input, +.navbar-form select, +.navbar-form .btn { + display: inline-block; + margin-bottom: 0; + -webkit-box-shadow: 0 0; + -moz-box-shadow: 0 0; + box-shadow: 0 0; +} + +.navbar-form input[type="image"], +.navbar-form input[type="checkbox"], +.navbar-form input[type="radio"] { + margin-top: 3px; +} + +.navbar-form .input-append, +.navbar-form .input-prepend { + margin-top: 5px; + white-space: nowrap; +} + +.navbar-form .input-append input, +.navbar-form .input-prepend input { + margin-top: 0; +} + +.navbar-search { + position: relative; + float: left; + margin-top: -5px; + margin-bottom: 0; +} + +.navbar-search .search-query { + padding: 4px 12.4px; + margin-bottom: 0; + font-family: DOS, Monaco, Menlo, Consolas, "Courier New", monospace; + font-size: 18px; + font-weight: normal; + line-height: 1; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.navbar-static-top { + position: static; + margin-bottom: 0; +} + +.navbar-static-top .navbar-inner { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.navbar-fixed-top, +.navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030; + margin-bottom: 0; +} + +.navbar-fixed-top .navbar-inner, +.navbar-static-top .navbar-inner { + border-width: 0; +} + +.navbar-fixed-bottom .navbar-inner { + border-width: 0; +} + +.navbar-fixed-top .navbar-inner, +.navbar-fixed-bottom .navbar-inner { + padding-right: 0; + padding-left: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.navbar-static-top .container, +.navbar-fixed-top .container, +.navbar-fixed-bottom .container { + width: 944px; +} + +.navbar-fixed-top { + top: 0; +} + +.navbar-fixed-top .navbar-inner, +.navbar-static-top .navbar-inner { + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} + +.navbar-fixed-bottom { + bottom: 0; +} + +.navbar-fixed-bottom .navbar-inner { + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} + +.navbar .nav { + position: relative; + left: 0; + display: block; + float: left; + margin: 0 20px 0 0; +} + +.navbar .nav.pull-right { + float: right; + margin-right: 0; +} + +.navbar .nav > li { + float: left; + padding-left: 0; +} + +.navbar .nav > li > a { + float: none; + padding: 0 10px; + color: #000000; + text-decoration: none; + text-shadow: 0; +} + +.navbar .nav .dropdown-toggle .caret { + margin-top: 0; +} + +.navbar .nav > li > a:focus, +.navbar .nav > li > a:hover { + color: #555555; + text-decoration: none; + background-color: transparent; +} + +.navbar .nav > .active > a, +.navbar .nav > .active > a:hover, +.navbar .nav > .active > a:focus { + color: #bbbbbb; + text-decoration: none; + background-color: #bbbbbb; +} + +.navbar .btn-navbar { + display: none; + float: right; + padding: 0 12.4px; + margin-right: 12.4px; + margin-left: 12.4px; + *background-color: #aeaeae; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.navbar .btn-navbar:hover, +.navbar .btn-navbar:focus, +.navbar .btn-navbar:active, +.navbar .btn-navbar.active, +.navbar .btn-navbar.disabled, +.navbar .btn-navbar[disabled] { + color: #ffffff; +} + +.navbar .btn-navbar .icon-bar { + display: block; + width: 18px; + height: 2px; + background-color: #f5f5f5; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-navbar .icon-bar + .icon-bar { + margin-top: 3px; +} + +.navbar .nav > li > .dropdown-menu:before { + position: absolute; + top: -7px; + left: 9px; + display: inline-block; + border-right: 7px solid transparent; + border-bottom: 7px solid #ccc; + border-left: 7px solid transparent; + border-bottom-color: rgba(0, 0, 0, 0.2); + content: ""; +} + +.navbar .nav > li > .dropdown-menu:after { + position: absolute; + top: -6px; + left: 10px; + display: inline-block; + border-right: 6px solid transparent; + border-bottom: 6px solid #ffffff; + border-left: 6px solid transparent; + content: ""; +} + +.navbar-fixed-bottom .nav > li > .dropdown-menu:before { + top: auto; + bottom: -7px; + border-top: 7px solid #ccc; + border-bottom: 0; + border-top-color: rgba(0, 0, 0, 0.2); +} + +.navbar-fixed-bottom .nav > li > .dropdown-menu:after { + top: auto; + bottom: -6px; + border-top: 6px solid #ffffff; + border-bottom: 0; +} + +.navbar .nav li.dropdown > a:hover .caret, +.navbar .nav li.dropdown > a:focus .caret { + border-top-color: #555555; + border-bottom-color: #555555; +} + +.navbar .nav li.dropdown.open > .dropdown-toggle, +.navbar .nav li.dropdown.active > .dropdown-toggle, +.navbar .nav li.dropdown.open.active > .dropdown-toggle { + color: #bbbbbb; + background-color: #bbbbbb; +} + +.navbar .nav li.dropdown > .dropdown-toggle .caret { + border-top-color: #000000; + border-bottom-color: #000000; +} + +.navbar .nav li.dropdown.open > .dropdown-toggle .caret, +.navbar .nav li.dropdown.active > .dropdown-toggle .caret, +.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret { + border-top-color: #bbbbbb; + border-bottom-color: #bbbbbb; +} + +.navbar .pull-right > li > .dropdown-menu, +.navbar .nav > li > .dropdown-menu.pull-right { + right: 0; + left: auto; +} + +.navbar .pull-right > li > .dropdown-menu:before, +.navbar .nav > li > .dropdown-menu.pull-right:before { + right: 12px; + left: auto; +} + +.navbar .pull-right > li > .dropdown-menu:after, +.navbar .nav > li > .dropdown-menu.pull-right:after { + right: 13px; + left: auto; +} + +.navbar .pull-right > li > .dropdown-menu .dropdown-menu, +.navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu { + right: 100%; + left: auto; + margin-right: -1px; + margin-left: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.navbar-inverse .navbar-inner { + background: #bbbbbb; +} + +.navbar-inverse .brand, +.navbar-inverse .nav > li > a { + color: #000000; + text-shadow: 0; + background: #bbbbbb; +} + +.navbar-inverse .brand:hover, +.navbar-inverse .nav > li > a:hover, +.navbar-inverse .brand:focus, +.navbar-inverse .nav > li > a:focus { + color: #bbbbbb; + background: #000000; +} + +.navbar-inverse .brand { + color: #000084; +} + +.navbar-inverse .navbar-text { + color: #000000; +} + +.navbar-inverse .nav > li > a:focus, +.navbar-inverse .nav > li > a:hover { + color: #bbbbbb; + background: #000000; +} + +.navbar-inverse .nav .active > a, +.navbar-inverse .nav .active > a:hover, +.navbar-inverse .nav .active > a:focus { + color: #bbbbbb; + text-decoration: none; + background: #000000; +} + +.navbar-inverse .navbar-link { + color: #000000; +} + +.navbar-inverse .navbar-link:hover, +.navbar-inverse .navbar-link:focus { + color: #ffffff; +} + +.navbar-inverse .divider-vertical { + border-right-color: #000000; + border-left-color: #000000; +} + +.navbar-inverse .nav li.dropdown.open > .dropdown-toggle, +.navbar-inverse .nav li.dropdown.active > .dropdown-toggle, +.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle { + color: #ffffff; + background-color: #000000; +} + +.navbar-inverse .nav li.dropdown > a:hover .caret, +.navbar-inverse .nav li.dropdown > a:focus .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} + +.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret { + border-top-color: #000000; + border-bottom-color: #000000; +} + +.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret, +.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret, +.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} + +.navbar-inverse .navbar-search .search-query { + color: #ffffff; + background-color: #404040; + border-color: #000000; + -webkit-transition: none; + -moz-transition: none; + -o-transition: none; + transition: none; +} + +.navbar-inverse .navbar-search .search-query:-moz-placeholder { + color: #cccccc; +} + +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder { + color: #cccccc; +} + +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder { + color: #cccccc; +} + +.navbar-inverse .navbar-search .search-query:focus, +.navbar-inverse .navbar-search .search-query.focused { + padding: 0 20px; + color: #555555; + text-shadow: 0; + background-color: #ffffff; + border: 0; + outline: 0; +} + +.navbar-inverse .btn-navbar { + *background-color: #000000; + /* Darken IE7 buttons by default so they stand out more given they won't have borders */ + + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} + +.navbar-inverse .btn-navbar:hover, +.navbar-inverse .btn-navbar:focus, +.navbar-inverse .btn-navbar:active, +.navbar-inverse .btn-navbar.active, +.navbar-inverse .btn-navbar.disabled, +.navbar-inverse .btn-navbar[disabled] { + color: #ffffff; +} + +.breadcrumb:before { + content: ">>"; +} + +.breadcrumb { + padding: 0 20px; + margin: 0 0 20px; + list-style: none; + background-color: #000000; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.breadcrumb > li { + display: inline-block; + *display: inline; + text-shadow: 0; + *zoom: 1; +} + +.breadcrumb > li > .divider { + padding: 0 10px; + color: #bbbbbb; +} + +.breadcrumb > .active { + color: #bbbbbb; +} + +.pagination { + margin: 20px 0; +} + +.pagination ul { + display: inline-block; + *display: inline; + margin-bottom: 0; + margin-left: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + *zoom: 1; + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.pagination ul > li { + display: inline; +} + +.pagination ul > li > a, +.pagination ul > li > span { + float: left; + padding: 20px 10px; + line-height: 20px; + text-decoration: none; + background-color: #00aa00; + border: 0; + border-left-width: 0; +} + +.pagination ul > li > a:hover, +.pagination ul > li > a:focus, +.pagination ul > .active > a, +.pagination ul > .active > span { + background-color: #f5f5f5; +} + +.pagination ul > .active > a, +.pagination ul > .active > span { + color: #bbbbbb; + cursor: default; +} + +.pagination ul > .disabled > span, +.pagination ul > .disabled > a, +.pagination ul > .disabled > a:hover, +.pagination ul > .disabled > a:focus { + color: #bbbbbb; + cursor: default; + background-color: transparent; +} + +.pagination ul > li:first-child > a, +.pagination ul > li:first-child > span { + border-left-width: 1px; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-bottomleft: 0; + -moz-border-radius-topleft: 0; +} + +.pagination ul > li:last-child > a, +.pagination ul > li:last-child > span { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 0; +} + +.pagination-centered { + text-align: center; +} + +.pagination-right { + text-align: right; +} + +.pagination-large ul > li > a, +.pagination-large ul > li > span { + padding: 18px; + font-size: 18px; +} + +.pagination-large ul > li:first-child > a, +.pagination-large ul > li:first-child > span { + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-bottomleft: 0; + -moz-border-radius-topleft: 0; +} + +.pagination-large ul > li:last-child > a, +.pagination-large ul > li:last-child > span { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 0; +} + +.pagination-mini ul > li:first-child > a, +.pagination-small ul > li:first-child > a, +.pagination-mini ul > li:first-child > span, +.pagination-small ul > li:first-child > span { + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-bottomleft: 0; + -moz-border-radius-topleft: 0; +} + +.pagination-mini ul > li:last-child > a, +.pagination-small ul > li:last-child > a, +.pagination-mini ul > li:last-child > span, +.pagination-small ul > li:last-child > span { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 0; +} + +.pagination-small ul > li > a, +.pagination-small ul > li > span { + padding: 0; + font-size: 18px; +} + +.pagination-mini ul > li > a, +.pagination-mini ul > li > span { + padding: 0; + font-size: 18px; +} + +.pager { + margin: 20px 0; + text-align: center; + list-style: none; + *zoom: 1; +} + +.pager:before, +.pager:after { + display: table; + line-height: 0; + content: ""; +} + +.pager:after { + clear: both; +} + +.pager li { + display: inline; +} + +.pager li > a, +.pager li > span { + display: inline-block; + padding: 0 20px; + background-color: #555555; +} + +.pager li > a:hover, +.pager li > a:focus { + text-decoration: none; +} + +.pager .next > a, +.pager .next > span { + float: right; +} + +.pager .previous > a, +.pager .previous > span { + float: left; +} + +.pager .disabled > a, +.pager .disabled > a:hover, +.pager .disabled > a:focus, +.pager .disabled > span { + color: #bbbbbb; + cursor: default; + background-color: #555555; +} + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000000; +} + +.modal-backdrop.fade { + opacity: 0; +} + +.modal-backdrop, +.modal-backdrop.fade.in { + opacity: 0.8; + filter: alpha(opacity=80); +} + +.modal { + position: fixed; + top: 10%; + left: 50%; + z-index: 1050; + width: 560px; + margin-left: -280px; + background-color: #ffffff; + border: 1px solid #999; + border: 1px solid rgba(0, 0, 0, 0.3); + *border: 1px solid #999; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + outline: none; + -webkit-background-clip: padding-box; + -moz-background-clip: padding-box; + background-clip: padding-box; +} + +.modal.fade { + top: -25%; +} + +.modal.fade.in { + top: 10%; +} + +.modal-header { + padding: 9px 15px; + border-bottom: 1px solid #eee; +} + +.modal-header .close { + margin-top: 2px; +} + +.modal-header h3 { + margin: 0; + line-height: 30px; +} + +.modal-body { + position: relative; + max-height: 400px; + padding: 15px; + overflow-y: auto; +} + +.modal-form { + margin-bottom: 0; +} + +.modal-footer { + padding: 14px 15px 15px; + margin-bottom: 0; + text-align: right; + background-color: #f5f5f5; + border-top: 1px solid #ddd; + *zoom: 1; +} + +.modal-footer:before, +.modal-footer:after { + display: table; + line-height: 0; + content: ""; +} + +.modal-footer:after { + clear: both; +} + +.modal-footer .btn + .btn { + margin-bottom: 0; + margin-left: 5px; +} + +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; +} + +.modal-footer .btn-block + .btn-block { + margin-left: 0; +} + +.tooltip { + position: absolute; + z-index: 1030; + display: block; + font-size: 18px; + line-height: 1; + opacity: 0; + filter: alpha(opacity=0); + visibility: visible; +} + +.tooltip.in { + opacity: 0.8; + filter: alpha(opacity=80); +} + +.tooltip.top { + padding: 9px 0 9px; + margin-top: -3px; +} + +.tooltip.right { + padding: 0 4px 0 4px; + margin-left: 3px; +} + +.tooltip.bottom { + padding: 9px 0 9px; + margin-top: 3px; +} + +.tooltip.left { + padding: 0 4px 0 4px; + margin-left: -3px; +} + +.tooltip-inner { + max-width: 310px; + padding: 9px 4px 9px 4px; + color: #ffffff; + text-align: center; + text-decoration: none; + background-color: #000000; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} + +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-top-color: #000000; + border-width: 5px 5px 0; +} + +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-right-color: #000000; + border-width: 5px 5px 5px 0; +} + +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-left-color: #000000; + border-width: 5px 0 5px 5px; +} + +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-bottom-color: #000000; + border-width: 0 5px 5px; +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1010; + display: none; + max-width: 496px; + padding: 1px; + text-align: left; + white-space: normal; + background-color: #ffffff; + -webkit-background-clip: padding-box; + -moz-background-clip: padding; + background-clip: padding-box; +} + +.popover.top { + margin-top: -10px; +} + +.popover.right { + margin-left: 10px; +} + +.popover.bottom { + margin-top: 10px; +} + +.popover.left { + margin-left: -10px; +} + +.popover-title { + padding: 8px 14px; + margin: 0; + font-size: 14px; + font-weight: normal; + line-height: 18px; + background-color: #ffffff; + border-bottom: 1px solid #f2f2f2; +} + +.popover-title:empty { + display: none; +} + +.popover-content { + padding: 9px 14px; +} + +.popover .arrow, +.popover .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} + +.popover .arrow { + border-width: 11px; +} + +.popover .arrow:after { + border-width: 10px; + content: ""; +} + +.popover.top .arrow { + bottom: -11px; + left: 50%; + margin-left: -11px; + border-top-color: #999; + border-top-color: rgba(0, 0, 0, 0.25); + border-bottom-width: 0; +} + +.popover.top .arrow:after { + bottom: 1px; + margin-left: -10px; + border-top-color: #ffffff; + border-bottom-width: 0; +} + +.popover.right .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-right-color: #999; + border-right-color: rgba(0, 0, 0, 0.25); + border-left-width: 0; +} + +.popover.right .arrow:after { + bottom: -10px; + left: 1px; + border-right-color: #ffffff; + border-left-width: 0; +} + +.popover.bottom .arrow { + top: -11px; + left: 50%; + margin-left: -11px; + border-bottom-color: #999; + border-bottom-color: rgba(0, 0, 0, 0.25); + border-top-width: 0; +} + +.popover.bottom .arrow:after { + top: 1px; + margin-left: -10px; + border-bottom-color: #ffffff; + border-top-width: 0; +} + +.popover.left .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-left-color: #999; + border-left-color: rgba(0, 0, 0, 0.25); + border-right-width: 0; +} + +.popover.left .arrow:after { + right: 1px; + bottom: -10px; + border-left-color: #ffffff; + border-right-width: 0; +} + +.thumbnails { + margin-left: -16px; + list-style: none; + *zoom: 1; +} + +.thumbnails:before, +.thumbnails:after { + display: table; + line-height: 0; + content: ""; +} + +.thumbnails:after { + clear: both; +} + +.row-fluid .thumbnails { + margin-left: 0; +} + +.thumbnails > li { + float: left; + margin-bottom: 20px; + margin-left: 16px; +} + +.thumbnail { + display: block; + padding: 3px 6px; + margin: 4px 3px; + line-height: 20px; + border: 1px solid #ddd; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} + +a.thumbnail:hover, +a.thumbnail:focus { + border-color: #fefe54; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} + +.thumbnail > img { + display: block; + max-width: 100%; + margin-right: auto; + margin-left: auto; +} + +.thumbnail .caption { + padding: 9px; + color: #bbbbbb; +} + +.media, +.media-body { + overflow: hidden; + *overflow: visible; + zoom: 1; +} + +.media, +.media .media { + margin-top: 15px; +} + +.media:first-child { + margin-top: 0; +} + +.media-object { + display: block; +} + +.media-heading { + margin: 0 0 5px; +} + +.media > .pull-left { + margin-right: 10px; +} + +.media > .pull-right { + margin-left: 10px; +} + +.media-list { + margin-left: 0; + list-style: none; +} + +.label, +.badge { + display: inline-block; + padding: 0 12.4px; + font-size: 18px; + line-height: 20px; + color: #ffffff; + white-space: nowrap; + vertical-align: baseline; + background-color: #555555; +} + +.badge { + padding-right: 12.4px; + padding-left: 12.4px; +} + +.label:empty, +.badge:empty { + display: none; +} + +a.label:hover, +a.label:focus, +a.badge:hover, +a.badge:focus { + color: #ffffff; + text-decoration: none; + cursor: pointer; +} + +.label-important, +.badge-important { + background-color: #aa0000; +} + +.label-important[href], +.badge-important[href] { + background-color: #aa0000; +} + +.label-warning, +.badge-warning { + background-color: #a85400; +} + +.label-warning[href], +.badge-warning[href] { + background-color: #a85400; +} + +.label-success, +.badge-success { + background-color: #00aa00; +} + +.label-success[href], +.badge-success[href] { + background-color: #00aa00; +} + +.label-info, +.badge-info { + background-color: #000000; +} + +.label-info[href], +.badge-info[href] { + background-color: #000000; +} + +.label-inverse, +.badge-inverse { + background-color: #555555; +} + +.label-inverse[href], +.badge-inverse[href] { + background-color: #555555; +} + +.btn .label, +.btn .badge { + position: relative; + top: -1px; +} + +.btn-mini .label, +.btn-mini .badge { + top: 0; +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +@-moz-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +@-ms-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +@-o-keyframes progress-bar-stripes { + from { + background-position: 0 0; + } + to { + background-position: 40px 0; + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +.progress { + height: 20px; + margin-bottom: 20px; + overflow: hidden; + background-color: #f7f7f7; + background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: -webkit-gradient( + linear, + 0 0, + 0 100%, + from(#f5f5f5), + to(#f9f9f9) + ); + background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9); + background-repeat: repeat-x; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0); +} + +.progress .bar { + float: left; + width: 0; + height: 100%; + font-size: 12px; + color: #ffffff; + text-align: center; + text-shadow: 0; + background-color: #0e90d2; + background-image: -moz-linear-gradient(top, #149bdf, #0480be); + background-image: -webkit-gradient( + linear, + 0 0, + 0 100%, + from(#149bdf), + to(#0480be) + ); + background-image: -webkit-linear-gradient(top, #149bdf, #0480be); + background-image: -o-linear-gradient(top, #149bdf, #0480be); + background-image: linear-gradient(to bottom, #149bdf, #0480be); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0); + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + -webkit-transition: width 0.6s ease; + -moz-transition: width 0.6s ease; + -o-transition: width 0.6s ease; + transition: width 0.6s ease; +} + +.progress-striped .bar { + background-color: #149bdf; + background-image: -webkit-gradient( + linear, + 0 100%, + 100% 0, + color-stop(0.25, rgba(255, 255, 255, 0.15)), + color-stop(0.25, transparent), + color-stop(0.5, transparent), + color-stop(0.5, rgba(255, 255, 255, 0.15)), + color-stop(0.75, rgba(255, 255, 255, 0.15)), + color-stop(0.75, transparent), + to(transparent) + ); + background-image: -webkit-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -moz-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -o-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + -webkit-background-size: 40px 40px; + -moz-background-size: 40px 40px; + -o-background-size: 40px 40px; + background-size: 40px 40px; +} + +.progress.active .bar { + -webkit-animation: progress-bar-stripes 2s linear infinite; + -moz-animation: progress-bar-stripes 2s linear infinite; + -ms-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; +} + +.progress-danger .bar, +.progress .bar-danger { + background-color: #dd514c; + background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35); + background-image: -webkit-gradient( + linear, + 0 0, + 0 100%, + from(#ee5f5b), + to(#c43c35) + ); + background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35); + background-image: -o-linear-gradient(top, #ee5f5b, #c43c35); + background-image: linear-gradient(to bottom, #ee5f5b, #c43c35); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0); +} + +.progress-danger.progress-striped .bar, +.progress-striped .bar-danger { + background-color: #ee5f5b; + background-image: -webkit-gradient( + linear, + 0 100%, + 100% 0, + color-stop(0.25, rgba(255, 255, 255, 0.15)), + color-stop(0.25, transparent), + color-stop(0.5, transparent), + color-stop(0.5, rgba(255, 255, 255, 0.15)), + color-stop(0.75, rgba(255, 255, 255, 0.15)), + color-stop(0.75, transparent), + to(transparent) + ); + background-image: -webkit-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -moz-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -o-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); +} + +.progress-success .bar, +.progress .bar-success { + background-color: #5eb95e; + background-image: -moz-linear-gradient(top, #62c462, #57a957); + background-image: -webkit-gradient( + linear, + 0 0, + 0 100%, + from(#62c462), + to(#57a957) + ); + background-image: -webkit-linear-gradient(top, #62c462, #57a957); + background-image: -o-linear-gradient(top, #62c462, #57a957); + background-image: linear-gradient(to bottom, #62c462, #57a957); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0); +} + +.progress-success.progress-striped .bar, +.progress-striped .bar-success { + background-color: #62c462; + background-image: -webkit-gradient( + linear, + 0 100%, + 100% 0, + color-stop(0.25, rgba(255, 255, 255, 0.15)), + color-stop(0.25, transparent), + color-stop(0.5, transparent), + color-stop(0.5, rgba(255, 255, 255, 0.15)), + color-stop(0.75, rgba(255, 255, 255, 0.15)), + color-stop(0.75, transparent), + to(transparent) + ); + background-image: -webkit-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -moz-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -o-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); +} + +.progress-info .bar, +.progress .bar-info { + background-color: #4bb1cf; + background-image: -moz-linear-gradient(top, #5bc0de, #339bb9); + background-image: -webkit-gradient( + linear, + 0 0, + 0 100%, + from(#5bc0de), + to(#339bb9) + ); + background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9); + background-image: -o-linear-gradient(top, #5bc0de, #339bb9); + background-image: linear-gradient(to bottom, #5bc0de, #339bb9); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0); +} + +.progress-info.progress-striped .bar, +.progress-striped .bar-info { + background-color: #5bc0de; + background-image: -webkit-gradient( + linear, + 0 100%, + 100% 0, + color-stop(0.25, rgba(255, 255, 255, 0.15)), + color-stop(0.25, transparent), + color-stop(0.5, transparent), + color-stop(0.5, rgba(255, 255, 255, 0.15)), + color-stop(0.75, rgba(255, 255, 255, 0.15)), + color-stop(0.75, transparent), + to(transparent) + ); + background-image: -webkit-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -moz-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -o-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); +} + +.progress-warning .bar, +.progress .bar-warning { + background-color: #d66b00; + background-image: -moz-linear-gradient(top, #f47a00, #a85400); + background-image: -webkit-gradient( + linear, + 0 0, + 0 100%, + from(#f47a00), + to(#a85400) + ); + background-image: -webkit-linear-gradient(top, #f47a00, #a85400); + background-image: -o-linear-gradient(top, #f47a00, #a85400); + background-image: linear-gradient(to bottom, #f47a00, #a85400); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff47a00', endColorstr='#ffa85400', GradientType=0); +} + +.progress-warning.progress-striped .bar, +.progress-striped .bar-warning { + background-color: #f47a00; + background-image: -webkit-gradient( + linear, + 0 100%, + 100% 0, + color-stop(0.25, rgba(255, 255, 255, 0.15)), + color-stop(0.25, transparent), + color-stop(0.5, transparent), + color-stop(0.5, rgba(255, 255, 255, 0.15)), + color-stop(0.75, rgba(255, 255, 255, 0.15)), + color-stop(0.75, transparent), + to(transparent) + ); + background-image: -webkit-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -moz-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -o-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); +} + +.accordion { + margin-bottom: 20px; +} + +.accordion-group { + margin-bottom: 2px; + border: 1px solid #e5e5e5; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.accordion-heading { + border-bottom: 0; +} + +.accordion-heading .accordion-toggle { + display: block; + padding: 8px 15px; +} + +.accordion-toggle { + cursor: pointer; +} + +.accordion-inner { + padding: 9px 15px; + border-top: 1px solid #e5e5e5; +} + +.carousel { + position: relative; + margin-bottom: 20px; + line-height: 1; +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} + +.carousel-inner > .item { + position: relative; + display: none; +} + +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + display: block; + line-height: 1; +} + +.carousel-inner > .active, +.carousel-inner > .next, +.carousel-inner > .prev { + display: block; +} + +.carousel-inner > .active { + left: 0; +} + +.carousel-inner > .next, +.carousel-inner > .prev { + position: absolute; + top: 0; + width: 100%; +} + +.carousel-inner > .next { + left: 100%; +} + +.carousel-inner > .prev { + left: -100%; +} + +.carousel-inner > .next.left, +.carousel-inner > .prev.right { + left: 0; +} + +.carousel-inner > .active.left { + left: -100%; +} + +.carousel-inner > .active.right { + left: 100%; +} + +.carousel-control { + position: absolute; + top: 40%; + left: 15px; + width: 40px; + height: 40px; + margin-top: -20px; + font-size: 60px; + font-weight: 100; + line-height: 30px; + color: #ffffff; + text-align: center; + background: #555555; + border: 3px solid #ffffff; + opacity: 0.5; + filter: alpha(opacity=50); +} + +.carousel-control.right { + right: 15px; + left: auto; +} + +.carousel-control:hover, +.carousel-control:focus { + color: #ffffff; + text-decoration: none; + opacity: 0.9; + filter: alpha(opacity=90); +} + +.carousel-indicators { + position: absolute; + top: 15px; + right: 15px; + z-index: 5; + margin: 0; + list-style: none; +} + +.carousel-indicators li { + display: block; + float: left; + width: 10px; + height: 10px; + margin-left: 5px; + text-indent: -999px; + background-color: #ccc; + background-color: rgba(255, 255, 255, 0.25); +} + +.carousel-indicators .active { + background-color: #fff; +} + +.carousel-caption { + position: absolute; + right: 0; + bottom: 0; + left: 0; + padding: 15px; + background: #555555; + background: rgba(0, 0, 0, 0.75); +} + +.carousel-caption h4, +.carousel-caption p { + line-height: 20px; + color: #ffffff; +} + +.carousel-caption h4 { + margin: 0 0 5px; +} + +.carousel-caption p { + margin-bottom: 0; +} + +.hero-unit { + padding: 16px 20.8px; + margin-bottom: 20px; + font-size: 18px; + line-height: 20px; + color: #ffffff; + background-color: #00aaaa; + border: 4px double #ffffff; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + box-shadow: 0 0 0 4px #00aaaa; +} + +.hero-unit h1 { + margin-bottom: 20px; + font-size: 18px; + line-height: 1; + color: #ffffff; + text-align: center; + text-decoration: blink; +} + +.hero-unit li { + line-height: 20px; +} + +.pull-right { + float: right; +} + +.pull-left { + float: left; +} + +.hide { + display: none; +} + +.show { + display: block; +} + +.invisible { + visibility: hidden; +} + +#wrap386 { + position: fixed; + right: 0; + bottom: 0; + z-index: 9999999; + width: 100%; + height: 100%; + background: #000084; +} + +#bar386 { + float: right; + width: 100%; + height: 20px; + margin-top: -20px; + font-weight: bold; + color: #ffffff; + background: #000084; +} + +#cursor386 { + position: fixed; + right: 0; + bottom: 0; + z-index: 9999999; + font-weight: bold; + color: #ffffff; +} diff --git a/web/static/css/bootstrap.min.css b/web/static/css/bootstrap.min.css new file mode 100644 index 0000000..869670d --- /dev/null +++ b/web/static/css/bootstrap.min.css @@ -0,0 +1,5226 @@ +/*! + * Bootstrap v2.3.1 + * + * Copyright 2012 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world @twitter by @mdo and @fat. + */ +.clearfix { + *zoom: 1; +} +.clearfix:before, +.clearfix:after { + display: table; + line-height: 0; + content: ""; +} +.clearfix:after { + clear: both; +} +.hide-text { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} +.input-block-level { + display: block; + width: 100%; + min-height: 20px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +nav, +section { + display: block; +} +audio, +canvas, +video { + display: inline-block; + *display: inline; + *zoom: 1; +} +audio:not([controls]) { + display: none; +} +html { + font-size: 100%; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} +a:focus { + outline: thin solid #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +a:hover, +a:active { + outline: 0; +} +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} +sup { + top: -0.5em; +} +sub { + bottom: -0.25em; +} +img { + width: auto\9; + height: auto; + max-width: 100%; + vertical-align: middle; + border: 0; + -ms-interpolation-mode: bicubic; +} +#map_canvas img, +.google-maps img { + max-width: none; +} +button, +input, +select, +textarea { + margin: 0; + font-size: 100%; + vertical-align: middle; +} +button, +input { + *overflow: visible; + line-height: normal; +} +button::-moz-focus-inner, +input::-moz-focus-inner { + padding: 0; + border: 0; +} +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + cursor: pointer; + -webkit-appearance: button; +} +label, +select, +button, +input[type="button"], +input[type="reset"], +input[type="submit"], +input[type="radio"], +input[type="checkbox"] { + cursor: pointer; +} +input[type="search"] { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; + -webkit-appearance: textfield; +} +input[type="search"]::-webkit-search-decoration, +input[type="search"]::-webkit-search-cancel-button { + -webkit-appearance: none; +} +textarea { + overflow: auto; + vertical-align: top; +} +@media print { + * { + color: #000 !important; + text-shadow: none !important; + background: transparent !important; + box-shadow: none !important; + } + a, + a:visited { + text-decoration: none; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + .ir a:after, + a[href^="javascript:"]:after, + a[href^="#"]:after { + content: ""; + } + pre, + blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + img { + max-width: 100% !important; + } + @page { + margin: 0.5cm; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } +} +@font-face { + font-family: "DOS"; + font-style: normal; + font-weight: normal; + src: url("fonts/Fixedsys500c.eot"); + src: + local("☺"), + url("fonts/Fixedsys500c.woff") format("woff"), + url("fonts/Fixedsys500c.ttf") format("truetype"), + url("fonts/Fixedsys500c.svg") format("svg"); +} +body { + margin: 0; + font-family: DOS, Monaco, Menlo, Consolas, "Courier New", monospace; + font-size: 18px; + line-height: 20px; + color: #bbb; + background-color: #000084; +} +a { + color: #fefe54; + text-decoration: none; +} +a:hover, +a:focus { + color: #fefe54; + background: #a50; +} +.img-rounded { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.img-polaroid { + padding: 9px 4px 9px 4px; + background-color: #fff; + border: 2px solid #000; +} +.row { + margin-left: -16px; + *zoom: 1; +} +.row:before, +.row:after { + display: table; + line-height: 0; + content: ""; +} +.row:after { + clear: both; +} +[class*="span"] { + float: left; + min-height: 1px; + margin-left: 16px; +} +.container, +.navbar-static-top .container, +.navbar-fixed-top .container, +.navbar-fixed-bottom .container { + width: 944px; +} +.span12 { + width: 944px; +} +.span11 { + width: 864px; +} +.span10 { + width: 784px; +} +.span9 { + width: 704px; +} +.span8 { + width: 624px; +} +.span7 { + width: 544px; +} +.span6 { + width: 464px; +} +.span5 { + width: 384px; +} +.span4 { + width: 304px; +} +.span3 { + width: 224px; +} +.span2 { + width: 144px; +} +.span1 { + width: 64px; +} +.offset12 { + margin-left: 976px; +} +.offset11 { + margin-left: 896px; +} +.offset10 { + margin-left: 816px; +} +.offset9 { + margin-left: 736px; +} +.offset8 { + margin-left: 656px; +} +.offset7 { + margin-left: 576px; +} +.offset6 { + margin-left: 496px; +} +.offset5 { + margin-left: 416px; +} +.offset4 { + margin-left: 336px; +} +.offset3 { + margin-left: 256px; +} +.offset2 { + margin-left: 176px; +} +.offset1 { + margin-left: 96px; +} +.row-fluid { + width: 100%; + *zoom: 1; +} +.row-fluid:before, +.row-fluid:after { + display: table; + line-height: 0; + content: ""; +} +.row-fluid:after { + clear: both; +} +.row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 20px; + margin-left: 1.694915254237288%; + *margin-left: 1.6419491525423728%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +.row-fluid [class*="span"]:first-child { + margin-left: 0; +} +.row-fluid .controls-row [class*="span"] + [class*="span"] { + margin-left: 1.694915254237288%; +} +.row-fluid .span12 { + width: 100%; + *width: 99.94703389830508%; +} +.row-fluid .span11 { + width: 91.52542372881356%; + *width: 91.47245762711864%; +} +.row-fluid .span10 { + width: 83.0508474576271%; + *width: 82.99788135593218%; +} +.row-fluid .span9 { + width: 74.57627118644066%; + *width: 74.52330508474574%; +} +.row-fluid .span8 { + width: 66.10169491525423%; + *width: 66.04872881355931%; +} +.row-fluid .span7 { + width: 57.6271186440678%; + *width: 57.574152542372886%; +} +.row-fluid .span6 { + width: 49.152542372881356%; + *width: 49.09957627118644%; +} +.row-fluid .span5 { + width: 40.677966101694906%; + *width: 40.62499999999999%; +} +.row-fluid .span4 { + width: 32.20338983050847%; + *width: 32.15042372881356%; +} +.row-fluid .span3 { + width: 23.728813559322035%; + *width: 23.675847457627118%; +} +.row-fluid .span2 { + width: 15.254237288135592%; + *width: 15.201271186440676%; +} +.row-fluid .span1 { + width: 6.779661016949152%; + *width: 6.726694915254237%; +} +.row-fluid .offset12 { + margin-left: 103.38983050847457%; + *margin-left: 103.28389830508473%; +} +.row-fluid .offset12:first-child { + margin-left: 101.69491525423729%; + *margin-left: 101.58898305084745%; +} +.row-fluid .offset11 { + margin-left: 94.91525423728814%; + *margin-left: 94.8093220338983%; +} +.row-fluid .offset11:first-child { + margin-left: 93.22033898305085%; + *margin-left: 93.11440677966101%; +} +.row-fluid .offset10 { + margin-left: 86.44067796610167%; + *margin-left: 86.33474576271183%; +} +.row-fluid .offset10:first-child { + margin-left: 84.74576271186439%; + *margin-left: 84.63983050847455%; +} +.row-fluid .offset9 { + margin-left: 77.96610169491524%; + *margin-left: 77.8601694915254%; +} +.row-fluid .offset9:first-child { + margin-left: 76.27118644067795%; + *margin-left: 76.16525423728811%; +} +.row-fluid .offset8 { + margin-left: 69.4915254237288%; + *margin-left: 69.38559322033896%; +} +.row-fluid .offset8:first-child { + margin-left: 67.79661016949152%; + *margin-left: 67.69067796610167%; +} +.row-fluid .offset7 { + margin-left: 61.016949152542374%; + *margin-left: 60.91101694915255%; +} +.row-fluid .offset7:first-child { + margin-left: 59.32203389830509%; + *margin-left: 59.21610169491526%; +} +.row-fluid .offset6 { + margin-left: 52.54237288135593%; + *margin-left: 52.436440677966104%; +} +.row-fluid .offset6:first-child { + margin-left: 50.847457627118644%; + *margin-left: 50.74152542372882%; +} +.row-fluid .offset5 { + margin-left: 44.06779661016948%; + *margin-left: 43.961864406779654%; +} +.row-fluid .offset5:first-child { + margin-left: 42.37288135593219%; + *margin-left: 42.26694915254237%; +} +.row-fluid .offset4 { + margin-left: 35.593220338983045%; + *margin-left: 35.48728813559322%; +} +.row-fluid .offset4:first-child { + margin-left: 33.89830508474576%; + *margin-left: 33.79237288135593%; +} +.row-fluid .offset3 { + margin-left: 27.11864406779661%; + *margin-left: 27.01271186440678%; +} +.row-fluid .offset3:first-child { + margin-left: 25.423728813559322%; + *margin-left: 25.317796610169488%; +} +.row-fluid .offset2 { + margin-left: 18.644067796610166%; + *margin-left: 18.538135593220336%; +} +.row-fluid .offset2:first-child { + margin-left: 16.94915254237288%; + *margin-left: 16.84322033898305%; +} +.row-fluid .offset1 { + margin-left: 10.169491525423728%; + *margin-left: 10.063559322033898%; +} +.row-fluid .offset1:first-child { + margin-left: 8.47457627118644%; + *margin-left: 8.36864406779661%; +} +[class*="span"].hide, +.row-fluid [class*="span"].hide { + display: none; +} +[class*="span"].pull-right, +.row-fluid [class*="span"].pull-right { + float: right; +} +.container { + margin-left: 20px; + *zoom: 1; +} +.container:before, +.container:after { + display: table; + line-height: 0; + content: ""; +} +.container:after { + clear: both; +} +.container-fluid { + padding-right: 16px; + padding-left: 16px; + *zoom: 1; +} +.container-fluid:before, +.container-fluid:after { + display: table; + line-height: 0; + content: ""; +} +.container-fluid:after { + clear: both; +} +img { + -webkit-filter: contrast(800%); + -moz-filter: contrast(1000%); + -ms-filter: contrast(800%); + -o-filter: contrast(800%); + filter: contrast(1000%); +} +p { + margin: 0 0 20px; +} +.lead { + padding: 9px 14px 9px 14px; + margin: 9px 4px 9px 4px; + font-size: 18px; + color: #fff; + border: 2px solid #bbb; +} +small { + font-size: 100%; +} +strong { + font-weight: normal; + color: #fff; +} +em { + font-weight: normal; + color: #fff; +} +cite { + font-style: normal; +} +i, +cite, +em, +var, +address, +dfn { + font-style: normal; +} +i:before, +cite:before, +em:before, +var:before, +address:before, +dfn:before, +i:after, +cite:after, +em:after, +var:after, +address:after, +dfn:after { + content: "/"; +} +.muted { + display: none; + color: #bbb; +} +.text-warning { + color: #fff; +} +a.text-warning:hover, +a.text-warning:focus { + color: #fff; +} +.text-error { + color: #fff; +} +a.text-error:hover, +a.text-error:focus { + color: #fff; +} +.text-info { + color: #000; +} +a.text-info:hover, +a.text-info:focus { + color: #000; +} +.text-success { + color: #0a0; +} +a.text-success:hover, +a.text-success:focus { + color: #0a0; +} +.text-left { + text-align: left; +} +.text-right { + text-align: right; +} +.text-center { + text-align: center; +} +h1, +h2, +h3, +h4, +h5, +h6 { + margin: 0; + font-family: inherit; + font-weight: inherit; + line-height: 20px; + color: #fff; + text-rendering: optimizelegibility; +} +h1 small, +h2 small, +h3 small, +h4 small, +h5 small, +h6 small { + font-weight: normal; + line-height: 1; + color: #bbb; +} +h1, +h2, +h3 { + line-height: 20px; +} +h3:before { + content: ">>> "; +} +h3:after { + content: " <<<"; +} +h1 { + font-size: 18px; + text-transform: uppercase; +} +h2 { + font-size: 18px; + text-align: center; + white-space: nowrap; +} +h3 { + font-size: 18px; +} +h4 { + font-size: 18px; + color: #fe54fe; +} +h5 { + font-size: 18px; +} +h6 { + font-size: 18px; +} +h1 small { + font-size: 18px; +} +h2 small { + font-size: 18px; +} +h3 small { + font-size: 18px; +} +h4 small { + font-size: 18px; +} +.page-header { + padding: 20px 20px; + margin: 20px 0 20px; + background: #0aa; +} +.page-header h1 { + color: #000; +} +ul, +ol { + padding: 0; + margin: 0 0 20px 18px; +} +ul { + list-style: square; +} +ol { + margin-left: 21px; + list-style: decimal; +} +ol > li { + padding-left: 0; +} +ul ul, +ul ol, +ol ol, +ol ul { + margin-bottom: 0; + list-style: square; +} +li { + padding-left: 4px; + margin-left: 0; + line-height: 20px; +} +ol > li { + margin-left: 12px; +} +ul.unstyled, +ol.unstyled { + margin-left: 0; + list-style: none; +} +ul.unstyled > li, +ol.unstyled > li { + padding-left: 0; +} +ul.inline, +ol.inline { + margin-left: 0; + list-style: none; +} +ul.inline > li, +ol.inline > li { + display: inline-block; + *display: inline; + padding-right: 9.5px; + padding-left: 10.7px; + *zoom: 1; +} +dl { + margin-bottom: 20px; +} +dt, +dd { + line-height: 20px; +} +dt { + font-weight: normal; +} +dd { + margin-left: 21px; +} +.dl-horizontal { + *zoom: 1; +} +.dl-horizontal:before, +.dl-horizontal:after { + display: table; + line-height: 0; + content: ""; +} +.dl-horizontal:after { + clear: both; +} +.dl-horizontal dt { + float: left; + width: 162px; + overflow: hidden; + clear: left; + text-align: right; + text-overflow: ellipsis; + white-space: nowrap; +} +.dl-horizontal dd { + margin-left: 182px; +} +hr { + margin: 6px 0 7px; + border: 0; + border-top: 0 solid #bbb; + border-bottom: 2px solid #fff; +} +abbr[title], +abbr[data-original-title] { + cursor: help; + border: 0; +} +abbr.initialism { + font-size: 90%; + text-transform: uppercase; +} +blockquote { + padding: 0 0 0 15px; + margin: 0 0 20px; + border-left: 5px solid #bbb; +} +blockquote p { + margin-bottom: 0; + font-size: 18px; + line-height: 20px; +} +blockquote small { + display: block; + line-height: 20px; + color: #bbb; +} +blockquote small:before { + content: "\2014 \00A0"; +} +blockquote.pull-right { + float: right; + padding-right: 1em; + padding-left: 0; + border-right: 5px solid #bbb; + border-left: 0; +} +blockquote.pull-right p, +blockquote.pull-right small { + text-align: right; +} +blockquote.pull-right small:before { + content: ""; +} +blockquote.pull-right small:after { + content: "\00A0 \2014"; +} +q:before, +q:after, +blockquote:before, +blockquote:after { + content: ""; +} +address { + display: block; + margin-bottom: 20px; + font-style: normal; + line-height: 20px; +} +code, +pre { + padding: 0; + font-family: DOS, Monaco, Menlo, Consolas, "Courier New", monospace; + font-size: 18px; + color: #555; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +code { + padding: 0; + color: #fff; + white-space: nowrap; + background-color: #000; + border: 0; +} +pre { + display: block; + padding: 0; + margin: 0 0 10px; + font-size: 18px; + font-weight: normal; + line-height: 20px; + word-break: break-all; + word-wrap: break-word; + white-space: pre; + white-space: pre-wrap; + background-color: #000; + border: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +pre.prettyprint { + margin-bottom: 20px; +} +pre code { + padding: 0; + color: inherit; + white-space: pre; + white-space: pre-wrap; + background-color: transparent; + border: 0; +} +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} +form { + margin: 0 0 20px; +} +fieldset { + padding: 0; + margin: 0; + border: 0; +} +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 18px; + line-height: 40px; + color: #fff; + border: 0; +} +legend small { + font-size: 20px; + color: #bbb; +} +legend:before { + content: "## "; +} +legend:after { + content: " ##"; +} +label, +input, +button, +select, +textarea { + font-size: 18px; + font-weight: normal; + line-height: 20px; +} +input, +button, +select, +textarea { + font-family: DOS, Monaco, Menlo, Consolas, "Courier New", monospace; +} +label { + display: block; + margin-bottom: 5px; +} +select, +textarea, +input[type="text"], +input[type="password"], +input[type="datetime"], +input[type="datetime-local"], +input[type="date"], +input[type="month"], +input[type="time"], +input[type="week"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="search"], +input[type="tel"], +input[type="color"], +.uneditable-input { + display: inline-block; + height: 20px; + padding: 0; + margin: 10px 5px; + font-size: 18px; + line-height: 20px; + color: #000; + vertical-align: middle; + background: #bbb; + border: 2px solid #000; +} +input[type="text"]:before { + content: "["; +} +input[type="text"]:after { + content: "]"; +} +input, +textarea, +.uneditable-input { + width: 206px; +} +textarea { + height: auto; +} +textarea, +input[type="text"], +input[type="password"], +input[type="datetime"], +input[type="datetime-local"], +input[type="date"], +input[type="month"], +input[type="time"], +input[type="week"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="search"], +input[type="tel"], +input[type="color"], +.uneditable-input { + background-color: #bbb; + border: 0; +} +textarea:focus, +input[type="text"]:focus, +input[type="password"]:focus, +input[type="datetime"]:focus, +input[type="datetime-local"]:focus, +input[type="date"]:focus, +input[type="month"]:focus, +input[type="time"]:focus, +input[type="week"]:focus, +input[type="number"]:focus, +input[type="email"]:focus, +input[type="url"]:focus, +input[type="search"]:focus, +input[type="tel"]:focus, +input[type="color"]:focus, +.uneditable-input:focus { + outline: 0; +} +input[type="radio"], +input[type="checkbox"] { + margin: 4px 0 0; + margin-top: 1px \9; + *margin-top: 0; + line-height: normal; +} +input[type="file"], +input[type="image"], +input[type="submit"], +input[type="reset"], +input[type="button"], +input[type="radio"], +input[type="checkbox"] { + width: auto; +} +select, +input[type="file"] { + height: 20px; + *margin-top: 4px; + line-height: 20px; +} +select { + width: 220px; + background-color: #fff; + border: 1px solid #ccc; +} +select[multiple], +select[size] { + height: auto; +} +select:focus, +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus { + outline: thin solid #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.uneditable-input, +.uneditable-textarea { + color: #bbb; + cursor: not-allowed; + background-color: #fcfcfc; + border-color: #ccc; +} +.uneditable-input { + overflow: hidden; + white-space: nowrap; +} +.uneditable-textarea { + width: auto; + height: auto; +} +input:-moz-placeholder, +textarea:-moz-placeholder { + color: #bbb; +} +input:-ms-input-placeholder, +textarea:-ms-input-placeholder { + color: #bbb; +} +input::-webkit-input-placeholder, +textarea::-webkit-input-placeholder { + color: #bbb; +} +.radio, +.checkbox { + min-height: 20px; + padding-left: 20px; +} +.radio input[type="radio"], +.checkbox input[type="checkbox"] { + float: left; + margin-left: -20px; +} +.controls > .radio:first-child, +.controls > .checkbox:first-child { + padding-top: 5px; +} +.radio.inline, +.checkbox.inline { + display: inline-block; + padding-top: 5px; + margin-bottom: 0; + vertical-align: middle; +} +.radio.inline + .radio.inline, +.checkbox.inline + .checkbox.inline { + margin-left: 10px; +} +.input-mini { + width: 60px; +} +.input-small { + width: 90px; +} +.input-medium { + width: 150px; +} +.input-large { + width: 210px; +} +.input-xlarge { + width: 270px; +} +.input-xxlarge { + width: 530px; +} +input[class*="span"], +select[class*="span"], +textarea[class*="span"], +.uneditable-input[class*="span"], +.row-fluid input[class*="span"], +.row-fluid select[class*="span"], +.row-fluid textarea[class*="span"], +.row-fluid .uneditable-input[class*="span"] { + float: none; + margin-left: 0; +} +.input-append input[class*="span"], +.input-append .uneditable-input[class*="span"], +.input-prepend input[class*="span"], +.input-prepend .uneditable-input[class*="span"], +.row-fluid input[class*="span"], +.row-fluid select[class*="span"], +.row-fluid textarea[class*="span"], +.row-fluid .uneditable-input[class*="span"], +.row-fluid .input-prepend [class*="span"], +.row-fluid .input-append [class*="span"] { + display: inline-block; +} +input, +textarea, +.uneditable-input { + margin-left: 0; +} +.controls-row [class*="span"] + [class*="span"] { + margin-left: 16px; +} +input.span12, +textarea.span12, +.uneditable-input.span12 { + width: 930px; +} +input.span11, +textarea.span11, +.uneditable-input.span11 { + width: 850px; +} +input.span10, +textarea.span10, +.uneditable-input.span10 { + width: 770px; +} +input.span9, +textarea.span9, +.uneditable-input.span9 { + width: 690px; +} +input.span8, +textarea.span8, +.uneditable-input.span8 { + width: 610px; +} +input.span7, +textarea.span7, +.uneditable-input.span7 { + width: 530px; +} +input.span6, +textarea.span6, +.uneditable-input.span6 { + width: 450px; +} +input.span5, +textarea.span5, +.uneditable-input.span5 { + width: 370px; +} +input.span4, +textarea.span4, +.uneditable-input.span4 { + width: 290px; +} +input.span3, +textarea.span3, +.uneditable-input.span3 { + width: 210px; +} +input.span2, +textarea.span2, +.uneditable-input.span2 { + width: 130px; +} +input.span1, +textarea.span1, +.uneditable-input.span1 { + width: 50px; +} +.controls-row { + *zoom: 1; +} +.controls-row:before, +.controls-row:after { + display: table; + line-height: 0; + content: ""; +} +.controls-row:after { + clear: both; +} +.controls-row [class*="span"], +.row-fluid .controls-row [class*="span"] { + float: left; +} +.controls-row .checkbox[class*="span"], +.controls-row .radio[class*="span"] { + padding-top: 5px; +} +input[disabled], +select[disabled], +textarea[disabled], +input[readonly], +select[readonly], +textarea[readonly] { + cursor: not-allowed; + background-color: #bbb; +} +input[type="radio"][disabled], +input[type="checkbox"][disabled], +input[type="radio"][readonly], +input[type="checkbox"][readonly] { + background-color: transparent; +} +.control-group.warning .control-label, +.control-group.warning .help-block, +.control-group.warning .help-inline { + color: #fff; +} +.control-group.warning .checkbox, +.control-group.warning .radio, +.control-group.warning input, +.control-group.warning select, +.control-group.warning textarea { + color: #fff; +} +.control-group.warning input, +.control-group.warning select, +.control-group.warning textarea { + border-color: #fff; +} +.control-group.warning input:focus, +.control-group.warning select:focus, +.control-group.warning textarea:focus { + border-color: #fff; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} +.control-group.warning .input-prepend .add-on, +.control-group.warning .input-append .add-on { + color: #fff; + background-color: #0aa; + border-color: #fff; +} +.control-group.error .control-label, +.control-group.error .help-block, +.control-group.error .help-inline { + color: #fff; +} +.control-group.error .checkbox, +.control-group.error .radio, +.control-group.error input, +.control-group.error select, +.control-group.error textarea { + color: #fff; +} +.control-group.error input, +.control-group.error select, +.control-group.error textarea { + border-color: #fff; +} +.control-group.error input:focus, +.control-group.error select:focus, +.control-group.error textarea:focus { + border-color: #fff; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} +.control-group.error .input-prepend .add-on, +.control-group.error .input-append .add-on { + color: #fff; + background-color: #a00; + border-color: #fff; +} +.control-group.success .control-label, +.control-group.success .help-block, +.control-group.success .help-inline { + color: #0a0; +} +.control-group.success .checkbox, +.control-group.success .radio, +.control-group.success input, +.control-group.success select, +.control-group.success textarea { + color: #0a0; +} +.control-group.success input, +.control-group.success select, +.control-group.success textarea { + border-color: #0a0; +} +.control-group.success input:focus, +.control-group.success select:focus, +.control-group.success textarea:focus { + border-color: #0a0; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} +.control-group.success .input-prepend .add-on, +.control-group.success .input-append .add-on { + color: #0a0; + background-color: #000; + border-color: #0a0; +} +.control-group.info .control-label, +.control-group.info .help-block, +.control-group.info .help-inline { + color: #000; +} +.control-group.info .checkbox, +.control-group.info .radio, +.control-group.info input, +.control-group.info select, +.control-group.info textarea { + color: #000; +} +.control-group.info input, +.control-group.info select, +.control-group.info textarea { + border-color: #000; +} +.control-group.info input:focus, +.control-group.info select:focus, +.control-group.info textarea:focus { + border-color: #000; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} +.control-group.info .input-prepend .add-on, +.control-group.info .input-append .add-on { + color: #000; + background-color: #000; + border-color: #000; +} +input:focus:invalid, +textarea:focus:invalid, +select:focus:invalid { + color: #b94a48; + border-color: #ee5f5b; +} +input:focus:invalid:focus, +textarea:focus:invalid:focus, +select:focus:invalid:focus { + border-color: #e9322d; + -webkit-box-shadow: 0 0 6px #f8b9b7; + -moz-box-shadow: 0 0 6px #f8b9b7; + box-shadow: 0 0 6px #f8b9b7; +} +.form-actions { + padding: 19px 20px 20px; + margin-top: 20px; + margin-bottom: 20px; + background-color: #f5f5f5; + border-top: 1px solid #e5e5e5; + *zoom: 1; +} +.form-actions:before, +.form-actions:after { + display: table; + line-height: 0; + content: ""; +} +.form-actions:after { + clear: both; +} +.help-block, +.help-inline { + color: #e1e1e1; +} +.help-block { + display: block; + margin-bottom: 10px; +} +.help-inline { + display: inline-block; + *display: inline; + padding-left: 5px; + vertical-align: middle; + *zoom: 1; +} +.input-append, +.input-prepend { + display: inline-block; + margin-bottom: 10px; + font-size: 0; + white-space: nowrap; + vertical-align: middle; +} +.input-append input, +.input-prepend input, +.input-append select, +.input-prepend select, +.input-append .uneditable-input, +.input-prepend .uneditable-input, +.input-append .dropdown-menu, +.input-prepend .dropdown-menu, +.input-append .popover, +.input-prepend .popover { + font-size: 18px; +} +.input-append input, +.input-prepend input, +.input-append select, +.input-prepend select, +.input-append .uneditable-input, +.input-prepend .uneditable-input { + position: relative; + margin-bottom: 0; + *margin-left: 0; + vertical-align: top; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.input-append input:focus, +.input-prepend input:focus, +.input-append select:focus, +.input-prepend select:focus, +.input-append .uneditable-input:focus, +.input-prepend .uneditable-input:focus { + z-index: 2; +} +.input-append .add-on, +.input-prepend .add-on { + display: inline-block; + width: auto; + height: 20px; + min-width: 16px; + padding: 4px 5px; + font-size: 18px; + font-weight: normal; + line-height: 20px; + text-align: center; + text-shadow: 0; + background-color: #bbb; + border: 0; +} +.input-append .add-on, +.input-prepend .add-on, +.input-append .btn, +.input-prepend .btn, +.input-append .btn-group > .dropdown-toggle, +.input-prepend .btn-group > .dropdown-toggle { + vertical-align: top; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.input-prepend .add-on, +.input-prepend .btn { + margin-right: -1px; +} +.input-prepend .add-on:first-child, +.input-prepend .btn:first-child { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.input-append input, +.input-append select, +.input-append .uneditable-input { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.input-append input + .btn-group .btn:last-child, +.input-append select + .btn-group .btn:last-child, +.input-append .uneditable-input + .btn-group .btn:last-child { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.input-append .add-on, +.input-append .btn, +.input-append .btn-group { + margin-left: -1px; +} +.input-append .add-on:last-child, +.input-append .btn:last-child, +.input-append .btn-group:last-child > .dropdown-toggle { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.input-prepend.input-append input, +.input-prepend.input-append select, +.input-prepend.input-append .uneditable-input { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.input-prepend.input-append input + .btn-group .btn, +.input-prepend.input-append select + .btn-group .btn, +.input-prepend.input-append .uneditable-input + .btn-group .btn { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.input-prepend.input-append .add-on:first-child, +.input-prepend.input-append .btn:first-child { + margin-right: -1px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.input-prepend.input-append .add-on:last-child, +.input-prepend.input-append .btn:last-child { + margin-left: -1px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.input-prepend.input-append .btn-group:first-child { + margin-left: 0; +} +input.search-query { + padding-right: 14px; + padding-right: 4px \9; + padding-left: 14px; + padding-left: 4px \9; + margin-bottom: 0; +} +.form-search .input-append .search-query, +.form-search .input-prepend .search-query { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.form-search input, +.form-inline input, +.form-horizontal input, +.form-search textarea, +.form-inline textarea, +.form-horizontal textarea, +.form-search select, +.form-inline select, +.form-horizontal select, +.form-search .help-inline, +.form-inline .help-inline, +.form-horizontal .help-inline, +.form-search .uneditable-input, +.form-inline .uneditable-input, +.form-horizontal .uneditable-input, +.form-search .input-prepend, +.form-inline .input-prepend, +.form-horizontal .input-prepend, +.form-search .input-append, +.form-inline .input-append, +.form-horizontal .input-append { + display: inline-block; + *display: inline; + margin-bottom: 0; + vertical-align: middle; + *zoom: 1; +} +.form-search .hide, +.form-inline .hide, +.form-horizontal .hide { + display: none; +} +.form-search label, +.form-inline label, +.form-search .btn-group, +.form-inline .btn-group { + display: inline-block; +} +.form-search .input-append, +.form-inline .input-append, +.form-search .input-prepend, +.form-inline .input-prepend { + margin-bottom: 0; +} +.form-search .radio, +.form-search .checkbox, +.form-inline .radio, +.form-inline .checkbox { + padding-left: 0; + margin-bottom: 0; + vertical-align: middle; +} +.form-search .radio input[type="radio"], +.form-search .checkbox input[type="checkbox"], +.form-inline .radio input[type="radio"], +.form-inline .checkbox input[type="checkbox"] { + float: left; + margin-right: 3px; + margin-left: 0; +} +.control-group { + margin-bottom: 10px; +} +legend + .control-group { + margin-top: 20px; + -webkit-margin-top-collapse: separate; +} +.form-horizontal .control-group { + margin-bottom: 20px; + *zoom: 1; +} +.form-horizontal .control-group:before, +.form-horizontal .control-group:after { + display: table; + line-height: 0; + content: ""; +} +.form-horizontal .control-group:after { + clear: both; +} +.form-horizontal .control-label { + float: left; + width: 162px; + padding-top: 5px; + text-align: right; +} +.form-horizontal .controls { + *display: inline-block; + *padding-left: 20px; + margin-left: 182px; + *margin-left: 0; +} +.form-horizontal .controls:first-child { + *padding-left: 182px; +} +.form-horizontal .help-block { + margin-bottom: 0; +} +.form-horizontal input + .help-block, +.form-horizontal select + .help-block, +.form-horizontal textarea + .help-block, +.form-horizontal .uneditable-input + .help-block, +.form-horizontal .input-prepend + .help-block, +.form-horizontal .input-append + .help-block { + margin-top: 10px; +} +.form-horizontal .form-actions { + padding-left: 182px; +} +table { + max-width: 100%; + background-color: transparent; + border-collapse: collapse; + border-spacing: 0; +} +.table { + width: 100%; + margin-bottom: 20px; +} +.table th, +.table td { + padding: 8px; + line-height: 20px; + text-align: left; + vertical-align: top; + border-top: 2px solid #ddd; +} +.table th { + font-weight: normal; +} +.table thead th { + vertical-align: bottom; +} +.table caption + thead tr:first-child th, +.table caption + thead tr:first-child td, +.table colgroup + thead tr:first-child th, +.table colgroup + thead tr:first-child td, +.table thead:first-child tr:first-child th, +.table thead:first-child tr:first-child td { + border-top: 0; +} +.table tbody + tbody { + border-top: 2px solid #ddd; +} +.table .table { + background-color: #000084; +} +.table-condensed th, +.table-condensed td { + padding: 4px 5px; +} +.table-bordered { + margin-left: 4px; + border: 2px solid #ddd; + border-collapse: separate; + *border-collapse: collapse; + border-left: 0; +} +.table-bordered th, +.table-bordered td { + padding: inherit 5.2px; + border-left: 2px solid #ddd; +} +.table-bordered caption + thead tr:first-child th, +.table-bordered caption + tbody tr:first-child th, +.table-bordered caption + tbody tr:first-child td, +.table-bordered colgroup + thead tr:first-child th, +.table-bordered colgroup + tbody tr:first-child th, +.table-bordered colgroup + tbody tr:first-child td, +.table-bordered thead:first-child tr:first-child th, +.table-bordered tbody:first-child tr:first-child th, +.table-bordered tbody:first-child tr:first-child td { + border-top: 0; +} +.table-bordered thead:first-child tr:first-child > th:first-child, +.table-bordered tbody:first-child tr:first-child > td:first-child, +.table-bordered tbody:first-child tr:first-child > th:first-child { + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topleft: 0; +} +.table-bordered thead:first-child tr:first-child > th:last-child, +.table-bordered tbody:first-child tr:first-child > td:last-child, +.table-bordered tbody:first-child tr:first-child > th:last-child { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-topright: 0; +} +.table-bordered thead:last-child tr:last-child > th:first-child, +.table-bordered tbody:last-child tr:last-child > td:first-child, +.table-bordered tbody:last-child tr:last-child > th:first-child, +.table-bordered tfoot:last-child tr:last-child > td:first-child, +.table-bordered tfoot:last-child tr:last-child > th:first-child { + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -moz-border-radius-bottomleft: 0; +} +.table-bordered thead:last-child tr:last-child > th:last-child, +.table-bordered tbody:last-child tr:last-child > td:last-child, +.table-bordered tbody:last-child tr:last-child > th:last-child, +.table-bordered tfoot:last-child tr:last-child > td:last-child, +.table-bordered tfoot:last-child tr:last-child > th:last-child { + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomright: 0; +} +.table-bordered tfoot + tbody:last-child tr:last-child td:first-child { + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -moz-border-radius-bottomleft: 0; +} +.table-bordered tfoot + tbody:last-child tr:last-child td:last-child { + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomright: 0; +} +.table-bordered caption + thead tr:first-child th:first-child, +.table-bordered caption + tbody tr:first-child td:first-child, +.table-bordered colgroup + thead tr:first-child th:first-child, +.table-bordered colgroup + tbody tr:first-child td:first-child { + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topleft: 0; +} +.table-bordered caption + thead tr:first-child th:last-child, +.table-bordered caption + tbody tr:first-child td:last-child, +.table-bordered colgroup + thead tr:first-child th:last-child, +.table-bordered colgroup + tbody tr:first-child td:last-child { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-topright: 0; +} +.table-striped tbody > tr:nth-child(odd) > td, +.table-striped tbody > tr:nth-child(odd) > th { + background-color: transparent; +} +.table-hover tbody tr:hover > td, +.table-hover tbody tr:hover > th { + background-color: #f5f5f5; +} +table td[class*="span"], +table th[class*="span"], +.row-fluid table td[class*="span"], +.row-fluid table th[class*="span"] { + display: table-cell; + float: none; + margin-left: 0; +} +.table td.span1, +.table th.span1 { + float: none; + width: 48px; + margin-left: 0; +} +.table td.span2, +.table th.span2 { + float: none; + width: 128px; + margin-left: 0; +} +.table td.span3, +.table th.span3 { + float: none; + width: 208px; + margin-left: 0; +} +.table td.span4, +.table th.span4 { + float: none; + width: 288px; + margin-left: 0; +} +.table td.span5, +.table th.span5 { + float: none; + width: 368px; + margin-left: 0; +} +.table td.span6, +.table th.span6 { + float: none; + width: 448px; + margin-left: 0; +} +.table td.span7, +.table th.span7 { + float: none; + width: 528px; + margin-left: 0; +} +.table td.span8, +.table th.span8 { + float: none; + width: 608px; + margin-left: 0; +} +.table td.span9, +.table th.span9 { + float: none; + width: 688px; + margin-left: 0; +} +.table td.span10, +.table th.span10 { + float: none; + width: 768px; + margin-left: 0; +} +.table td.span11, +.table th.span11 { + float: none; + width: 848px; + margin-left: 0; +} +.table td.span12, +.table th.span12 { + float: none; + width: 928px; + margin-left: 0; +} +.table tbody tr.success > td { + background-color: #000; +} +.table tbody tr.error > td { + background-color: #a00; +} +.table tbody tr.warning > td { + background-color: #0aa; +} +.table tbody tr.info > td { + background-color: #000; +} +.table-hover tbody tr.success:hover > td { + background-color: #000; +} +.table-hover tbody tr.error:hover > td { + background-color: #910000; +} +.table-hover tbody tr.warning:hover > td { + background-color: #009091; +} +.table-hover tbody tr.info:hover > td { + background-color: #000; +} +[class^="icon-"], +[class*=" icon-"] { + display: none; + width: 14px; + height: 14px; + margin-top: 1px; + *margin-right: 0.3em; + line-height: 20px; + vertical-align: text-top; + background-image: url("../img/glyphicons-halflings.png"); + background-position: 14px 14px; + background-repeat: no-repeat; +} +.icon-white, +.nav-pills > .active > a > [class^="icon-"], +.nav-pills > .active > a > [class*=" icon-"], +.nav-list > .active > a > [class^="icon-"], +.nav-list > .active > a > [class*=" icon-"], +.navbar-inverse .nav > .active > a > [class^="icon-"], +.navbar-inverse .nav > .active > a > [class*=" icon-"], +.dropdown-menu > li > a:hover > [class^="icon-"], +.dropdown-menu > li > a:focus > [class^="icon-"], +.dropdown-menu > li > a:hover > [class*=" icon-"], +.dropdown-menu > li > a:focus > [class*=" icon-"], +.dropdown-menu > .active > a > [class^="icon-"], +.dropdown-menu > .active > a > [class*=" icon-"], +.dropdown-submenu:hover > a > [class^="icon-"], +.dropdown-submenu:focus > a > [class^="icon-"], +.dropdown-submenu:hover > a > [class*=" icon-"], +.dropdown-submenu:focus > a > [class*=" icon-"] { + background-image: url("../img/glyphicons-halflings-white.png"); +} +.icon-glass { + background-position: 0 0; +} +.icon-music { + background-position: -24px 0; +} +.icon-search { + background-position: -48px 0; +} +.icon-envelope { + background-position: -72px 0; +} +.icon-heart { + background-position: -96px 0; +} +.icon-star { + background-position: -120px 0; +} +.icon-star-empty { + background-position: -144px 0; +} +.icon-user { + background-position: -168px 0; +} +.icon-film { + background-position: -192px 0; +} +.icon-th-large { + background-position: -216px 0; +} +.icon-th { + background-position: -240px 0; +} +.icon-th-list { + background-position: -264px 0; +} +.icon-ok { + background-position: -288px 0; +} +.icon-remove { + background-position: -312px 0; +} +.icon-zoom-in { + background-position: -336px 0; +} +.icon-zoom-out { + background-position: -360px 0; +} +.icon-off { + background-position: -384px 0; +} +.icon-signal { + background-position: -408px 0; +} +.icon-cog { + background-position: -432px 0; +} +.icon-trash { + background-position: -456px 0; +} +.icon-home { + background-position: 0 -24px; +} +.icon-file { + background-position: -24px -24px; +} +.icon-time { + background-position: -48px -24px; +} +.icon-road { + background-position: -72px -24px; +} +.icon-download-alt { + background-position: -96px -24px; +} +.icon-download { + background-position: -120px -24px; +} +.icon-upload { + background-position: -144px -24px; +} +.icon-inbox { + background-position: -168px -24px; +} +.icon-play-circle { + background-position: -192px -24px; +} +.icon-repeat { + background-position: -216px -24px; +} +.icon-refresh { + background-position: -240px -24px; +} +.icon-list-alt { + background-position: -264px -24px; +} +.icon-lock { + background-position: -287px -24px; +} +.icon-flag { + background-position: -312px -24px; +} +.icon-headphones { + background-position: -336px -24px; +} +.icon-volume-off { + background-position: -360px -24px; +} +.icon-volume-down { + background-position: -384px -24px; +} +.icon-volume-up { + background-position: -408px -24px; +} +.icon-qrcode { + background-position: -432px -24px; +} +.icon-barcode { + background-position: -456px -24px; +} +.icon-tag { + background-position: 0 -48px; +} +.icon-tags { + background-position: -25px -48px; +} +.icon-book { + background-position: -48px -48px; +} +.icon-bookmark { + background-position: -72px -48px; +} +.icon-print { + background-position: -96px -48px; +} +.icon-camera { + background-position: -120px -48px; +} +.icon-font { + background-position: -144px -48px; +} +.icon-bold { + background-position: -167px -48px; +} +.icon-italic { + background-position: -192px -48px; +} +.icon-text-height { + background-position: -216px -48px; +} +.icon-text-width { + background-position: -240px -48px; +} +.icon-align-left { + background-position: -264px -48px; +} +.icon-align-center { + background-position: -288px -48px; +} +.icon-align-right { + background-position: -312px -48px; +} +.icon-align-justify { + background-position: -336px -48px; +} +.icon-list { + background-position: -360px -48px; +} +.icon-indent-left { + background-position: -384px -48px; +} +.icon-indent-right { + background-position: -408px -48px; +} +.icon-facetime-video { + background-position: -432px -48px; +} +.icon-picture { + background-position: -456px -48px; +} +.icon-pencil { + background-position: 0 -72px; +} +.icon-map-marker { + background-position: -24px -72px; +} +.icon-adjust { + background-position: -48px -72px; +} +.icon-tint { + background-position: -72px -72px; +} +.icon-edit { + background-position: -96px -72px; +} +.icon-share { + background-position: -120px -72px; +} +.icon-check { + background-position: -144px -72px; +} +.icon-move { + background-position: -168px -72px; +} +.icon-step-backward { + background-position: -192px -72px; +} +.icon-fast-backward { + background-position: -216px -72px; +} +.icon-backward { + background-position: -240px -72px; +} +.icon-play { + background-position: -264px -72px; +} +.icon-pause { + background-position: -288px -72px; +} +.icon-stop { + background-position: -312px -72px; +} +.icon-forward { + background-position: -336px -72px; +} +.icon-fast-forward { + background-position: -360px -72px; +} +.icon-step-forward { + background-position: -384px -72px; +} +.icon-eject { + background-position: -408px -72px; +} +.icon-chevron-left { + background-position: -432px -72px; +} +.icon-chevron-right { + background-position: -456px -72px; +} +.icon-plus-sign { + background-position: 0 -96px; +} +.icon-minus-sign { + background-position: -24px -96px; +} +.icon-remove-sign { + background-position: -48px -96px; +} +.icon-ok-sign { + background-position: -72px -96px; +} +.icon-question-sign { + background-position: -96px -96px; +} +.icon-info-sign { + background-position: -120px -96px; +} +.icon-screenshot { + background-position: -144px -96px; +} +.icon-remove-circle { + background-position: -168px -96px; +} +.icon-ok-circle { + background-position: -192px -96px; +} +.icon-ban-circle { + background-position: -216px -96px; +} +.icon-arrow-left { + background-position: -240px -96px; +} +.icon-arrow-right { + background-position: -264px -96px; +} +.icon-arrow-up { + background-position: -289px -96px; +} +.icon-arrow-down { + background-position: -312px -96px; +} +.icon-share-alt { + background-position: -336px -96px; +} +.icon-resize-full { + background-position: -360px -96px; +} +.icon-resize-small { + background-position: -384px -96px; +} +.icon-plus { + background-position: -408px -96px; +} +.icon-minus { + background-position: -433px -96px; +} +.icon-asterisk { + background-position: -456px -96px; +} +.icon-exclamation-sign { + background-position: 0 -120px; +} +.icon-gift { + background-position: -24px -120px; +} +.icon-leaf { + background-position: -48px -120px; +} +.icon-fire { + background-position: -72px -120px; +} +.icon-eye-open { + background-position: -96px -120px; +} +.icon-eye-close { + background-position: -120px -120px; +} +.icon-warning-sign { + background-position: -144px -120px; +} +.icon-plane { + background-position: -168px -120px; +} +.icon-calendar { + background-position: -192px -120px; +} +.icon-random { + width: 16px; + background-position: -216px -120px; +} +.icon-comment { + background-position: -240px -120px; +} +.icon-magnet { + background-position: -264px -120px; +} +.icon-chevron-up { + background-position: -288px -120px; +} +.icon-chevron-down { + background-position: -313px -119px; +} +.icon-retweet { + background-position: -336px -120px; +} +.icon-shopping-cart { + background-position: -360px -120px; +} +.icon-folder-close { + width: 16px; + background-position: -384px -120px; +} +.icon-folder-open { + width: 16px; + background-position: -408px -120px; +} +.icon-resize-vertical { + background-position: -432px -119px; +} +.icon-resize-horizontal { + background-position: -456px -118px; +} +.icon-hdd { + background-position: 0 -144px; +} +.icon-bullhorn { + background-position: -24px -144px; +} +.icon-bell { + background-position: -48px -144px; +} +.icon-certificate { + background-position: -72px -144px; +} +.icon-thumbs-up { + background-position: -96px -144px; +} +.icon-thumbs-down { + background-position: -120px -144px; +} +.icon-hand-right { + background-position: -144px -144px; +} +.icon-hand-left { + background-position: -168px -144px; +} +.icon-hand-up { + background-position: -192px -144px; +} +.icon-hand-down { + background-position: -216px -144px; +} +.icon-circle-arrow-right { + background-position: -240px -144px; +} +.icon-circle-arrow-left { + background-position: -264px -144px; +} +.icon-circle-arrow-up { + background-position: -288px -144px; +} +.icon-circle-arrow-down { + background-position: -312px -144px; +} +.icon-globe { + background-position: -336px -144px; +} +.icon-wrench { + background-position: -360px -144px; +} +.icon-tasks { + background-position: -384px -144px; +} +.icon-filter { + background-position: -408px -144px; +} +.icon-briefcase { + background-position: -432px -144px; +} +.icon-fullscreen { + background-position: -456px -144px; +} +.dropup, +.dropdown { + position: relative; +} +.dropdown-toggle { + *margin-bottom: -3px; +} +.dropdown-toggle:active, +.open .dropdown-toggle { + outline: 0; +} +.caret { + display: inline-block; + width: 0; + height: 0; + vertical-align: top; +} +.caret:before { + content: "▼"; +} +.dropdown .caret { + margin-top: 8px; + margin-left: 2px; +} +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 9px 4px 9px 4px; + margin: -15.5px 4px 8px 4px; + list-style: none; + background-color: #bbb; + border: 1px solid #000; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + -webkit-box-shadow: 0 0 0 5px #bbb; + -moz-box-shadow: 0 0 0 5px #bbb; + box-shadow: 0 0 0 5px #bbb; + -webkit-background-clip: padding-box; + -moz-background-clip: padding; + background-clip: padding-box; +} +.dropdown-menu.pull-right { + right: 0; + left: auto; +} +.dropdown-menu .divider { + *width: 100%; + height: 1px; + height: 0; + margin: 9px 1px; + *margin: -5px 0 5px; + overflow: hidden; + background-color: #e5e5e5; + border-bottom: 1px solid #000; +} +.dropdown-menu > li > a { + display: block; + padding: 0 10px; + clear: both; + font-weight: normal; + line-height: 20px; + color: #000; + white-space: nowrap; +} +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus, +.dropdown-submenu:hover > a, +.dropdown-submenu:focus > a { + color: #bbb; + text-decoration: none; +} +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + color: #bbb; + text-decoration: none; + background-color: #fefe4a; + background-image: -moz-linear-gradient(top, #fefe54, #fefe3b); + background-image: -webkit-gradient( + linear, + 0 0, + 0 100%, + from(#fefe54), + to(#fefe3b) + ); + background-image: -webkit-linear-gradient(top, #fefe54, #fefe3b); + background-image: -o-linear-gradient(top, #fefe54, #fefe3b); + background-image: linear-gradient(to bottom, #fefe54, #fefe3b); + background-repeat: repeat-x; + outline: 0; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffefe54',endColorstr='#fffefe3b',GradientType=0); +} +.dropdown-menu > .disabled > a, +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + color: #bbb; +} +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + text-decoration: none; + cursor: default; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} +.open { + *z-index: 1000; +} +.open > .dropdown-menu { + display: block; +} +.pull-right > .dropdown-menu { + right: 0; + left: auto; +} +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + border-top: 0; + border-bottom: 1px solid #000; + content: ""; +} +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 1px; +} +.dropdown-submenu { + position: relative; +} +.dropdown-submenu > .dropdown-menu { + top: 0; + left: 100%; + margin-top: -6px; + margin-left: -1px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.dropdown-submenu:hover > .dropdown-menu { + display: block; +} +.dropup .dropdown-submenu > .dropdown-menu { + top: auto; + bottom: 0; + margin-top: 0; + margin-bottom: -2px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.dropdown-submenu > a:after { + display: block; + float: right; + width: 0; + height: 0; + margin-top: 5px; + margin-right: -10px; + border-color: transparent; + border-left-color: #ccc; + border-style: solid; + border-width: 1px; + content: " "; +} +.dropdown-submenu:hover > a:after { + border-left-color: #bbb; +} +.dropdown-submenu.pull-left { + float: none; +} +.dropdown-submenu.pull-left > .dropdown-menu { + left: -100%; + margin-left: 10px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.dropdown .dropdown-menu .nav-header { + padding-right: 16px; + padding-left: 16px; +} +.typeahead { + z-index: 1051; + margin-top: 2px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0); +} +.well-large { + padding: 24px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.well-small { + padding: 9px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.fade { + opacity: 0; + -webkit-transition: opacity 0.15s linear; + -moz-transition: opacity 0.15s linear; + -o-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} +.fade.in { + opacity: 1; +} +.collapse { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + -moz-transition: height 0.35s ease; + -o-transition: height 0.35s ease; + transition: height 0.35s ease; +} +.collapse.in { + height: auto; +} +.close { + float: right; + font-size: 18px; + font-weight: normal; + line-height: 20px; + color: #000; + opacity: 0.2; + filter: alpha(opacity=20); +} +.close:hover, +.close:focus { + color: #000; + text-decoration: none; + cursor: pointer; +} +button.close { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; +} +.btn:hover:before, +.btn:hover:after { + color: #fff; +} +.btn:before { + content: "< "; +} +.btn:after { + content: " >"; +} +.btn { + display: inline-block; + *display: inline; + padding: 0 10px; + margin-bottom: 20px; + *margin-left: 0.3em; + font-size: 18px; + line-height: 20px; + color: #000; + text-align: center; + vertical-align: middle; + cursor: default; + background: #bbb; + border: 0; + border-width: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + *zoom: 1; + -webkit-box-shadow: 10px 10px 0 #000; + -moz-box-shadow: 10px 10px 0 #000; + box-shadow: 10px 10px 0 #000; +} +.btn:first-child { + *margin-left: 0; +} +.btn:hover, +.btn:focus { + color: #fff; + text-decoration: none; + background: #555; + outline: 0; +} +.btn:focus { + outline: thin solid #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.btn.active, +.btn:active { + margin: 10px 0 10px 10px; + outline: 0; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} +.btn.disabled, +.btn[disabled] { + cursor: default; + background-image: none; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} +.btn-large { + padding: 10px 10px; + font-size: 18px; + color: #000; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.btn-large [class^="icon-"], +.btn-large [class*=" icon-"] { + margin-top: 4px; +} +.btn-small { + padding: 0; + font-size: 18px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.btn-small [class^="icon-"], +.btn-small [class*=" icon-"] { + margin-top: 0; +} +.btn-mini [class^="icon-"], +.btn-mini [class*=" icon-"] { + margin-top: -1px; +} +.btn-mini { + padding: 0; + font-size: 18px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.btn-block { + display: block; + width: 100%; + padding-right: 0; + padding-left: 0; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +.btn-block + .btn-block { + margin-top: 5px; +} +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} +.btn-primary { + color: #000; + background: #bbb; +} +.btn-warning { + *background-color: #f47a00; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} +.btn-warning:hover, +.btn-warning:focus, +.btn-warning:active, +.btn-warning.active, +.btn-warning.disabled, +.btn-warning[disabled] { + color: #fff; +} +.btn-danger { + *background-color: #ee5f5b; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} +.btn-danger:hover, +.btn-danger:focus, +.btn-danger:active, +.btn-danger.active, +.btn-danger.disabled, +.btn-danger[disabled] { + color: #fff; +} +.btn-success { + *background-color: #62c462; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} +.btn-success:hover, +.btn-success:focus, +.btn-success:active, +.btn-success.active, +.btn-success.disabled, +.btn-success[disabled] { + color: #fff; +} +.btn-info { + *background-color: #5bc0de; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} +.btn-info:hover, +.btn-info:focus, +.btn-info:active, +.btn-info.active, +.btn-info.disabled, +.btn-info[disabled] { + color: #fff; +} +.btn-inverse { + *background-color: #555; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} +.btn-inverse:hover, +.btn-inverse:focus, +.btn-inverse:active, +.btn-inverse.active, +.btn-inverse.disabled, +.btn-inverse[disabled] { + color: #fff; +} +button.btn, +input[type="submit"].btn { + *padding-top: 3px; + *padding-bottom: 3px; +} +button.btn::-moz-focus-inner, +input[type="submit"].btn::-moz-focus-inner { + padding: 0; + border: 0; +} +button.btn.btn-large, +input[type="submit"].btn.btn-large { + *padding-top: 7px; + *padding-bottom: 7px; +} +button.btn.btn-small, +input[type="submit"].btn.btn-small { + *padding-top: 0; + *padding-bottom: 0; +} +button.btn.btn-mini, +input[type="submit"].btn.btn-mini { + *padding-top: 0; + *padding-bottom: 0; +} +.btn-link, +.btn-link:active, +.btn-link[disabled] { + background-color: transparent; + background-image: none; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} +.btn-link { + color: #fefe54; + cursor: pointer; + border-color: transparent; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.btn-link:hover, +.btn-link:focus { + color: #fefe54; + text-decoration: none; + background-color: #0a0; +} +.btn-link[disabled]:hover, +.btn-link[disabled]:focus { + color: #555; + text-decoration: none; +} +.btn-group { + position: relative; + display: inline-block; + *display: inline; + *margin-left: 0.3em; + font-size: 0; + white-space: nowrap; + vertical-align: middle; + *zoom: 1; +} +.btn-group:first-child { + *margin-left: 0; +} +.btn-group + .btn-group { + margin-left: 0; +} +.btn-toolbar { + margin-top: 20px; + margin-bottom: 20px; + font-size: 0; +} +.btn-toolbar > .btn + .btn, +.btn-toolbar > .btn-group + .btn, +.btn-toolbar > .btn + .btn-group { + margin-left: 5px; +} +.btn-group > .btn { + position: relative; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.btn-group > .btn + .btn { + margin-left: -1px; +} +.btn-group > .btn, +.btn-group > .dropdown-menu, +.btn-group > .popover { + font-size: 18px; +} +.btn-group > .btn-mini { + font-size: 18px; +} +.btn-group > .btn-small { + font-size: 18px; +} +.btn-group > .btn-large { + font-size: 18px; +} +.btn-group > .btn:first-child { + margin-left: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-bottomleft: 0; + -moz-border-radius-topleft: 0; +} +.btn-group > .btn:last-child, +.btn-group > .dropdown-toggle { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 0; +} +.btn-group > .btn.large:first-child { + margin-left: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-bottomleft: 0; + -moz-border-radius-topleft: 0; +} +.btn-group > .btn.large:last-child, +.btn-group > .large.dropdown-toggle { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 0; +} +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; +} +.btn-group > .btn + .dropdown-toggle { + *padding-top: 14px; + padding-right: 8px; + *padding-bottom: 14px; + padding-left: 8px; +} +.btn-group > .btn-mini + .dropdown-toggle { + *padding-top: 2px; + padding-right: 5px; + *padding-bottom: 2px; + padding-left: 5px; +} +.btn-group > .btn-small + .dropdown-toggle { + *padding-top: 5px; + *padding-bottom: 4px; +} +.btn-group > .btn-large + .dropdown-toggle { + *padding-top: 7px; + padding-right: 12px; + *padding-bottom: 7px; + padding-left: 12px; +} +.btn-group.open .dropdown-toggle { + background-image: none; +} +.btn-group.open .btn.dropdown-toggle { + background-color: #a50; +} +.btn-group.open .btn-primary.dropdown-toggle { + background-color: #fefe54; +} +.btn-group.open .btn-warning.dropdown-toggle { + background-color: #a85400; +} +.btn-group.open .btn-danger.dropdown-toggle { + background-color: #bd362f; +} +.btn-group.open .btn-success.dropdown-toggle { + background-color: #51a351; +} +.btn-group.open .btn-info.dropdown-toggle { + background-color: #2f96b4; +} +.btn-group.open .btn-inverse.dropdown-toggle { + background-color: #555; +} +.btn .caret { + margin-top: 0; + margin-left: 0; +} +.btn-large .caret { + margin-top: 0; +} +.btn-large .caret { + border-top-width: 5px; + border-right-width: 5px; + border-left-width: 5px; +} +.btn-mini .caret, +.btn-small .caret { + margin-top: 0; +} +.dropup .btn-large .caret { + border-bottom-width: 5px; +} +.btn-primary .caret, +.btn-warning .caret, +.btn-danger .caret, +.btn-info .caret, +.btn-success .caret, +.btn-inverse .caret { + border-top-color: #fff; + border-bottom-color: #fff; +} +.btn-group-vertical { + display: inline-block; + *display: inline; + *zoom: 1; +} +.btn-group-vertical > .btn { + display: block; + float: none; + max-width: 100%; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.btn-group-vertical > .btn + .btn { + margin-top: -1px; + margin-left: 0; +} +.btn-group-vertical > .btn:first-child { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.btn-group-vertical > .btn:last-child { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.btn-group-vertical > .btn-large:first-child { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.btn-group-vertical > .btn-large:last-child { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.alert { + padding: 8px 35px 8px 14px; + margin-bottom: 20px; + text-shadow: 0; + background-color: #0aa; + border: 1px solid #0aa; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.alert, +.alert h4 { + color: #fff; +} +.alert h4 { + margin: 0; +} +.alert .close { + position: relative; + top: -2px; + right: -21px; + line-height: 20px; +} +.alert-success { + color: #0a0; + background-color: #000; + border-color: #000; +} +.alert-success h4 { + color: #0a0; +} +.alert-danger, +.alert-error { + color: #fff; + background-color: #a00; + border-color: #a00; +} +.alert-danger h4, +.alert-error h4 { + color: #fff; +} +.alert-info { + color: #000; + background-color: #000; + border-color: #000; +} +.alert-info h4 { + color: #000; +} +.alert-block { + padding-top: 14px; + padding-bottom: 14px; +} +.alert-block > p, +.alert-block > ul { + margin-bottom: 0; +} +.alert-block p + p { + margin-top: 5px; +} +.nav { + margin-bottom: 20px; + margin-left: 0; + list-style: none; + background: #bbb; +} +.nav > li > a { + display: block; +} +.nav > li > a::first-letter { + color: #a00; +} +.nav > li > a:hover, +.nav > li > a:focus { + color: #bbb; + text-decoration: none; + background-color: #000; +} +.nav > li > a > img { + max-width: none; +} +.nav > .pull-right { + float: right; +} +.nav-header { + display: block; + font-weight: normal; + line-height: 20px; + color: #000; + text-transform: uppercase; +} +.nav li + .nav-header { + line-height: 20px; +} +.nav-list { + display: block; + padding: 10px 15px; + margin: 10px 5px; + margin-left: -5px; + border: 2px solid #000; + -webkit-box-shadow: + 0 0 0 5px, + 11px 13px 0 4px black; + -moz-box-shadow: + 0 0 0 5px, + 11px 13px 0 4px black; + box-shadow: + 0 0 0 5px, + 11px 13px 0 4px black; +} +.nav-list > li > a, +.nav-list .nav-header { + margin-right: -10px; + margin-left: -10px; +} +.nav-list > li > a { + padding: 0 8px; + color: #000; +} +.nav-list > .active > a, +.nav-list > .active > a:hover, +.nav-list > .active > a:focus { + color: #fff; + background-color: #0aa; +} +.nav-list [class^="icon-"], +.nav-list [class*=" icon-"] { + margin-right: 0; +} +.nav-list .divider { + *width: 100%; + height: 1px; + margin: 9px 1px; + *margin: -5px 0 5px; + overflow: hidden; + background-color: #000; + border-bottom: 1px solid #000; +} +.nav-tabs, +.nav-pills { + *zoom: 1; +} +.nav-tabs:before, +.nav-pills:before, +.nav-tabs:after, +.nav-pills:after { + display: table; + line-height: 0; + content: ""; +} +.nav-tabs:after, +.nav-pills:after { + clear: both; +} +.nav-tabs > li, +.nav-pills > li { + float: left; +} +.nav-tabs > li > a, +.nav-pills > li > a { + padding-right: 8px; + padding-left: 8px; + margin-right: 0; + line-height: 20px; + color: #000; +} +.nav-tabs { + border-bottom: 0.5em solid #bbb; +} +.nav-tabs > li { + margin-bottom: -1px; +} +.nav-tabs > li > a { + line-height: 20px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.nav-tabs > li > a:hover, +.nav-tabs > li > a:focus { + background: #000; +} +.nav-tabs > .active > a, +.nav-tabs > .active > a:hover, +.nav-tabs > .active > a:focus { + color: #bbb; + cursor: default; + background-color: #000084; + border: 0; + border-bottom-color: transparent; +} +.nav-pills > li > a { + padding-top: 0; + padding-bottom: 0; + margin-top: 0; + margin-bottom: 0; + line-height: 20px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.nav-pills > .active > a, +.nav-pills > .active > a:hover, +.nav-pills > .active > a:focus { + color: #bbb; + background-color: #fefe54; +} +.nav-stacked > li { + float: none; +} +.nav-stacked > li > a { + margin-right: 0; +} +.nav-tabs.nav-stacked { + border-bottom: 0; +} +.nav-tabs.nav-stacked > li > a { + border: 1px solid #ddd; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.nav-tabs.nav-stacked > li:first-child > a { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-topleft: 0; +} +.nav-tabs.nav-stacked > li:last-child > a { + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -moz-border-radius-bottomright: 0; + -moz-border-radius-bottomleft: 0; +} +.nav-tabs.nav-stacked > li > a:hover, +.nav-tabs.nav-stacked > li > a:focus { + z-index: 2; + border-color: #ddd; +} +.nav-pills.nav-stacked > li > a { + margin-bottom: 3px; +} +.nav-pills.nav-stacked > li:last-child > a { + margin-bottom: 1px; +} +.nav-tabs .dropdown-menu { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.nav-pills .dropdown-menu { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.nav .dropdown-toggle .caret { + margin-top: 6px; + border-top-color: #fefe54; + border-bottom-color: #fefe54; +} +.nav .dropdown-toggle:hover .caret, +.nav .dropdown-toggle:focus .caret { + border-top-color: #fefe54; + border-bottom-color: #fefe54; +} +.nav .active .dropdown-toggle .caret { + border-top-color: #fff; + border-bottom-color: #fff; +} +.nav-tabs .active .dropdown-toggle .caret { + border-top-color: #bbb; + border-bottom-color: #bbb; +} +.nav > .dropdown.active > a:hover, +.nav > .dropdown.active > a:focus { + cursor: pointer; +} +.nav-tabs .open .dropdown-toggle, +.nav-pills .open .dropdown-toggle, +.nav > li.dropdown.open.active > a:hover, +.nav > li.dropdown.open.active > a:focus { + color: #fff; + background-color: #bbb; + border-color: #bbb; +} +.nav li.dropdown.open .caret, +.nav li.dropdown.open.active .caret, +.nav li.dropdown.open a:hover .caret, +.nav li.dropdown.open a:focus .caret { + border-top-color: #fff; + border-bottom-color: #fff; + opacity: 1; + filter: alpha(opacity=100); +} +.tabs-stacked .open > a:hover, +.tabs-stacked .open > a:focus { + border-color: #bbb; +} +.tabbable { + *zoom: 1; +} +.tabbable:before, +.tabbable:after { + display: table; + line-height: 0; + content: ""; +} +.tabbable:after { + clear: both; +} +.tab-content { + overflow: auto; +} +.tabs-below > .nav-tabs, +.tabs-right > .nav-tabs, +.tabs-left > .nav-tabs { + border-bottom: 0; +} +.tab-content > .tab-pane, +.pill-content > .pill-pane { + display: none; +} +.tab-content > .active, +.pill-content > .active { + display: block; +} +.tabs-below > .nav-tabs { + border-top: 1px solid #ddd; +} +.tabs-below > .nav-tabs > li { + margin-top: -1px; + margin-bottom: 0; +} +.tabs-below > .nav-tabs > li > a { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.tabs-below > .nav-tabs > li > a:hover, +.tabs-below > .nav-tabs > li > a:focus { + border-top-color: #ddd; + border-bottom-color: transparent; +} +.tabs-below > .nav-tabs > .active > a, +.tabs-below > .nav-tabs > .active > a:hover, +.tabs-below > .nav-tabs > .active > a:focus { + border-color: transparent #ddd #ddd #ddd; +} +.tabs-left > .nav-tabs > li, +.tabs-right > .nav-tabs > li { + float: none; +} +.tabs-left > .nav-tabs > li > a, +.tabs-right > .nav-tabs > li > a { + min-width: 74px; + margin-right: 0; + margin-bottom: 0; +} +.tabs-left > .nav-tabs { + float: left; + margin-right: 18px; + border-right: 1px solid #ddd; +} +.tabs-left > .nav-tabs > li > a { + margin-right: -1px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.tabs-left > .nav-tabs > li > a:hover, +.tabs-left > .nav-tabs > li > a:focus { + border-color: #bbb #ddd #bbb #bbb; +} +.tabs-left > .nav-tabs .active > a, +.tabs-left > .nav-tabs .active > a:hover, +.tabs-left > .nav-tabs .active > a:focus { + border-color: #ddd transparent #ddd #ddd; + *border-right-color: #fff; +} +.tabs-right > .nav-tabs { + float: right; + margin-left: 19px; + border-left: 1px solid #ddd; +} +.tabs-right > .nav-tabs > li > a { + margin-left: -1px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.tabs-right > .nav-tabs > li > a:hover, +.tabs-right > .nav-tabs > li > a:focus { + border-color: #bbb #bbb #bbb #ddd; +} +.tabs-right > .nav-tabs .active > a, +.tabs-right > .nav-tabs .active > a:hover, +.tabs-right > .nav-tabs .active > a:focus { + border-color: #ddd #ddd #ddd transparent; + *border-left-color: #fff; +} +.nav > .disabled > a { + color: #bbb; +} +.nav > .disabled > a:hover, +.nav > .disabled > a:focus { + text-decoration: none; + cursor: default; + background-color: transparent; +} +.navbar { + *position: relative; + *z-index: 2; + margin-bottom: 20px; + overflow: visible; +} +.navbar-inner { + min-height: 20px; + padding-right: 12.4px; + padding-left: 12.4px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + *zoom: 1; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} +.navbar-inner:before, +.navbar-inner:after { + display: table; + line-height: 0; + content: ""; +} +.navbar-inner:after { + clear: both; +} +.navbar .container { + width: auto; +} +.nav-collapse.collapse { + height: auto; + overflow: visible; +} +.navbar .brand { + display: block; + float: left; + padding: 0 10px; + margin-left: -10px; + font-size: 18px; + color: #000084; + text-shadow: 0; +} +.navbar .brand:hover, +.navbar .brand:focus { + text-decoration: none; +} +.navbar-text { + margin-bottom: 0; + line-height: 20px; + color: #000; +} +.navbar-link { + color: #000; +} +.navbar-link:hover, +.navbar-link:focus { + color: #555; +} +.navbar .divider-vertical { + height: 20px; + margin: 0 12.4px; + border-right: 1px solid #fff; + border-left: 1px solid #bbb; +} +.navbar .btn, +.navbar .btn-group { + margin-top: -5px; +} +.navbar .btn-group .btn, +.navbar .input-prepend .btn, +.navbar .input-append .btn, +.navbar .input-prepend .btn-group, +.navbar .input-append .btn-group { + margin-top: 0; +} +.navbar-form { + margin-bottom: 0; + *zoom: 1; +} +.navbar-form:before, +.navbar-form:after { + display: table; + line-height: 0; + content: ""; +} +.navbar-form:after { + clear: both; +} +.navbar-form input, +.navbar-form select, +.navbar-form .radio, +.navbar-form .checkbox { + margin-top: -5px; +} +.navbar-form input, +.navbar-form select, +.navbar-form .btn { + display: inline-block; + margin-bottom: 0; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} +.navbar-form input[type="image"], +.navbar-form input[type="checkbox"], +.navbar-form input[type="radio"] { + margin-top: 3px; +} +.navbar-form .input-append, +.navbar-form .input-prepend { + margin-top: 5px; + white-space: nowrap; +} +.navbar-form .input-append input, +.navbar-form .input-prepend input { + margin-top: 0; +} +.navbar-search { + position: relative; + float: left; + margin-top: -5px; + margin-bottom: 0; +} +.navbar-search .search-query { + padding: 4px 12.4px; + margin-bottom: 0; + font-family: DOS, Monaco, Menlo, Consolas, "Courier New", monospace; + font-size: 18px; + font-weight: normal; + line-height: 1; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.navbar-static-top { + position: static; + margin-bottom: 0; +} +.navbar-static-top .navbar-inner { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.navbar-fixed-top, +.navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030; + margin-bottom: 0; +} +.navbar-fixed-top .navbar-inner, +.navbar-static-top .navbar-inner { + border-width: 0; +} +.navbar-fixed-bottom .navbar-inner { + border-width: 0; +} +.navbar-fixed-top .navbar-inner, +.navbar-fixed-bottom .navbar-inner { + padding-right: 0; + padding-left: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.navbar-static-top .container, +.navbar-fixed-top .container, +.navbar-fixed-bottom .container { + width: 944px; +} +.navbar-fixed-top { + top: 0; +} +.navbar-fixed-top .navbar-inner, +.navbar-static-top .navbar-inner { + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} +.navbar-fixed-bottom { + bottom: 0; +} +.navbar-fixed-bottom .navbar-inner { + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} +.navbar .nav { + position: relative; + left: 0; + display: block; + float: left; + margin: 0 20px 0 0; +} +.navbar .nav.pull-right { + float: right; + margin-right: 0; +} +.navbar .nav > li { + float: left; + padding-left: 0; +} +.navbar .nav > li > a { + float: none; + padding: 0 10px; + color: #000; + text-decoration: none; + text-shadow: 0; +} +.navbar .nav .dropdown-toggle .caret { + margin-top: 0; +} +.navbar .nav > li > a:focus, +.navbar .nav > li > a:hover { + color: #555; + text-decoration: none; + background-color: transparent; +} +.navbar .nav > .active > a, +.navbar .nav > .active > a:hover, +.navbar .nav > .active > a:focus { + color: #bbb; + text-decoration: none; + background-color: #bbb; +} +.navbar .btn-navbar { + display: none; + float: right; + padding: 0 12.4px; + margin-right: 12.4px; + margin-left: 12.4px; + *background-color: #aeaeae; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} +.navbar .btn-navbar:hover, +.navbar .btn-navbar:focus, +.navbar .btn-navbar:active, +.navbar .btn-navbar.active, +.navbar .btn-navbar.disabled, +.navbar .btn-navbar[disabled] { + color: #fff; +} +.navbar .btn-navbar .icon-bar { + display: block; + width: 18px; + height: 2px; + background-color: #f5f5f5; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.btn-navbar .icon-bar + .icon-bar { + margin-top: 3px; +} +.navbar .nav > li > .dropdown-menu:before { + position: absolute; + top: -7px; + left: 9px; + display: inline-block; + border-right: 7px solid transparent; + border-bottom: 7px solid #ccc; + border-left: 7px solid transparent; + border-bottom-color: rgba(0, 0, 0, 0.2); + content: ""; +} +.navbar .nav > li > .dropdown-menu:after { + position: absolute; + top: -6px; + left: 10px; + display: inline-block; + border-right: 6px solid transparent; + border-bottom: 6px solid #fff; + border-left: 6px solid transparent; + content: ""; +} +.navbar-fixed-bottom .nav > li > .dropdown-menu:before { + top: auto; + bottom: -7px; + border-top: 7px solid #ccc; + border-bottom: 0; + border-top-color: rgba(0, 0, 0, 0.2); +} +.navbar-fixed-bottom .nav > li > .dropdown-menu:after { + top: auto; + bottom: -6px; + border-top: 6px solid #fff; + border-bottom: 0; +} +.navbar .nav li.dropdown > a:hover .caret, +.navbar .nav li.dropdown > a:focus .caret { + border-top-color: #555; + border-bottom-color: #555; +} +.navbar .nav li.dropdown.open > .dropdown-toggle, +.navbar .nav li.dropdown.active > .dropdown-toggle, +.navbar .nav li.dropdown.open.active > .dropdown-toggle { + color: #bbb; + background-color: #bbb; +} +.navbar .nav li.dropdown > .dropdown-toggle .caret { + border-top-color: #000; + border-bottom-color: #000; +} +.navbar .nav li.dropdown.open > .dropdown-toggle .caret, +.navbar .nav li.dropdown.active > .dropdown-toggle .caret, +.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret { + border-top-color: #bbb; + border-bottom-color: #bbb; +} +.navbar .pull-right > li > .dropdown-menu, +.navbar .nav > li > .dropdown-menu.pull-right { + right: 0; + left: auto; +} +.navbar .pull-right > li > .dropdown-menu:before, +.navbar .nav > li > .dropdown-menu.pull-right:before { + right: 12px; + left: auto; +} +.navbar .pull-right > li > .dropdown-menu:after, +.navbar .nav > li > .dropdown-menu.pull-right:after { + right: 13px; + left: auto; +} +.navbar .pull-right > li > .dropdown-menu .dropdown-menu, +.navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu { + right: 100%; + left: auto; + margin-right: -1px; + margin-left: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.navbar-inverse .navbar-inner { + background: #bbb; +} +.navbar-inverse .brand, +.navbar-inverse .nav > li > a { + color: #000; + text-shadow: 0; + background: #bbb; +} +.navbar-inverse .brand:hover, +.navbar-inverse .nav > li > a:hover, +.navbar-inverse .brand:focus, +.navbar-inverse .nav > li > a:focus { + color: #bbb; + background: #000; +} +.navbar-inverse .brand { + color: #000084; +} +.navbar-inverse .navbar-text { + color: #000; +} +.navbar-inverse .nav > li > a:focus, +.navbar-inverse .nav > li > a:hover { + color: #bbb; + background: #000; +} +.navbar-inverse .nav .active > a, +.navbar-inverse .nav .active > a:hover, +.navbar-inverse .nav .active > a:focus { + color: #bbb; + text-decoration: none; + background: #000; +} +.navbar-inverse .navbar-link { + color: #000; +} +.navbar-inverse .navbar-link:hover, +.navbar-inverse .navbar-link:focus { + color: #fff; +} +.navbar-inverse .divider-vertical { + border-right-color: #000; + border-left-color: #000; +} +.navbar-inverse .nav li.dropdown.open > .dropdown-toggle, +.navbar-inverse .nav li.dropdown.active > .dropdown-toggle, +.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle { + color: #fff; + background-color: #000; +} +.navbar-inverse .nav li.dropdown > a:hover .caret, +.navbar-inverse .nav li.dropdown > a:focus .caret { + border-top-color: #fff; + border-bottom-color: #fff; +} +.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret { + border-top-color: #000; + border-bottom-color: #000; +} +.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret, +.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret, +.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret { + border-top-color: #fff; + border-bottom-color: #fff; +} +.navbar-inverse .navbar-search .search-query { + color: #fff; + background-color: #404040; + border-color: #000; + -webkit-transition: none; + -moz-transition: none; + -o-transition: none; + transition: none; +} +.navbar-inverse .navbar-search .search-query:-moz-placeholder { + color: #ccc; +} +.navbar-inverse .navbar-search .search-query:-ms-input-placeholder { + color: #ccc; +} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder { + color: #ccc; +} +.navbar-inverse .navbar-search .search-query:focus, +.navbar-inverse .navbar-search .search-query.focused { + padding: 0 20px; + color: #555; + text-shadow: 0; + background-color: #fff; + border: 0; + outline: 0; +} +.navbar-inverse .btn-navbar { + *background-color: #000; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); +} +.navbar-inverse .btn-navbar:hover, +.navbar-inverse .btn-navbar:focus, +.navbar-inverse .btn-navbar:active, +.navbar-inverse .btn-navbar.active, +.navbar-inverse .btn-navbar.disabled, +.navbar-inverse .btn-navbar[disabled] { + color: #fff; +} +.breadcrumb:before { + content: ">>"; +} +.breadcrumb { + padding: 0 20px; + margin: 0 0 20px; + list-style: none; + background-color: #000; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.breadcrumb > li { + display: inline-block; + *display: inline; + text-shadow: 0; + *zoom: 1; +} +.breadcrumb > li > .divider { + padding: 0 10px; + color: #bbb; +} +.breadcrumb > .active { + color: #bbb; +} +.pagination { + margin: 20px 0; +} +.pagination ul { + display: inline-block; + *display: inline; + margin-bottom: 0; + margin-left: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + *zoom: 1; + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); +} +.pagination ul > li { + display: inline; +} +.pagination ul > li > a, +.pagination ul > li > span { + float: left; + padding: 20px 10px; + line-height: 20px; + text-decoration: none; + background-color: #0a0; + border: 0; + border-left-width: 0; +} +.pagination ul > li > a:hover, +.pagination ul > li > a:focus, +.pagination ul > .active > a, +.pagination ul > .active > span { + background-color: #f5f5f5; +} +.pagination ul > .active > a, +.pagination ul > .active > span { + color: #bbb; + cursor: default; +} +.pagination ul > .disabled > span, +.pagination ul > .disabled > a, +.pagination ul > .disabled > a:hover, +.pagination ul > .disabled > a:focus { + color: #bbb; + cursor: default; + background-color: transparent; +} +.pagination ul > li:first-child > a, +.pagination ul > li:first-child > span { + border-left-width: 1px; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-bottomleft: 0; + -moz-border-radius-topleft: 0; +} +.pagination ul > li:last-child > a, +.pagination ul > li:last-child > span { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 0; +} +.pagination-centered { + text-align: center; +} +.pagination-right { + text-align: right; +} +.pagination-large ul > li > a, +.pagination-large ul > li > span { + padding: 18px; + font-size: 18px; +} +.pagination-large ul > li:first-child > a, +.pagination-large ul > li:first-child > span { + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-bottomleft: 0; + -moz-border-radius-topleft: 0; +} +.pagination-large ul > li:last-child > a, +.pagination-large ul > li:last-child > span { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 0; +} +.pagination-mini ul > li:first-child > a, +.pagination-small ul > li:first-child > a, +.pagination-mini ul > li:first-child > span, +.pagination-small ul > li:first-child > span { + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-bottomleft: 0; + -moz-border-radius-topleft: 0; +} +.pagination-mini ul > li:last-child > a, +.pagination-small ul > li:last-child > a, +.pagination-mini ul > li:last-child > span, +.pagination-small ul > li:last-child > span { + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-topright: 0; + -moz-border-radius-bottomright: 0; +} +.pagination-small ul > li > a, +.pagination-small ul > li > span { + padding: 0; + font-size: 18px; +} +.pagination-mini ul > li > a, +.pagination-mini ul > li > span { + padding: 0; + font-size: 18px; +} +.pager { + margin: 20px 0; + text-align: center; + list-style: none; + *zoom: 1; +} +.pager:before, +.pager:after { + display: table; + line-height: 0; + content: ""; +} +.pager:after { + clear: both; +} +.pager li { + display: inline; +} +.pager li > a, +.pager li > span { + display: inline-block; + padding: 0 20px; + background-color: #555; +} +.pager li > a:hover, +.pager li > a:focus { + text-decoration: none; +} +.pager .next > a, +.pager .next > span { + float: right; +} +.pager .previous > a, +.pager .previous > span { + float: left; +} +.pager .disabled > a, +.pager .disabled > a:hover, +.pager .disabled > a:focus, +.pager .disabled > span { + color: #bbb; + cursor: default; + background-color: #555; +} +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000; +} +.modal-backdrop.fade { + opacity: 0; +} +.modal-backdrop, +.modal-backdrop.fade.in { + opacity: 0.8; + filter: alpha(opacity=80); +} +.modal { + position: fixed; + top: 10%; + left: 50%; + z-index: 1050; + width: 560px; + margin-left: -280px; + background-color: #fff; + border: 1px solid #999; + border: 1px solid rgba(0, 0, 0, 0.3); + *border: 1px solid #999; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + outline: 0; + -webkit-background-clip: padding-box; + -moz-background-clip: padding-box; + background-clip: padding-box; +} +.modal.fade { + top: -25%; +} +.modal.fade.in { + top: 10%; +} +.modal-header { + padding: 9px 15px; + border-bottom: 1px solid #eee; +} +.modal-header .close { + margin-top: 2px; +} +.modal-header h3 { + margin: 0; + line-height: 30px; +} +.modal-body { + position: relative; + max-height: 400px; + padding: 15px; + overflow-y: auto; +} +.modal-form { + margin-bottom: 0; +} +.modal-footer { + padding: 14px 15px 15px; + margin-bottom: 0; + text-align: right; + background-color: #f5f5f5; + border-top: 1px solid #ddd; + *zoom: 1; +} +.modal-footer:before, +.modal-footer:after { + display: table; + line-height: 0; + content: ""; +} +.modal-footer:after { + clear: both; +} +.modal-footer .btn + .btn { + margin-bottom: 0; + margin-left: 5px; +} +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; +} +.modal-footer .btn-block + .btn-block { + margin-left: 0; +} +.tooltip { + position: absolute; + z-index: 1030; + display: block; + font-size: 18px; + line-height: 1; + opacity: 0; + filter: alpha(opacity=0); + visibility: visible; +} +.tooltip.in { + opacity: 0.8; + filter: alpha(opacity=80); +} +.tooltip.top { + padding: 9px 0 9px; + margin-top: -3px; +} +.tooltip.right { + padding: 0 4px 0 4px; + margin-left: 3px; +} +.tooltip.bottom { + padding: 9px 0 9px; + margin-top: 3px; +} +.tooltip.left { + padding: 0 4px 0 4px; + margin-left: -3px; +} +.tooltip-inner { + max-width: 310px; + padding: 9px 4px 9px 4px; + color: #fff; + text-align: center; + text-decoration: none; + background-color: #000; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-top-color: #000; + border-width: 5px 5px 0; +} +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-right-color: #000; + border-width: 5px 5px 5px 0; +} +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-left-color: #000; + border-width: 5px 0 5px 5px; +} +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-bottom-color: #000; + border-width: 0 5px 5px; +} +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1010; + display: none; + max-width: 496px; + padding: 1px; + text-align: left; + white-space: normal; + background-color: #fff; + -webkit-background-clip: padding-box; + -moz-background-clip: padding; + background-clip: padding-box; +} +.popover.top { + margin-top: -10px; +} +.popover.right { + margin-left: 10px; +} +.popover.bottom { + margin-top: 10px; +} +.popover.left { + margin-left: -10px; +} +.popover-title { + padding: 8px 14px; + margin: 0; + font-size: 14px; + font-weight: normal; + line-height: 18px; + background-color: #fff; + border-bottom: 1px solid #f2f2f2; +} +.popover-title:empty { + display: none; +} +.popover-content { + padding: 9px 14px; +} +.popover .arrow, +.popover .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.popover .arrow { + border-width: 11px; +} +.popover .arrow:after { + border-width: 10px; + content: ""; +} +.popover.top .arrow { + bottom: -11px; + left: 50%; + margin-left: -11px; + border-top-color: #999; + border-top-color: rgba(0, 0, 0, 0.25); + border-bottom-width: 0; +} +.popover.top .arrow:after { + bottom: 1px; + margin-left: -10px; + border-top-color: #fff; + border-bottom-width: 0; +} +.popover.right .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-right-color: #999; + border-right-color: rgba(0, 0, 0, 0.25); + border-left-width: 0; +} +.popover.right .arrow:after { + bottom: -10px; + left: 1px; + border-right-color: #fff; + border-left-width: 0; +} +.popover.bottom .arrow { + top: -11px; + left: 50%; + margin-left: -11px; + border-bottom-color: #999; + border-bottom-color: rgba(0, 0, 0, 0.25); + border-top-width: 0; +} +.popover.bottom .arrow:after { + top: 1px; + margin-left: -10px; + border-bottom-color: #fff; + border-top-width: 0; +} +.popover.left .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-left-color: #999; + border-left-color: rgba(0, 0, 0, 0.25); + border-right-width: 0; +} +.popover.left .arrow:after { + right: 1px; + bottom: -10px; + border-left-color: #fff; + border-right-width: 0; +} +.thumbnails { + margin-left: -16px; + list-style: none; + *zoom: 1; +} +.thumbnails:before, +.thumbnails:after { + display: table; + line-height: 0; + content: ""; +} +.thumbnails:after { + clear: both; +} +.row-fluid .thumbnails { + margin-left: 0; +} +.thumbnails > li { + float: left; + margin-bottom: 20px; + margin-left: 16px; +} +.thumbnail { + display: block; + padding: 3px 6px; + margin: 4px 3px; + line-height: 20px; + border: 1px solid #ddd; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} +a.thumbnail:hover, +a.thumbnail:focus { + border-color: #fefe54; + -webkit-box-shadow: 0; + -moz-box-shadow: 0; + box-shadow: 0; +} +.thumbnail > img { + display: block; + max-width: 100%; + margin-right: auto; + margin-left: auto; +} +.thumbnail .caption { + padding: 9px; + color: #bbb; +} +.media, +.media-body { + overflow: hidden; + *overflow: visible; + zoom: 1; +} +.media, +.media .media { + margin-top: 15px; +} +.media:first-child { + margin-top: 0; +} +.media-object { + display: block; +} +.media-heading { + margin: 0 0 5px; +} +.media > .pull-left { + margin-right: 10px; +} +.media > .pull-right { + margin-left: 10px; +} +.media-list { + margin-left: 0; + list-style: none; +} +.label, +.badge { + display: inline-block; + padding: 0 12.4px; + font-size: 18px; + line-height: 20px; + color: #fff; + white-space: nowrap; + vertical-align: baseline; + background-color: #555; +} +.badge { + padding-right: 12.4px; + padding-left: 12.4px; +} +.label:empty, +.badge:empty { + display: none; +} +a.label:hover, +a.label:focus, +a.badge:hover, +a.badge:focus { + color: #fff; + text-decoration: none; + cursor: pointer; +} +.label-important, +.badge-important { + background-color: #a00; +} +.label-important[href], +.badge-important[href] { + background-color: #a00; +} +.label-warning, +.badge-warning { + background-color: #a85400; +} +.label-warning[href], +.badge-warning[href] { + background-color: #a85400; +} +.label-success, +.badge-success { + background-color: #0a0; +} +.label-success[href], +.badge-success[href] { + background-color: #0a0; +} +.label-info, +.badge-info { + background-color: #000; +} +.label-info[href], +.badge-info[href] { + background-color: #000; +} +.label-inverse, +.badge-inverse { + background-color: #555; +} +.label-inverse[href], +.badge-inverse[href] { + background-color: #555; +} +.btn .label, +.btn .badge { + position: relative; + top: -1px; +} +.btn-mini .label, +.btn-mini .badge { + top: 0; +} +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@-moz-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@-ms-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@-o-keyframes progress-bar-stripes { + from { + background-position: 0 0; + } + to { + background-position: 40px 0; + } +} +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +.progress { + height: 20px; + margin-bottom: 20px; + overflow: hidden; + background-color: #f7f7f7; + background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: -webkit-gradient( + linear, + 0 0, + 0 100%, + from(#f5f5f5), + to(#f9f9f9) + ); + background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9); + background-repeat: repeat-x; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#fff9f9f9',GradientType=0); +} +.progress .bar { + float: left; + width: 0; + height: 100%; + font-size: 12px; + color: #fff; + text-align: center; + text-shadow: 0; + background-color: #0e90d2; + background-image: -moz-linear-gradient(top, #149bdf, #0480be); + background-image: -webkit-gradient( + linear, + 0 0, + 0 100%, + from(#149bdf), + to(#0480be) + ); + background-image: -webkit-linear-gradient(top, #149bdf, #0480be); + background-image: -o-linear-gradient(top, #149bdf, #0480be); + background-image: linear-gradient(to bottom, #149bdf, #0480be); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf',endColorstr='#ff0480be',GradientType=0); + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + -webkit-transition: width 0.6s ease; + -moz-transition: width 0.6s ease; + -o-transition: width 0.6s ease; + transition: width 0.6s ease; +} +.progress-striped .bar { + background-color: #149bdf; + background-image: -webkit-gradient( + linear, + 0 100%, + 100% 0, + color-stop(0.25, rgba(255, 255, 255, 0.15)), + color-stop(0.25, transparent), + color-stop(0.5, transparent), + color-stop(0.5, rgba(255, 255, 255, 0.15)), + color-stop(0.75, rgba(255, 255, 255, 0.15)), + color-stop(0.75, transparent), + to(transparent) + ); + background-image: -webkit-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -moz-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -o-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + -webkit-background-size: 40px 40px; + -moz-background-size: 40px 40px; + -o-background-size: 40px 40px; + background-size: 40px 40px; +} +.progress.active .bar { + -webkit-animation: progress-bar-stripes 2s linear infinite; + -moz-animation: progress-bar-stripes 2s linear infinite; + -ms-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; +} +.progress-danger .bar, +.progress .bar-danger { + background-color: #dd514c; + background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35); + background-image: -webkit-gradient( + linear, + 0 0, + 0 100%, + from(#ee5f5b), + to(#c43c35) + ); + background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35); + background-image: -o-linear-gradient(top, #ee5f5b, #c43c35); + background-image: linear-gradient(to bottom, #ee5f5b, #c43c35); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffc43c35',GradientType=0); +} +.progress-danger.progress-striped .bar, +.progress-striped .bar-danger { + background-color: #ee5f5b; + background-image: -webkit-gradient( + linear, + 0 100%, + 100% 0, + color-stop(0.25, rgba(255, 255, 255, 0.15)), + color-stop(0.25, transparent), + color-stop(0.5, transparent), + color-stop(0.5, rgba(255, 255, 255, 0.15)), + color-stop(0.75, rgba(255, 255, 255, 0.15)), + color-stop(0.75, transparent), + to(transparent) + ); + background-image: -webkit-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -moz-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -o-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); +} +.progress-success .bar, +.progress .bar-success { + background-color: #5eb95e; + background-image: -moz-linear-gradient(top, #62c462, #57a957); + background-image: -webkit-gradient( + linear, + 0 0, + 0 100%, + from(#62c462), + to(#57a957) + ); + background-image: -webkit-linear-gradient(top, #62c462, #57a957); + background-image: -o-linear-gradient(top, #62c462, #57a957); + background-image: linear-gradient(to bottom, #62c462, #57a957); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff57a957',GradientType=0); +} +.progress-success.progress-striped .bar, +.progress-striped .bar-success { + background-color: #62c462; + background-image: -webkit-gradient( + linear, + 0 100%, + 100% 0, + color-stop(0.25, rgba(255, 255, 255, 0.15)), + color-stop(0.25, transparent), + color-stop(0.5, transparent), + color-stop(0.5, rgba(255, 255, 255, 0.15)), + color-stop(0.75, rgba(255, 255, 255, 0.15)), + color-stop(0.75, transparent), + to(transparent) + ); + background-image: -webkit-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -moz-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -o-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); +} +.progress-info .bar, +.progress .bar-info { + background-color: #4bb1cf; + background-image: -moz-linear-gradient(top, #5bc0de, #339bb9); + background-image: -webkit-gradient( + linear, + 0 0, + 0 100%, + from(#5bc0de), + to(#339bb9) + ); + background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9); + background-image: -o-linear-gradient(top, #5bc0de, #339bb9); + background-image: linear-gradient(to bottom, #5bc0de, #339bb9); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff339bb9',GradientType=0); +} +.progress-info.progress-striped .bar, +.progress-striped .bar-info { + background-color: #5bc0de; + background-image: -webkit-gradient( + linear, + 0 100%, + 100% 0, + color-stop(0.25, rgba(255, 255, 255, 0.15)), + color-stop(0.25, transparent), + color-stop(0.5, transparent), + color-stop(0.5, rgba(255, 255, 255, 0.15)), + color-stop(0.75, rgba(255, 255, 255, 0.15)), + color-stop(0.75, transparent), + to(transparent) + ); + background-image: -webkit-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -moz-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -o-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); +} +.progress-warning .bar, +.progress .bar-warning { + background-color: #d66b00; + background-image: -moz-linear-gradient(top, #f47a00, #a85400); + background-image: -webkit-gradient( + linear, + 0 0, + 0 100%, + from(#f47a00), + to(#a85400) + ); + background-image: -webkit-linear-gradient(top, #f47a00, #a85400); + background-image: -o-linear-gradient(top, #f47a00, #a85400); + background-image: linear-gradient(to bottom, #f47a00, #a85400); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff47a00',endColorstr='#ffa85400',GradientType=0); +} +.progress-warning.progress-striped .bar, +.progress-striped .bar-warning { + background-color: #f47a00; + background-image: -webkit-gradient( + linear, + 0 100%, + 100% 0, + color-stop(0.25, rgba(255, 255, 255, 0.15)), + color-stop(0.25, transparent), + color-stop(0.5, transparent), + color-stop(0.5, rgba(255, 255, 255, 0.15)), + color-stop(0.75, rgba(255, 255, 255, 0.15)), + color-stop(0.75, transparent), + to(transparent) + ); + background-image: -webkit-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -moz-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: -o-linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-image: linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); +} +.accordion { + margin-bottom: 20px; +} +.accordion-group { + margin-bottom: 2px; + border: 1px solid #e5e5e5; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} +.accordion-heading { + border-bottom: 0; +} +.accordion-heading .accordion-toggle { + display: block; + padding: 8px 15px; +} +.accordion-toggle { + cursor: pointer; +} +.accordion-inner { + padding: 9px 15px; + border-top: 1px solid #e5e5e5; +} +.carousel { + position: relative; + margin-bottom: 20px; + line-height: 1; +} +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} +.carousel-inner > .item { + position: relative; + display: none; +} +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + display: block; + line-height: 1; +} +.carousel-inner > .active, +.carousel-inner > .next, +.carousel-inner > .prev { + display: block; +} +.carousel-inner > .active { + left: 0; +} +.carousel-inner > .next, +.carousel-inner > .prev { + position: absolute; + top: 0; + width: 100%; +} +.carousel-inner > .next { + left: 100%; +} +.carousel-inner > .prev { + left: -100%; +} +.carousel-inner > .next.left, +.carousel-inner > .prev.right { + left: 0; +} +.carousel-inner > .active.left { + left: -100%; +} +.carousel-inner > .active.right { + left: 100%; +} +.carousel-control { + position: absolute; + top: 40%; + left: 15px; + width: 40px; + height: 40px; + margin-top: -20px; + font-size: 60px; + font-weight: 100; + line-height: 30px; + color: #fff; + text-align: center; + background: #555; + border: 3px solid #fff; + opacity: 0.5; + filter: alpha(opacity=50); +} +.carousel-control.right { + right: 15px; + left: auto; +} +.carousel-control:hover, +.carousel-control:focus { + color: #fff; + text-decoration: none; + opacity: 0.9; + filter: alpha(opacity=90); +} +.carousel-indicators { + position: absolute; + top: 15px; + right: 15px; + z-index: 5; + margin: 0; + list-style: none; +} +.carousel-indicators li { + display: block; + float: left; + width: 10px; + height: 10px; + margin-left: 5px; + text-indent: -999px; + background-color: #ccc; + background-color: rgba(255, 255, 255, 0.25); +} +.carousel-indicators .active { + background-color: #fff; +} +.carousel-caption { + position: absolute; + right: 0; + bottom: 0; + left: 0; + padding: 15px; + background: #555; + background: rgba(0, 0, 0, 0.75); +} +.carousel-caption h4, +.carousel-caption p { + line-height: 20px; + color: #fff; +} +.carousel-caption h4 { + margin: 0 0 5px; +} +.carousel-caption p { + margin-bottom: 0; +} +.hero-unit { + padding: 16px 20.8px; + margin-bottom: 20px; + font-size: 18px; + line-height: 20px; + color: #fff; + background-color: #0aa; + border: 4px double #fff; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + box-shadow: 0 0 0 4px #0aa; +} +.hero-unit h1 { + margin-bottom: 20px; + font-size: 18px; + line-height: 1; + color: #fff; + text-align: center; + text-decoration: blink; +} +.hero-unit li { + line-height: 20px; +} +.pull-right { + float: right; +} +.pull-left { + float: left; +} +.hide { + display: none; +} +.show { + display: block; +} +.invisible { + visibility: hidden; +} +#wrap386 { + position: fixed; + right: 0; + bottom: 0; + z-index: 9999999; + width: 100%; + height: 100%; + background: #000084; +} +#bar386 { + float: right; + width: 100%; + height: 20px; + margin-top: -20px; + font-weight: bold; + color: #fff; + background: #000084; +} +#cursor386 { + position: fixed; + right: 0; + bottom: 0; + z-index: 9999999; + font-weight: bold; + color: #fff; +} diff --git a/web/static/css/fonts/Fixedsys500c.eot b/web/static/css/fonts/Fixedsys500c.eot new file mode 100644 index 0000000000000000000000000000000000000000..843de04134e5d88e9cde8f66ca2bec63cdba0101 GIT binary patch literal 27396 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 Xt30z85ik9k#6iaJ%aufMTg(3g-MlBr literal 0 HcmV?d00001 diff --git a/web/static/css/fonts/Fixedsys500c.otf b/web/static/css/fonts/Fixedsys500c.otf new file mode 100644 index 0000000000000000000000000000000000000000..8b45fb920c8e9f3c06619d1c06a998df47292e23 GIT binary patch literal 55624 zcmeHw3w%_?z5i@TcDEs}f^JL#YE-nkRX}`eYi%`Tv!W49Vl|~^73(8?S{76>b133TOWV1xVtfJ*Y=8~KJK->{d?PMz5mX}6Wssz`q><#R;uT%@#9<0JofD+ z2PyTtYn4(X8&7W-A1G7hxbDDpee*eE#$7w%_ScjO)Z_Xq7hXQ)3U%hczpT`df5-o? zUOaWmMVsf{@erQX{$4txsv|H1!J7hgW->iS1&SE9ZZsN;v1Pr3REl|37e z0yRj2Gp1ZV^`^5wAH(%LrOGb4V&?2Q`L*h3^e>L*^(w%kN*z-_{XZ|*^Rxd?4IT1l z+)(J@-xca4H3olI$=_%-UCmHes?lnunuYurb(y+EU5N5Co1-&=ZcfYjJfKnt42?sapmZlv!;)^?2-$o&X_%Q_L%8cTsC^n z)hIn4)m@G1E<$zJ;C~DL#^d%SS5LiY_BFFxT5xeD8lQpxv(eBLX&lpc=FAy0XJ0Yp z!l}p)tfU@=_{uj>@htR-)z{;9rlfP!H2k)yW6|fa_`9&!T>XVJXMAJotT|IJs-H8n ze$Jd}^=-$F9y^vL2K2Mu_VnECJ3)i@%)aKV; z-WN|Ic)LC@Qf{&22mLEUU&=vYK@~##pF)d6(ThD$|DI|uHB1dxdjnUaz}S>^ei!s@ks;_}AE*I3jLVX>WI2$;4 zC9v`;p!_xJpVVA+t-4NKuWnHD)Hl_))QxJsTA;oS%Dzc0Qk}}d3@%nTt6S6(b*oyc zmZ{s+a&^19L#ia4QuCPx106ghO z>H+nj`my?ndPqI2{zW~aeyV<^9#uaFH-Ah$u706@39h69LHzgrF;~3u?gq++lve~p z;ZIc#t=c29=U&5x@4Zj7df%Gbx)CGy+y8+20}ncQ)FFp{`mn=epE=^l(PPFQHSXwR zjy>-96HYwo$<(37D$sR|)1`cCEVq(QjTjgBO=yr^>#y;0}w?7%YbOlw4hdbbi;3i#u;wa_h~@ zZ&$aiS`D%FyflrU7+w?pT#OE|5FEEO)|? z+==B~Re@8hhIG0QQ(h$>dh->Trzg-*rVjb*%Y0vEj;DGe^(3^0Lby<}RNy>uZkfszwDYTEJ9 zA@pB>)b9s7c^b6vB#7bvfORZanCuT)xXfZDJ`Wz?^MPS2}e^@941`YqI^`_%8$ zM)iC3Z|WuWA{fmw^@`f0{-|CC(%qw8Q#S-|2`mZR8dw@w7Pu|2JaBv9j=+k*cLH|? zRt8oDRtMGu)&}lUSz>n?Nf26&i)72e|6L!4=Fn=f8@v`4<8*GebDF=Mo&8G@o~Qxmp*3J@ppbU^4aKT zk2q!7DG!|T$f*-gz5djjzwr1MUjM>dUp%nkTa6>n`tn(`&boTy)QL;mo^5;n{CxY~ z?VoP{Z2PSCYuj&WU)6E-1*@hUdExR4AD%j4+K6eRr%k+go1#n zS?A0ZSA6Y?uh0JSZ0E|CuX<$e(R179UNZNtx%bU|bZ&a?|Gl>M+S9MS^4jlR`-|(& zyzav5esJB!>xW-|(Dg@NKkNFr*FSju3)jDO!>}7h-OzNy)Ej2qF#m?-H#~Vm-@L@U zo9Deczj^-G<}aN8{rNo$>TlZrrisqCojaW$IlppVci!&Wv+J;~h9yrgdwkiyEqm*> zeQrDPwr}3{;B6ak`|I+uMA&@0@t&jdwnD z=Nl{QS02A|(#qK@m#yqw*|%!nRmZG4Z`JZu|F-I_)pe`Ku5MgCb@htXKU@8W)%|OR ztQo(iaZUX0tM9(%p0n_%92SaPfY0PD$qmW2;%T;JG5#@wt07s`7GS*WuGwPIsKq`@9~Z z_i?LV*427%cSPvIC@e=L^pRu2^c^U zK>apB(VEZalHE@DO6N+a0-$JZbMkqY9lN#q6Qq$=eI5y=zK^ z$7l3`K%-Oc0liK|*Ld7(aO)kX*X6wf zpK-bxaO({w6=yZ!v;-x#r_jHITE6tyj938z%|PNRXdp`J8_3dj}qwcJA78m^#i4Vo!yJ@ zj~QHHNGxW7Ck*VQ3+Q*V@b z%(l#+i8qFa7?d*bBXS83G4SgWD0T@Cu@LrH0x5zuk>JQW$U%UUUXn%eAz(tc@@2)V zAX`I;r64_(OfI!0z1yZ$vX~)6asr;%z-ldbKm&>*;LDwo;+e|7QT!NHuNm*Zx1C^RE2=Y~=H?t^e zEN6L6Q6a}lV(cz}1<3FRDf&qu;UPvKDNt|-Q4qw=-l7U2GxAnDlZIcF4wy8-iVW*! z=RpBi~yW9;w#gitnOx`HMO&st@6BWqZ^)1( zk-0I6GzExS96`et8IlG^)|vW?w{6X+&*F#~ifu_MH8c3(I~q0;(Ewu$pu%`D94isg zp&+FQ0gcp50ZQ210D%agQy{K)tHCNa^F0CvTn3Fx^Hk>o@-n&VXDxzrNER(x zh$>@AJVe7Ll^3L;`JMC87Q~f(0bNFpNipXN{;=WAD97Q4&l8SYfCX=JK1J>=aBTHp zShjk;`_4SIV9|m_3&~8;CuG?dK4ItQhdVhIxr}wQhSpXGDumSPdSpnM8$J)}l`wiE zfcXl0C@cZJCd*)Aa%AYJ3Zq2z!syW&a;>cb2}xt!=#+gbMf&jq9z#+{3fRa?xMm;G z1@q(Gj&%d{fMUP29b*UBED|F&aKnlXkuFGlawdtF*;$Jzg;rUYNFo`Gk;F1oGG{yd zws3Q>AvZb-iBXUiz~k~5X2MDfGA81zr+W%bqD%<`9;9&s=dH%c`7UalxUw3jup-oB zSrKyu`toU<+dyD?Qc)H8BBXT^tI^^OQgNQi1VG_o7c(JOBCVwV7N_u*NFaIN<}mG@#HTis zl8!Lz(lJwlU9>qMCZ!cre+WhLJs=kvWv>O3kRx`Z|E2>ZVu)G!@tDCtrIfvPS&J|a z@&xuEtm|Qx8Eq=^RBu$TUfAigaS7u+gf7lGts& zZ)GuZR;wylW*E+HIuT9Bz?m>5oQsy(PNNeFKTqtDoMwNnJ9?gh&ur$-!DV$ik zRiqh|*b2>v91)taQlgY*l7?oIT}7HfVX8NV)FekU$)g!OFf^096g2Y~7QGi zPF>sNbp1vTcbrC;tL}a&B!5mg6>j~h33m_F8PJzSo%Ov!q`d&>u;$+Ns5sQzpsSnR z>IMVbW_K7WZ_`Vn4nPfSeT1%dkv79bA3@_@cT9*r)_WfAPjWlnua4Gj6PO`*cGTk&ldocueKm#Z2G|4+rrvAO__m_*fwa?}OoBMLq@} zqY#fNOEMBU37WxMKG{z+%L+q632KoAEubj--;jy$N( zY~DIwgs{4A5x@;_tdJ7LA%eoRkCCF1Pyvo%z}$iqS>!Mp6`H4tEfL!AY?#{Z+|VlG zP1G%q*&EZb5FL*ygj&oznM(P*m_zl2A$jwOx8)5qBeF|S0EscI`F=SQX_ICBIXfm8 zY|CuDAsA57BT3=$060+tXIcDN&;y_VQWnbqsGb5%P{FMZVF{Iz4J53o^v?nN_O-hZBlH4F5v9J@;+`cAi!M1u^NIK?y!+}{d z?x9X974QQ{ihh;45#G&I_R?=c$F(#e?ySd&Dd`NS-KZ>nGt*tq~eExh~@& zDRTLV4SGc)82JnAB5*&qS`P!>SFML)TR{I0tX1qre-F2@nnhtq3@d}0hDBOgWU>SHjyak2!Ji977_g$E*`=N ztWW9J^f33e^Aez*6}sMCooWcd5_0Qwy5NdpQw3c!CDFKEWRmqFxawAS?`&l$@>(_GUCET<-O?Ne?pd=OaT0qs!vg_nQ){`ah1+<_S8g57KQ{wpcO8AYc z667ne;_gneO*{iX{Xnc3xNBK4dL+iaBn4J%YDEJjtXTZ$oN;p(&T{L}Wpy!MorV?j z&X&zTRE+j4nRFU9?2QF;EQlyNhe1gJqX4w1fTs;#-c)43zzx5vO7suRflPTpS2Arc z&r;g~30bXeLZ+WsNklWA0;7@;F-j;#FxU=9-eO-^syOVzN(}5AKt_<9_lzav%G?P; z<29=rNKV?qJkRf%j~Vh%o^wUB%cR-1g(b`OfwuX#^tFr+VELsoW@c1e|>h@U=C#&<}%=SD`mf zS--wnLoL~DBtfK*ayT{g{S7L2;DWMYKGPXDp$l{5&4dhDd(mqK?veXPIaV2~5g`%DeXH7ez+J2F)NA$K z&clZ|?i20?{e=6=ipXE}kD^ZQkmmkFLb|=&<|2Qpb{^Ju=+*8W`a90UZ#pQu0q>x^ zo?Z+g*RPd7wxc}P|mY7nG??eiVgA{Kvti)Sk zedp3aG-o@A+`upkOwNuAfZr9CByD6g)ly9DU}hysD;{i{i6v?+Ufs@KbaEW_63GsU zS%msBEEHM#YmnxQ=enF!F6P|Qly;o{!`%BEC)I+mg=)ku^y+%#4y5l%E+&B|A^{MyTIzZJ7t%#fHnnTKim@?Rq0mAPvn_iFU*5f zM;0ubbv{&>hsRw9@>H<)Z3|u7mQ6*w22bVcusf{(QuzI4^{l86f=CA`gddE@LI<;M z!_wU+L;&&vzuyaGVTpaTYct!#<prok5yDPo}*@MT>f3MEAuy2bUZc~x+3!qXbu4sN{ zEP%0;EqDctr$D>{A^`2;JbbvHBx{HuC+$c=-v!BrfVRu@AOE$X6_5Utpu7fP4W>m?T$f00 z6T#i#-a`gPdMNP-#>goQbx^4<=0G=sEFZJDZG(MSxW5Mq$vq~pQQreM#XaJ%-76J6 z6c}0v_NmT2fHDv4R$IXS#gi-YZtKR`j#68m0t<0Cdx&mFY$|eGZ%ZKZq8{P(xY8pU z81IhR40==D|FB-2=pPk|JVKoZWu9zk=|3C=5V|oc+Tcz~a6c7Tl$CO@7>LSbVAeTr zg*>$>i4cK;K-Z5+DIOpyJ@H_b2cck!2R!v62=Iv75Ti38If@YkxUvxh+qgY+@#6Or zLEtrOz5Z;C{gu@Re*}RUK3r2?xG#YXc$EdQo^cL*aC!th00;zz&HqKL*qrXTf5$~d zpEg$VVU>}mbJ$m}|I`plbvo|UgyS^39oWrqpL>8)p%2JCB&P#R<$ioU74AHT zXF&{RD^ym6nQUdD0b{cZ4YJB^)U;T#u+V_#gFFQodx@vugX++BJAr@=jC&B)*w{7z zdS`Eu`rl?}_Rloii?D)dXi=1ItAdDF0v^a3r&ZG_w16v}LJB4o4Y$bRIIA92(|c$A zPeuQz)lHZW@;Q`?=aAmw8Qa>Q_ z?t6j<3pb&QZQkBUR%$h(kC$wN8fsLR;`&-e@_s$>4Sbc8lX!j-+N;G2@FyXPw=B99e-_z5 zMN2!wOM#IF_vWcv9psbiklOQM1cpdRfH=ZJkU=O`QD-y~hk7LB5lZ=TxFm`r62z;% zU^^J`N;wxx5^~gr&2(8eUfY)3cye6Jd;0M}=0b^pif=+l{L%nfgqLF%M6e2*K(~z> z&nsaKSYVOlgva^ac!d*`w(~k6X7eNPVS`!tf_q||H~_3fQzGB@G^LN5DX-h0<6x&V z!Y;9yp#Nd+aK`xshgU|P(Dhgbf*o_It~S3#3!a3N#mI$V$gyRrg?BS2@v|rcWunuh z3;?0xC1ojje7WMJ8AN7Dy!O95E`LiFoxv`l$)YYH*frQuwDq_|OU1%K2yAK>A6gGL zQ%J4^&c)-F1ofGUBE)9ipQtuOL#EW~7u6PXsB{)|1yMqYQ@}T9Moh&>@Ji52ZS)Gs zx!D0rIo)BN(T6DHMDB3l`>6GLQp!Cy0X?}oq^C%DvOGAPx8P-c3elDY$&T3=WVKpO zNIhD79Vi1X>GySbB?dUft*^r#mj*UM`^WQj6pl*+;Sq)evN;N?yAYmeZyOH_-S8zx zVKL6p+mK;clxU5@teErMFmM=1XJu;#@xzo5Z-@2vqYuSl%c=k*6pnE$nib%LZWe%- zMKezYa0#U65OyjYJDT) zW5r0^L7WtjvpjWMb|L_BmXmJR&8FxKU?|BB-&}&DKSb*^st6E_6hM>~&BNz+5JxJz zMY`%Vsc0pFs_3%M@4!-|t53AT)Ukt2c2L)jGHb)eWRK{H`o3taayR!hrq>p@r^rrN z)1o$ubq)4UYult?rV5rgI5RABNkxIi-EyF}NJLdmY!{(oawHyee!-4DY!VnW=&(so z%2DhJ4Ra_TU~yPZh49t^Y)upprp^+<<&&~jaFK@)Dn(nDe8t$h-g*Uhp~}u9;}+Y_ zhRM$0%nOCTNt`v~3M6QUep8x;CDGRC41IiJrTB8LXbya#u+?uT9=Zrk%^tc4g+UHo zbg@Sa3r;wXXpg=jSPZ#4;Z|=xNmsYHcZVXmaC6lCm)r}^U;nsBXEs+XZo?|bNp1}f zkm?)nR;Bcc&5vWhUqoNj2enRDIiY4JwB89K{kf#Ba)RrfkXzO41l=mh<1y|ajkx2= zbB~_a|0o*&VeXaa*}Vj32Uw#B(Qf zaW2>Xu@()!MJsy?GXa@ySNsaOk7-B>81g1EEi4EPnh<&t%!FVRB{uAboDgGI44gNa zZE%gG2=9>@72?P)1%kM-HY7m`l7Sk zsqTFtoZKDxm0OR{V4Tuo&bBQjE|Q_>_*)6g0J@5=49wYh{h4mhzzlSY^x*T;6oQ*A z6@hj{kQS{KkC_!2-1es;;Wp%m82BL3?+eTj(J!Wj$8<%tFS58z{cfVgeT_QJ8)Of% z{e%%t=N7l1Sneo?dK++1KlbOSE@Or0<8X*YKMqI00SVRoMYv}wIvToY-(l2o-7=n> z`iwgU7n5?2iWV%xUmemNeLP&X8b#pVw?NnsTSecvSR;To8gcy#H5JT=5b8?3_qztk*xSJaEre=%rcs53YOUKd(6Pf=M?&*z1 zg5HrzzMv0r5H1)Z5)qt7_n4fZ6p9E6f{qGHqb$Z(tqYUfip7f9Oe2f*5_Vs-9&{Qx zw2E;bRKkxOyv?QM{M#|sV<)+j6U_62G3*ni2HH9(@C(7RagZY%!kf(TW7J?g%wEA@+zn7{9e zx-B4PxPUx8APamd&$gOl$mC3@5J^)?@XS&#$3rwj>;&jr0z8-sm&ZD~IS)YqMTR5C zYa8IP^Cp*LOR`v*LlFWLO9MH1j3m#;aulk(Y{$z7GIGS!01`#XxUtkIHvMWdi~n+D zYnDyKODXkmpnJg7xj#kSjad2GNSOc{0>gbKxcE1{PUi-O zsUj5kD^BOcX2hW0FEOgW!ZCB7Xr0C^FA(WD8RaqJF%kEZrPFZJN45X+6(kHY1ear> zNF@yya=;8>C7_0F(qQmjQCfOAS!6LtSn`oHpq6ED@|rL>zeRr&c;X;`6UJjbPrCy@ z03Yy{4|O2pCn)fPai}72MDPkz1-^Acx%PyjJTEBbf^u7n(Ik0L*zKgij|yFjzz_X0 z@cqSS^z!H2m1nrMZZxDX;DZz%)VeS8RvnBhc>P6&dfG?KvpcN>v1|~u_Av*@ub$mI-h$4f3Fyila55)0?y-)7^)50*7Fx0uaVRQx?mA%b}6z4`UY6^xNe-R{Q z4)7HchAu)uV{~t7C7$6>$XQPD5uKmDLyoCB&t3fq<`tMMQ5Trt8=bh!!V4#UIGM?; zd{_bp^|Bz;OdE+CEXS3IYhKc0iid~}l!y&ONsnKcp!?k!%R z&s+0u5jKzl4l94x&pi~*H-#ZA7NsFQ_v1_=##$0{yLfg1PjvIS1-vg6ZrdjY@F7H0 z?wt-tF9dLoTCDkeA~g%^fROu4s6r2RJD{8d4e&Dq5;HKrBZ|{v$G^~&N~N%NZ$2Ou zblVefC_a5^k2{6mkb+O*>Kryv>M8^az;*iHXGMRlr@i>XGpXj_qThWEn=3m`$3ac{ z0LMxE9_DZdJ}dQkd{rtj!EsKmIL+-iwZT0g80pGA5gmuq=hnc*+|=k!MucB&V^2>S z)py{QTa%7AHR{@)jBb}(qoPMwLY=^YowaedBNNxPnT+m0iNXtwjR|*cI+1}?un$>HfP3VtXiv(5mpsTvBC)AkE;KfWP?bbE9bvP27pB#7FQ;iAK7DwYyf@;y3 zT3wR~xiu)9Zt6)RD5BPFck6UJTY$RczJe03ptHH@UOu7^%e?>?&-aC3*nkWEa6QHM z1ko3`i(rkQJDlMeBPHL2+hq;g9c#XB85{KhY9hii3RNY_>)hd+V)^k|&3p(g_(nM@-_xw1boTsi`Ry@8L|1PoL2fN@p@D z90fRCzk-^ZaJFBa#_Z;%>ARxvmL@`&x9QPzTCc_YztUuSo$8EcFwgN!I^F{us^L^( z0vm%Fw*zyT#*otJq#e>h7)0MgxuRs+?YE!=&m6m)Vah-19glLh(wUr0>k3E4nqfi>9x4s zlS+eX;u&JL_pm9`2$a+vnKa-N%B1A!PZ5;!OmA;5aId~$yhc!tZf8R^{cpqxstgC& zlL1L(8iQCZse$hpP3FE&q<#gk24SS*1UC`3@9S)l1cH75i#dtaATi8~?&!&+fD3#K z;*Q4wGQseO9)TNJ_e;ASsO_$FLQhTy^&j0=F>>GsMvfS96zyaIyjzm@DW{jdq+4-e34)f zh{oM-#sRRI5f$7JTRUkUnvQ`nMC^J&x(Za_?%oa?xii&-P>-MzQJtY_V zE>}~jKAR2FlD(SKvd-W#T*wDjC0$!IYZ+> z%98UK-ARxn;7j0?V6Uam&e3b5iMZakNBB$WGj}521J&22sgl(7#33!VP;*m4*QPQF zeSRvFaci1b>gm4QqsLb2@9HRi+?oXB%K=UZBEH87j(0+7C)j@$|ayytEl@rIyBa_Fp`ZrrnmR!fPY zg)`lN4CXuc_ZQG;ouHLX1?7r{R*T=zViYs+NdljJInU5)!F%?@^n$R&A{!)abNN5T z@P1jgS^*qDmwz3mQhqb`R0#@#9!qmzL+}z}mC~eq z$rn&5eS|N-9Mi;_Eu1SDDk&Hw5n@A@yLIEAYSE9N1@vG5pGcbL8#N@p!qw6#=~ z8X<;Z`9S1O?tule8pNh2hoCLsw;jX{4HRlBGA`5`c=-n%yW$zumQXM)Ud~_}F~t{J z|Gtk*2Bz;m-V<01-36#jmxYm}))&~qBhBdx+_jGPoEXoX(bVXErAP0VIxT(1E)ZV| zDZ_L3dis7AO+0s|uG|F_ffiEM=KKMP9{+7ah^u#WW`|u2z%zix^(;3F2B4@v$36gAw|*9v1qjM=e5?hd z5+24Ab&&U90MP8@jq;v_;1a&2F(?2qV2>eks=4Mu{>tbzld{(pF@_jmmBpkoPL!Y% z#5>Qbkc%a6<~-tjIHs5gbE*j2#Q|F8B`=4kZ?nP8@{|ArmI5+=o2PDs;FR)$w^9eN zZIKgppMzHZeBVQ&0Mw;>nshs~0JkR8+0^7X>C$r@-BzmY^h=7p>_77HY#7^6;jIqg zf8w^`CCYkZYS*Ni;5aTRa2~wBQh=7WXH-C+PkF-{&jX=#dOKD(rW72#jLVsOvKD5OS@csS$2e3>P{J zJm$4nxWH$gWho$|N2J}!@P2mYror%lle8`lpWxbPQ&WFZzmiGklJ=mPp1!N12{>c- z%_LIxmc9V@s8ZF?BW%v2VX-DGN7SWt4HTbLLUgU?F~Axp)W00={=;+2F#s$G@Csw& zK!4y3bWvZsZ%B48df(jg1S;f&iSM31TR3>>7heN^aQ_?7qp-Sx<(2lP9=Dx}l-@u0 zTeJzc1ght9#aGPFt%WAh0ke-(n|t~zDB1rVbOujy_{Cc#yGY&JazDTa&l-&zh7M@| z9#fcnKZ?5N!-)%RvIh$Qr7!D)axr>v;6I1wm0D;<*8#%@l)5Chj{X{1X27ZtUC{7A zr+erHKfi}+<;dIwjO$KsT>Zn);TJsU*`*YWOVjIeAbc;#xs&PKuhMlvcX{r`=y8>L zzOKU0!2Zv`q&K>EWfB=IO{{@u`us)Ft~ln+$yCrQe+WF_E?m&CS}{h3+Hi#`6NG!Y zCyiwjf*wBa5WM!*hIQ9s{mh!PyZ5PzxGZt2fdBa<7WvukeX8%_28Vraj-`n~%JcX| zPod}zpA%1?*)-lg|9M@#q4Bx6n6iNGCwbGVT?__E!H0|W%XYF4WP(`B0+VoG0nM#3 zG>26zF+|PsG1kLC$?mJg=WDSNMaGY1Wy_$jKnX5xn<%`{q}QZ{i0um;E-d7PagnEc{&whF6ERwlstjJY$V`5f(NXtn8~=)praFAPl|^tHJyXyS<=< z!@4b2sFDliaU`(M-5M+h%Q74t)?+GjGy3L0 z$Xo1pK_tyUb z4u#H8mQy9XBc> zFZD%>{N9a!0kA2o@VgrevJk8Gc3mF#sAt4+R5hMMOpBh-A+Zp^!=o#84On{rK~1@X zJPiUG282OSzfukW0#HF>L%a!YPO1+$i(JB$JNw2)u^4HzDoSX%iyd!R=&u!d2&rR0 za#W?R>l;nK3}PPu3kjy+T5Bk>Dc6W0AYh<>4@kDE+#XhwVCcawy+JI>Z7dEta;tkl z^!Q4>=Iv9WU65Fg1KH&`J%CyUU-^RS2k8|hBDia)PTU{e{1BxW*0NI&f}}6RgV;(Y z_vO%AE|CZI-MWrq6}VlDEg9BV5j}H)d;FQ_Y?v@%!UlKrvuEh^bD>{7>kd29JzF2C zhd<{I-w@OjyPT)pvoUYSX`~bMUXJq|qE())h(sdG3vORo4zun^V-|Bc4|a>VeG54# z-Qa^L=ed6Em)^Zn0Y0-fFLKrnZZTFdO{Z;i{rb*yKy|X7wM(B$x=Xr#?XvMlBO>90 z*>XTDTQkQKQRB4or4`i)j*R9hI`b&r@r!39r2-uOjp> z{3jCiDfa9?kQ8#T)?eo9Tr%U|5{GXL~2dybUyFo^S^=#>mGq1 zm}3wG1Ezbco)<-@4kxXb#X#!^v#D}IVn36^rR2id)_e164?Y>rM)%<3;iUP!*_%Ch zua-&J$!k_ti^`BgPxj`$zw;ie&Hoqe?m`yz zX4_`t#M@VsNlDis+VdrbTIOHyQkuiBJt#E|?cOE|Z-UCp!w=^JPz|96Z$ z|2lIT<3kR%zvTWfFTif%>2I;Q8OHx_rG-D3F-cK$GRy+66Ec!}L*S9c)4wOX*LW$L zS2gT|9Bo9H`f{659Iz*V4o9?w9;ahb_m?l|Uxp&fa>qvL-{7-Pq5FmvM%WzvT&kGc zlM@IOSlP9*i-?(R`;L?`>2l=Z@nJ1eR~35=Kgvp^t!>3LmR#8xUfGF?*;#RdRk5?; zA}Z#v+fZKT=0rGO;81}J4cm~g?GR3{P;#B5DAR|6W;3E}wv=s&InHtrgTby#I-v?F zCKO&hOel7%h8cqa=v z%svO6&n3HW#6RE@i*b*sAUp3Da|l%;^WmTuh8Ln@>89Y_o2(Oi^}-!jcFcj>=}nf) zu`UcqT3d*Jd=*#n8n?Nk7+qC=nWs8TiZ`Wq^1AE<#_J0gF2bAAf7uc&CGZ^uX%Lo= z^qBSbXWMSP>BgIE|2G%zOQ4aAL~=3)Ak0E1tYdwZ9s)m~YXJgd>nSj$inJlJd>Cpm z2wcn!M`N5ta)54d&b<-oLnhoS4Vd#~H!i!;A~)yUtRM-4 zV>E@#K4U26J2KzsfH)$h092^!fctNtL8fGEe~B^wCs2bBSU&$_LJ*|(xeDG#o91MH z2#c<(x~>BF=BaC)Z-(82b3=n}%>AVs(2w2JA3hZym07+6-0tFh&$i+`bj~Jl#k$>F zce~xO2;}=#K{t?W$GhDj6b7g~z)5qMt}Kcab)4dg1Va}+w>xswc8HYtkVA>v9S3=U z6eI_AklJQ{T2I zOMYmO7iTJ93CE4$nqhpx8<7KHlS`U=V1|+tga@ybuV+eBop2fM8ZrFFm&+Omn}v(8 z`2m>hZ33+L(%>qEuB3A5iiAN)_kNj<=M;KP9kYym^?fF?NrtsevAJ%CDj zDPs^krS3pixq`$Ylf?n=#aqb_E87d*qe@frja&g$8Q0 z&}elQI)p*8n<&H1paG)3?V%%N8+M?XpbXR2R-1O>5kU%Q@dGN!q@-w?nzX>sbWDOx z&4fWj0qnS8Qh+Us{z~960JsP;`>lCuK?QXHtSxm)tyosN?ht%B+@SZlUv-~8B&e6@ zUq;*9gU{Co2O$Rx(`BnfdL{b1NLgQw4>)E)HY0h7b~Z;`G4Bzo$O)3uDnJJ@41@DF zCwiy&0yr6Be+d1M@WX%|=Fy}TUiGvS29!l5C?ug{L(p^6hV<9=z-w1}8Hgp9bS+^Y z*&lBlj;9zi(iZbWSqa1mzd=+EMV8wQy54M*gRo0H9H`3rI+(*V)5!rI4zE6#|kP4XW?+siQ;fjH`QwvERJ3XG+M;BPTk4iKB6+W_F*n{*Ae z6GWtJ0(PCv5l;+`*}%Mkn{)B}zgi2@?Tbasv@Nkh!RV5BfN9CPyN|1bvvb zdY=3yOsWvZ0G0uaXEXyljoa_`g`;;r)E-E*1*L&u4BPA`*@n+=p;dr|0TKiqm6U?2 zBD_*m6=J+`%t)?3Mgs9R3%tWC?jSW6zr0k*m=|p$-ze06#_>Pai35l`D-M_g+m+1Vcr#M zb_hPEj!=Hw&w>Szbcs8@{U5|g@3wI9B%{xUuyGNFkdk%}2)}y?Gts2>B|Ke}+2Z%)VQB!w@AW}>3j#LFYAJNtgr#6KT+Fc}w!=dB-bMji zLIz`*Jl-F~lP?ow>5>cX1-(vVYC*;N%8sYdRtYRXhVRjR$q z-X2mmq;g38ka5ArU~}m8a9L$@<++s?RL-hgyvIF}Z$y?wRz~iPJQ(@KUQ2m!C^n#k zhT>dN^l4IPsIdS<;()5CM3I45-4j#hD`la#p=YSS@*kFg7N{ z0Z7dc%}-e=a8nrk$8o#W{T7S@P->Sjv)18@O5)xC;_r^x5BvC!#T;-Qi%rZ4|G|?1 z{KqRn{sDX=zA`sR9<+r^Hd_tF?#L<)bjJqlDuka6b@+|E749@Wso9-`A09S=yX$jv zn(@VnM05X~^*sD-sNG!!{vgt+Xo*?6uo8?yS||jv$a6xkB@RV#} zi5-m9?yf=!4h+Q#xxzL-^VtM63jAk#)DNVv&Akia;edXlQ|>Ut^GzqZ&H+=eDCYd) z9de4Zid*7-lfqk<@BNqV2zde(`y=>N0%nbte9?08tQpE7GwmXgKFFs4jj2d9qy6AF z#6UYG%DCTjAd?n(44i^cE?OK#E5x%*!b9;H$tn=W(A)z!BY0SW0v0ECoV_> zVjdgS(x5G-&LS{#-iGDEt_~s=t)9r>J1g!z`G5ydH|v4B$Omvp22T2bP~C*zO%R{Jw?CT$ z!13`-BT@Bh6GEx^4v+kHAavbo$K)%94*Iyq_E$bFDtg!n9w(wn5Wwa@#73X>eUZo~ zTJc6f$Xc}IG!@ZuSHMSNxa4!B*^ zrjn`MmZLSn;3c{T?&DqUXw9JtJ`ANI_+NwnO3|kgP`}0ha=GF?mQc_9cJz1n`^d7f zPkX;*hvJ1p)oHk1rH)hM)R8EAg8H#qt-h;1txi_Y;_4Z7u9}3WUsV?%Jp$>u_-j*7 z;7Pl>P<5zA6++ol@c%gcH-FdS_XPYu0_hp*MEo_YqvhUlD0PDTzXtVwPkjlke+N&d zNcp4jq zZJ&k`3)BkUm(nOt54ZelKwakVMEsssxH?%~i@%f9@hJ6qjDml0jD)S6Ab%&Kx2LJI z>>El=Ku+NaOYqOsdXltd@=8sVCnw3Xi7JSzpqU}OSt + + + +Created by FontForge 20190801 at Sun Aug 5 10:20:04 2001 + By chris +GPL, see http://www.gnu.org/licenses/gpl.txt + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/static/css/fonts/Fixedsys500c.ttf b/web/static/css/fonts/Fixedsys500c.ttf new file mode 100644 index 0000000000000000000000000000000000000000..7d6946d64500f56550612c01d63b6d145a9dea0a GIT binary patch literal 27216 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 A=>Px# literal 0 HcmV?d00001 diff --git a/web/static/css/fonts/Fixedsys500c.woff b/web/static/css/fonts/Fixedsys500c.woff new file mode 100644 index 0000000000000000000000000000000000000000..35c91641c288af9b70691cbf08d5abcc702b6b2a GIT binary patch literal 13468 zcmZvDb8sim7wsqB*tTukww;ZgjlHpL+qP}n&c?Q#m+$YrKVMg$xpPn7xl>a!bGmL- zx2wFEn7oRLJOIFw34jLtv^9zUj{m6mAI|v4$NK>R5HJ8#UYVW=008=r6aRt!Uzy~6BO3!d008921y=mA zh5*@v9di?dpBSKDKP2-H*gkzz8qI&mACBk8C-?ygm@W{cxs8+CPe|^M|MoLhP0)gw zVPoL-lMhJehXel~mJ|Sg3~Wq(xXK@>{M^SlRDqw$&eqZC=Q)0S0NM`-zHH>uFGG zjdX4;>!LzG+?=%fId*dW*@ME5)^0`V-e;p5?Aj-O7(^yZHIPa|0uLvv3obgu=qtIj zyhji=8c59}c$bJHFz%{;hhb*)R8rGObdoV$=w^``YifEOeRl20LO+j6L9NRn%bOR& zCRB5tK zqb@D;h>O(p(yGKj$53(90tOR%VeqzENeOdt*c^xW2MH|e`S0D3qG9WSQgIBP47v*UVl8o>17ONf*gR}3xf zU_2q^HCP=?q;wF(Ck6pAKQlZ50ntw{s5#i~y&-;gd5*4&sEFJWMH7?uJk!1}30h|m)|ICD8c}bL7?I=hM9i}k5N2j zvHLVk!zAMja0E@=B($1_NmNRwVb+Ru?HJldr$LDBcKrz7wc8BDoSVDf?|%6YLM2R1 zPIoX-Qj;X3a?3NUbglIfXStK?#RYZ-9_RJZ)xpKd&HlT{q(@C`?GDE$xai}oOkEv% z9Vf@<)`Qc-%l-3Xd;|;>93(6>JVZ=qPA)PwIzB>1N={N%T3%x2^YFs5wx%vyH$#uJ z*NdN2^Luv@OG!;B=h!vuEiKzuSC`7k2^sQ3#*&23Q0AD3K2mzGbDLaFhk&HA!29uZRkYC2q=1X?5P0Hd*Cp%p- z=FVbpNLM_TVlEV+!{gi+#ov1P<~Y-_vq`D^sV>W1;c?sPzO?esk8Ty;q`Umo^^SEcwi&g0&j$-b*!>;ZspR|txl?b*QwBX?!dFFa`_x>8g5!{ znqIopx<0e#4Fw;r^}Ea6*Wq`y!C^L?l-~Do`QRS;wp|M|@vGOK;3Csu-#vnCk!5K7 zZJ9PMOYZY`{NU_*`D6Ei(d=NF@AQJXq*Pfha zltPdD-R6(;8L!W*8lRgeWhqEowEw-K>r?1l3$=kILeMK=eUZxh7r{9~3_9KU`G;RAMt~@@+Nv_`4 z(<4`#E-Qf@avkRv9cWuk57p#X>mDl*6XVHCG|+SzE!K1O#U>TWU9Hx&jEk+E_GZdn z3(px^>0bqu3p!rcl+V))SB%RT{H%J++l+kSxai!(Y8$tAX)4xfKny8JF)TOQwUy}~X0 z4*{?X_}WC$bbVXV_GuP(Y zd0#2$%U|wdu4hR4;MXU{JaOBmxQ90#o^AA@L%^+G_WX=^x`pFjejqVBz}Cd8>$2*y zs`2yY+z9`i3=HF%YsMK0K;=<5HAQbnO&)Q;;p8D&J&GQZJe#ess!Y*7wuwMVthdxK z_Yt9{>(9PJp~K^bQ#~Kq{x!wnA^MG`6C_Wt-BO1xPojF3ti>N@YI!b!nikr1++T`U zvV%N{HN^nKgTFwb?*zW+$wA?0%45))f*~Dg2=K>a1n4&s-c%+fF*}s9 z$k_wEMGp6!2zKm0PpE7j7Hv9P{I$g81Ij6W*@*n|7;tNvW@ujQf0kb}#He`|Hbn{+ zidOIajwZ(D^is z-z#UGMC6=o$JzYIWSxY}MuTa{PT3#G9K}8g#L?NBc801<7{ECisGR7N)i9TGM3JpB zIC8rRMm#c?^3gPx@)Sah?jm)Z>NE{6v|)*AVZEOb4*O-BN}TdIq}iaoi$67}nQ|fw zgk%QiJ5Vmu`Woa-IX@Y!j)K@0YK|Mw5TRBZ;$m1`k2;&+_Fk(_y7A7s-WTW_l@L65 zIC;n^Cd~0+$a8t%yF&^pS?l0LLUEdl64*72EGA9ynn&O88|o8_=fa`E@4CL5=+AwP z5)yOr4BIxkRuzFVqGbD?OLf9CN6rqRrvG00Qe9}n1~7^}yYvPaU8G5^F~IP8wGF5X zwK*AEvMR1^t=NBkV0dc5)8sm9)&sz|xc$X{jNGHUDV&XgOK! zsRpcm>VnMnZ$d|vt4@G3|6aAabF<9Z5-%YCUGEe5CF*B^u`QC$e4(`l5vAMToUWnhaqBsP~M_H z^GGVM5Srt@rAD&7#rVBaPjJWk+qr#G`*o6Lr+)TxAu*BY#E<$B`K2>2OhNIbRri;F+ZJ?@*P;C8|f`WU6Bs!&J_M(FsjQv15zAOvww! z=@W-(l8ZH?nKX_ZX8V!MFp0|0QBLG!M>4}HOh>}WG_%vpKIfxBB072$gV&uFE8qvOqB?@cxcD(V7h2jM4Y6KXld31ylQrUBL46F?`hO zkdl)Vy3-q@B%DnM8S^Zj_On}x{pQao`~=L_zkTtQYE;z>ZF}rh9oANnn<%)0x|)N3 z1TJ}?J|Rh*8-(eJqCazR$$B>Xux;i@=D$-HaH{#=dR2jnM}C|QRDx25Q)Z{!NT+Ku zb8Ca>_JIFdDu4-9%S+plbwTe1nY4b+_6!2^fAS_6Qx*59~fcxxU2MGtOAVFV5yc_ z<&4q>LsUXy>nd(>5F%wo6Cz|(5J5Qj!mnEuhQm64v6hba8=Z1S@UJ~pxS!%&Q0il8 zBp8Xma=jd)gv*e_B&cZI&Ju6WeLN;vxY|Zi!X|=_+Qc$&l)N1AsaP~rnijZbVQPIn zRBKRNbH$+kh87|j9fXrY#YBkL_R#QEsq!jYF+x2AWhO^o7j!Yk%^q{d%L4ybGt%dh z;sd|XY)^N0%p@-4oS`i@&Pbqnp7b2iEu>`-2pTQV3v9dluZZ3=lI@_0(dsqARNe}E z)>FCV@>)Z}rSRj^!eDKbHuIK6dr@nTyU!R2z38&3JXYO0I;#*7y9T*5I1#lQO{2?Q zn3e&f%g@=hlVl;jcu}b0=qjql1AO+`0F-T$X}CC)v>2mDNrZTkyVC)J-+Q@es_vs^ z%CchNkHYyc&8Hm!DB|h&q16QaamAfAFMIBVtBNJ>0>xu}Q}HMz6B{^MGlQzDF@Cvn! zFq0PeLqD+$7gGjSeSZl{6L#;Pr3PtE#IdCqlIOec&||`qWJ9n@kc2bsZF!S1-O}(S z=o?E*O%2`*ZW5As(V&sJ5H1s#3M=bjSbt#s6K5-m@wIYTxD)rvBqq&!=0~YCzT8qy zEjzHA?I4*S-y|BaSst*|A7~j)vEGmiSq|6t%B{%O4iJ)U1tf7v%B7UuGOu(L^!3<`HuW}`nKn%tr!ITboWj`nuP%3u6+cvDY?MH=;ffaoML zWm1Lb2)=80zYwCPkN1Uezia`vKF+!ydklIgyJsiIGT7b2>&Xd~9VIODShwaD#T($7 z0C5u&S+dQZdqLJez7N(6$+@lia3Ns@MxJ8pPHC1}zYH%~ikluY|KiQl9O`UbBk+24 z@0&q@nzE48+R(jJkI9iiM)hMff-JB8LX!_qx)di4f+b@HdX8q6SlzD8y( zVX{|b(h1a8Y!lVSwDQo++V%uen*j^EfAF`kxgtG!2hgD}8?+`p8rIs`^; zOD~^1?v{I7?o2;z2t7(FRgsk?aaWfYJzZg!rgdSQT`0G5Csrx)$}6WqjCX2aPiI4d z-Ox3NRgf|ZFUlL|SibGj{vv{d_J2XJm68q{r2Pfg=6Uj^i7&N&BnNa-8Ye zD{R0j61d^p62x{;HCQmGH~kx%B%Gdo^xv*{o!L3sCG_8CJBJqe^sgpHsERK zOpzW)tS|((36X|8V}IjCAyUOZZ*Myd;n_NKEDH$f*s+LyevKjZzwyO83WWOzf1C$f zB|Zn*kT)l{B08Im6m{ZT2N~W<0$hfXIYI&%CQa!pc?_4|3<>&Iu&>ChB9vAEtlVh$ zGDOi~OCXKvp?cI%PZNW5SmMsmw;@?*Pla*FW4s%G!{tWUV+e~-Z=d4Y1ojHbGlL)} z^499@kFbZLGebRReQnk9rZPof~XO@TDxFj^^1ju4qc{4`|joCG1IV_UDrNB2ZG7V zolWen5&!q=y55a5NmYDGV%21<0A;9RPeK|8qzGaIcXt*dgK7%zCiVe*W<{O3bx5D& z*2U2F^-WzHv@6zpxg-81tI-z*`;arsX3OtdHjOm-L?>v61JHcnmHP6O$fOc#j4bC9 z@O`BybWFLZ%?eIT-RUSY}wHKUf8})uw@y%s?|%Z#R=9X{f-QYZZHKlRRm>90}X`RvtJ@cRX&; zobQBCDQGFX^F;2u^T8)vNMPGYo-59gcC9Qr<#>?{t*)91DfRk$1jd5TUr+%df@pKBHMj9No0ylqcwI*to|DC240TD+S5Ou6C+^&-5JpdQQ2^XFb&?^OJ7~OA3hY~bvC_` zZ7NTphm32N*w@0Q<;Nj>6-QS|E3eW;-*2)*7T-mETuRx!CC_Z)MZS;rzP5+ryk%_5 zoIHUy>SQEi3NJg#Ds~j5@jEZIGs0ukw3*3iJ`nuxur}e2@}6dV_Smy8t~0Aosh+1H zB(%%RN~D=Tb=bk!bkcE`i(}=s? zFFAdD9gRi(GJ@>7S6e)_j4_^BQqdbuwtb$2rCOpr3cv|QHz?;k{v?{?a*9Mu5>@!c z%)ltFyc-c{k>+Ah4&8`HW$H5;Ej~T&gV`F}$@}VvqwSm*C%7LVCb^-`SQTm+DQcPG z3Bk__|4F@-#LI=iM>trRA!-Az%`DGs7&S=UZG4~15Jd~y$R^EWSQ9l#-%8}^G##^Q zNGxCu6>Sby>0=s_t|>oGDr5sQp6g@QI9Oz4aX6zsz(<6={jzpT#1rHSTVjg?A!TR_bPJVi zH1A!m!Bkr3Z`sn3&`(#zhoW>*z#gm!NqUi~@_kql7`!yP`i2!EMM0=4^fp%;GR%t) zUx7N}R}q-WCemymn@ZJ)65ivRbW}B%F}Sr>Vu#AiScqp7>~3lkPwYv%rWet&0v#D* zcFeFpUq*^H;{$oMYZDUkTdG*uI&44&me>I#PJV{@U!y;Kc)_oizj^1EF(=CoSH#lp zgh3uy{3pcH9==LShAEuIraO8Q$tl_LnT`xHjh1?}4GLy;Uzt*n)XO(BT0wgtaqe3fqXJP0OQYjPdQo6cHq%l+l}r}pRmDD4G!bM~Wh&{Y561_@ z25*xj#1jQW@`VQJrqV!`sRmI>cZxN)xTGuu0)?EZB#mbvlSFVb?X|oATG$9;Fd0)1 zaN|Q86g3QprV2+F{`G7iEV`~uhm}fQ(=jOLmIg^rG4fOOvNtNq5EVqVt0$_~>WWo3 zN07%*-)ugnN%cD5xYv!c9@x(n?nOpp8h#0%{}St&YYs~JE7EwB;u$`HgeVJoj8 zjd4gTen^eAC|w9y!A$;6AWaSA#fFpcU+YFvV^=&$;R`5|03C+=lmbv7` zX;R}R##Rcww}g0(md?hr2yerTNI9^b)q3SZ7(he2Tf{sDb{wj8S%X{D=YG07FWnva z>2|^RVX3L_;&r>?jMcM|2;SH?A5-c#rBntfb)_F%iv zv~v5w-qIaksjlU7&pOaMHvt<9Aj1?pX{p7De!?E+C*2)k8F-PpWtV)Y*J6^q9h{6> zcPGW`+}^AL`!t4&-h=WXOUNe|?W0x7h64R;B}y2Ey-E~$BZ-17$WNX^$iVE|MZ zLuVFxOWvO6)My!ligi3yKss~qPH>bJQ!4y(6oaZW|K$`cN926x`CUWG>bxMuLoM70>CX zK!7>eaq}hsE>$zaoyW<5;-}9gp-6Zr50NB8mE;$$oX(E`1D@aqgIm_Vh>FRYBu9=K z(+0TqO%G_r<^mL0O^?7^j#r1s3Yz-|;5B%dD8kKitozP`MByUy0RbYNSsPC~{TIzWKf7RD{0l&LP& zeK(WMtV$pLd_jnw;R38uG0Fg7?4t91K9UiTz?Y$S7AHZJ;QRgsX--IXe)2NrRK7C$ z&ZwKcynZNQLN@TlLT++WeLe)-dB;G@jyPaEy^2EQRJf)(n7+2)ry2tn6NSoBWT|%* zfpCsosZhbd-fppL@#~q2K&bIJ>H$FffBgd>*P|wsErZ#R*P~sLppsR%5=fGu2&87O zN4SA(>pNI|lcmTj!2{$hLXzbMTCb}5VgBd~l=bsku)$c6!tzq5Gzo7}Rp{QrWGjOP zoWchx3B-PIjGrlLiVEB-S(K6s*r=kmg3wx1RDy8fNi2MaTbDxg1hLO%snSo*Vz^6Z zRIQFI9OkrQO$V2(d`qDhg_qA zCsG~vq#+E!wN^&Rw+cid3)%H`6R(T_7Qd0t3z1kI9)90!n9<(qc<%08IlR-O*V*P4 z4v1cDdrFSAf}BrA!MUd480aSqi9n{uIsUyGGBJ=r>{uyENk<(zB4G+l4%7~sh%{>T z)lgv{g9f#O%pBQ`(#ams4bjj|Bq|y|Eoa}K_R#OH-5OCXBos>KzJ=iaiHr$Xi_pL?K-Jy<&d-+!ov0H z>-waiI0kQxp~lziaBQp(HV>NsJEQ1FKF|b2#x9XdP%IRz5(y584SUTwzhT4-d`hiP z`H=;~$N4(7h&s-Qba(L(KeF#&R8S`s^J88Vz3w9j5bF!<=JNn) z+*nNy5@A~HW8qk(qW~H(G3qyk0?}rSmZ?9^7LD-~3|jVY4^sKar;`PA%hk-}T!@lR zd+s75f&}JG$+!RXWI%upUQGl2H&N1YxL}crrlPqih0Vm0;%fI2vG2mzy1Q%r=F=bo z2Cgaa@s3UaedcW?RnGBkvu{qLiPuMi_eLsSli6OA?2dcxoWK9NQ`@$3jKwKSB8o|4 zNs(1LVrgnudMW*Z&3d;YZtu`YTpyUC;b$hZbCMtn?2`r*#uQ}qn%jhy@;!(dbzPAkG30B{*a+1fQpsM`0(8q!< z^U=zbrM9XkIE$~JE)=UdPgQpFE=*X58au2?$rPeOVRQ6X!ws~IOBGUxKA_JU=USp< zvh^2B0%oTybP>qQpc4hTa>V8cFkzI@RvgeA<4{Qz?c9LF;B;M+(ia&= z)D3{b3H{vMNM&?092-YF$=^AM6ttjRAt=V;juI|ybDpJ$8g{G3i$BHneBNqu4m~L9RK`iK#V(4FfBK8; zD6PL`8BV(peNPJvcYa^SOyY(W<<0rV2k= z{rtOu2XaM}4Pm7{Bo?)%quvBL?pU?<<Cm|)m@bv;wU9=Fv zmSOb-pkt|kt4@nYY9sIyl`j@0;BBJU!F7SYz_(^V6O6@2-?<{_Ow}`bd zvXV-WD}&X@4f-qse+m53o7$0*P$sOdaYge0`TkuBtYHw$E?^^F0=rWMH1I13X5bpa zP?i*H9>5;XYYS`1)K?1Ty_O#bkh>}h1M4x@DZ3zwJ=H?Aa2N9pm zOKYBODv3Z~pfc>>5O z=ZdsoIFbznY=Yx}N{f_b9zd>&6h#Qm%Q$XJn~x>OhwNCgK*=PIjQ$=$4$ja!LHC|{FT795 z&AD*aJ#b-mn>G0I^nBd5z|`@|E<7FJq68b znh!O@XGRN%9l1NQKZw4!ANbc)*Hp(!^Gy5{SW@xgAF|wkMunPSOPk^5au!iz<5&}f zd2*{MRjYI=V1BH^7_rf2PYoZi*}n;wVX?kJqk{lp0ZTKINh?Y>iA#LiB`4nQAEIHp zUH+#)byD21_ipz?z+=aU;P&&=Pr};5n)1CVk+(_t?Fpi>qYZu^GFj_L2wwtZv1j<+ zvC+r}cXlJWeIvO($F+WB!Wb)t9kUAjG3yaBM@Nngf)vQaw7hYjlR3K;`>XHe-uoP9 z?bM5Vg+zkVseNc`o+^Fp=E_Ski@Tk~!;0}!7FXqTAAX1{7wiktc`+n8gW3zW_EA2H zVtm1HuKjt)Z1tR$c5yRH1A_hrNmCPIqRzz>g2?rs=W|#7r{}?EjETH;G|-JDIZV~axq(Cse(hwH zd@P35p$Dj%@MWT^yfK}W2~RsOf|HhUl-m$3OEmCU6dm7DWWBxG{wO2D+aC3`o_mYH z9~uw^!?s1UHb#(LvH;>X1rfvP7LRMt&3{uctFFxbPvrPhJrht&pBFP4i8o>oO@dcmYm2PQr|Kqjx{qu5sp! z@D(lHT_Gs%;DNJoHv!E2ViYJ>5NqQkuG?tX3752o5;7x)VjExt+~D4>gN3ri1{e1J znja)JmBIWrd4cNA$T3o0Fl$i~5Uy79HEYCpW|C-J$2Ujkt~Dy16)36N(C8bl)He}X zCp!Wcu;R3ucd!arONoW3Jel6ad*gH|5XF-v?!TB9YXQ#onGH>k(ALn0OVw&r>%Hcd zPdVW|?>IPIK;88FJxgSK$Ldy3l$BMO-7(tyKG^_3J*OYz#^nsB?rfAE|FpK@A7%n+ zj)Wqff2&g$yRPk=*6-ZBv57NPegbhUkgApMu`8#Lr6fEOGIJ~9lIlQUquX^YUhKMCr19OwaAnk#YhdsJkN2p+{DKE0n* z!Hv=F!+}#q|EnJz?v~fVu*5&$LjcJe`1`R;I4D>0J@SjH^B#l53}RRQ5|7}oK>y^g zsutzHDlfi)_i$vFNs4*>^AIFFk?;~V?=h>M)m{jyZm9vK9`_DH98=t(G$w zmP@2=AkqDzZoaX2IIJ+6$`_0|oPD$FhDSmm^5K*u>qS^aq;*O&k|%{>rGH@@@{m~U zC&i6MB55(Td7pTOY8ET5TSpQXQzofiUB>d`pKh^vzRxsIHP78w?*ort_dCpYW+_-q zGX2biGEB?&#kQ)%dbcd;<>-pWOQ*if_N`f?CkKl#X0t?gvA{k`%nqu^?r$eOn2_mM zRzWu}nQg1&`(xfNs=QcUHd+ZcF2dwbb(3O|Lb6+ix_#W9WB!&t_8XZ=dl~OTu1i;a z1g++UcX85nAf)sUVwmwoSJcNC(f34a@!(*J`RzxpcO!U%s>i{uO1nyo66d{X;Z1sH z-V^L2h8sH*i0hCX^r5|VN4KUz=1)u>FdArPROP{$h<6bma_oVbLiLlZ!L3}Xls@b| zy8&*P-2ry3O;+jY)=cK3wgb7lSFqXic&;yU+MEi~*C3F)o-#OBbzX^0c!bJS^j~}Z zMgcM;Eqj_Nw)f9PEjDMws_H?bQBw7Mj%EA^>2Qq!Lqy6WjAn6AV86tQ@{poJpfE=+ z+#tWb0BZ^a@qgEg>+2f>{EgHfO#M$T6JVoz%>hyj;Q#&`M>@F!|5d+ zlm#{IcYIHL@-c7y=aJp=0W!%houi+PciW%_ipE$`S?advhEYypwp zOa~H+IZ3=81<1oulx}|3AFN*>!=EYWhGTnAZr)Dvnms(o9g47NjH$paK{GL$;g})E zf&Z?2AFA5=H^~$1V{MAn6kdgPyHd$Z%aQo*Fqreny__BiXU+frWE_+R=Gf9x2~&yJw~1Mb$O8vpT{YwbOgja#;CR9WguWveA?)~*eY?%e%*r2;1^wfMl=wOdZVqW0`8 zrB*g6rApSFe9BrC(d*D&g?81(&5Nr$y7Fq2(qXhOY;22lW^eo4rnpO zA1!wu*zkFvi15JQ(3+f(W73k&MA@dig&jub?{9) z?3{*nrn1y$1-mt%+Zbt*%tj9nSKK;^SushX@RnKC0a z(N5J+*}7=cBFI%&U2N8JPSfB-p$k~fv9DHP{Bhk9y*0Idgv+8&;hm#ya_g4zt0&yL zt;)1^>yFCNtKE8r%GMXTbszd~bnBTaLqF=)XQ2Kwx1Oc)^pIQ6R(V#rTc4?Ft^3`2 zj#^}&=+^U9j=dXJq8;*k20o^)Rf*c=)-BL{k6X9ZN$NSb?tsVnZaqU4>N>aXL;t02 zJyQkr-EMsb>OXSpS*l#`aqHQrA9U+8RhL!c)^k+7^?SFTuS)C=wNdq`glbhSsvY(c zR!6FxC>zn&p}N!p^swEfx&hGv7(z5kf3;eoqG}m>wqmRmP@9z6*pp~&X^)4G+!=37 zbaX8U?~HeKw{*0Jk8E5Ju3i#d7T(&@8V6tKy47fJ0`eUov{l7GirN(4(bF13WoqG-|1H9mU?Qp(f#8M8BYPowqCi1% zR!(1V<<97$B@0RI!YDxgAyPkap-;lO&1HYvA?$Ah``ZlrQ*0V?(;4@AnxV0T>QpP$ zV*F8?39z?BHG^$xa)(mQiA3kh#fw|o6VWBji#od4^?x;M4e-UGiUii7b%fO#tkH%) zT1YqAs|9Zt#v8=GjO{E`o3SEQ7zYGx?qZo;BdVbtkZM|6yNjLpVt`a@y5g}!%g%Us zO-EZ>M|*d8bt2K#($JHDZ7tl~9P5g&Zf&_Z9XLTcnIx{ z(T&fX{K@m`CH1m; zP5oB=PW@gb5l4pAxSG^A*x#^kw(qj|fX~hRegN!dHavE4#7m{_^7T z(((o6>&s*1@%h&LS@X*(Ri#y#T{)|Ac4c8@No7UlF_kryt14S7udKYfvbXZ9mEWkm zz4H5&k5@iZ`E2DcDqpF5w`x_@iB%_6U0BsvwY}=%$w|f*|R6ft8uSw_&e*%4VDf+HEguZvGR;K8SS6u}9^yCMV z`zPO@d~b5^@koLXS_5AKZV}{%iNI-(U8A?fa2^PwwmA_t3uG`+D|uzxVcgzkKhFKi>QF-lz6@(M&}6|L05l5QHt;$?*9zX9TjcXXfP2%F8d99SqGWEGnK`a>TsS za9R2Mipr|UkqeGG`j~}_7B7ibFRfX&e8sV~D?hdBxZ_VaarH@SkTb1Yzv0wRpLY5g z8|%*8w0X-}ThBh{+|Qg>fBpsAE{ruaHpRE^Xl}Xa;?}nIj?PQEx)VJ+FWq(7KYjM{ z&wc)iD{s8%=5K%JySLnS>+N@_JMX^tp8M{9@PUWE|L`L}c=R#V|HCJKq^|wq)n9($ zYu_^x{FZvX@9lTKv>UCTs;^x4++FIMS6%bkQ*Wu>>(v+1gv_nvK414LpIEv%4YH*s z!01Eav~nD!wa%4TGv(d21=w{X_o$J3^~inJ$o=+6(D`b%9{X#yoy>OT1(dIHvaio8 zv;BQz1Ec*1_Ggr2e2|OmZB|KUd0vSsDmiLazWN%GWvW~iQb(u?bu^+~tvV55^$c~E zsz>0yNL_-!dxiS4+O58+zN_w34`4$+seYnfP`^@dsJ-d~^>1(&AFDCsP8m8==jz$I zNQZT~j_9NGLcLrcr`PDy^k#j&-mW|JE`7D`(>Lhv=)3i!`p5c3{cAm__v`=A!oV&L)-~4k*0-%YtOu;etf#G?S}$9#S?^jO zSbwrUvPNxf&#?3CBD>69U`Op*d$qmZ-e_;J&$Aos7Q5Z~~AJB7{(&gss1J?$+^@R%ZMifU6VHARgnmYHI? zDOQ-`SX0!RVzntwGQ}EGoNS6yOtDsqs97&+){C0;qGr9QSubkVi<99hbICS3^evQ5mp3olT~Pm4@y(u~kQFyJAf(jWOhk+gsXO5|?#!C7L^S zFkmA+LCT2ik>R_uv#VoQ{F0tnD_$)-QM5P4TjSl`(zk>%Fu zjsy|y=!&%_I=xy$V)NQ4^}htAR5q_&;+0EH|B`CAtZ~a@-Llp#m%HT(w_Ik*8h3uR zJ8zkbcbSWCsXM>gZCAVF)$V*LKv#_mx71y?+AH1ls@?UMdZpW6yRwqt9I$C z@!(v1HSYQ~9{nypAs_RWd3<>DrQOrn(Av>>F%-!{Uai}u=t`JYqMIfqucnKo*xu6G z8gFXo*kvkRP%Too*p8k~DY{Insa;yF+Z$WD8e8Kn?K>NKFb`VXX?nWbkg0EvHF79b z@9t^e9&dwL@YCIil^a`o8gP2n-T5KpVZs?+oF|HD(u^i#t07G3^V zbg#ZfUki8mRlQq(O@Ccqr>}=={D%IfzER(#zol>1--e_7uD(ToPv5F<)3@t8^qu-H zxXyd@y>Q(Yay9yCWQIo| z|0_k-U8c&_e7OBeRiz?0r!7!NAp{(QtaTA`Ri4(WapJ1MnQb}FUB@CctW=*;tJHDo zcy$88#N{}Ltx+fAAhH%AV?FZmQ`M){X*ipmfpcP=Iui%6&1wrm$yRl?I!B$WKBLY< zSUF!^ptkAz^!@5WWXBDNf7?|bLe00-9qJbSfVvr3bC>!$0?(}oIiFPzt4Gwe>M>-h z&mdF%xw=ukqV^yg{3Sxrb?Tqh>+09)H%LFjo*KdyhM`}Gqlp?{>G)KBTB^)m=a&+6y&PxSM8K>t+#O#fW} zLcf3@^^)GBU)I0WujpUtSM@(5X#GaNreD`@=r{FS`nURR{f>TD??ov4oqkX6)9)js zeV~7@Kh%HFf7Jh?|5g8+{*(T*{&ziuQ1=&|)c;F=r2ne_Q~#I#oBmi2>k&Pw59l#H zt|#P0sXvDZd@W4vCYaS7R09}%-wIh1a&|k9J8w7#Gb%EwGd5&gn(@VqM>F2d81sdFC;Kk( z-ROJX_o2VYztq3p-{8OA|DgY6|DQ6g%<|0BGkY>0&U`8Jz0AoO^Jknlx8W4tj}hBC+o4S=d%8oot?cX`~2*y zvcH!7VD>B72WB2I^OTt_Gq0R^=gj+O_RoA`=4&}BXJO8cobH_Kb6(7OE9b*pEBDCU zQ*yWFHsoHG`)KZ4v+P+%&-%=)8)iK}Yc#JiZ$sWyd3WZ$p0_XW&v_r``|~6D=jZRv zza{^n{AcoC&;R%Qj|&P4A_Z#-widJ$TwZWP!Mz1f7yPQ=FSD)Li)WuVyKVM0v!9zi z6f6m@4|WH?9egDCYVgmYaOlX;Nue`BUkdewZV25Rx-E21=;6>4p`V4`3ysgQ<`mAE zKc{+5{hY7N`No{v=R7s%)j4m>`C!gp3w2>$VOinw!cz_am;uDI`EUqt36klC@Yw?rCdy12DLvxRw zyL|5Ix$EX`o*OGU`iK|jT{Um_yl>6BW!@e0?wj}Uyl3XUH1FNgS*1sp)|H-L+EUt4 zdU@$prM;y$m)<`R8aeL3PsWe)4II2Ccwo!$8wa=eb8?bSayeP2sadrNY{~g_YT(w7X)&~2ArcXG|?YC8tBk>OdvTnz=k_=urRog$QN<7#Q??V z5}>Rf=?zBF3`xVO4h#>V2N)t)yWUxfA!!eoc1_#{<#GQ1AqU??hQ-wY*Q_QqCHwpG^KvL3PMk8^}RFsUHI&!}ZDGfe5OQ zZW1D_1t6rKj3h@YK=()m#Ggz8hD=a%?j*NJMnEBy3Blnn;ugRM!BD{%^-=vYBC8Qs zBspF&JTN@qi(nlH$P5dH2-r%00twJ9B52EfCi=bxDQrw)&)j-A$5|@l_0Wu zyvP(0lRD5y4vB@!kveDv79}@zVTie1YtrfAW+JDyf9ZVaCw0rtM?mo73ol{l!Gfv3{`|g_=X~q=&XktY2Snz zhE~9I`h&&NDKk9Wx32op zTSp3^rqr5#k*RP^ULiirF(gc_O{E*nlK_eXfcS&DMAb$N&R9LoE&>A(k&|vT{iFiZ zk|B{DY4LdSj0yZr)Q$I!^!ifh4grCpD1R6o9>4gD4S}4|I+~YDbR+`11O-?HTH+@A zBnD`lL;`oQ0s9>C1Fn%?3R>s~V}b@-lluxhd%%E722VBq<5cd=B;AT=98&RdFQZ#F zC=Ay91Bs~lr0K~$B^L+-)=&nN4xA=H;Ue+&p43E4@bLL51MDrh1Dc)7zPG2TPmkyU z*C!Yg8pj49@EE)@Hx=yO1(a<{8yXt`?L+QLt{sr~`rxPOyI@&j2J#vQ+yn!|0Q@Xf zZ+tJ-q8zC&lF5zgqy3_Z5x&PO(C-)LzyWUqLe3t((K>*N++BxhFo|CfL&u^nKB!ry z`AHt_j=n=+3<$gwO~Hks4+I$iB3&L?gz@Nt=Nn=$f(HeiWSy94SHlCeuLFe?AB~2F zOmhISWQnwsZ`bG`fT;oF7{nW5BG)$B0)B2RcrVw8pk;c`6h~B;;e863>s7HdUE(;L z327n}O)Nz(hv_WMFma~FA%)XmaPYb!e18)4%wS26{l&JCPXQNY?=zy#5`aq zI5Gqg(U-b3kX1tgZ~@w2gs>qgKSHt?OlqHtc~C2~XrC(|!Ol*0NBrQ942cWDRwMgE z#@)a&sp#>cDd$2DIML55FL8eZqIp1>XJiPyoDI~hOJ*QyK|~a9K3WG&4{=>kGX-NP z0}{%bfTRs!k9stYK!{~E30@(1I&ns9({POxR!<9pDT&jh>{H4Hi!POPWN`P!UmH_! z{V9V9Z4aR16$cB^K)4z5cmxUf!vy1XOcQi)j@a0NLa}b2>q3Pcuqx9y$vpm?v3lop z`ndyz2sy$Np=jf0!2R|+$%%g1MKmwU10Do>6Db?n1oKla7^8?g+(xpF=Xt1q*^ab1 zutMR(QlT`Ubmb{ga3d@>R3~1DK!D~;*rdawocUpeDVOmW@e(+|ZJ{P|8$i$nfK*F0oa(D5i#t?g%UsT@}KOhynY#S*)cw>NQ}i(dgnF?lnjjr!trd$oz~E7cln0o4FbSLE`2OWt1CTD&|s~DJ2WD zSP|^FPLT|-g~`}y>2`_T41ap)>2IVLJc@ik465LBycYq}nW72}V#Gr}0gJcCr|bgq zJOyDkA$QApU<^~a1Ay`1<#PN%8&=FIH0?uyO2+C)g3F*Nl?w17qx9%i#T$`gF2^~Y3Sboi6ppiqiXLWZDnjGEmqh6~wD z^wU?9S(-Z%FRDyJj4OUB5Yc5ok`(Y&3rU6`M}{@*ZI=y$fwBMsL;)jVKd2wTsf1yW zQCe_cK(8V7UNVuYZ!>k+J&xgULxuh}fp$j2JtH z#E>CtJnnUe=mz)<_q1qkXiSH|iO&dxAp<130Uy>R)Vobc<3bYcjaE3q1DoJMKnG5D3|Z28J}; zR536k!hjd4)3dwsuP_|SDGc$&5Fz;%&qsik)P@EP-1HXWkHG*yjXWjd!+X;mk!83@ z*+SGIZv$;7X^;*xG`@#qo7p;;P`AfpU z@KD4)ge#rafv$1My)<@Fd-3rK~;(=HC~$H9I-)}hle zhH&8WG2{T`7pV+H!Gl}xf&Gw9$pNTN5L5)md&wQo>H@?wGnqw9^`PZQXJjU`dHzH= zO^pjSBA_{?CK1RW6TGq1;xc`-{}X`I@PJ@k?0Zx@Rm3Rn9!2&*hsQ4j|D0J%3l4jkMB3N%cK_d0PZun7?Y!fp^@i%MY&hl*IdS-(sYkfs0h6lpr9e-@uuYNnqo^R6nW7xjrNa1 z4B()`nShe0ars(`?~w|~WxRreAU@SX1f;uX{>l8-7h&FurKEs_*aEsV2;>z5a4-mc zNI^gz%`mM1ZEV2-q~3I1X~^9ra8Wb0thWSFV?{WG{%N@D9a#}NOj`=%O)Wx~lSa({ zJYlq-YfO>w4{}a2`wUe^a?={Ph7y9O4Z&5UbwW^w;eb)|QckoX+%RiDtOY5g&4g?T zia3|niKPyo$b4eD=3FTu=m=r(3jy9y&dc0(<0i205XE(F)Wc zu<*n1ieGA!E8l-&626BeNr!$P3>*7| zFNgW<8AJtz|3CT$yB^;V|4-iq1MH{WPXeI;K1-+yI2+CRH5 z*w+VtHC*2ZmG$}ivIF=XXMtMBpMhlKmp=3HyPZ$tryyTaH{d6lFX1;aAE=MCr3>&Q z%;R+fe)@4eeo^!kezo!+R)ICwns2SNF1Pxur>tLF|6(h<*siqK*%#nPAD^?Yw!dnB z)4t7q%6=X{j6CRM;3ptuPSmM&);gP<9nL>FUvRE>e&9Uq>~Y?9{_KoqWM<@N9Fegg zV_C)tus$X|@P%2R7uWMyCI^%33b*g*u7EKzHRF(*LNQB1zq!(pT*^Ov5YTCvQ^cRe zt5@y;mOPG%nFB2X6ILJWbEdHwIEp!1MD+vv>zJ?&OXb97m`3T zsbUh%M4!2{FKb$pT$8i3S>6nD$N-xdhtJ1kYyk5JGhoG^g+9nm zj*E`G1@0O8Fyg7`$g zh>6D*u7n3mnhO>*!M)(-tqhzJ{_v1OF3*fwPB0=pAxB7nW<;1ULJ^{&(JzP&q0vWk za?`<|!3<&CQ?JeU9tNC0|Fy-Ha*xkkA|D_#XV3Qfc{LmuaK!4D@r(;h4-g=O6y0ufa9V$9t#4 z8+!g8mNXoo!D|_KwoH%LPx@2!^acJ-eF}~en9kYM*wjSRmkwvBAOy$Er^%I|H_wGP nz4{oI-p2z`d(dNafUZxfr=Sn3;D6kDv`vkf9@9>*OV9rX this.$items.length - 1 || pos < 0) return; + + if (this.sliding) { + return this.$element.one("slid", function () { + that.to(pos); + }); + } + + if (activeIndex == pos) { + return this.pause().cycle(); + } + + return this.slide( + pos > activeIndex ? "next" : "prev", + $(this.$items[pos]), + ); + }, + + pause: function (e) { + if (!e) this.paused = true; + if ( + this.$element.find(".next, .prev").length && + $.support.transition.end + ) { + this.$element.trigger($.support.transition.end); + this.cycle(true); + } + clearInterval(this.interval); + this.interval = null; + return this; + }, + + next: function () { + if (this.sliding) return; + return this.slide("next"); + }, + + prev: function () { + if (this.sliding) return; + return this.slide("prev"); + }, + + slide: function (type, next) { + var $active = this.$element.find(".item.active"), + $next = next || $active[type](), + isCycling = this.interval, + direction = type == "next" ? "left" : "right", + fallback = type == "next" ? "first" : "last", + that = this, + e; + + this.sliding = true; + + isCycling && this.pause(); + + $next = $next.length ? $next : this.$element.find(".item")[fallback](); + + e = $.Event("slide", { + relatedTarget: $next[0], + direction: direction, + }); + + if ($next.hasClass("active")) return; + + if (this.$indicators.length) { + this.$indicators.find(".active").removeClass("active"); + this.$element.one("slid", function () { + var $nextIndicator = $( + that.$indicators.children()[that.getActiveIndex()], + ); + $nextIndicator && $nextIndicator.addClass("active"); + }); + } + + if ($.support.transition && this.$element.hasClass("slide")) { + this.$element.trigger(e); + if (e.isDefaultPrevented()) return; + $next.addClass(type); + $next[0].offsetWidth; // force reflow + $active.addClass(direction); + $next.addClass(direction); + this.$element.one($.support.transition.end, function () { + $next.removeClass([type, direction].join(" ")).addClass("active"); + $active.removeClass(["active", direction].join(" ")); + that.sliding = false; + setTimeout(function () { + that.$element.trigger("slid"); + }, 0); + }); + } else { + this.$element.trigger(e); + if (e.isDefaultPrevented()) return; + $active.removeClass("active"); + $next.addClass("active"); + this.sliding = false; + this.$element.trigger("slid"); + } + + isCycling && this.cycle(); + + return this; + }, + }; + + /* CAROUSEL PLUGIN DEFINITION + * ========================== */ + + var old = $.fn.carousel; + + $.fn.carousel = function (option) { + return this.each(function () { + var $this = $(this), + data = $this.data("carousel"), + options = $.extend( + {}, + $.fn.carousel.defaults, + typeof option == "object" && option, + ), + action = typeof option == "string" ? option : options.slide; + if (!data) $this.data("carousel", (data = new Carousel(this, options))); + if (typeof option == "number") data.to(option); + else if (action) data[action](); + else if (options.interval) data.pause().cycle(); + }); + }; + + $.fn.carousel.defaults = { + interval: 5000, + pause: "hover", + }; + + $.fn.carousel.Constructor = Carousel; + + /* CAROUSEL NO CONFLICT + * ==================== */ + + $.fn.carousel.noConflict = function () { + $.fn.carousel = old; + return this; + }; + + /* CAROUSEL DATA-API + * ================= */ + + $(document).on( + "click.carousel.data-api", + "[data-slide], [data-slide-to]", + function (e) { + var $this = $(this), + href, + $target = $( + $this.attr("data-target") || + ((href = $this.attr("href")) && href.replace(/.*(?=#[^\s]+$)/, "")), + ), //strip for ie7 + options = $.extend({}, $target.data(), $this.data()), + slideIndex; + + $target.carousel(options); + + if ((slideIndex = $this.attr("data-slide-to"))) { + $target.data("carousel").pause().to(slideIndex).cycle(); + } + + e.preventDefault(); + }, + ); +})( + window.jQuery, +); /* ============================================================= + * bootstrap-collapse.js v2.3.1 + * http://twitter.github.com/bootstrap/javascript.html#collapse + * ============================================================= + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============================================================ */ + +!(function ($) { + "use strict"; // jshint ;_; + + /* COLLAPSE PUBLIC CLASS DEFINITION + * ================================ */ + + var Collapse = function (element, options) { + this.$element = $(element); + this.options = $.extend({}, $.fn.collapse.defaults, options); + + if (this.options.parent) { + this.$parent = $(this.options.parent); + } + + this.options.toggle && this.toggle(); + }; + + Collapse.prototype = { + constructor: Collapse, + + dimension: function () { + var hasWidth = this.$element.hasClass("width"); + return hasWidth ? "width" : "height"; + }, + + show: function () { + var dimension, scroll, actives, hasData; + + if (this.transitioning || this.$element.hasClass("in")) return; + + dimension = this.dimension(); + scroll = $.camelCase(["scroll", dimension].join("-")); + actives = this.$parent && this.$parent.find("> .accordion-group > .in"); + + if (actives && actives.length) { + hasData = actives.data("collapse"); + if (hasData && hasData.transitioning) return; + actives.collapse("hide"); + hasData || actives.data("collapse", null); + } + + this.$element[dimension](0); + this.transition("addClass", $.Event("show"), "shown"); + $.support.transition && + this.$element[dimension](this.$element[0][scroll]); + }, + + hide: function () { + var dimension; + if (this.transitioning || !this.$element.hasClass("in")) return; + dimension = this.dimension(); + this.reset(this.$element[dimension]()); + this.transition("removeClass", $.Event("hide"), "hidden"); + this.$element[dimension](0); + }, + + reset: function (size) { + var dimension = this.dimension(); + + this.$element.removeClass("collapse")[dimension](size || "auto")[0] + .offsetWidth; + + this.$element[size !== null ? "addClass" : "removeClass"]("collapse"); + + return this; + }, + + transition: function (method, startEvent, completeEvent) { + var that = this, + complete = function () { + if (startEvent.type == "show") that.reset(); + that.transitioning = 0; + that.$element.trigger(completeEvent); + }; + + this.$element.trigger(startEvent); + + if (startEvent.isDefaultPrevented()) return; + + this.transitioning = 1; + + this.$element[method]("in"); + + $.support.transition && this.$element.hasClass("collapse") + ? this.$element.one($.support.transition.end, complete) + : complete(); + }, + + toggle: function () { + this[this.$element.hasClass("in") ? "hide" : "show"](); + }, + }; + + /* COLLAPSE PLUGIN DEFINITION + * ========================== */ + + var old = $.fn.collapse; + + $.fn.collapse = function (option) { + return this.each(function () { + var $this = $(this), + data = $this.data("collapse"), + options = $.extend( + {}, + $.fn.collapse.defaults, + $this.data(), + typeof option == "object" && option, + ); + if (!data) $this.data("collapse", (data = new Collapse(this, options))); + if (typeof option == "string") data[option](); + }); + }; + + $.fn.collapse.defaults = { + toggle: true, + }; + + $.fn.collapse.Constructor = Collapse; + + /* COLLAPSE NO CONFLICT + * ==================== */ + + $.fn.collapse.noConflict = function () { + $.fn.collapse = old; + return this; + }; + + /* COLLAPSE DATA-API + * ================= */ + + $(document).on( + "click.collapse.data-api", + "[data-toggle=collapse]", + function (e) { + var $this = $(this), + href, + target = + $this.attr("data-target") || + e.preventDefault() || + ((href = $this.attr("href")) && href.replace(/.*(?=#[^\s]+$)/, "")), //strip for ie7 + option = $(target).data("collapse") ? "toggle" : $this.data(); + $this[$(target).hasClass("in") ? "addClass" : "removeClass"]("collapsed"); + $(target).collapse(option); + }, + ); +})( + window.jQuery, +); /* ============================================================ + * bootstrap-dropdown.js v2.3.1 + * http://twitter.github.com/bootstrap/javascript.html#dropdowns + * ============================================================ + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============================================================ */ + +!(function ($) { + "use strict"; // jshint ;_; + + /* DROPDOWN CLASS DEFINITION + * ========================= */ + + var toggle = "[data-toggle=dropdown]", + Dropdown = function (element) { + var $el = $(element).on("click.dropdown.data-api", this.toggle); + $("html").on("click.dropdown.data-api", function () { + $el.parent().removeClass("open"); + }); + }; + + Dropdown.prototype = { + constructor: Dropdown, + + toggle: function (e) { + var $this = $(this), + $parent, + isActive; + + if ($this.is(".disabled, :disabled")) return; + + $parent = getParent($this); + + isActive = $parent.hasClass("open"); + + clearMenus(); + + if (!isActive) { + $parent.toggleClass("open"); + } + + $this.focus(); + + return false; + }, + + keydown: function (e) { + var $this, $items, $active, $parent, isActive, index; + + if (!/(38|40|27)/.test(e.keyCode)) return; + + $this = $(this); + + e.preventDefault(); + e.stopPropagation(); + + if ($this.is(".disabled, :disabled")) return; + + $parent = getParent($this); + + isActive = $parent.hasClass("open"); + + if (!isActive || (isActive && e.keyCode == 27)) { + if (e.which == 27) $parent.find(toggle).focus(); + return $this.click(); + } + + $items = $("[role=menu] li:not(.divider):visible a", $parent); + + if (!$items.length) return; + + index = $items.index($items.filter(":focus")); + + if (e.keyCode == 38 && index > 0) index--; // up + if (e.keyCode == 40 && index < $items.length - 1) index++; // down + if (!~index) index = 0; + + $items.eq(index).focus(); + }, + }; + + function clearMenus() { + $(toggle).each(function () { + getParent($(this)).removeClass("open"); + }); + } + + function getParent($this) { + var selector = $this.attr("data-target"), + $parent; + + if (!selector) { + selector = $this.attr("href"); + selector = + selector && + /#/.test(selector) && + selector.replace(/.*(?=#[^\s]*$)/, ""); //strip for ie7 + } + + $parent = selector && $(selector); + + if (!$parent || !$parent.length) $parent = $this.parent(); + + return $parent; + } + + /* DROPDOWN PLUGIN DEFINITION + * ========================== */ + + var old = $.fn.dropdown; + + $.fn.dropdown = function (option) { + return this.each(function () { + var $this = $(this), + data = $this.data("dropdown"); + if (!data) $this.data("dropdown", (data = new Dropdown(this))); + if (typeof option == "string") data[option].call($this); + }); + }; + + $.fn.dropdown.Constructor = Dropdown; + + /* DROPDOWN NO CONFLICT + * ==================== */ + + $.fn.dropdown.noConflict = function () { + $.fn.dropdown = old; + return this; + }; + + /* APPLY TO STANDARD DROPDOWN ELEMENTS + * =================================== */ + + $(document) + .on("click.dropdown.data-api", clearMenus) + .on("click.dropdown.data-api", ".dropdown form", function (e) { + e.stopPropagation(); + }) + .on("click.dropdown-menu", function (e) { + e.stopPropagation(); + }) + .on("click.dropdown.data-api", toggle, Dropdown.prototype.toggle) + .on( + "keydown.dropdown.data-api", + toggle + ", [role=menu]", + Dropdown.prototype.keydown, + ); +})(window.jQuery); +/* ========================================================= + * bootstrap-modal.js v2.3.1 + * http://twitter.github.com/bootstrap/javascript.html#modals + * ========================================================= + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ========================================================= */ + +!(function ($) { + "use strict"; // jshint ;_; + + /* MODAL CLASS DEFINITION + * ====================== */ + + var Modal = function (element, options) { + this.options = options; + this.$element = $(element).delegate( + '[data-dismiss="modal"]', + "click.dismiss.modal", + $.proxy(this.hide, this), + ); + this.options.remote && + this.$element.find(".modal-body").load(this.options.remote); + }; + + Modal.prototype = { + constructor: Modal, + + toggle: function () { + return this[!this.isShown ? "show" : "hide"](); + }, + + show: function () { + var that = this, + e = $.Event("show"); + + this.$element.trigger(e); + + if (this.isShown || e.isDefaultPrevented()) return; + + this.isShown = true; + + this.escape(); + + this.backdrop(function () { + var transition = $.support.transition && that.$element.hasClass("fade"); + + if (!that.$element.parent().length) { + that.$element.appendTo(document.body); //don't move modals dom position + } + + that.$element.show(); + + if (transition) { + that.$element[0].offsetWidth; // force reflow + } + + that.$element.addClass("in").attr("aria-hidden", false); + + that.enforceFocus(); + + transition + ? that.$element.one($.support.transition.end, function () { + that.$element.focus().trigger("shown"); + }) + : that.$element.focus().trigger("shown"); + }); + }, + + hide: function (e) { + e && e.preventDefault(); + + var that = this; + + e = $.Event("hide"); + + this.$element.trigger(e); + + if (!this.isShown || e.isDefaultPrevented()) return; + + this.isShown = false; + + this.escape(); + + $(document).off("focusin.modal"); + + this.$element.removeClass("in").attr("aria-hidden", true); + + $.support.transition && this.$element.hasClass("fade") + ? this.hideWithTransition() + : this.hideModal(); + }, + + enforceFocus: function () { + var that = this; + $(document).on("focusin.modal", function (e) { + if ( + that.$element[0] !== e.target && + !that.$element.has(e.target).length + ) { + that.$element.focus(); + } + }); + }, + + escape: function () { + var that = this; + if (this.isShown && this.options.keyboard) { + this.$element.on("keyup.dismiss.modal", function (e) { + e.which == 27 && that.hide(); + }); + } else if (!this.isShown) { + this.$element.off("keyup.dismiss.modal"); + } + }, + + hideWithTransition: function () { + var that = this, + timeout = setTimeout(function () { + that.$element.off($.support.transition.end); + that.hideModal(); + }, 500); + + this.$element.one($.support.transition.end, function () { + clearTimeout(timeout); + that.hideModal(); + }); + }, + + hideModal: function () { + var that = this; + this.$element.hide(); + this.backdrop(function () { + that.removeBackdrop(); + that.$element.trigger("hidden"); + }); + }, + + removeBackdrop: function () { + this.$backdrop && this.$backdrop.remove(); + this.$backdrop = null; + }, + + backdrop: function (callback) { + var that = this, + animate = this.$element.hasClass("fade") ? "fade" : ""; + + if (this.isShown && this.options.backdrop) { + var doAnimate = $.support.transition && animate; + + this.$backdrop = $( + '