diff options
-rwxr-xr-x | dev_env_setup.sh | 58 | ||||
-rw-r--r-- | libs/combined/npm-shrinkwrap.json | 2339 | ||||
-rw-r--r-- | libs/combined/package-lock.json | 106 | ||||
-rw-r--r--[-rwxr-xr-x] | libs/combined/package.json | 2 | ||||
-rw-r--r-- | libs/stellar-util/package-lock.json | 24 | ||||
-rw-r--r-- | src/css/bootstrap.css (renamed from src/css/bootstrap-3.3.7.css) | 985 | ||||
-rw-r--r-- | src/css/bootstrap.css.map | 1 | ||||
-rw-r--r-- | src/index.html | 10 | ||||
-rw-r--r-- | src/js/bootstrap.js (renamed from src/js/bootstrap-3.3.7.js) | 397 | ||||
-rw-r--r-- | src/js/entropy.js | 345 | ||||
-rw-r--r-- | src/js/index.js | 16 | ||||
-rw-r--r-- | tests/spec/tests.js | 106 |
12 files changed, 3563 insertions, 826 deletions
diff --git a/dev_env_setup.sh b/dev_env_setup.sh new file mode 100755 index 0000000..68af109 --- /dev/null +++ b/dev_env_setup.sh | |||
@@ -0,0 +1,58 @@ | |||
1 | # this script is intended to be run in a VM | ||
2 | # running ubuntu 20.04 server | ||
3 | # from the root directory of this repo | ||
4 | |||
5 | echo "This script is intended to be run in a VM." | ||
6 | echo "It may do things to your OS that you don't want to be peristent." | ||
7 | echo "Please type virtualmachine to continue, or Ctrl-C to quit." | ||
8 | |||
9 | read passage | ||
10 | |||
11 | if [ "$passage" = "virtualmachine" ]; then | ||
12 | echo "Installing dev environment" | ||
13 | else | ||
14 | echo "Did not type virtualmachine, quitting with no changes applied" | ||
15 | exit | ||
16 | fi | ||
17 | |||
18 | # set up place for local binaries | ||
19 | mkdir $HOME/.bin | ||
20 | echo "export PATH=$PATH:$HOME/.bin" >> $HOME/.bashrc | ||
21 | source $HOME/.bashrc | ||
22 | |||
23 | # allow python3 to be run with python command | ||
24 | ln -s /usr/bin/python3 $HOME/.bin/python | ||
25 | |||
26 | # install firefox and other dependencies | ||
27 | sudo apt-get -y install firefox unzip openjdk-11-jre-headless xvfb libxi6 libgconf-2-4 | ||
28 | # install chrome | ||
29 | curl -sS -o - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add | ||
30 | sudo sh -c "echo \"deb https://dl.google.com/linux/chrome/deb/ stable main\" >> /etc/apt/sources.list.d/google-chrome.list" | ||
31 | sudo apt-get -y update | ||
32 | sudo apt-get -y install google-chrome-stable | ||
33 | |||
34 | # install nodejs for running tests | ||
35 | curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash | ||
36 | # load nvm | ||
37 | source $HOME/.bashrc | ||
38 | export NVM_DIR="$HOME/.nvm" | ||
39 | [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | ||
40 | [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion | ||
41 | # install latest node | ||
42 | nvm install node | ||
43 | # install jasmine | ||
44 | cd tests | ||
45 | npm install --global jasmine | ||
46 | npm install selenium-webdriver | ||
47 | # install gecko webdriver for firefox | ||
48 | wget https://github.com/mozilla/geckodriver/releases/download/v0.27.0/geckodriver-v0.27.0-linux64.tar.gz --output-document=/tmp/geckodriver.tar.gz | ||
49 | tar -xf /tmp/geckodriver.tar.gz -C $HOME/.bin | ||
50 | # install chrome webdriver for chromium | ||
51 | wget https://chromedriver.storage.googleapis.com/85.0.4183.87/chromedriver_linux64.zip --output-document=/tmp/chromedriver.zip | ||
52 | unzip /tmp/chromedriver.zip -d $HOME/.bin | ||
53 | |||
54 | # to run tests | ||
55 | # cd tests | ||
56 | # Xvfb :1 -screen 1 1024x768x24 & export DISPLAY=:1.1 | ||
57 | # BROWSER=firefox jasmine spec/tests.js | ||
58 | # BROWSER=chrome jasmine spec/tests.js | ||
diff --git a/libs/combined/npm-shrinkwrap.json b/libs/combined/npm-shrinkwrap.json index fa60284..1d39cc7 100644 --- a/libs/combined/npm-shrinkwrap.json +++ b/libs/combined/npm-shrinkwrap.json | |||
@@ -1,17 +1,2354 @@ | |||
1 | { | 1 | { |
2 | "name": "bip39-tool-external-libs", | ||
3 | "version": "0.4.0", | ||
4 | "lockfileVersion": 1, | ||
5 | "requires": true, | ||
2 | "dependencies": { | 6 | "dependencies": { |
7 | "@protobufjs/aspromise": { | ||
8 | "version": "1.1.2", | ||
9 | "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", | ||
10 | "integrity": "sha1-m4sMxmPWaafY9vXQiToU00jzD78=" | ||
11 | }, | ||
12 | "@protobufjs/base64": { | ||
13 | "version": "1.1.2", | ||
14 | "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", | ||
15 | "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==" | ||
16 | }, | ||
17 | "@protobufjs/codegen": { | ||
18 | "version": "2.0.4", | ||
19 | "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", | ||
20 | "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==" | ||
21 | }, | ||
22 | "@protobufjs/eventemitter": { | ||
23 | "version": "1.1.0", | ||
24 | "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", | ||
25 | "integrity": "sha1-NVy8mLr61ZePntCV85diHx0Ga3A=" | ||
26 | }, | ||
27 | "@protobufjs/fetch": { | ||
28 | "version": "1.1.0", | ||
29 | "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", | ||
30 | "integrity": "sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU=", | ||
31 | "requires": { | ||
32 | "@protobufjs/aspromise": "^1.1.1", | ||
33 | "@protobufjs/inquire": "^1.1.0" | ||
34 | } | ||
35 | }, | ||
36 | "@protobufjs/float": { | ||
37 | "version": "1.0.2", | ||
38 | "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", | ||
39 | "integrity": "sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E=" | ||
40 | }, | ||
41 | "@protobufjs/inquire": { | ||
42 | "version": "1.1.0", | ||
43 | "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", | ||
44 | "integrity": "sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik=" | ||
45 | }, | ||
46 | "@protobufjs/path": { | ||
47 | "version": "1.1.2", | ||
48 | "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", | ||
49 | "integrity": "sha1-bMKyDFya1q0NzP0hynZz2Nf79o0=" | ||
50 | }, | ||
51 | "@protobufjs/pool": { | ||
52 | "version": "1.1.0", | ||
53 | "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", | ||
54 | "integrity": "sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q=" | ||
55 | }, | ||
56 | "@protobufjs/utf8": { | ||
57 | "version": "1.1.0", | ||
58 | "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", | ||
59 | "integrity": "sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA=" | ||
60 | }, | ||
61 | "@types/long": { | ||
62 | "version": "4.0.1", | ||
63 | "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.1.tgz", | ||
64 | "integrity": "sha512-5tXH6Bx/kNGd3MgffdmP4dy2Z+G4eaXw0SE81Tq3BNadtnMR5/ySMzX4SLEzHJzSmPNn4HIdpQsBvXMUykr58w==" | ||
65 | }, | ||
66 | "@types/node": { | ||
67 | "version": "11.11.6", | ||
68 | "resolved": "https://registry.npmjs.org/@types/node/-/node-11.11.6.tgz", | ||
69 | "integrity": "sha512-Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ==" | ||
70 | }, | ||
71 | "JSONStream": { | ||
72 | "version": "1.3.5", | ||
73 | "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", | ||
74 | "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", | ||
75 | "dev": true, | ||
76 | "requires": { | ||
77 | "jsonparse": "^1.2.0", | ||
78 | "through": ">=2.2.7 <3" | ||
79 | } | ||
80 | }, | ||
81 | "acorn": { | ||
82 | "version": "7.3.1", | ||
83 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.3.1.tgz", | ||
84 | "integrity": "sha512-tLc0wSnatxAQHVHUapaHdz72pi9KUyHjq5KyHjGg9Y8Ifdc79pTh2XvI6I1/chZbnM7QtNKzh66ooDogPZSleA==", | ||
85 | "dev": true | ||
86 | }, | ||
87 | "acorn-node": { | ||
88 | "version": "1.8.2", | ||
89 | "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", | ||
90 | "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", | ||
91 | "dev": true, | ||
92 | "requires": { | ||
93 | "acorn": "^7.0.0", | ||
94 | "acorn-walk": "^7.0.0", | ||
95 | "xtend": "^4.0.2" | ||
96 | } | ||
97 | }, | ||
98 | "acorn-walk": { | ||
99 | "version": "7.2.0", | ||
100 | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", | ||
101 | "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", | ||
102 | "dev": true | ||
103 | }, | ||
104 | "array-union": { | ||
105 | "version": "1.0.2", | ||
106 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", | ||
107 | "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", | ||
108 | "requires": { | ||
109 | "array-uniq": "^1.0.1" | ||
110 | } | ||
111 | }, | ||
112 | "array-uniq": { | ||
113 | "version": "1.0.3", | ||
114 | "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", | ||
115 | "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" | ||
116 | }, | ||
117 | "arrify": { | ||
118 | "version": "1.0.1", | ||
119 | "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", | ||
120 | "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" | ||
121 | }, | ||
122 | "asap": { | ||
123 | "version": "2.0.6", | ||
124 | "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", | ||
125 | "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" | ||
126 | }, | ||
127 | "asn1.js": { | ||
128 | "version": "4.10.1", | ||
129 | "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", | ||
130 | "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", | ||
131 | "dev": true, | ||
132 | "requires": { | ||
133 | "bn.js": "^4.0.0", | ||
134 | "inherits": "^2.0.1", | ||
135 | "minimalistic-assert": "^1.0.0" | ||
136 | } | ||
137 | }, | ||
138 | "assert": { | ||
139 | "version": "1.5.0", | ||
140 | "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", | ||
141 | "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", | ||
142 | "dev": true, | ||
143 | "requires": { | ||
144 | "object-assign": "^4.1.1", | ||
145 | "util": "0.10.3" | ||
146 | }, | ||
147 | "dependencies": { | ||
148 | "inherits": { | ||
149 | "version": "2.0.1", | ||
150 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", | ||
151 | "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", | ||
152 | "dev": true | ||
153 | }, | ||
154 | "util": { | ||
155 | "version": "0.10.3", | ||
156 | "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", | ||
157 | "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", | ||
158 | "dev": true, | ||
159 | "requires": { | ||
160 | "inherits": "2.0.1" | ||
161 | } | ||
162 | } | ||
163 | } | ||
164 | }, | ||
165 | "axios": { | ||
166 | "version": "0.18.1", | ||
167 | "resolved": "https://registry.npmjs.org/axios/-/axios-0.18.1.tgz", | ||
168 | "integrity": "sha512-0BfJq4NSfQXd+SkFdrvFbG7addhYSBA2mQwISr46pD6E5iqkWg02RAs8vyTT/j0RTnoYmeXauBuSv1qKwR179g==", | ||
169 | "requires": { | ||
170 | "follow-redirects": "1.5.10", | ||
171 | "is-buffer": "^2.0.2" | ||
172 | } | ||
173 | }, | ||
174 | "balanced-match": { | ||
175 | "version": "1.0.0", | ||
176 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", | ||
177 | "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" | ||
178 | }, | ||
179 | "base-x": { | ||
180 | "version": "3.0.7", | ||
181 | "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.7.tgz", | ||
182 | "integrity": "sha512-zAKJGuQPihXW22fkrfOclUUZXM2g92z5GzlSMHxhO6r6Qj+Nm0ccaGNBzDZojzwOMkpjAv4J0fOv1U4go+a4iw==", | ||
183 | "requires": { | ||
184 | "safe-buffer": "^5.0.1" | ||
185 | } | ||
186 | }, | ||
187 | "base32.js": { | ||
188 | "version": "0.1.0", | ||
189 | "resolved": "https://registry.npmjs.org/base32.js/-/base32.js-0.1.0.tgz", | ||
190 | "integrity": "sha1-tYLexpPC8R6JPPBk7mrFthMaIgI=" | ||
191 | }, | ||
192 | "base64-js": { | ||
193 | "version": "1.3.1", | ||
194 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz", | ||
195 | "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==" | ||
196 | }, | ||
197 | "bchaddrjs": { | ||
198 | "version": "0.4.4", | ||
199 | "resolved": "https://registry.npmjs.org/bchaddrjs/-/bchaddrjs-0.4.4.tgz", | ||
200 | "integrity": "sha512-WCgxhGeJ4LVwtMjiCzwAJd6OsBWd/fgYuhYbFhVvMrjhIurIqirYKWkwJVjNO+Xxa9K0SntFR2taxod03MKEHA==", | ||
201 | "requires": { | ||
202 | "bs58check": "^2.1.2", | ||
203 | "cashaddrjs": "^0.3.8" | ||
204 | } | ||
205 | }, | ||
206 | "bchaddrjs-slp": { | ||
207 | "version": "git://github.com/simpleledger/bchaddrjs.git#af16e44a6bfbe4b3980a62dba50e2f68ed864c6b", | ||
208 | "from": "git://github.com/simpleledger/bchaddrjs.git#af16e44a6bfbe4b3980a62dba50e2f68ed864c6b", | ||
209 | "requires": { | ||
210 | "bs58check": "^2.1.2", | ||
211 | "cashaddrjs-slp": "^0.2.12" | ||
212 | } | ||
213 | }, | ||
214 | "bech32": { | ||
215 | "version": "1.1.4", | ||
216 | "resolved": "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz", | ||
217 | "integrity": "sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==" | ||
218 | }, | ||
219 | "big-integer": { | ||
220 | "version": "1.6.36", | ||
221 | "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.36.tgz", | ||
222 | "integrity": "sha512-t70bfa7HYEA1D9idDbmuv7YbsbVkQ+Hp+8KFSul4aE5e/i1bjCNIRYJZlA8Q8p0r9T8cF/RVvwUgRA//FydEyg==" | ||
223 | }, | ||
224 | "bigi": { | ||
225 | "version": "1.4.2", | ||
226 | "resolved": "https://registry.npmjs.org/bigi/-/bigi-1.4.2.tgz", | ||
227 | "integrity": "sha1-nGZalfiLiwj8Bc/XMfVhhZ1yWCU=" | ||
228 | }, | ||
229 | "bignumber.js": { | ||
230 | "version": "5.0.0", | ||
231 | "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-5.0.0.tgz", | ||
232 | "integrity": "sha512-KWTu6ZMVk9sxlDJQh2YH1UOnfDP8O8TpxUxgQG/vKASoSnEjK9aVuOueFaPcQEYQ5fyNXNTOYwYw3099RYebWg==" | ||
233 | }, | ||
234 | "bindings": { | ||
235 | "version": "1.5.0", | ||
236 | "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", | ||
237 | "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", | ||
238 | "requires": { | ||
239 | "file-uri-to-path": "1.0.0" | ||
240 | } | ||
241 | }, | ||
242 | "bip38": { | ||
243 | "version": "2.0.2", | ||
244 | "resolved": "https://registry.npmjs.org/bip38/-/bip38-2.0.2.tgz", | ||
245 | "integrity": "sha512-22KDak0RDyghFbR0Si7wyq9IgY423YzGYzWLpGeofH3DaolOQqjD3mNN08eFoubKlbyclOQKFwtONMv2SD9V3A==", | ||
246 | "requires": { | ||
247 | "bigi": "^1.2.0", | ||
248 | "browserify-aes": "^1.0.1", | ||
249 | "bs58check": "<3.0.0", | ||
250 | "buffer-xor": "^1.0.2", | ||
251 | "create-hash": "^1.1.1", | ||
252 | "ecurve": "^1.0.0", | ||
253 | "scryptsy": "^2.0.0" | ||
254 | } | ||
255 | }, | ||
256 | "bip38grs": { | ||
257 | "version": "git://github.com/Groestlcoin/bip38grs.git#091975b01679b74dc0a4136bb743fe17791b0151", | ||
258 | "from": "git://github.com/Groestlcoin/bip38grs.git#091975b01679b74dc0a4136bb743fe17791b0151", | ||
259 | "requires": { | ||
260 | "bigi": "^1.2.0", | ||
261 | "browserify-aes": "^1.0.1", | ||
262 | "bs58check": "<3.0.0", | ||
263 | "bs58grscheck": "git+https://github.com/Groestlcoin/bs58grscheck.git", | ||
264 | "buffer-xor": "^1.0.2", | ||
265 | "create-hash": "^1.1.1", | ||
266 | "ecurve": "^1.0.0", | ||
267 | "scryptsy": "^2.0.0" | ||
268 | } | ||
269 | }, | ||
270 | "bip39": { | ||
271 | "version": "3.0.2", | ||
272 | "resolved": "https://registry.npmjs.org/bip39/-/bip39-3.0.2.tgz", | ||
273 | "integrity": "sha512-J4E1r2N0tUylTKt07ibXvhpT2c5pyAFgvuA5q1H9uDy6dEGpjV8jmymh3MTYJDLCNbIVClSB9FbND49I6N24MQ==", | ||
274 | "requires": { | ||
275 | "@types/node": "11.11.6", | ||
276 | "create-hash": "^1.1.0", | ||
277 | "pbkdf2": "^3.0.9", | ||
278 | "randombytes": "^2.0.1" | ||
279 | } | ||
280 | }, | ||
281 | "bip66": { | ||
282 | "version": "1.1.5", | ||
283 | "resolved": "https://registry.npmjs.org/bip66/-/bip66-1.1.5.tgz", | ||
284 | "integrity": "sha1-AfqHSHhcpwlV1QESF9GzE5lpyiI=", | ||
285 | "requires": { | ||
286 | "safe-buffer": "^5.0.1" | ||
287 | } | ||
288 | }, | ||
289 | "bitcoin-ops": { | ||
290 | "version": "1.4.1", | ||
291 | "resolved": "https://registry.npmjs.org/bitcoin-ops/-/bitcoin-ops-1.4.1.tgz", | ||
292 | "integrity": "sha512-pef6gxZFztEhaE9RY9HmWVmiIHqCb2OyS4HPKkpc6CIiiOa3Qmuoylxc5P2EkU3w+5eTSifI9SEZC88idAIGow==" | ||
293 | }, | ||
294 | "bitcoinjs-lib": { | ||
295 | "version": "git://github.com/iancoleman/bitcoinjs-lib.git#ac212f04e81313ddfda7ed28856ac6c7dfbe6f75", | ||
296 | "from": "git://github.com/iancoleman/bitcoinjs-lib.git#v3.3.2_16bit", | ||
297 | "requires": { | ||
298 | "bech32": "^1.1.2", | ||
299 | "bigi": "^1.4.0", | ||
300 | "bip66": "^1.1.0", | ||
301 | "bitcoin-ops": "^1.3.0", | ||
302 | "bs58check": "^2.0.0", | ||
303 | "create-hash": "^1.1.0", | ||
304 | "create-hmac": "^1.1.3", | ||
305 | "ecurve": "^1.0.0", | ||
306 | "merkle-lib": "^2.0.10", | ||
307 | "pushdata-bitcoin": "^1.0.1", | ||
308 | "randombytes": "^2.0.1", | ||
309 | "safe-buffer": "^5.0.1", | ||
310 | "typeforce": "^1.11.3", | ||
311 | "varuint-bitcoin": "^1.0.4", | ||
312 | "wif": "^2.0.1" | ||
313 | } | ||
314 | }, | ||
315 | "blake2b": { | ||
316 | "version": "2.1.3", | ||
317 | "resolved": "https://registry.npmjs.org/blake2b/-/blake2b-2.1.3.tgz", | ||
318 | "integrity": "sha512-pkDss4xFVbMb4270aCyGD3qLv92314Et+FsKzilCLxDz5DuZ2/1g3w4nmBbu6nKApPspnjG7JcwTjGZnduB1yg==", | ||
319 | "requires": { | ||
320 | "blake2b-wasm": "^1.1.0", | ||
321 | "nanoassert": "^1.0.0" | ||
322 | } | ||
323 | }, | ||
324 | "blake2b-wasm": { | ||
325 | "version": "1.1.7", | ||
326 | "resolved": "https://registry.npmjs.org/blake2b-wasm/-/blake2b-wasm-1.1.7.tgz", | ||
327 | "integrity": "sha512-oFIHvXhlz/DUgF0kq5B1CqxIDjIJwh9iDeUUGQUcvgiGz7Wdw03McEO7CfLBy7QKGdsydcMCgO9jFNBAFCtFcA==", | ||
328 | "requires": { | ||
329 | "nanoassert": "^1.0.0" | ||
330 | } | ||
331 | }, | ||
332 | "bn.js": { | ||
333 | "version": "4.11.9", | ||
334 | "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", | ||
335 | "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==" | ||
336 | }, | ||
337 | "brace-expansion": { | ||
338 | "version": "1.1.11", | ||
339 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", | ||
340 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", | ||
341 | "requires": { | ||
342 | "balanced-match": "^1.0.0", | ||
343 | "concat-map": "0.0.1" | ||
344 | } | ||
345 | }, | ||
346 | "brorand": { | ||
347 | "version": "1.1.0", | ||
348 | "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", | ||
349 | "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" | ||
350 | }, | ||
351 | "browser-pack": { | ||
352 | "version": "6.1.0", | ||
353 | "resolved": "https://registry.npmjs.org/browser-pack/-/browser-pack-6.1.0.tgz", | ||
354 | "integrity": "sha512-erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA==", | ||
355 | "dev": true, | ||
356 | "requires": { | ||
357 | "JSONStream": "^1.0.3", | ||
358 | "combine-source-map": "~0.8.0", | ||
359 | "defined": "^1.0.0", | ||
360 | "safe-buffer": "^5.1.1", | ||
361 | "through2": "^2.0.0", | ||
362 | "umd": "^3.0.0" | ||
363 | } | ||
364 | }, | ||
365 | "browser-resolve": { | ||
366 | "version": "1.11.3", | ||
367 | "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", | ||
368 | "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", | ||
369 | "dev": true, | ||
370 | "requires": { | ||
371 | "resolve": "1.1.7" | ||
372 | }, | ||
373 | "dependencies": { | ||
374 | "resolve": { | ||
375 | "version": "1.1.7", | ||
376 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", | ||
377 | "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", | ||
378 | "dev": true | ||
379 | } | ||
380 | } | ||
381 | }, | ||
382 | "browserify": { | ||
383 | "version": "16.5.1", | ||
384 | "resolved": "https://registry.npmjs.org/browserify/-/browserify-16.5.1.tgz", | ||
385 | "integrity": "sha512-EQX0h59Pp+0GtSRb5rL6OTfrttlzv+uyaUVlK6GX3w11SQ0jKPKyjC/54RhPR2ib2KmfcELM06e8FxcI5XNU2A==", | ||
386 | "dev": true, | ||
387 | "requires": { | ||
388 | "JSONStream": "^1.0.3", | ||
389 | "assert": "^1.4.0", | ||
390 | "browser-pack": "^6.0.1", | ||
391 | "browser-resolve": "^1.11.0", | ||
392 | "browserify-zlib": "~0.2.0", | ||
393 | "buffer": "~5.2.1", | ||
394 | "cached-path-relative": "^1.0.0", | ||
395 | "concat-stream": "^1.6.0", | ||
396 | "console-browserify": "^1.1.0", | ||
397 | "constants-browserify": "~1.0.0", | ||
398 | "crypto-browserify": "^3.0.0", | ||
399 | "defined": "^1.0.0", | ||
400 | "deps-sort": "^2.0.0", | ||
401 | "domain-browser": "^1.2.0", | ||
402 | "duplexer2": "~0.1.2", | ||
403 | "events": "^2.0.0", | ||
404 | "glob": "^7.1.0", | ||
405 | "has": "^1.0.0", | ||
406 | "htmlescape": "^1.1.0", | ||
407 | "https-browserify": "^1.0.0", | ||
408 | "inherits": "~2.0.1", | ||
409 | "insert-module-globals": "^7.0.0", | ||
410 | "labeled-stream-splicer": "^2.0.0", | ||
411 | "mkdirp-classic": "^0.5.2", | ||
412 | "module-deps": "^6.0.0", | ||
413 | "os-browserify": "~0.3.0", | ||
414 | "parents": "^1.0.1", | ||
415 | "path-browserify": "~0.0.0", | ||
416 | "process": "~0.11.0", | ||
417 | "punycode": "^1.3.2", | ||
418 | "querystring-es3": "~0.2.0", | ||
419 | "read-only-stream": "^2.0.0", | ||
420 | "readable-stream": "^2.0.2", | ||
421 | "resolve": "^1.1.4", | ||
422 | "shasum": "^1.0.0", | ||
423 | "shell-quote": "^1.6.1", | ||
424 | "stream-browserify": "^2.0.0", | ||
425 | "stream-http": "^3.0.0", | ||
426 | "string_decoder": "^1.1.1", | ||
427 | "subarg": "^1.0.0", | ||
428 | "syntax-error": "^1.1.1", | ||
429 | "through2": "^2.0.0", | ||
430 | "timers-browserify": "^1.0.1", | ||
431 | "tty-browserify": "0.0.1", | ||
432 | "url": "~0.11.0", | ||
433 | "util": "~0.10.1", | ||
434 | "vm-browserify": "^1.0.0", | ||
435 | "xtend": "^4.0.0" | ||
436 | }, | ||
437 | "dependencies": { | ||
438 | "buffer": { | ||
439 | "version": "5.2.1", | ||
440 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.2.1.tgz", | ||
441 | "integrity": "sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg==", | ||
442 | "dev": true, | ||
443 | "requires": { | ||
444 | "base64-js": "^1.0.2", | ||
445 | "ieee754": "^1.1.4" | ||
446 | } | ||
447 | }, | ||
448 | "readable-stream": { | ||
449 | "version": "2.3.7", | ||
450 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", | ||
451 | "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", | ||
452 | "dev": true, | ||
453 | "requires": { | ||
454 | "core-util-is": "~1.0.0", | ||
455 | "inherits": "~2.0.3", | ||
456 | "isarray": "~1.0.0", | ||
457 | "process-nextick-args": "~2.0.0", | ||
458 | "safe-buffer": "~5.1.1", | ||
459 | "string_decoder": "~1.1.1", | ||
460 | "util-deprecate": "~1.0.1" | ||
461 | }, | ||
462 | "dependencies": { | ||
463 | "string_decoder": { | ||
464 | "version": "1.1.1", | ||
465 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", | ||
466 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", | ||
467 | "dev": true, | ||
468 | "requires": { | ||
469 | "safe-buffer": "~5.1.0" | ||
470 | } | ||
471 | } | ||
472 | } | ||
473 | }, | ||
474 | "safe-buffer": { | ||
475 | "version": "5.1.2", | ||
476 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", | ||
477 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", | ||
478 | "dev": true | ||
479 | } | ||
480 | } | ||
481 | }, | ||
482 | "browserify-aes": { | ||
483 | "version": "1.2.0", | ||
484 | "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", | ||
485 | "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", | ||
486 | "requires": { | ||
487 | "buffer-xor": "^1.0.3", | ||
488 | "cipher-base": "^1.0.0", | ||
489 | "create-hash": "^1.1.0", | ||
490 | "evp_bytestokey": "^1.0.3", | ||
491 | "inherits": "^2.0.1", | ||
492 | "safe-buffer": "^5.0.1" | ||
493 | } | ||
494 | }, | ||
495 | "browserify-cipher": { | ||
496 | "version": "1.0.1", | ||
497 | "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", | ||
498 | "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", | ||
499 | "dev": true, | ||
500 | "requires": { | ||
501 | "browserify-aes": "^1.0.4", | ||
502 | "browserify-des": "^1.0.0", | ||
503 | "evp_bytestokey": "^1.0.0" | ||
504 | } | ||
505 | }, | ||
506 | "browserify-des": { | ||
507 | "version": "1.0.2", | ||
508 | "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", | ||
509 | "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", | ||
510 | "dev": true, | ||
511 | "requires": { | ||
512 | "cipher-base": "^1.0.1", | ||
513 | "des.js": "^1.0.0", | ||
514 | "inherits": "^2.0.1", | ||
515 | "safe-buffer": "^5.1.2" | ||
516 | } | ||
517 | }, | ||
518 | "browserify-rsa": { | ||
519 | "version": "4.0.1", | ||
520 | "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", | ||
521 | "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", | ||
522 | "dev": true, | ||
523 | "requires": { | ||
524 | "bn.js": "^4.1.0", | ||
525 | "randombytes": "^2.0.1" | ||
526 | } | ||
527 | }, | ||
528 | "browserify-sign": { | ||
529 | "version": "4.2.0", | ||
530 | "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.0.tgz", | ||
531 | "integrity": "sha512-hEZC1KEeYuoHRqhGhTy6gWrpJA3ZDjFWv0DE61643ZnOXAKJb3u7yWcrU0mMc9SwAqK1n7myPGndkp0dFG7NFA==", | ||
532 | "dev": true, | ||
533 | "requires": { | ||
534 | "bn.js": "^5.1.1", | ||
535 | "browserify-rsa": "^4.0.1", | ||
536 | "create-hash": "^1.2.0", | ||
537 | "create-hmac": "^1.1.7", | ||
538 | "elliptic": "^6.5.2", | ||
539 | "inherits": "^2.0.4", | ||
540 | "parse-asn1": "^5.1.5", | ||
541 | "readable-stream": "^3.6.0", | ||
542 | "safe-buffer": "^5.2.0" | ||
543 | }, | ||
544 | "dependencies": { | ||
545 | "bn.js": { | ||
546 | "version": "5.1.2", | ||
547 | "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.1.2.tgz", | ||
548 | "integrity": "sha512-40rZaf3bUNKTVYu9sIeeEGOg7g14Yvnj9kH7b50EiwX0Q7A6umbvfI5tvHaOERH0XigqKkfLkFQxzb4e6CIXnA==", | ||
549 | "dev": true | ||
550 | } | ||
551 | } | ||
552 | }, | ||
553 | "browserify-zlib": { | ||
554 | "version": "0.2.0", | ||
555 | "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", | ||
556 | "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", | ||
557 | "dev": true, | ||
558 | "requires": { | ||
559 | "pako": "~1.0.5" | ||
560 | } | ||
561 | }, | ||
562 | "bs58": { | ||
563 | "version": "4.0.1", | ||
564 | "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz", | ||
565 | "integrity": "sha1-vhYedsNU9veIrkBx9j806MTwpCo=", | ||
566 | "requires": { | ||
567 | "base-x": "^3.0.2" | ||
568 | } | ||
569 | }, | ||
570 | "bs58check": { | ||
571 | "version": "2.1.2", | ||
572 | "resolved": "https://registry.npmjs.org/bs58check/-/bs58check-2.1.2.tgz", | ||
573 | "integrity": "sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==", | ||
574 | "requires": { | ||
575 | "bs58": "^4.0.0", | ||
576 | "create-hash": "^1.1.0", | ||
577 | "safe-buffer": "^5.1.2" | ||
578 | } | ||
579 | }, | ||
580 | "bs58grscheck": { | ||
581 | "version": "2.1.2", | ||
582 | "resolved": "git+https://github.com/Groestlcoin/bs58grscheck.git#8ff31333a7626161c1484b461c20710bb9f97b93", | ||
583 | "requires": { | ||
584 | "bs58": "^4.0.0", | ||
585 | "create-hash": "^1.1.0", | ||
586 | "groestl-hash-js": "^1.0.0", | ||
587 | "safe-buffer": "^5.1.2" | ||
588 | } | ||
589 | }, | ||
590 | "buffer": { | ||
591 | "version": "5.4.3", | ||
592 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.4.3.tgz", | ||
593 | "integrity": "sha512-zvj65TkFeIt3i6aj5bIvJDzjjQQGs4o/sNoezg1F1kYap9Nu2jcUdpwzRSJTHMMzG0H7bZkn4rNQpImhuxWX2A==", | ||
594 | "requires": { | ||
595 | "base64-js": "^1.0.2", | ||
596 | "ieee754": "^1.1.4" | ||
597 | } | ||
598 | }, | ||
599 | "buffer-from": { | ||
600 | "version": "1.1.1", | ||
601 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", | ||
602 | "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", | ||
603 | "dev": true | ||
604 | }, | ||
605 | "buffer-xor": { | ||
606 | "version": "1.0.3", | ||
607 | "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", | ||
608 | "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" | ||
609 | }, | ||
610 | "builtin-status-codes": { | ||
611 | "version": "3.0.0", | ||
612 | "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", | ||
613 | "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", | ||
614 | "dev": true | ||
615 | }, | ||
616 | "cached-path-relative": { | ||
617 | "version": "1.0.2", | ||
618 | "resolved": "https://registry.npmjs.org/cached-path-relative/-/cached-path-relative-1.0.2.tgz", | ||
619 | "integrity": "sha512-5r2GqsoEb4qMTTN9J+WzXfjov+hjxT+j3u5K+kIVNIwAd99DLCJE9pBIMP1qVeybV6JiijL385Oz0DcYxfbOIg==", | ||
620 | "dev": true | ||
621 | }, | ||
622 | "cashaddrjs": { | ||
623 | "version": "0.3.12", | ||
624 | "resolved": "https://registry.npmjs.org/cashaddrjs/-/cashaddrjs-0.3.12.tgz", | ||
625 | "integrity": "sha512-GdjCYMVwd86HXcFcxyEZQLPLFv8a/u0ccYPsO0PpnUW26LhZzHX9l9QA+DjaeUah7tnebwPs33NWDbbUy8iVYQ==", | ||
626 | "requires": { | ||
627 | "big-integer": "1.6.36" | ||
628 | } | ||
629 | }, | ||
630 | "cashaddrjs-slp": { | ||
631 | "version": "0.2.12", | ||
632 | "resolved": "https://registry.npmjs.org/cashaddrjs-slp/-/cashaddrjs-slp-0.2.12.tgz", | ||
633 | "integrity": "sha512-n2TTIuW6vZZxYvjvsUAA+wOM0Zkj+3RRKUtDC1XSu4Ic4XVr0yFJkl1bzQkHWda7nkVT51sxjZneygz7D0SyrQ==", | ||
634 | "requires": { | ||
635 | "big-integer": "^1.6.34" | ||
636 | } | ||
637 | }, | ||
638 | "cipher-base": { | ||
639 | "version": "1.0.4", | ||
640 | "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", | ||
641 | "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", | ||
642 | "requires": { | ||
643 | "inherits": "^2.0.1", | ||
644 | "safe-buffer": "^5.0.1" | ||
645 | } | ||
646 | }, | ||
647 | "colors": { | ||
648 | "version": "1.4.0", | ||
649 | "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", | ||
650 | "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" | ||
651 | }, | ||
652 | "combine-source-map": { | ||
653 | "version": "0.8.0", | ||
654 | "resolved": "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.8.0.tgz", | ||
655 | "integrity": "sha1-pY0N8ELBhvz4IqjoAV9UUNLXmos=", | ||
656 | "dev": true, | ||
657 | "requires": { | ||
658 | "convert-source-map": "~1.1.0", | ||
659 | "inline-source-map": "~0.6.0", | ||
660 | "lodash.memoize": "~3.0.3", | ||
661 | "source-map": "~0.5.3" | ||
662 | } | ||
663 | }, | ||
664 | "commander": { | ||
665 | "version": "2.13.0", | ||
666 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz", | ||
667 | "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==", | ||
668 | "dev": true | ||
669 | }, | ||
670 | "concat-map": { | ||
671 | "version": "0.0.1", | ||
672 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", | ||
673 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" | ||
674 | }, | ||
675 | "concat-stream": { | ||
676 | "version": "1.6.2", | ||
677 | "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", | ||
678 | "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", | ||
679 | "dev": true, | ||
680 | "requires": { | ||
681 | "buffer-from": "^1.0.0", | ||
682 | "inherits": "^2.0.3", | ||
683 | "readable-stream": "^2.2.2", | ||
684 | "typedarray": "^0.0.6" | ||
685 | }, | ||
686 | "dependencies": { | ||
687 | "readable-stream": { | ||
688 | "version": "2.3.7", | ||
689 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", | ||
690 | "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", | ||
691 | "dev": true, | ||
692 | "requires": { | ||
693 | "core-util-is": "~1.0.0", | ||
694 | "inherits": "~2.0.3", | ||
695 | "isarray": "~1.0.0", | ||
696 | "process-nextick-args": "~2.0.0", | ||
697 | "safe-buffer": "~5.1.1", | ||
698 | "string_decoder": "~1.1.1", | ||
699 | "util-deprecate": "~1.0.1" | ||
700 | } | ||
701 | }, | ||
702 | "safe-buffer": { | ||
703 | "version": "5.1.2", | ||
704 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", | ||
705 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", | ||
706 | "dev": true | ||
707 | }, | ||
708 | "string_decoder": { | ||
709 | "version": "1.1.1", | ||
710 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", | ||
711 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", | ||
712 | "dev": true, | ||
713 | "requires": { | ||
714 | "safe-buffer": "~5.1.0" | ||
715 | } | ||
716 | } | ||
717 | } | ||
718 | }, | ||
719 | "console-browserify": { | ||
720 | "version": "1.2.0", | ||
721 | "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", | ||
722 | "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", | ||
723 | "dev": true | ||
724 | }, | ||
725 | "constants-browserify": { | ||
726 | "version": "1.0.0", | ||
727 | "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", | ||
728 | "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", | ||
729 | "dev": true | ||
730 | }, | ||
731 | "convert-source-map": { | ||
732 | "version": "1.1.3", | ||
733 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz", | ||
734 | "integrity": "sha1-SCnId+n+SbMWHzvzZziI4gRpmGA=", | ||
735 | "dev": true | ||
736 | }, | ||
737 | "core-util-is": { | ||
738 | "version": "1.0.2", | ||
739 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", | ||
740 | "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", | ||
741 | "dev": true | ||
742 | }, | ||
743 | "crc": { | ||
744 | "version": "3.5.0", | ||
745 | "resolved": "https://registry.npmjs.org/crc/-/crc-3.5.0.tgz", | ||
746 | "integrity": "sha1-mLi6fUiWZbo5efWbITgTdBAaGWQ=" | ||
747 | }, | ||
748 | "create-ecdh": { | ||
749 | "version": "4.0.3", | ||
750 | "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", | ||
751 | "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==", | ||
752 | "dev": true, | ||
753 | "requires": { | ||
754 | "bn.js": "^4.1.0", | ||
755 | "elliptic": "^6.0.0" | ||
756 | } | ||
757 | }, | ||
758 | "create-hash": { | ||
759 | "version": "1.2.0", | ||
760 | "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", | ||
761 | "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", | ||
762 | "requires": { | ||
763 | "cipher-base": "^1.0.1", | ||
764 | "inherits": "^2.0.1", | ||
765 | "md5.js": "^1.3.4", | ||
766 | "ripemd160": "^2.0.1", | ||
767 | "sha.js": "^2.4.0" | ||
768 | } | ||
769 | }, | ||
770 | "create-hmac": { | ||
771 | "version": "1.1.7", | ||
772 | "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", | ||
773 | "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", | ||
774 | "requires": { | ||
775 | "cipher-base": "^1.0.3", | ||
776 | "create-hash": "^1.1.0", | ||
777 | "inherits": "^2.0.1", | ||
778 | "ripemd160": "^2.0.0", | ||
779 | "safe-buffer": "^5.0.1", | ||
780 | "sha.js": "^2.4.8" | ||
781 | } | ||
782 | }, | ||
783 | "crypto-browserify": { | ||
784 | "version": "3.12.0", | ||
785 | "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", | ||
786 | "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", | ||
787 | "dev": true, | ||
788 | "requires": { | ||
789 | "browserify-cipher": "^1.0.0", | ||
790 | "browserify-sign": "^4.0.0", | ||
791 | "create-ecdh": "^4.0.0", | ||
792 | "create-hash": "^1.1.0", | ||
793 | "create-hmac": "^1.1.0", | ||
794 | "diffie-hellman": "^5.0.0", | ||
795 | "inherits": "^2.0.1", | ||
796 | "pbkdf2": "^3.0.3", | ||
797 | "public-encrypt": "^4.0.0", | ||
798 | "randombytes": "^2.0.0", | ||
799 | "randomfill": "^1.0.3" | ||
800 | } | ||
801 | }, | ||
802 | "cursor": { | ||
803 | "version": "0.1.5", | ||
804 | "resolved": "https://registry.npmjs.org/cursor/-/cursor-0.1.5.tgz", | ||
805 | "integrity": "sha1-6neMKwnTPC5WT9khRwdnUEg+uyw=" | ||
806 | }, | ||
807 | "dash-ast": { | ||
808 | "version": "1.0.0", | ||
809 | "resolved": "https://registry.npmjs.org/dash-ast/-/dash-ast-1.0.0.tgz", | ||
810 | "integrity": "sha512-Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA==", | ||
811 | "dev": true | ||
812 | }, | ||
813 | "debug": { | ||
814 | "version": "3.1.0", | ||
815 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", | ||
816 | "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", | ||
817 | "requires": { | ||
818 | "ms": "2.0.0" | ||
819 | } | ||
820 | }, | ||
821 | "defined": { | ||
822 | "version": "1.0.0", | ||
823 | "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", | ||
824 | "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", | ||
825 | "dev": true | ||
826 | }, | ||
827 | "del": { | ||
828 | "version": "2.2.2", | ||
829 | "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", | ||
830 | "integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=", | ||
831 | "requires": { | ||
832 | "globby": "^5.0.0", | ||
833 | "is-path-cwd": "^1.0.0", | ||
834 | "is-path-in-cwd": "^1.0.0", | ||
835 | "object-assign": "^4.0.1", | ||
836 | "pify": "^2.0.0", | ||
837 | "pinkie-promise": "^2.0.0", | ||
838 | "rimraf": "^2.2.8" | ||
839 | } | ||
840 | }, | ||
841 | "deps-sort": { | ||
842 | "version": "2.0.1", | ||
843 | "resolved": "https://registry.npmjs.org/deps-sort/-/deps-sort-2.0.1.tgz", | ||
844 | "integrity": "sha512-1orqXQr5po+3KI6kQb9A4jnXT1PBwggGl2d7Sq2xsnOeI9GPcE/tGcF9UiSZtZBM7MukY4cAh7MemS6tZYipfw==", | ||
845 | "dev": true, | ||
846 | "requires": { | ||
847 | "JSONStream": "^1.0.3", | ||
848 | "shasum-object": "^1.0.0", | ||
849 | "subarg": "^1.0.0", | ||
850 | "through2": "^2.0.0" | ||
851 | } | ||
852 | }, | ||
853 | "des.js": { | ||
854 | "version": "1.0.1", | ||
855 | "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", | ||
856 | "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", | ||
857 | "dev": true, | ||
858 | "requires": { | ||
859 | "inherits": "^2.0.1", | ||
860 | "minimalistic-assert": "^1.0.0" | ||
861 | } | ||
862 | }, | ||
863 | "detective": { | ||
864 | "version": "5.2.0", | ||
865 | "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz", | ||
866 | "integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==", | ||
867 | "dev": true, | ||
868 | "requires": { | ||
869 | "acorn-node": "^1.6.1", | ||
870 | "defined": "^1.0.0", | ||
871 | "minimist": "^1.1.1" | ||
872 | } | ||
873 | }, | ||
874 | "diffie-hellman": { | ||
875 | "version": "5.0.3", | ||
876 | "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", | ||
877 | "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", | ||
878 | "dev": true, | ||
879 | "requires": { | ||
880 | "bn.js": "^4.1.0", | ||
881 | "miller-rabin": "^4.0.0", | ||
882 | "randombytes": "^2.0.0" | ||
883 | } | ||
884 | }, | ||
885 | "domain-browser": { | ||
886 | "version": "1.2.0", | ||
887 | "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", | ||
888 | "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", | ||
889 | "dev": true | ||
890 | }, | ||
891 | "drbg.js": { | ||
892 | "version": "1.0.1", | ||
893 | "resolved": "https://registry.npmjs.org/drbg.js/-/drbg.js-1.0.1.tgz", | ||
894 | "integrity": "sha1-Pja2xCs3BDgjzbwzLVjzHiRFSAs=", | ||
895 | "requires": { | ||
896 | "browserify-aes": "^1.0.6", | ||
897 | "create-hash": "^1.1.2", | ||
898 | "create-hmac": "^1.1.4" | ||
899 | } | ||
900 | }, | ||
901 | "duplexer2": { | ||
902 | "version": "0.1.4", | ||
903 | "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", | ||
904 | "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", | ||
905 | "dev": true, | ||
906 | "requires": { | ||
907 | "readable-stream": "^2.0.2" | ||
908 | }, | ||
909 | "dependencies": { | ||
910 | "readable-stream": { | ||
911 | "version": "2.3.7", | ||
912 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", | ||
913 | "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", | ||
914 | "dev": true, | ||
915 | "requires": { | ||
916 | "core-util-is": "~1.0.0", | ||
917 | "inherits": "~2.0.3", | ||
918 | "isarray": "~1.0.0", | ||
919 | "process-nextick-args": "~2.0.0", | ||
920 | "safe-buffer": "~5.1.1", | ||
921 | "string_decoder": "~1.1.1", | ||
922 | "util-deprecate": "~1.0.1" | ||
923 | } | ||
924 | }, | ||
925 | "safe-buffer": { | ||
926 | "version": "5.1.2", | ||
927 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", | ||
928 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", | ||
929 | "dev": true | ||
930 | }, | ||
931 | "string_decoder": { | ||
932 | "version": "1.1.1", | ||
933 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", | ||
934 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", | ||
935 | "dev": true, | ||
936 | "requires": { | ||
937 | "safe-buffer": "~5.1.0" | ||
938 | } | ||
939 | } | ||
940 | } | ||
941 | }, | ||
942 | "ecurve": { | ||
943 | "version": "1.0.6", | ||
944 | "resolved": "https://registry.npmjs.org/ecurve/-/ecurve-1.0.6.tgz", | ||
945 | "integrity": "sha512-/BzEjNfiSuB7jIWKcS/z8FK9jNjmEWvUV2YZ4RLSmcDtP7Lq0m6FvDuSnJpBlDpGRpfRQeTLGLBI8H+kEv0r+w==", | ||
946 | "requires": { | ||
947 | "bigi": "^1.1.0", | ||
948 | "safe-buffer": "^5.0.1" | ||
949 | } | ||
950 | }, | ||
951 | "ed25519": { | ||
952 | "version": "0.0.4", | ||
953 | "resolved": "https://registry.npmjs.org/ed25519/-/ed25519-0.0.4.tgz", | ||
954 | "integrity": "sha1-5WIYrOL8kD0llZOu8LKpY59HW+s=", | ||
955 | "optional": true, | ||
956 | "requires": { | ||
957 | "bindings": "^1.2.1", | ||
958 | "nan": "^2.0.9" | ||
959 | } | ||
960 | }, | ||
961 | "ed25519-hd-key": { | ||
962 | "version": "1.1.2", | ||
963 | "resolved": "https://registry.npmjs.org/ed25519-hd-key/-/ed25519-hd-key-1.1.2.tgz", | ||
964 | "integrity": "sha512-/0y9y6N7vM6Kj5ASr9J9wcMVDTtygxSOvYX+PJiMD7VcxCx2G03V5bLRl8Dug9EgkLFsLhGqBtQWQRcElEeWTA==", | ||
965 | "requires": { | ||
966 | "bip39": "3.0.2", | ||
967 | "create-hmac": "1.1.7", | ||
968 | "tweetnacl": "1.0.3" | ||
969 | } | ||
970 | }, | ||
3 | "elastos-wallet-js": { | 971 | "elastos-wallet-js": { |
4 | "version": "git://github.com/johnnynanjiang/Elastos.SDK.Keypair.Javascript.git#491dc51b64efaf0a8aae62028b68e2c8e38fde06", | 972 | "version": "git://github.com/johnnynanjiang/Elastos.SDK.Keypair.Javascript.git#491dc51b64efaf0a8aae62028b68e2c8e38fde06", |
973 | "from": "git://github.com/johnnynanjiang/Elastos.SDK.Keypair.Javascript.git#491dc51b64efaf0a8aae62028b68e2c8e38fde06", | ||
5 | "dependencies": { | 974 | "dependencies": { |
6 | "bitcore-lib-p256": { | 975 | "bitcore-lib-p256": { |
7 | "version": "0.16.0", | 976 | "version": "0.16.0", |
977 | "resolved": "https://registry.npmjs.org/bitcore-lib-p256/-/bitcore-lib-p256-0.16.0.tgz", | ||
978 | "integrity": "sha512-zuWJXrdLCsj562kwvN4XFxTUa86QV9cQymAtDuGdY4OGEvDcKcvSsx5Kq1WH3DX41PbxDbfovAQ0vuVAqgfnnw==", | ||
8 | "dependencies": { | 979 | "dependencies": { |
9 | "lodash": { | 980 | "lodash": { |
10 | "version": "4.17.12" | 981 | "version": "4.17.12", |
982 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.12.tgz", | ||
983 | "integrity": "sha512-+CiwtLnsJhX03p20mwXuvhoebatoh5B3tt+VvYlrPgZC1g36y+RRbkufX95Xa+X4I59aWEacDFYwnJZiyBh9gA==" | ||
11 | } | 984 | } |
12 | } | 985 | } |
13 | } | 986 | } |
14 | } | 987 | } |
988 | }, | ||
989 | "elliptic": { | ||
990 | "version": "6.5.3", | ||
991 | "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz", | ||
992 | "integrity": "sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==", | ||
993 | "requires": { | ||
994 | "bn.js": "^4.4.0", | ||
995 | "brorand": "^1.0.1", | ||
996 | "hash.js": "^1.0.0", | ||
997 | "hmac-drbg": "^1.0.0", | ||
998 | "inherits": "^2.0.1", | ||
999 | "minimalistic-assert": "^1.0.0", | ||
1000 | "minimalistic-crypto-utils": "^1.0.0" | ||
1001 | } | ||
1002 | }, | ||
1003 | "ethereumjs-util": { | ||
1004 | "version": "6.0.0", | ||
1005 | "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-6.0.0.tgz", | ||
1006 | "integrity": "sha512-E3yKUyl0Fs95nvTFQZe/ZSNcofhDzUsDlA5y2uoRmf1+Ec7gpGhNCsgKkZBRh7Br5op8mJcYF/jFbmjj909+nQ==", | ||
1007 | "requires": { | ||
1008 | "bn.js": "^4.11.0", | ||
1009 | "create-hash": "^1.1.2", | ||
1010 | "ethjs-util": "^0.1.6", | ||
1011 | "keccak": "^1.0.2", | ||
1012 | "rlp": "^2.0.0", | ||
1013 | "safe-buffer": "^5.1.1", | ||
1014 | "secp256k1": "^3.0.1" | ||
1015 | } | ||
1016 | }, | ||
1017 | "ethjs-util": { | ||
1018 | "version": "0.1.6", | ||
1019 | "resolved": "https://registry.npmjs.org/ethjs-util/-/ethjs-util-0.1.6.tgz", | ||
1020 | "integrity": "sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==", | ||
1021 | "requires": { | ||
1022 | "is-hex-prefixed": "1.0.0", | ||
1023 | "strip-hex-prefix": "1.0.0" | ||
1024 | } | ||
1025 | }, | ||
1026 | "events": { | ||
1027 | "version": "2.1.0", | ||
1028 | "resolved": "https://registry.npmjs.org/events/-/events-2.1.0.tgz", | ||
1029 | "integrity": "sha512-3Zmiobend8P9DjmKAty0Era4jV8oJ0yGYe2nJJAxgymF9+N8F2m0hhZiMoWtcfepExzNKZumFU3ksdQbInGWCg==", | ||
1030 | "dev": true | ||
1031 | }, | ||
1032 | "evp_bytestokey": { | ||
1033 | "version": "1.0.3", | ||
1034 | "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", | ||
1035 | "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", | ||
1036 | "requires": { | ||
1037 | "md5.js": "^1.3.4", | ||
1038 | "safe-buffer": "^5.1.1" | ||
1039 | } | ||
1040 | }, | ||
1041 | "extend": { | ||
1042 | "version": "3.0.2", | ||
1043 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", | ||
1044 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" | ||
1045 | }, | ||
1046 | "fast-levenshtein": { | ||
1047 | "version": "2.0.6", | ||
1048 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", | ||
1049 | "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" | ||
1050 | }, | ||
1051 | "fast-safe-stringify": { | ||
1052 | "version": "2.0.7", | ||
1053 | "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz", | ||
1054 | "integrity": "sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==", | ||
1055 | "dev": true | ||
1056 | }, | ||
1057 | "file-uri-to-path": { | ||
1058 | "version": "1.0.0", | ||
1059 | "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", | ||
1060 | "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==" | ||
1061 | }, | ||
1062 | "follow-redirects": { | ||
1063 | "version": "1.5.10", | ||
1064 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz", | ||
1065 | "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==", | ||
1066 | "requires": { | ||
1067 | "debug": "=3.1.0" | ||
1068 | } | ||
1069 | }, | ||
1070 | "fs.realpath": { | ||
1071 | "version": "1.0.0", | ||
1072 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", | ||
1073 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" | ||
1074 | }, | ||
1075 | "function-bind": { | ||
1076 | "version": "1.1.1", | ||
1077 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", | ||
1078 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", | ||
1079 | "dev": true | ||
1080 | }, | ||
1081 | "get-assigned-identifiers": { | ||
1082 | "version": "1.2.0", | ||
1083 | "resolved": "https://registry.npmjs.org/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz", | ||
1084 | "integrity": "sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ==", | ||
1085 | "dev": true | ||
1086 | }, | ||
1087 | "glob": { | ||
1088 | "version": "7.1.6", | ||
1089 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", | ||
1090 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", | ||
1091 | "requires": { | ||
1092 | "fs.realpath": "^1.0.0", | ||
1093 | "inflight": "^1.0.4", | ||
1094 | "inherits": "2", | ||
1095 | "minimatch": "^3.0.4", | ||
1096 | "once": "^1.3.0", | ||
1097 | "path-is-absolute": "^1.0.0" | ||
1098 | } | ||
1099 | }, | ||
1100 | "globby": { | ||
1101 | "version": "5.0.0", | ||
1102 | "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", | ||
1103 | "integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=", | ||
1104 | "requires": { | ||
1105 | "array-union": "^1.0.1", | ||
1106 | "arrify": "^1.0.0", | ||
1107 | "glob": "^7.0.3", | ||
1108 | "object-assign": "^4.0.1", | ||
1109 | "pify": "^2.0.0", | ||
1110 | "pinkie-promise": "^2.0.0" | ||
1111 | } | ||
1112 | }, | ||
1113 | "graceful-fs": { | ||
1114 | "version": "4.2.4", | ||
1115 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", | ||
1116 | "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==" | ||
1117 | }, | ||
1118 | "groestl-hash-js": { | ||
1119 | "version": "1.0.0", | ||
1120 | "resolved": "https://registry.npmjs.org/groestl-hash-js/-/groestl-hash-js-1.0.0.tgz", | ||
1121 | "integrity": "sha1-yewyVxbsSLIjz6ruZzxfj/12Bsk=" | ||
1122 | }, | ||
1123 | "groestlcoinjs-lib": { | ||
1124 | "version": "git://github.com/Groestlcoin/groestlcoinjs-lib.git#7c4ee3de832171731e7591d5462f54e50240add8", | ||
1125 | "from": "git://github.com/Groestlcoin/groestlcoinjs-lib.git#3.3.2", | ||
1126 | "requires": { | ||
1127 | "bech32": "^1.1.2", | ||
1128 | "bigi": "^1.4.0", | ||
1129 | "bip66": "^1.1.0", | ||
1130 | "bitcoin-ops": "^1.3.0", | ||
1131 | "bs58grscheck": "git+https://github.com/Groestlcoin/bs58grscheck.git", | ||
1132 | "create-hash": "^1.1.0", | ||
1133 | "create-hmac": "^1.1.3", | ||
1134 | "ecurve": "^1.0.0", | ||
1135 | "groestl-hash-js": "git+https://github.com/Groestlcoin/groestl-hash-js.git", | ||
1136 | "merkle-lib": "^2.0.10", | ||
1137 | "pushdata-bitcoin": "^1.0.1", | ||
1138 | "randombytes": "^2.0.1", | ||
1139 | "safe-buffer": "^5.0.1", | ||
1140 | "typeforce": "^1.11.3", | ||
1141 | "varuint-bitcoin": "^1.0.4", | ||
1142 | "wifgrs": "git+https://github.com/Groestlcoin/wifgrs.git" | ||
1143 | }, | ||
1144 | "dependencies": { | ||
1145 | "groestl-hash-js": { | ||
1146 | "version": "git+https://github.com/Groestlcoin/groestl-hash-js.git#ef6a04f1c4d2f0448f0882b5f213ef7a0659baee", | ||
1147 | "from": "git+https://github.com/Groestlcoin/groestl-hash-js.git" | ||
1148 | } | ||
1149 | } | ||
1150 | }, | ||
1151 | "handshake-util": { | ||
1152 | "version": "1.2.0", | ||
1153 | "resolved": "https://registry.npmjs.org/handshake-util/-/handshake-util-1.2.0.tgz", | ||
1154 | "integrity": "sha512-LhjqYdYggZjFvaPoFl3MMZU3IdPS7OwF6AZdPg+B14aJHQ72FRXYalezjFE3tAV/wBTVdHfpis89MOGhbVWBbw==", | ||
1155 | "requires": { | ||
1156 | "bech32": "^1.1.3", | ||
1157 | "blake2b": "^2.1.3" | ||
1158 | } | ||
1159 | }, | ||
1160 | "has": { | ||
1161 | "version": "1.0.3", | ||
1162 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", | ||
1163 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", | ||
1164 | "dev": true, | ||
1165 | "requires": { | ||
1166 | "function-bind": "^1.1.1" | ||
1167 | } | ||
1168 | }, | ||
1169 | "hash-base": { | ||
1170 | "version": "3.1.0", | ||
1171 | "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", | ||
1172 | "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", | ||
1173 | "requires": { | ||
1174 | "inherits": "^2.0.4", | ||
1175 | "readable-stream": "^3.6.0", | ||
1176 | "safe-buffer": "^5.2.0" | ||
1177 | } | ||
1178 | }, | ||
1179 | "hash.js": { | ||
1180 | "version": "1.1.7", | ||
1181 | "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", | ||
1182 | "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", | ||
1183 | "requires": { | ||
1184 | "inherits": "^2.0.3", | ||
1185 | "minimalistic-assert": "^1.0.1" | ||
1186 | } | ||
1187 | }, | ||
1188 | "hmac-drbg": { | ||
1189 | "version": "1.0.1", | ||
1190 | "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", | ||
1191 | "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", | ||
1192 | "requires": { | ||
1193 | "hash.js": "^1.0.3", | ||
1194 | "minimalistic-assert": "^1.0.0", | ||
1195 | "minimalistic-crypto-utils": "^1.0.1" | ||
1196 | } | ||
1197 | }, | ||
1198 | "htmlescape": { | ||
1199 | "version": "1.1.1", | ||
1200 | "resolved": "https://registry.npmjs.org/htmlescape/-/htmlescape-1.1.1.tgz", | ||
1201 | "integrity": "sha1-OgPtwiFLyjtmQko+eVk0lQnLA1E=" | ||
1202 | }, | ||
1203 | "https-browserify": { | ||
1204 | "version": "1.0.0", | ||
1205 | "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", | ||
1206 | "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", | ||
1207 | "dev": true | ||
1208 | }, | ||
1209 | "ieee754": { | ||
1210 | "version": "1.1.13", | ||
1211 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", | ||
1212 | "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==" | ||
1213 | }, | ||
1214 | "imurmurhash": { | ||
1215 | "version": "0.1.4", | ||
1216 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", | ||
1217 | "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" | ||
1218 | }, | ||
1219 | "inflight": { | ||
1220 | "version": "1.0.6", | ||
1221 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", | ||
1222 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", | ||
1223 | "requires": { | ||
1224 | "once": "^1.3.0", | ||
1225 | "wrappy": "1" | ||
1226 | } | ||
1227 | }, | ||
1228 | "inherits": { | ||
1229 | "version": "2.0.4", | ||
1230 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", | ||
1231 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" | ||
1232 | }, | ||
1233 | "inline-source-map": { | ||
1234 | "version": "0.6.2", | ||
1235 | "resolved": "https://registry.npmjs.org/inline-source-map/-/inline-source-map-0.6.2.tgz", | ||
1236 | "integrity": "sha1-+Tk0ccGKedFyT4Y/o4tYY3Ct4qU=", | ||
1237 | "dev": true, | ||
1238 | "requires": { | ||
1239 | "source-map": "~0.5.3" | ||
1240 | } | ||
1241 | }, | ||
1242 | "insert-module-globals": { | ||
1243 | "version": "7.2.0", | ||
1244 | "resolved": "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.2.0.tgz", | ||
1245 | "integrity": "sha512-VE6NlW+WGn2/AeOMd496AHFYmE7eLKkUY6Ty31k4og5vmA3Fjuwe9v6ifH6Xx/Hz27QvdoMoviw1/pqWRB09Sw==", | ||
1246 | "dev": true, | ||
1247 | "requires": { | ||
1248 | "JSONStream": "^1.0.3", | ||
1249 | "acorn-node": "^1.5.2", | ||
1250 | "combine-source-map": "^0.8.0", | ||
1251 | "concat-stream": "^1.6.1", | ||
1252 | "is-buffer": "^1.1.0", | ||
1253 | "path-is-absolute": "^1.0.1", | ||
1254 | "process": "~0.11.0", | ||
1255 | "through2": "^2.0.0", | ||
1256 | "undeclared-identifiers": "^1.1.2", | ||
1257 | "xtend": "^4.0.0" | ||
1258 | }, | ||
1259 | "dependencies": { | ||
1260 | "is-buffer": { | ||
1261 | "version": "1.1.6", | ||
1262 | "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", | ||
1263 | "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", | ||
1264 | "dev": true | ||
1265 | } | ||
1266 | } | ||
1267 | }, | ||
1268 | "is-buffer": { | ||
1269 | "version": "2.0.4", | ||
1270 | "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz", | ||
1271 | "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==" | ||
1272 | }, | ||
1273 | "is-hex-prefixed": { | ||
1274 | "version": "1.0.0", | ||
1275 | "resolved": "https://registry.npmjs.org/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz", | ||
1276 | "integrity": "sha1-fY035q135dEnFIkTxXPggtd39VQ=" | ||
1277 | }, | ||
1278 | "is-path-cwd": { | ||
1279 | "version": "1.0.0", | ||
1280 | "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", | ||
1281 | "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=" | ||
1282 | }, | ||
1283 | "is-path-in-cwd": { | ||
1284 | "version": "1.0.1", | ||
1285 | "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", | ||
1286 | "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", | ||
1287 | "requires": { | ||
1288 | "is-path-inside": "^1.0.0" | ||
1289 | } | ||
1290 | }, | ||
1291 | "is-path-inside": { | ||
1292 | "version": "1.0.1", | ||
1293 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", | ||
1294 | "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", | ||
1295 | "requires": { | ||
1296 | "path-is-inside": "^1.0.1" | ||
1297 | } | ||
1298 | }, | ||
1299 | "isarray": { | ||
1300 | "version": "1.0.0", | ||
1301 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", | ||
1302 | "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", | ||
1303 | "dev": true | ||
1304 | }, | ||
1305 | "javascript-biginteger": { | ||
1306 | "version": "0.9.2", | ||
1307 | "resolved": "https://registry.npmjs.org/javascript-biginteger/-/javascript-biginteger-0.9.2.tgz", | ||
1308 | "integrity": "sha1-W+O7wRyoUdYKX75Sq3MmF5Wet1Y=" | ||
1309 | }, | ||
1310 | "js-xdr": { | ||
1311 | "version": "1.1.4", | ||
1312 | "resolved": "https://registry.npmjs.org/js-xdr/-/js-xdr-1.1.4.tgz", | ||
1313 | "integrity": "sha512-Xhwys9hyDZQDisxCKZi2nDhvGg6fKhsEgAUaJlzjwo32mZ2gZVIQl3+w4Le5SX5dsKDsboFdM2gnu5JALWetTg==", | ||
1314 | "requires": { | ||
1315 | "cursor": "^0.1.5", | ||
1316 | "lodash": "^4.17.5", | ||
1317 | "long": "^2.2.3" | ||
1318 | }, | ||
1319 | "dependencies": { | ||
1320 | "long": { | ||
1321 | "version": "2.4.0", | ||
1322 | "resolved": "https://registry.npmjs.org/long/-/long-2.4.0.tgz", | ||
1323 | "integrity": "sha1-n6GAux2VAM3CnEFWdmoZleH0Uk8=" | ||
1324 | } | ||
1325 | } | ||
1326 | }, | ||
1327 | "json-stable-stringify": { | ||
1328 | "version": "0.0.1", | ||
1329 | "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz", | ||
1330 | "integrity": "sha1-YRwj6BTbN1Un34URk9tZ3Sryf0U=", | ||
1331 | "dev": true, | ||
1332 | "requires": { | ||
1333 | "jsonify": "~0.0.0" | ||
1334 | } | ||
1335 | }, | ||
1336 | "jsonify": { | ||
1337 | "version": "0.0.0", | ||
1338 | "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", | ||
1339 | "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", | ||
1340 | "dev": true | ||
1341 | }, | ||
1342 | "jsonparse": { | ||
1343 | "version": "1.3.1", | ||
1344 | "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", | ||
1345 | "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=", | ||
1346 | "dev": true | ||
1347 | }, | ||
1348 | "jsrsasign": { | ||
1349 | "version": "8.0.19", | ||
1350 | "resolved": "https://registry.npmjs.org/jsrsasign/-/jsrsasign-8.0.19.tgz", | ||
1351 | "integrity": "sha512-qf+F41huTh9ThXj5n3yfAJJRp8vx05JYbGlGvCjusYX50rsfqY6ASK08LCOutl0yA1BHIpGG8bd1w5x9aGy7Zg==" | ||
1352 | }, | ||
1353 | "jssha": { | ||
1354 | "version": "3.1.0", | ||
1355 | "resolved": "https://registry.npmjs.org/jssha/-/jssha-3.1.0.tgz", | ||
1356 | "integrity": "sha512-tPCmr8xSLd8ug6N51k0rbF1tAQWZz1i/uCVHpCH9dl+Te+wM/T375R3lTexP3bk1HPmQ+NlJHQPYLmYuyk6slA==" | ||
1357 | }, | ||
1358 | "keccak": { | ||
1359 | "version": "1.4.0", | ||
1360 | "resolved": "https://registry.npmjs.org/keccak/-/keccak-1.4.0.tgz", | ||
1361 | "integrity": "sha512-eZVaCpblK5formjPjeTBik7TAg+pqnDrMHIffSvi9Lh7PQgM1+hSzakUeZFCk9DVVG0dacZJuaz2ntwlzZUIBw==", | ||
1362 | "requires": { | ||
1363 | "bindings": "^1.2.1", | ||
1364 | "inherits": "^2.0.3", | ||
1365 | "nan": "^2.2.1", | ||
1366 | "safe-buffer": "^5.1.0" | ||
1367 | } | ||
1368 | }, | ||
1369 | "kjua": { | ||
1370 | "version": "0.6.0", | ||
1371 | "resolved": "https://registry.npmjs.org/kjua/-/kjua-0.6.0.tgz", | ||
1372 | "integrity": "sha512-BQp9V1rt1CfZT0sOgNhqndkah0WtZIJVo3AZDiqh+c1/9zszaCFfy3+TkZtUh/n5ukPes1OXLCCxPQeLvSEI6Q==" | ||
1373 | }, | ||
1374 | "labeled-stream-splicer": { | ||
1375 | "version": "2.0.2", | ||
1376 | "resolved": "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.2.tgz", | ||
1377 | "integrity": "sha512-Ca4LSXFFZUjPScRaqOcFxneA0VpKZr4MMYCljyQr4LIewTLb3Y0IUTIsnBBsVubIeEfxeSZpSjSsRM8APEQaAw==", | ||
1378 | "dev": true, | ||
1379 | "requires": { | ||
1380 | "inherits": "^2.0.1", | ||
1381 | "stream-splicer": "^2.0.0" | ||
1382 | } | ||
1383 | }, | ||
1384 | "lodash": { | ||
1385 | "version": "4.17.15", | ||
1386 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", | ||
1387 | "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" | ||
1388 | }, | ||
1389 | "lodash.memoize": { | ||
1390 | "version": "3.0.4", | ||
1391 | "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-3.0.4.tgz", | ||
1392 | "integrity": "sha1-LcvSwofLwKVcxCMovQxzYVDVPj8=", | ||
1393 | "dev": true | ||
1394 | }, | ||
1395 | "long": { | ||
1396 | "version": "4.0.0", | ||
1397 | "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", | ||
1398 | "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==" | ||
1399 | }, | ||
1400 | "md5.js": { | ||
1401 | "version": "1.3.5", | ||
1402 | "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", | ||
1403 | "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", | ||
1404 | "requires": { | ||
1405 | "hash-base": "^3.0.0", | ||
1406 | "inherits": "^2.0.1", | ||
1407 | "safe-buffer": "^5.1.2" | ||
1408 | } | ||
1409 | }, | ||
1410 | "merkle-lib": { | ||
1411 | "version": "2.0.10", | ||
1412 | "resolved": "https://registry.npmjs.org/merkle-lib/-/merkle-lib-2.0.10.tgz", | ||
1413 | "integrity": "sha1-grjbrnXieneFOItz+ddyXQ9vMyY=" | ||
1414 | }, | ||
1415 | "miller-rabin": { | ||
1416 | "version": "4.0.1", | ||
1417 | "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", | ||
1418 | "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", | ||
1419 | "dev": true, | ||
1420 | "requires": { | ||
1421 | "bn.js": "^4.0.0", | ||
1422 | "brorand": "^1.0.1" | ||
1423 | } | ||
1424 | }, | ||
1425 | "minimalistic-assert": { | ||
1426 | "version": "1.0.1", | ||
1427 | "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", | ||
1428 | "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" | ||
1429 | }, | ||
1430 | "minimalistic-crypto-utils": { | ||
1431 | "version": "1.0.1", | ||
1432 | "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", | ||
1433 | "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" | ||
1434 | }, | ||
1435 | "minimatch": { | ||
1436 | "version": "3.0.4", | ||
1437 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", | ||
1438 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", | ||
1439 | "requires": { | ||
1440 | "brace-expansion": "^1.1.7" | ||
1441 | } | ||
1442 | }, | ||
1443 | "minimist": { | ||
1444 | "version": "1.2.5", | ||
1445 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", | ||
1446 | "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", | ||
1447 | "dev": true | ||
1448 | }, | ||
1449 | "mkdirp-classic": { | ||
1450 | "version": "0.5.3", | ||
1451 | "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", | ||
1452 | "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", | ||
1453 | "dev": true | ||
1454 | }, | ||
1455 | "module-deps": { | ||
1456 | "version": "6.2.2", | ||
1457 | "resolved": "https://registry.npmjs.org/module-deps/-/module-deps-6.2.2.tgz", | ||
1458 | "integrity": "sha512-a9y6yDv5u5I4A+IPHTnqFxcaKr4p50/zxTjcQJaX2ws9tN/W6J6YXnEKhqRyPhl494dkcxx951onSKVezmI+3w==", | ||
1459 | "dev": true, | ||
1460 | "requires": { | ||
1461 | "JSONStream": "^1.0.3", | ||
1462 | "browser-resolve": "^1.7.0", | ||
1463 | "cached-path-relative": "^1.0.2", | ||
1464 | "concat-stream": "~1.6.0", | ||
1465 | "defined": "^1.0.0", | ||
1466 | "detective": "^5.2.0", | ||
1467 | "duplexer2": "^0.1.2", | ||
1468 | "inherits": "^2.0.1", | ||
1469 | "parents": "^1.0.0", | ||
1470 | "readable-stream": "^2.0.2", | ||
1471 | "resolve": "^1.4.0", | ||
1472 | "stream-combiner2": "^1.1.1", | ||
1473 | "subarg": "^1.0.0", | ||
1474 | "through2": "^2.0.0", | ||
1475 | "xtend": "^4.0.0" | ||
1476 | }, | ||
1477 | "dependencies": { | ||
1478 | "readable-stream": { | ||
1479 | "version": "2.3.7", | ||
1480 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", | ||
1481 | "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", | ||
1482 | "dev": true, | ||
1483 | "requires": { | ||
1484 | "core-util-is": "~1.0.0", | ||
1485 | "inherits": "~2.0.3", | ||
1486 | "isarray": "~1.0.0", | ||
1487 | "process-nextick-args": "~2.0.0", | ||
1488 | "safe-buffer": "~5.1.1", | ||
1489 | "string_decoder": "~1.1.1", | ||
1490 | "util-deprecate": "~1.0.1" | ||
1491 | } | ||
1492 | }, | ||
1493 | "safe-buffer": { | ||
1494 | "version": "5.1.2", | ||
1495 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", | ||
1496 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", | ||
1497 | "dev": true | ||
1498 | }, | ||
1499 | "string_decoder": { | ||
1500 | "version": "1.1.1", | ||
1501 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", | ||
1502 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", | ||
1503 | "dev": true, | ||
1504 | "requires": { | ||
1505 | "safe-buffer": "~5.1.0" | ||
1506 | } | ||
1507 | } | ||
1508 | } | ||
1509 | }, | ||
1510 | "ms": { | ||
1511 | "version": "2.0.0", | ||
1512 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", | ||
1513 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" | ||
1514 | }, | ||
1515 | "nan": { | ||
1516 | "version": "2.14.1", | ||
1517 | "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.1.tgz", | ||
1518 | "integrity": "sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw==" | ||
1519 | }, | ||
1520 | "nanoassert": { | ||
1521 | "version": "1.1.0", | ||
1522 | "resolved": "https://registry.npmjs.org/nanoassert/-/nanoassert-1.1.0.tgz", | ||
1523 | "integrity": "sha1-TzFS4JVA/eKMdvRLGbvNHVpCR40=" | ||
1524 | }, | ||
1525 | "nebulas": { | ||
1526 | "version": "0.5.6", | ||
1527 | "resolved": "https://registry.npmjs.org/nebulas/-/nebulas-0.5.6.tgz", | ||
1528 | "integrity": "sha512-ylp0FAblWIPFojgbQcPEEJyBwZa4L5ayHtS1MUC5qE/zv0UbPHOQA99tDHmPkA4r36KUp0AuJhXx/jmaenFw4Q==", | ||
1529 | "requires": { | ||
1530 | "axios": "^0.18.0", | ||
1531 | "bignumber.js": "^5.0.0", | ||
1532 | "bs58": "^4.0.1", | ||
1533 | "extend": "^3.0.1", | ||
1534 | "htmlescape": "^1.1.1", | ||
1535 | "jssha": "*", | ||
1536 | "keccak": "^1.0.2", | ||
1537 | "node-localstorage": "^1.3.1", | ||
1538 | "promise": "^8.0.1", | ||
1539 | "protobufjs": "^6.8.6", | ||
1540 | "remove-node-modules": "^1.7.2", | ||
1541 | "ripemd160": "^2.0.1", | ||
1542 | "safe-buffer": "^5.1.1", | ||
1543 | "scryptsy": "^2.0.0", | ||
1544 | "secp256k1": "^3.5.0", | ||
1545 | "uuid": "^3.0.1" | ||
1546 | } | ||
1547 | }, | ||
1548 | "node-localstorage": { | ||
1549 | "version": "1.3.1", | ||
1550 | "resolved": "https://registry.npmjs.org/node-localstorage/-/node-localstorage-1.3.1.tgz", | ||
1551 | "integrity": "sha512-NMWCSWWc6JbHT5PyWlNT2i8r7PgGYXVntmKawY83k/M0UJScZ5jirb61TLnqKwd815DfBQu+lR3sRw08SPzIaQ==", | ||
1552 | "requires": { | ||
1553 | "write-file-atomic": "^1.1.4" | ||
1554 | } | ||
1555 | }, | ||
1556 | "object-assign": { | ||
1557 | "version": "4.1.1", | ||
1558 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", | ||
1559 | "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" | ||
1560 | }, | ||
1561 | "once": { | ||
1562 | "version": "1.4.0", | ||
1563 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", | ||
1564 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", | ||
1565 | "requires": { | ||
1566 | "wrappy": "1" | ||
1567 | } | ||
1568 | }, | ||
1569 | "os-browserify": { | ||
1570 | "version": "0.3.0", | ||
1571 | "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", | ||
1572 | "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", | ||
1573 | "dev": true | ||
1574 | }, | ||
1575 | "pako": { | ||
1576 | "version": "1.0.11", | ||
1577 | "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", | ||
1578 | "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", | ||
1579 | "dev": true | ||
1580 | }, | ||
1581 | "parents": { | ||
1582 | "version": "1.0.1", | ||
1583 | "resolved": "https://registry.npmjs.org/parents/-/parents-1.0.1.tgz", | ||
1584 | "integrity": "sha1-/t1NK/GTp3dF/nHjcdc8MwfZx1E=", | ||
1585 | "dev": true, | ||
1586 | "requires": { | ||
1587 | "path-platform": "~0.11.15" | ||
1588 | } | ||
1589 | }, | ||
1590 | "parse-asn1": { | ||
1591 | "version": "5.1.5", | ||
1592 | "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz", | ||
1593 | "integrity": "sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==", | ||
1594 | "dev": true, | ||
1595 | "requires": { | ||
1596 | "asn1.js": "^4.0.0", | ||
1597 | "browserify-aes": "^1.0.0", | ||
1598 | "create-hash": "^1.1.0", | ||
1599 | "evp_bytestokey": "^1.0.0", | ||
1600 | "pbkdf2": "^3.0.3", | ||
1601 | "safe-buffer": "^5.1.1" | ||
1602 | } | ||
1603 | }, | ||
1604 | "path-browserify": { | ||
1605 | "version": "0.0.1", | ||
1606 | "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", | ||
1607 | "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", | ||
1608 | "dev": true | ||
1609 | }, | ||
1610 | "path-is-absolute": { | ||
1611 | "version": "1.0.1", | ||
1612 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", | ||
1613 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" | ||
1614 | }, | ||
1615 | "path-is-inside": { | ||
1616 | "version": "1.0.2", | ||
1617 | "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", | ||
1618 | "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" | ||
1619 | }, | ||
1620 | "path-parse": { | ||
1621 | "version": "1.0.6", | ||
1622 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", | ||
1623 | "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", | ||
1624 | "dev": true | ||
1625 | }, | ||
1626 | "path-platform": { | ||
1627 | "version": "0.11.15", | ||
1628 | "resolved": "https://registry.npmjs.org/path-platform/-/path-platform-0.11.15.tgz", | ||
1629 | "integrity": "sha1-6GQhf3TDaFDwhSt43Hv31KVyG/I=", | ||
1630 | "dev": true | ||
1631 | }, | ||
1632 | "pbkdf2": { | ||
1633 | "version": "3.1.1", | ||
1634 | "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz", | ||
1635 | "integrity": "sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==", | ||
1636 | "requires": { | ||
1637 | "create-hash": "^1.1.2", | ||
1638 | "create-hmac": "^1.1.4", | ||
1639 | "ripemd160": "^2.0.1", | ||
1640 | "safe-buffer": "^5.0.1", | ||
1641 | "sha.js": "^2.4.8" | ||
1642 | } | ||
1643 | }, | ||
1644 | "pify": { | ||
1645 | "version": "2.3.0", | ||
1646 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", | ||
1647 | "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" | ||
1648 | }, | ||
1649 | "pinkie": { | ||
1650 | "version": "2.0.4", | ||
1651 | "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", | ||
1652 | "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" | ||
1653 | }, | ||
1654 | "pinkie-promise": { | ||
1655 | "version": "2.0.1", | ||
1656 | "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", | ||
1657 | "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", | ||
1658 | "requires": { | ||
1659 | "pinkie": "^2.0.0" | ||
1660 | } | ||
1661 | }, | ||
1662 | "process": { | ||
1663 | "version": "0.11.10", | ||
1664 | "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", | ||
1665 | "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", | ||
1666 | "dev": true | ||
1667 | }, | ||
1668 | "process-nextick-args": { | ||
1669 | "version": "2.0.1", | ||
1670 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", | ||
1671 | "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", | ||
1672 | "dev": true | ||
1673 | }, | ||
1674 | "promise": { | ||
1675 | "version": "8.1.0", | ||
1676 | "resolved": "https://registry.npmjs.org/promise/-/promise-8.1.0.tgz", | ||
1677 | "integrity": "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==", | ||
1678 | "requires": { | ||
1679 | "asap": "~2.0.6" | ||
1680 | } | ||
1681 | }, | ||
1682 | "protobufjs": { | ||
1683 | "version": "6.9.0", | ||
1684 | "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.9.0.tgz", | ||
1685 | "integrity": "sha512-LlGVfEWDXoI/STstRDdZZKb/qusoAWUnmLg9R8OLSO473mBLWHowx8clbX5/+mKDEI+v7GzjoK9tRPZMMcoTrg==", | ||
1686 | "requires": { | ||
1687 | "@protobufjs/aspromise": "^1.1.2", | ||
1688 | "@protobufjs/base64": "^1.1.2", | ||
1689 | "@protobufjs/codegen": "^2.0.4", | ||
1690 | "@protobufjs/eventemitter": "^1.1.0", | ||
1691 | "@protobufjs/fetch": "^1.1.0", | ||
1692 | "@protobufjs/float": "^1.0.2", | ||
1693 | "@protobufjs/inquire": "^1.1.0", | ||
1694 | "@protobufjs/path": "^1.1.2", | ||
1695 | "@protobufjs/pool": "^1.1.0", | ||
1696 | "@protobufjs/utf8": "^1.1.0", | ||
1697 | "@types/long": "^4.0.1", | ||
1698 | "@types/node": "^13.7.0", | ||
1699 | "long": "^4.0.0" | ||
1700 | }, | ||
1701 | "dependencies": { | ||
1702 | "@types/node": { | ||
1703 | "version": "13.13.12", | ||
1704 | "resolved": "https://registry.npmjs.org/@types/node/-/node-13.13.12.tgz", | ||
1705 | "integrity": "sha512-zWz/8NEPxoXNT9YyF2osqyA9WjssZukYpgI4UYZpOjcyqwIUqWGkcCionaEb9Ki+FULyPyvNFpg/329Kd2/pbw==" | ||
1706 | } | ||
1707 | } | ||
1708 | }, | ||
1709 | "public-encrypt": { | ||
1710 | "version": "4.0.3", | ||
1711 | "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", | ||
1712 | "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", | ||
1713 | "dev": true, | ||
1714 | "requires": { | ||
1715 | "bn.js": "^4.1.0", | ||
1716 | "browserify-rsa": "^4.0.0", | ||
1717 | "create-hash": "^1.1.0", | ||
1718 | "parse-asn1": "^5.0.0", | ||
1719 | "randombytes": "^2.0.1", | ||
1720 | "safe-buffer": "^5.1.2" | ||
1721 | } | ||
1722 | }, | ||
1723 | "punycode": { | ||
1724 | "version": "1.4.1", | ||
1725 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", | ||
1726 | "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", | ||
1727 | "dev": true | ||
1728 | }, | ||
1729 | "pushdata-bitcoin": { | ||
1730 | "version": "1.0.1", | ||
1731 | "resolved": "https://registry.npmjs.org/pushdata-bitcoin/-/pushdata-bitcoin-1.0.1.tgz", | ||
1732 | "integrity": "sha1-FZMdPNlnreUiBvUjqnMxrvfUOvc=", | ||
1733 | "requires": { | ||
1734 | "bitcoin-ops": "^1.3.0" | ||
1735 | } | ||
1736 | }, | ||
1737 | "querystring": { | ||
1738 | "version": "0.2.0", | ||
1739 | "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", | ||
1740 | "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", | ||
1741 | "dev": true | ||
1742 | }, | ||
1743 | "querystring-es3": { | ||
1744 | "version": "0.2.1", | ||
1745 | "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", | ||
1746 | "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", | ||
1747 | "dev": true | ||
1748 | }, | ||
1749 | "randombytes": { | ||
1750 | "version": "2.1.0", | ||
1751 | "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", | ||
1752 | "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", | ||
1753 | "requires": { | ||
1754 | "safe-buffer": "^5.1.0" | ||
1755 | } | ||
1756 | }, | ||
1757 | "randomfill": { | ||
1758 | "version": "1.0.4", | ||
1759 | "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", | ||
1760 | "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", | ||
1761 | "dev": true, | ||
1762 | "requires": { | ||
1763 | "randombytes": "^2.0.5", | ||
1764 | "safe-buffer": "^5.1.0" | ||
1765 | } | ||
1766 | }, | ||
1767 | "read-only-stream": { | ||
1768 | "version": "2.0.0", | ||
1769 | "resolved": "https://registry.npmjs.org/read-only-stream/-/read-only-stream-2.0.0.tgz", | ||
1770 | "integrity": "sha1-JyT9aoET1zdkrCiNQ4YnDB2/F/A=", | ||
1771 | "dev": true, | ||
1772 | "requires": { | ||
1773 | "readable-stream": "^2.0.2" | ||
1774 | }, | ||
1775 | "dependencies": { | ||
1776 | "readable-stream": { | ||
1777 | "version": "2.3.7", | ||
1778 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", | ||
1779 | "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", | ||
1780 | "dev": true, | ||
1781 | "requires": { | ||
1782 | "core-util-is": "~1.0.0", | ||
1783 | "inherits": "~2.0.3", | ||
1784 | "isarray": "~1.0.0", | ||
1785 | "process-nextick-args": "~2.0.0", | ||
1786 | "safe-buffer": "~5.1.1", | ||
1787 | "string_decoder": "~1.1.1", | ||
1788 | "util-deprecate": "~1.0.1" | ||
1789 | } | ||
1790 | }, | ||
1791 | "safe-buffer": { | ||
1792 | "version": "5.1.2", | ||
1793 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", | ||
1794 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", | ||
1795 | "dev": true | ||
1796 | }, | ||
1797 | "string_decoder": { | ||
1798 | "version": "1.1.1", | ||
1799 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", | ||
1800 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", | ||
1801 | "dev": true, | ||
1802 | "requires": { | ||
1803 | "safe-buffer": "~5.1.0" | ||
1804 | } | ||
1805 | } | ||
1806 | } | ||
1807 | }, | ||
1808 | "readable-stream": { | ||
1809 | "version": "3.6.0", | ||
1810 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", | ||
1811 | "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", | ||
1812 | "requires": { | ||
1813 | "inherits": "^2.0.3", | ||
1814 | "string_decoder": "^1.1.1", | ||
1815 | "util-deprecate": "^1.0.1" | ||
1816 | } | ||
1817 | }, | ||
1818 | "remove-node-modules": { | ||
1819 | "version": "1.7.6", | ||
1820 | "resolved": "https://registry.npmjs.org/remove-node-modules/-/remove-node-modules-1.7.6.tgz", | ||
1821 | "integrity": "sha512-aXdOwG7oh7JTOKMO3QmudQhoRZvYUh5O43QKdlgGVRbLFasavQpr5mTpXoy05LEiZ0wtuWl3g5wvSLqEFx5QlQ==", | ||
1822 | "requires": { | ||
1823 | "colors": "^1.1.2", | ||
1824 | "del": "^2.2.2" | ||
1825 | } | ||
1826 | }, | ||
1827 | "resolve": { | ||
1828 | "version": "1.17.0", | ||
1829 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", | ||
1830 | "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", | ||
1831 | "dev": true, | ||
1832 | "requires": { | ||
1833 | "path-parse": "^1.0.6" | ||
1834 | } | ||
1835 | }, | ||
1836 | "rimraf": { | ||
1837 | "version": "2.7.1", | ||
1838 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", | ||
1839 | "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", | ||
1840 | "requires": { | ||
1841 | "glob": "^7.1.3" | ||
1842 | } | ||
1843 | }, | ||
1844 | "ripemd160": { | ||
1845 | "version": "2.0.2", | ||
1846 | "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", | ||
1847 | "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", | ||
1848 | "requires": { | ||
1849 | "hash-base": "^3.0.0", | ||
1850 | "inherits": "^2.0.1" | ||
1851 | } | ||
1852 | }, | ||
1853 | "rlp": { | ||
1854 | "version": "2.2.5", | ||
1855 | "resolved": "https://registry.npmjs.org/rlp/-/rlp-2.2.5.tgz", | ||
1856 | "integrity": "sha512-y1QxTQOp0OZnjn19FxBmped4p+BSKPHwGndaqrESseyd2xXZtcgR3yuTIosh8CaMaOii9SKIYerBXnV/CpJ3qw==", | ||
1857 | "requires": { | ||
1858 | "bn.js": "^4.11.1" | ||
1859 | } | ||
1860 | }, | ||
1861 | "safe-buffer": { | ||
1862 | "version": "5.2.1", | ||
1863 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", | ||
1864 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" | ||
1865 | }, | ||
1866 | "scryptsy": { | ||
1867 | "version": "2.1.0", | ||
1868 | "resolved": "https://registry.npmjs.org/scryptsy/-/scryptsy-2.1.0.tgz", | ||
1869 | "integrity": "sha512-1CdSqHQowJBnMAFyPEBRfqag/YP9OF394FV+4YREIJX4ljD7OxvQRDayyoyyCk+senRjSkP6VnUNQmVQqB6g7w==" | ||
1870 | }, | ||
1871 | "secp256k1": { | ||
1872 | "version": "3.8.0", | ||
1873 | "resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-3.8.0.tgz", | ||
1874 | "integrity": "sha512-k5ke5avRZbtl9Tqx/SA7CbY3NF6Ro+Sj9cZxezFzuBlLDmyqPiL8hJJ+EmzD8Ig4LUDByHJ3/iPOVoRixs/hmw==", | ||
1875 | "requires": { | ||
1876 | "bindings": "^1.5.0", | ||
1877 | "bip66": "^1.1.5", | ||
1878 | "bn.js": "^4.11.8", | ||
1879 | "create-hash": "^1.2.0", | ||
1880 | "drbg.js": "^1.0.1", | ||
1881 | "elliptic": "^6.5.2", | ||
1882 | "nan": "^2.14.0", | ||
1883 | "safe-buffer": "^5.1.2" | ||
1884 | } | ||
1885 | }, | ||
1886 | "sha.js": { | ||
1887 | "version": "2.4.11", | ||
1888 | "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", | ||
1889 | "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", | ||
1890 | "requires": { | ||
1891 | "inherits": "^2.0.1", | ||
1892 | "safe-buffer": "^5.0.1" | ||
1893 | } | ||
1894 | }, | ||
1895 | "shasum": { | ||
1896 | "version": "1.0.2", | ||
1897 | "resolved": "https://registry.npmjs.org/shasum/-/shasum-1.0.2.tgz", | ||
1898 | "integrity": "sha1-5wEjENj0F/TetXEhUOVni4euVl8=", | ||
1899 | "dev": true, | ||
1900 | "requires": { | ||
1901 | "json-stable-stringify": "~0.0.0", | ||
1902 | "sha.js": "~2.4.4" | ||
1903 | } | ||
1904 | }, | ||
1905 | "shasum-object": { | ||
1906 | "version": "1.0.0", | ||
1907 | "resolved": "https://registry.npmjs.org/shasum-object/-/shasum-object-1.0.0.tgz", | ||
1908 | "integrity": "sha512-Iqo5rp/3xVi6M4YheapzZhhGPVs0yZwHj7wvwQ1B9z8H6zk+FEnI7y3Teq7qwnekfEhu8WmG2z0z4iWZaxLWVg==", | ||
1909 | "dev": true, | ||
1910 | "requires": { | ||
1911 | "fast-safe-stringify": "^2.0.7" | ||
1912 | } | ||
1913 | }, | ||
1914 | "shell-quote": { | ||
1915 | "version": "1.7.2", | ||
1916 | "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", | ||
1917 | "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==", | ||
1918 | "dev": true | ||
1919 | }, | ||
1920 | "simple-concat": { | ||
1921 | "version": "1.0.0", | ||
1922 | "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.0.tgz", | ||
1923 | "integrity": "sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY=", | ||
1924 | "dev": true | ||
1925 | }, | ||
1926 | "slide": { | ||
1927 | "version": "1.1.6", | ||
1928 | "resolved": "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz", | ||
1929 | "integrity": "sha1-VusCfWW00tzmyy4tMsTUr8nh1wc=" | ||
1930 | }, | ||
1931 | "source-map": { | ||
1932 | "version": "0.5.7", | ||
1933 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", | ||
1934 | "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", | ||
1935 | "dev": true | ||
1936 | }, | ||
1937 | "stellar-base": { | ||
1938 | "version": "0.10.0", | ||
1939 | "resolved": "https://registry.npmjs.org/stellar-base/-/stellar-base-0.10.0.tgz", | ||
1940 | "integrity": "sha512-PPuVWAc9t63q9eiMrV3czO2Q2ZozcU7dEMJX8Hu8AIVuV4DbDMyGk5a4nzsJajVsSZyq2Tyccv3dqVudKkBZUA==", | ||
1941 | "requires": { | ||
1942 | "base32.js": "~0.1.0", | ||
1943 | "bignumber.js": "^4.0.0", | ||
1944 | "crc": "3.5.0", | ||
1945 | "ed25519": "0.0.4", | ||
1946 | "js-xdr": "^1.0.5", | ||
1947 | "lodash": "^4.17.10", | ||
1948 | "sha.js": "^2.3.6", | ||
1949 | "tweetnacl": "^1.0.0" | ||
1950 | }, | ||
1951 | "dependencies": { | ||
1952 | "bignumber.js": { | ||
1953 | "version": "4.1.0", | ||
1954 | "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-4.1.0.tgz", | ||
1955 | "integrity": "sha512-eJzYkFYy9L4JzXsbymsFn3p54D+llV27oTQ+ziJG7WFRheJcNZilgVXMG0LoZtlQSKBsJdWtLFqOD0u+U0jZKA==" | ||
1956 | } | ||
1957 | } | ||
1958 | }, | ||
1959 | "stream-browserify": { | ||
1960 | "version": "2.0.2", | ||
1961 | "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", | ||
1962 | "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", | ||
1963 | "dev": true, | ||
1964 | "requires": { | ||
1965 | "inherits": "~2.0.1", | ||
1966 | "readable-stream": "^2.0.2" | ||
1967 | }, | ||
1968 | "dependencies": { | ||
1969 | "readable-stream": { | ||
1970 | "version": "2.3.7", | ||
1971 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", | ||
1972 | "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", | ||
1973 | "dev": true, | ||
1974 | "requires": { | ||
1975 | "core-util-is": "~1.0.0", | ||
1976 | "inherits": "~2.0.3", | ||
1977 | "isarray": "~1.0.0", | ||
1978 | "process-nextick-args": "~2.0.0", | ||
1979 | "safe-buffer": "~5.1.1", | ||
1980 | "string_decoder": "~1.1.1", | ||
1981 | "util-deprecate": "~1.0.1" | ||
1982 | } | ||
1983 | }, | ||
1984 | "safe-buffer": { | ||
1985 | "version": "5.1.2", | ||
1986 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", | ||
1987 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", | ||
1988 | "dev": true | ||
1989 | }, | ||
1990 | "string_decoder": { | ||
1991 | "version": "1.1.1", | ||
1992 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", | ||
1993 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", | ||
1994 | "dev": true, | ||
1995 | "requires": { | ||
1996 | "safe-buffer": "~5.1.0" | ||
1997 | } | ||
1998 | } | ||
1999 | } | ||
2000 | }, | ||
2001 | "stream-combiner2": { | ||
2002 | "version": "1.1.1", | ||
2003 | "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", | ||
2004 | "integrity": "sha1-+02KFCDqNidk4hrUeAOXvry0HL4=", | ||
2005 | "dev": true, | ||
2006 | "requires": { | ||
2007 | "duplexer2": "~0.1.0", | ||
2008 | "readable-stream": "^2.0.2" | ||
2009 | }, | ||
2010 | "dependencies": { | ||
2011 | "readable-stream": { | ||
2012 | "version": "2.3.7", | ||
2013 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", | ||
2014 | "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", | ||
2015 | "dev": true, | ||
2016 | "requires": { | ||
2017 | "core-util-is": "~1.0.0", | ||
2018 | "inherits": "~2.0.3", | ||
2019 | "isarray": "~1.0.0", | ||
2020 | "process-nextick-args": "~2.0.0", | ||
2021 | "safe-buffer": "~5.1.1", | ||
2022 | "string_decoder": "~1.1.1", | ||
2023 | "util-deprecate": "~1.0.1" | ||
2024 | } | ||
2025 | }, | ||
2026 | "safe-buffer": { | ||
2027 | "version": "5.1.2", | ||
2028 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", | ||
2029 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", | ||
2030 | "dev": true | ||
2031 | }, | ||
2032 | "string_decoder": { | ||
2033 | "version": "1.1.1", | ||
2034 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", | ||
2035 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", | ||
2036 | "dev": true, | ||
2037 | "requires": { | ||
2038 | "safe-buffer": "~5.1.0" | ||
2039 | } | ||
2040 | } | ||
2041 | } | ||
2042 | }, | ||
2043 | "stream-http": { | ||
2044 | "version": "3.1.1", | ||
2045 | "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-3.1.1.tgz", | ||
2046 | "integrity": "sha512-S7OqaYu0EkFpgeGFb/NPOoPLxFko7TPqtEeFg5DXPB4v/KETHG0Ln6fRFrNezoelpaDKmycEmmZ81cC9DAwgYg==", | ||
2047 | "dev": true, | ||
2048 | "requires": { | ||
2049 | "builtin-status-codes": "^3.0.0", | ||
2050 | "inherits": "^2.0.4", | ||
2051 | "readable-stream": "^3.6.0", | ||
2052 | "xtend": "^4.0.2" | ||
2053 | } | ||
2054 | }, | ||
2055 | "stream-splicer": { | ||
2056 | "version": "2.0.1", | ||
2057 | "resolved": "https://registry.npmjs.org/stream-splicer/-/stream-splicer-2.0.1.tgz", | ||
2058 | "integrity": "sha512-Xizh4/NPuYSyAXyT7g8IvdJ9HJpxIGL9PjyhtywCZvvP0OPIdqyrr4dMikeuvY8xahpdKEBlBTySe583totajg==", | ||
2059 | "dev": true, | ||
2060 | "requires": { | ||
2061 | "inherits": "^2.0.1", | ||
2062 | "readable-stream": "^2.0.2" | ||
2063 | }, | ||
2064 | "dependencies": { | ||
2065 | "readable-stream": { | ||
2066 | "version": "2.3.7", | ||
2067 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", | ||
2068 | "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", | ||
2069 | "dev": true, | ||
2070 | "requires": { | ||
2071 | "core-util-is": "~1.0.0", | ||
2072 | "inherits": "~2.0.3", | ||
2073 | "isarray": "~1.0.0", | ||
2074 | "process-nextick-args": "~2.0.0", | ||
2075 | "safe-buffer": "~5.1.1", | ||
2076 | "string_decoder": "~1.1.1", | ||
2077 | "util-deprecate": "~1.0.1" | ||
2078 | } | ||
2079 | }, | ||
2080 | "safe-buffer": { | ||
2081 | "version": "5.1.2", | ||
2082 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", | ||
2083 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", | ||
2084 | "dev": true | ||
2085 | }, | ||
2086 | "string_decoder": { | ||
2087 | "version": "1.1.1", | ||
2088 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", | ||
2089 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", | ||
2090 | "dev": true, | ||
2091 | "requires": { | ||
2092 | "safe-buffer": "~5.1.0" | ||
2093 | } | ||
2094 | } | ||
2095 | } | ||
2096 | }, | ||
2097 | "string_decoder": { | ||
2098 | "version": "1.3.0", | ||
2099 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", | ||
2100 | "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", | ||
2101 | "requires": { | ||
2102 | "safe-buffer": "~5.2.0" | ||
2103 | } | ||
2104 | }, | ||
2105 | "strip-hex-prefix": { | ||
2106 | "version": "1.0.0", | ||
2107 | "resolved": "https://registry.npmjs.org/strip-hex-prefix/-/strip-hex-prefix-1.0.0.tgz", | ||
2108 | "integrity": "sha1-DF8VX+8RUTczd96du1iNoFUA428=", | ||
2109 | "requires": { | ||
2110 | "is-hex-prefixed": "1.0.0" | ||
2111 | } | ||
2112 | }, | ||
2113 | "subarg": { | ||
2114 | "version": "1.0.0", | ||
2115 | "resolved": "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz", | ||
2116 | "integrity": "sha1-9izxdYHplrSPyWVpn1TAauJouNI=", | ||
2117 | "dev": true, | ||
2118 | "requires": { | ||
2119 | "minimist": "^1.1.0" | ||
2120 | } | ||
2121 | }, | ||
2122 | "syntax-error": { | ||
2123 | "version": "1.4.0", | ||
2124 | "resolved": "https://registry.npmjs.org/syntax-error/-/syntax-error-1.4.0.tgz", | ||
2125 | "integrity": "sha512-YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==", | ||
2126 | "dev": true, | ||
2127 | "requires": { | ||
2128 | "acorn-node": "^1.2.0" | ||
2129 | } | ||
2130 | }, | ||
2131 | "through": { | ||
2132 | "version": "2.3.8", | ||
2133 | "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", | ||
2134 | "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", | ||
2135 | "dev": true | ||
2136 | }, | ||
2137 | "through2": { | ||
2138 | "version": "2.0.5", | ||
2139 | "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", | ||
2140 | "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", | ||
2141 | "dev": true, | ||
2142 | "requires": { | ||
2143 | "readable-stream": "~2.3.6", | ||
2144 | "xtend": "~4.0.1" | ||
2145 | }, | ||
2146 | "dependencies": { | ||
2147 | "readable-stream": { | ||
2148 | "version": "2.3.7", | ||
2149 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", | ||
2150 | "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", | ||
2151 | "dev": true, | ||
2152 | "requires": { | ||
2153 | "core-util-is": "~1.0.0", | ||
2154 | "inherits": "~2.0.3", | ||
2155 | "isarray": "~1.0.0", | ||
2156 | "process-nextick-args": "~2.0.0", | ||
2157 | "safe-buffer": "~5.1.1", | ||
2158 | "string_decoder": "~1.1.1", | ||
2159 | "util-deprecate": "~1.0.1" | ||
2160 | } | ||
2161 | }, | ||
2162 | "safe-buffer": { | ||
2163 | "version": "5.1.2", | ||
2164 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", | ||
2165 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", | ||
2166 | "dev": true | ||
2167 | }, | ||
2168 | "string_decoder": { | ||
2169 | "version": "1.1.1", | ||
2170 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", | ||
2171 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", | ||
2172 | "dev": true, | ||
2173 | "requires": { | ||
2174 | "safe-buffer": "~5.1.0" | ||
2175 | } | ||
2176 | } | ||
2177 | } | ||
2178 | }, | ||
2179 | "timers-browserify": { | ||
2180 | "version": "1.4.2", | ||
2181 | "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz", | ||
2182 | "integrity": "sha1-ycWLV1voQHN1y14kYtrO50NZ9B0=", | ||
2183 | "dev": true, | ||
2184 | "requires": { | ||
2185 | "process": "~0.11.0" | ||
2186 | } | ||
2187 | }, | ||
2188 | "tty-browserify": { | ||
2189 | "version": "0.0.1", | ||
2190 | "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.1.tgz", | ||
2191 | "integrity": "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==", | ||
2192 | "dev": true | ||
2193 | }, | ||
2194 | "tweetnacl": { | ||
2195 | "version": "1.0.3", | ||
2196 | "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz", | ||
2197 | "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==" | ||
2198 | }, | ||
2199 | "typedarray": { | ||
2200 | "version": "0.0.6", | ||
2201 | "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", | ||
2202 | "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", | ||
2203 | "dev": true | ||
2204 | }, | ||
2205 | "typeforce": { | ||
2206 | "version": "1.18.0", | ||
2207 | "resolved": "https://registry.npmjs.org/typeforce/-/typeforce-1.18.0.tgz", | ||
2208 | "integrity": "sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==" | ||
2209 | }, | ||
2210 | "uglify-es": { | ||
2211 | "version": "3.3.9", | ||
2212 | "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz", | ||
2213 | "integrity": "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==", | ||
2214 | "dev": true, | ||
2215 | "requires": { | ||
2216 | "commander": "~2.13.0", | ||
2217 | "source-map": "~0.6.1" | ||
2218 | }, | ||
2219 | "dependencies": { | ||
2220 | "source-map": { | ||
2221 | "version": "0.6.1", | ||
2222 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", | ||
2223 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", | ||
2224 | "dev": true | ||
2225 | } | ||
2226 | } | ||
2227 | }, | ||
2228 | "umd": { | ||
2229 | "version": "3.0.3", | ||
2230 | "resolved": "https://registry.npmjs.org/umd/-/umd-3.0.3.tgz", | ||
2231 | "integrity": "sha512-4IcGSufhFshvLNcMCV80UnQVlZ5pMOC8mvNPForqwA4+lzYQuetTESLDQkeLmihq8bRcnpbQa48Wb8Lh16/xow==", | ||
2232 | "dev": true | ||
2233 | }, | ||
2234 | "undeclared-identifiers": { | ||
2235 | "version": "1.1.3", | ||
2236 | "resolved": "https://registry.npmjs.org/undeclared-identifiers/-/undeclared-identifiers-1.1.3.tgz", | ||
2237 | "integrity": "sha512-pJOW4nxjlmfwKApE4zvxLScM/njmwj/DiUBv7EabwE4O8kRUy+HIwxQtZLBPll/jx1LJyBcqNfB3/cpv9EZwOw==", | ||
2238 | "dev": true, | ||
2239 | "requires": { | ||
2240 | "acorn-node": "^1.3.0", | ||
2241 | "dash-ast": "^1.0.0", | ||
2242 | "get-assigned-identifiers": "^1.2.0", | ||
2243 | "simple-concat": "^1.0.0", | ||
2244 | "xtend": "^4.0.1" | ||
2245 | } | ||
2246 | }, | ||
2247 | "unorm": { | ||
2248 | "version": "1.6.0", | ||
2249 | "resolved": "https://registry.npmjs.org/unorm/-/unorm-1.6.0.tgz", | ||
2250 | "integrity": "sha512-b2/KCUlYZUeA7JFUuRJZPUtr4gZvBh7tavtv4fvk4+KV9pfGiR6CQAQAWl49ZpR3ts2dk4FYkP7EIgDJoiOLDA==" | ||
2251 | }, | ||
2252 | "url": { | ||
2253 | "version": "0.11.0", | ||
2254 | "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", | ||
2255 | "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", | ||
2256 | "dev": true, | ||
2257 | "requires": { | ||
2258 | "punycode": "1.3.2", | ||
2259 | "querystring": "0.2.0" | ||
2260 | }, | ||
2261 | "dependencies": { | ||
2262 | "punycode": { | ||
2263 | "version": "1.3.2", | ||
2264 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", | ||
2265 | "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", | ||
2266 | "dev": true | ||
2267 | } | ||
2268 | } | ||
2269 | }, | ||
2270 | "util": { | ||
2271 | "version": "0.10.4", | ||
2272 | "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", | ||
2273 | "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", | ||
2274 | "dev": true, | ||
2275 | "requires": { | ||
2276 | "inherits": "2.0.3" | ||
2277 | }, | ||
2278 | "dependencies": { | ||
2279 | "inherits": { | ||
2280 | "version": "2.0.3", | ||
2281 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", | ||
2282 | "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", | ||
2283 | "dev": true | ||
2284 | } | ||
2285 | } | ||
2286 | }, | ||
2287 | "util-deprecate": { | ||
2288 | "version": "1.0.2", | ||
2289 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", | ||
2290 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" | ||
2291 | }, | ||
2292 | "uuid": { | ||
2293 | "version": "3.4.0", | ||
2294 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", | ||
2295 | "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" | ||
2296 | }, | ||
2297 | "varuint-bitcoin": { | ||
2298 | "version": "1.1.2", | ||
2299 | "resolved": "https://registry.npmjs.org/varuint-bitcoin/-/varuint-bitcoin-1.1.2.tgz", | ||
2300 | "integrity": "sha512-4EVb+w4rx+YfVM32HQX42AbbT7/1f5zwAYhIujKXKk8NQK+JfRVl3pqT3hjNn/L+RstigmGGKVwHA/P0wgITZw==", | ||
2301 | "requires": { | ||
2302 | "safe-buffer": "^5.1.1" | ||
2303 | } | ||
2304 | }, | ||
2305 | "vm-browserify": { | ||
2306 | "version": "1.1.2", | ||
2307 | "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", | ||
2308 | "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", | ||
2309 | "dev": true | ||
2310 | }, | ||
2311 | "wif": { | ||
2312 | "version": "2.0.6", | ||
2313 | "resolved": "https://registry.npmjs.org/wif/-/wif-2.0.6.tgz", | ||
2314 | "integrity": "sha1-CNP1IFbGZnkplyb63g1DKudLRwQ=", | ||
2315 | "requires": { | ||
2316 | "bs58check": "<3.0.0" | ||
2317 | } | ||
2318 | }, | ||
2319 | "wifgrs": { | ||
2320 | "version": "git+https://github.com/Groestlcoin/wifgrs.git#970dafa1633f1b6e8bf51eb933c76a7203567ec2", | ||
2321 | "from": "git+https://github.com/Groestlcoin/wifgrs.git", | ||
2322 | "requires": { | ||
2323 | "bs58grscheck": "^2.1.2", | ||
2324 | "safe-buffer": "^5.1.1" | ||
2325 | } | ||
2326 | }, | ||
2327 | "wrappy": { | ||
2328 | "version": "1.0.2", | ||
2329 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", | ||
2330 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" | ||
2331 | }, | ||
2332 | "write-file-atomic": { | ||
2333 | "version": "1.3.4", | ||
2334 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz", | ||
2335 | "integrity": "sha1-+Aek8LHZ6ROuekgRLmzDrxmRtF8=", | ||
2336 | "requires": { | ||
2337 | "graceful-fs": "^4.1.11", | ||
2338 | "imurmurhash": "^0.1.4", | ||
2339 | "slide": "^1.1.5" | ||
2340 | } | ||
2341 | }, | ||
2342 | "xtend": { | ||
2343 | "version": "4.0.2", | ||
2344 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", | ||
2345 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", | ||
2346 | "dev": true | ||
2347 | }, | ||
2348 | "zxcvbn": { | ||
2349 | "version": "4.4.2", | ||
2350 | "resolved": "https://registry.npmjs.org/zxcvbn/-/zxcvbn-4.4.2.tgz", | ||
2351 | "integrity": "sha1-KOwXzwl0PtyrBW3dixsGJizHPDA=" | ||
15 | } | 2352 | } |
16 | } | 2353 | } |
17 | } | 2354 | } |
diff --git a/libs/combined/package-lock.json b/libs/combined/package-lock.json index 19c189c..1bcd3ee 100644 --- a/libs/combined/package-lock.json +++ b/libs/combined/package-lock.json | |||
@@ -225,8 +225,7 @@ | |||
225 | "base64-js": { | 225 | "base64-js": { |
226 | "version": "1.3.1", | 226 | "version": "1.3.1", |
227 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz", | 227 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz", |
228 | "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==", | 228 | "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==" |
229 | "dev": true | ||
230 | }, | 229 | }, |
231 | "bchaddrjs": { | 230 | "bchaddrjs": { |
232 | "version": "0.4.4", | 231 | "version": "0.4.4", |
@@ -237,10 +236,18 @@ | |||
237 | "cashaddrjs": "^0.3.8" | 236 | "cashaddrjs": "^0.3.8" |
238 | } | 237 | } |
239 | }, | 238 | }, |
239 | "bchaddrjs-slp": { | ||
240 | "version": "git://github.com/simpleledger/bchaddrjs.git#af16e44a6bfbe4b3980a62dba50e2f68ed864c6b", | ||
241 | "from": "git://github.com/simpleledger/bchaddrjs.git#af16e44a6bfbe4b3980a62dba50e2f68ed864c6b", | ||
242 | "requires": { | ||
243 | "bs58check": "^2.1.2", | ||
244 | "cashaddrjs-slp": "^0.2.12" | ||
245 | } | ||
246 | }, | ||
240 | "bech32": { | 247 | "bech32": { |
241 | "version": "1.1.3", | 248 | "version": "1.1.4", |
242 | "resolved": "https://registry.npmjs.org/bech32/-/bech32-1.1.3.tgz", | 249 | "resolved": "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz", |
243 | "integrity": "sha512-yuVFUvrNcoJi0sv5phmqc6P+Fl1HjRDRNOOkHY2X/3LBy2bIGNSFx4fZ95HMaXHupuS7cZR15AsvtmCIF4UEyg==" | 250 | "integrity": "sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==" |
244 | }, | 251 | }, |
245 | "big-integer": { | 252 | "big-integer": { |
246 | "version": "1.6.36", | 253 | "version": "1.6.36", |
@@ -290,6 +297,18 @@ | |||
290 | "create-hash": "^1.1.1", | 297 | "create-hash": "^1.1.1", |
291 | "ecurve": "^1.0.0", | 298 | "ecurve": "^1.0.0", |
292 | "scryptsy": "^2.0.0" | 299 | "scryptsy": "^2.0.0" |
300 | }, | ||
301 | "dependencies": { | ||
302 | "bs58grscheck": { | ||
303 | "version": "git+https://github.com/Groestlcoin/bs58grscheck.git#020feec2b3153aeb278596ea70ce3579a37f4e21", | ||
304 | "from": "git+https://github.com/Groestlcoin/bs58grscheck.git", | ||
305 | "requires": { | ||
306 | "bs58": "^4.0.0", | ||
307 | "create-hash": "^1.1.0", | ||
308 | "groestl-hash-js": "git+https://github.com/Groestlcoin/groestl-hash-js.git", | ||
309 | "safe-buffer": "^5.1.2" | ||
310 | } | ||
311 | } | ||
293 | } | 312 | } |
294 | }, | 313 | }, |
295 | "bip39": { | 314 | "bip39": { |
@@ -318,9 +337,8 @@ | |||
318 | "integrity": "sha512-pef6gxZFztEhaE9RY9HmWVmiIHqCb2OyS4HPKkpc6CIiiOa3Qmuoylxc5P2EkU3w+5eTSifI9SEZC88idAIGow==" | 337 | "integrity": "sha512-pef6gxZFztEhaE9RY9HmWVmiIHqCb2OyS4HPKkpc6CIiiOa3Qmuoylxc5P2EkU3w+5eTSifI9SEZC88idAIGow==" |
319 | }, | 338 | }, |
320 | "bitcoinjs-lib": { | 339 | "bitcoinjs-lib": { |
321 | "version": "3.3.2", | 340 | "version": "git://github.com/iancoleman/bitcoinjs-lib.git#ac212f04e81313ddfda7ed28856ac6c7dfbe6f75", |
322 | "resolved": "https://registry.npmjs.org/bitcoinjs-lib/-/bitcoinjs-lib-3.3.2.tgz", | 341 | "from": "git://github.com/iancoleman/bitcoinjs-lib.git#v3.3.2_16bit", |
323 | "integrity": "sha512-l5qqvbaK8wwtANPf6oEffykycg4383XgEYdia1rI7/JpGf1jfRWlOUCvx5TiTZS7kyIvY4j/UhIQ2urLsvGkzw==", | ||
324 | "requires": { | 342 | "requires": { |
325 | "bech32": "^1.1.2", | 343 | "bech32": "^1.1.2", |
326 | "bigi": "^1.4.0", | 344 | "bigi": "^1.4.0", |
@@ -378,6 +396,23 @@ | |||
378 | } | 396 | } |
379 | } | 397 | } |
380 | }, | 398 | }, |
399 | "blake2b": { | ||
400 | "version": "2.1.3", | ||
401 | "resolved": "https://registry.npmjs.org/blake2b/-/blake2b-2.1.3.tgz", | ||
402 | "integrity": "sha512-pkDss4xFVbMb4270aCyGD3qLv92314Et+FsKzilCLxDz5DuZ2/1g3w4nmBbu6nKApPspnjG7JcwTjGZnduB1yg==", | ||
403 | "requires": { | ||
404 | "blake2b-wasm": "^1.1.0", | ||
405 | "nanoassert": "^1.0.0" | ||
406 | } | ||
407 | }, | ||
408 | "blake2b-wasm": { | ||
409 | "version": "1.1.7", | ||
410 | "resolved": "https://registry.npmjs.org/blake2b-wasm/-/blake2b-wasm-1.1.7.tgz", | ||
411 | "integrity": "sha512-oFIHvXhlz/DUgF0kq5B1CqxIDjIJwh9iDeUUGQUcvgiGz7Wdw03McEO7CfLBy7QKGdsydcMCgO9jFNBAFCtFcA==", | ||
412 | "requires": { | ||
413 | "nanoassert": "^1.0.0" | ||
414 | } | ||
415 | }, | ||
381 | "bn.js": { | 416 | "bn.js": { |
382 | "version": "4.11.8", | 417 | "version": "4.11.8", |
383 | "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", | 418 | "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", |
@@ -573,20 +608,26 @@ | |||
573 | } | 608 | } |
574 | }, | 609 | }, |
575 | "bs58grscheck": { | 610 | "bs58grscheck": { |
576 | "version": "git+https://github.com/Groestlcoin/bs58grscheck.git#020feec2b3153aeb278596ea70ce3579a37f4e21", | 611 | "version": "2.1.2", |
577 | "from": "git+https://github.com/Groestlcoin/bs58grscheck.git", | 612 | "resolved": "git+https://github.com/Groestlcoin/bs58grscheck.git#8ff31333a7626161c1484b461c20710bb9f97b93", |
578 | "requires": { | 613 | "requires": { |
579 | "bs58": "^4.0.0", | 614 | "bs58": "^4.0.0", |
580 | "create-hash": "^1.1.0", | 615 | "create-hash": "^1.1.0", |
581 | "groestl-hash-js": "git+https://github.com/Groestlcoin/groestl-hash-js.git#ef6a04f1c4d2f0448f0882b5f213ef7a0659baee", | 616 | "groestl-hash-js": "^1.0.0", |
582 | "safe-buffer": "^5.1.2" | 617 | "safe-buffer": "^5.1.2" |
618 | }, | ||
619 | "dependencies": { | ||
620 | "groestl-hash-js": { | ||
621 | "version": "1.0.0", | ||
622 | "resolved": "https://registry.npmjs.org/groestl-hash-js/-/groestl-hash-js-1.0.0.tgz", | ||
623 | "integrity": "sha1-yewyVxbsSLIjz6ruZzxfj/12Bsk=" | ||
624 | } | ||
583 | } | 625 | } |
584 | }, | 626 | }, |
585 | "buffer": { | 627 | "buffer": { |
586 | "version": "5.4.3", | 628 | "version": "5.4.3", |
587 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.4.3.tgz", | 629 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.4.3.tgz", |
588 | "integrity": "sha512-zvj65TkFeIt3i6aj5bIvJDzjjQQGs4o/sNoezg1F1kYap9Nu2jcUdpwzRSJTHMMzG0H7bZkn4rNQpImhuxWX2A==", | 630 | "integrity": "sha512-zvj65TkFeIt3i6aj5bIvJDzjjQQGs4o/sNoezg1F1kYap9Nu2jcUdpwzRSJTHMMzG0H7bZkn4rNQpImhuxWX2A==", |
589 | "dev": true, | ||
590 | "requires": { | 631 | "requires": { |
591 | "base64-js": "^1.0.2", | 632 | "base64-js": "^1.0.2", |
592 | "ieee754": "^1.1.4" | 633 | "ieee754": "^1.1.4" |
@@ -632,6 +673,14 @@ | |||
632 | "big-integer": "1.6.36" | 673 | "big-integer": "1.6.36" |
633 | } | 674 | } |
634 | }, | 675 | }, |
676 | "cashaddrjs-slp": { | ||
677 | "version": "0.2.12", | ||
678 | "resolved": "https://registry.npmjs.org/cashaddrjs-slp/-/cashaddrjs-slp-0.2.12.tgz", | ||
679 | "integrity": "sha512-n2TTIuW6vZZxYvjvsUAA+wOM0Zkj+3RRKUtDC1XSu4Ic4XVr0yFJkl1bzQkHWda7nkVT51sxjZneygz7D0SyrQ==", | ||
680 | "requires": { | ||
681 | "big-integer": "^1.6.34" | ||
682 | } | ||
683 | }, | ||
635 | "cipher-base": { | 684 | "cipher-base": { |
636 | "version": "1.0.4", | 685 | "version": "1.0.4", |
637 | "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", | 686 | "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", |
@@ -1114,18 +1163,27 @@ | |||
1114 | "bigi": "^1.4.0", | 1163 | "bigi": "^1.4.0", |
1115 | "bip66": "^1.1.0", | 1164 | "bip66": "^1.1.0", |
1116 | "bitcoin-ops": "^1.3.0", | 1165 | "bitcoin-ops": "^1.3.0", |
1117 | "bs58grscheck": "git+https://github.com/Groestlcoin/bs58grscheck.git#020feec2b3153aeb278596ea70ce3579a37f4e21", | 1166 | "bs58grscheck": "git+https://github.com/Groestlcoin/bs58grscheck.git", |
1118 | "create-hash": "^1.1.0", | 1167 | "create-hash": "^1.1.0", |
1119 | "create-hmac": "^1.1.3", | 1168 | "create-hmac": "^1.1.3", |
1120 | "ecurve": "^1.0.0", | 1169 | "ecurve": "^1.0.0", |
1121 | "groestl-hash-js": "git+https://github.com/Groestlcoin/groestl-hash-js.git#ef6a04f1c4d2f0448f0882b5f213ef7a0659baee", | 1170 | "groestl-hash-js": "git+https://github.com/Groestlcoin/groestl-hash-js.git", |
1122 | "merkle-lib": "^2.0.10", | 1171 | "merkle-lib": "^2.0.10", |
1123 | "pushdata-bitcoin": "^1.0.1", | 1172 | "pushdata-bitcoin": "^1.0.1", |
1124 | "randombytes": "^2.0.1", | 1173 | "randombytes": "^2.0.1", |
1125 | "safe-buffer": "^5.0.1", | 1174 | "safe-buffer": "^5.0.1", |
1126 | "typeforce": "^1.11.3", | 1175 | "typeforce": "^1.11.3", |
1127 | "varuint-bitcoin": "^1.0.4", | 1176 | "varuint-bitcoin": "^1.0.4", |
1128 | "wifgrs": "git+https://github.com/Groestlcoin/wifgrs.git#5e0ed45865ae5f9736dd8855f401da04423b0e86" | 1177 | "wifgrs": "git+https://github.com/Groestlcoin/wifgrs.git" |
1178 | } | ||
1179 | }, | ||
1180 | "handshake-util": { | ||
1181 | "version": "1.2.0", | ||
1182 | "resolved": "https://registry.npmjs.org/handshake-util/-/handshake-util-1.2.0.tgz", | ||
1183 | "integrity": "sha512-LhjqYdYggZjFvaPoFl3MMZU3IdPS7OwF6AZdPg+B14aJHQ72FRXYalezjFE3tAV/wBTVdHfpis89MOGhbVWBbw==", | ||
1184 | "requires": { | ||
1185 | "bech32": "^1.1.3", | ||
1186 | "blake2b": "^2.1.3" | ||
1129 | } | 1187 | } |
1130 | }, | 1188 | }, |
1131 | "has": { | 1189 | "has": { |
@@ -1198,8 +1256,7 @@ | |||
1198 | "ieee754": { | 1256 | "ieee754": { |
1199 | "version": "1.1.13", | 1257 | "version": "1.1.13", |
1200 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", | 1258 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", |
1201 | "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==", | 1259 | "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==" |
1202 | "dev": true | ||
1203 | }, | 1260 | }, |
1204 | "imurmurhash": { | 1261 | "imurmurhash": { |
1205 | "version": "0.1.4", | 1262 | "version": "0.1.4", |
@@ -1322,9 +1379,9 @@ | |||
1322 | "dev": true | 1379 | "dev": true |
1323 | }, | 1380 | }, |
1324 | "jsrsasign": { | 1381 | "jsrsasign": { |
1325 | "version": "8.0.12", | 1382 | "version": "8.0.19", |
1326 | "resolved": "https://registry.npmjs.org/jsrsasign/-/jsrsasign-8.0.12.tgz", | 1383 | "resolved": "https://registry.npmjs.org/jsrsasign/-/jsrsasign-8.0.19.tgz", |
1327 | "integrity": "sha1-Iqu5ZW00owuVMENnIINeicLlwxY=" | 1384 | "integrity": "sha512-qf+F41huTh9ThXj5n3yfAJJRp8vx05JYbGlGvCjusYX50rsfqY6ASK08LCOutl0yA1BHIpGG8bd1w5x9aGy7Zg==" |
1328 | }, | 1385 | }, |
1329 | "jssha": { | 1386 | "jssha": { |
1330 | "version": "2.3.1", | 1387 | "version": "2.3.1", |
@@ -1485,6 +1542,11 @@ | |||
1485 | "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz", | 1542 | "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz", |
1486 | "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==" | 1543 | "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==" |
1487 | }, | 1544 | }, |
1545 | "nanoassert": { | ||
1546 | "version": "1.1.0", | ||
1547 | "resolved": "https://registry.npmjs.org/nanoassert/-/nanoassert-1.1.0.tgz", | ||
1548 | "integrity": "sha1-TzFS4JVA/eKMdvRLGbvNHVpCR40=" | ||
1549 | }, | ||
1488 | "nebulas": { | 1550 | "nebulas": { |
1489 | "version": "0.5.6", | 1551 | "version": "0.5.6", |
1490 | "resolved": "https://registry.npmjs.org/nebulas/-/nebulas-0.5.6.tgz", | 1552 | "resolved": "https://registry.npmjs.org/nebulas/-/nebulas-0.5.6.tgz", |
@@ -2204,10 +2266,10 @@ | |||
2204 | } | 2266 | } |
2205 | }, | 2267 | }, |
2206 | "wifgrs": { | 2268 | "wifgrs": { |
2207 | "version": "git+https://github.com/Groestlcoin/wifgrs.git#5e0ed45865ae5f9736dd8855f401da04423b0e86", | 2269 | "version": "git+https://github.com/Groestlcoin/wifgrs.git#970dafa1633f1b6e8bf51eb933c76a7203567ec2", |
2208 | "from": "git+https://github.com/Groestlcoin/wifgrs.git", | 2270 | "from": "git+https://github.com/Groestlcoin/wifgrs.git", |
2209 | "requires": { | 2271 | "requires": { |
2210 | "bs58grscheck": "git+https://github.com/Groestlcoin/bs58grscheck.git#020feec2b3153aeb278596ea70ce3579a37f4e21", | 2272 | "bs58grscheck": "^2.1.2", |
2211 | "safe-buffer": "^5.1.1" | 2273 | "safe-buffer": "^5.1.1" |
2212 | } | 2274 | } |
2213 | }, | 2275 | }, |
diff --git a/libs/combined/package.json b/libs/combined/package.json index 76d908d..e073e81 100755..100644 --- a/libs/combined/package.json +++ b/libs/combined/package.json | |||
@@ -21,7 +21,7 @@ | |||
21 | "fast-levenshtein": "2.0.6", | 21 | "fast-levenshtein": "2.0.6", |
22 | "groestlcoinjs-lib": "git://github.com/Groestlcoin/groestlcoinjs-lib.git#3.3.2", | 22 | "groestlcoinjs-lib": "git://github.com/Groestlcoin/groestlcoinjs-lib.git#3.3.2", |
23 | "javascript-biginteger": "0.9.2", | 23 | "javascript-biginteger": "0.9.2", |
24 | "jsrsasign": "^8.0.15", | 24 | "jsrsasign": "^8.0.19", |
25 | "kjua": "0.6.0", | 25 | "kjua": "0.6.0", |
26 | "nebulas": "0.5.6", | 26 | "nebulas": "0.5.6", |
27 | "stellar-base": "^0.10.0", | 27 | "stellar-base": "^0.10.0", |
diff --git a/libs/stellar-util/package-lock.json b/libs/stellar-util/package-lock.json index 5c428ee..07e9724 100644 --- a/libs/stellar-util/package-lock.json +++ b/libs/stellar-util/package-lock.json | |||
@@ -15,9 +15,9 @@ | |||
15 | } | 15 | } |
16 | }, | 16 | }, |
17 | "acorn": { | 17 | "acorn": { |
18 | "version": "6.0.4", | 18 | "version": "6.4.1", |
19 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.0.4.tgz", | 19 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz", |
20 | "integrity": "sha512-VY4i5EKSKkofY2I+6QLTbTTN/UvEQPCo6eiwzzSaSWfpaDhOmStMCMod6wmuPciNq+XS0faCglFu2lHZpdHUtg==", | 20 | "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==", |
21 | "dev": true | 21 | "dev": true |
22 | }, | 22 | }, |
23 | "acorn-dynamic-import": { | 23 | "acorn-dynamic-import": { |
@@ -90,7 +90,7 @@ | |||
90 | }, | 90 | }, |
91 | "util": { | 91 | "util": { |
92 | "version": "0.10.3", | 92 | "version": "0.10.3", |
93 | "resolved": "http://registry.npmjs.org/util/-/util-0.10.3.tgz", | 93 | "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", |
94 | "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", | 94 | "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", |
95 | "dev": true, | 95 | "dev": true, |
96 | "requires": { | 96 | "requires": { |
@@ -186,7 +186,7 @@ | |||
186 | "dependencies": { | 186 | "dependencies": { |
187 | "resolve": { | 187 | "resolve": { |
188 | "version": "1.1.7", | 188 | "version": "1.1.7", |
189 | "resolved": "http://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", | 189 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", |
190 | "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", | 190 | "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", |
191 | "dev": true | 191 | "dev": true |
192 | } | 192 | } |
@@ -581,9 +581,9 @@ | |||
581 | } | 581 | } |
582 | }, | 582 | }, |
583 | "elliptic": { | 583 | "elliptic": { |
584 | "version": "6.4.1", | 584 | "version": "6.5.3", |
585 | "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz", | 585 | "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz", |
586 | "integrity": "sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==", | 586 | "integrity": "sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==", |
587 | "dev": true, | 587 | "dev": true, |
588 | "requires": { | 588 | "requires": { |
589 | "bn.js": "^4.4.0", | 589 | "bn.js": "^4.4.0", |
@@ -810,9 +810,9 @@ | |||
810 | } | 810 | } |
811 | }, | 811 | }, |
812 | "lodash": { | 812 | "lodash": { |
813 | "version": "4.17.11", | 813 | "version": "4.17.19", |
814 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", | 814 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz", |
815 | "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" | 815 | "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" |
816 | }, | 816 | }, |
817 | "lodash.memoize": { | 817 | "lodash.memoize": { |
818 | "version": "3.0.4", | 818 | "version": "3.0.4", |
@@ -1085,7 +1085,7 @@ | |||
1085 | "dependencies": { | 1085 | "dependencies": { |
1086 | "string_decoder": { | 1086 | "string_decoder": { |
1087 | "version": "1.1.1", | 1087 | "version": "1.1.1", |
1088 | "resolved": "http://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", | 1088 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", |
1089 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", | 1089 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", |
1090 | "dev": true, | 1090 | "dev": true, |
1091 | "requires": { | 1091 | "requires": { |
diff --git a/src/css/bootstrap-3.3.7.css b/src/css/bootstrap.css index 6167622..fcab415 100644 --- a/src/css/bootstrap-3.3.7.css +++ b/src/css/bootstrap.css | |||
@@ -1,13 +1,13 @@ | |||
1 | /*! | 1 | /*! |
2 | * Bootstrap v3.3.7 (http://getbootstrap.com) | 2 | * Bootstrap v3.4.1 (https://getbootstrap.com/) |
3 | * Copyright 2011-2016 Twitter, Inc. | 3 | * Copyright 2011-2019 Twitter, Inc. |
4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
5 | */ | 5 | */ |
6 | /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ | 6 | /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ |
7 | html { | 7 | html { |
8 | font-family: sans-serif; | 8 | font-family: sans-serif; |
9 | -ms-text-size-adjust: 100%; | ||
9 | -webkit-text-size-adjust: 100%; | 10 | -webkit-text-size-adjust: 100%; |
10 | -ms-text-size-adjust: 100%; | ||
11 | } | 11 | } |
12 | body { | 12 | body { |
13 | margin: 0; | 13 | margin: 0; |
@@ -50,7 +50,11 @@ a:hover { | |||
50 | outline: 0; | 50 | outline: 0; |
51 | } | 51 | } |
52 | abbr[title] { | 52 | abbr[title] { |
53 | border-bottom: 1px dotted; | 53 | border-bottom: none; |
54 | text-decoration: underline; | ||
55 | -webkit-text-decoration: underline dotted; | ||
56 | -moz-text-decoration: underline dotted; | ||
57 | text-decoration: underline dotted; | ||
54 | } | 58 | } |
55 | b, | 59 | b, |
56 | strong { | 60 | strong { |
@@ -60,28 +64,28 @@ dfn { | |||
60 | font-style: italic; | 64 | font-style: italic; |
61 | } | 65 | } |
62 | h1 { | 66 | h1 { |
63 | margin: .67em 0; | ||
64 | font-size: 2em; | 67 | font-size: 2em; |
68 | margin: 0.67em 0; | ||
65 | } | 69 | } |
66 | mark { | 70 | mark { |
67 | color: #000; | ||
68 | background: #ff0; | 71 | background: #ff0; |
72 | color: #000; | ||
69 | } | 73 | } |
70 | small { | 74 | small { |
71 | font-size: 80%; | 75 | font-size: 80%; |
72 | } | 76 | } |
73 | sub, | 77 | sub, |
74 | sup { | 78 | sup { |
75 | position: relative; | ||
76 | font-size: 75%; | 79 | font-size: 75%; |
77 | line-height: 0; | 80 | line-height: 0; |
81 | position: relative; | ||
78 | vertical-align: baseline; | 82 | vertical-align: baseline; |
79 | } | 83 | } |
80 | sup { | 84 | sup { |
81 | top: -.5em; | 85 | top: -0.5em; |
82 | } | 86 | } |
83 | sub { | 87 | sub { |
84 | bottom: -.25em; | 88 | bottom: -0.25em; |
85 | } | 89 | } |
86 | img { | 90 | img { |
87 | border: 0; | 91 | border: 0; |
@@ -93,10 +97,10 @@ figure { | |||
93 | margin: 1em 40px; | 97 | margin: 1em 40px; |
94 | } | 98 | } |
95 | hr { | 99 | hr { |
96 | height: 0; | ||
97 | -webkit-box-sizing: content-box; | 100 | -webkit-box-sizing: content-box; |
98 | -moz-box-sizing: content-box; | 101 | -moz-box-sizing: content-box; |
99 | box-sizing: content-box; | 102 | box-sizing: content-box; |
103 | height: 0; | ||
100 | } | 104 | } |
101 | pre { | 105 | pre { |
102 | overflow: auto; | 106 | overflow: auto; |
@@ -113,9 +117,9 @@ input, | |||
113 | optgroup, | 117 | optgroup, |
114 | select, | 118 | select, |
115 | textarea { | 119 | textarea { |
116 | margin: 0; | ||
117 | font: inherit; | ||
118 | color: inherit; | 120 | color: inherit; |
121 | font: inherit; | ||
122 | margin: 0; | ||
119 | } | 123 | } |
120 | button { | 124 | button { |
121 | overflow: visible; | 125 | overflow: visible; |
@@ -137,8 +141,8 @@ html input[disabled] { | |||
137 | } | 141 | } |
138 | button::-moz-focus-inner, | 142 | button::-moz-focus-inner, |
139 | input::-moz-focus-inner { | 143 | input::-moz-focus-inner { |
140 | padding: 0; | ||
141 | border: 0; | 144 | border: 0; |
145 | padding: 0; | ||
142 | } | 146 | } |
143 | input { | 147 | input { |
144 | line-height: normal; | 148 | line-height: normal; |
@@ -146,8 +150,8 @@ input { | |||
146 | input[type="checkbox"], | 150 | input[type="checkbox"], |
147 | input[type="radio"] { | 151 | input[type="radio"] { |
148 | -webkit-box-sizing: border-box; | 152 | -webkit-box-sizing: border-box; |
149 | -moz-box-sizing: border-box; | 153 | -moz-box-sizing: border-box; |
150 | box-sizing: border-box; | 154 | box-sizing: border-box; |
151 | padding: 0; | 155 | padding: 0; |
152 | } | 156 | } |
153 | input[type="number"]::-webkit-inner-spin-button, | 157 | input[type="number"]::-webkit-inner-spin-button, |
@@ -155,23 +159,23 @@ input[type="number"]::-webkit-outer-spin-button { | |||
155 | height: auto; | 159 | height: auto; |
156 | } | 160 | } |
157 | input[type="search"] { | 161 | input[type="search"] { |
158 | -webkit-box-sizing: content-box; | ||
159 | -moz-box-sizing: content-box; | ||
160 | box-sizing: content-box; | ||
161 | -webkit-appearance: textfield; | 162 | -webkit-appearance: textfield; |
163 | -webkit-box-sizing: content-box; | ||
164 | -moz-box-sizing: content-box; | ||
165 | box-sizing: content-box; | ||
162 | } | 166 | } |
163 | input[type="search"]::-webkit-search-cancel-button, | 167 | input[type="search"]::-webkit-search-cancel-button, |
164 | input[type="search"]::-webkit-search-decoration { | 168 | input[type="search"]::-webkit-search-decoration { |
165 | -webkit-appearance: none; | 169 | -webkit-appearance: none; |
166 | } | 170 | } |
167 | fieldset { | 171 | fieldset { |
168 | padding: .35em .625em .75em; | ||
169 | margin: 0 2px; | ||
170 | border: 1px solid #c0c0c0; | 172 | border: 1px solid #c0c0c0; |
173 | margin: 0 2px; | ||
174 | padding: 0.35em 0.625em 0.75em; | ||
171 | } | 175 | } |
172 | legend { | 176 | legend { |
173 | padding: 0; | ||
174 | border: 0; | 177 | border: 0; |
178 | padding: 0; | ||
175 | } | 179 | } |
176 | textarea { | 180 | textarea { |
177 | overflow: auto; | 181 | overflow: auto; |
@@ -180,8 +184,8 @@ optgroup { | |||
180 | font-weight: bold; | 184 | font-weight: bold; |
181 | } | 185 | } |
182 | table { | 186 | table { |
183 | border-spacing: 0; | ||
184 | border-collapse: collapse; | 187 | border-collapse: collapse; |
188 | border-spacing: 0; | ||
185 | } | 189 | } |
186 | td, | 190 | td, |
187 | th { | 191 | th { |
@@ -196,7 +200,7 @@ th { | |||
196 | text-shadow: none !important; | 200 | text-shadow: none !important; |
197 | background: transparent !important; | 201 | background: transparent !important; |
198 | -webkit-box-shadow: none !important; | 202 | -webkit-box-shadow: none !important; |
199 | box-shadow: none !important; | 203 | box-shadow: none !important; |
200 | } | 204 | } |
201 | a, | 205 | a, |
202 | a:visited { | 206 | a:visited { |
@@ -215,7 +219,6 @@ th { | |||
215 | pre, | 219 | pre, |
216 | blockquote { | 220 | blockquote { |
217 | border: 1px solid #999; | 221 | border: 1px solid #999; |
218 | |||
219 | page-break-inside: avoid; | 222 | page-break-inside: avoid; |
220 | } | 223 | } |
221 | thead { | 224 | thead { |
@@ -261,20 +264,18 @@ th { | |||
261 | } | 264 | } |
262 | } | 265 | } |
263 | @font-face { | 266 | @font-face { |
264 | font-family: 'Glyphicons Halflings'; | 267 | font-family: "Glyphicons Halflings"; |
265 | 268 | src: url("../fonts/glyphicons-halflings-regular.eot"); | |
266 | src: url('../fonts/glyphicons-halflings-regular.eot'); | 269 | src: url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); |
267 | src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); | ||
268 | } | 270 | } |
269 | .glyphicon { | 271 | .glyphicon { |
270 | position: relative; | 272 | position: relative; |
271 | top: 1px; | 273 | top: 1px; |
272 | display: inline-block; | 274 | display: inline-block; |
273 | font-family: 'Glyphicons Halflings'; | 275 | font-family: "Glyphicons Halflings"; |
274 | font-style: normal; | 276 | font-style: normal; |
275 | font-weight: normal; | 277 | font-weight: 400; |
276 | line-height: 1; | 278 | line-height: 1; |
277 | |||
278 | -webkit-font-smoothing: antialiased; | 279 | -webkit-font-smoothing: antialiased; |
279 | -moz-osx-font-smoothing: grayscale; | 280 | -moz-osx-font-smoothing: grayscale; |
280 | } | 281 | } |
@@ -1067,25 +1068,24 @@ th { | |||
1067 | } | 1068 | } |
1068 | * { | 1069 | * { |
1069 | -webkit-box-sizing: border-box; | 1070 | -webkit-box-sizing: border-box; |
1070 | -moz-box-sizing: border-box; | 1071 | -moz-box-sizing: border-box; |
1071 | box-sizing: border-box; | 1072 | box-sizing: border-box; |
1072 | } | 1073 | } |
1073 | *:before, | 1074 | *:before, |
1074 | *:after { | 1075 | *:after { |
1075 | -webkit-box-sizing: border-box; | 1076 | -webkit-box-sizing: border-box; |
1076 | -moz-box-sizing: border-box; | 1077 | -moz-box-sizing: border-box; |
1077 | box-sizing: border-box; | 1078 | box-sizing: border-box; |
1078 | } | 1079 | } |
1079 | html { | 1080 | html { |
1080 | font-size: 10px; | 1081 | font-size: 10px; |
1081 | |||
1082 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); | 1082 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); |
1083 | } | 1083 | } |
1084 | body { | 1084 | body { |
1085 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | 1085 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
1086 | font-size: 14px; | 1086 | font-size: 14px; |
1087 | line-height: 1.42857143; | 1087 | line-height: 1.42857143; |
1088 | color: #333; | 1088 | color: #333333; |
1089 | background-color: #fff; | 1089 | background-color: #fff; |
1090 | } | 1090 | } |
1091 | input, | 1091 | input, |
@@ -1128,17 +1128,17 @@ img { | |||
1128 | border-radius: 6px; | 1128 | border-radius: 6px; |
1129 | } | 1129 | } |
1130 | .img-thumbnail { | 1130 | .img-thumbnail { |
1131 | display: inline-block; | ||
1132 | max-width: 100%; | ||
1133 | height: auto; | ||
1134 | padding: 4px; | 1131 | padding: 4px; |
1135 | line-height: 1.42857143; | 1132 | line-height: 1.42857143; |
1136 | background-color: #fff; | 1133 | background-color: #fff; |
1137 | border: 1px solid #ddd; | 1134 | border: 1px solid #ddd; |
1138 | border-radius: 4px; | 1135 | border-radius: 4px; |
1139 | -webkit-transition: all .2s ease-in-out; | 1136 | -webkit-transition: all 0.2s ease-in-out; |
1140 | -o-transition: all .2s ease-in-out; | 1137 | -o-transition: all 0.2s ease-in-out; |
1141 | transition: all .2s ease-in-out; | 1138 | transition: all 0.2s ease-in-out; |
1139 | display: inline-block; | ||
1140 | max-width: 100%; | ||
1141 | height: auto; | ||
1142 | } | 1142 | } |
1143 | .img-circle { | 1143 | .img-circle { |
1144 | border-radius: 50%; | 1144 | border-radius: 50%; |
@@ -1147,7 +1147,7 @@ hr { | |||
1147 | margin-top: 20px; | 1147 | margin-top: 20px; |
1148 | margin-bottom: 20px; | 1148 | margin-bottom: 20px; |
1149 | border: 0; | 1149 | border: 0; |
1150 | border-top: 1px solid #eee; | 1150 | border-top: 1px solid #eeeeee; |
1151 | } | 1151 | } |
1152 | .sr-only { | 1152 | .sr-only { |
1153 | position: absolute; | 1153 | position: absolute; |
@@ -1212,9 +1212,9 @@ h6 .small, | |||
1212 | .h4 .small, | 1212 | .h4 .small, |
1213 | .h5 .small, | 1213 | .h5 .small, |
1214 | .h6 .small { | 1214 | .h6 .small { |
1215 | font-weight: normal; | 1215 | font-weight: 400; |
1216 | line-height: 1; | 1216 | line-height: 1; |
1217 | color: #777; | 1217 | color: #777777; |
1218 | } | 1218 | } |
1219 | h1, | 1219 | h1, |
1220 | .h1, | 1220 | .h1, |
@@ -1306,7 +1306,7 @@ small, | |||
1306 | } | 1306 | } |
1307 | mark, | 1307 | mark, |
1308 | .mark { | 1308 | .mark { |
1309 | padding: .2em; | 1309 | padding: 0.2em; |
1310 | background-color: #fcf8e3; | 1310 | background-color: #fcf8e3; |
1311 | } | 1311 | } |
1312 | .text-left { | 1312 | .text-left { |
@@ -1334,7 +1334,7 @@ mark, | |||
1334 | text-transform: capitalize; | 1334 | text-transform: capitalize; |
1335 | } | 1335 | } |
1336 | .text-muted { | 1336 | .text-muted { |
1337 | color: #777; | 1337 | color: #777777; |
1338 | } | 1338 | } |
1339 | .text-primary { | 1339 | .text-primary { |
1340 | color: #337ab7; | 1340 | color: #337ab7; |
@@ -1410,7 +1410,7 @@ a.bg-danger:focus { | |||
1410 | .page-header { | 1410 | .page-header { |
1411 | padding-bottom: 9px; | 1411 | padding-bottom: 9px; |
1412 | margin: 40px 0 20px; | 1412 | margin: 40px 0 20px; |
1413 | border-bottom: 1px solid #eee; | 1413 | border-bottom: 1px solid #eeeeee; |
1414 | } | 1414 | } |
1415 | ul, | 1415 | ul, |
1416 | ol { | 1416 | ol { |
@@ -1429,8 +1429,8 @@ ol ol { | |||
1429 | } | 1429 | } |
1430 | .list-inline { | 1430 | .list-inline { |
1431 | padding-left: 0; | 1431 | padding-left: 0; |
1432 | margin-left: -5px; | ||
1433 | list-style: none; | 1432 | list-style: none; |
1433 | margin-left: -5px; | ||
1434 | } | 1434 | } |
1435 | .list-inline > li { | 1435 | .list-inline > li { |
1436 | display: inline-block; | 1436 | display: inline-block; |
@@ -1446,7 +1446,7 @@ dd { | |||
1446 | line-height: 1.42857143; | 1446 | line-height: 1.42857143; |
1447 | } | 1447 | } |
1448 | dt { | 1448 | dt { |
1449 | font-weight: bold; | 1449 | font-weight: 700; |
1450 | } | 1450 | } |
1451 | dd { | 1451 | dd { |
1452 | margin-left: 0; | 1452 | margin-left: 0; |
@@ -1455,9 +1455,9 @@ dd { | |||
1455 | .dl-horizontal dt { | 1455 | .dl-horizontal dt { |
1456 | float: left; | 1456 | float: left; |
1457 | width: 160px; | 1457 | width: 160px; |
1458 | overflow: hidden; | ||
1459 | clear: left; | 1458 | clear: left; |
1460 | text-align: right; | 1459 | text-align: right; |
1460 | overflow: hidden; | ||
1461 | text-overflow: ellipsis; | 1461 | text-overflow: ellipsis; |
1462 | white-space: nowrap; | 1462 | white-space: nowrap; |
1463 | } | 1463 | } |
@@ -1468,7 +1468,6 @@ dd { | |||
1468 | abbr[title], | 1468 | abbr[title], |
1469 | abbr[data-original-title] { | 1469 | abbr[data-original-title] { |
1470 | cursor: help; | 1470 | cursor: help; |
1471 | border-bottom: 1px dotted #777; | ||
1472 | } | 1471 | } |
1473 | .initialism { | 1472 | .initialism { |
1474 | font-size: 90%; | 1473 | font-size: 90%; |
@@ -1478,7 +1477,7 @@ blockquote { | |||
1478 | padding: 10px 20px; | 1477 | padding: 10px 20px; |
1479 | margin: 0 0 20px; | 1478 | margin: 0 0 20px; |
1480 | font-size: 17.5px; | 1479 | font-size: 17.5px; |
1481 | border-left: 5px solid #eee; | 1480 | border-left: 5px solid #eeeeee; |
1482 | } | 1481 | } |
1483 | blockquote p:last-child, | 1482 | blockquote p:last-child, |
1484 | blockquote ul:last-child, | 1483 | blockquote ul:last-child, |
@@ -1491,19 +1490,19 @@ blockquote .small { | |||
1491 | display: block; | 1490 | display: block; |
1492 | font-size: 80%; | 1491 | font-size: 80%; |
1493 | line-height: 1.42857143; | 1492 | line-height: 1.42857143; |
1494 | color: #777; | 1493 | color: #777777; |
1495 | } | 1494 | } |
1496 | blockquote footer:before, | 1495 | blockquote footer:before, |
1497 | blockquote small:before, | 1496 | blockquote small:before, |
1498 | blockquote .small:before { | 1497 | blockquote .small:before { |
1499 | content: '\2014 \00A0'; | 1498 | content: "\2014 \00A0"; |
1500 | } | 1499 | } |
1501 | .blockquote-reverse, | 1500 | .blockquote-reverse, |
1502 | blockquote.pull-right { | 1501 | blockquote.pull-right { |
1503 | padding-right: 15px; | 1502 | padding-right: 15px; |
1504 | padding-left: 0; | 1503 | padding-left: 0; |
1505 | text-align: right; | 1504 | text-align: right; |
1506 | border-right: 5px solid #eee; | 1505 | border-right: 5px solid #eeeeee; |
1507 | border-left: 0; | 1506 | border-left: 0; |
1508 | } | 1507 | } |
1509 | .blockquote-reverse footer:before, | 1508 | .blockquote-reverse footer:before, |
@@ -1512,7 +1511,7 @@ blockquote.pull-right footer:before, | |||
1512 | blockquote.pull-right small:before, | 1511 | blockquote.pull-right small:before, |
1513 | .blockquote-reverse .small:before, | 1512 | .blockquote-reverse .small:before, |
1514 | blockquote.pull-right .small:before { | 1513 | blockquote.pull-right .small:before { |
1515 | content: ''; | 1514 | content: ""; |
1516 | } | 1515 | } |
1517 | .blockquote-reverse footer:after, | 1516 | .blockquote-reverse footer:after, |
1518 | blockquote.pull-right footer:after, | 1517 | blockquote.pull-right footer:after, |
@@ -1520,7 +1519,7 @@ blockquote.pull-right footer:after, | |||
1520 | blockquote.pull-right small:after, | 1519 | blockquote.pull-right small:after, |
1521 | .blockquote-reverse .small:after, | 1520 | .blockquote-reverse .small:after, |
1522 | blockquote.pull-right .small:after { | 1521 | blockquote.pull-right .small:after { |
1523 | content: '\00A0 \2014'; | 1522 | content: "\00A0 \2014"; |
1524 | } | 1523 | } |
1525 | address { | 1524 | address { |
1526 | margin-bottom: 20px; | 1525 | margin-bottom: 20px; |
@@ -1546,15 +1545,15 @@ kbd { | |||
1546 | color: #fff; | 1545 | color: #fff; |
1547 | background-color: #333; | 1546 | background-color: #333; |
1548 | border-radius: 3px; | 1547 | border-radius: 3px; |
1549 | -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); | 1548 | -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); |
1550 | box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); | 1549 | box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); |
1551 | } | 1550 | } |
1552 | kbd kbd { | 1551 | kbd kbd { |
1553 | padding: 0; | 1552 | padding: 0; |
1554 | font-size: 100%; | 1553 | font-size: 100%; |
1555 | font-weight: bold; | 1554 | font-weight: 700; |
1556 | -webkit-box-shadow: none; | 1555 | -webkit-box-shadow: none; |
1557 | box-shadow: none; | 1556 | box-shadow: none; |
1558 | } | 1557 | } |
1559 | pre { | 1558 | pre { |
1560 | display: block; | 1559 | display: block; |
@@ -1562,7 +1561,7 @@ pre { | |||
1562 | margin: 0 0 10px; | 1561 | margin: 0 0 10px; |
1563 | font-size: 13px; | 1562 | font-size: 13px; |
1564 | line-height: 1.42857143; | 1563 | line-height: 1.42857143; |
1565 | color: #333; | 1564 | color: #333333; |
1566 | word-break: break-all; | 1565 | word-break: break-all; |
1567 | word-wrap: break-word; | 1566 | word-wrap: break-word; |
1568 | background-color: #f5f5f5; | 1567 | background-color: #f5f5f5; |
@@ -1612,13 +1611,79 @@ pre code { | |||
1612 | margin-right: -15px; | 1611 | margin-right: -15px; |
1613 | margin-left: -15px; | 1612 | margin-left: -15px; |
1614 | } | 1613 | } |
1615 | .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { | 1614 | .row-no-gutters { |
1615 | margin-right: 0; | ||
1616 | margin-left: 0; | ||
1617 | } | ||
1618 | .row-no-gutters [class*="col-"] { | ||
1619 | padding-right: 0; | ||
1620 | padding-left: 0; | ||
1621 | } | ||
1622 | .col-xs-1, | ||
1623 | .col-sm-1, | ||
1624 | .col-md-1, | ||
1625 | .col-lg-1, | ||
1626 | .col-xs-2, | ||
1627 | .col-sm-2, | ||
1628 | .col-md-2, | ||
1629 | .col-lg-2, | ||
1630 | .col-xs-3, | ||
1631 | .col-sm-3, | ||
1632 | .col-md-3, | ||
1633 | .col-lg-3, | ||
1634 | .col-xs-4, | ||
1635 | .col-sm-4, | ||
1636 | .col-md-4, | ||
1637 | .col-lg-4, | ||
1638 | .col-xs-5, | ||
1639 | .col-sm-5, | ||
1640 | .col-md-5, | ||
1641 | .col-lg-5, | ||
1642 | .col-xs-6, | ||
1643 | .col-sm-6, | ||
1644 | .col-md-6, | ||
1645 | .col-lg-6, | ||
1646 | .col-xs-7, | ||
1647 | .col-sm-7, | ||
1648 | .col-md-7, | ||
1649 | .col-lg-7, | ||
1650 | .col-xs-8, | ||
1651 | .col-sm-8, | ||
1652 | .col-md-8, | ||
1653 | .col-lg-8, | ||
1654 | .col-xs-9, | ||
1655 | .col-sm-9, | ||
1656 | .col-md-9, | ||
1657 | .col-lg-9, | ||
1658 | .col-xs-10, | ||
1659 | .col-sm-10, | ||
1660 | .col-md-10, | ||
1661 | .col-lg-10, | ||
1662 | .col-xs-11, | ||
1663 | .col-sm-11, | ||
1664 | .col-md-11, | ||
1665 | .col-lg-11, | ||
1666 | .col-xs-12, | ||
1667 | .col-sm-12, | ||
1668 | .col-md-12, | ||
1669 | .col-lg-12 { | ||
1616 | position: relative; | 1670 | position: relative; |
1617 | min-height: 1px; | 1671 | min-height: 1px; |
1618 | padding-right: 15px; | 1672 | padding-right: 15px; |
1619 | padding-left: 15px; | 1673 | padding-left: 15px; |
1620 | } | 1674 | } |
1621 | .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { | 1675 | .col-xs-1, |
1676 | .col-xs-2, | ||
1677 | .col-xs-3, | ||
1678 | .col-xs-4, | ||
1679 | .col-xs-5, | ||
1680 | .col-xs-6, | ||
1681 | .col-xs-7, | ||
1682 | .col-xs-8, | ||
1683 | .col-xs-9, | ||
1684 | .col-xs-10, | ||
1685 | .col-xs-11, | ||
1686 | .col-xs-12 { | ||
1622 | float: left; | 1687 | float: left; |
1623 | } | 1688 | } |
1624 | .col-xs-12 { | 1689 | .col-xs-12 { |
@@ -1772,10 +1837,21 @@ pre code { | |||
1772 | margin-left: 8.33333333%; | 1837 | margin-left: 8.33333333%; |
1773 | } | 1838 | } |
1774 | .col-xs-offset-0 { | 1839 | .col-xs-offset-0 { |
1775 | margin-left: 0; | 1840 | margin-left: 0%; |
1776 | } | 1841 | } |
1777 | @media (min-width: 768px) { | 1842 | @media (min-width: 768px) { |
1778 | .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { | 1843 | .col-sm-1, |
1844 | .col-sm-2, | ||
1845 | .col-sm-3, | ||
1846 | .col-sm-4, | ||
1847 | .col-sm-5, | ||
1848 | .col-sm-6, | ||
1849 | .col-sm-7, | ||
1850 | .col-sm-8, | ||
1851 | .col-sm-9, | ||
1852 | .col-sm-10, | ||
1853 | .col-sm-11, | ||
1854 | .col-sm-12 { | ||
1779 | float: left; | 1855 | float: left; |
1780 | } | 1856 | } |
1781 | .col-sm-12 { | 1857 | .col-sm-12 { |
@@ -1929,11 +2005,22 @@ pre code { | |||
1929 | margin-left: 8.33333333%; | 2005 | margin-left: 8.33333333%; |
1930 | } | 2006 | } |
1931 | .col-sm-offset-0 { | 2007 | .col-sm-offset-0 { |
1932 | margin-left: 0; | 2008 | margin-left: 0%; |
1933 | } | 2009 | } |
1934 | } | 2010 | } |
1935 | @media (min-width: 992px) { | 2011 | @media (min-width: 992px) { |
1936 | .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { | 2012 | .col-md-1, |
2013 | .col-md-2, | ||
2014 | .col-md-3, | ||
2015 | .col-md-4, | ||
2016 | .col-md-5, | ||
2017 | .col-md-6, | ||
2018 | .col-md-7, | ||
2019 | .col-md-8, | ||
2020 | .col-md-9, | ||
2021 | .col-md-10, | ||
2022 | .col-md-11, | ||
2023 | .col-md-12 { | ||
1937 | float: left; | 2024 | float: left; |
1938 | } | 2025 | } |
1939 | .col-md-12 { | 2026 | .col-md-12 { |
@@ -2087,11 +2174,22 @@ pre code { | |||
2087 | margin-left: 8.33333333%; | 2174 | margin-left: 8.33333333%; |
2088 | } | 2175 | } |
2089 | .col-md-offset-0 { | 2176 | .col-md-offset-0 { |
2090 | margin-left: 0; | 2177 | margin-left: 0%; |
2091 | } | 2178 | } |
2092 | } | 2179 | } |
2093 | @media (min-width: 1200px) { | 2180 | @media (min-width: 1200px) { |
2094 | .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { | 2181 | .col-lg-1, |
2182 | .col-lg-2, | ||
2183 | .col-lg-3, | ||
2184 | .col-lg-4, | ||
2185 | .col-lg-5, | ||
2186 | .col-lg-6, | ||
2187 | .col-lg-7, | ||
2188 | .col-lg-8, | ||
2189 | .col-lg-9, | ||
2190 | .col-lg-10, | ||
2191 | .col-lg-11, | ||
2192 | .col-lg-12 { | ||
2095 | float: left; | 2193 | float: left; |
2096 | } | 2194 | } |
2097 | .col-lg-12 { | 2195 | .col-lg-12 { |
@@ -2245,16 +2343,27 @@ pre code { | |||
2245 | margin-left: 8.33333333%; | 2343 | margin-left: 8.33333333%; |
2246 | } | 2344 | } |
2247 | .col-lg-offset-0 { | 2345 | .col-lg-offset-0 { |
2248 | margin-left: 0; | 2346 | margin-left: 0%; |
2249 | } | 2347 | } |
2250 | } | 2348 | } |
2251 | table { | 2349 | table { |
2252 | background-color: transparent; | 2350 | background-color: transparent; |
2253 | } | 2351 | } |
2352 | table col[class*="col-"] { | ||
2353 | position: static; | ||
2354 | display: table-column; | ||
2355 | float: none; | ||
2356 | } | ||
2357 | table td[class*="col-"], | ||
2358 | table th[class*="col-"] { | ||
2359 | position: static; | ||
2360 | display: table-cell; | ||
2361 | float: none; | ||
2362 | } | ||
2254 | caption { | 2363 | caption { |
2255 | padding-top: 8px; | 2364 | padding-top: 8px; |
2256 | padding-bottom: 8px; | 2365 | padding-bottom: 8px; |
2257 | color: #777; | 2366 | color: #777777; |
2258 | text-align: left; | 2367 | text-align: left; |
2259 | } | 2368 | } |
2260 | th { | 2369 | th { |
@@ -2323,17 +2432,6 @@ th { | |||
2323 | .table-hover > tbody > tr:hover { | 2432 | .table-hover > tbody > tr:hover { |
2324 | background-color: #f5f5f5; | 2433 | background-color: #f5f5f5; |
2325 | } | 2434 | } |
2326 | table col[class*="col-"] { | ||
2327 | position: static; | ||
2328 | display: table-column; | ||
2329 | float: none; | ||
2330 | } | ||
2331 | table td[class*="col-"], | ||
2332 | table th[class*="col-"] { | ||
2333 | position: static; | ||
2334 | display: table-cell; | ||
2335 | float: none; | ||
2336 | } | ||
2337 | .table > thead > tr > td.active, | 2435 | .table > thead > tr > td.active, |
2338 | .table > tbody > tr > td.active, | 2436 | .table > tbody > tr > td.active, |
2339 | .table > tfoot > tr > td.active, | 2437 | .table > tfoot > tr > td.active, |
@@ -2440,7 +2538,7 @@ table th[class*="col-"] { | |||
2440 | background-color: #ebcccc; | 2538 | background-color: #ebcccc; |
2441 | } | 2539 | } |
2442 | .table-responsive { | 2540 | .table-responsive { |
2443 | min-height: .01%; | 2541 | min-height: 0.01%; |
2444 | overflow-x: auto; | 2542 | overflow-x: auto; |
2445 | } | 2543 | } |
2446 | @media screen and (max-width: 767px) { | 2544 | @media screen and (max-width: 767px) { |
@@ -2501,7 +2599,7 @@ legend { | |||
2501 | margin-bottom: 20px; | 2599 | margin-bottom: 20px; |
2502 | font-size: 21px; | 2600 | font-size: 21px; |
2503 | line-height: inherit; | 2601 | line-height: inherit; |
2504 | color: #333; | 2602 | color: #333333; |
2505 | border: 0; | 2603 | border: 0; |
2506 | border-bottom: 1px solid #e5e5e5; | 2604 | border-bottom: 1px solid #e5e5e5; |
2507 | } | 2605 | } |
@@ -2509,12 +2607,15 @@ label { | |||
2509 | display: inline-block; | 2607 | display: inline-block; |
2510 | max-width: 100%; | 2608 | max-width: 100%; |
2511 | margin-bottom: 5px; | 2609 | margin-bottom: 5px; |
2512 | font-weight: bold; | 2610 | font-weight: 700; |
2513 | } | 2611 | } |
2514 | input[type="search"] { | 2612 | input[type="search"] { |
2515 | -webkit-box-sizing: border-box; | 2613 | -webkit-box-sizing: border-box; |
2516 | -moz-box-sizing: border-box; | 2614 | -moz-box-sizing: border-box; |
2517 | box-sizing: border-box; | 2615 | box-sizing: border-box; |
2616 | -webkit-appearance: none; | ||
2617 | -moz-appearance: none; | ||
2618 | appearance: none; | ||
2518 | } | 2619 | } |
2519 | input[type="radio"], | 2620 | input[type="radio"], |
2520 | input[type="checkbox"] { | 2621 | input[type="checkbox"] { |
@@ -2522,6 +2623,14 @@ input[type="checkbox"] { | |||
2522 | margin-top: 1px \9; | 2623 | margin-top: 1px \9; |
2523 | line-height: normal; | 2624 | line-height: normal; |
2524 | } | 2625 | } |
2626 | input[type="radio"][disabled], | ||
2627 | input[type="checkbox"][disabled], | ||
2628 | input[type="radio"].disabled, | ||
2629 | input[type="checkbox"].disabled, | ||
2630 | fieldset[disabled] input[type="radio"], | ||
2631 | fieldset[disabled] input[type="checkbox"] { | ||
2632 | cursor: not-allowed; | ||
2633 | } | ||
2525 | input[type="file"] { | 2634 | input[type="file"] { |
2526 | display: block; | 2635 | display: block; |
2527 | } | 2636 | } |
@@ -2544,7 +2653,7 @@ output { | |||
2544 | padding-top: 7px; | 2653 | padding-top: 7px; |
2545 | font-size: 14px; | 2654 | font-size: 14px; |
2546 | line-height: 1.42857143; | 2655 | line-height: 1.42857143; |
2547 | color: #555; | 2656 | color: #555555; |
2548 | } | 2657 | } |
2549 | .form-control { | 2658 | .form-control { |
2550 | display: block; | 2659 | display: block; |
@@ -2553,22 +2662,25 @@ output { | |||
2553 | padding: 6px 12px; | 2662 | padding: 6px 12px; |
2554 | font-size: 14px; | 2663 | font-size: 14px; |
2555 | line-height: 1.42857143; | 2664 | line-height: 1.42857143; |
2556 | color: #555; | 2665 | color: #555555; |
2557 | background-color: #fff; | 2666 | background-color: #fff; |
2558 | background-image: none; | 2667 | background-image: none; |
2559 | border: 1px solid #ccc; | 2668 | border: 1px solid #ccc; |
2560 | border-radius: 4px; | 2669 | border-radius: 4px; |
2561 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); | 2670 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
2562 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); | 2671 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
2672 | -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; | ||
2673 | -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; | ||
2563 | -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; | 2674 | -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; |
2564 | -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; | 2675 | transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; |
2565 | transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; | 2676 | transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; |
2677 | transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; | ||
2566 | } | 2678 | } |
2567 | .form-control:focus { | 2679 | .form-control:focus { |
2568 | border-color: #66afe9; | 2680 | border-color: #66afe9; |
2569 | outline: 0; | 2681 | outline: 0; |
2570 | -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); | 2682 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6); |
2571 | box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); | 2683 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6); |
2572 | } | 2684 | } |
2573 | .form-control::-moz-placeholder { | 2685 | .form-control::-moz-placeholder { |
2574 | color: #999; | 2686 | color: #999; |
@@ -2587,7 +2699,7 @@ output { | |||
2587 | .form-control[disabled], | 2699 | .form-control[disabled], |
2588 | .form-control[readonly], | 2700 | .form-control[readonly], |
2589 | fieldset[disabled] .form-control { | 2701 | fieldset[disabled] .form-control { |
2590 | background-color: #eee; | 2702 | background-color: #eeeeee; |
2591 | opacity: 1; | 2703 | opacity: 1; |
2592 | } | 2704 | } |
2593 | .form-control[disabled], | 2705 | .form-control[disabled], |
@@ -2597,9 +2709,6 @@ fieldset[disabled] .form-control { | |||
2597 | textarea.form-control { | 2709 | textarea.form-control { |
2598 | height: auto; | 2710 | height: auto; |
2599 | } | 2711 | } |
2600 | input[type="search"] { | ||
2601 | -webkit-appearance: none; | ||
2602 | } | ||
2603 | @media screen and (-webkit-min-device-pixel-ratio: 0) { | 2712 | @media screen and (-webkit-min-device-pixel-ratio: 0) { |
2604 | input[type="date"].form-control, | 2713 | input[type="date"].form-control, |
2605 | input[type="time"].form-control, | 2714 | input[type="time"].form-control, |
@@ -2638,12 +2747,18 @@ input[type="search"] { | |||
2638 | margin-top: 10px; | 2747 | margin-top: 10px; |
2639 | margin-bottom: 10px; | 2748 | margin-bottom: 10px; |
2640 | } | 2749 | } |
2750 | .radio.disabled label, | ||
2751 | .checkbox.disabled label, | ||
2752 | fieldset[disabled] .radio label, | ||
2753 | fieldset[disabled] .checkbox label { | ||
2754 | cursor: not-allowed; | ||
2755 | } | ||
2641 | .radio label, | 2756 | .radio label, |
2642 | .checkbox label { | 2757 | .checkbox label { |
2643 | min-height: 20px; | 2758 | min-height: 20px; |
2644 | padding-left: 20px; | 2759 | padding-left: 20px; |
2645 | margin-bottom: 0; | 2760 | margin-bottom: 0; |
2646 | font-weight: normal; | 2761 | font-weight: 400; |
2647 | cursor: pointer; | 2762 | cursor: pointer; |
2648 | } | 2763 | } |
2649 | .radio input[type="radio"], | 2764 | .radio input[type="radio"], |
@@ -2664,34 +2779,20 @@ input[type="search"] { | |||
2664 | display: inline-block; | 2779 | display: inline-block; |
2665 | padding-left: 20px; | 2780 | padding-left: 20px; |
2666 | margin-bottom: 0; | 2781 | margin-bottom: 0; |
2667 | font-weight: normal; | 2782 | font-weight: 400; |
2668 | vertical-align: middle; | 2783 | vertical-align: middle; |
2669 | cursor: pointer; | 2784 | cursor: pointer; |
2670 | } | 2785 | } |
2671 | .radio-inline + .radio-inline, | ||
2672 | .checkbox-inline + .checkbox-inline { | ||
2673 | margin-top: 0; | ||
2674 | margin-left: 10px; | ||
2675 | } | ||
2676 | input[type="radio"][disabled], | ||
2677 | input[type="checkbox"][disabled], | ||
2678 | input[type="radio"].disabled, | ||
2679 | input[type="checkbox"].disabled, | ||
2680 | fieldset[disabled] input[type="radio"], | ||
2681 | fieldset[disabled] input[type="checkbox"] { | ||
2682 | cursor: not-allowed; | ||
2683 | } | ||
2684 | .radio-inline.disabled, | 2786 | .radio-inline.disabled, |
2685 | .checkbox-inline.disabled, | 2787 | .checkbox-inline.disabled, |
2686 | fieldset[disabled] .radio-inline, | 2788 | fieldset[disabled] .radio-inline, |
2687 | fieldset[disabled] .checkbox-inline { | 2789 | fieldset[disabled] .checkbox-inline { |
2688 | cursor: not-allowed; | 2790 | cursor: not-allowed; |
2689 | } | 2791 | } |
2690 | .radio.disabled label, | 2792 | .radio-inline + .radio-inline, |
2691 | .checkbox.disabled label, | 2793 | .checkbox-inline + .checkbox-inline { |
2692 | fieldset[disabled] .radio label, | 2794 | margin-top: 0; |
2693 | fieldset[disabled] .checkbox label { | 2795 | margin-left: 10px; |
2694 | cursor: not-allowed; | ||
2695 | } | 2796 | } |
2696 | .form-control-static { | 2797 | .form-control-static { |
2697 | min-height: 34px; | 2798 | min-height: 34px; |
@@ -2824,13 +2925,13 @@ select[multiple].input-lg { | |||
2824 | } | 2925 | } |
2825 | .has-success .form-control { | 2926 | .has-success .form-control { |
2826 | border-color: #3c763d; | 2927 | border-color: #3c763d; |
2827 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); | 2928 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
2828 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); | 2929 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
2829 | } | 2930 | } |
2830 | .has-success .form-control:focus { | 2931 | .has-success .form-control:focus { |
2831 | border-color: #2b542c; | 2932 | border-color: #2b542c; |
2832 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; | 2933 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; |
2833 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; | 2934 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; |
2834 | } | 2935 | } |
2835 | .has-success .input-group-addon { | 2936 | .has-success .input-group-addon { |
2836 | color: #3c763d; | 2937 | color: #3c763d; |
@@ -2854,13 +2955,13 @@ select[multiple].input-lg { | |||
2854 | } | 2955 | } |
2855 | .has-warning .form-control { | 2956 | .has-warning .form-control { |
2856 | border-color: #8a6d3b; | 2957 | border-color: #8a6d3b; |
2857 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); | 2958 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
2858 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); | 2959 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
2859 | } | 2960 | } |
2860 | .has-warning .form-control:focus { | 2961 | .has-warning .form-control:focus { |
2861 | border-color: #66512c; | 2962 | border-color: #66512c; |
2862 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; | 2963 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; |
2863 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; | 2964 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; |
2864 | } | 2965 | } |
2865 | .has-warning .input-group-addon { | 2966 | .has-warning .input-group-addon { |
2866 | color: #8a6d3b; | 2967 | color: #8a6d3b; |
@@ -2884,13 +2985,13 @@ select[multiple].input-lg { | |||
2884 | } | 2985 | } |
2885 | .has-error .form-control { | 2986 | .has-error .form-control { |
2886 | border-color: #a94442; | 2987 | border-color: #a94442; |
2887 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); | 2988 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
2888 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); | 2989 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); |
2889 | } | 2990 | } |
2890 | .has-error .form-control:focus { | 2991 | .has-error .form-control:focus { |
2891 | border-color: #843534; | 2992 | border-color: #843534; |
2892 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; | 2993 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; |
2893 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; | 2994 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; |
2894 | } | 2995 | } |
2895 | .has-error .input-group-addon { | 2996 | .has-error .input-group-addon { |
2896 | color: #a94442; | 2997 | color: #a94442; |
@@ -3002,24 +3103,24 @@ select[multiple].input-lg { | |||
3002 | } | 3103 | } |
3003 | .btn { | 3104 | .btn { |
3004 | display: inline-block; | 3105 | display: inline-block; |
3005 | padding: 6px 12px; | ||
3006 | margin-bottom: 0; | 3106 | margin-bottom: 0; |
3007 | font-size: 14px; | ||
3008 | font-weight: normal; | 3107 | font-weight: normal; |
3009 | line-height: 1.42857143; | ||
3010 | text-align: center; | 3108 | text-align: center; |
3011 | white-space: nowrap; | 3109 | white-space: nowrap; |
3012 | vertical-align: middle; | 3110 | vertical-align: middle; |
3013 | -ms-touch-action: manipulation; | 3111 | -ms-touch-action: manipulation; |
3014 | touch-action: manipulation; | 3112 | touch-action: manipulation; |
3015 | cursor: pointer; | 3113 | cursor: pointer; |
3016 | -webkit-user-select: none; | ||
3017 | -moz-user-select: none; | ||
3018 | -ms-user-select: none; | ||
3019 | user-select: none; | ||
3020 | background-image: none; | 3114 | background-image: none; |
3021 | border: 1px solid transparent; | 3115 | border: 1px solid transparent; |
3116 | padding: 6px 12px; | ||
3117 | font-size: 14px; | ||
3118 | line-height: 1.42857143; | ||
3022 | border-radius: 4px; | 3119 | border-radius: 4px; |
3120 | -webkit-user-select: none; | ||
3121 | -moz-user-select: none; | ||
3122 | -ms-user-select: none; | ||
3123 | user-select: none; | ||
3023 | } | 3124 | } |
3024 | .btn:focus, | 3125 | .btn:focus, |
3025 | .btn:active:focus, | 3126 | .btn:active:focus, |
@@ -3040,17 +3141,17 @@ select[multiple].input-lg { | |||
3040 | .btn.active { | 3141 | .btn.active { |
3041 | background-image: none; | 3142 | background-image: none; |
3042 | outline: 0; | 3143 | outline: 0; |
3043 | -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); | 3144 | -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); |
3044 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); | 3145 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); |
3045 | } | 3146 | } |
3046 | .btn.disabled, | 3147 | .btn.disabled, |
3047 | .btn[disabled], | 3148 | .btn[disabled], |
3048 | fieldset[disabled] .btn { | 3149 | fieldset[disabled] .btn { |
3049 | cursor: not-allowed; | 3150 | cursor: not-allowed; |
3050 | filter: alpha(opacity=65); | 3151 | filter: alpha(opacity=65); |
3152 | opacity: 0.65; | ||
3051 | -webkit-box-shadow: none; | 3153 | -webkit-box-shadow: none; |
3052 | box-shadow: none; | 3154 | box-shadow: none; |
3053 | opacity: .65; | ||
3054 | } | 3155 | } |
3055 | a.btn.disabled, | 3156 | a.btn.disabled, |
3056 | fieldset[disabled] a.btn { | 3157 | fieldset[disabled] a.btn { |
@@ -3077,6 +3178,7 @@ fieldset[disabled] a.btn { | |||
3077 | .open > .dropdown-toggle.btn-default { | 3178 | .open > .dropdown-toggle.btn-default { |
3078 | color: #333; | 3179 | color: #333; |
3079 | background-color: #e6e6e6; | 3180 | background-color: #e6e6e6; |
3181 | background-image: none; | ||
3080 | border-color: #adadad; | 3182 | border-color: #adadad; |
3081 | } | 3183 | } |
3082 | .btn-default:active:hover, | 3184 | .btn-default:active:hover, |
@@ -3092,11 +3194,6 @@ fieldset[disabled] a.btn { | |||
3092 | background-color: #d4d4d4; | 3194 | background-color: #d4d4d4; |
3093 | border-color: #8c8c8c; | 3195 | border-color: #8c8c8c; |
3094 | } | 3196 | } |
3095 | .btn-default:active, | ||
3096 | .btn-default.active, | ||
3097 | .open > .dropdown-toggle.btn-default { | ||
3098 | background-image: none; | ||
3099 | } | ||
3100 | .btn-default.disabled:hover, | 3197 | .btn-default.disabled:hover, |
3101 | .btn-default[disabled]:hover, | 3198 | .btn-default[disabled]:hover, |
3102 | fieldset[disabled] .btn-default:hover, | 3199 | fieldset[disabled] .btn-default:hover, |
@@ -3134,6 +3231,7 @@ fieldset[disabled] .btn-default.focus { | |||
3134 | .open > .dropdown-toggle.btn-primary { | 3231 | .open > .dropdown-toggle.btn-primary { |
3135 | color: #fff; | 3232 | color: #fff; |
3136 | background-color: #286090; | 3233 | background-color: #286090; |
3234 | background-image: none; | ||
3137 | border-color: #204d74; | 3235 | border-color: #204d74; |
3138 | } | 3236 | } |
3139 | .btn-primary:active:hover, | 3237 | .btn-primary:active:hover, |
@@ -3149,11 +3247,6 @@ fieldset[disabled] .btn-default.focus { | |||
3149 | background-color: #204d74; | 3247 | background-color: #204d74; |
3150 | border-color: #122b40; | 3248 | border-color: #122b40; |
3151 | } | 3249 | } |
3152 | .btn-primary:active, | ||
3153 | .btn-primary.active, | ||
3154 | .open > .dropdown-toggle.btn-primary { | ||
3155 | background-image: none; | ||
3156 | } | ||
3157 | .btn-primary.disabled:hover, | 3250 | .btn-primary.disabled:hover, |
3158 | .btn-primary[disabled]:hover, | 3251 | .btn-primary[disabled]:hover, |
3159 | fieldset[disabled] .btn-primary:hover, | 3252 | fieldset[disabled] .btn-primary:hover, |
@@ -3191,6 +3284,7 @@ fieldset[disabled] .btn-primary.focus { | |||
3191 | .open > .dropdown-toggle.btn-success { | 3284 | .open > .dropdown-toggle.btn-success { |
3192 | color: #fff; | 3285 | color: #fff; |
3193 | background-color: #449d44; | 3286 | background-color: #449d44; |
3287 | background-image: none; | ||
3194 | border-color: #398439; | 3288 | border-color: #398439; |
3195 | } | 3289 | } |
3196 | .btn-success:active:hover, | 3290 | .btn-success:active:hover, |
@@ -3206,11 +3300,6 @@ fieldset[disabled] .btn-primary.focus { | |||
3206 | background-color: #398439; | 3300 | background-color: #398439; |
3207 | border-color: #255625; | 3301 | border-color: #255625; |
3208 | } | 3302 | } |
3209 | .btn-success:active, | ||
3210 | .btn-success.active, | ||
3211 | .open > .dropdown-toggle.btn-success { | ||
3212 | background-image: none; | ||
3213 | } | ||
3214 | .btn-success.disabled:hover, | 3303 | .btn-success.disabled:hover, |
3215 | .btn-success[disabled]:hover, | 3304 | .btn-success[disabled]:hover, |
3216 | fieldset[disabled] .btn-success:hover, | 3305 | fieldset[disabled] .btn-success:hover, |
@@ -3248,6 +3337,7 @@ fieldset[disabled] .btn-success.focus { | |||
3248 | .open > .dropdown-toggle.btn-info { | 3337 | .open > .dropdown-toggle.btn-info { |
3249 | color: #fff; | 3338 | color: #fff; |
3250 | background-color: #31b0d5; | 3339 | background-color: #31b0d5; |
3340 | background-image: none; | ||
3251 | border-color: #269abc; | 3341 | border-color: #269abc; |
3252 | } | 3342 | } |
3253 | .btn-info:active:hover, | 3343 | .btn-info:active:hover, |
@@ -3263,11 +3353,6 @@ fieldset[disabled] .btn-success.focus { | |||
3263 | background-color: #269abc; | 3353 | background-color: #269abc; |
3264 | border-color: #1b6d85; | 3354 | border-color: #1b6d85; |
3265 | } | 3355 | } |
3266 | .btn-info:active, | ||
3267 | .btn-info.active, | ||
3268 | .open > .dropdown-toggle.btn-info { | ||
3269 | background-image: none; | ||
3270 | } | ||
3271 | .btn-info.disabled:hover, | 3356 | .btn-info.disabled:hover, |
3272 | .btn-info[disabled]:hover, | 3357 | .btn-info[disabled]:hover, |
3273 | fieldset[disabled] .btn-info:hover, | 3358 | fieldset[disabled] .btn-info:hover, |
@@ -3305,6 +3390,7 @@ fieldset[disabled] .btn-info.focus { | |||
3305 | .open > .dropdown-toggle.btn-warning { | 3390 | .open > .dropdown-toggle.btn-warning { |
3306 | color: #fff; | 3391 | color: #fff; |
3307 | background-color: #ec971f; | 3392 | background-color: #ec971f; |
3393 | background-image: none; | ||
3308 | border-color: #d58512; | 3394 | border-color: #d58512; |
3309 | } | 3395 | } |
3310 | .btn-warning:active:hover, | 3396 | .btn-warning:active:hover, |
@@ -3320,11 +3406,6 @@ fieldset[disabled] .btn-info.focus { | |||
3320 | background-color: #d58512; | 3406 | background-color: #d58512; |
3321 | border-color: #985f0d; | 3407 | border-color: #985f0d; |
3322 | } | 3408 | } |
3323 | .btn-warning:active, | ||
3324 | .btn-warning.active, | ||
3325 | .open > .dropdown-toggle.btn-warning { | ||
3326 | background-image: none; | ||
3327 | } | ||
3328 | .btn-warning.disabled:hover, | 3409 | .btn-warning.disabled:hover, |
3329 | .btn-warning[disabled]:hover, | 3410 | .btn-warning[disabled]:hover, |
3330 | fieldset[disabled] .btn-warning:hover, | 3411 | fieldset[disabled] .btn-warning:hover, |
@@ -3362,6 +3443,7 @@ fieldset[disabled] .btn-warning.focus { | |||
3362 | .open > .dropdown-toggle.btn-danger { | 3443 | .open > .dropdown-toggle.btn-danger { |
3363 | color: #fff; | 3444 | color: #fff; |
3364 | background-color: #c9302c; | 3445 | background-color: #c9302c; |
3446 | background-image: none; | ||
3365 | border-color: #ac2925; | 3447 | border-color: #ac2925; |
3366 | } | 3448 | } |
3367 | .btn-danger:active:hover, | 3449 | .btn-danger:active:hover, |
@@ -3377,11 +3459,6 @@ fieldset[disabled] .btn-warning.focus { | |||
3377 | background-color: #ac2925; | 3459 | background-color: #ac2925; |
3378 | border-color: #761c19; | 3460 | border-color: #761c19; |
3379 | } | 3461 | } |
3380 | .btn-danger:active, | ||
3381 | .btn-danger.active, | ||
3382 | .open > .dropdown-toggle.btn-danger { | ||
3383 | background-image: none; | ||
3384 | } | ||
3385 | .btn-danger.disabled:hover, | 3462 | .btn-danger.disabled:hover, |
3386 | .btn-danger[disabled]:hover, | 3463 | .btn-danger[disabled]:hover, |
3387 | fieldset[disabled] .btn-danger:hover, | 3464 | fieldset[disabled] .btn-danger:hover, |
@@ -3399,7 +3476,7 @@ fieldset[disabled] .btn-danger.focus { | |||
3399 | background-color: #fff; | 3476 | background-color: #fff; |
3400 | } | 3477 | } |
3401 | .btn-link { | 3478 | .btn-link { |
3402 | font-weight: normal; | 3479 | font-weight: 400; |
3403 | color: #337ab7; | 3480 | color: #337ab7; |
3404 | border-radius: 0; | 3481 | border-radius: 0; |
3405 | } | 3482 | } |
@@ -3410,7 +3487,7 @@ fieldset[disabled] .btn-danger.focus { | |||
3410 | fieldset[disabled] .btn-link { | 3487 | fieldset[disabled] .btn-link { |
3411 | background-color: transparent; | 3488 | background-color: transparent; |
3412 | -webkit-box-shadow: none; | 3489 | -webkit-box-shadow: none; |
3413 | box-shadow: none; | 3490 | box-shadow: none; |
3414 | } | 3491 | } |
3415 | .btn-link, | 3492 | .btn-link, |
3416 | .btn-link:hover, | 3493 | .btn-link:hover, |
@@ -3428,7 +3505,7 @@ fieldset[disabled] .btn-link { | |||
3428 | fieldset[disabled] .btn-link:hover, | 3505 | fieldset[disabled] .btn-link:hover, |
3429 | .btn-link[disabled]:focus, | 3506 | .btn-link[disabled]:focus, |
3430 | fieldset[disabled] .btn-link:focus { | 3507 | fieldset[disabled] .btn-link:focus { |
3431 | color: #777; | 3508 | color: #777777; |
3432 | text-decoration: none; | 3509 | text-decoration: none; |
3433 | } | 3510 | } |
3434 | .btn-lg, | 3511 | .btn-lg, |
@@ -3466,9 +3543,9 @@ input[type="button"].btn-block { | |||
3466 | } | 3543 | } |
3467 | .fade { | 3544 | .fade { |
3468 | opacity: 0; | 3545 | opacity: 0; |
3469 | -webkit-transition: opacity .15s linear; | 3546 | -webkit-transition: opacity 0.15s linear; |
3470 | -o-transition: opacity .15s linear; | 3547 | -o-transition: opacity 0.15s linear; |
3471 | transition: opacity .15s linear; | 3548 | transition: opacity 0.15s linear; |
3472 | } | 3549 | } |
3473 | .fade.in { | 3550 | .fade.in { |
3474 | opacity: 1; | 3551 | opacity: 1; |
@@ -3489,15 +3566,15 @@ tbody.collapse.in { | |||
3489 | position: relative; | 3566 | position: relative; |
3490 | height: 0; | 3567 | height: 0; |
3491 | overflow: hidden; | 3568 | overflow: hidden; |
3492 | -webkit-transition-timing-function: ease; | ||
3493 | -o-transition-timing-function: ease; | ||
3494 | transition-timing-function: ease; | ||
3495 | -webkit-transition-duration: .35s; | ||
3496 | -o-transition-duration: .35s; | ||
3497 | transition-duration: .35s; | ||
3498 | -webkit-transition-property: height, visibility; | 3569 | -webkit-transition-property: height, visibility; |
3499 | -o-transition-property: height, visibility; | 3570 | -o-transition-property: height, visibility; |
3500 | transition-property: height, visibility; | 3571 | transition-property: height, visibility; |
3572 | -webkit-transition-duration: 0.35s; | ||
3573 | -o-transition-duration: 0.35s; | ||
3574 | transition-duration: 0.35s; | ||
3575 | -webkit-transition-timing-function: ease; | ||
3576 | -o-transition-timing-function: ease; | ||
3577 | transition-timing-function: ease; | ||
3501 | } | 3578 | } |
3502 | .caret { | 3579 | .caret { |
3503 | display: inline-block; | 3580 | display: inline-block; |
@@ -3531,13 +3608,12 @@ tbody.collapse.in { | |||
3531 | text-align: left; | 3608 | text-align: left; |
3532 | list-style: none; | 3609 | list-style: none; |
3533 | background-color: #fff; | 3610 | background-color: #fff; |
3534 | -webkit-background-clip: padding-box; | 3611 | background-clip: padding-box; |
3535 | background-clip: padding-box; | ||
3536 | border: 1px solid #ccc; | 3612 | border: 1px solid #ccc; |
3537 | border: 1px solid rgba(0, 0, 0, .15); | 3613 | border: 1px solid rgba(0, 0, 0, 0.15); |
3538 | border-radius: 4px; | 3614 | border-radius: 4px; |
3539 | -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); | 3615 | -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); |
3540 | box-shadow: 0 6px 12px rgba(0, 0, 0, .175); | 3616 | box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); |
3541 | } | 3617 | } |
3542 | .dropdown-menu.pull-right { | 3618 | .dropdown-menu.pull-right { |
3543 | right: 0; | 3619 | right: 0; |
@@ -3553,9 +3629,9 @@ tbody.collapse.in { | |||
3553 | display: block; | 3629 | display: block; |
3554 | padding: 3px 20px; | 3630 | padding: 3px 20px; |
3555 | clear: both; | 3631 | clear: both; |
3556 | font-weight: normal; | 3632 | font-weight: 400; |
3557 | line-height: 1.42857143; | 3633 | line-height: 1.42857143; |
3558 | color: #333; | 3634 | color: #333333; |
3559 | white-space: nowrap; | 3635 | white-space: nowrap; |
3560 | } | 3636 | } |
3561 | .dropdown-menu > li > a:hover, | 3637 | .dropdown-menu > li > a:hover, |
@@ -3575,7 +3651,7 @@ tbody.collapse.in { | |||
3575 | .dropdown-menu > .disabled > a, | 3651 | .dropdown-menu > .disabled > a, |
3576 | .dropdown-menu > .disabled > a:hover, | 3652 | .dropdown-menu > .disabled > a:hover, |
3577 | .dropdown-menu > .disabled > a:focus { | 3653 | .dropdown-menu > .disabled > a:focus { |
3578 | color: #777; | 3654 | color: #777777; |
3579 | } | 3655 | } |
3580 | .dropdown-menu > .disabled > a:hover, | 3656 | .dropdown-menu > .disabled > a:hover, |
3581 | .dropdown-menu > .disabled > a:focus { | 3657 | .dropdown-menu > .disabled > a:focus { |
@@ -3604,7 +3680,7 @@ tbody.collapse.in { | |||
3604 | padding: 3px 20px; | 3680 | padding: 3px 20px; |
3605 | font-size: 12px; | 3681 | font-size: 12px; |
3606 | line-height: 1.42857143; | 3682 | line-height: 1.42857143; |
3607 | color: #777; | 3683 | color: #777777; |
3608 | white-space: nowrap; | 3684 | white-space: nowrap; |
3609 | } | 3685 | } |
3610 | .dropdown-backdrop { | 3686 | .dropdown-backdrop { |
@@ -3725,12 +3801,12 @@ tbody.collapse.in { | |||
3725 | padding-left: 12px; | 3801 | padding-left: 12px; |
3726 | } | 3802 | } |
3727 | .btn-group.open .dropdown-toggle { | 3803 | .btn-group.open .dropdown-toggle { |
3728 | -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); | 3804 | -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); |
3729 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); | 3805 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); |
3730 | } | 3806 | } |
3731 | .btn-group.open .dropdown-toggle.btn-link { | 3807 | .btn-group.open .dropdown-toggle.btn-link { |
3732 | -webkit-box-shadow: none; | 3808 | -webkit-box-shadow: none; |
3733 | box-shadow: none; | 3809 | box-shadow: none; |
3734 | } | 3810 | } |
3735 | .btn .caret { | 3811 | .btn .caret { |
3736 | margin-left: 0; | 3812 | margin-left: 0; |
@@ -3898,11 +3974,11 @@ select[multiple].input-group-sm > .input-group-btn > .btn { | |||
3898 | .input-group-addon { | 3974 | .input-group-addon { |
3899 | padding: 6px 12px; | 3975 | padding: 6px 12px; |
3900 | font-size: 14px; | 3976 | font-size: 14px; |
3901 | font-weight: normal; | 3977 | font-weight: 400; |
3902 | line-height: 1; | 3978 | line-height: 1; |
3903 | color: #555; | 3979 | color: #555555; |
3904 | text-align: center; | 3980 | text-align: center; |
3905 | background-color: #eee; | 3981 | background-color: #eeeeee; |
3906 | border: 1px solid #ccc; | 3982 | border: 1px solid #ccc; |
3907 | border-radius: 4px; | 3983 | border-radius: 4px; |
3908 | } | 3984 | } |
@@ -3988,14 +4064,14 @@ select[multiple].input-group-sm > .input-group-btn > .btn { | |||
3988 | .nav > li > a:hover, | 4064 | .nav > li > a:hover, |
3989 | .nav > li > a:focus { | 4065 | .nav > li > a:focus { |
3990 | text-decoration: none; | 4066 | text-decoration: none; |
3991 | background-color: #eee; | 4067 | background-color: #eeeeee; |
3992 | } | 4068 | } |
3993 | .nav > li.disabled > a { | 4069 | .nav > li.disabled > a { |
3994 | color: #777; | 4070 | color: #777777; |
3995 | } | 4071 | } |
3996 | .nav > li.disabled > a:hover, | 4072 | .nav > li.disabled > a:hover, |
3997 | .nav > li.disabled > a:focus { | 4073 | .nav > li.disabled > a:focus { |
3998 | color: #777; | 4074 | color: #777777; |
3999 | text-decoration: none; | 4075 | text-decoration: none; |
4000 | cursor: not-allowed; | 4076 | cursor: not-allowed; |
4001 | background-color: transparent; | 4077 | background-color: transparent; |
@@ -4003,7 +4079,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn { | |||
4003 | .nav .open > a, | 4079 | .nav .open > a, |
4004 | .nav .open > a:hover, | 4080 | .nav .open > a:hover, |
4005 | .nav .open > a:focus { | 4081 | .nav .open > a:focus { |
4006 | background-color: #eee; | 4082 | background-color: #eeeeee; |
4007 | border-color: #337ab7; | 4083 | border-color: #337ab7; |
4008 | } | 4084 | } |
4009 | .nav .nav-divider { | 4085 | .nav .nav-divider { |
@@ -4029,12 +4105,12 @@ select[multiple].input-group-sm > .input-group-btn > .btn { | |||
4029 | border-radius: 4px 4px 0 0; | 4105 | border-radius: 4px 4px 0 0; |
4030 | } | 4106 | } |
4031 | .nav-tabs > li > a:hover { | 4107 | .nav-tabs > li > a:hover { |
4032 | border-color: #eee #eee #ddd; | 4108 | border-color: #eeeeee #eeeeee #ddd; |
4033 | } | 4109 | } |
4034 | .nav-tabs > li.active > a, | 4110 | .nav-tabs > li.active > a, |
4035 | .nav-tabs > li.active > a:hover, | 4111 | .nav-tabs > li.active > a:hover, |
4036 | .nav-tabs > li.active > a:focus { | 4112 | .nav-tabs > li.active > a:focus { |
4037 | color: #555; | 4113 | color: #555555; |
4038 | cursor: default; | 4114 | cursor: default; |
4039 | background-color: #fff; | 4115 | background-color: #fff; |
4040 | border: 1px solid #ddd; | 4116 | border: 1px solid #ddd; |
@@ -4183,10 +4259,10 @@ select[multiple].input-group-sm > .input-group-btn > .btn { | |||
4183 | padding-right: 15px; | 4259 | padding-right: 15px; |
4184 | padding-left: 15px; | 4260 | padding-left: 15px; |
4185 | overflow-x: visible; | 4261 | overflow-x: visible; |
4186 | -webkit-overflow-scrolling: touch; | ||
4187 | border-top: 1px solid transparent; | 4262 | border-top: 1px solid transparent; |
4188 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); | 4263 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); |
4189 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); | 4264 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); |
4265 | -webkit-overflow-scrolling: touch; | ||
4190 | } | 4266 | } |
4191 | .navbar-collapse.in { | 4267 | .navbar-collapse.in { |
4192 | overflow-y: auto; | 4268 | overflow-y: auto; |
@@ -4196,7 +4272,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn { | |||
4196 | width: auto; | 4272 | width: auto; |
4197 | border-top: 0; | 4273 | border-top: 0; |
4198 | -webkit-box-shadow: none; | 4274 | -webkit-box-shadow: none; |
4199 | box-shadow: none; | 4275 | box-shadow: none; |
4200 | } | 4276 | } |
4201 | .navbar-collapse.collapse { | 4277 | .navbar-collapse.collapse { |
4202 | display: block !important; | 4278 | display: block !important; |
@@ -4214,6 +4290,13 @@ select[multiple].input-group-sm > .input-group-btn > .btn { | |||
4214 | padding-left: 0; | 4290 | padding-left: 0; |
4215 | } | 4291 | } |
4216 | } | 4292 | } |
4293 | .navbar-fixed-top, | ||
4294 | .navbar-fixed-bottom { | ||
4295 | position: fixed; | ||
4296 | right: 0; | ||
4297 | left: 0; | ||
4298 | z-index: 1030; | ||
4299 | } | ||
4217 | .navbar-fixed-top .navbar-collapse, | 4300 | .navbar-fixed-top .navbar-collapse, |
4218 | .navbar-fixed-bottom .navbar-collapse { | 4301 | .navbar-fixed-bottom .navbar-collapse { |
4219 | max-height: 340px; | 4302 | max-height: 340px; |
@@ -4224,6 +4307,21 @@ select[multiple].input-group-sm > .input-group-btn > .btn { | |||
4224 | max-height: 200px; | 4307 | max-height: 200px; |
4225 | } | 4308 | } |
4226 | } | 4309 | } |
4310 | @media (min-width: 768px) { | ||
4311 | .navbar-fixed-top, | ||
4312 | .navbar-fixed-bottom { | ||
4313 | border-radius: 0; | ||
4314 | } | ||
4315 | } | ||
4316 | .navbar-fixed-top { | ||
4317 | top: 0; | ||
4318 | border-width: 0 0 1px; | ||
4319 | } | ||
4320 | .navbar-fixed-bottom { | ||
4321 | bottom: 0; | ||
4322 | margin-bottom: 0; | ||
4323 | border-width: 1px 0 0; | ||
4324 | } | ||
4227 | .container > .navbar-header, | 4325 | .container > .navbar-header, |
4228 | .container-fluid > .navbar-header, | 4326 | .container-fluid > .navbar-header, |
4229 | .container > .navbar-collapse, | 4327 | .container > .navbar-collapse, |
@@ -4249,28 +4347,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn { | |||
4249 | border-radius: 0; | 4347 | border-radius: 0; |
4250 | } | 4348 | } |
4251 | } | 4349 | } |
4252 | .navbar-fixed-top, | ||
4253 | .navbar-fixed-bottom { | ||
4254 | position: fixed; | ||
4255 | right: 0; | ||
4256 | left: 0; | ||
4257 | z-index: 1030; | ||
4258 | } | ||
4259 | @media (min-width: 768px) { | ||
4260 | .navbar-fixed-top, | ||
4261 | .navbar-fixed-bottom { | ||
4262 | border-radius: 0; | ||
4263 | } | ||
4264 | } | ||
4265 | .navbar-fixed-top { | ||
4266 | top: 0; | ||
4267 | border-width: 0 0 1px; | ||
4268 | } | ||
4269 | .navbar-fixed-bottom { | ||
4270 | bottom: 0; | ||
4271 | margin-bottom: 0; | ||
4272 | border-width: 1px 0 0; | ||
4273 | } | ||
4274 | .navbar-brand { | 4350 | .navbar-brand { |
4275 | float: left; | 4351 | float: left; |
4276 | height: 50px; | 4352 | height: 50px; |
@@ -4295,8 +4371,8 @@ select[multiple].input-group-sm > .input-group-btn > .btn { | |||
4295 | position: relative; | 4371 | position: relative; |
4296 | float: right; | 4372 | float: right; |
4297 | padding: 9px 10px; | 4373 | padding: 9px 10px; |
4298 | margin-top: 8px; | ||
4299 | margin-right: 15px; | 4374 | margin-right: 15px; |
4375 | margin-top: 8px; | ||
4300 | margin-bottom: 8px; | 4376 | margin-bottom: 8px; |
4301 | background-color: transparent; | 4377 | background-color: transparent; |
4302 | background-image: none; | 4378 | background-image: none; |
@@ -4337,7 +4413,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn { | |||
4337 | background-color: transparent; | 4413 | background-color: transparent; |
4338 | border: 0; | 4414 | border: 0; |
4339 | -webkit-box-shadow: none; | 4415 | -webkit-box-shadow: none; |
4340 | box-shadow: none; | 4416 | box-shadow: none; |
4341 | } | 4417 | } |
4342 | .navbar-nav .open .dropdown-menu > li > a, | 4418 | .navbar-nav .open .dropdown-menu > li > a, |
4343 | .navbar-nav .open .dropdown-menu .dropdown-header { | 4419 | .navbar-nav .open .dropdown-menu .dropdown-header { |
@@ -4366,14 +4442,14 @@ select[multiple].input-group-sm > .input-group-btn > .btn { | |||
4366 | } | 4442 | } |
4367 | .navbar-form { | 4443 | .navbar-form { |
4368 | padding: 10px 15px; | 4444 | padding: 10px 15px; |
4369 | margin-top: 8px; | ||
4370 | margin-right: -15px; | 4445 | margin-right: -15px; |
4371 | margin-bottom: 8px; | ||
4372 | margin-left: -15px; | 4446 | margin-left: -15px; |
4373 | border-top: 1px solid transparent; | 4447 | border-top: 1px solid transparent; |
4374 | border-bottom: 1px solid transparent; | 4448 | border-bottom: 1px solid transparent; |
4375 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); | 4449 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); |
4376 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); | 4450 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); |
4451 | margin-top: 8px; | ||
4452 | margin-bottom: 8px; | ||
4377 | } | 4453 | } |
4378 | @media (min-width: 768px) { | 4454 | @media (min-width: 768px) { |
4379 | .navbar-form .form-group { | 4455 | .navbar-form .form-group { |
@@ -4442,7 +4518,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn { | |||
4442 | margin-left: 0; | 4518 | margin-left: 0; |
4443 | border: 0; | 4519 | border: 0; |
4444 | -webkit-box-shadow: none; | 4520 | -webkit-box-shadow: none; |
4445 | box-shadow: none; | 4521 | box-shadow: none; |
4446 | } | 4522 | } |
4447 | } | 4523 | } |
4448 | .navbar-nav > li > .dropdown-menu { | 4524 | .navbar-nav > li > .dropdown-menu { |
@@ -4527,20 +4603,6 @@ select[multiple].input-group-sm > .input-group-btn > .btn { | |||
4527 | color: #ccc; | 4603 | color: #ccc; |
4528 | background-color: transparent; | 4604 | background-color: transparent; |
4529 | } | 4605 | } |
4530 | .navbar-default .navbar-toggle { | ||
4531 | border-color: #ddd; | ||
4532 | } | ||
4533 | .navbar-default .navbar-toggle:hover, | ||
4534 | .navbar-default .navbar-toggle:focus { | ||
4535 | background-color: #ddd; | ||
4536 | } | ||
4537 | .navbar-default .navbar-toggle .icon-bar { | ||
4538 | background-color: #888; | ||
4539 | } | ||
4540 | .navbar-default .navbar-collapse, | ||
4541 | .navbar-default .navbar-form { | ||
4542 | border-color: #e7e7e7; | ||
4543 | } | ||
4544 | .navbar-default .navbar-nav > .open > a, | 4606 | .navbar-default .navbar-nav > .open > a, |
4545 | .navbar-default .navbar-nav > .open > a:hover, | 4607 | .navbar-default .navbar-nav > .open > a:hover, |
4546 | .navbar-default .navbar-nav > .open > a:focus { | 4608 | .navbar-default .navbar-nav > .open > a:focus { |
@@ -4569,6 +4631,20 @@ select[multiple].input-group-sm > .input-group-btn > .btn { | |||
4569 | background-color: transparent; | 4631 | background-color: transparent; |
4570 | } | 4632 | } |
4571 | } | 4633 | } |
4634 | .navbar-default .navbar-toggle { | ||
4635 | border-color: #ddd; | ||
4636 | } | ||
4637 | .navbar-default .navbar-toggle:hover, | ||
4638 | .navbar-default .navbar-toggle:focus { | ||
4639 | background-color: #ddd; | ||
4640 | } | ||
4641 | .navbar-default .navbar-toggle .icon-bar { | ||
4642 | background-color: #888; | ||
4643 | } | ||
4644 | .navbar-default .navbar-collapse, | ||
4645 | .navbar-default .navbar-form { | ||
4646 | border-color: #e7e7e7; | ||
4647 | } | ||
4572 | .navbar-default .navbar-link { | 4648 | .navbar-default .navbar-link { |
4573 | color: #777; | 4649 | color: #777; |
4574 | } | 4650 | } |
@@ -4623,20 +4699,6 @@ fieldset[disabled] .navbar-default .btn-link:focus { | |||
4623 | color: #444; | 4699 | color: #444; |
4624 | background-color: transparent; | 4700 | background-color: transparent; |
4625 | } | 4701 | } |
4626 | .navbar-inverse .navbar-toggle { | ||
4627 | border-color: #333; | ||
4628 | } | ||
4629 | .navbar-inverse .navbar-toggle:hover, | ||
4630 | .navbar-inverse .navbar-toggle:focus { | ||
4631 | background-color: #333; | ||
4632 | } | ||
4633 | .navbar-inverse .navbar-toggle .icon-bar { | ||
4634 | background-color: #fff; | ||
4635 | } | ||
4636 | .navbar-inverse .navbar-collapse, | ||
4637 | .navbar-inverse .navbar-form { | ||
4638 | border-color: #101010; | ||
4639 | } | ||
4640 | .navbar-inverse .navbar-nav > .open > a, | 4702 | .navbar-inverse .navbar-nav > .open > a, |
4641 | .navbar-inverse .navbar-nav > .open > a:hover, | 4703 | .navbar-inverse .navbar-nav > .open > a:hover, |
4642 | .navbar-inverse .navbar-nav > .open > a:focus { | 4704 | .navbar-inverse .navbar-nav > .open > a:focus { |
@@ -4671,6 +4733,20 @@ fieldset[disabled] .navbar-default .btn-link:focus { | |||
4671 | background-color: transparent; | 4733 | background-color: transparent; |
4672 | } | 4734 | } |
4673 | } | 4735 | } |
4736 | .navbar-inverse .navbar-toggle { | ||
4737 | border-color: #333; | ||
4738 | } | ||
4739 | .navbar-inverse .navbar-toggle:hover, | ||
4740 | .navbar-inverse .navbar-toggle:focus { | ||
4741 | background-color: #333; | ||
4742 | } | ||
4743 | .navbar-inverse .navbar-toggle .icon-bar { | ||
4744 | background-color: #fff; | ||
4745 | } | ||
4746 | .navbar-inverse .navbar-collapse, | ||
4747 | .navbar-inverse .navbar-form { | ||
4748 | border-color: #101010; | ||
4749 | } | ||
4674 | .navbar-inverse .navbar-link { | 4750 | .navbar-inverse .navbar-link { |
4675 | color: #9d9d9d; | 4751 | color: #9d9d9d; |
4676 | } | 4752 | } |
@@ -4706,7 +4782,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus { | |||
4706 | content: "/\00a0"; | 4782 | content: "/\00a0"; |
4707 | } | 4783 | } |
4708 | .breadcrumb > .active { | 4784 | .breadcrumb > .active { |
4709 | color: #777; | 4785 | color: #777777; |
4710 | } | 4786 | } |
4711 | .pagination { | 4787 | .pagination { |
4712 | display: inline-block; | 4788 | display: inline-block; |
@@ -4729,6 +4805,15 @@ fieldset[disabled] .navbar-inverse .btn-link:focus { | |||
4729 | background-color: #fff; | 4805 | background-color: #fff; |
4730 | border: 1px solid #ddd; | 4806 | border: 1px solid #ddd; |
4731 | } | 4807 | } |
4808 | .pagination > li > a:hover, | ||
4809 | .pagination > li > span:hover, | ||
4810 | .pagination > li > a:focus, | ||
4811 | .pagination > li > span:focus { | ||
4812 | z-index: 2; | ||
4813 | color: #23527c; | ||
4814 | background-color: #eeeeee; | ||
4815 | border-color: #ddd; | ||
4816 | } | ||
4732 | .pagination > li:first-child > a, | 4817 | .pagination > li:first-child > a, |
4733 | .pagination > li:first-child > span { | 4818 | .pagination > li:first-child > span { |
4734 | margin-left: 0; | 4819 | margin-left: 0; |
@@ -4740,15 +4825,6 @@ fieldset[disabled] .navbar-inverse .btn-link:focus { | |||
4740 | border-top-right-radius: 4px; | 4825 | border-top-right-radius: 4px; |
4741 | border-bottom-right-radius: 4px; | 4826 | border-bottom-right-radius: 4px; |
4742 | } | 4827 | } |
4743 | .pagination > li > a:hover, | ||
4744 | .pagination > li > span:hover, | ||
4745 | .pagination > li > a:focus, | ||
4746 | .pagination > li > span:focus { | ||
4747 | z-index: 2; | ||
4748 | color: #23527c; | ||
4749 | background-color: #eee; | ||
4750 | border-color: #ddd; | ||
4751 | } | ||
4752 | .pagination > .active > a, | 4828 | .pagination > .active > a, |
4753 | .pagination > .active > span, | 4829 | .pagination > .active > span, |
4754 | .pagination > .active > a:hover, | 4830 | .pagination > .active > a:hover, |
@@ -4767,7 +4843,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus { | |||
4767 | .pagination > .disabled > a, | 4843 | .pagination > .disabled > a, |
4768 | .pagination > .disabled > a:hover, | 4844 | .pagination > .disabled > a:hover, |
4769 | .pagination > .disabled > a:focus { | 4845 | .pagination > .disabled > a:focus { |
4770 | color: #777; | 4846 | color: #777777; |
4771 | cursor: not-allowed; | 4847 | cursor: not-allowed; |
4772 | background-color: #fff; | 4848 | background-color: #fff; |
4773 | border-color: #ddd; | 4849 | border-color: #ddd; |
@@ -4824,7 +4900,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus { | |||
4824 | .pager li > a:hover, | 4900 | .pager li > a:hover, |
4825 | .pager li > a:focus { | 4901 | .pager li > a:focus { |
4826 | text-decoration: none; | 4902 | text-decoration: none; |
4827 | background-color: #eee; | 4903 | background-color: #eeeeee; |
4828 | } | 4904 | } |
4829 | .pager .next > a, | 4905 | .pager .next > a, |
4830 | .pager .next > span { | 4906 | .pager .next > span { |
@@ -4838,21 +4914,21 @@ fieldset[disabled] .navbar-inverse .btn-link:focus { | |||
4838 | .pager .disabled > a:hover, | 4914 | .pager .disabled > a:hover, |
4839 | .pager .disabled > a:focus, | 4915 | .pager .disabled > a:focus, |
4840 | .pager .disabled > span { | 4916 | .pager .disabled > span { |
4841 | color: #777; | 4917 | color: #777777; |
4842 | cursor: not-allowed; | 4918 | cursor: not-allowed; |
4843 | background-color: #fff; | 4919 | background-color: #fff; |
4844 | } | 4920 | } |
4845 | .label { | 4921 | .label { |
4846 | display: inline; | 4922 | display: inline; |
4847 | padding: .2em .6em .3em; | 4923 | padding: 0.2em 0.6em 0.3em; |
4848 | font-size: 75%; | 4924 | font-size: 75%; |
4849 | font-weight: bold; | 4925 | font-weight: 700; |
4850 | line-height: 1; | 4926 | line-height: 1; |
4851 | color: #fff; | 4927 | color: #fff; |
4852 | text-align: center; | 4928 | text-align: center; |
4853 | white-space: nowrap; | 4929 | white-space: nowrap; |
4854 | vertical-align: baseline; | 4930 | vertical-align: baseline; |
4855 | border-radius: .25em; | 4931 | border-radius: 0.25em; |
4856 | } | 4932 | } |
4857 | a.label:hover, | 4933 | a.label:hover, |
4858 | a.label:focus { | 4934 | a.label:focus { |
@@ -4868,7 +4944,7 @@ a.label:focus { | |||
4868 | top: -1px; | 4944 | top: -1px; |
4869 | } | 4945 | } |
4870 | .label-default { | 4946 | .label-default { |
4871 | background-color: #777; | 4947 | background-color: #777777; |
4872 | } | 4948 | } |
4873 | .label-default[href]:hover, | 4949 | .label-default[href]:hover, |
4874 | .label-default[href]:focus { | 4950 | .label-default[href]:focus { |
@@ -4920,7 +4996,7 @@ a.label:focus { | |||
4920 | text-align: center; | 4996 | text-align: center; |
4921 | white-space: nowrap; | 4997 | white-space: nowrap; |
4922 | vertical-align: middle; | 4998 | vertical-align: middle; |
4923 | background-color: #777; | 4999 | background-color: #777777; |
4924 | border-radius: 10px; | 5000 | border-radius: 10px; |
4925 | } | 5001 | } |
4926 | .badge:empty { | 5002 | .badge:empty { |
@@ -4960,7 +5036,7 @@ a.badge:focus { | |||
4960 | padding-bottom: 30px; | 5036 | padding-bottom: 30px; |
4961 | margin-bottom: 30px; | 5037 | margin-bottom: 30px; |
4962 | color: inherit; | 5038 | color: inherit; |
4963 | background-color: #eee; | 5039 | background-color: #eeeeee; |
4964 | } | 5040 | } |
4965 | .jumbotron h1, | 5041 | .jumbotron h1, |
4966 | .jumbotron .h1 { | 5042 | .jumbotron .h1 { |
@@ -5006,9 +5082,9 @@ a.badge:focus { | |||
5006 | background-color: #fff; | 5082 | background-color: #fff; |
5007 | border: 1px solid #ddd; | 5083 | border: 1px solid #ddd; |
5008 | border-radius: 4px; | 5084 | border-radius: 4px; |
5009 | -webkit-transition: border .2s ease-in-out; | 5085 | -webkit-transition: border 0.2s ease-in-out; |
5010 | -o-transition: border .2s ease-in-out; | 5086 | -o-transition: border 0.2s ease-in-out; |
5011 | transition: border .2s ease-in-out; | 5087 | transition: border 0.2s ease-in-out; |
5012 | } | 5088 | } |
5013 | .thumbnail > img, | 5089 | .thumbnail > img, |
5014 | .thumbnail a > img { | 5090 | .thumbnail a > img { |
@@ -5022,7 +5098,7 @@ a.thumbnail.active { | |||
5022 | } | 5098 | } |
5023 | .thumbnail .caption { | 5099 | .thumbnail .caption { |
5024 | padding: 9px; | 5100 | padding: 9px; |
5025 | color: #333; | 5101 | color: #333333; |
5026 | } | 5102 | } |
5027 | .alert { | 5103 | .alert { |
5028 | padding: 15px; | 5104 | padding: 15px; |
@@ -5129,69 +5205,69 @@ a.thumbnail.active { | |||
5129 | overflow: hidden; | 5205 | overflow: hidden; |
5130 | background-color: #f5f5f5; | 5206 | background-color: #f5f5f5; |
5131 | border-radius: 4px; | 5207 | border-radius: 4px; |
5132 | -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); | 5208 | -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); |
5133 | box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); | 5209 | box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); |
5134 | } | 5210 | } |
5135 | .progress-bar { | 5211 | .progress-bar { |
5136 | float: left; | 5212 | float: left; |
5137 | width: 0; | 5213 | width: 0%; |
5138 | height: 100%; | 5214 | height: 100%; |
5139 | font-size: 12px; | 5215 | font-size: 12px; |
5140 | line-height: 20px; | 5216 | line-height: 20px; |
5141 | color: #fff; | 5217 | color: #fff; |
5142 | text-align: center; | 5218 | text-align: center; |
5143 | background-color: #337ab7; | 5219 | background-color: #337ab7; |
5144 | -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); | 5220 | -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); |
5145 | box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); | 5221 | box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); |
5146 | -webkit-transition: width .6s ease; | 5222 | -webkit-transition: width 0.6s ease; |
5147 | -o-transition: width .6s ease; | 5223 | -o-transition: width 0.6s ease; |
5148 | transition: width .6s ease; | 5224 | transition: width 0.6s ease; |
5149 | } | 5225 | } |
5150 | .progress-striped .progress-bar, | 5226 | .progress-striped .progress-bar, |
5151 | .progress-bar-striped { | 5227 | .progress-bar-striped { |
5152 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); | 5228 | 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); |
5153 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); | 5229 | 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); |
5154 | background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); | 5230 | 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); |
5155 | -webkit-background-size: 40px 40px; | 5231 | -webkit-background-size: 40px 40px; |
5156 | background-size: 40px 40px; | 5232 | background-size: 40px 40px; |
5157 | } | 5233 | } |
5158 | .progress.active .progress-bar, | 5234 | .progress.active .progress-bar, |
5159 | .progress-bar.active { | 5235 | .progress-bar.active { |
5160 | -webkit-animation: progress-bar-stripes 2s linear infinite; | 5236 | -webkit-animation: progress-bar-stripes 2s linear infinite; |
5161 | -o-animation: progress-bar-stripes 2s linear infinite; | 5237 | -o-animation: progress-bar-stripes 2s linear infinite; |
5162 | animation: progress-bar-stripes 2s linear infinite; | 5238 | animation: progress-bar-stripes 2s linear infinite; |
5163 | } | 5239 | } |
5164 | .progress-bar-success { | 5240 | .progress-bar-success { |
5165 | background-color: #5cb85c; | 5241 | background-color: #5cb85c; |
5166 | } | 5242 | } |
5167 | .progress-striped .progress-bar-success { | 5243 | .progress-striped .progress-bar-success { |
5168 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); | 5244 | 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); |
5169 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); | 5245 | 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); |
5170 | background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); | 5246 | 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); |
5171 | } | 5247 | } |
5172 | .progress-bar-info { | 5248 | .progress-bar-info { |
5173 | background-color: #5bc0de; | 5249 | background-color: #5bc0de; |
5174 | } | 5250 | } |
5175 | .progress-striped .progress-bar-info { | 5251 | .progress-striped .progress-bar-info { |
5176 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); | 5252 | 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); |
5177 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); | 5253 | 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); |
5178 | background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); | 5254 | 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); |
5179 | } | 5255 | } |
5180 | .progress-bar-warning { | 5256 | .progress-bar-warning { |
5181 | background-color: #f0ad4e; | 5257 | background-color: #f0ad4e; |
5182 | } | 5258 | } |
5183 | .progress-striped .progress-bar-warning { | 5259 | .progress-striped .progress-bar-warning { |
5184 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); | 5260 | 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); |
5185 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); | 5261 | 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); |
5186 | background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); | 5262 | 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); |
5187 | } | 5263 | } |
5188 | .progress-bar-danger { | 5264 | .progress-bar-danger { |
5189 | background-color: #d9534f; | 5265 | background-color: #d9534f; |
5190 | } | 5266 | } |
5191 | .progress-striped .progress-bar-danger { | 5267 | .progress-striped .progress-bar-danger { |
5192 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); | 5268 | 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); |
5193 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); | 5269 | 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); |
5194 | background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); | 5270 | 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); |
5195 | } | 5271 | } |
5196 | .media { | 5272 | .media { |
5197 | margin-top: 15px; | 5273 | margin-top: 15px; |
@@ -5262,32 +5338,12 @@ a.thumbnail.active { | |||
5262 | border-bottom-right-radius: 4px; | 5338 | border-bottom-right-radius: 4px; |
5263 | border-bottom-left-radius: 4px; | 5339 | border-bottom-left-radius: 4px; |
5264 | } | 5340 | } |
5265 | a.list-group-item, | ||
5266 | button.list-group-item { | ||
5267 | color: #555; | ||
5268 | } | ||
5269 | a.list-group-item .list-group-item-heading, | ||
5270 | button.list-group-item .list-group-item-heading { | ||
5271 | color: #333; | ||
5272 | } | ||
5273 | a.list-group-item:hover, | ||
5274 | button.list-group-item:hover, | ||
5275 | a.list-group-item:focus, | ||
5276 | button.list-group-item:focus { | ||
5277 | color: #555; | ||
5278 | text-decoration: none; | ||
5279 | background-color: #f5f5f5; | ||
5280 | } | ||
5281 | button.list-group-item { | ||
5282 | width: 100%; | ||
5283 | text-align: left; | ||
5284 | } | ||
5285 | .list-group-item.disabled, | 5341 | .list-group-item.disabled, |
5286 | .list-group-item.disabled:hover, | 5342 | .list-group-item.disabled:hover, |
5287 | .list-group-item.disabled:focus { | 5343 | .list-group-item.disabled:focus { |
5288 | color: #777; | 5344 | color: #777777; |
5289 | cursor: not-allowed; | 5345 | cursor: not-allowed; |
5290 | background-color: #eee; | 5346 | background-color: #eeeeee; |
5291 | } | 5347 | } |
5292 | .list-group-item.disabled .list-group-item-heading, | 5348 | .list-group-item.disabled .list-group-item-heading, |
5293 | .list-group-item.disabled:hover .list-group-item-heading, | 5349 | .list-group-item.disabled:hover .list-group-item-heading, |
@@ -5297,7 +5353,7 @@ button.list-group-item { | |||
5297 | .list-group-item.disabled .list-group-item-text, | 5353 | .list-group-item.disabled .list-group-item-text, |
5298 | .list-group-item.disabled:hover .list-group-item-text, | 5354 | .list-group-item.disabled:hover .list-group-item-text, |
5299 | .list-group-item.disabled:focus .list-group-item-text { | 5355 | .list-group-item.disabled:focus .list-group-item-text { |
5300 | color: #777; | 5356 | color: #777777; |
5301 | } | 5357 | } |
5302 | .list-group-item.active, | 5358 | .list-group-item.active, |
5303 | .list-group-item.active:hover, | 5359 | .list-group-item.active:hover, |
@@ -5323,6 +5379,26 @@ button.list-group-item { | |||
5323 | .list-group-item.active:focus .list-group-item-text { | 5379 | .list-group-item.active:focus .list-group-item-text { |
5324 | color: #c7ddef; | 5380 | color: #c7ddef; |
5325 | } | 5381 | } |
5382 | a.list-group-item, | ||
5383 | button.list-group-item { | ||
5384 | color: #555; | ||
5385 | } | ||
5386 | a.list-group-item .list-group-item-heading, | ||
5387 | button.list-group-item .list-group-item-heading { | ||
5388 | color: #333; | ||
5389 | } | ||
5390 | a.list-group-item:hover, | ||
5391 | button.list-group-item:hover, | ||
5392 | a.list-group-item:focus, | ||
5393 | button.list-group-item:focus { | ||
5394 | color: #555; | ||
5395 | text-decoration: none; | ||
5396 | background-color: #f5f5f5; | ||
5397 | } | ||
5398 | button.list-group-item { | ||
5399 | width: 100%; | ||
5400 | text-align: left; | ||
5401 | } | ||
5326 | .list-group-item-success { | 5402 | .list-group-item-success { |
5327 | color: #3c763d; | 5403 | color: #3c763d; |
5328 | background-color: #dff0d8; | 5404 | background-color: #dff0d8; |
@@ -5452,8 +5528,8 @@ button.list-group-item-danger.active:focus { | |||
5452 | background-color: #fff; | 5528 | background-color: #fff; |
5453 | border: 1px solid transparent; | 5529 | border: 1px solid transparent; |
5454 | border-radius: 4px; | 5530 | border-radius: 4px; |
5455 | -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); | 5531 | -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); |
5456 | box-shadow: 0 1px 1px rgba(0, 0, 0, .05); | 5532 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); |
5457 | } | 5533 | } |
5458 | .panel-body { | 5534 | .panel-body { |
5459 | padding: 15px; | 5535 | padding: 15px; |
@@ -5686,7 +5762,7 @@ button.list-group-item-danger.active:focus { | |||
5686 | border-color: #ddd; | 5762 | border-color: #ddd; |
5687 | } | 5763 | } |
5688 | .panel-default > .panel-heading { | 5764 | .panel-default > .panel-heading { |
5689 | color: #333; | 5765 | color: #333333; |
5690 | background-color: #f5f5f5; | 5766 | background-color: #f5f5f5; |
5691 | border-color: #ddd; | 5767 | border-color: #ddd; |
5692 | } | 5768 | } |
@@ -5695,7 +5771,7 @@ button.list-group-item-danger.active:focus { | |||
5695 | } | 5771 | } |
5696 | .panel-default > .panel-heading .badge { | 5772 | .panel-default > .panel-heading .badge { |
5697 | color: #f5f5f5; | 5773 | color: #f5f5f5; |
5698 | background-color: #333; | 5774 | background-color: #333333; |
5699 | } | 5775 | } |
5700 | .panel-default > .panel-footer + .panel-collapse > .panel-body { | 5776 | .panel-default > .panel-footer + .panel-collapse > .panel-body { |
5701 | border-bottom-color: #ddd; | 5777 | border-bottom-color: #ddd; |
@@ -5823,12 +5899,12 @@ button.list-group-item-danger.active:focus { | |||
5823 | background-color: #f5f5f5; | 5899 | background-color: #f5f5f5; |
5824 | border: 1px solid #e3e3e3; | 5900 | border: 1px solid #e3e3e3; |
5825 | border-radius: 4px; | 5901 | border-radius: 4px; |
5826 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); | 5902 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); |
5827 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); | 5903 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); |
5828 | } | 5904 | } |
5829 | .well blockquote { | 5905 | .well blockquote { |
5830 | border-color: #ddd; | 5906 | border-color: #ddd; |
5831 | border-color: rgba(0, 0, 0, .15); | 5907 | border-color: rgba(0, 0, 0, 0.15); |
5832 | } | 5908 | } |
5833 | .well-lg { | 5909 | .well-lg { |
5834 | padding: 24px; | 5910 | padding: 24px; |
@@ -5846,7 +5922,7 @@ button.list-group-item-danger.active:focus { | |||
5846 | color: #000; | 5922 | color: #000; |
5847 | text-shadow: 0 1px 0 #fff; | 5923 | text-shadow: 0 1px 0 #fff; |
5848 | filter: alpha(opacity=20); | 5924 | filter: alpha(opacity=20); |
5849 | opacity: .2; | 5925 | opacity: 0.2; |
5850 | } | 5926 | } |
5851 | .close:hover, | 5927 | .close:hover, |
5852 | .close:focus { | 5928 | .close:focus { |
@@ -5854,14 +5930,16 @@ button.list-group-item-danger.active:focus { | |||
5854 | text-decoration: none; | 5930 | text-decoration: none; |
5855 | cursor: pointer; | 5931 | cursor: pointer; |
5856 | filter: alpha(opacity=50); | 5932 | filter: alpha(opacity=50); |
5857 | opacity: .5; | 5933 | opacity: 0.5; |
5858 | } | 5934 | } |
5859 | button.close { | 5935 | button.close { |
5860 | -webkit-appearance: none; | ||
5861 | padding: 0; | 5936 | padding: 0; |
5862 | cursor: pointer; | 5937 | cursor: pointer; |
5863 | background: transparent; | 5938 | background: transparent; |
5864 | border: 0; | 5939 | border: 0; |
5940 | -webkit-appearance: none; | ||
5941 | -moz-appearance: none; | ||
5942 | appearance: none; | ||
5865 | } | 5943 | } |
5866 | .modal-open { | 5944 | .modal-open { |
5867 | overflow: hidden; | 5945 | overflow: hidden; |
@@ -5879,19 +5957,21 @@ button.close { | |||
5879 | outline: 0; | 5957 | outline: 0; |
5880 | } | 5958 | } |
5881 | .modal.fade .modal-dialog { | 5959 | .modal.fade .modal-dialog { |
5882 | -webkit-transition: -webkit-transform .3s ease-out; | ||
5883 | -o-transition: -o-transform .3s ease-out; | ||
5884 | transition: transform .3s ease-out; | ||
5885 | -webkit-transform: translate(0, -25%); | 5960 | -webkit-transform: translate(0, -25%); |
5886 | -ms-transform: translate(0, -25%); | 5961 | -ms-transform: translate(0, -25%); |
5887 | -o-transform: translate(0, -25%); | 5962 | -o-transform: translate(0, -25%); |
5888 | transform: translate(0, -25%); | 5963 | transform: translate(0, -25%); |
5964 | -webkit-transition: -webkit-transform 0.3s ease-out; | ||
5965 | -o-transition: -o-transform 0.3s ease-out; | ||
5966 | transition: -webkit-transform 0.3s ease-out; | ||
5967 | transition: transform 0.3s ease-out; | ||
5968 | transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out; | ||
5889 | } | 5969 | } |
5890 | .modal.in .modal-dialog { | 5970 | .modal.in .modal-dialog { |
5891 | -webkit-transform: translate(0, 0); | 5971 | -webkit-transform: translate(0, 0); |
5892 | -ms-transform: translate(0, 0); | 5972 | -ms-transform: translate(0, 0); |
5893 | -o-transform: translate(0, 0); | 5973 | -o-transform: translate(0, 0); |
5894 | transform: translate(0, 0); | 5974 | transform: translate(0, 0); |
5895 | } | 5975 | } |
5896 | .modal-open .modal { | 5976 | .modal-open .modal { |
5897 | overflow-x: hidden; | 5977 | overflow-x: hidden; |
@@ -5905,14 +5985,13 @@ button.close { | |||
5905 | .modal-content { | 5985 | .modal-content { |
5906 | position: relative; | 5986 | position: relative; |
5907 | background-color: #fff; | 5987 | background-color: #fff; |
5908 | -webkit-background-clip: padding-box; | 5988 | background-clip: padding-box; |
5909 | background-clip: padding-box; | ||
5910 | border: 1px solid #999; | 5989 | border: 1px solid #999; |
5911 | border: 1px solid rgba(0, 0, 0, .2); | 5990 | border: 1px solid rgba(0, 0, 0, 0.2); |
5912 | border-radius: 6px; | 5991 | border-radius: 6px; |
5992 | -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); | ||
5993 | box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); | ||
5913 | outline: 0; | 5994 | outline: 0; |
5914 | -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5); | ||
5915 | box-shadow: 0 3px 9px rgba(0, 0, 0, .5); | ||
5916 | } | 5995 | } |
5917 | .modal-backdrop { | 5996 | .modal-backdrop { |
5918 | position: fixed; | 5997 | position: fixed; |
@@ -5929,7 +6008,7 @@ button.close { | |||
5929 | } | 6008 | } |
5930 | .modal-backdrop.in { | 6009 | .modal-backdrop.in { |
5931 | filter: alpha(opacity=50); | 6010 | filter: alpha(opacity=50); |
5932 | opacity: .5; | 6011 | opacity: 0.5; |
5933 | } | 6012 | } |
5934 | .modal-header { | 6013 | .modal-header { |
5935 | padding: 15px; | 6014 | padding: 15px; |
@@ -5974,8 +6053,8 @@ button.close { | |||
5974 | margin: 30px auto; | 6053 | margin: 30px auto; |
5975 | } | 6054 | } |
5976 | .modal-content { | 6055 | .modal-content { |
5977 | -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); | 6056 | -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); |
5978 | box-shadow: 0 5px 15px rgba(0, 0, 0, .5); | 6057 | box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); |
5979 | } | 6058 | } |
5980 | .modal-sm { | 6059 | .modal-sm { |
5981 | width: 300px; | 6060 | width: 300px; |
@@ -5991,10 +6070,10 @@ button.close { | |||
5991 | z-index: 1070; | 6070 | z-index: 1070; |
5992 | display: block; | 6071 | display: block; |
5993 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | 6072 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
5994 | font-size: 12px; | ||
5995 | font-style: normal; | 6073 | font-style: normal; |
5996 | font-weight: normal; | 6074 | font-weight: 400; |
5997 | line-height: 1.42857143; | 6075 | line-height: 1.42857143; |
6076 | line-break: auto; | ||
5998 | text-align: left; | 6077 | text-align: left; |
5999 | text-align: start; | 6078 | text-align: start; |
6000 | text-decoration: none; | 6079 | text-decoration: none; |
@@ -6005,14 +6084,13 @@ button.close { | |||
6005 | word-spacing: normal; | 6084 | word-spacing: normal; |
6006 | word-wrap: normal; | 6085 | word-wrap: normal; |
6007 | white-space: normal; | 6086 | white-space: normal; |
6087 | font-size: 12px; | ||
6008 | filter: alpha(opacity=0); | 6088 | filter: alpha(opacity=0); |
6009 | opacity: 0; | 6089 | opacity: 0; |
6010 | |||
6011 | line-break: auto; | ||
6012 | } | 6090 | } |
6013 | .tooltip.in { | 6091 | .tooltip.in { |
6014 | filter: alpha(opacity=90); | 6092 | filter: alpha(opacity=90); |
6015 | opacity: .9; | 6093 | opacity: 0.9; |
6016 | } | 6094 | } |
6017 | .tooltip.top { | 6095 | .tooltip.top { |
6018 | padding: 5px 0; | 6096 | padding: 5px 0; |
@@ -6030,21 +6108,6 @@ button.close { | |||
6030 | padding: 0 5px; | 6108 | padding: 0 5px; |
6031 | margin-left: -3px; | 6109 | margin-left: -3px; |
6032 | } | 6110 | } |
6033 | .tooltip-inner { | ||
6034 | max-width: 200px; | ||
6035 | padding: 3px 8px; | ||
6036 | color: #fff; | ||
6037 | text-align: center; | ||
6038 | background-color: #000; | ||
6039 | border-radius: 4px; | ||
6040 | } | ||
6041 | .tooltip-arrow { | ||
6042 | position: absolute; | ||
6043 | width: 0; | ||
6044 | height: 0; | ||
6045 | border-color: transparent; | ||
6046 | border-style: solid; | ||
6047 | } | ||
6048 | .tooltip.top .tooltip-arrow { | 6111 | .tooltip.top .tooltip-arrow { |
6049 | bottom: 0; | 6112 | bottom: 0; |
6050 | left: 50%; | 6113 | left: 50%; |
@@ -6101,6 +6164,21 @@ button.close { | |||
6101 | border-width: 0 5px 5px; | 6164 | border-width: 0 5px 5px; |
6102 | border-bottom-color: #000; | 6165 | border-bottom-color: #000; |
6103 | } | 6166 | } |
6167 | .tooltip-inner { | ||
6168 | max-width: 200px; | ||
6169 | padding: 3px 8px; | ||
6170 | color: #fff; | ||
6171 | text-align: center; | ||
6172 | background-color: #000; | ||
6173 | border-radius: 4px; | ||
6174 | } | ||
6175 | .tooltip-arrow { | ||
6176 | position: absolute; | ||
6177 | width: 0; | ||
6178 | height: 0; | ||
6179 | border-color: transparent; | ||
6180 | border-style: solid; | ||
6181 | } | ||
6104 | .popover { | 6182 | .popover { |
6105 | position: absolute; | 6183 | position: absolute; |
6106 | top: 0; | 6184 | top: 0; |
@@ -6110,10 +6188,10 @@ button.close { | |||
6110 | max-width: 276px; | 6188 | max-width: 276px; |
6111 | padding: 1px; | 6189 | padding: 1px; |
6112 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | 6190 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
6113 | font-size: 14px; | ||
6114 | font-style: normal; | 6191 | font-style: normal; |
6115 | font-weight: normal; | 6192 | font-weight: 400; |
6116 | line-height: 1.42857143; | 6193 | line-height: 1.42857143; |
6194 | line-break: auto; | ||
6117 | text-align: left; | 6195 | text-align: left; |
6118 | text-align: start; | 6196 | text-align: start; |
6119 | text-decoration: none; | 6197 | text-decoration: none; |
@@ -6124,16 +6202,14 @@ button.close { | |||
6124 | word-spacing: normal; | 6202 | word-spacing: normal; |
6125 | word-wrap: normal; | 6203 | word-wrap: normal; |
6126 | white-space: normal; | 6204 | white-space: normal; |
6205 | font-size: 14px; | ||
6127 | background-color: #fff; | 6206 | background-color: #fff; |
6128 | -webkit-background-clip: padding-box; | 6207 | background-clip: padding-box; |
6129 | background-clip: padding-box; | ||
6130 | border: 1px solid #ccc; | 6208 | border: 1px solid #ccc; |
6131 | border: 1px solid rgba(0, 0, 0, .2); | 6209 | border: 1px solid rgba(0, 0, 0, 0.2); |
6132 | border-radius: 6px; | 6210 | border-radius: 6px; |
6133 | -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); | 6211 | -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); |
6134 | box-shadow: 0 5px 10px rgba(0, 0, 0, .2); | 6212 | box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); |
6135 | |||
6136 | line-break: auto; | ||
6137 | } | 6213 | } |
6138 | .popover.top { | 6214 | .popover.top { |
6139 | margin-top: -10px; | 6215 | margin-top: -10px; |
@@ -6147,16 +6223,8 @@ button.close { | |||
6147 | .popover.left { | 6223 | .popover.left { |
6148 | margin-left: -10px; | 6224 | margin-left: -10px; |
6149 | } | 6225 | } |
6150 | .popover-title { | 6226 | .popover > .arrow { |
6151 | padding: 8px 14px; | 6227 | border-width: 11px; |
6152 | margin: 0; | ||
6153 | font-size: 14px; | ||
6154 | background-color: #f7f7f7; | ||
6155 | border-bottom: 1px solid #ebebeb; | ||
6156 | border-radius: 5px 5px 0 0; | ||
6157 | } | ||
6158 | .popover-content { | ||
6159 | padding: 9px 14px; | ||
6160 | } | 6228 | } |
6161 | .popover > .arrow, | 6229 | .popover > .arrow, |
6162 | .popover > .arrow:after { | 6230 | .popover > .arrow:after { |
@@ -6167,9 +6235,6 @@ button.close { | |||
6167 | border-color: transparent; | 6235 | border-color: transparent; |
6168 | border-style: solid; | 6236 | border-style: solid; |
6169 | } | 6237 | } |
6170 | .popover > .arrow { | ||
6171 | border-width: 11px; | ||
6172 | } | ||
6173 | .popover > .arrow:after { | 6238 | .popover > .arrow:after { |
6174 | content: ""; | 6239 | content: ""; |
6175 | border-width: 10px; | 6240 | border-width: 10px; |
@@ -6178,8 +6243,8 @@ button.close { | |||
6178 | bottom: -11px; | 6243 | bottom: -11px; |
6179 | left: 50%; | 6244 | left: 50%; |
6180 | margin-left: -11px; | 6245 | margin-left: -11px; |
6181 | border-top-color: #999; | 6246 | border-top-color: #999999; |
6182 | border-top-color: rgba(0, 0, 0, .25); | 6247 | border-top-color: rgba(0, 0, 0, 0.25); |
6183 | border-bottom-width: 0; | 6248 | border-bottom-width: 0; |
6184 | } | 6249 | } |
6185 | .popover.top > .arrow:after { | 6250 | .popover.top > .arrow:after { |
@@ -6193,8 +6258,8 @@ button.close { | |||
6193 | top: 50%; | 6258 | top: 50%; |
6194 | left: -11px; | 6259 | left: -11px; |
6195 | margin-top: -11px; | 6260 | margin-top: -11px; |
6196 | border-right-color: #999; | 6261 | border-right-color: #999999; |
6197 | border-right-color: rgba(0, 0, 0, .25); | 6262 | border-right-color: rgba(0, 0, 0, 0.25); |
6198 | border-left-width: 0; | 6263 | border-left-width: 0; |
6199 | } | 6264 | } |
6200 | .popover.right > .arrow:after { | 6265 | .popover.right > .arrow:after { |
@@ -6209,8 +6274,8 @@ button.close { | |||
6209 | left: 50%; | 6274 | left: 50%; |
6210 | margin-left: -11px; | 6275 | margin-left: -11px; |
6211 | border-top-width: 0; | 6276 | border-top-width: 0; |
6212 | border-bottom-color: #999; | 6277 | border-bottom-color: #999999; |
6213 | border-bottom-color: rgba(0, 0, 0, .25); | 6278 | border-bottom-color: rgba(0, 0, 0, 0.25); |
6214 | } | 6279 | } |
6215 | .popover.bottom > .arrow:after { | 6280 | .popover.bottom > .arrow:after { |
6216 | top: 1px; | 6281 | top: 1px; |
@@ -6224,8 +6289,8 @@ button.close { | |||
6224 | right: -11px; | 6289 | right: -11px; |
6225 | margin-top: -11px; | 6290 | margin-top: -11px; |
6226 | border-right-width: 0; | 6291 | border-right-width: 0; |
6227 | border-left-color: #999; | 6292 | border-left-color: #999999; |
6228 | border-left-color: rgba(0, 0, 0, .25); | 6293 | border-left-color: rgba(0, 0, 0, 0.25); |
6229 | } | 6294 | } |
6230 | .popover.left > .arrow:after { | 6295 | .popover.left > .arrow:after { |
6231 | right: 1px; | 6296 | right: 1px; |
@@ -6234,6 +6299,17 @@ button.close { | |||
6234 | border-right-width: 0; | 6299 | border-right-width: 0; |
6235 | border-left-color: #fff; | 6300 | border-left-color: #fff; |
6236 | } | 6301 | } |
6302 | .popover-title { | ||
6303 | padding: 8px 14px; | ||
6304 | margin: 0; | ||
6305 | font-size: 14px; | ||
6306 | background-color: #f7f7f7; | ||
6307 | border-bottom: 1px solid #ebebeb; | ||
6308 | border-radius: 5px 5px 0 0; | ||
6309 | } | ||
6310 | .popover-content { | ||
6311 | padding: 9px 14px; | ||
6312 | } | ||
6237 | .carousel { | 6313 | .carousel { |
6238 | position: relative; | 6314 | position: relative; |
6239 | } | 6315 | } |
@@ -6245,9 +6321,9 @@ button.close { | |||
6245 | .carousel-inner > .item { | 6321 | .carousel-inner > .item { |
6246 | position: relative; | 6322 | position: relative; |
6247 | display: none; | 6323 | display: none; |
6248 | -webkit-transition: .6s ease-in-out left; | 6324 | -webkit-transition: 0.6s ease-in-out left; |
6249 | -o-transition: .6s ease-in-out left; | 6325 | -o-transition: 0.6s ease-in-out left; |
6250 | transition: .6s ease-in-out left; | 6326 | transition: 0.6s ease-in-out left; |
6251 | } | 6327 | } |
6252 | .carousel-inner > .item > img, | 6328 | .carousel-inner > .item > img, |
6253 | .carousel-inner > .item > a > img { | 6329 | .carousel-inner > .item > a > img { |
@@ -6255,33 +6331,34 @@ button.close { | |||
6255 | } | 6331 | } |
6256 | @media all and (transform-3d), (-webkit-transform-3d) { | 6332 | @media all and (transform-3d), (-webkit-transform-3d) { |
6257 | .carousel-inner > .item { | 6333 | .carousel-inner > .item { |
6258 | -webkit-transition: -webkit-transform .6s ease-in-out; | 6334 | -webkit-transition: -webkit-transform 0.6s ease-in-out; |
6259 | -o-transition: -o-transform .6s ease-in-out; | 6335 | -o-transition: -o-transform 0.6s ease-in-out; |
6260 | transition: transform .6s ease-in-out; | 6336 | transition: -webkit-transform 0.6s ease-in-out; |
6261 | 6337 | transition: transform 0.6s ease-in-out; | |
6338 | transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out; | ||
6262 | -webkit-backface-visibility: hidden; | 6339 | -webkit-backface-visibility: hidden; |
6263 | backface-visibility: hidden; | 6340 | backface-visibility: hidden; |
6264 | -webkit-perspective: 1000px; | 6341 | -webkit-perspective: 1000px; |
6265 | perspective: 1000px; | 6342 | perspective: 1000px; |
6266 | } | 6343 | } |
6267 | .carousel-inner > .item.next, | 6344 | .carousel-inner > .item.next, |
6268 | .carousel-inner > .item.active.right { | 6345 | .carousel-inner > .item.active.right { |
6269 | left: 0; | ||
6270 | -webkit-transform: translate3d(100%, 0, 0); | 6346 | -webkit-transform: translate3d(100%, 0, 0); |
6271 | transform: translate3d(100%, 0, 0); | 6347 | transform: translate3d(100%, 0, 0); |
6348 | left: 0; | ||
6272 | } | 6349 | } |
6273 | .carousel-inner > .item.prev, | 6350 | .carousel-inner > .item.prev, |
6274 | .carousel-inner > .item.active.left { | 6351 | .carousel-inner > .item.active.left { |
6275 | left: 0; | ||
6276 | -webkit-transform: translate3d(-100%, 0, 0); | 6352 | -webkit-transform: translate3d(-100%, 0, 0); |
6277 | transform: translate3d(-100%, 0, 0); | 6353 | transform: translate3d(-100%, 0, 0); |
6354 | left: 0; | ||
6278 | } | 6355 | } |
6279 | .carousel-inner > .item.next.left, | 6356 | .carousel-inner > .item.next.left, |
6280 | .carousel-inner > .item.prev.right, | 6357 | .carousel-inner > .item.prev.right, |
6281 | .carousel-inner > .item.active { | 6358 | .carousel-inner > .item.active { |
6282 | left: 0; | ||
6283 | -webkit-transform: translate3d(0, 0, 0); | 6359 | -webkit-transform: translate3d(0, 0, 0); |
6284 | transform: translate3d(0, 0, 0); | 6360 | transform: translate3d(0, 0, 0); |
6361 | left: 0; | ||
6285 | } | 6362 | } |
6286 | } | 6363 | } |
6287 | .carousel-inner > .active, | 6364 | .carousel-inner > .active, |
@@ -6323,26 +6400,26 @@ button.close { | |||
6323 | font-size: 20px; | 6400 | font-size: 20px; |
6324 | color: #fff; | 6401 | color: #fff; |
6325 | text-align: center; | 6402 | text-align: center; |
6326 | text-shadow: 0 1px 2px rgba(0, 0, 0, .6); | 6403 | text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); |
6327 | background-color: rgba(0, 0, 0, 0); | 6404 | background-color: rgba(0, 0, 0, 0); |
6328 | filter: alpha(opacity=50); | 6405 | filter: alpha(opacity=50); |
6329 | opacity: .5; | 6406 | opacity: 0.5; |
6330 | } | 6407 | } |
6331 | .carousel-control.left { | 6408 | .carousel-control.left { |
6332 | background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); | 6409 | background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); |
6333 | background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); | 6410 | background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); |
6334 | background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001))); | 6411 | background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001))); |
6335 | background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); | 6412 | background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); |
6336 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); | 6413 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); |
6337 | background-repeat: repeat-x; | 6414 | background-repeat: repeat-x; |
6338 | } | 6415 | } |
6339 | .carousel-control.right { | 6416 | .carousel-control.right { |
6340 | right: 0; | 6417 | right: 0; |
6341 | left: auto; | 6418 | left: auto; |
6342 | background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); | 6419 | background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); |
6343 | background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); | 6420 | background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); |
6344 | background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5))); | 6421 | background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5))); |
6345 | background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); | 6422 | background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); |
6346 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); | 6423 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); |
6347 | background-repeat: repeat-x; | 6424 | background-repeat: repeat-x; |
6348 | } | 6425 | } |
@@ -6350,9 +6427,9 @@ button.close { | |||
6350 | .carousel-control:focus { | 6427 | .carousel-control:focus { |
6351 | color: #fff; | 6428 | color: #fff; |
6352 | text-decoration: none; | 6429 | text-decoration: none; |
6353 | filter: alpha(opacity=90); | ||
6354 | outline: 0; | 6430 | outline: 0; |
6355 | opacity: .9; | 6431 | filter: alpha(opacity=90); |
6432 | opacity: 0.9; | ||
6356 | } | 6433 | } |
6357 | .carousel-control .icon-prev, | 6434 | .carousel-control .icon-prev, |
6358 | .carousel-control .icon-next, | 6435 | .carousel-control .icon-next, |
@@ -6382,10 +6459,10 @@ button.close { | |||
6382 | line-height: 1; | 6459 | line-height: 1; |
6383 | } | 6460 | } |
6384 | .carousel-control .icon-prev:before { | 6461 | .carousel-control .icon-prev:before { |
6385 | content: '\2039'; | 6462 | content: "\2039"; |
6386 | } | 6463 | } |
6387 | .carousel-control .icon-next:before { | 6464 | .carousel-control .icon-next:before { |
6388 | content: '\203a'; | 6465 | content: "\203a"; |
6389 | } | 6466 | } |
6390 | .carousel-indicators { | 6467 | .carousel-indicators { |
6391 | position: absolute; | 6468 | position: absolute; |
@@ -6426,7 +6503,7 @@ button.close { | |||
6426 | padding-bottom: 20px; | 6503 | padding-bottom: 20px; |
6427 | color: #fff; | 6504 | color: #fff; |
6428 | text-align: center; | 6505 | text-align: center; |
6429 | text-shadow: 0 1px 2px rgba(0, 0, 0, .6); | 6506 | text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); |
6430 | } | 6507 | } |
6431 | .carousel-caption .btn { | 6508 | .carousel-caption .btn { |
6432 | text-shadow: none; | 6509 | text-shadow: none; |
@@ -6754,4 +6831,4 @@ button.close { | |||
6754 | display: none !important; | 6831 | display: none !important; |
6755 | } | 6832 | } |
6756 | } | 6833 | } |
6757 | /*# sourceMappingURL=bootstrap.css.map */ | 6834 | /*# sourceMappingURL=bootstrap.css.map */ \ No newline at end of file |
diff --git a/src/css/bootstrap.css.map b/src/css/bootstrap.css.map new file mode 100644 index 0000000..caac3e6 --- /dev/null +++ b/src/css/bootstrap.css.map | |||
@@ -0,0 +1 @@ | |||
{"version":3,"sources":["bootstrap.css","less/normalize.less","less/print.less","less/glyphicons.less","less/scaffolding.less","less/mixins/vendor-prefixes.less","less/mixins/tab-focus.less","less/mixins/image.less","less/type.less","less/mixins/text-emphasis.less","less/mixins/background-variant.less","less/mixins/text-overflow.less","less/code.less","less/grid.less","less/mixins/grid.less","less/mixins/grid-framework.less","less/tables.less","less/mixins/table-row.less","less/forms.less","less/mixins/forms.less","less/buttons.less","less/mixins/buttons.less","less/mixins/opacity.less","less/component-animations.less","less/dropdowns.less","less/mixins/nav-divider.less","less/mixins/reset-filter.less","less/button-groups.less","less/mixins/border-radius.less","less/input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/mixins/pagination.less","less/pager.less","less/labels.less","less/mixins/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/mixins/alerts.less","less/progress-bars.less","less/mixins/gradients.less","less/mixins/progress-bar.less","less/media.less","less/list-group.less","less/mixins/list-group.less","less/panels.less","less/mixins/panels.less","less/responsive-embed.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/mixins/reset-text.less","less/popovers.less","less/carousel.less","less/mixins/clearfix.less","less/mixins/center-block.less","less/mixins/hide-text.less","less/responsive-utilities.less","less/mixins/responsive-visibility.less"],"names":[],"mappings":"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A;CHkR9C;AGjRmC;EAAW,iBAAA;CHoR9C;AGnRmC;EAAW,iBAAA;CHsR9C;AGrRmC;EAAW,iBAAA;CHwR9C;AGvRmC;EAAW,iBAAA;CH0R9C;AGzRmC;EAAW,iBAAA;CH4R9C;AG3RmC;EAAW,iBAAA;CH8R9C;AG7RmC;EAAW,iBAAA;CHgS9C;AG/RmC;EAAW,iBAAA;CHkS9C;AGjSmC;EAAW,iBAAA;CHoS9C;AGnSmC;EAAW,iBAAA;CHsS9C;AGrSmC;EAAW,iBAAA;CHwS9C;AGvSmC;EAAW,iBAAA;CH0S9C;AGzSmC;EAAW,iBAAA;CH4S9C;AG3SmC;EAAW,iBAAA;CH8S9C;AG7SmC;EAAW,iBAAA;CHgT9C;AG/SmC;EAAW,iBAAA;CHkT9C;AGjTmC;EAAW,iBAAA;CHoT9C;AGnTmC;EAAW,iBAAA;CHsT9C;AGrTmC;EAAW,iBAAA;CHwT9C;AGvTmC;EAAW,iBAAA;CH0T9C;AGzTmC;EAAW,iBAAA;CH4T9C;AG3TmC;EAAW,iBAAA;CH8T9C;AG7TmC;EAAW,iBAAA;CHgU9C;AG/TmC;EAAW,iBAAA;CHkU9C;AGjUmC;EAAW,iBAAA;CHoU9C;AGnUmC;EAAW,iBAAA;CHsU9C;AGrUmC;EAAW,iBAAA;CHwU9C;AGvUmC;EAAW,iBAAA;CH0U9C;AGzUmC;EAAW,iBAAA;CH4U9C;AG3UmC;EAAW,iBAAA;CH8U9C;AG7UmC;EAAW,iBAAA;CHgV9C;AG/UmC;EAAW,iBAAA;CHkV9C;AGjVmC;EAAW,iBAAA;CHoV9C;AGnVmC;EAAW,iBAAA;CHsV9C;AGrVmC;EAAW,iBAAA;CHwV9C;AGvVmC;EAAW,iBAAA;CH0V9C;AGzVmC;EAAW,iBAAA;CH4V9C;AG3VmC;EAAW,iBAAA;CH8V9C;AG7VmC;EAAW,iBAAA;CHgW9C;AG/VmC;EAAW,iBAAA;CHkW9C;AGjWmC;EAAW,iBAAA;CHoW9C;AGnWmC;EAAW,iBAAA;CHsW9C;AGrWmC;EAAW,iBAAA;CHwW9C;AGvWmC;EAAW,iBAAA;CH0W9C;AGzWmC;EAAW,iBAAA;CH4W9C;AG3WmC;EAAW,iBAAA;CH8W9C;AG7WmC;EAAW,iBAAA;CHgX9C;AG/WmC;EAAW,iBAAA;CHkX9C;AGjXmC;EAAW,iBAAA;CHoX9C;AGnXmC;EAAW,iBAAA;CHsX9C;AGrXmC;EAAW,iBAAA;CHwX9C;AGvXmC;EAAW,iBAAA;CH0X9C;AGzXmC;EAAW,iBAAA;CH4X9C;AG3XmC;EAAW,iBAAA;CH8X9C;AG7XmC;EAAW,iBAAA;CHgY9C;AG/XmC;EAAW,iBAAA;CHkY9C;AGjYmC;EAAW,iBAAA;CHoY9C;AGnYmC;EAAW,iBAAA;CHsY9C;AGrYmC;EAAW,iBAAA;CHwY9C;AGvYmC;EAAW,iBAAA;CH0Y9C;AGzYmC;EAAW,iBAAA;CH4Y9C;AG3YmC;EAAW,iBAAA;CH8Y9C;AG7YmC;EAAW,iBAAA;CHgZ9C;AG/YmC;EAAW,iBAAA;CHkZ9C;AGjZmC;EAAW,iBAAA;CHoZ9C;AGnZmC;EAAW,iBAAA;CHsZ9C;AGrZmC;EAAW,iBAAA;CHwZ9C;AGvZmC;EAAW,iBAAA;CH0Z9C;AGzZmC;EAAW,iBAAA;CH4Z9C;AG3ZmC;EAAW,iBAAA;CH8Z9C;AG7ZmC;EAAW,iBAAA;CHga9C;AG/ZmC;EAAW,iBAAA;CHka9C;AGjamC;EAAW,iBAAA;CHoa9C;AGnamC;EAAW,iBAAA;CHsa9C;AGramC;EAAW,iBAAA;CHwa9C;AGvamC;EAAW,iBAAA;CH0a9C;AGzamC;EAAW,iBAAA;CH4a9C;AG3amC;EAAW,iBAAA;CH8a9C;AG7amC;EAAW,iBAAA;CHgb9C;AG/amC;EAAW,iBAAA;CHkb9C;AGjbmC;EAAW,iBAAA;CHob9C;AGnbmC;EAAW,iBAAA;CHsb9C;AGrbmC;EAAW,iBAAA;CHwb9C;AGvbmC;EAAW,iBAAA;CH0b9C;AGzbmC;EAAW,iBAAA;CH4b9C;AG3bmC;EAAW,iBAAA;CH8b9C;AG7bmC;EAAW,iBAAA;CHgc9C;AG/bmC;EAAW,iBAAA;CHkc9C;AGjcmC;EAAW,iBAAA;CHoc9C;AGncmC;EAAW,iBAAA;CHsc9C;AGrcmC;EAAW,iBAAA;CHwc9C;AGvcmC;EAAW,iBAAA;CH0c9C;AGzcmC;EAAW,iBAAA;CH4c9C;AG3cmC;EAAW,iBAAA;CH8c9C;AG7cmC;EAAW,iBAAA;CHgd9C;AG/cmC;EAAW,iBAAA;CHkd9C;AGjdmC;EAAW,iBAAA;CHod9C;AGndmC;EAAW,iBAAA;CHsd9C;AGrdmC;EAAW,iBAAA;CHwd9C;AGvdmC;EAAW,iBAAA;CH0d9C;AGzdmC;EAAW,iBAAA;CH4d9C;AG3dmC;EAAW,iBAAA;CH8d9C;AG7dmC;EAAW,iBAAA;CHge9C;AG/dmC;EAAW,iBAAA;CHke9C;AGjemC;EAAW,iBAAA;CHoe9C;AGnemC;EAAW,iBAAA;CHse9C;AGremC;EAAW,iBAAA;CHwe9C;AGvemC;EAAW,iBAAA;CH0e9C;AGzemC;EAAW,iBAAA;CH4e9C;AG3emC;EAAW,iBAAA;CH8e9C;AG7emC;EAAW,iBAAA;CHgf9C;AG/emC;EAAW,iBAAA;CHkf9C;AGjfmC;EAAW,iBAAA;CHof9C;AGnfmC;EAAW,iBAAA;CHsf9C;AGrfmC;EAAW,iBAAA;CHwf9C;AGvfmC;EAAW,iBAAA;CH0f9C;AGzfmC;EAAW,iBAAA;CH4f9C;AG3fmC;EAAW,iBAAA;CH8f9C;AG7fmC;EAAW,iBAAA;CHggB9C;AG/fmC;EAAW,iBAAA;CHkgB9C;AGjgBmC;EAAW,iBAAA;CHogB9C;AGngBmC;EAAW,iBAAA;CHsgB9C;AGrgBmC;EAAW,iBAAA;CHwgB9C;AGvgBmC;EAAW,iBAAA;CH0gB9C;AGzgBmC;EAAW,iBAAA;CH4gB9C;AG3gBmC;EAAW,iBAAA;CH8gB9C;AG7gBmC;EAAW,iBAAA;CHghB9C;AG/gBmC;EAAW,iBAAA;CHkhB9C;AGjhBmC;EAAW,iBAAA;CHohB9C;AGnhBmC;EAAW,iBAAA;CHshB9C;AGrhBmC;EAAW,iBAAA;CHwhB9C;AGvhBmC;EAAW,iBAAA;CH0hB9C;AGzhBmC;EAAW,iBAAA;CH4hB9C;AG3hBmC;EAAW,iBAAA;CH8hB9C;AG7hBmC;EAAW,iBAAA;CHgiB9C;AG/hBmC;EAAW,iBAAA;CHkiB9C;AGjiBmC;EAAW,iBAAA;CHoiB9C;AGniBmC;EAAW,iBAAA;CHsiB9C;AGriBmC;EAAW,iBAAA;CHwiB9C;AGviBmC;EAAW,iBAAA;CH0iB9C;AGziBmC;EAAW,iBAAA;CH4iB9C;AG3iBmC;EAAW,iBAAA;CH8iB9C;AG7iBmC;EAAW,iBAAA;CHgjB9C;AG/iBmC;EAAW,iBAAA;CHkjB9C;AGjjBmC;EAAW,iBAAA;CHojB9C;AGnjBmC;EAAW,iBAAA;CHsjB9C;AGrjBmC;EAAW,iBAAA;CHwjB9C;AGvjBmC;EAAW,iBAAA;CH0jB9C;AGzjBmC;EAAW,iBAAA;CH4jB9C;AG3jBmC;EAAW,iBAAA;CH8jB9C;AG7jBmC;EAAW,iBAAA;CHgkB9C;AG/jBmC;EAAW,iBAAA;CHkkB9C;AGjkBmC;EAAW,iBAAA;CHokB9C;AGnkBmC;EAAW,iBAAA;CHskB9C;AGrkBmC;EAAW,iBAAA;CHwkB9C;AGvkBmC;EAAW,iBAAA;CH0kB9C;AGzkBmC;EAAW,iBAAA;CH4kB9C;AG3kBmC;EAAW,iBAAA;CH8kB9C;AG7kBmC;EAAW,iBAAA;CHglB9C;AG/kBmC;EAAW,iBAAA;CHklB9C;AGjlBmC;EAAW,iBAAA;CHolB9C;AGnlBmC;EAAW,iBAAA;CHslB9C;AGrlBmC;EAAW,iBAAA;CHwlB9C;AGvlBmC;EAAW,iBAAA;CH0lB9C;AGzlBmC;EAAW,iBAAA;CH4lB9C;AG3lBmC;EAAW,iBAAA;CH8lB9C;AG7lBmC;EAAW,iBAAA;CHgmB9C;AG/lBmC;EAAW,iBAAA;CHkmB9C;AGjmBmC;EAAW,iBAAA;CHomB9C;AGnmBmC;EAAW,iBAAA;CHsmB9C;AGrmBmC;EAAW,iBAAA;CHwmB9C;AGvmBmC;EAAW,iBAAA;CH0mB9C;AGzmBmC;EAAW,iBAAA;CH4mB9C;AG3mBmC;EAAW,iBAAA;CH8mB9C;AG7mBmC;EAAW,iBAAA;CHgnB9C;AG/mBmC;EAAW,iBAAA;CHknB9C;AGjnBmC;EAAW,iBAAA;CHonB9C;AGnnBmC;EAAW,iBAAA;CHsnB9C;AGrnBmC;EAAW,iBAAA;CHwnB9C;AGvnBmC;EAAW,iBAAA;CH0nB9C;AGznBmC;EAAW,iBAAA;CH4nB9C;AG3nBmC;EAAW,iBAAA;CH8nB9C;AG7nBmC;EAAW,iBAAA;CHgoB9C;AG/nBmC;EAAW,iBAAA;CHkoB9C;AGjoBmC;EAAW,iBAAA;CHooB9C;AGnoBmC;EAAW,iBAAA;CHsoB9C;AGroBmC;EAAW,iBAAA;CHwoB9C;AG/nBmC;EAAW,iBAAA;CHkoB9C;AGjoBmC;EAAW,iBAAA;CHooB9C;AGnoBmC;EAAW,iBAAA;CHsoB9C;AGroBmC;EAAW,iBAAA;CHwoB9C;AGvoBmC;EAAW,iBAAA;CH0oB9C;AGzoBmC;EAAW,iBAAA;CH4oB9C;AG3oBmC;EAAW,iBAAA;CH8oB9C;AG7oBmC;EAAW,iBAAA;CHgpB9C;AG/oBmC;EAAW,iBAAA;CHkpB9C;AGjpBmC;EAAW,iBAAA;CHopB9C;AGnpBmC;EAAW,iBAAA;CHspB9C;AGrpBmC;EAAW,iBAAA;CHwpB9C;AGvpBmC;EAAW,iBAAA;CH0pB9C;AGzpBmC;EAAW,iBAAA;CH4pB9C;AG3pBmC;EAAW,iBAAA;CH8pB9C;AG7pBmC;EAAW,iBAAA;CHgqB9C;AG/pBmC;EAAW,iBAAA;CHkqB9C;AGjqBmC;EAAW,iBAAA;CHoqB9C;AGnqBmC;EAAW,iBAAA;CHsqB9C;AGrqBmC;EAAW,iBAAA;CHwqB9C;AGvqBmC;EAAW,iBAAA;CH0qB9C;AGzqBmC;EAAW,iBAAA;CH4qB9C;AG3qBmC;EAAW,iBAAA;CH8qB9C;AG7qBmC;EAAW,iBAAA;CHgrB9C;AG/qBmC;EAAW,iBAAA;CHkrB9C;AGjrBmC;EAAW,iBAAA;CHorB9C;AGnrBmC;EAAW,iBAAA;CHsrB9C;AGrrBmC;EAAW,iBAAA;CHwrB9C;AGvrBmC;EAAW,iBAAA;CH0rB9C;AGzrBmC;EAAW,iBAAA;CH4rB9C;AG3rBmC;EAAW,iBAAA;CH8rB9C;AG7rBmC;EAAW,iBAAA;CHgsB9C;AG/rBmC;EAAW,iBAAA;CHksB9C;AGjsBmC;EAAW,iBAAA;CHosB9C;AGnsBmC;EAAW,iBAAA;CHssB9C;AGrsBmC;EAAW,iBAAA;CHwsB9C;AGvsBmC;EAAW,iBAAA;CH0sB9C;AGzsBmC;EAAW,iBAAA;CH4sB9C;AG3sBmC;EAAW,iBAAA;CH8sB9C;AG7sBmC;EAAW,iBAAA;CHgtB9C;AG/sBmC;EAAW,iBAAA;CHktB9C;AGjtBmC;EAAW,iBAAA;CHotB9C;AGntBmC;EAAW,iBAAA;CHstB9C;AGrtBmC;EAAW,iBAAA;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rDA;EC8DG,oBAAA;CfwnDH;ActrDA;EC8DG,oBAAA;Cf2nDH;AczrDA;EC8DG,WAAA;Cf8nDH;Ac5rDA;EC8DG,oBAAA;CfioDH;Ac/rDA;EC8DG,oBAAA;CfooDH;AclsDA;EC8DG,WAAA;CfuoDH;AcrsDA;EC8DG,oBAAA;Cf0oDH;AcxsDA;EC8DG,oBAAA;Cf6oDH;Ac3sDA;EC8DG,WAAA;CfgpDH;Ac9sDA;EC8DG,oBAAA;CfmpDH;AcjtDA;EC8DG,mBAAA;CfspDH;AcptDA;ECmEG,YAAA;CfopDH;AcvtDA;ECoDG,WAAA;CfsqDH;Ac1tDA;ECoDG,mBAAA;CfyqDH;Ac7tDA;ECoDG,mBAAA;Cf4qDH;AchuDA;ECoDG,UAAA;Cf+qDH;AcnuDA;ECoDG,mBAAA;CfkrDH;ActuDA;ECoDG,mBAAA;CfqrDH;AczuDA;ECoDG,UAAA;CfwrDH;Ac5uDA;ECoDG,mBAAA;Cf2rDH;Ac/uDA;ECoDG,mBAAA;Cf8rDH;AclvDA;ECoDG,UAAA;CfisDH;AcrvDA;ECoDG,mBAAA;CfosDH;AcxvDA;ECoDG,kBAAA;CfusDH;Ac3vDA;ECyDG,WAAA;CfqsDH;Ac9vDA;ECwEG,kBAAA;CfyrDH;AcjwDA;ECwEG,0BAAA;Cf4rDH;AcpwDA;ECwEG,0BAAA;Cf+rDH;AcvwDA;ECwEG,iBAAA;CfksDH;Ac1wDA;ECwEG,0BAAA;CfqsDH;Ac7wDA;ECwEG,0BAAA;CfwsDH;AchxDA;ECwEG,iBAAA;Cf2sDH;AcnxDA;ECwEG,0BAAA;Cf8sDH;ActxDA;ECwEG,0BAAA;CfitDH;AczxDA;ECwEG,iBAAA;CfotDH;Ac5xDA;ECwEG,0BAAA;CfutDH;Ac/xDA;ECwEG,yBAAA;Cf0tDH;AclyDA;ECwEG,gBAAA;Cf6tDH;Aa5tDD;ECzEC;;;;;;;;;;;;ICuCK,YAAA;Gf6wDH;EcpzDF;IC+CG,YAAA;GfwwDD;EcvzDF;IC+CG,oBAAA;Gf2wDD;Ec1zDF;IC+CG,oBAAA;Gf8wDD;Ec7zDF;IC+CG,WAAA;GfixDD;Ech0DF;IC+CG,oBAAA;GfoxDD;Ecn0DF;IC+CG,oBAAA;GfuxDD;Ect0DF;IC+CG,WAAA;Gf0xDD;Ecz0DF;IC+CG,oBAAA;Gf6xDD;Ec50DF;IC+CG,oBAAA;GfgyDD;Ec/0DF;IC+CG,WAAA;GfmyDD;Ecl1DF;IC+CG,oBAAA;GfsyDD;Ecr1DF;IC+CG,mBAAA;GfyyDD;Ecx1DF;IC8DG,YAAA;Gf6xDD;Ec31DF;IC8DG,oBAAA;GfgyDD;Ec91DF;IC8DG,oBAAA;GfmyDD;Ecj2DF;IC8DG,WAAA;GfsyDD;Ecp2DF;IC8DG,oBAAA;GfyyDD;Ecv2DF;IC8DG,oBAAA;Gf4yDD;Ec12DF;IC8DG,WAAA;Gf+yDD;Ec72DF;IC8DG,oBAAA;GfkzDD;Ech3DF;IC8DG,oBAAA;GfqzDD;Ecn3DF;IC8DG,WAAA;GfwzDD;Ect3DF;IC8DG,oBAAA;Gf2zDD;Ecz3DF;IC8DG,mBAAA;Gf8zDD;Ec53DF;ICmEG,YAAA;Gf4zDD;Ec/3DF;ICoDG,WAAA;Gf80DD;Ecl4DF;ICoDG,mBAAA;Gfi1DD;Ecr4DF;ICoDG,mBAAA;Gfo1DD;Ecx4DF;ICoDG,UAAA;Gfu1DD;Ec34DF;ICoDG,mBAAA;Gf01DD;Ec94DF;ICoDG,mBAAA;Gf61DD;Ecj5DF;ICoDG,UAAA;Gfg2DD;Ecp5DF;ICoDG,mBAAA;Gfm2DD;Ecv5DF;ICoDG,mBAAA;Gfs2DD;Ec15DF;ICoDG,UAAA;Gfy2DD;Ec75DF;ICoDG,mBAAA;Gf42DD;Ech6DF;ICoDG,kBAAA;Gf+2DD;Ecn6DF;ICyDG,WAAA;Gf62DD;Ect6DF;ICwEG,kBAAA;Gfi2DD;Ecz6DF;ICwEG,0BAAA;Gfo2DD;Ec56DF;ICwEG,0BAAA;Gfu2DD;Ec/6DF;ICwEG,iBAAA;Gf02DD;Ecl7DF;ICwEG,0BAAA;Gf62DD;Ecr7DF;ICwEG,0BAAA;Gfg3DD;Ecx7DF;ICwEG,iBAAA;Gfm3DD;Ec37DF;ICwEG,0BAAA;Gfs3DD;Ec97DF;ICwEG,0BAAA;Gfy3DD;Ecj8DF;ICwEG,iBAAA;Gf43DD;Ecp8DF;ICwEG,0BAAA;Gf+3DD;Ecv8DF;ICwEG,yBAAA;Gfk4DD;Ec18DF;ICwEG,gBAAA;Gfq4DD;CACF;Aa53DD;EClFC;;;;;;;;;;;;ICuCK,YAAA;Gfs7DH;Ec79DF;IC+CG,YAAA;Gfi7DD;Ech+DF;IC+CG,oBAAA;Gfo7DD;Ecn+DF;IC+CG,oBAAA;Gfu7DD;Ect+DF;IC+CG,WAAA;Gf07DD;Ecz+DF;IC+CG,oBAAA;Gf67DD;Ec5+DF;IC+CG,oBAAA;Gfg8DD;Ec/+DF;IC+CG,WAAA;Gfm8DD;Ecl/DF;IC+CG,oBAAA;Gfs8DD;Ecr/DF;IC+CG,oBAAA;Gfy8DD;Ecx/DF;IC+CG,WAAA;Gf48DD;Ec3/DF;IC+CG,oBAAA;Gf+8DD;Ec9/DF;IC+CG,mBAAA;Gfk9DD;EcjgEF;IC8DG,YAAA;Gfs8DD;EcpgEF;IC8DG,oBAAA;Gfy8DD;EcvgEF;IC8DG,oBAAA;Gf48DD;Ec1gEF;IC8DG,WAAA;Gf+8DD;Ec7gEF;IC8DG,oBAAA;Gfk9DD;EchhEF;IC8DG,oBAAA;Gfq9DD;EcnhEF;IC8DG,WAAA;Gfw9DD;EcthEF;IC8DG,oBAAA;Gf29DD;EczhEF;IC8DG,oBAAA;Gf89DD;Ec5hEF;IC8DG,WAAA;Gfi+DD;Ec/hEF;IC8DG,oBAAA;Gfo+DD;EcliEF;IC8DG,mBAAA;Gfu+DD;EcriEF;ICmEG,YAAA;Gfq+DD;EcxiEF;ICoDG,WAAA;Gfu/DD;Ec3iEF;ICoDG,mBAAA;Gf0/DD;Ec9iEF;ICoDG,mBAAA;Gf6/DD;EcjjEF;ICoDG,UAAA;GfggED;EcpjEF;ICoDG,mBAAA;GfmgED;EcvjEF;ICoDG,mBAAA;GfsgED;Ec1jEF;ICoDG,UAAA;GfygED;Ec7jEF;ICoDG,mBAAA;Gf4gED;EchkEF;ICoDG,mBAAA;Gf+gED;EcnkEF;ICoDG,UAAA;GfkhED;EctkEF;ICoDG,mBAAA;GfqhED;EczkEF;ICoDG,kBAAA;GfwhED;Ec5kEF;ICyDG,WAAA;GfshED;Ec/kEF;ICwEG,kBAAA;Gf0gED;EcllEF;ICwEG,0BAAA;Gf6gED;EcrlEF;ICwEG,0BAAA;GfghED;EcxlEF;ICwEG,iBAAA;GfmhED;Ec3lEF;ICwEG,0BAAA;GfshED;Ec9lEF;ICwEG,0BAAA;GfyhED;EcjmEF;ICwEG,iBAAA;Gf4hED;EcpmEF;ICwEG,0BAAA;Gf+hED;EcvmEF;ICwEG,0BAAA;GfkiED;Ec1mEF;ICwEG,iBAAA;GfqiED;Ec7mEF;ICwEG,0BAAA;GfwiED;EchnEF;ICwEG,yBAAA;Gf2iED;EcnnEF;ICwEG,gBAAA;Gf8iED;CACF;Aa5hED;EC3FC;;;;;;;;;;;;ICuCK,YAAA;Gf+lEH;EctoEF;IC+CG,YAAA;Gf0lED;EczoEF;IC+CG,oBAAA;Gf6lED;Ec5oEF;IC+CG,oBAAA;GfgmED;Ec/oEF;IC+CG,WAAA;GfmmED;EclpEF;IC+CG,oBAAA;GfsmED;EcrpEF;IC+CG,oBAAA;GfymED;EcxpEF;IC+CG,WAAA;Gf4mED;Ec3pEF;IC+CG,oBAAA;Gf+mED;Ec9pEF;IC+CG,oBAAA;GfknED;EcjqEF;IC+CG,WAAA;GfqnED;EcpqEF;IC+CG,oBAAA;GfwnED;EcvqEF;IC+CG,mBAAA;Gf2nED;Ec1qEF;IC8DG,YAAA;Gf+mED;Ec7qEF;IC8DG,oBAAA;GfknED;EchrEF;IC8DG,oBAAA;GfqnED;EcnrEF;IC8DG,WAAA;GfwnED;EctrEF;IC8DG,oBAAA;Gf2nED;EczrEF;IC8DG,oBAAA;Gf8nED;Ec5rEF;IC8DG,WAAA;GfioED;Ec/rEF;IC8DG,oBAAA;GfooED;EclsEF;IC8DG,oBAAA;GfuoED;EcrsEF;IC8DG,WAAA;Gf0oED;EcxsEF;IC8DG,oBAAA;Gf6oED;Ec3sEF;IC8DG,mBAAA;GfgpED;Ec9sEF;ICmEG,YAAA;Gf8oED;EcjtEF;ICoDG,WAAA;GfgqED;EcptEF;ICoDG,mBAAA;GfmqED;EcvtEF;ICoDG,mBAAA;GfsqED;Ec1tEF;ICoDG,UAAA;GfyqED;Ec7tEF;ICoDG,mBAAA;Gf4qED;EchuEF;ICoDG,mBAAA;Gf+qED;EcnuEF;ICoDG,UAAA;GfkrED;EctuEF;ICoDG,mBAAA;GfqrED;EczuEF;ICoDG,mBAAA;GfwrED;Ec5uEF;ICoDG,UAAA;Gf2rED;Ec/uEF;ICoDG,mBAAA;Gf8rED;EclvEF;ICoDG,kBAAA;GfisED;EcrvEF;ICyDG,WAAA;Gf+rED;EcxvEF;ICwEG,kBAAA;GfmrED;Ec3vEF;ICwEG,0BAAA;GfsrED;Ec9vEF;ICwEG,0BAAA;GfyrED;EcjwEF;ICwEG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","file":"bootstrap.css","sourcesContent":["/*!\n * Bootstrap v3.4.1 (https://getbootstrap.com/)\n * Copyright 2011-2019 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\nhtml {\n font-family: sans-serif;\n -ms-text-size-adjust: 100%;\n -webkit-text-size-adjust: 100%;\n}\nbody {\n margin: 0;\n}\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block;\n vertical-align: baseline;\n}\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n[hidden],\ntemplate {\n display: none;\n}\na {\n background-color: transparent;\n}\na:active,\na:hover {\n outline: 0;\n}\nabbr[title] {\n border-bottom: none;\n text-decoration: underline;\n text-decoration: underline dotted;\n}\nb,\nstrong {\n font-weight: bold;\n}\ndfn {\n font-style: italic;\n}\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\nmark {\n background: #ff0;\n color: #000;\n}\nsmall {\n font-size: 80%;\n}\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\nsup {\n top: -0.5em;\n}\nsub {\n bottom: -0.25em;\n}\nimg {\n border: 0;\n}\nsvg:not(:root) {\n overflow: hidden;\n}\nfigure {\n margin: 1em 40px;\n}\nhr {\n box-sizing: content-box;\n height: 0;\n}\npre {\n overflow: auto;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit;\n font: inherit;\n margin: 0;\n}\nbutton {\n overflow: visible;\n}\nbutton,\nselect {\n text-transform: none;\n}\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button;\n cursor: pointer;\n}\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\ninput {\n line-height: normal;\n}\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box;\n padding: 0;\n}\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: textfield;\n box-sizing: content-box;\n}\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\nlegend {\n border: 0;\n padding: 0;\n}\ntextarea {\n overflow: auto;\n}\noptgroup {\n font-weight: bold;\n}\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\ntd,\nth {\n padding: 0;\n}\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n@media print {\n *,\n *:before,\n *:after {\n color: #000 !important;\n text-shadow: none !important;\n background: transparent !important;\n box-shadow: none !important;\n }\n a,\n a:visited {\n text-decoration: underline;\n }\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n thead {\n display: table-header-group;\n }\n tr,\n img {\n page-break-inside: avoid;\n }\n img {\n max-width: 100% !important;\n }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n h2,\n h3 {\n page-break-after: avoid;\n }\n .navbar {\n display: none;\n }\n .btn > .caret,\n .dropup > .btn > .caret {\n border-top-color: #000 !important;\n }\n .label {\n border: 1px solid #000;\n }\n .table {\n border-collapse: collapse !important;\n }\n .table td,\n .table th {\n background-color: #fff !important;\n }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #ddd !important;\n }\n}\n@font-face {\n font-family: \"Glyphicons Halflings\";\n src: url(\"../fonts/glyphicons-halflings-regular.eot\");\n src: url(\"../fonts/glyphicons-halflings-regular.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/glyphicons-halflings-regular.woff2\") format(\"woff2\"), url(\"../fonts/glyphicons-halflings-regular.woff\") format(\"woff\"), url(\"../fonts/glyphicons-halflings-regular.ttf\") format(\"truetype\"), url(\"../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular\") format(\"svg\");\n}\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: \"Glyphicons Halflings\";\n font-style: normal;\n font-weight: 400;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.glyphicon-asterisk:before {\n content: \"\\002a\";\n}\n.glyphicon-plus:before {\n content: \"\\002b\";\n}\n.glyphicon-euro:before,\n.glyphicon-eur:before {\n content: \"\\20ac\";\n}\n.glyphicon-minus:before {\n content: \"\\2212\";\n}\n.glyphicon-cloud:before {\n content: \"\\2601\";\n}\n.glyphicon-envelope:before {\n content: \"\\2709\";\n}\n.glyphicon-pencil:before {\n content: \"\\270f\";\n}\n.glyphicon-glass:before {\n content: \"\\e001\";\n}\n.glyphicon-music:before {\n content: \"\\e002\";\n}\n.glyphicon-search:before {\n content: \"\\e003\";\n}\n.glyphicon-heart:before {\n content: \"\\e005\";\n}\n.glyphicon-star:before {\n content: \"\\e006\";\n}\n.glyphicon-star-empty:before {\n content: \"\\e007\";\n}\n.glyphicon-user:before {\n content: \"\\e008\";\n}\n.glyphicon-film:before {\n content: \"\\e009\";\n}\n.glyphicon-th-large:before {\n content: \"\\e010\";\n}\n.glyphicon-th:before {\n content: \"\\e011\";\n}\n.glyphicon-th-list:before {\n content: \"\\e012\";\n}\n.glyphicon-ok:before {\n content: \"\\e013\";\n}\n.glyphicon-remove:before {\n content: \"\\e014\";\n}\n.glyphicon-zoom-in:before {\n content: \"\\e015\";\n}\n.glyphicon-zoom-out:before {\n content: \"\\e016\";\n}\n.glyphicon-off:before {\n content: \"\\e017\";\n}\n.glyphicon-signal:before {\n content: \"\\e018\";\n}\n.glyphicon-cog:before {\n content: \"\\e019\";\n}\n.glyphicon-trash:before {\n content: \"\\e020\";\n}\n.glyphicon-home:before {\n content: \"\\e021\";\n}\n.glyphicon-file:before {\n content: \"\\e022\";\n}\n.glyphicon-time:before {\n content: \"\\e023\";\n}\n.glyphicon-road:before {\n content: \"\\e024\";\n}\n.glyphicon-download-alt:before {\n content: \"\\e025\";\n}\n.glyphicon-download:before {\n content: \"\\e026\";\n}\n.glyphicon-upload:before {\n content: \"\\e027\";\n}\n.glyphicon-inbox:before {\n content: \"\\e028\";\n}\n.glyphicon-play-circle:before {\n content: \"\\e029\";\n}\n.glyphicon-repeat:before {\n content: \"\\e030\";\n}\n.glyphicon-refresh:before {\n content: \"\\e031\";\n}\n.glyphicon-list-alt:before {\n content: \"\\e032\";\n}\n.glyphicon-lock:before {\n content: \"\\e033\";\n}\n.glyphicon-flag:before {\n content: \"\\e034\";\n}\n.glyphicon-headphones:before {\n content: \"\\e035\";\n}\n.glyphicon-volume-off:before {\n content: \"\\e036\";\n}\n.glyphicon-volume-down:before {\n content: \"\\e037\";\n}\n.glyphicon-volume-up:before {\n content: \"\\e038\";\n}\n.glyphicon-qrcode:before {\n content: \"\\e039\";\n}\n.glyphicon-barcode:before {\n content: \"\\e040\";\n}\n.glyphicon-tag:before {\n content: \"\\e041\";\n}\n.glyphicon-tags:before {\n content: \"\\e042\";\n}\n.glyphicon-book:before {\n content: \"\\e043\";\n}\n.glyphicon-bookmark:before {\n content: \"\\e044\";\n}\n.glyphicon-print:before {\n content: \"\\e045\";\n}\n.glyphicon-camera:before {\n content: \"\\e046\";\n}\n.glyphicon-font:before {\n content: \"\\e047\";\n}\n.glyphicon-bold:before {\n content: \"\\e048\";\n}\n.glyphicon-italic:before {\n content: \"\\e049\";\n}\n.glyphicon-text-height:before {\n content: \"\\e050\";\n}\n.glyphicon-text-width:before {\n content: \"\\e051\";\n}\n.glyphicon-align-left:before {\n content: \"\\e052\";\n}\n.glyphicon-align-center:before {\n content: \"\\e053\";\n}\n.glyphicon-align-right:before {\n content: \"\\e054\";\n}\n.glyphicon-align-justify:before {\n content: \"\\e055\";\n}\n.glyphicon-list:before {\n content: \"\\e056\";\n}\n.glyphicon-indent-left:before {\n content: \"\\e057\";\n}\n.glyphicon-indent-right:before {\n content: \"\\e058\";\n}\n.glyphicon-facetime-video:before {\n content: \"\\e059\";\n}\n.glyphicon-picture:before {\n content: \"\\e060\";\n}\n.glyphicon-map-marker:before {\n content: \"\\e062\";\n}\n.glyphicon-adjust:before {\n content: \"\\e063\";\n}\n.glyphicon-tint:before {\n content: \"\\e064\";\n}\n.glyphicon-edit:before {\n content: \"\\e065\";\n}\n.glyphicon-share:before {\n content: \"\\e066\";\n}\n.glyphicon-check:before {\n content: \"\\e067\";\n}\n.glyphicon-move:before {\n content: \"\\e068\";\n}\n.glyphicon-step-backward:before {\n content: \"\\e069\";\n}\n.glyphicon-fast-backward:before {\n content: \"\\e070\";\n}\n.glyphicon-backward:before {\n content: \"\\e071\";\n}\n.glyphicon-play:before {\n content: \"\\e072\";\n}\n.glyphicon-pause:before {\n content: \"\\e073\";\n}\n.glyphicon-stop:before {\n content: \"\\e074\";\n}\n.glyphicon-forward:before {\n content: \"\\e075\";\n}\n.glyphicon-fast-forward:before {\n content: \"\\e076\";\n}\n.glyphicon-step-forward:before {\n content: \"\\e077\";\n}\n.glyphicon-eject:before {\n content: \"\\e078\";\n}\n.glyphicon-chevron-left:before {\n content: \"\\e079\";\n}\n.glyphicon-chevron-right:before {\n content: \"\\e080\";\n}\n.glyphicon-plus-sign:before {\n content: \"\\e081\";\n}\n.glyphicon-minus-sign:before {\n content: \"\\e082\";\n}\n.glyphicon-remove-sign:before {\n content: \"\\e083\";\n}\n.glyphicon-ok-sign:before {\n content: \"\\e084\";\n}\n.glyphicon-question-sign:before {\n content: \"\\e085\";\n}\n.glyphicon-info-sign:before {\n content: \"\\e086\";\n}\n.glyphicon-screenshot:before {\n content: \"\\e087\";\n}\n.glyphicon-remove-circle:before {\n content: \"\\e088\";\n}\n.glyphicon-ok-circle:before {\n content: \"\\e089\";\n}\n.glyphicon-ban-circle:before {\n content: \"\\e090\";\n}\n.glyphicon-arrow-left:before {\n content: \"\\e091\";\n}\n.glyphicon-arrow-right:before {\n content: \"\\e092\";\n}\n.glyphicon-arrow-up:before {\n content: \"\\e093\";\n}\n.glyphicon-arrow-down:before {\n content: \"\\e094\";\n}\n.glyphicon-share-alt:before {\n content: \"\\e095\";\n}\n.glyphicon-resize-full:before {\n content: \"\\e096\";\n}\n.glyphicon-resize-small:before {\n content: \"\\e097\";\n}\n.glyphicon-exclamation-sign:before {\n content: \"\\e101\";\n}\n.glyphicon-gift:before {\n content: \"\\e102\";\n}\n.glyphicon-leaf:before {\n content: \"\\e103\";\n}\n.glyphicon-fire:before {\n content: \"\\e104\";\n}\n.glyphicon-eye-open:before {\n content: \"\\e105\";\n}\n.glyphicon-eye-close:before {\n content: \"\\e106\";\n}\n.glyphicon-warning-sign:before {\n content: \"\\e107\";\n}\n.glyphicon-plane:before {\n content: \"\\e108\";\n}\n.glyphicon-calendar:before {\n content: \"\\e109\";\n}\n.glyphicon-random:before {\n content: \"\\e110\";\n}\n.glyphicon-comment:before {\n content: \"\\e111\";\n}\n.glyphicon-magnet:before {\n content: \"\\e112\";\n}\n.glyphicon-chevron-up:before {\n content: \"\\e113\";\n}\n.glyphicon-chevron-down:before {\n content: \"\\e114\";\n}\n.glyphicon-retweet:before {\n content: \"\\e115\";\n}\n.glyphicon-shopping-cart:before {\n content: \"\\e116\";\n}\n.glyphicon-folder-close:before {\n content: \"\\e117\";\n}\n.glyphicon-folder-open:before {\n content: \"\\e118\";\n}\n.glyphicon-resize-vertical:before {\n content: \"\\e119\";\n}\n.glyphicon-resize-horizontal:before {\n content: \"\\e120\";\n}\n.glyphicon-hdd:before {\n content: \"\\e121\";\n}\n.glyphicon-bullhorn:before {\n content: \"\\e122\";\n}\n.glyphicon-bell:before {\n content: \"\\e123\";\n}\n.glyphicon-certificate:before {\n content: \"\\e124\";\n}\n.glyphicon-thumbs-up:before {\n content: \"\\e125\";\n}\n.glyphicon-thumbs-down:before {\n content: \"\\e126\";\n}\n.glyphicon-hand-right:before {\n content: \"\\e127\";\n}\n.glyphicon-hand-left:before {\n content: \"\\e128\";\n}\n.glyphicon-hand-up:before {\n content: \"\\e129\";\n}\n.glyphicon-hand-down:before {\n content: \"\\e130\";\n}\n.glyphicon-circle-arrow-right:before {\n content: \"\\e131\";\n}\n.glyphicon-circle-arrow-left:before {\n content: \"\\e132\";\n}\n.glyphicon-circle-arrow-up:before {\n content: \"\\e133\";\n}\n.glyphicon-circle-arrow-down:before {\n content: \"\\e134\";\n}\n.glyphicon-globe:before {\n content: \"\\e135\";\n}\n.glyphicon-wrench:before {\n content: \"\\e136\";\n}\n.glyphicon-tasks:before {\n content: \"\\e137\";\n}\n.glyphicon-filter:before {\n content: \"\\e138\";\n}\n.glyphicon-briefcase:before {\n content: \"\\e139\";\n}\n.glyphicon-fullscreen:before {\n content: \"\\e140\";\n}\n.glyphicon-dashboard:before {\n content: \"\\e141\";\n}\n.glyphicon-paperclip:before {\n content: \"\\e142\";\n}\n.glyphicon-heart-empty:before {\n content: \"\\e143\";\n}\n.glyphicon-link:before {\n content: \"\\e144\";\n}\n.glyphicon-phone:before {\n content: \"\\e145\";\n}\n.glyphicon-pushpin:before {\n content: \"\\e146\";\n}\n.glyphicon-usd:before {\n content: \"\\e148\";\n}\n.glyphicon-gbp:before {\n content: \"\\e149\";\n}\n.glyphicon-sort:before {\n content: \"\\e150\";\n}\n.glyphicon-sort-by-alphabet:before {\n content: \"\\e151\";\n}\n.glyphicon-sort-by-alphabet-alt:before {\n content: \"\\e152\";\n}\n.glyphicon-sort-by-order:before {\n content: \"\\e153\";\n}\n.glyphicon-sort-by-order-alt:before {\n content: \"\\e154\";\n}\n.glyphicon-sort-by-attributes:before {\n content: \"\\e155\";\n}\n.glyphicon-sort-by-attributes-alt:before {\n content: \"\\e156\";\n}\n.glyphicon-unchecked:before {\n content: \"\\e157\";\n}\n.glyphicon-expand:before {\n content: \"\\e158\";\n}\n.glyphicon-collapse-down:before {\n content: \"\\e159\";\n}\n.glyphicon-collapse-up:before {\n content: \"\\e160\";\n}\n.glyphicon-log-in:before {\n content: \"\\e161\";\n}\n.glyphicon-flash:before {\n content: \"\\e162\";\n}\n.glyphicon-log-out:before {\n content: \"\\e163\";\n}\n.glyphicon-new-window:before {\n content: \"\\e164\";\n}\n.glyphicon-record:before {\n content: \"\\e165\";\n}\n.glyphicon-save:before {\n content: \"\\e166\";\n}\n.glyphicon-open:before {\n content: \"\\e167\";\n}\n.glyphicon-saved:before {\n content: \"\\e168\";\n}\n.glyphicon-import:before {\n content: \"\\e169\";\n}\n.glyphicon-export:before {\n content: \"\\e170\";\n}\n.glyphicon-send:before {\n content: \"\\e171\";\n}\n.glyphicon-floppy-disk:before {\n content: \"\\e172\";\n}\n.glyphicon-floppy-saved:before {\n content: \"\\e173\";\n}\n.glyphicon-floppy-remove:before {\n content: \"\\e174\";\n}\n.glyphicon-floppy-save:before {\n content: \"\\e175\";\n}\n.glyphicon-floppy-open:before {\n content: \"\\e176\";\n}\n.glyphicon-credit-card:before {\n content: \"\\e177\";\n}\n.glyphicon-transfer:before {\n content: \"\\e178\";\n}\n.glyphicon-cutlery:before {\n content: \"\\e179\";\n}\n.glyphicon-header:before {\n content: \"\\e180\";\n}\n.glyphicon-compressed:before {\n content: \"\\e181\";\n}\n.glyphicon-earphone:before {\n content: \"\\e182\";\n}\n.glyphicon-phone-alt:before {\n content: \"\\e183\";\n}\n.glyphicon-tower:before {\n content: \"\\e184\";\n}\n.glyphicon-stats:before {\n content: \"\\e185\";\n}\n.glyphicon-sd-video:before {\n content: \"\\e186\";\n}\n.glyphicon-hd-video:before {\n content: \"\\e187\";\n}\n.glyphicon-subtitles:before {\n content: \"\\e188\";\n}\n.glyphicon-sound-stereo:before {\n content: \"\\e189\";\n}\n.glyphicon-sound-dolby:before {\n content: \"\\e190\";\n}\n.glyphicon-sound-5-1:before {\n content: \"\\e191\";\n}\n.glyphicon-sound-6-1:before {\n content: \"\\e192\";\n}\n.glyphicon-sound-7-1:before {\n content: \"\\e193\";\n}\n.glyphicon-copyright-mark:before {\n content: \"\\e194\";\n}\n.glyphicon-registration-mark:before {\n content: \"\\e195\";\n}\n.glyphicon-cloud-download:before {\n content: \"\\e197\";\n}\n.glyphicon-cloud-upload:before {\n content: \"\\e198\";\n}\n.glyphicon-tree-conifer:before {\n content: \"\\e199\";\n}\n.glyphicon-tree-deciduous:before {\n content: \"\\e200\";\n}\n.glyphicon-cd:before {\n content: \"\\e201\";\n}\n.glyphicon-save-file:before {\n content: \"\\e202\";\n}\n.glyphicon-open-file:before {\n content: \"\\e203\";\n}\n.glyphicon-level-up:before {\n content: \"\\e204\";\n}\n.glyphicon-copy:before {\n content: \"\\e205\";\n}\n.glyphicon-paste:before {\n content: \"\\e206\";\n}\n.glyphicon-alert:before {\n content: \"\\e209\";\n}\n.glyphicon-equalizer:before {\n content: \"\\e210\";\n}\n.glyphicon-king:before {\n content: \"\\e211\";\n}\n.glyphicon-queen:before {\n content: \"\\e212\";\n}\n.glyphicon-pawn:before {\n content: \"\\e213\";\n}\n.glyphicon-bishop:before {\n content: \"\\e214\";\n}\n.glyphicon-knight:before {\n content: \"\\e215\";\n}\n.glyphicon-baby-formula:before {\n content: \"\\e216\";\n}\n.glyphicon-tent:before {\n content: \"\\26fa\";\n}\n.glyphicon-blackboard:before {\n content: \"\\e218\";\n}\n.glyphicon-bed:before {\n content: \"\\e219\";\n}\n.glyphicon-apple:before {\n content: \"\\f8ff\";\n}\n.glyphicon-erase:before {\n content: \"\\e221\";\n}\n.glyphicon-hourglass:before {\n content: \"\\231b\";\n}\n.glyphicon-lamp:before {\n content: \"\\e223\";\n}\n.glyphicon-duplicate:before {\n content: \"\\e224\";\n}\n.glyphicon-piggy-bank:before {\n content: \"\\e225\";\n}\n.glyphicon-scissors:before {\n content: \"\\e226\";\n}\n.glyphicon-bitcoin:before {\n content: \"\\e227\";\n}\n.glyphicon-btc:before {\n content: \"\\e227\";\n}\n.glyphicon-xbt:before {\n content: \"\\e227\";\n}\n.glyphicon-yen:before {\n content: \"\\00a5\";\n}\n.glyphicon-jpy:before {\n content: \"\\00a5\";\n}\n.glyphicon-ruble:before {\n content: \"\\20bd\";\n}\n.glyphicon-rub:before {\n content: \"\\20bd\";\n}\n.glyphicon-scale:before {\n content: \"\\e230\";\n}\n.glyphicon-ice-lolly:before {\n content: \"\\e231\";\n}\n.glyphicon-ice-lolly-tasted:before {\n content: \"\\e232\";\n}\n.glyphicon-education:before {\n content: \"\\e233\";\n}\n.glyphicon-option-horizontal:before {\n content: \"\\e234\";\n}\n.glyphicon-option-vertical:before {\n content: \"\\e235\";\n}\n.glyphicon-menu-hamburger:before {\n content: \"\\e236\";\n}\n.glyphicon-modal-window:before {\n content: \"\\e237\";\n}\n.glyphicon-oil:before {\n content: \"\\e238\";\n}\n.glyphicon-grain:before {\n content: \"\\e239\";\n}\n.glyphicon-sunglasses:before {\n content: \"\\e240\";\n}\n.glyphicon-text-size:before {\n content: \"\\e241\";\n}\n.glyphicon-text-color:before {\n content: \"\\e242\";\n}\n.glyphicon-text-background:before {\n content: \"\\e243\";\n}\n.glyphicon-object-align-top:before {\n content: \"\\e244\";\n}\n.glyphicon-object-align-bottom:before {\n content: \"\\e245\";\n}\n.glyphicon-object-align-horizontal:before {\n content: \"\\e246\";\n}\n.glyphicon-object-align-left:before {\n content: \"\\e247\";\n}\n.glyphicon-object-align-vertical:before {\n content: \"\\e248\";\n}\n.glyphicon-object-align-right:before {\n content: \"\\e249\";\n}\n.glyphicon-triangle-right:before {\n content: \"\\e250\";\n}\n.glyphicon-triangle-left:before {\n content: \"\\e251\";\n}\n.glyphicon-triangle-bottom:before {\n content: \"\\e252\";\n}\n.glyphicon-triangle-top:before {\n content: \"\\e253\";\n}\n.glyphicon-console:before {\n content: \"\\e254\";\n}\n.glyphicon-superscript:before {\n content: \"\\e255\";\n}\n.glyphicon-subscript:before {\n content: \"\\e256\";\n}\n.glyphicon-menu-left:before {\n content: \"\\e257\";\n}\n.glyphicon-menu-right:before {\n content: \"\\e258\";\n}\n.glyphicon-menu-down:before {\n content: \"\\e259\";\n}\n.glyphicon-menu-up:before {\n content: \"\\e260\";\n}\n* {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n*:before,\n*:after {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\nbody {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 14px;\n line-height: 1.42857143;\n color: #333333;\n background-color: #fff;\n}\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\na {\n color: #337ab7;\n text-decoration: none;\n}\na:hover,\na:focus {\n color: #23527c;\n text-decoration: underline;\n}\na:focus {\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\nfigure {\n margin: 0;\n}\nimg {\n vertical-align: middle;\n}\n.img-responsive,\n.thumbnail > img,\n.thumbnail a > img,\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n display: block;\n max-width: 100%;\n height: auto;\n}\n.img-rounded {\n border-radius: 6px;\n}\n.img-thumbnail {\n padding: 4px;\n line-height: 1.42857143;\n background-color: #fff;\n border: 1px solid #ddd;\n border-radius: 4px;\n -webkit-transition: all 0.2s ease-in-out;\n -o-transition: all 0.2s ease-in-out;\n transition: all 0.2s ease-in-out;\n display: inline-block;\n max-width: 100%;\n height: auto;\n}\n.img-circle {\n border-radius: 50%;\n}\nhr {\n margin-top: 20px;\n margin-bottom: 20px;\n border: 0;\n border-top: 1px solid #eeeeee;\n}\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\n[role=\"button\"] {\n cursor: pointer;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\n.h1,\n.h2,\n.h3,\n.h4,\n.h5,\n.h6 {\n font-family: inherit;\n font-weight: 500;\n line-height: 1.1;\n color: inherit;\n}\nh1 small,\nh2 small,\nh3 small,\nh4 small,\nh5 small,\nh6 small,\n.h1 small,\n.h2 small,\n.h3 small,\n.h4 small,\n.h5 small,\n.h6 small,\nh1 .small,\nh2 .small,\nh3 .small,\nh4 .small,\nh5 .small,\nh6 .small,\n.h1 .small,\n.h2 .small,\n.h3 .small,\n.h4 .small,\n.h5 .small,\n.h6 .small {\n font-weight: 400;\n line-height: 1;\n color: #777777;\n}\nh1,\n.h1,\nh2,\n.h2,\nh3,\n.h3 {\n margin-top: 20px;\n margin-bottom: 10px;\n}\nh1 small,\n.h1 small,\nh2 small,\n.h2 small,\nh3 small,\n.h3 small,\nh1 .small,\n.h1 .small,\nh2 .small,\n.h2 .small,\nh3 .small,\n.h3 .small {\n font-size: 65%;\n}\nh4,\n.h4,\nh5,\n.h5,\nh6,\n.h6 {\n margin-top: 10px;\n margin-bottom: 10px;\n}\nh4 small,\n.h4 small,\nh5 small,\n.h5 small,\nh6 small,\n.h6 small,\nh4 .small,\n.h4 .small,\nh5 .small,\n.h5 .small,\nh6 .small,\n.h6 .small {\n font-size: 75%;\n}\nh1,\n.h1 {\n font-size: 36px;\n}\nh2,\n.h2 {\n font-size: 30px;\n}\nh3,\n.h3 {\n font-size: 24px;\n}\nh4,\n.h4 {\n font-size: 18px;\n}\nh5,\n.h5 {\n font-size: 14px;\n}\nh6,\n.h6 {\n font-size: 12px;\n}\np {\n margin: 0 0 10px;\n}\n.lead {\n margin-bottom: 20px;\n font-size: 16px;\n font-weight: 300;\n line-height: 1.4;\n}\n@media (min-width: 768px) {\n .lead {\n font-size: 21px;\n }\n}\nsmall,\n.small {\n font-size: 85%;\n}\nmark,\n.mark {\n padding: 0.2em;\n background-color: #fcf8e3;\n}\n.text-left {\n text-align: left;\n}\n.text-right {\n text-align: right;\n}\n.text-center {\n text-align: center;\n}\n.text-justify {\n text-align: justify;\n}\n.text-nowrap {\n white-space: nowrap;\n}\n.text-lowercase {\n text-transform: lowercase;\n}\n.text-uppercase {\n text-transform: uppercase;\n}\n.text-capitalize {\n text-transform: capitalize;\n}\n.text-muted {\n color: #777777;\n}\n.text-primary {\n color: #337ab7;\n}\na.text-primary:hover,\na.text-primary:focus {\n color: #286090;\n}\n.text-success {\n color: #3c763d;\n}\na.text-success:hover,\na.text-success:focus {\n color: #2b542c;\n}\n.text-info {\n color: #31708f;\n}\na.text-info:hover,\na.text-info:focus {\n color: #245269;\n}\n.text-warning {\n color: #8a6d3b;\n}\na.text-warning:hover,\na.text-warning:focus {\n color: #66512c;\n}\n.text-danger {\n color: #a94442;\n}\na.text-danger:hover,\na.text-danger:focus {\n color: #843534;\n}\n.bg-primary {\n color: #fff;\n background-color: #337ab7;\n}\na.bg-primary:hover,\na.bg-primary:focus {\n background-color: #286090;\n}\n.bg-success {\n background-color: #dff0d8;\n}\na.bg-success:hover,\na.bg-success:focus {\n background-color: #c1e2b3;\n}\n.bg-info {\n background-color: #d9edf7;\n}\na.bg-info:hover,\na.bg-info:focus {\n background-color: #afd9ee;\n}\n.bg-warning {\n background-color: #fcf8e3;\n}\na.bg-warning:hover,\na.bg-warning:focus {\n background-color: #f7ecb5;\n}\n.bg-danger {\n background-color: #f2dede;\n}\na.bg-danger:hover,\na.bg-danger:focus {\n background-color: #e4b9b9;\n}\n.page-header {\n padding-bottom: 9px;\n margin: 40px 0 20px;\n border-bottom: 1px solid #eeeeee;\n}\nul,\nol {\n margin-top: 0;\n margin-bottom: 10px;\n}\nul ul,\nol ul,\nul ol,\nol ol {\n margin-bottom: 0;\n}\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n.list-inline {\n padding-left: 0;\n list-style: none;\n margin-left: -5px;\n}\n.list-inline > li {\n display: inline-block;\n padding-right: 5px;\n padding-left: 5px;\n}\ndl {\n margin-top: 0;\n margin-bottom: 20px;\n}\ndt,\ndd {\n line-height: 1.42857143;\n}\ndt {\n font-weight: 700;\n}\ndd {\n margin-left: 0;\n}\n@media (min-width: 768px) {\n .dl-horizontal dt {\n float: left;\n width: 160px;\n clear: left;\n text-align: right;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .dl-horizontal dd {\n margin-left: 180px;\n }\n}\nabbr[title],\nabbr[data-original-title] {\n cursor: help;\n}\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\nblockquote {\n padding: 10px 20px;\n margin: 0 0 20px;\n font-size: 17.5px;\n border-left: 5px solid #eeeeee;\n}\nblockquote p:last-child,\nblockquote ul:last-child,\nblockquote ol:last-child {\n margin-bottom: 0;\n}\nblockquote footer,\nblockquote small,\nblockquote .small {\n display: block;\n font-size: 80%;\n line-height: 1.42857143;\n color: #777777;\n}\nblockquote footer:before,\nblockquote small:before,\nblockquote .small:before {\n content: \"\\2014 \\00A0\";\n}\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n text-align: right;\n border-right: 5px solid #eeeeee;\n border-left: 0;\n}\n.blockquote-reverse footer:before,\nblockquote.pull-right footer:before,\n.blockquote-reverse small:before,\nblockquote.pull-right small:before,\n.blockquote-reverse .small:before,\nblockquote.pull-right .small:before {\n content: \"\";\n}\n.blockquote-reverse footer:after,\nblockquote.pull-right footer:after,\n.blockquote-reverse small:after,\nblockquote.pull-right small:after,\n.blockquote-reverse .small:after,\nblockquote.pull-right .small:after {\n content: \"\\00A0 \\2014\";\n}\naddress {\n margin-bottom: 20px;\n font-style: normal;\n line-height: 1.42857143;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n}\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: #c7254e;\n background-color: #f9f2f4;\n border-radius: 4px;\n}\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: #fff;\n background-color: #333;\n border-radius: 3px;\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\nkbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: 700;\n box-shadow: none;\n}\npre {\n display: block;\n padding: 9.5px;\n margin: 0 0 10px;\n font-size: 13px;\n line-height: 1.42857143;\n color: #333333;\n word-break: break-all;\n word-wrap: break-word;\n background-color: #f5f5f5;\n border: 1px solid #ccc;\n border-radius: 4px;\n}\npre code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n}\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n}\n.container {\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n@media (min-width: 768px) {\n .container {\n width: 750px;\n }\n}\n@media (min-width: 992px) {\n .container {\n width: 970px;\n }\n}\n@media (min-width: 1200px) {\n .container {\n width: 1170px;\n }\n}\n.container-fluid {\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n.row {\n margin-right: -15px;\n margin-left: -15px;\n}\n.row-no-gutters {\n margin-right: 0;\n margin-left: 0;\n}\n.row-no-gutters [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n}\n.col-xs-1,\n.col-sm-1,\n.col-md-1,\n.col-lg-1,\n.col-xs-2,\n.col-sm-2,\n.col-md-2,\n.col-lg-2,\n.col-xs-3,\n.col-sm-3,\n.col-md-3,\n.col-lg-3,\n.col-xs-4,\n.col-sm-4,\n.col-md-4,\n.col-lg-4,\n.col-xs-5,\n.col-sm-5,\n.col-md-5,\n.col-lg-5,\n.col-xs-6,\n.col-sm-6,\n.col-md-6,\n.col-lg-6,\n.col-xs-7,\n.col-sm-7,\n.col-md-7,\n.col-lg-7,\n.col-xs-8,\n.col-sm-8,\n.col-md-8,\n.col-lg-8,\n.col-xs-9,\n.col-sm-9,\n.col-md-9,\n.col-lg-9,\n.col-xs-10,\n.col-sm-10,\n.col-md-10,\n.col-lg-10,\n.col-xs-11,\n.col-sm-11,\n.col-md-11,\n.col-lg-11,\n.col-xs-12,\n.col-sm-12,\n.col-md-12,\n.col-lg-12 {\n position: relative;\n min-height: 1px;\n padding-right: 15px;\n padding-left: 15px;\n}\n.col-xs-1,\n.col-xs-2,\n.col-xs-3,\n.col-xs-4,\n.col-xs-5,\n.col-xs-6,\n.col-xs-7,\n.col-xs-8,\n.col-xs-9,\n.col-xs-10,\n.col-xs-11,\n.col-xs-12 {\n float: left;\n}\n.col-xs-12 {\n width: 100%;\n}\n.col-xs-11 {\n width: 91.66666667%;\n}\n.col-xs-10 {\n width: 83.33333333%;\n}\n.col-xs-9 {\n width: 75%;\n}\n.col-xs-8 {\n width: 66.66666667%;\n}\n.col-xs-7 {\n width: 58.33333333%;\n}\n.col-xs-6 {\n width: 50%;\n}\n.col-xs-5 {\n width: 41.66666667%;\n}\n.col-xs-4 {\n width: 33.33333333%;\n}\n.col-xs-3 {\n width: 25%;\n}\n.col-xs-2 {\n width: 16.66666667%;\n}\n.col-xs-1 {\n width: 8.33333333%;\n}\n.col-xs-pull-12 {\n right: 100%;\n}\n.col-xs-pull-11 {\n right: 91.66666667%;\n}\n.col-xs-pull-10 {\n right: 83.33333333%;\n}\n.col-xs-pull-9 {\n right: 75%;\n}\n.col-xs-pull-8 {\n right: 66.66666667%;\n}\n.col-xs-pull-7 {\n right: 58.33333333%;\n}\n.col-xs-pull-6 {\n right: 50%;\n}\n.col-xs-pull-5 {\n right: 41.66666667%;\n}\n.col-xs-pull-4 {\n right: 33.33333333%;\n}\n.col-xs-pull-3 {\n right: 25%;\n}\n.col-xs-pull-2 {\n right: 16.66666667%;\n}\n.col-xs-pull-1 {\n right: 8.33333333%;\n}\n.col-xs-pull-0 {\n right: auto;\n}\n.col-xs-push-12 {\n left: 100%;\n}\n.col-xs-push-11 {\n left: 91.66666667%;\n}\n.col-xs-push-10 {\n left: 83.33333333%;\n}\n.col-xs-push-9 {\n left: 75%;\n}\n.col-xs-push-8 {\n left: 66.66666667%;\n}\n.col-xs-push-7 {\n left: 58.33333333%;\n}\n.col-xs-push-6 {\n left: 50%;\n}\n.col-xs-push-5 {\n left: 41.66666667%;\n}\n.col-xs-push-4 {\n left: 33.33333333%;\n}\n.col-xs-push-3 {\n left: 25%;\n}\n.col-xs-push-2 {\n left: 16.66666667%;\n}\n.col-xs-push-1 {\n left: 8.33333333%;\n}\n.col-xs-push-0 {\n left: auto;\n}\n.col-xs-offset-12 {\n margin-left: 100%;\n}\n.col-xs-offset-11 {\n margin-left: 91.66666667%;\n}\n.col-xs-offset-10 {\n margin-left: 83.33333333%;\n}\n.col-xs-offset-9 {\n margin-left: 75%;\n}\n.col-xs-offset-8 {\n margin-left: 66.66666667%;\n}\n.col-xs-offset-7 {\n margin-left: 58.33333333%;\n}\n.col-xs-offset-6 {\n margin-left: 50%;\n}\n.col-xs-offset-5 {\n margin-left: 41.66666667%;\n}\n.col-xs-offset-4 {\n margin-left: 33.33333333%;\n}\n.col-xs-offset-3 {\n margin-left: 25%;\n}\n.col-xs-offset-2 {\n margin-left: 16.66666667%;\n}\n.col-xs-offset-1 {\n margin-left: 8.33333333%;\n}\n.col-xs-offset-0 {\n margin-left: 0%;\n}\n@media (min-width: 768px) {\n .col-sm-1,\n .col-sm-2,\n .col-sm-3,\n .col-sm-4,\n .col-sm-5,\n .col-sm-6,\n .col-sm-7,\n .col-sm-8,\n .col-sm-9,\n .col-sm-10,\n .col-sm-11,\n .col-sm-12 {\n float: left;\n }\n .col-sm-12 {\n width: 100%;\n }\n .col-sm-11 {\n width: 91.66666667%;\n }\n .col-sm-10 {\n width: 83.33333333%;\n }\n .col-sm-9 {\n width: 75%;\n }\n .col-sm-8 {\n width: 66.66666667%;\n }\n .col-sm-7 {\n width: 58.33333333%;\n }\n .col-sm-6 {\n width: 50%;\n }\n .col-sm-5 {\n width: 41.66666667%;\n }\n .col-sm-4 {\n width: 33.33333333%;\n }\n .col-sm-3 {\n width: 25%;\n }\n .col-sm-2 {\n width: 16.66666667%;\n }\n .col-sm-1 {\n width: 8.33333333%;\n }\n .col-sm-pull-12 {\n right: 100%;\n }\n .col-sm-pull-11 {\n right: 91.66666667%;\n }\n .col-sm-pull-10 {\n right: 83.33333333%;\n }\n .col-sm-pull-9 {\n right: 75%;\n }\n .col-sm-pull-8 {\n right: 66.66666667%;\n }\n .col-sm-pull-7 {\n right: 58.33333333%;\n }\n .col-sm-pull-6 {\n right: 50%;\n }\n .col-sm-pull-5 {\n right: 41.66666667%;\n }\n .col-sm-pull-4 {\n right: 33.33333333%;\n }\n .col-sm-pull-3 {\n right: 25%;\n }\n .col-sm-pull-2 {\n right: 16.66666667%;\n }\n .col-sm-pull-1 {\n right: 8.33333333%;\n }\n .col-sm-pull-0 {\n right: auto;\n }\n .col-sm-push-12 {\n left: 100%;\n }\n .col-sm-push-11 {\n left: 91.66666667%;\n }\n .col-sm-push-10 {\n left: 83.33333333%;\n }\n .col-sm-push-9 {\n left: 75%;\n }\n .col-sm-push-8 {\n left: 66.66666667%;\n }\n .col-sm-push-7 {\n left: 58.33333333%;\n }\n .col-sm-push-6 {\n left: 50%;\n }\n .col-sm-push-5 {\n left: 41.66666667%;\n }\n .col-sm-push-4 {\n left: 33.33333333%;\n }\n .col-sm-push-3 {\n left: 25%;\n }\n .col-sm-push-2 {\n left: 16.66666667%;\n }\n .col-sm-push-1 {\n left: 8.33333333%;\n }\n .col-sm-push-0 {\n left: auto;\n }\n .col-sm-offset-12 {\n margin-left: 100%;\n }\n .col-sm-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-sm-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-sm-offset-9 {\n margin-left: 75%;\n }\n .col-sm-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-sm-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-sm-offset-6 {\n margin-left: 50%;\n }\n .col-sm-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-sm-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-sm-offset-3 {\n margin-left: 25%;\n }\n .col-sm-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-sm-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-sm-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 992px) {\n .col-md-1,\n .col-md-2,\n .col-md-3,\n .col-md-4,\n .col-md-5,\n .col-md-6,\n .col-md-7,\n .col-md-8,\n .col-md-9,\n .col-md-10,\n .col-md-11,\n .col-md-12 {\n float: left;\n }\n .col-md-12 {\n width: 100%;\n }\n .col-md-11 {\n width: 91.66666667%;\n }\n .col-md-10 {\n width: 83.33333333%;\n }\n .col-md-9 {\n width: 75%;\n }\n .col-md-8 {\n width: 66.66666667%;\n }\n .col-md-7 {\n width: 58.33333333%;\n }\n .col-md-6 {\n width: 50%;\n }\n .col-md-5 {\n width: 41.66666667%;\n }\n .col-md-4 {\n width: 33.33333333%;\n }\n .col-md-3 {\n width: 25%;\n }\n .col-md-2 {\n width: 16.66666667%;\n }\n .col-md-1 {\n width: 8.33333333%;\n }\n .col-md-pull-12 {\n right: 100%;\n }\n .col-md-pull-11 {\n right: 91.66666667%;\n }\n .col-md-pull-10 {\n right: 83.33333333%;\n }\n .col-md-pull-9 {\n right: 75%;\n }\n .col-md-pull-8 {\n right: 66.66666667%;\n }\n .col-md-pull-7 {\n right: 58.33333333%;\n }\n .col-md-pull-6 {\n right: 50%;\n }\n .col-md-pull-5 {\n right: 41.66666667%;\n }\n .col-md-pull-4 {\n right: 33.33333333%;\n }\n .col-md-pull-3 {\n right: 25%;\n }\n .col-md-pull-2 {\n right: 16.66666667%;\n }\n .col-md-pull-1 {\n right: 8.33333333%;\n }\n .col-md-pull-0 {\n right: auto;\n }\n .col-md-push-12 {\n left: 100%;\n }\n .col-md-push-11 {\n left: 91.66666667%;\n }\n .col-md-push-10 {\n left: 83.33333333%;\n }\n .col-md-push-9 {\n left: 75%;\n }\n .col-md-push-8 {\n left: 66.66666667%;\n }\n .col-md-push-7 {\n left: 58.33333333%;\n }\n .col-md-push-6 {\n left: 50%;\n }\n .col-md-push-5 {\n left: 41.66666667%;\n }\n .col-md-push-4 {\n left: 33.33333333%;\n }\n .col-md-push-3 {\n left: 25%;\n }\n .col-md-push-2 {\n left: 16.66666667%;\n }\n .col-md-push-1 {\n left: 8.33333333%;\n }\n .col-md-push-0 {\n left: auto;\n }\n .col-md-offset-12 {\n margin-left: 100%;\n }\n .col-md-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-md-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-md-offset-9 {\n margin-left: 75%;\n }\n .col-md-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-md-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-md-offset-6 {\n margin-left: 50%;\n }\n .col-md-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-md-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-md-offset-3 {\n margin-left: 25%;\n }\n .col-md-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-md-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-md-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 1200px) {\n .col-lg-1,\n .col-lg-2,\n .col-lg-3,\n .col-lg-4,\n .col-lg-5,\n .col-lg-6,\n .col-lg-7,\n .col-lg-8,\n .col-lg-9,\n .col-lg-10,\n .col-lg-11,\n .col-lg-12 {\n float: left;\n }\n .col-lg-12 {\n width: 100%;\n }\n .col-lg-11 {\n width: 91.66666667%;\n }\n .col-lg-10 {\n width: 83.33333333%;\n }\n .col-lg-9 {\n width: 75%;\n }\n .col-lg-8 {\n width: 66.66666667%;\n }\n .col-lg-7 {\n width: 58.33333333%;\n }\n .col-lg-6 {\n width: 50%;\n }\n .col-lg-5 {\n width: 41.66666667%;\n }\n .col-lg-4 {\n width: 33.33333333%;\n }\n .col-lg-3 {\n width: 25%;\n }\n .col-lg-2 {\n width: 16.66666667%;\n }\n .col-lg-1 {\n width: 8.33333333%;\n }\n .col-lg-pull-12 {\n right: 100%;\n }\n .col-lg-pull-11 {\n right: 91.66666667%;\n }\n .col-lg-pull-10 {\n right: 83.33333333%;\n }\n .col-lg-pull-9 {\n right: 75%;\n }\n .col-lg-pull-8 {\n right: 66.66666667%;\n }\n .col-lg-pull-7 {\n right: 58.33333333%;\n }\n .col-lg-pull-6 {\n right: 50%;\n }\n .col-lg-pull-5 {\n right: 41.66666667%;\n }\n .col-lg-pull-4 {\n right: 33.33333333%;\n }\n .col-lg-pull-3 {\n right: 25%;\n }\n .col-lg-pull-2 {\n right: 16.66666667%;\n }\n .col-lg-pull-1 {\n right: 8.33333333%;\n }\n .col-lg-pull-0 {\n right: auto;\n }\n .col-lg-push-12 {\n left: 100%;\n }\n .col-lg-push-11 {\n left: 91.66666667%;\n }\n .col-lg-push-10 {\n left: 83.33333333%;\n }\n .col-lg-push-9 {\n left: 75%;\n }\n .col-lg-push-8 {\n left: 66.66666667%;\n }\n .col-lg-push-7 {\n left: 58.33333333%;\n }\n .col-lg-push-6 {\n left: 50%;\n }\n .col-lg-push-5 {\n left: 41.66666667%;\n }\n .col-lg-push-4 {\n left: 33.33333333%;\n }\n .col-lg-push-3 {\n left: 25%;\n }\n .col-lg-push-2 {\n left: 16.66666667%;\n }\n .col-lg-push-1 {\n left: 8.33333333%;\n }\n .col-lg-push-0 {\n left: auto;\n }\n .col-lg-offset-12 {\n margin-left: 100%;\n }\n .col-lg-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-lg-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-lg-offset-9 {\n margin-left: 75%;\n }\n .col-lg-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-lg-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-lg-offset-6 {\n margin-left: 50%;\n }\n .col-lg-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-lg-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-lg-offset-3 {\n margin-left: 25%;\n }\n .col-lg-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-lg-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-lg-offset-0 {\n margin-left: 0%;\n }\n}\ntable {\n background-color: transparent;\n}\ntable col[class*=\"col-\"] {\n position: static;\n display: table-column;\n float: none;\n}\ntable td[class*=\"col-\"],\ntable th[class*=\"col-\"] {\n position: static;\n display: table-cell;\n float: none;\n}\ncaption {\n padding-top: 8px;\n padding-bottom: 8px;\n color: #777777;\n text-align: left;\n}\nth {\n text-align: left;\n}\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 20px;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n padding: 8px;\n line-height: 1.42857143;\n vertical-align: top;\n border-top: 1px solid #ddd;\n}\n.table > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid #ddd;\n}\n.table > caption + thead > tr:first-child > th,\n.table > colgroup + thead > tr:first-child > th,\n.table > thead:first-child > tr:first-child > th,\n.table > caption + thead > tr:first-child > td,\n.table > colgroup + thead > tr:first-child > td,\n.table > thead:first-child > tr:first-child > td {\n border-top: 0;\n}\n.table > tbody + tbody {\n border-top: 2px solid #ddd;\n}\n.table .table {\n background-color: #fff;\n}\n.table-condensed > thead > tr > th,\n.table-condensed > tbody > tr > th,\n.table-condensed > tfoot > tr > th,\n.table-condensed > thead > tr > td,\n.table-condensed > tbody > tr > td,\n.table-condensed > tfoot > tr > td {\n padding: 5px;\n}\n.table-bordered {\n border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n border-bottom-width: 2px;\n}\n.table-striped > tbody > tr:nth-of-type(odd) {\n background-color: #f9f9f9;\n}\n.table-hover > tbody > tr:hover {\n background-color: #f5f5f5;\n}\n.table > thead > tr > td.active,\n.table > tbody > tr > td.active,\n.table > tfoot > tr > td.active,\n.table > thead > tr > th.active,\n.table > tbody > tr > th.active,\n.table > tfoot > tr > th.active,\n.table > thead > tr.active > td,\n.table > tbody > tr.active > td,\n.table > tfoot > tr.active > td,\n.table > thead > tr.active > th,\n.table > tbody > tr.active > th,\n.table > tfoot > tr.active > th {\n background-color: #f5f5f5;\n}\n.table-hover > tbody > tr > td.active:hover,\n.table-hover > tbody > tr > th.active:hover,\n.table-hover > tbody > tr.active:hover > td,\n.table-hover > tbody > tr:hover > .active,\n.table-hover > tbody > tr.active:hover > th {\n background-color: #e8e8e8;\n}\n.table > thead > tr > td.success,\n.table > tbody > tr > td.success,\n.table > tfoot > tr > td.success,\n.table > thead > tr > th.success,\n.table > tbody > tr > th.success,\n.table > tfoot > tr > th.success,\n.table > thead > tr.success > td,\n.table > tbody > tr.success > td,\n.table > tfoot > tr.success > td,\n.table > thead > tr.success > th,\n.table > tbody > tr.success > th,\n.table > tfoot > tr.success > th {\n background-color: #dff0d8;\n}\n.table-hover > tbody > tr > td.success:hover,\n.table-hover > tbody > tr > th.success:hover,\n.table-hover > tbody > tr.success:hover > td,\n.table-hover > tbody > tr:hover > .success,\n.table-hover > tbody > tr.success:hover > th {\n background-color: #d0e9c6;\n}\n.table > thead > tr > td.info,\n.table > tbody > tr > td.info,\n.table > tfoot > tr > td.info,\n.table > thead > tr > th.info,\n.table > tbody > tr > th.info,\n.table > tfoot > tr > th.info,\n.table > thead > tr.info > td,\n.table > tbody > tr.info > td,\n.table > tfoot > tr.info > td,\n.table > thead > tr.info > th,\n.table > tbody > tr.info > th,\n.table > tfoot > tr.info > th {\n background-color: #d9edf7;\n}\n.table-hover > tbody > tr > td.info:hover,\n.table-hover > tbody > tr > th.info:hover,\n.table-hover > tbody > tr.info:hover > td,\n.table-hover > tbody > tr:hover > .info,\n.table-hover > tbody > tr.info:hover > th {\n background-color: #c4e3f3;\n}\n.table > thead > tr > td.warning,\n.table > tbody > tr > td.warning,\n.table > tfoot > tr > td.warning,\n.table > thead > tr > th.warning,\n.table > tbody > tr > th.warning,\n.table > tfoot > tr > th.warning,\n.table > thead > tr.warning > td,\n.table > tbody > tr.warning > td,\n.table > tfoot > tr.warning > td,\n.table > thead > tr.warning > th,\n.table > tbody > tr.warning > th,\n.table > tfoot > tr.warning > th {\n background-color: #fcf8e3;\n}\n.table-hover > tbody > tr > td.warning:hover,\n.table-hover > tbody > tr > th.warning:hover,\n.table-hover > tbody > tr.warning:hover > td,\n.table-hover > tbody > tr:hover > .warning,\n.table-hover > tbody > tr.warning:hover > th {\n background-color: #faf2cc;\n}\n.table > thead > tr > td.danger,\n.table > tbody > tr > td.danger,\n.table > tfoot > tr > td.danger,\n.table > thead > tr > th.danger,\n.table > tbody > tr > th.danger,\n.table > tfoot > tr > th.danger,\n.table > thead > tr.danger > td,\n.table > tbody > tr.danger > td,\n.table > tfoot > tr.danger > td,\n.table > thead > tr.danger > th,\n.table > tbody > tr.danger > th,\n.table > tfoot > tr.danger > th {\n background-color: #f2dede;\n}\n.table-hover > tbody > tr > td.danger:hover,\n.table-hover > tbody > tr > th.danger:hover,\n.table-hover > tbody > tr.danger:hover > td,\n.table-hover > tbody > tr:hover > .danger,\n.table-hover > tbody > tr.danger:hover > th {\n background-color: #ebcccc;\n}\n.table-responsive {\n min-height: 0.01%;\n overflow-x: auto;\n}\n@media screen and (max-width: 767px) {\n .table-responsive {\n width: 100%;\n margin-bottom: 15px;\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid #ddd;\n }\n .table-responsive > .table {\n margin-bottom: 0;\n }\n .table-responsive > .table > thead > tr > th,\n .table-responsive > .table > tbody > tr > th,\n .table-responsive > .table > tfoot > tr > th,\n .table-responsive > .table > thead > tr > td,\n .table-responsive > .table > tbody > tr > td,\n .table-responsive > .table > tfoot > tr > td {\n white-space: nowrap;\n }\n .table-responsive > .table-bordered {\n border: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:first-child,\n .table-responsive > .table-bordered > tbody > tr > th:first-child,\n .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n .table-responsive > .table-bordered > thead > tr > td:first-child,\n .table-responsive > .table-bordered > tbody > tr > td:first-child,\n .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:last-child,\n .table-responsive > .table-bordered > tbody > tr > th:last-child,\n .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n .table-responsive > .table-bordered > thead > tr > td:last-child,\n .table-responsive > .table-bordered > tbody > tr > td:last-child,\n .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n }\n .table-responsive > .table-bordered > tbody > tr:last-child > th,\n .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n .table-responsive > .table-bordered > tbody > tr:last-child > td,\n .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n border-bottom: 0;\n }\n}\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: 20px;\n font-size: 21px;\n line-height: inherit;\n color: #333333;\n border: 0;\n border-bottom: 1px solid #e5e5e5;\n}\nlabel {\n display: inline-block;\n max-width: 100%;\n margin-bottom: 5px;\n font-weight: 700;\n}\ninput[type=\"search\"] {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-appearance: none;\n appearance: none;\n}\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9;\n line-height: normal;\n}\ninput[type=\"radio\"][disabled],\ninput[type=\"checkbox\"][disabled],\ninput[type=\"radio\"].disabled,\ninput[type=\"checkbox\"].disabled,\nfieldset[disabled] input[type=\"radio\"],\nfieldset[disabled] input[type=\"checkbox\"] {\n cursor: not-allowed;\n}\ninput[type=\"file\"] {\n display: block;\n}\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\nselect[multiple],\nselect[size] {\n height: auto;\n}\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\noutput {\n display: block;\n padding-top: 7px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n}\n.form-control {\n display: block;\n width: 100%;\n height: 34px;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n background-color: #fff;\n background-image: none;\n border: 1px solid #ccc;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n.form-control:focus {\n border-color: #66afe9;\n outline: 0;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.form-control::-moz-placeholder {\n color: #999;\n opacity: 1;\n}\n.form-control:-ms-input-placeholder {\n color: #999;\n}\n.form-control::-webkit-input-placeholder {\n color: #999;\n}\n.form-control::-ms-expand {\n background-color: transparent;\n border: 0;\n}\n.form-control[disabled],\n.form-control[readonly],\nfieldset[disabled] .form-control {\n background-color: #eeeeee;\n opacity: 1;\n}\n.form-control[disabled],\nfieldset[disabled] .form-control {\n cursor: not-allowed;\n}\ntextarea.form-control {\n height: auto;\n}\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"].form-control,\n input[type=\"time\"].form-control,\n input[type=\"datetime-local\"].form-control,\n input[type=\"month\"].form-control {\n line-height: 34px;\n }\n input[type=\"date\"].input-sm,\n input[type=\"time\"].input-sm,\n input[type=\"datetime-local\"].input-sm,\n input[type=\"month\"].input-sm,\n .input-group-sm input[type=\"date\"],\n .input-group-sm input[type=\"time\"],\n .input-group-sm input[type=\"datetime-local\"],\n .input-group-sm input[type=\"month\"] {\n line-height: 30px;\n }\n input[type=\"date\"].input-lg,\n input[type=\"time\"].input-lg,\n input[type=\"datetime-local\"].input-lg,\n input[type=\"month\"].input-lg,\n .input-group-lg input[type=\"date\"],\n .input-group-lg input[type=\"time\"],\n .input-group-lg input[type=\"datetime-local\"],\n .input-group-lg input[type=\"month\"] {\n line-height: 46px;\n }\n}\n.form-group {\n margin-bottom: 15px;\n}\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.radio.disabled label,\n.checkbox.disabled label,\nfieldset[disabled] .radio label,\nfieldset[disabled] .checkbox label {\n cursor: not-allowed;\n}\n.radio label,\n.checkbox label {\n min-height: 20px;\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: 400;\n cursor: pointer;\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-top: 4px \\9;\n margin-left: -20px;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px;\n}\n.radio-inline,\n.checkbox-inline {\n position: relative;\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: 400;\n vertical-align: middle;\n cursor: pointer;\n}\n.radio-inline.disabled,\n.checkbox-inline.disabled,\nfieldset[disabled] .radio-inline,\nfieldset[disabled] .checkbox-inline {\n cursor: not-allowed;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px;\n}\n.form-control-static {\n min-height: 34px;\n padding-top: 7px;\n padding-bottom: 7px;\n margin-bottom: 0;\n}\n.form-control-static.input-lg,\n.form-control-static.input-sm {\n padding-right: 0;\n padding-left: 0;\n}\n.input-sm {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-sm {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-sm,\nselect[multiple].input-sm {\n height: auto;\n}\n.form-group-sm .form-control {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.form-group-sm select.form-control {\n height: 30px;\n line-height: 30px;\n}\n.form-group-sm textarea.form-control,\n.form-group-sm select[multiple].form-control {\n height: auto;\n}\n.form-group-sm .form-control-static {\n height: 30px;\n min-height: 32px;\n padding: 6px 10px;\n font-size: 12px;\n line-height: 1.5;\n}\n.input-lg {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-lg {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-lg,\nselect[multiple].input-lg {\n height: auto;\n}\n.form-group-lg .form-control {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\n.form-group-lg select.form-control {\n height: 46px;\n line-height: 46px;\n}\n.form-group-lg textarea.form-control,\n.form-group-lg select[multiple].form-control {\n height: auto;\n}\n.form-group-lg .form-control-static {\n height: 46px;\n min-height: 38px;\n padding: 11px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n}\n.has-feedback {\n position: relative;\n}\n.has-feedback .form-control {\n padding-right: 42.5px;\n}\n.form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2;\n display: block;\n width: 34px;\n height: 34px;\n line-height: 34px;\n text-align: center;\n pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n width: 46px;\n height: 46px;\n line-height: 46px;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n width: 30px;\n height: 30px;\n line-height: 30px;\n}\n.has-success .help-block,\n.has-success .control-label,\n.has-success .radio,\n.has-success .checkbox,\n.has-success .radio-inline,\n.has-success .checkbox-inline,\n.has-success.radio label,\n.has-success.checkbox label,\n.has-success.radio-inline label,\n.has-success.checkbox-inline label {\n color: #3c763d;\n}\n.has-success .form-control {\n border-color: #3c763d;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-success .form-control:focus {\n border-color: #2b542c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n}\n.has-success .input-group-addon {\n color: #3c763d;\n background-color: #dff0d8;\n border-color: #3c763d;\n}\n.has-success .form-control-feedback {\n color: #3c763d;\n}\n.has-warning .help-block,\n.has-warning .control-label,\n.has-warning .radio,\n.has-warning .checkbox,\n.has-warning .radio-inline,\n.has-warning .checkbox-inline,\n.has-warning.radio label,\n.has-warning.checkbox label,\n.has-warning.radio-inline label,\n.has-warning.checkbox-inline label {\n color: #8a6d3b;\n}\n.has-warning .form-control {\n border-color: #8a6d3b;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-warning .form-control:focus {\n border-color: #66512c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n}\n.has-warning .input-group-addon {\n color: #8a6d3b;\n background-color: #fcf8e3;\n border-color: #8a6d3b;\n}\n.has-warning .form-control-feedback {\n color: #8a6d3b;\n}\n.has-error .help-block,\n.has-error .control-label,\n.has-error .radio,\n.has-error .checkbox,\n.has-error .radio-inline,\n.has-error .checkbox-inline,\n.has-error.radio label,\n.has-error.checkbox label,\n.has-error.radio-inline label,\n.has-error.checkbox-inline label {\n color: #a94442;\n}\n.has-error .form-control {\n border-color: #a94442;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-error .form-control:focus {\n border-color: #843534;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n}\n.has-error .input-group-addon {\n color: #a94442;\n background-color: #f2dede;\n border-color: #a94442;\n}\n.has-error .form-control-feedback {\n color: #a94442;\n}\n.has-feedback label ~ .form-control-feedback {\n top: 25px;\n}\n.has-feedback label.sr-only ~ .form-control-feedback {\n top: 0;\n}\n.help-block {\n display: block;\n margin-top: 5px;\n margin-bottom: 10px;\n color: #737373;\n}\n@media (min-width: 768px) {\n .form-inline .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-static {\n display: inline-block;\n }\n .form-inline .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .form-inline .input-group .input-group-addon,\n .form-inline .input-group .input-group-btn,\n .form-inline .input-group .form-control {\n width: auto;\n }\n .form-inline .input-group > .form-control {\n width: 100%;\n }\n .form-inline .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio,\n .form-inline .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio label,\n .form-inline .checkbox label {\n padding-left: 0;\n }\n .form-inline .radio input[type=\"radio\"],\n .form-inline .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .form-inline .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox,\n.form-horizontal .radio-inline,\n.form-horizontal .checkbox-inline {\n padding-top: 7px;\n margin-top: 0;\n margin-bottom: 0;\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox {\n min-height: 27px;\n}\n.form-horizontal .form-group {\n margin-right: -15px;\n margin-left: -15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .control-label {\n padding-top: 7px;\n margin-bottom: 0;\n text-align: right;\n }\n}\n.form-horizontal .has-feedback .form-control-feedback {\n right: 15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-lg .control-label {\n padding-top: 11px;\n font-size: 18px;\n }\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-sm .control-label {\n padding-top: 6px;\n font-size: 12px;\n }\n}\n.btn {\n display: inline-block;\n margin-bottom: 0;\n font-weight: normal;\n text-align: center;\n white-space: nowrap;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none;\n border: 1px solid transparent;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n border-radius: 4px;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.btn:focus,\n.btn:active:focus,\n.btn.active:focus,\n.btn.focus,\n.btn:active.focus,\n.btn.active.focus {\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n.btn:hover,\n.btn:focus,\n.btn.focus {\n color: #333;\n text-decoration: none;\n}\n.btn:active,\n.btn.active {\n background-image: none;\n outline: 0;\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn.disabled,\n.btn[disabled],\nfieldset[disabled] .btn {\n cursor: not-allowed;\n filter: alpha(opacity=65);\n opacity: 0.65;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\na.btn.disabled,\nfieldset[disabled] a.btn {\n pointer-events: none;\n}\n.btn-default {\n color: #333;\n background-color: #fff;\n border-color: #ccc;\n}\n.btn-default:focus,\n.btn-default.focus {\n color: #333;\n background-color: #e6e6e6;\n border-color: #8c8c8c;\n}\n.btn-default:hover {\n color: #333;\n background-color: #e6e6e6;\n border-color: #adadad;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n color: #333;\n background-color: #e6e6e6;\n background-image: none;\n border-color: #adadad;\n}\n.btn-default:active:hover,\n.btn-default.active:hover,\n.open > .dropdown-toggle.btn-default:hover,\n.btn-default:active:focus,\n.btn-default.active:focus,\n.open > .dropdown-toggle.btn-default:focus,\n.btn-default:active.focus,\n.btn-default.active.focus,\n.open > .dropdown-toggle.btn-default.focus {\n color: #333;\n background-color: #d4d4d4;\n border-color: #8c8c8c;\n}\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus {\n background-color: #fff;\n border-color: #ccc;\n}\n.btn-default .badge {\n color: #fff;\n background-color: #333;\n}\n.btn-primary {\n color: #fff;\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary:focus,\n.btn-primary.focus {\n color: #fff;\n background-color: #286090;\n border-color: #122b40;\n}\n.btn-primary:hover {\n color: #fff;\n background-color: #286090;\n border-color: #204d74;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n color: #fff;\n background-color: #286090;\n background-image: none;\n border-color: #204d74;\n}\n.btn-primary:active:hover,\n.btn-primary.active:hover,\n.open > .dropdown-toggle.btn-primary:hover,\n.btn-primary:active:focus,\n.btn-primary.active:focus,\n.open > .dropdown-toggle.btn-primary:focus,\n.btn-primary:active.focus,\n.btn-primary.active.focus,\n.open > .dropdown-toggle.btn-primary.focus {\n color: #fff;\n background-color: #204d74;\n border-color: #122b40;\n}\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus {\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary .badge {\n color: #337ab7;\n background-color: #fff;\n}\n.btn-success {\n color: #fff;\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success:focus,\n.btn-success.focus {\n color: #fff;\n background-color: #449d44;\n border-color: #255625;\n}\n.btn-success:hover {\n color: #fff;\n background-color: #449d44;\n border-color: #398439;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n color: #fff;\n background-color: #449d44;\n background-image: none;\n border-color: #398439;\n}\n.btn-success:active:hover,\n.btn-success.active:hover,\n.open > .dropdown-toggle.btn-success:hover,\n.btn-success:active:focus,\n.btn-success.active:focus,\n.open > .dropdown-toggle.btn-success:focus,\n.btn-success:active.focus,\n.btn-success.active.focus,\n.open > .dropdown-toggle.btn-success.focus {\n color: #fff;\n background-color: #398439;\n border-color: #255625;\n}\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus {\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success .badge {\n color: #5cb85c;\n background-color: #fff;\n}\n.btn-info {\n color: #fff;\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info:focus,\n.btn-info.focus {\n color: #fff;\n background-color: #31b0d5;\n border-color: #1b6d85;\n}\n.btn-info:hover {\n color: #fff;\n background-color: #31b0d5;\n border-color: #269abc;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n color: #fff;\n background-color: #31b0d5;\n background-image: none;\n border-color: #269abc;\n}\n.btn-info:active:hover,\n.btn-info.active:hover,\n.open > .dropdown-toggle.btn-info:hover,\n.btn-info:active:focus,\n.btn-info.active:focus,\n.open > .dropdown-toggle.btn-info:focus,\n.btn-info:active.focus,\n.btn-info.active.focus,\n.open > .dropdown-toggle.btn-info.focus {\n color: #fff;\n background-color: #269abc;\n border-color: #1b6d85;\n}\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus {\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info .badge {\n color: #5bc0de;\n background-color: #fff;\n}\n.btn-warning {\n color: #fff;\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning:focus,\n.btn-warning.focus {\n color: #fff;\n background-color: #ec971f;\n border-color: #985f0d;\n}\n.btn-warning:hover {\n color: #fff;\n background-color: #ec971f;\n border-color: #d58512;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n color: #fff;\n background-color: #ec971f;\n background-image: none;\n border-color: #d58512;\n}\n.btn-warning:active:hover,\n.btn-warning.active:hover,\n.open > .dropdown-toggle.btn-warning:hover,\n.btn-warning:active:focus,\n.btn-warning.active:focus,\n.open > .dropdown-toggle.btn-warning:focus,\n.btn-warning:active.focus,\n.btn-warning.active.focus,\n.open > .dropdown-toggle.btn-warning.focus {\n color: #fff;\n background-color: #d58512;\n border-color: #985f0d;\n}\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus {\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning .badge {\n color: #f0ad4e;\n background-color: #fff;\n}\n.btn-danger {\n color: #fff;\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger:focus,\n.btn-danger.focus {\n color: #fff;\n background-color: #c9302c;\n border-color: #761c19;\n}\n.btn-danger:hover {\n color: #fff;\n background-color: #c9302c;\n border-color: #ac2925;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n color: #fff;\n background-color: #c9302c;\n background-image: none;\n border-color: #ac2925;\n}\n.btn-danger:active:hover,\n.btn-danger.active:hover,\n.open > .dropdown-toggle.btn-danger:hover,\n.btn-danger:active:focus,\n.btn-danger.active:focus,\n.open > .dropdown-toggle.btn-danger:focus,\n.btn-danger:active.focus,\n.btn-danger.active.focus,\n.open > .dropdown-toggle.btn-danger.focus {\n color: #fff;\n background-color: #ac2925;\n border-color: #761c19;\n}\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus {\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger .badge {\n color: #d9534f;\n background-color: #fff;\n}\n.btn-link {\n font-weight: 400;\n color: #337ab7;\n border-radius: 0;\n}\n.btn-link,\n.btn-link:active,\n.btn-link.active,\n.btn-link[disabled],\nfieldset[disabled] .btn-link {\n background-color: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-link,\n.btn-link:hover,\n.btn-link:focus,\n.btn-link:active {\n border-color: transparent;\n}\n.btn-link:hover,\n.btn-link:focus {\n color: #23527c;\n text-decoration: underline;\n background-color: transparent;\n}\n.btn-link[disabled]:hover,\nfieldset[disabled] .btn-link:hover,\n.btn-link[disabled]:focus,\nfieldset[disabled] .btn-link:focus {\n color: #777777;\n text-decoration: none;\n}\n.btn-lg,\n.btn-group-lg > .btn {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\n.btn-sm,\n.btn-group-sm > .btn {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-xs,\n.btn-group-xs > .btn {\n padding: 1px 5px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-block {\n display: block;\n width: 100%;\n}\n.btn-block + .btn-block {\n margin-top: 5px;\n}\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%;\n}\n.fade {\n opacity: 0;\n -webkit-transition: opacity 0.15s linear;\n -o-transition: opacity 0.15s linear;\n transition: opacity 0.15s linear;\n}\n.fade.in {\n opacity: 1;\n}\n.collapse {\n display: none;\n}\n.collapse.in {\n display: block;\n}\ntr.collapse.in {\n display: table-row;\n}\ntbody.collapse.in {\n display: table-row-group;\n}\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n -webkit-transition-property: height, visibility;\n transition-property: height, visibility;\n -webkit-transition-duration: 0.35s;\n transition-duration: 0.35s;\n -webkit-transition-timing-function: ease;\n transition-timing-function: ease;\n}\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: 4px dashed;\n border-top: 4px solid \\9;\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n}\n.dropup,\n.dropdown {\n position: relative;\n}\n.dropdown-toggle:focus {\n outline: 0;\n}\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0;\n font-size: 14px;\n text-align: left;\n list-style: none;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #ccc;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 4px;\n -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n}\n.dropdown-menu.pull-right {\n right: 0;\n left: auto;\n}\n.dropdown-menu .divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.dropdown-menu > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: 400;\n line-height: 1.42857143;\n color: #333333;\n white-space: nowrap;\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n color: #262626;\n text-decoration: none;\n background-color: #f5f5f5;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n color: #fff;\n text-decoration: none;\n background-color: #337ab7;\n outline: 0;\n}\n.dropdown-menu > .disabled > a,\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n color: #777777;\n}\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n text-decoration: none;\n cursor: not-allowed;\n background-color: transparent;\n background-image: none;\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n}\n.open > .dropdown-menu {\n display: block;\n}\n.open > a {\n outline: 0;\n}\n.dropdown-menu-right {\n right: 0;\n left: auto;\n}\n.dropdown-menu-left {\n right: auto;\n left: 0;\n}\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: 12px;\n line-height: 1.42857143;\n color: #777777;\n white-space: nowrap;\n}\n.dropdown-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 990;\n}\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n.dropup .caret,\n.navbar-fixed-bottom .dropdown .caret {\n content: \"\";\n border-top: 0;\n border-bottom: 4px dashed;\n border-bottom: 4px solid \\9;\n}\n.dropup .dropdown-menu,\n.navbar-fixed-bottom .dropdown .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n}\n@media (min-width: 768px) {\n .navbar-right .dropdown-menu {\n right: 0;\n left: auto;\n }\n .navbar-right .dropdown-menu-left {\n right: auto;\n left: 0;\n }\n}\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n float: left;\n}\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group-vertical > .btn:focus,\n.btn-group > .btn:active,\n.btn-group-vertical > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn.active {\n z-index: 2;\n}\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group {\n margin-left: -1px;\n}\n.btn-toolbar {\n margin-left: -5px;\n}\n.btn-toolbar .btn,\n.btn-toolbar .btn-group,\n.btn-toolbar .input-group {\n float: left;\n}\n.btn-toolbar > .btn,\n.btn-toolbar > .btn-group,\n.btn-toolbar > .input-group {\n margin-left: 5px;\n}\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n.btn-group > .btn:first-child {\n margin-left: 0;\n}\n.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n.btn-group > .btn + .dropdown-toggle {\n padding-right: 8px;\n padding-left: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-right: 12px;\n padding-left: 12px;\n}\n.btn-group.open .dropdown-toggle {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-group.open .dropdown-toggle.btn-link {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn .caret {\n margin-left: 0;\n}\n.btn-lg .caret {\n border-width: 5px 5px 0;\n border-bottom-width: 0;\n}\n.dropup .btn-lg .caret {\n border-width: 0 5px 5px;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group,\n.btn-group-vertical > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n}\n.btn-group-vertical > .btn-group > .btn {\n float: none;\n}\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n}\n.btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.btn-group-vertical > .btn:first-child:not(:last-child) {\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn:last-child:not(:first-child) {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n}\n.btn-group-justified > .btn,\n.btn-group-justified > .btn-group {\n display: table-cell;\n float: none;\n width: 1%;\n}\n.btn-group-justified > .btn-group .btn {\n width: 100%;\n}\n.btn-group-justified > .btn-group .dropdown-menu {\n left: auto;\n}\n[data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n.input-group {\n position: relative;\n display: table;\n border-collapse: separate;\n}\n.input-group[class*=\"col-\"] {\n float: none;\n padding-right: 0;\n padding-left: 0;\n}\n.input-group .form-control {\n position: relative;\n z-index: 2;\n float: left;\n width: 100%;\n margin-bottom: 0;\n}\n.input-group .form-control:focus {\n z-index: 3;\n}\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-group-lg > .form-control,\nselect.input-group-lg > .input-group-addon,\nselect.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-group-lg > .form-control,\ntextarea.input-group-lg > .input-group-addon,\ntextarea.input-group-lg > .input-group-btn > .btn,\nselect[multiple].input-group-lg > .form-control,\nselect[multiple].input-group-lg > .input-group-addon,\nselect[multiple].input-group-lg > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-group-sm > .form-control,\nselect.input-group-sm > .input-group-addon,\nselect.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-group-sm > .form-control,\ntextarea.input-group-sm > .input-group-addon,\ntextarea.input-group-sm > .input-group-btn > .btn,\nselect[multiple].input-group-sm > .form-control,\nselect[multiple].input-group-sm > .input-group-addon,\nselect[multiple].input-group-sm > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n}\n.input-group-addon:not(:first-child):not(:last-child),\n.input-group-btn:not(:first-child):not(:last-child),\n.input-group .form-control:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle;\n}\n.input-group-addon {\n padding: 6px 12px;\n font-size: 14px;\n font-weight: 400;\n line-height: 1;\n color: #555555;\n text-align: center;\n background-color: #eeeeee;\n border: 1px solid #ccc;\n border-radius: 4px;\n}\n.input-group-addon.input-sm {\n padding: 5px 10px;\n font-size: 12px;\n border-radius: 3px;\n}\n.input-group-addon.input-lg {\n padding: 10px 16px;\n font-size: 18px;\n border-radius: 6px;\n}\n.input-group-addon input[type=\"radio\"],\n.input-group-addon input[type=\"checkbox\"] {\n margin-top: 0;\n}\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n.input-group-btn {\n position: relative;\n font-size: 0;\n white-space: nowrap;\n}\n.input-group-btn > .btn {\n position: relative;\n}\n.input-group-btn > .btn + .btn {\n margin-left: -1px;\n}\n.input-group-btn > .btn:hover,\n.input-group-btn > .btn:focus,\n.input-group-btn > .btn:active {\n z-index: 2;\n}\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group {\n margin-right: -1px;\n}\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group {\n z-index: 2;\n margin-left: -1px;\n}\n.nav {\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n.nav > li {\n position: relative;\n display: block;\n}\n.nav > li > a {\n position: relative;\n display: block;\n padding: 10px 15px;\n}\n.nav > li > a:hover,\n.nav > li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.nav > li.disabled > a {\n color: #777777;\n}\n.nav > li.disabled > a:hover,\n.nav > li.disabled > a:focus {\n color: #777777;\n text-decoration: none;\n cursor: not-allowed;\n background-color: transparent;\n}\n.nav .open > a,\n.nav .open > a:hover,\n.nav .open > a:focus {\n background-color: #eeeeee;\n border-color: #337ab7;\n}\n.nav .nav-divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.nav > li > a > img {\n max-width: none;\n}\n.nav-tabs {\n border-bottom: 1px solid #ddd;\n}\n.nav-tabs > li {\n float: left;\n margin-bottom: -1px;\n}\n.nav-tabs > li > a {\n margin-right: 2px;\n line-height: 1.42857143;\n border: 1px solid transparent;\n border-radius: 4px 4px 0 0;\n}\n.nav-tabs > li > a:hover {\n border-color: #eeeeee #eeeeee #ddd;\n}\n.nav-tabs > li.active > a,\n.nav-tabs > li.active > a:hover,\n.nav-tabs > li.active > a:focus {\n color: #555555;\n cursor: default;\n background-color: #fff;\n border: 1px solid #ddd;\n border-bottom-color: transparent;\n}\n.nav-tabs.nav-justified {\n width: 100%;\n border-bottom: 0;\n}\n.nav-tabs.nav-justified > li {\n float: none;\n}\n.nav-tabs.nav-justified > li > a {\n margin-bottom: 5px;\n text-align: center;\n}\n.nav-tabs.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-tabs.nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs.nav-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs.nav-justified > .active > a,\n.nav-tabs.nav-justified > .active > a:hover,\n.nav-tabs.nav-justified > .active > a:focus {\n border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li > a {\n border-bottom: 1px solid #ddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs.nav-justified > .active > a,\n .nav-tabs.nav-justified > .active > a:hover,\n .nav-tabs.nav-justified > .active > a:focus {\n border-bottom-color: #fff;\n }\n}\n.nav-pills > li {\n float: left;\n}\n.nav-pills > li > a {\n border-radius: 4px;\n}\n.nav-pills > li + li {\n margin-left: 2px;\n}\n.nav-pills > li.active > a,\n.nav-pills > li.active > a:hover,\n.nav-pills > li.active > a:focus {\n color: #fff;\n background-color: #337ab7;\n}\n.nav-stacked > li {\n float: none;\n}\n.nav-stacked > li + li {\n margin-top: 2px;\n margin-left: 0;\n}\n.nav-justified {\n width: 100%;\n}\n.nav-justified > li {\n float: none;\n}\n.nav-justified > li > a {\n margin-bottom: 5px;\n text-align: center;\n}\n.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs-justified {\n border-bottom: 0;\n}\n.nav-tabs-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs-justified > .active > a,\n.nav-tabs-justified > .active > a:hover,\n.nav-tabs-justified > .active > a:focus {\n border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n .nav-tabs-justified > li > a {\n border-bottom: 1px solid #ddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs-justified > .active > a,\n .nav-tabs-justified > .active > a:hover,\n .nav-tabs-justified > .active > a:focus {\n border-bottom-color: #fff;\n }\n}\n.tab-content > .tab-pane {\n display: none;\n}\n.tab-content > .active {\n display: block;\n}\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n.navbar {\n position: relative;\n min-height: 50px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n}\n@media (min-width: 768px) {\n .navbar {\n border-radius: 4px;\n }\n}\n@media (min-width: 768px) {\n .navbar-header {\n float: left;\n }\n}\n.navbar-collapse {\n padding-right: 15px;\n padding-left: 15px;\n overflow-x: visible;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\n -webkit-overflow-scrolling: touch;\n}\n.navbar-collapse.in {\n overflow-y: auto;\n}\n@media (min-width: 768px) {\n .navbar-collapse {\n width: auto;\n border-top: 0;\n box-shadow: none;\n }\n .navbar-collapse.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0;\n overflow: visible !important;\n }\n .navbar-collapse.in {\n overflow-y: visible;\n }\n .navbar-fixed-top .navbar-collapse,\n .navbar-static-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n padding-right: 0;\n padding-left: 0;\n }\n}\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n.navbar-fixed-top .navbar-collapse,\n.navbar-fixed-bottom .navbar-collapse {\n max-height: 340px;\n}\n@media (max-device-width: 480px) and (orientation: landscape) {\n .navbar-fixed-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n max-height: 200px;\n }\n}\n@media (min-width: 768px) {\n .navbar-fixed-top,\n .navbar-fixed-bottom {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0;\n border-width: 1px 0 0;\n}\n.container > .navbar-header,\n.container-fluid > .navbar-header,\n.container > .navbar-collapse,\n.container-fluid > .navbar-collapse {\n margin-right: -15px;\n margin-left: -15px;\n}\n@media (min-width: 768px) {\n .container > .navbar-header,\n .container-fluid > .navbar-header,\n .container > .navbar-collapse,\n .container-fluid > .navbar-collapse {\n margin-right: 0;\n margin-left: 0;\n }\n}\n.navbar-static-top {\n z-index: 1000;\n border-width: 0 0 1px;\n}\n@media (min-width: 768px) {\n .navbar-static-top {\n border-radius: 0;\n }\n}\n.navbar-brand {\n float: left;\n height: 50px;\n padding: 15px 15px;\n font-size: 18px;\n line-height: 20px;\n}\n.navbar-brand:hover,\n.navbar-brand:focus {\n text-decoration: none;\n}\n.navbar-brand > img {\n display: block;\n}\n@media (min-width: 768px) {\n .navbar > .container .navbar-brand,\n .navbar > .container-fluid .navbar-brand {\n margin-left: -15px;\n }\n}\n.navbar-toggle {\n position: relative;\n float: right;\n padding: 9px 10px;\n margin-right: 15px;\n margin-top: 8px;\n margin-bottom: 8px;\n background-color: transparent;\n background-image: none;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.navbar-toggle:focus {\n outline: 0;\n}\n.navbar-toggle .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n}\n.navbar-toggle .icon-bar + .icon-bar {\n margin-top: 4px;\n}\n@media (min-width: 768px) {\n .navbar-toggle {\n display: none;\n }\n}\n.navbar-nav {\n margin: 7.5px -15px;\n}\n.navbar-nav > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: 20px;\n}\n@media (max-width: 767px) {\n .navbar-nav .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n }\n .navbar-nav .open .dropdown-menu > li > a,\n .navbar-nav .open .dropdown-menu .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n .navbar-nav .open .dropdown-menu > li > a {\n line-height: 20px;\n }\n .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-nav .open .dropdown-menu > li > a:focus {\n background-image: none;\n }\n}\n@media (min-width: 768px) {\n .navbar-nav {\n float: left;\n margin: 0;\n }\n .navbar-nav > li {\n float: left;\n }\n .navbar-nav > li > a {\n padding-top: 15px;\n padding-bottom: 15px;\n }\n}\n.navbar-form {\n padding: 10px 15px;\n margin-right: -15px;\n margin-left: -15px;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n margin-top: 8px;\n margin-bottom: 8px;\n}\n@media (min-width: 768px) {\n .navbar-form .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .navbar-form .form-control-static {\n display: inline-block;\n }\n .navbar-form .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .navbar-form .input-group .input-group-addon,\n .navbar-form .input-group .input-group-btn,\n .navbar-form .input-group .form-control {\n width: auto;\n }\n .navbar-form .input-group > .form-control {\n width: 100%;\n }\n .navbar-form .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio,\n .navbar-form .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio label,\n .navbar-form .checkbox label {\n padding-left: 0;\n }\n .navbar-form .radio input[type=\"radio\"],\n .navbar-form .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .navbar-form .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n@media (max-width: 767px) {\n .navbar-form .form-group {\n margin-bottom: 5px;\n }\n .navbar-form .form-group:last-child {\n margin-bottom: 0;\n }\n}\n@media (min-width: 768px) {\n .navbar-form {\n width: auto;\n padding-top: 0;\n padding-bottom: 0;\n margin-right: 0;\n margin-left: 0;\n border: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n }\n}\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.navbar-btn {\n margin-top: 8px;\n margin-bottom: 8px;\n}\n.navbar-btn.btn-sm {\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.navbar-btn.btn-xs {\n margin-top: 14px;\n margin-bottom: 14px;\n}\n.navbar-text {\n margin-top: 15px;\n margin-bottom: 15px;\n}\n@media (min-width: 768px) {\n .navbar-text {\n float: left;\n margin-right: 15px;\n margin-left: 15px;\n }\n}\n@media (min-width: 768px) {\n .navbar-left {\n float: left !important;\n }\n .navbar-right {\n float: right !important;\n margin-right: -15px;\n }\n .navbar-right ~ .navbar-right {\n margin-right: 0;\n }\n}\n.navbar-default {\n background-color: #f8f8f8;\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-brand {\n color: #777;\n}\n.navbar-default .navbar-brand:hover,\n.navbar-default .navbar-brand:focus {\n color: #5e5e5e;\n background-color: transparent;\n}\n.navbar-default .navbar-text {\n color: #777;\n}\n.navbar-default .navbar-nav > li > a {\n color: #777;\n}\n.navbar-default .navbar-nav > li > a:hover,\n.navbar-default .navbar-nav > li > a:focus {\n color: #333;\n background-color: transparent;\n}\n.navbar-default .navbar-nav > .active > a,\n.navbar-default .navbar-nav > .active > a:hover,\n.navbar-default .navbar-nav > .active > a:focus {\n color: #555;\n background-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .disabled > a,\n.navbar-default .navbar-nav > .disabled > a:hover,\n.navbar-default .navbar-nav > .disabled > a:focus {\n color: #ccc;\n background-color: transparent;\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .open > a:hover,\n.navbar-default .navbar-nav > .open > a:focus {\n color: #555;\n background-color: #e7e7e7;\n}\n@media (max-width: 767px) {\n .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n color: #777;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #333;\n background-color: transparent;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #555;\n background-color: #e7e7e7;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #ccc;\n background-color: transparent;\n }\n}\n.navbar-default .navbar-toggle {\n border-color: #ddd;\n}\n.navbar-default .navbar-toggle:hover,\n.navbar-default .navbar-toggle:focus {\n background-color: #ddd;\n}\n.navbar-default .navbar-toggle .icon-bar {\n background-color: #888;\n}\n.navbar-default .navbar-collapse,\n.navbar-default .navbar-form {\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-link {\n color: #777;\n}\n.navbar-default .navbar-link:hover {\n color: #333;\n}\n.navbar-default .btn-link {\n color: #777;\n}\n.navbar-default .btn-link:hover,\n.navbar-default .btn-link:focus {\n color: #333;\n}\n.navbar-default .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-default .btn-link:hover,\n.navbar-default .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-default .btn-link:focus {\n color: #ccc;\n}\n.navbar-inverse {\n background-color: #222;\n border-color: #080808;\n}\n.navbar-inverse .navbar-brand {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-brand:hover,\n.navbar-inverse .navbar-brand:focus {\n color: #fff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-text {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a:hover,\n.navbar-inverse .navbar-nav > li > a:focus {\n color: #fff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .active > a,\n.navbar-inverse .navbar-nav > .active > a:hover,\n.navbar-inverse .navbar-nav > .active > a:focus {\n color: #fff;\n background-color: #080808;\n}\n.navbar-inverse .navbar-nav > .disabled > a,\n.navbar-inverse .navbar-nav > .disabled > a:hover,\n.navbar-inverse .navbar-nav > .disabled > a:focus {\n color: #444;\n background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .open > a:hover,\n.navbar-inverse .navbar-nav > .open > a:focus {\n color: #fff;\n background-color: #080808;\n}\n@media (max-width: 767px) {\n .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n border-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n color: #9d9d9d;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #fff;\n background-color: transparent;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #444;\n background-color: transparent;\n }\n}\n.navbar-inverse .navbar-toggle {\n border-color: #333;\n}\n.navbar-inverse .navbar-toggle:hover,\n.navbar-inverse .navbar-toggle:focus {\n background-color: #333;\n}\n.navbar-inverse .navbar-toggle .icon-bar {\n background-color: #fff;\n}\n.navbar-inverse .navbar-collapse,\n.navbar-inverse .navbar-form {\n border-color: #101010;\n}\n.navbar-inverse .navbar-link {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-link:hover {\n color: #fff;\n}\n.navbar-inverse .btn-link {\n color: #9d9d9d;\n}\n.navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link:focus {\n color: #fff;\n}\n.navbar-inverse .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-inverse .btn-link:focus {\n color: #444;\n}\n.breadcrumb {\n padding: 8px 15px;\n margin-bottom: 20px;\n list-style: none;\n background-color: #f5f5f5;\n border-radius: 4px;\n}\n.breadcrumb > li {\n display: inline-block;\n}\n.breadcrumb > li + li:before {\n padding: 0 5px;\n color: #ccc;\n content: \"/\\00a0\";\n}\n.breadcrumb > .active {\n color: #777777;\n}\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: 20px 0;\n border-radius: 4px;\n}\n.pagination > li {\n display: inline;\n}\n.pagination > li > a,\n.pagination > li > span {\n position: relative;\n float: left;\n padding: 6px 12px;\n margin-left: -1px;\n line-height: 1.42857143;\n color: #337ab7;\n text-decoration: none;\n background-color: #fff;\n border: 1px solid #ddd;\n}\n.pagination > li > a:hover,\n.pagination > li > span:hover,\n.pagination > li > a:focus,\n.pagination > li > span:focus {\n z-index: 2;\n color: #23527c;\n background-color: #eeeeee;\n border-color: #ddd;\n}\n.pagination > li:first-child > a,\n.pagination > li:first-child > span {\n margin-left: 0;\n border-top-left-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.pagination > li:last-child > a,\n.pagination > li:last-child > span {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n}\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover,\n.pagination > .active > span:hover,\n.pagination > .active > a:focus,\n.pagination > .active > span:focus {\n z-index: 3;\n color: #fff;\n cursor: default;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.pagination > .disabled > span,\n.pagination > .disabled > span:hover,\n.pagination > .disabled > span:focus,\n.pagination > .disabled > a,\n.pagination > .disabled > a:hover,\n.pagination > .disabled > a:focus {\n color: #777777;\n cursor: not-allowed;\n background-color: #fff;\n border-color: #ddd;\n}\n.pagination-lg > li > a,\n.pagination-lg > li > span {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n}\n.pagination-lg > li:first-child > a,\n.pagination-lg > li:first-child > span {\n border-top-left-radius: 6px;\n border-bottom-left-radius: 6px;\n}\n.pagination-lg > li:last-child > a,\n.pagination-lg > li:last-child > span {\n border-top-right-radius: 6px;\n border-bottom-right-radius: 6px;\n}\n.pagination-sm > li > a,\n.pagination-sm > li > span {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n}\n.pagination-sm > li:first-child > a,\n.pagination-sm > li:first-child > span {\n border-top-left-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.pagination-sm > li:last-child > a,\n.pagination-sm > li:last-child > span {\n border-top-right-radius: 3px;\n border-bottom-right-radius: 3px;\n}\n.pager {\n padding-left: 0;\n margin: 20px 0;\n text-align: center;\n list-style: none;\n}\n.pager li {\n display: inline;\n}\n.pager li > a,\n.pager li > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: #fff;\n border: 1px solid #ddd;\n border-radius: 15px;\n}\n.pager li > a:hover,\n.pager li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.pager .next > a,\n.pager .next > span {\n float: right;\n}\n.pager .previous > a,\n.pager .previous > span {\n float: left;\n}\n.pager .disabled > a,\n.pager .disabled > a:hover,\n.pager .disabled > a:focus,\n.pager .disabled > span {\n color: #777777;\n cursor: not-allowed;\n background-color: #fff;\n}\n.label {\n display: inline;\n padding: 0.2em 0.6em 0.3em;\n font-size: 75%;\n font-weight: 700;\n line-height: 1;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: 0.25em;\n}\na.label:hover,\na.label:focus {\n color: #fff;\n text-decoration: none;\n cursor: pointer;\n}\n.label:empty {\n display: none;\n}\n.btn .label {\n position: relative;\n top: -1px;\n}\n.label-default {\n background-color: #777777;\n}\n.label-default[href]:hover,\n.label-default[href]:focus {\n background-color: #5e5e5e;\n}\n.label-primary {\n background-color: #337ab7;\n}\n.label-primary[href]:hover,\n.label-primary[href]:focus {\n background-color: #286090;\n}\n.label-success {\n background-color: #5cb85c;\n}\n.label-success[href]:hover,\n.label-success[href]:focus {\n background-color: #449d44;\n}\n.label-info {\n background-color: #5bc0de;\n}\n.label-info[href]:hover,\n.label-info[href]:focus {\n background-color: #31b0d5;\n}\n.label-warning {\n background-color: #f0ad4e;\n}\n.label-warning[href]:hover,\n.label-warning[href]:focus {\n background-color: #ec971f;\n}\n.label-danger {\n background-color: #d9534f;\n}\n.label-danger[href]:hover,\n.label-danger[href]:focus {\n background-color: #c9302c;\n}\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: 12px;\n font-weight: bold;\n line-height: 1;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n vertical-align: middle;\n background-color: #777777;\n border-radius: 10px;\n}\n.badge:empty {\n display: none;\n}\n.btn .badge {\n position: relative;\n top: -1px;\n}\n.btn-xs .badge,\n.btn-group-xs > .btn .badge {\n top: 0;\n padding: 1px 5px;\n}\na.badge:hover,\na.badge:focus {\n color: #fff;\n text-decoration: none;\n cursor: pointer;\n}\n.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n color: #337ab7;\n background-color: #fff;\n}\n.list-group-item > .badge {\n float: right;\n}\n.list-group-item > .badge + .badge {\n margin-right: 5px;\n}\n.nav-pills > li > a > .badge {\n margin-left: 3px;\n}\n.jumbotron {\n padding-top: 30px;\n padding-bottom: 30px;\n margin-bottom: 30px;\n color: inherit;\n background-color: #eeeeee;\n}\n.jumbotron h1,\n.jumbotron .h1 {\n color: inherit;\n}\n.jumbotron p {\n margin-bottom: 15px;\n font-size: 21px;\n font-weight: 200;\n}\n.jumbotron > hr {\n border-top-color: #d5d5d5;\n}\n.container .jumbotron,\n.container-fluid .jumbotron {\n padding-right: 15px;\n padding-left: 15px;\n border-radius: 6px;\n}\n.jumbotron .container {\n max-width: 100%;\n}\n@media screen and (min-width: 768px) {\n .jumbotron {\n padding-top: 48px;\n padding-bottom: 48px;\n }\n .container .jumbotron,\n .container-fluid .jumbotron {\n padding-right: 60px;\n padding-left: 60px;\n }\n .jumbotron h1,\n .jumbotron .h1 {\n font-size: 63px;\n }\n}\n.thumbnail {\n display: block;\n padding: 4px;\n margin-bottom: 20px;\n line-height: 1.42857143;\n background-color: #fff;\n border: 1px solid #ddd;\n border-radius: 4px;\n -webkit-transition: border 0.2s ease-in-out;\n -o-transition: border 0.2s ease-in-out;\n transition: border 0.2s ease-in-out;\n}\n.thumbnail > img,\n.thumbnail a > img {\n margin-right: auto;\n margin-left: auto;\n}\na.thumbnail:hover,\na.thumbnail:focus,\na.thumbnail.active {\n border-color: #337ab7;\n}\n.thumbnail .caption {\n padding: 9px;\n color: #333333;\n}\n.alert {\n padding: 15px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.alert h4 {\n margin-top: 0;\n color: inherit;\n}\n.alert .alert-link {\n font-weight: bold;\n}\n.alert > p,\n.alert > ul {\n margin-bottom: 0;\n}\n.alert > p + p {\n margin-top: 5px;\n}\n.alert-dismissable,\n.alert-dismissible {\n padding-right: 35px;\n}\n.alert-dismissable .close,\n.alert-dismissible .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n}\n.alert-success {\n color: #3c763d;\n background-color: #dff0d8;\n border-color: #d6e9c6;\n}\n.alert-success hr {\n border-top-color: #c9e2b3;\n}\n.alert-success .alert-link {\n color: #2b542c;\n}\n.alert-info {\n color: #31708f;\n background-color: #d9edf7;\n border-color: #bce8f1;\n}\n.alert-info hr {\n border-top-color: #a6e1ec;\n}\n.alert-info .alert-link {\n color: #245269;\n}\n.alert-warning {\n color: #8a6d3b;\n background-color: #fcf8e3;\n border-color: #faebcc;\n}\n.alert-warning hr {\n border-top-color: #f7e1b5;\n}\n.alert-warning .alert-link {\n color: #66512c;\n}\n.alert-danger {\n color: #a94442;\n background-color: #f2dede;\n border-color: #ebccd1;\n}\n.alert-danger hr {\n border-top-color: #e4b9c0;\n}\n.alert-danger .alert-link {\n color: #843534;\n}\n@-webkit-keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n@keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n.progress {\n height: 20px;\n margin-bottom: 20px;\n overflow: hidden;\n background-color: #f5f5f5;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n}\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: 12px;\n line-height: 20px;\n color: #fff;\n text-align: center;\n background-color: #337ab7;\n -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n -webkit-transition: width 0.6s ease;\n -o-transition: width 0.6s ease;\n transition: width 0.6s ease;\n}\n.progress-striped .progress-bar,\n.progress-bar-striped {\n 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);\n 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);\n 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);\n background-size: 40px 40px;\n}\n.progress.active .progress-bar,\n.progress-bar.active {\n -webkit-animation: progress-bar-stripes 2s linear infinite;\n -o-animation: progress-bar-stripes 2s linear infinite;\n animation: progress-bar-stripes 2s linear infinite;\n}\n.progress-bar-success {\n background-color: #5cb85c;\n}\n.progress-striped .progress-bar-success {\n 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);\n 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);\n 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);\n}\n.progress-bar-info {\n background-color: #5bc0de;\n}\n.progress-striped .progress-bar-info {\n 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);\n 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);\n 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);\n}\n.progress-bar-warning {\n background-color: #f0ad4e;\n}\n.progress-striped .progress-bar-warning {\n 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);\n 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);\n 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);\n}\n.progress-bar-danger {\n background-color: #d9534f;\n}\n.progress-striped .progress-bar-danger {\n 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);\n 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);\n 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);\n}\n.media {\n margin-top: 15px;\n}\n.media:first-child {\n margin-top: 0;\n}\n.media,\n.media-body {\n overflow: hidden;\n zoom: 1;\n}\n.media-body {\n width: 10000px;\n}\n.media-object {\n display: block;\n}\n.media-object.img-thumbnail {\n max-width: none;\n}\n.media-right,\n.media > .pull-right {\n padding-left: 10px;\n}\n.media-left,\n.media > .pull-left {\n padding-right: 10px;\n}\n.media-left,\n.media-right,\n.media-body {\n display: table-cell;\n vertical-align: top;\n}\n.media-middle {\n vertical-align: middle;\n}\n.media-bottom {\n vertical-align: bottom;\n}\n.media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n.list-group {\n padding-left: 0;\n margin-bottom: 20px;\n}\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n margin-bottom: -1px;\n background-color: #fff;\n border: 1px solid #ddd;\n}\n.list-group-item:first-child {\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n}\n.list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.list-group-item.disabled,\n.list-group-item.disabled:hover,\n.list-group-item.disabled:focus {\n color: #777777;\n cursor: not-allowed;\n background-color: #eeeeee;\n}\n.list-group-item.disabled .list-group-item-heading,\n.list-group-item.disabled:hover .list-group-item-heading,\n.list-group-item.disabled:focus .list-group-item-heading {\n color: inherit;\n}\n.list-group-item.disabled .list-group-item-text,\n.list-group-item.disabled:hover .list-group-item-text,\n.list-group-item.disabled:focus .list-group-item-text {\n color: #777777;\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n z-index: 2;\n color: #fff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.list-group-item.active .list-group-item-heading,\n.list-group-item.active:hover .list-group-item-heading,\n.list-group-item.active:focus .list-group-item-heading,\n.list-group-item.active .list-group-item-heading > small,\n.list-group-item.active:hover .list-group-item-heading > small,\n.list-group-item.active:focus .list-group-item-heading > small,\n.list-group-item.active .list-group-item-heading > .small,\n.list-group-item.active:hover .list-group-item-heading > .small,\n.list-group-item.active:focus .list-group-item-heading > .small {\n color: inherit;\n}\n.list-group-item.active .list-group-item-text,\n.list-group-item.active:hover .list-group-item-text,\n.list-group-item.active:focus .list-group-item-text {\n color: #c7ddef;\n}\na.list-group-item,\nbutton.list-group-item {\n color: #555;\n}\na.list-group-item .list-group-item-heading,\nbutton.list-group-item .list-group-item-heading {\n color: #333;\n}\na.list-group-item:hover,\nbutton.list-group-item:hover,\na.list-group-item:focus,\nbutton.list-group-item:focus {\n color: #555;\n text-decoration: none;\n background-color: #f5f5f5;\n}\nbutton.list-group-item {\n width: 100%;\n text-align: left;\n}\n.list-group-item-success {\n color: #3c763d;\n background-color: #dff0d8;\n}\na.list-group-item-success,\nbutton.list-group-item-success {\n color: #3c763d;\n}\na.list-group-item-success .list-group-item-heading,\nbutton.list-group-item-success .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-success:hover,\nbutton.list-group-item-success:hover,\na.list-group-item-success:focus,\nbutton.list-group-item-success:focus {\n color: #3c763d;\n background-color: #d0e9c6;\n}\na.list-group-item-success.active,\nbutton.list-group-item-success.active,\na.list-group-item-success.active:hover,\nbutton.list-group-item-success.active:hover,\na.list-group-item-success.active:focus,\nbutton.list-group-item-success.active:focus {\n color: #fff;\n background-color: #3c763d;\n border-color: #3c763d;\n}\n.list-group-item-info {\n color: #31708f;\n background-color: #d9edf7;\n}\na.list-group-item-info,\nbutton.list-group-item-info {\n color: #31708f;\n}\na.list-group-item-info .list-group-item-heading,\nbutton.list-group-item-info .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-info:hover,\nbutton.list-group-item-info:hover,\na.list-group-item-info:focus,\nbutton.list-group-item-info:focus {\n color: #31708f;\n background-color: #c4e3f3;\n}\na.list-group-item-info.active,\nbutton.list-group-item-info.active,\na.list-group-item-info.active:hover,\nbutton.list-group-item-info.active:hover,\na.list-group-item-info.active:focus,\nbutton.list-group-item-info.active:focus {\n color: #fff;\n background-color: #31708f;\n border-color: #31708f;\n}\n.list-group-item-warning {\n color: #8a6d3b;\n background-color: #fcf8e3;\n}\na.list-group-item-warning,\nbutton.list-group-item-warning {\n color: #8a6d3b;\n}\na.list-group-item-warning .list-group-item-heading,\nbutton.list-group-item-warning .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-warning:hover,\nbutton.list-group-item-warning:hover,\na.list-group-item-warning:focus,\nbutton.list-group-item-warning:focus {\n color: #8a6d3b;\n background-color: #faf2cc;\n}\na.list-group-item-warning.active,\nbutton.list-group-item-warning.active,\na.list-group-item-warning.active:hover,\nbutton.list-group-item-warning.active:hover,\na.list-group-item-warning.active:focus,\nbutton.list-group-item-warning.active:focus {\n color: #fff;\n background-color: #8a6d3b;\n border-color: #8a6d3b;\n}\n.list-group-item-danger {\n color: #a94442;\n background-color: #f2dede;\n}\na.list-group-item-danger,\nbutton.list-group-item-danger {\n color: #a94442;\n}\na.list-group-item-danger .list-group-item-heading,\nbutton.list-group-item-danger .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-danger:hover,\nbutton.list-group-item-danger:hover,\na.list-group-item-danger:focus,\nbutton.list-group-item-danger:focus {\n color: #a94442;\n background-color: #ebcccc;\n}\na.list-group-item-danger.active,\nbutton.list-group-item-danger.active,\na.list-group-item-danger.active:hover,\nbutton.list-group-item-danger.active:hover,\na.list-group-item-danger.active:focus,\nbutton.list-group-item-danger.active:focus {\n color: #fff;\n background-color: #a94442;\n border-color: #a94442;\n}\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n.panel {\n margin-bottom: 20px;\n background-color: #fff;\n border: 1px solid transparent;\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.panel-body {\n padding: 15px;\n}\n.panel-heading {\n padding: 10px 15px;\n border-bottom: 1px solid transparent;\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n}\n.panel-heading > .dropdown .dropdown-toggle {\n color: inherit;\n}\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: 16px;\n color: inherit;\n}\n.panel-title > a,\n.panel-title > small,\n.panel-title > .small,\n.panel-title > small > a,\n.panel-title > .small > a {\n color: inherit;\n}\n.panel-footer {\n padding: 10px 15px;\n background-color: #f5f5f5;\n border-top: 1px solid #ddd;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .list-group,\n.panel > .panel-collapse > .list-group {\n margin-bottom: 0;\n}\n.panel > .list-group .list-group-item,\n.panel > .panel-collapse > .list-group .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n}\n.panel > .list-group:first-child .list-group-item:first-child,\n.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\n border-top: 0;\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n}\n.panel > .list-group:last-child .list-group-item:last-child,\n.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\n border-bottom: 0;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n.panel-heading + .list-group .list-group-item:first-child {\n border-top-width: 0;\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n.panel > .table,\n.panel > .table-responsive > .table,\n.panel > .panel-collapse > .table {\n margin-bottom: 0;\n}\n.panel > .table caption,\n.panel > .table-responsive > .table caption,\n.panel > .panel-collapse > .table caption {\n padding-right: 15px;\n padding-left: 15px;\n}\n.panel > .table:first-child,\n.panel > .table-responsive:first-child > .table:first-child {\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n border-top-right-radius: 3px;\n}\n.panel > .table:last-child,\n.panel > .table-responsive:last-child > .table:last-child {\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n border-bottom-right-radius: 3px;\n}\n.panel > .panel-body + .table,\n.panel > .panel-body + .table-responsive,\n.panel > .table + .panel-body,\n.panel > .table-responsive + .panel-body {\n border-top: 1px solid #ddd;\n}\n.panel > .table > tbody:first-child > tr:first-child th,\n.panel > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n}\n.panel > .table-bordered,\n.panel > .table-responsive > .table-bordered {\n border: 0;\n}\n.panel > .table-bordered > thead > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.panel > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-bordered > thead > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.panel > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-bordered > tfoot > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n}\n.panel > .table-bordered > thead > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.panel > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-bordered > thead > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.panel > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-bordered > tfoot > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n}\n.panel > .table-bordered > thead > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\n.panel > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-bordered > thead > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\n.panel > .table-bordered > tbody > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\n border-bottom: 0;\n}\n.panel > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-bordered > tfoot > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\n border-bottom: 0;\n}\n.panel > .table-responsive {\n margin-bottom: 0;\n border: 0;\n}\n.panel-group {\n margin-bottom: 20px;\n}\n.panel-group .panel {\n margin-bottom: 0;\n border-radius: 4px;\n}\n.panel-group .panel + .panel {\n margin-top: 5px;\n}\n.panel-group .panel-heading {\n border-bottom: 0;\n}\n.panel-group .panel-heading + .panel-collapse > .panel-body,\n.panel-group .panel-heading + .panel-collapse > .list-group {\n border-top: 1px solid #ddd;\n}\n.panel-group .panel-footer {\n border-top: 0;\n}\n.panel-group .panel-footer + .panel-collapse .panel-body {\n border-bottom: 1px solid #ddd;\n}\n.panel-default {\n border-color: #ddd;\n}\n.panel-default > .panel-heading {\n color: #333333;\n background-color: #f5f5f5;\n border-color: #ddd;\n}\n.panel-default > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #ddd;\n}\n.panel-default > .panel-heading .badge {\n color: #f5f5f5;\n background-color: #333333;\n}\n.panel-default > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #ddd;\n}\n.panel-primary {\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading {\n color: #fff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #337ab7;\n}\n.panel-primary > .panel-heading .badge {\n color: #337ab7;\n background-color: #fff;\n}\n.panel-primary > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #337ab7;\n}\n.panel-success {\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading {\n color: #3c763d;\n background-color: #dff0d8;\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #d6e9c6;\n}\n.panel-success > .panel-heading .badge {\n color: #dff0d8;\n background-color: #3c763d;\n}\n.panel-success > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #d6e9c6;\n}\n.panel-info {\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading {\n color: #31708f;\n background-color: #d9edf7;\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #bce8f1;\n}\n.panel-info > .panel-heading .badge {\n color: #d9edf7;\n background-color: #31708f;\n}\n.panel-info > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #bce8f1;\n}\n.panel-warning {\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading {\n color: #8a6d3b;\n background-color: #fcf8e3;\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #faebcc;\n}\n.panel-warning > .panel-heading .badge {\n color: #fcf8e3;\n background-color: #8a6d3b;\n}\n.panel-warning > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #faebcc;\n}\n.panel-danger {\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading {\n color: #a94442;\n background-color: #f2dede;\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #ebccd1;\n}\n.panel-danger > .panel-heading .badge {\n color: #f2dede;\n background-color: #a94442;\n}\n.panel-danger > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #ebccd1;\n}\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n}\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n height: 100%;\n border: 0;\n}\n.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n}\n.embed-responsive-4by3 {\n padding-bottom: 75%;\n}\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border: 1px solid #e3e3e3;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.well blockquote {\n border-color: #ddd;\n border-color: rgba(0, 0, 0, 0.15);\n}\n.well-lg {\n padding: 24px;\n border-radius: 6px;\n}\n.well-sm {\n padding: 9px;\n border-radius: 3px;\n}\n.close {\n float: right;\n font-size: 21px;\n font-weight: bold;\n line-height: 1;\n color: #000;\n text-shadow: 0 1px 0 #fff;\n filter: alpha(opacity=20);\n opacity: 0.2;\n}\n.close:hover,\n.close:focus {\n color: #000;\n text-decoration: none;\n cursor: pointer;\n filter: alpha(opacity=50);\n opacity: 0.5;\n}\nbutton.close {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n appearance: none;\n}\n.modal-open {\n overflow: hidden;\n}\n.modal {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1050;\n display: none;\n overflow: hidden;\n -webkit-overflow-scrolling: touch;\n outline: 0;\n}\n.modal.fade .modal-dialog {\n -webkit-transform: translate(0, -25%);\n -ms-transform: translate(0, -25%);\n -o-transform: translate(0, -25%);\n transform: translate(0, -25%);\n -webkit-transition: -webkit-transform 0.3s ease-out;\n -moz-transition: -moz-transform 0.3s ease-out;\n -o-transition: -o-transform 0.3s ease-out;\n transition: transform 0.3s ease-out;\n}\n.modal.in .modal-dialog {\n -webkit-transform: translate(0, 0);\n -ms-transform: translate(0, 0);\n -o-transform: translate(0, 0);\n transform: translate(0, 0);\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n.modal-content {\n position: relative;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #999;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n outline: 0;\n}\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1040;\n background-color: #000;\n}\n.modal-backdrop.fade {\n filter: alpha(opacity=0);\n opacity: 0;\n}\n.modal-backdrop.in {\n filter: alpha(opacity=50);\n opacity: 0.5;\n}\n.modal-header {\n padding: 15px;\n border-bottom: 1px solid #e5e5e5;\n}\n.modal-header .close {\n margin-top: -2px;\n}\n.modal-title {\n margin: 0;\n line-height: 1.42857143;\n}\n.modal-body {\n position: relative;\n padding: 15px;\n}\n.modal-footer {\n padding: 15px;\n text-align: right;\n border-top: 1px solid #e5e5e5;\n}\n.modal-footer .btn + .btn {\n margin-bottom: 0;\n margin-left: 5px;\n}\n.modal-footer .btn-group .btn + .btn {\n margin-left: -1px;\n}\n.modal-footer .btn-block + .btn-block {\n margin-left: 0;\n}\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n@media (min-width: 768px) {\n .modal-dialog {\n width: 600px;\n margin: 30px auto;\n }\n .modal-content {\n -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n }\n .modal-sm {\n width: 300px;\n }\n}\n@media (min-width: 992px) {\n .modal-lg {\n width: 900px;\n }\n}\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-style: normal;\n font-weight: 400;\n line-height: 1.42857143;\n line-break: auto;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n white-space: normal;\n font-size: 12px;\n filter: alpha(opacity=0);\n opacity: 0;\n}\n.tooltip.in {\n filter: alpha(opacity=90);\n opacity: 0.9;\n}\n.tooltip.top {\n padding: 5px 0;\n margin-top: -3px;\n}\n.tooltip.right {\n padding: 0 5px;\n margin-left: 3px;\n}\n.tooltip.bottom {\n padding: 5px 0;\n margin-top: 3px;\n}\n.tooltip.left {\n padding: 0 5px;\n margin-left: -3px;\n}\n.tooltip.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000;\n}\n.tooltip.top-left .tooltip-arrow {\n right: 5px;\n bottom: 0;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000;\n}\n.tooltip.top-right .tooltip-arrow {\n bottom: 0;\n left: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000;\n}\n.tooltip.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -5px;\n border-width: 5px 5px 5px 0;\n border-right-color: #000;\n}\n.tooltip.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -5px;\n border-width: 5px 0 5px 5px;\n border-left-color: #000;\n}\n.tooltip.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000;\n}\n.tooltip.bottom-left .tooltip-arrow {\n top: 0;\n right: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000;\n}\n.tooltip.bottom-right .tooltip-arrow {\n top: 0;\n left: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000;\n}\n.tooltip-inner {\n max-width: 200px;\n padding: 3px 8px;\n color: #fff;\n text-align: center;\n background-color: #000;\n border-radius: 4px;\n}\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: none;\n max-width: 276px;\n padding: 1px;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-style: normal;\n font-weight: 400;\n line-height: 1.42857143;\n line-break: auto;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n white-space: normal;\n font-size: 14px;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #ccc;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n}\n.popover.top {\n margin-top: -10px;\n}\n.popover.right {\n margin-left: 10px;\n}\n.popover.bottom {\n margin-top: 10px;\n}\n.popover.left {\n margin-left: -10px;\n}\n.popover > .arrow {\n border-width: 11px;\n}\n.popover > .arrow,\n.popover > .arrow:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.popover > .arrow:after {\n content: \"\";\n border-width: 10px;\n}\n.popover.top > .arrow {\n bottom: -11px;\n left: 50%;\n margin-left: -11px;\n border-top-color: #999999;\n border-top-color: rgba(0, 0, 0, 0.25);\n border-bottom-width: 0;\n}\n.popover.top > .arrow:after {\n bottom: 1px;\n margin-left: -10px;\n content: \" \";\n border-top-color: #fff;\n border-bottom-width: 0;\n}\n.popover.right > .arrow {\n top: 50%;\n left: -11px;\n margin-top: -11px;\n border-right-color: #999999;\n border-right-color: rgba(0, 0, 0, 0.25);\n border-left-width: 0;\n}\n.popover.right > .arrow:after {\n bottom: -10px;\n left: 1px;\n content: \" \";\n border-right-color: #fff;\n border-left-width: 0;\n}\n.popover.bottom > .arrow {\n top: -11px;\n left: 50%;\n margin-left: -11px;\n border-top-width: 0;\n border-bottom-color: #999999;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n}\n.popover.bottom > .arrow:after {\n top: 1px;\n margin-left: -10px;\n content: \" \";\n border-top-width: 0;\n border-bottom-color: #fff;\n}\n.popover.left > .arrow {\n top: 50%;\n right: -11px;\n margin-top: -11px;\n border-right-width: 0;\n border-left-color: #999999;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n.popover.left > .arrow:after {\n right: 1px;\n bottom: -10px;\n content: \" \";\n border-right-width: 0;\n border-left-color: #fff;\n}\n.popover-title {\n padding: 8px 14px;\n margin: 0;\n font-size: 14px;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-radius: 5px 5px 0 0;\n}\n.popover-content {\n padding: 9px 14px;\n}\n.carousel {\n position: relative;\n}\n.carousel-inner {\n position: relative;\n width: 100%;\n overflow: hidden;\n}\n.carousel-inner > .item {\n position: relative;\n display: none;\n -webkit-transition: 0.6s ease-in-out left;\n -o-transition: 0.6s ease-in-out left;\n transition: 0.6s ease-in-out left;\n}\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n line-height: 1;\n}\n@media all and (transform-3d), (-webkit-transform-3d) {\n .carousel-inner > .item {\n -webkit-transition: -webkit-transform 0.6s ease-in-out;\n -moz-transition: -moz-transform 0.6s ease-in-out;\n -o-transition: -o-transform 0.6s ease-in-out;\n transition: transform 0.6s ease-in-out;\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n backface-visibility: hidden;\n -webkit-perspective: 1000px;\n -moz-perspective: 1000px;\n perspective: 1000px;\n }\n .carousel-inner > .item.next,\n .carousel-inner > .item.active.right {\n -webkit-transform: translate3d(100%, 0, 0);\n transform: translate3d(100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.prev,\n .carousel-inner > .item.active.left {\n -webkit-transform: translate3d(-100%, 0, 0);\n transform: translate3d(-100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.next.left,\n .carousel-inner > .item.prev.right,\n .carousel-inner > .item.active {\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n left: 0;\n }\n}\n.carousel-inner > .active,\n.carousel-inner > .next,\n.carousel-inner > .prev {\n display: block;\n}\n.carousel-inner > .active {\n left: 0;\n}\n.carousel-inner > .next,\n.carousel-inner > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n}\n.carousel-inner > .next {\n left: 100%;\n}\n.carousel-inner > .prev {\n left: -100%;\n}\n.carousel-inner > .next.left,\n.carousel-inner > .prev.right {\n left: 0;\n}\n.carousel-inner > .active.left {\n left: -100%;\n}\n.carousel-inner > .active.right {\n left: 100%;\n}\n.carousel-control {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: 15%;\n font-size: 20px;\n color: #fff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n background-color: rgba(0, 0, 0, 0);\n filter: alpha(opacity=50);\n opacity: 0.5;\n}\n.carousel-control.left {\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n background-repeat: repeat-x;\n}\n.carousel-control.right {\n right: 0;\n left: auto;\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n background-repeat: repeat-x;\n}\n.carousel-control:hover,\n.carousel-control:focus {\n color: #fff;\n text-decoration: none;\n outline: 0;\n filter: alpha(opacity=90);\n opacity: 0.9;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-left,\n.carousel-control .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n z-index: 5;\n display: inline-block;\n margin-top: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next {\n width: 20px;\n height: 20px;\n font-family: serif;\n line-height: 1;\n}\n.carousel-control .icon-prev:before {\n content: \"\\2039\";\n}\n.carousel-control .icon-next:before {\n content: \"\\203a\";\n}\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n padding-left: 0;\n margin-left: -30%;\n text-align: center;\n list-style: none;\n}\n.carousel-indicators li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n cursor: pointer;\n background-color: #000 \\9;\n background-color: rgba(0, 0, 0, 0);\n border: 1px solid #fff;\n border-radius: 10px;\n}\n.carousel-indicators .active {\n width: 12px;\n height: 12px;\n margin: 0;\n background-color: #fff;\n}\n.carousel-caption {\n position: absolute;\n right: 15%;\n bottom: 20px;\n left: 15%;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #fff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-caption .btn {\n text-shadow: none;\n}\n@media screen and (min-width: 768px) {\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-prev,\n .carousel-control .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -10px;\n font-size: 30px;\n }\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .icon-prev {\n margin-left: -10px;\n }\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-next {\n margin-right: -10px;\n }\n .carousel-caption {\n right: 20%;\n left: 20%;\n padding-bottom: 30px;\n }\n .carousel-indicators {\n bottom: 20px;\n }\n}\n.clearfix:before,\n.clearfix:after,\n.dl-horizontal dd:before,\n.dl-horizontal dd:after,\n.container:before,\n.container:after,\n.container-fluid:before,\n.container-fluid:after,\n.row:before,\n.row:after,\n.form-horizontal .form-group:before,\n.form-horizontal .form-group:after,\n.btn-toolbar:before,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:before,\n.btn-group-vertical > .btn-group:after,\n.nav:before,\n.nav:after,\n.navbar:before,\n.navbar:after,\n.navbar-header:before,\n.navbar-header:after,\n.navbar-collapse:before,\n.navbar-collapse:after,\n.pager:before,\n.pager:after,\n.panel-body:before,\n.panel-body:after,\n.modal-header:before,\n.modal-header:after,\n.modal-footer:before,\n.modal-footer:after {\n display: table;\n content: \" \";\n}\n.clearfix:after,\n.dl-horizontal dd:after,\n.container:after,\n.container-fluid:after,\n.row:after,\n.form-horizontal .form-group:after,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:after,\n.nav:after,\n.navbar:after,\n.navbar-header:after,\n.navbar-collapse:after,\n.pager:after,\n.panel-body:after,\n.modal-header:after,\n.modal-footer:after {\n clear: both;\n}\n.center-block {\n display: block;\n margin-right: auto;\n margin-left: auto;\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n.hidden {\n display: none !important;\n}\n.affix {\n position: fixed;\n}\n@-ms-viewport {\n width: device-width;\n}\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n display: none !important;\n}\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n@media (max-width: 767px) {\n .visible-xs {\n display: block !important;\n }\n table.visible-xs {\n display: table !important;\n }\n tr.visible-xs {\n display: table-row !important;\n }\n th.visible-xs,\n td.visible-xs {\n display: table-cell !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-block {\n display: block !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline {\n display: inline !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm {\n display: block !important;\n }\n table.visible-sm {\n display: table !important;\n }\n tr.visible-sm {\n display: table-row !important;\n }\n th.visible-sm,\n td.visible-sm {\n display: table-cell !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-block {\n display: block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline {\n display: inline !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md {\n display: block !important;\n }\n table.visible-md {\n display: table !important;\n }\n tr.visible-md {\n display: table-row !important;\n }\n th.visible-md,\n td.visible-md {\n display: table-cell !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-block {\n display: block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline {\n display: inline !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg {\n display: block !important;\n }\n table.visible-lg {\n display: table !important;\n }\n tr.visible-lg {\n display: table-row !important;\n }\n th.visible-lg,\n td.visible-lg {\n display: table-cell !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-block {\n display: block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline {\n display: inline !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline-block {\n display: inline-block !important;\n }\n}\n@media (max-width: 767px) {\n .hidden-xs {\n display: none !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .hidden-sm {\n display: none !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .hidden-md {\n display: none !important;\n }\n}\n@media (min-width: 1200px) {\n .hidden-lg {\n display: none !important;\n }\n}\n.visible-print {\n display: none !important;\n}\n@media print {\n .visible-print {\n display: block !important;\n }\n table.visible-print {\n display: table !important;\n }\n tr.visible-print {\n display: table-row !important;\n }\n th.visible-print,\n td.visible-print {\n display: table-cell !important;\n }\n}\n.visible-print-block {\n display: none !important;\n}\n@media print {\n .visible-print-block {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n}\n@media print {\n .visible-print-inline {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n}\n@media print {\n .visible-print-inline-block {\n display: inline-block !important;\n }\n}\n@media print {\n .hidden-print {\n display: none !important;\n }\n}\n/*# sourceMappingURL=bootstrap.css.map */","// stylelint-disable\n\n/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS and IE text size adjust after device orientation change,\n// without disabling user zoom.\n//\n\nhtml {\n font-family: sans-serif; // 1\n -ms-text-size-adjust: 100%; // 2\n -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block; // 1\n vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n background-color: transparent;\n}\n\n//\n// Improve readability of focused elements when they are also in an\n// active/hover state.\n//\n\na:active,\na:hover {\n outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// 1. Remove the bottom border in Chrome 57- and Firefox 39-.\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n//\n\nabbr[title] {\n border-bottom: none; // 1\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n background: #ff0;\n color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsup {\n top: -0.5em;\n}\n\nsub {\n bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n box-sizing: content-box;\n height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n// Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit; // 1\n font: inherit; // 2\n margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n// and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n// `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button; // 2\n cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box; // 1\n padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome.\n//\n\ninput[type=\"search\"] {\n -webkit-appearance: textfield; // 1\n box-sizing: content-box; //2\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n border: 0; // 1\n padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ntd,\nth {\n padding: 0;\n}\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type\n\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n *,\n *:before,\n *:after {\n color: #000 !important; // Black prints faster: h5bp.com/s\n text-shadow: none !important;\n background: transparent !important;\n box-shadow: none !important;\n }\n\n a,\n a:visited {\n text-decoration: underline;\n }\n\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n\n // Don't show links that are fragment identifiers,\n // or use the `javascript:` pseudo protocol\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n\n thead {\n display: table-header-group; // h5bp.com/t\n }\n\n tr,\n img {\n page-break-inside: avoid;\n }\n\n img {\n max-width: 100% !important;\n }\n\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n\n h2,\n h3 {\n page-break-after: avoid;\n }\n\n // Bootstrap specific changes start\n\n // Bootstrap components\n .navbar {\n display: none;\n }\n .btn,\n .dropup > .btn {\n > .caret {\n border-top-color: #000 !important;\n }\n }\n .label {\n border: 1px solid #000;\n }\n\n .table {\n border-collapse: collapse !important;\n\n td,\n th {\n background-color: #fff !important;\n }\n }\n .table-bordered {\n th,\n td {\n border: 1px solid #ddd !important;\n }\n }\n}\n","// stylelint-disable value-list-comma-newline-after, value-list-comma-space-after, indentation, declaration-colon-newline-after, font-family-no-missing-generic-family-keyword\n\n//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// <a href=\"#\"><span class=\"glyphicon glyphicon-star\"></span> Star</a>\n\n// Import the fonts\n@font-face {\n font-family: \"Glyphicons Halflings\";\n src: url(\"@{icon-font-path}@{icon-font-name}.eot\");\n src: url(\"@{icon-font-path}@{icon-font-name}.eot?#iefix\") format(\"embedded-opentype\"),\n url(\"@{icon-font-path}@{icon-font-name}.woff2\") format(\"woff2\"),\n url(\"@{icon-font-path}@{icon-font-name}.woff\") format(\"woff\"),\n url(\"@{icon-font-path}@{icon-font-name}.ttf\") format(\"truetype\"),\n url(\"@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}\") format(\"svg\");\n}\n\n// Catchall baseclass\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: \"Glyphicons Halflings\";\n font-style: normal;\n font-weight: 400;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk { &:before { content: \"\\002a\"; } }\n.glyphicon-plus { &:before { content: \"\\002b\"; } }\n.glyphicon-euro,\n.glyphicon-eur { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil { &:before { content: \"\\270f\"; } }\n.glyphicon-glass { &:before { content: \"\\e001\"; } }\n.glyphicon-music { &:before { content: \"\\e002\"; } }\n.glyphicon-search { &:before { content: \"\\e003\"; } }\n.glyphicon-heart { &:before { content: \"\\e005\"; } }\n.glyphicon-star { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty { &:before { content: \"\\e007\"; } }\n.glyphicon-user { &:before { content: \"\\e008\"; } }\n.glyphicon-film { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large { &:before { content: \"\\e010\"; } }\n.glyphicon-th { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list { &:before { content: \"\\e012\"; } }\n.glyphicon-ok { &:before { content: \"\\e013\"; } }\n.glyphicon-remove { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out { &:before { content: \"\\e016\"; } }\n.glyphicon-off { &:before { content: \"\\e017\"; } }\n.glyphicon-signal { &:before { content: \"\\e018\"; } }\n.glyphicon-cog { &:before { content: \"\\e019\"; } }\n.glyphicon-trash { &:before { content: \"\\e020\"; } }\n.glyphicon-home { &:before { content: \"\\e021\"; } }\n.glyphicon-file { &:before { content: \"\\e022\"; } }\n.glyphicon-time { &:before { content: \"\\e023\"; } }\n.glyphicon-road { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt { &:before { content: \"\\e025\"; } }\n.glyphicon-download { &:before { content: \"\\e026\"; } }\n.glyphicon-upload { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt { &:before { content: \"\\e032\"; } }\n.glyphicon-lock { &:before { content: \"\\e033\"; } }\n.glyphicon-flag { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode { &:before { content: \"\\e040\"; } }\n.glyphicon-tag { &:before { content: \"\\e041\"; } }\n.glyphicon-tags { &:before { content: \"\\e042\"; } }\n.glyphicon-book { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark { &:before { content: \"\\e044\"; } }\n.glyphicon-print { &:before { content: \"\\e045\"; } }\n.glyphicon-camera { &:before { content: \"\\e046\"; } }\n.glyphicon-font { &:before { content: \"\\e047\"; } }\n.glyphicon-bold { &:before { content: \"\\e048\"; } }\n.glyphicon-italic { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify { &:before { content: \"\\e055\"; } }\n.glyphicon-list { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video { &:before { content: \"\\e059\"; } }\n.glyphicon-picture { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust { &:before { content: \"\\e063\"; } }\n.glyphicon-tint { &:before { content: \"\\e064\"; } }\n.glyphicon-edit { &:before { content: \"\\e065\"; } }\n.glyphicon-share { &:before { content: \"\\e066\"; } }\n.glyphicon-check { &:before { content: \"\\e067\"; } }\n.glyphicon-move { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward { &:before { content: \"\\e070\"; } }\n.glyphicon-backward { &:before { content: \"\\e071\"; } }\n.glyphicon-play { &:before { content: \"\\e072\"; } }\n.glyphicon-pause { &:before { content: \"\\e073\"; } }\n.glyphicon-stop { &:before { content: \"\\e074\"; } }\n.glyphicon-forward { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward { &:before { content: \"\\e077\"; } }\n.glyphicon-eject { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign { &:before { content: \"\\e101\"; } }\n.glyphicon-gift { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf { &:before { content: \"\\e103\"; } }\n.glyphicon-fire { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign { &:before { content: \"\\e107\"; } }\n.glyphicon-plane { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar { &:before { content: \"\\e109\"; } }\n.glyphicon-random { &:before { content: \"\\e110\"; } }\n.glyphicon-comment { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn { &:before { content: \"\\e122\"; } }\n.glyphicon-bell { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down { &:before { content: \"\\e134\"; } }\n.glyphicon-globe { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks { &:before { content: \"\\e137\"; } }\n.glyphicon-filter { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty { &:before { content: \"\\e143\"; } }\n.glyphicon-link { &:before { content: \"\\e144\"; } }\n.glyphicon-phone { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin { &:before { content: \"\\e146\"; } }\n.glyphicon-usd { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp { &:before { content: \"\\e149\"; } }\n.glyphicon-sort { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked { &:before { content: \"\\e157\"; } }\n.glyphicon-expand { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in { &:before { content: \"\\e161\"; } }\n.glyphicon-flash { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window { &:before { content: \"\\e164\"; } }\n.glyphicon-record { &:before { content: \"\\e165\"; } }\n.glyphicon-save { &:before { content: \"\\e166\"; } }\n.glyphicon-open { &:before { content: \"\\e167\"; } }\n.glyphicon-saved { &:before { content: \"\\e168\"; } }\n.glyphicon-import { &:before { content: \"\\e169\"; } }\n.glyphicon-export { &:before { content: \"\\e170\"; } }\n.glyphicon-send { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery { &:before { content: \"\\e179\"; } }\n.glyphicon-header { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt { &:before { content: \"\\e183\"; } }\n.glyphicon-tower { &:before { content: \"\\e184\"; } }\n.glyphicon-stats { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1 { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1 { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1 { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous { &:before { content: \"\\e200\"; } }\n.glyphicon-cd { &:before { content: \"\\e201\"; } }\n.glyphicon-save-file { &:before { content: \"\\e202\"; } }\n.glyphicon-open-file { &:before { content: \"\\e203\"; } }\n.glyphicon-level-up { &:before { content: \"\\e204\"; } }\n.glyphicon-copy { &:before { content: \"\\e205\"; } }\n.glyphicon-paste { &:before { content: \"\\e206\"; } }\n// The following 2 Glyphicons are omitted for the time being because\n// they currently use Unicode codepoints that are outside the\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle\n// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.\n// Notably, the bug affects some older versions of the Android Browser.\n// More info: https://github.com/twbs/bootstrap/issues/10106\n// .glyphicon-door { &:before { content: \"\\1f6aa\"; } }\n// .glyphicon-key { &:before { content: \"\\1f511\"; } }\n.glyphicon-alert { &:before { content: \"\\e209\"; } }\n.glyphicon-equalizer { &:before { content: \"\\e210\"; } }\n.glyphicon-king { &:before { content: \"\\e211\"; } }\n.glyphicon-queen { &:before { content: \"\\e212\"; } }\n.glyphicon-pawn { &:before { content: \"\\e213\"; } }\n.glyphicon-bishop { &:before { content: \"\\e214\"; } }\n.glyphicon-knight { &:before { content: \"\\e215\"; } }\n.glyphicon-baby-formula { &:before { content: \"\\e216\"; } }\n.glyphicon-tent { &:before { content: \"\\26fa\"; } }\n.glyphicon-blackboard { &:before { content: \"\\e218\"; } }\n.glyphicon-bed { &:before { content: \"\\e219\"; } }\n.glyphicon-apple { &:before { content: \"\\f8ff\"; } }\n.glyphicon-erase { &:before { content: \"\\e221\"; } }\n.glyphicon-hourglass { &:before { content: \"\\231b\"; } }\n.glyphicon-lamp { &:before { content: \"\\e223\"; } }\n.glyphicon-duplicate { &:before { content: \"\\e224\"; } }\n.glyphicon-piggy-bank { &:before { content: \"\\e225\"; } }\n.glyphicon-scissors { &:before { content: \"\\e226\"; } }\n.glyphicon-bitcoin { &:before { content: \"\\e227\"; } }\n.glyphicon-btc { &:before { content: \"\\e227\"; } }\n.glyphicon-xbt { &:before { content: \"\\e227\"; } }\n.glyphicon-yen { &:before { content: \"\\00a5\"; } }\n.glyphicon-jpy { &:before { content: \"\\00a5\"; } }\n.glyphicon-ruble { &:before { content: \"\\20bd\"; } }\n.glyphicon-rub { &:before { content: \"\\20bd\"; } }\n.glyphicon-scale { &:before { content: \"\\e230\"; } }\n.glyphicon-ice-lolly { &:before { content: \"\\e231\"; } }\n.glyphicon-ice-lolly-tasted { &:before { content: \"\\e232\"; } }\n.glyphicon-education { &:before { content: \"\\e233\"; } }\n.glyphicon-option-horizontal { &:before { content: \"\\e234\"; } }\n.glyphicon-option-vertical { &:before { content: \"\\e235\"; } }\n.glyphicon-menu-hamburger { &:before { content: \"\\e236\"; } }\n.glyphicon-modal-window { &:before { content: \"\\e237\"; } }\n.glyphicon-oil { &:before { content: \"\\e238\"; } }\n.glyphicon-grain { &:before { content: \"\\e239\"; } }\n.glyphicon-sunglasses { &:before { content: \"\\e240\"; } }\n.glyphicon-text-size { &:before { content: \"\\e241\"; } }\n.glyphicon-text-color { &:before { content: \"\\e242\"; } }\n.glyphicon-text-background { &:before { content: \"\\e243\"; } }\n.glyphicon-object-align-top { &:before { content: \"\\e244\"; } }\n.glyphicon-object-align-bottom { &:before { content: \"\\e245\"; } }\n.glyphicon-object-align-horizontal{ &:before { content: \"\\e246\"; } }\n.glyphicon-object-align-left { &:before { content: \"\\e247\"; } }\n.glyphicon-object-align-vertical { &:before { content: \"\\e248\"; } }\n.glyphicon-object-align-right { &:before { content: \"\\e249\"; } }\n.glyphicon-triangle-right { &:before { content: \"\\e250\"; } }\n.glyphicon-triangle-left { &:before { content: \"\\e251\"; } }\n.glyphicon-triangle-bottom { &:before { content: \"\\e252\"; } }\n.glyphicon-triangle-top { &:before { content: \"\\e253\"; } }\n.glyphicon-console { &:before { content: \"\\e254\"; } }\n.glyphicon-superscript { &:before { content: \"\\e255\"; } }\n.glyphicon-subscript { &:before { content: \"\\e256\"; } }\n.glyphicon-menu-left { &:before { content: \"\\e257\"; } }\n.glyphicon-menu-right { &:before { content: \"\\e258\"; } }\n.glyphicon-menu-down { &:before { content: \"\\e259\"; } }\n.glyphicon-menu-up { &:before { content: \"\\e260\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// https://getbootstrap.com/docs/3.4/getting-started/#third-box-sizing\n* {\n .box-sizing(border-box);\n}\n*:before,\n*:after {\n .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\nbody {\n font-family: @font-family-base;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @text-color;\n background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n\n// Links\n\na {\n color: @link-color;\n text-decoration: none;\n\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: @link-hover-decoration;\n }\n\n &:focus {\n .tab-focus();\n }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n margin: 0;\n}\n\n\n// Images\n\nimg {\n vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n padding: @thumbnail-padding;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(all .2s ease-in-out);\n\n // Keep them at most 100% wide\n .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n margin-top: @line-height-computed;\n margin-bottom: @line-height-computed;\n border: 0;\n border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: https://a11yproject.com/posts/how-to-hide-content\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n &:active,\n &:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n }\n}\n\n\n// iOS \"clickable elements\" fix for role=\"button\"\n//\n// Fixes \"clickability\" issue (and more generally, the firing of events such as focus as well)\n// for traditionally non-focusable elements with role=\"button\"\n// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n\n[role=\"button\"] {\n cursor: pointer;\n}\n","// stylelint-disable indentation, property-no-vendor-prefix, selector-no-vendor-prefix\n\n// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n word-wrap: break-word;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// WebKit-style focus\n\n.tab-focus() {\n // WebKit-specific. Other browsers will keep their default outline style.\n // (Initially tried to also force default via `outline: initial`,\n // but that seems to erroneously remove the outline in Firefox altogether.)\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n","// stylelint-disable media-feature-name-no-vendor-prefix, media-feature-parentheses-space-inside, media-feature-name-no-unknown, indentation, at-rule-name-space-after\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n.img-responsive(@display: block) {\n display: @display;\n max-width: 100%; // Part 1: Set a maximum relative to the parent\n height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n background-image: url(\"@{file-1x}\");\n\n @media\n only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and ( min--moz-device-pixel-ratio: 2),\n only screen and ( -o-min-device-pixel-ratio: 2/1),\n only screen and ( min-device-pixel-ratio: 2),\n only screen and ( min-resolution: 192dpi),\n only screen and ( min-resolution: 2dppx) {\n background-image: url(\"@{file-2x}\");\n background-size: @width-1x @height-1x;\n }\n}\n","// stylelint-disable selector-list-comma-newline-after, selector-no-qualifying-type\n\n//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n font-family: @headings-font-family;\n font-weight: @headings-font-weight;\n line-height: @headings-line-height;\n color: @headings-color;\n\n small,\n .small {\n font-weight: 400;\n line-height: 1;\n color: @headings-small-color;\n }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n margin-top: @line-height-computed;\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 65%;\n }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n margin-top: (@line-height-computed / 2);\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 75%;\n }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n margin-bottom: @line-height-computed;\n font-size: floor((@font-size-base * 1.15));\n font-weight: 300;\n line-height: 1.4;\n\n @media (min-width: @screen-sm-min) {\n font-size: (@font-size-base * 1.5);\n }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: (12px small font / 14px base font) * 100% = about 85%\nsmall,\n.small {\n font-size: floor((100% * @font-size-small / @font-size-base));\n}\n\nmark,\n.mark {\n padding: .2em;\n background-color: @state-warning-bg;\n}\n\n// Alignment\n.text-left { text-align: left; }\n.text-right { text-align: right; }\n.text-center { text-align: center; }\n.text-justify { text-align: justify; }\n.text-nowrap { white-space: nowrap; }\n\n// Transformation\n.text-lowercase { text-transform: lowercase; }\n.text-uppercase { text-transform: uppercase; }\n.text-capitalize { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n color: @text-muted;\n}\n.text-primary {\n .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n // Given the contrast here, this is the only class to have its color inverted\n // automatically.\n color: #fff;\n .bg-variant(@brand-primary);\n}\n.bg-success {\n .bg-variant(@state-success-bg);\n}\n.bg-info {\n .bg-variant(@state-info-bg);\n}\n.bg-warning {\n .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n padding-bottom: ((@line-height-computed / 2) - 1);\n margin: (@line-height-computed * 2) 0 @line-height-computed;\n border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n margin-top: 0;\n margin-bottom: (@line-height-computed / 2);\n ul,\n ol {\n margin-bottom: 0;\n }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n .list-unstyled();\n margin-left: -5px;\n\n > li {\n display: inline-block;\n padding-right: 5px;\n padding-left: 5px;\n }\n}\n\n// Description Lists\ndl {\n margin-top: 0; // Remove browser default\n margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n line-height: @line-height-base;\n}\ndt {\n font-weight: 700;\n}\ndd {\n margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n dd {\n &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n }\n\n @media (min-width: @dl-horizontal-breakpoint) {\n dt {\n float: left;\n width: (@dl-horizontal-offset - 20);\n clear: left;\n text-align: right;\n .text-overflow();\n }\n dd {\n margin-left: @dl-horizontal-offset;\n }\n }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[title],\nabbr[data-original-title] {\n cursor: help;\n}\n\n.initialism {\n font-size: 90%;\n .text-uppercase();\n}\n\n// Blockquotes\nblockquote {\n padding: (@line-height-computed / 2) @line-height-computed;\n margin: 0 0 @line-height-computed;\n font-size: @blockquote-font-size;\n border-left: 5px solid @blockquote-border-color;\n\n p,\n ul,\n ol {\n &:last-child {\n margin-bottom: 0;\n }\n }\n\n // Note: Deprecated small and .small as of v3.1.0\n // Context: https://github.com/twbs/bootstrap/issues/11660\n footer,\n small,\n .small {\n display: block;\n font-size: 80%; // back to default font-size\n line-height: @line-height-base;\n color: @blockquote-small-color;\n\n &:before {\n content: \"\\2014 \\00A0\"; // em dash, nbsp\n }\n }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n text-align: right;\n border-right: 5px solid @blockquote-border-color;\n border-left: 0;\n\n // Account for citation\n footer,\n small,\n .small {\n &:before { content: \"\"; }\n &:after {\n content: \"\\00A0 \\2014\"; // nbsp, em dash\n }\n }\n}\n\n// Addresses\naddress {\n margin-bottom: @line-height-computed;\n font-style: normal;\n line-height: @line-height-base;\n}\n","// Typography\n\n.text-emphasis-variant(@color) {\n color: @color;\n a&:hover,\n a&:focus {\n color: darken(@color, 10%);\n }\n}\n","// Contextual backgrounds\n\n.bg-variant(@color) {\n background-color: @color;\n a&:hover,\n a&:focus {\n background-color: darken(@color, 10%);\n }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n.text-overflow() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: @code-color;\n background-color: @code-bg;\n border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: @kbd-color;\n background-color: @kbd-bg;\n border-radius: @border-radius-small;\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);\n\n kbd {\n padding: 0;\n font-size: 100%;\n font-weight: 700;\n box-shadow: none;\n }\n}\n\n// Blocks of code\npre {\n display: block;\n padding: ((@line-height-computed - 1) / 2);\n margin: 0 0 (@line-height-computed / 2);\n font-size: (@font-size-base - 1); // 14px to 13px\n line-height: @line-height-base;\n color: @pre-color;\n word-break: break-all;\n word-wrap: break-word;\n background-color: @pre-bg;\n border: 1px solid @pre-border-color;\n border-radius: @border-radius-base;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: @pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n .container-fixed();\n\n @media (min-width: @screen-sm-min) {\n width: @container-sm;\n }\n @media (min-width: @screen-md-min) {\n width: @container-md;\n }\n @media (min-width: @screen-lg-min) {\n width: @container-lg;\n }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n .make-row();\n}\n\n.row-no-gutters {\n margin-right: 0;\n margin-left: 0;\n\n [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n .make-grid(lg);\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @grid-gutter-width) {\n padding-right: ceil((@gutter / 2));\n padding-left: floor((@gutter / 2));\n margin-right: auto;\n margin-left: auto;\n &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n margin-right: floor((@gutter / -2));\n margin-left: ceil((@gutter / -2));\n &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @grid-columns));\n min-height: 1px;\n padding-right: (@gutter / 2);\n padding-left: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n margin-left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-push(@columns) {\n left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-pull(@columns) {\n right: percentage((@columns / @grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-right: (@gutter / 2);\n padding-left: (@gutter / 2);\n\n @media (min-width: @screen-sm-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-offset(@columns) {\n @media (min-width: @screen-sm-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @screen-sm-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @screen-sm-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-right: (@gutter / 2);\n padding-left: (@gutter / 2);\n\n @media (min-width: @screen-md-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-offset(@columns) {\n @media (min-width: @screen-md-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @screen-md-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @screen-md-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-right: (@gutter / 2);\n padding-left: (@gutter / 2);\n\n @media (min-width: @screen-lg-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-offset(@columns) {\n @media (min-width: @screen-lg-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @screen-lg-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @screen-lg-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-right: floor((@grid-gutter-width / 2));\n padding-left: ceil((@grid-gutter-width / 2));\n }\n }\n .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n .col(@index) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n float: left;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n .col-@{class}-push-@{index} {\n left: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n .col-@{class}-push-0 {\n left: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n .col-@{class}-pull-@{index} {\n right: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n .col-@{class}-pull-0 {\n right: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-left: percentage((@index / @grid-columns));\n }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n .calc-grid-column(@index, @class, @type);\n // next iteration\n .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n .float-grid-columns(@class);\n .loop-grid-columns(@grid-columns, @class, width);\n .loop-grid-columns(@grid-columns, @class, pull);\n .loop-grid-columns(@grid-columns, @class, push);\n .loop-grid-columns(@grid-columns, @class, offset);\n}\n","// stylelint-disable selector-max-type, selector-max-compound-selectors, selector-no-qualifying-type\n\n//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n background-color: @table-bg;\n\n // Table cell sizing\n //\n // Reset default table behavior\n\n col[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n display: table-column;\n float: none;\n }\n\n td,\n th {\n &[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n display: table-cell;\n float: none;\n }\n }\n}\n\ncaption {\n padding-top: @table-cell-padding;\n padding-bottom: @table-cell-padding;\n color: @text-muted;\n text-align: left;\n}\n\nth {\n text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: @line-height-computed;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-cell-padding;\n line-height: @line-height-base;\n vertical-align: top;\n border-top: 1px solid @table-border-color;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid @table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @table-border-color;\n }\n\n // Nesting\n .table {\n background-color: @body-bg;\n }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-condensed-cell-padding;\n }\n }\n }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n border: 1px solid @table-border-color;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 1px solid @table-border-color;\n }\n }\n }\n > thead > tr {\n > th,\n > td {\n border-bottom-width: 2px;\n }\n }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n > tbody > tr:nth-of-type(odd) {\n background-color: @table-bg-accent;\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n > tbody > tr:hover {\n background-color: @table-bg-hover;\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n min-height: .01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n overflow-x: auto;\n\n @media screen and (max-width: @screen-xs-max) {\n width: 100%;\n margin-bottom: (@line-height-computed * .75);\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid @table-border-color;\n\n // Tighten up spacing\n > .table {\n margin-bottom: 0;\n\n // Ensure the content doesn't wrap\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n white-space: nowrap;\n }\n }\n }\n }\n\n // Special overrides for the bordered tables\n > .table-bordered {\n border: 0;\n\n // Nuke the appropriate borders so that the parent can handle them\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n\n // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n // chances are there will be only one `tr` in a `thead` and that would\n // remove the border altogether.\n > tbody,\n > tfoot {\n > tr:last-child {\n > th,\n > td {\n border-bottom: 0;\n }\n }\n }\n\n }\n }\n}\n","// Tables\n\n.table-row-variant(@state; @background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table > thead > tr,\n .table > tbody > tr,\n .table > tfoot > tr {\n > td.@{state},\n > th.@{state},\n &.@{state} > td,\n &.@{state} > th {\n background-color: @background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover > tbody > tr {\n > td.@{state}:hover,\n > th.@{state}:hover,\n &.@{state}:hover > td,\n &:hover > .@{state},\n &.@{state}:hover > th {\n background-color: darken(@background, 5%);\n }\n }\n}\n","// stylelint-disable selector-no-qualifying-type, property-no-vendor-prefix, media-feature-name-no-vendor-prefix\n\n//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n // so we reset that to ensure it behaves more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359.\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: @line-height-computed;\n font-size: (@font-size-base * 1.5);\n line-height: inherit;\n color: @legend-color;\n border: 0;\n border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n display: inline-block;\n max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n margin-bottom: 5px;\n font-weight: 700;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\ninput[type=\"search\"] {\n // Override content-box in Normalize (* isn't specific enough)\n .box-sizing(border-box);\n\n // Search inputs in iOS\n //\n // This overrides the extra rounded corners on search inputs in iOS so that our\n // `.form-control` class can properly style them. Note that this cannot simply\n // be added to `.form-control` as it's not specific enough. For details, see\n // https://github.com/twbs/bootstrap/issues/11586.\n -webkit-appearance: none;\n appearance: none;\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9; // IE8-9\n line-height: normal;\n\n // Apply same disabled cursor tweak as for inputs\n // Some special care is needed because <label>s don't inherit their parent's `cursor`.\n //\n // Note: Neither radios nor checkboxes can be readonly.\n &[disabled],\n &.disabled,\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n }\n}\n\ninput[type=\"file\"] {\n display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n .tab-focus();\n}\n\n// Adjust output element\noutput {\n display: block;\n padding-top: (@padding-base-vertical + 1);\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n display: block;\n width: 100%;\n height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n background-color: @input-bg;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid @input-border;\n border-radius: @input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.\n .box-shadow(inset 0 1px 1px rgba(0, 0, 0, .075));\n .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n // Customize the `:focus` state to imitate native WebKit styles.\n .form-control-focus();\n\n // Placeholder\n .placeholder();\n\n // Unstyle the caret on `<select>`s in IE10+.\n &::-ms-expand {\n background-color: transparent;\n border: 0;\n }\n\n // Disabled and read-only inputs\n //\n // HTML5 says that controls under a fieldset > legend:first-child won't be\n // disabled if the fieldset is disabled. Due to implementation difficulty, we\n // don't honor that edge case; we style them as disabled anyway.\n &[disabled],\n &[readonly],\n fieldset[disabled] & {\n background-color: @input-bg-disabled;\n opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655\n }\n\n &[disabled],\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n }\n\n // Reset height for `textarea`s\n textarea& {\n height: auto;\n }\n}\n\n\n// Special styles for iOS temporal inputs\n//\n// In Mobile Safari, setting `display: block` on temporal inputs causes the\n// text within the input to become vertically misaligned. As a workaround, we\n// set a pixel line-height that matches the given height of the input, but only\n// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848\n//\n// Note that as of 9.3, iOS doesn't support `week`.\n\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"],\n input[type=\"time\"],\n input[type=\"datetime-local\"],\n input[type=\"month\"] {\n &.form-control {\n line-height: @input-height-base;\n }\n\n &.input-sm,\n .input-group-sm & {\n line-height: @input-height-small;\n }\n\n &.input-lg,\n .input-group-lg & {\n line-height: @input-height-large;\n }\n }\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n margin-bottom: @form-group-margin-bottom;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n\n // These are used on elements with <label> descendants\n &.disabled,\n fieldset[disabled] & {\n label {\n cursor: @cursor-disabled;\n }\n }\n\n label {\n min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: 400;\n cursor: pointer;\n }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-top: 4px \\9;\n margin-left: -20px;\n}\n\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n position: relative;\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: 400;\n vertical-align: middle;\n cursor: pointer;\n\n // These are used directly on <label>s\n &.disabled,\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n }\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px; // space out consecutive inline controls\n}\n\n\n// Static form control text\n//\n// Apply class to a `p` element to make any string of text align with labels in\n// a horizontal form layout.\n\n.form-control-static {\n min-height: (@line-height-computed + @font-size-base);\n // Size it appropriately next to real form controls\n padding-top: (@padding-base-vertical + 1);\n padding-bottom: (@padding-base-vertical + 1);\n // Remove default margin from `p`\n margin-bottom: 0;\n\n &.input-lg,\n &.input-sm {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n//\n// The `.form-group-* form-control` variations are sadly duplicated to avoid the\n// issue documented in https://github.com/twbs/bootstrap/issues/15074.\n\n.input-sm {\n .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);\n}\n.form-group-sm {\n .form-control {\n height: @input-height-small;\n padding: @padding-small-vertical @padding-small-horizontal;\n font-size: @font-size-small;\n line-height: @line-height-small;\n border-radius: @input-border-radius-small;\n }\n select.form-control {\n height: @input-height-small;\n line-height: @input-height-small;\n }\n textarea.form-control,\n select[multiple].form-control {\n height: auto;\n }\n .form-control-static {\n height: @input-height-small;\n min-height: (@line-height-computed + @font-size-small);\n padding: (@padding-small-vertical + 1) @padding-small-horizontal;\n font-size: @font-size-small;\n line-height: @line-height-small;\n }\n}\n\n.input-lg {\n .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);\n}\n.form-group-lg {\n .form-control {\n height: @input-height-large;\n padding: @padding-large-vertical @padding-large-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-large;\n border-radius: @input-border-radius-large;\n }\n select.form-control {\n height: @input-height-large;\n line-height: @input-height-large;\n }\n textarea.form-control,\n select[multiple].form-control {\n height: auto;\n }\n .form-control-static {\n height: @input-height-large;\n min-height: (@line-height-computed + @font-size-large);\n padding: (@padding-large-vertical + 1) @padding-large-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-large;\n }\n}\n\n\n// Form control feedback states\n//\n// Apply contextual and semantic states to individual form controls.\n\n.has-feedback {\n // Enable absolute positioning\n position: relative;\n\n // Ensure icons don't overlap text\n .form-control {\n padding-right: (@input-height-base * 1.25);\n }\n}\n// Feedback icon (requires .glyphicon classes)\n.form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2; // Ensure icon is above input groups\n display: block;\n width: @input-height-base;\n height: @input-height-base;\n line-height: @input-height-base;\n text-align: center;\n pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n width: @input-height-large;\n height: @input-height-large;\n line-height: @input-height-large;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n width: @input-height-small;\n height: @input-height-small;\n line-height: @input-height-small;\n}\n\n// Feedback states\n.has-success {\n .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);\n}\n.has-warning {\n .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);\n}\n.has-error {\n .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);\n}\n\n// Reposition feedback icon if input has visible label above\n.has-feedback label {\n\n & ~ .form-control-feedback {\n top: (@line-height-computed + 5); // Height of the `label` and its margin\n }\n &.sr-only ~ .form-control-feedback {\n top: 0;\n }\n}\n\n\n// Help text\n//\n// Apply to any element you wish to create light text for placement immediately\n// below a form control. Use for general help, formatting, or instructional text.\n\n.help-block {\n display: block; // account for any element using help-block\n margin-top: 5px;\n margin-bottom: 10px;\n color: lighten(@text-color, 25%); // lighten the text some for contrast\n}\n\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n // Kick in the inline\n @media (min-width: @screen-sm-min) {\n // Inline-block all the things for \"inline\"\n .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // In navbar-form, allow folks to *not* use `.form-group`\n .form-control {\n display: inline-block;\n width: auto; // Prevent labels from stacking above inputs in `.form-group`\n vertical-align: middle;\n }\n\n // Make static controls behave like regular ones\n .form-control-static {\n display: inline-block;\n }\n\n .input-group {\n display: inline-table;\n vertical-align: middle;\n\n .input-group-addon,\n .input-group-btn,\n .form-control {\n width: auto;\n }\n }\n\n // Input groups need that 100% width though\n .input-group > .form-control {\n width: 100%;\n }\n\n .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // Remove default margin on radios/checkboxes that were used for stacking, and\n // then undo the floating of radios and checkboxes to match.\n .radio,\n .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n\n label {\n padding-left: 0;\n }\n }\n .radio input[type=\"radio\"],\n .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n\n // Re-override the feedback icon.\n .has-feedback .form-control-feedback {\n top: 0;\n }\n }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n // Consistent vertical alignment of radios and checkboxes\n //\n // Labels also get some reset styles, but that is scoped to a media query below.\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n margin-top: 0;\n margin-bottom: 0;\n }\n // Account for padding we're adding to ensure the alignment and of help text\n // and other content below items\n .radio,\n .checkbox {\n min-height: (@line-height-computed + (@padding-base-vertical + 1));\n }\n\n // Make form groups behave like rows\n .form-group {\n .make-row();\n }\n\n // Reset spacing and right align labels, but scope to media queries so that\n // labels on narrow viewports stack the same as a default form example.\n @media (min-width: @screen-sm-min) {\n .control-label {\n padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n margin-bottom: 0;\n text-align: right;\n }\n }\n\n // Validation states\n //\n // Reposition the icon because it's now within a grid column and columns have\n // `position: relative;` on them. Also accounts for the grid gutter padding.\n .has-feedback .form-control-feedback {\n right: floor((@grid-gutter-width / 2));\n }\n\n // Form group sizes\n //\n // Quick utility class for applying `.input-lg` and `.input-sm` styles to the\n // inputs and labels within a `.form-group`.\n .form-group-lg {\n @media (min-width: @screen-sm-min) {\n .control-label {\n padding-top: (@padding-large-vertical + 1);\n font-size: @font-size-large;\n }\n }\n }\n .form-group-sm {\n @media (min-width: @screen-sm-min) {\n .control-label {\n padding-top: (@padding-small-vertical + 1);\n font-size: @font-size-small;\n }\n }\n }\n}\n","// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n // Color the label and help text\n .help-block,\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline,\n &.radio label,\n &.checkbox label,\n &.radio-inline label,\n &.checkbox-inline label {\n color: @text-color;\n }\n // Set the border and box shadow on specific inputs to match\n .form-control {\n border-color: @border-color;\n .box-shadow(inset 0 1px 1px rgba(0, 0, 0, .075)); // Redeclare so transitions work\n &:focus {\n border-color: darken(@border-color, 10%);\n @shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px lighten(@border-color, 20%);\n .box-shadow(@shadow);\n }\n }\n // Set validation states also for addons\n .input-group-addon {\n color: @text-color;\n background-color: @background-color;\n border-color: @border-color;\n }\n // Optional feedback icon\n .form-control-feedback {\n color: @text-color;\n }\n}\n\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-border-focus` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n.form-control-focus(@color: @input-border-focus) {\n @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n &:focus {\n border-color: @color;\n outline: 0;\n .box-shadow(~\"inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px @{color-rgba}\");\n }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `<select>`\n// element gets special love because it's special, and that's a fact!\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n height: @input-height;\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n\n select& {\n height: @input-height;\n line-height: @input-height;\n }\n\n textarea&,\n select[multiple]& {\n height: auto;\n }\n}\n","// stylelint-disable selector-no-qualifying-type\n\n//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n.btn {\n display: inline-block;\n margin-bottom: 0; // For input.btn\n font-weight: @btn-font-weight;\n text-align: center;\n white-space: nowrap;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);\n .user-select(none);\n\n &,\n &:active,\n &.active {\n &:focus,\n &.focus {\n .tab-focus();\n }\n }\n\n &:hover,\n &:focus,\n &.focus {\n color: @btn-default-color;\n text-decoration: none;\n }\n\n &:active,\n &.active {\n background-image: none;\n outline: 0;\n .box-shadow(inset 0 3px 5px rgba(0, 0, 0, .125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n .opacity(.65);\n .box-shadow(none);\n }\n\n a& {\n &.disabled,\n fieldset[disabled] & {\n pointer-events: none; // Future-proof disabling of clicks on `<a>` elements\n }\n }\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);\n}\n.btn-primary {\n .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);\n}\n// Success appears as green\n.btn-success {\n .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);\n}\n// Warning appears as orange\n.btn-warning {\n .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n font-weight: 400;\n color: @link-color;\n border-radius: 0;\n\n &,\n &:active,\n &.active,\n &[disabled],\n fieldset[disabled] & {\n background-color: transparent;\n .box-shadow(none);\n }\n &,\n &:hover,\n &:focus,\n &:active {\n border-color: transparent;\n }\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: @link-hover-decoration;\n background-color: transparent;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @btn-link-disabled-color;\n text-decoration: none;\n }\n }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n // line-height: ensure even-numbered height of button next to large input\n .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @btn-border-radius-large);\n}\n.btn-sm {\n // line-height: ensure proper height of button next to small input\n .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n.btn-xs {\n .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n\n\n// Block button\n// --------------------------------------------------\n\n.btn-block {\n display: block;\n width: 100%;\n}\n\n// Vertically space out multiple block buttons\n.btn-block + .btn-block {\n margin-top: 5px;\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n &.btn-block {\n width: 100%;\n }\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n color: @color;\n background-color: @background;\n border-color: @border;\n\n &:focus,\n &.focus {\n color: @color;\n background-color: darken(@background, 10%);\n border-color: darken(@border, 25%);\n }\n &:hover {\n color: @color;\n background-color: darken(@background, 10%);\n border-color: darken(@border, 12%);\n }\n &:active,\n &.active,\n .open > .dropdown-toggle& {\n color: @color;\n background-color: darken(@background, 10%);\n background-image: none;\n border-color: darken(@border, 12%);\n\n &:hover,\n &:focus,\n &.focus {\n color: @color;\n background-color: darken(@background, 17%);\n border-color: darken(@border, 25%);\n }\n }\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus,\n &.focus {\n background-color: @background;\n border-color: @border;\n }\n }\n\n .badge {\n color: @background;\n background-color: @color;\n }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n @opacity-ie: (@opacity * 100); // IE8 filter\n filter: ~\"alpha(opacity=@{opacity-ie})\";\n opacity: @opacity;\n}\n","// stylelint-disable selector-no-qualifying-type\n\n//\n// Component animations\n// --------------------------------------------------\n\n// Heads up!\n//\n// We don't use the `.opacity()` mixin here since it causes a bug with text\n// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.\n\n.fade {\n opacity: 0;\n .transition(opacity .15s linear);\n\n &.in {\n opacity: 1;\n }\n}\n\n.collapse {\n display: none;\n\n &.in { display: block; }\n tr&.in { display: table-row; }\n tbody&.in { display: table-row-group; }\n}\n\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n .transition-property(~\"height, visibility\");\n .transition-duration(.35s);\n .transition-timing-function(ease);\n}\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: @caret-width-base dashed;\n border-top: @caret-width-base solid ~\"\\9\"; // IE8\n border-right: @caret-width-base solid transparent;\n border-left: @caret-width-base solid transparent;\n}\n\n// The dropdown wrapper (div)\n.dropup,\n.dropdown {\n position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: @zindex-dropdown;\n display: none; // none by default, but block on \"open\" of the menu\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0; // override default ul\n font-size: @font-size-base;\n text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)\n list-style: none;\n background-color: @dropdown-bg;\n background-clip: padding-box;\n border: 1px solid @dropdown-fallback-border; // IE8 fallback\n border: 1px solid @dropdown-border;\n border-radius: @border-radius-base;\n .box-shadow(0 6px 12px rgba(0, 0, 0, .175));\n\n // Aligns the dropdown menu to right\n //\n // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n &.pull-right {\n right: 0;\n left: auto;\n }\n\n // Dividers (basically an hr) within the dropdown\n .divider {\n .nav-divider(@dropdown-divider-bg);\n }\n\n // Links within the dropdown menu\n > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: 400;\n line-height: @line-height-base;\n color: @dropdown-link-color;\n white-space: nowrap; // prevent links from randomly breaking onto new lines\n\n &:hover,\n &:focus {\n color: @dropdown-link-hover-color;\n text-decoration: none;\n background-color: @dropdown-link-hover-bg;\n }\n }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-active-color;\n text-decoration: none;\n background-color: @dropdown-link-active-bg;\n outline: 0;\n }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-disabled-color;\n }\n\n // Nuke hover/focus effects\n &:hover,\n &:focus {\n text-decoration: none;\n cursor: @cursor-disabled;\n background-color: transparent;\n background-image: none; // Remove CSS gradient\n .reset-filter();\n }\n}\n\n// Open state for the dropdown\n.open {\n // Show the menu\n > .dropdown-menu {\n display: block;\n }\n\n // Remove the outline when :focus is triggered\n > a {\n outline: 0;\n }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n right: 0;\n left: auto; // Reset the default from `.dropdown-menu`\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n right: auto;\n left: 0;\n}\n\n// Dropdown section headers\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: @font-size-small;\n line-height: @line-height-base;\n color: @dropdown-header-color;\n white-space: nowrap; // as with > li > a\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: (@zindex-dropdown - 10);\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n // Reverse the caret\n .caret {\n content: \"\";\n border-top: 0;\n border-bottom: @caret-width-base dashed;\n border-bottom: @caret-width-base solid ~\"\\9\"; // IE8\n }\n // Different positioning for bottom up menu\n .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-right {\n .dropdown-menu {\n .dropdown-menu-right();\n }\n // Necessary for overrides of the default right aligned menu.\n // Will remove come v4 in all likelihood.\n .dropdown-menu-left {\n .dropdown-menu-left();\n }\n }\n}\n","// Horizontal dividers\n//\n// Dividers (basically an hr) within dropdowns and nav lists\n\n.nav-divider(@color: #e5e5e5) {\n height: 1px;\n margin: ((@line-height-computed / 2) - 1) 0;\n overflow: hidden;\n background-color: @color;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n","// stylelint-disable selector-no-qualifying-type */\n\n//\n// Button groups\n// --------------------------------------------------\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle; // match .btn alignment given font-size hack above\n > .btn {\n position: relative;\n float: left;\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active,\n &.active {\n z-index: 2;\n }\n }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n .btn + .btn,\n .btn + .btn-group,\n .btn-group + .btn,\n .btn-group + .btn-group {\n margin-left: -1px;\n }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n margin-left: -5px; // Offset the first child's margin\n &:extend(.clearfix all);\n\n .btn,\n .btn-group,\n .input-group {\n float: left;\n }\n > .btn,\n > .btn-group,\n > .input-group {\n margin-left: 5px;\n }\n}\n\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n margin-left: 0;\n &:not(:last-child):not(.dropdown-toggle) {\n .border-right-radius(0);\n }\n}\n// Need .dropdown-toggle since :last-child doesn't apply, given that a .dropdown-menu is used immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n .border-left-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-right-radius(0);\n }\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n .border-left-radius(0);\n}\n\n// On active and open, don't show outline\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { &:extend(.btn-xs); }\n.btn-group-sm > .btn { &:extend(.btn-sm); }\n.btn-group-lg > .btn { &:extend(.btn-lg); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n padding-right: 8px;\n padding-left: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-right: 12px;\n padding-left: 12px;\n}\n\n// The clickable button for toggling the menu\n// Remove the gradient and set the same inset shadow as the :active state\n.btn-group.open .dropdown-toggle {\n .box-shadow(inset 0 3px 5px rgba(0, 0, 0, .125));\n\n // Show no shadow for `.btn-link` since it has no other button styles.\n &.btn-link {\n .box-shadow(none);\n }\n}\n\n\n// Reposition the caret\n.btn .caret {\n margin-left: 0;\n}\n// Carets in other button sizes\n.btn-lg .caret {\n border-width: @caret-width-large @caret-width-large 0;\n border-bottom-width: 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n > .btn,\n > .btn-group,\n > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n }\n\n // Clear floats so dropdown menus can be properly placed\n > .btn-group {\n &:extend(.clearfix all);\n > .btn {\n float: none;\n }\n }\n\n > .btn + .btn,\n > .btn + .btn-group,\n > .btn-group + .btn,\n > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n }\n}\n\n.btn-group-vertical > .btn {\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n &:first-child:not(:last-child) {\n .border-top-radius(@btn-border-radius-base);\n .border-bottom-radius(0);\n }\n &:last-child:not(:first-child) {\n .border-top-radius(0);\n .border-bottom-radius(@btn-border-radius-base);\n }\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-bottom-radius(0);\n }\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n .border-top-radius(0);\n}\n\n\n// Justified button groups\n// ----------------------\n\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n > .btn,\n > .btn-group {\n display: table-cell;\n float: none;\n width: 1%;\n }\n > .btn-group .btn {\n width: 100%;\n }\n\n > .btn-group .dropdown-menu {\n left: auto;\n }\n}\n\n\n// Checkbox and radio options\n//\n// In order to support the browser's form validation feedback, powered by the\n// `required` attribute, we have to \"hide\" the inputs via `clip`. We cannot use\n// `display: none;` or `visibility: hidden;` as that also hides the popover.\n// Simply visually hiding the inputs via `opacity` would leave them clickable in\n// certain cases which is prevented by using `clip` and `pointer-events`.\n// This way, we ensure a DOM element is visible to position the popover from.\n//\n// See https://github.com/twbs/bootstrap/pull/12794 and\n// https://github.com/twbs/bootstrap/pull/14559 for more information.\n\n[data-toggle=\"buttons\"] {\n > .btn,\n > .btn-group > .btn {\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n }\n }\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n border-top-left-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-top-right-radius: @radius;\n border-bottom-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-top-left-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n","// stylelint-disable selector-no-qualifying-type\n\n//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n position: relative; // For dropdowns\n display: table;\n border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table\n\n // Undo padding and float of grid classes\n &[class*=\"col-\"] {\n float: none;\n padding-right: 0;\n padding-left: 0;\n }\n\n .form-control {\n // Ensure that the input is always above the *appended* addon button for\n // proper border colors.\n position: relative;\n z-index: 2;\n\n // IE9 fubars the placeholder attribute in text inputs and the arrows on\n // select elements in input groups. To fix it, we float the input. Details:\n // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855\n float: left;\n\n width: 100%;\n margin-bottom: 0;\n\n &:focus {\n z-index: 3;\n }\n }\n}\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n .input-lg();\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n .input-sm();\n}\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n}\n// Addon and addon wrapper for buttons\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle; // Match the inputs\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n font-weight: 400;\n line-height: 1;\n color: @input-color;\n text-align: center;\n background-color: @input-group-addon-bg;\n border: 1px solid @input-group-addon-border-color;\n border-radius: @input-border-radius;\n\n // Sizing\n &.input-sm {\n padding: @padding-small-vertical @padding-small-horizontal;\n font-size: @font-size-small;\n border-radius: @input-border-radius-small;\n }\n &.input-lg {\n padding: @padding-large-vertical @padding-large-horizontal;\n font-size: @font-size-large;\n border-radius: @input-border-radius-large;\n }\n\n // Nuke default margins from checkboxes and radios to vertically center within.\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n margin-top: 0;\n }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n .border-right-radius(0);\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n .border-left-radius(0);\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n position: relative;\n // Jankily prevent input button groups from wrapping with `white-space` and\n // `font-size` in combination with `inline-block` on buttons.\n font-size: 0;\n white-space: nowrap;\n\n // Negative margin for spacing, position for bringing hovered/focused/actived\n // element above the siblings.\n > .btn {\n position: relative;\n + .btn {\n margin-left: -1px;\n }\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active {\n z-index: 2;\n }\n }\n\n // Negative margin to only have a 1px border between the two\n &:first-child {\n > .btn,\n > .btn-group {\n margin-right: -1px;\n }\n }\n &:last-child {\n > .btn,\n > .btn-group {\n z-index: 2;\n margin-left: -1px;\n }\n }\n}\n","// stylelint-disable selector-no-qualifying-type, selector-max-type\n\n//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n padding-left: 0; // Override default ul/ol\n margin-bottom: 0;\n list-style: none;\n &:extend(.clearfix all);\n\n > li {\n position: relative;\n display: block;\n\n > a {\n position: relative;\n display: block;\n padding: @nav-link-padding;\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: @nav-link-hover-bg;\n }\n }\n\n // Disabled state sets text to gray and nukes hover/tab effects\n &.disabled > a {\n color: @nav-disabled-link-color;\n\n &:hover,\n &:focus {\n color: @nav-disabled-link-hover-color;\n text-decoration: none;\n cursor: @cursor-disabled;\n background-color: transparent;\n }\n }\n }\n\n // Open dropdowns\n .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @nav-link-hover-bg;\n border-color: @link-color;\n }\n }\n\n // Nav dividers (deprecated with v3.0.1)\n //\n // This should have been removed in v3 with the dropping of `.nav-list`, but\n // we missed it. We don't currently support this anywhere, but in the interest\n // of maintaining backward compatibility in case you use it, it's deprecated.\n .nav-divider {\n .nav-divider();\n }\n\n // Prevent IE8 from misplacing imgs\n //\n // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989\n > li > a > img {\n max-width: none;\n }\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n border-bottom: 1px solid @nav-tabs-border-color;\n > li {\n float: left;\n // Make the list-items overlay the bottom border\n margin-bottom: -1px;\n\n // Actual tabs (as links)\n > a {\n margin-right: 2px;\n line-height: @line-height-base;\n border: 1px solid transparent;\n border-radius: @border-radius-base @border-radius-base 0 0;\n &:hover {\n border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n }\n }\n\n // Active state, and its :hover to override normal :hover\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-tabs-active-link-hover-color;\n cursor: default;\n background-color: @nav-tabs-active-link-hover-bg;\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-bottom-color: transparent;\n }\n }\n }\n // pulling this in mainly for less shorthand\n &.nav-justified {\n .nav-justified();\n .nav-tabs-justified();\n }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n > li {\n float: left;\n\n // Links rendered as pills\n > a {\n border-radius: @nav-pills-border-radius;\n }\n + li {\n margin-left: 2px;\n }\n\n // Active state\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-pills-active-link-hover-color;\n background-color: @nav-pills-active-link-hover-bg;\n }\n }\n }\n}\n\n\n// Stacked pills\n.nav-stacked {\n > li {\n float: none;\n + li {\n margin-top: 2px;\n margin-left: 0; // no need for this gap between nav items\n }\n }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n width: 100%;\n\n > li {\n float: none;\n > a {\n margin-bottom: 5px;\n text-align: center;\n }\n }\n\n > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n }\n\n @media (min-width: @screen-sm-min) {\n > li {\n display: table-cell;\n width: 1%;\n > a {\n margin-bottom: 0;\n }\n }\n }\n}\n\n// Move borders to anchors instead of bottom of list\n//\n// Mixin for adding on top the shared `.nav-justified` styles for our tabs\n.nav-tabs-justified {\n border-bottom: 0;\n\n > li > a {\n // Override margin from .nav-tabs\n margin-right: 0;\n border-radius: @border-radius-base;\n }\n\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border: 1px solid @nav-tabs-justified-link-border-color;\n }\n\n @media (min-width: @screen-sm-min) {\n > li > a {\n border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n border-radius: @border-radius-base @border-radius-base 0 0;\n }\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border-bottom-color: @nav-tabs-justified-active-link-border-color;\n }\n }\n}\n\n\n// Tabbable tabs\n// -------------------------\n\n// Hide tabbable panes to start, show them when `.active`\n.tab-content {\n > .tab-pane {\n display: none;\n }\n > .active {\n display: block;\n }\n}\n\n\n// Dropdowns\n// -------------------------\n\n// Specific dropdowns\n.nav-tabs .dropdown-menu {\n // make dropdown border overlap tab border\n margin-top: -1px;\n // Remove the top rounded corners here since there is a hard edge above the menu\n .border-top-radius(0);\n}\n","// stylelint-disable selector-max-type, selector-max-compound-selectors, selector-max-combinators, selector-max-class, declaration-no-important, selector-no-qualifying-type\n\n//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n position: relative;\n min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n margin-bottom: @navbar-margin-bottom;\n border: 1px solid transparent;\n\n // Prevent floats from breaking the navbar\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: @navbar-border-radius;\n }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n padding-right: @navbar-padding-horizontal;\n padding-left: @navbar-padding-horizontal;\n overflow-x: visible;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);\n &:extend(.clearfix all);\n -webkit-overflow-scrolling: touch;\n\n &.in {\n overflow-y: auto;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border-top: 0;\n box-shadow: none;\n\n &.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0; // Override default setting\n overflow: visible !important;\n }\n\n &.in {\n overflow-y: visible;\n }\n\n // Undo the collapse side padding for navbars with containers to ensure\n // alignment of right-aligned contents.\n .navbar-fixed-top &,\n .navbar-static-top &,\n .navbar-fixed-bottom & {\n padding-right: 0;\n padding-left: 0;\n }\n }\n}\n\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n .navbar-collapse {\n max-height: @navbar-collapse-max-height;\n\n @media (max-device-width: @screen-xs-min) and (orientation: landscape) {\n max-height: 200px;\n }\n }\n\n // Fix the top/bottom navbars when screen real estate supports it\n position: fixed;\n right: 0;\n left: 0;\n z-index: @zindex-navbar-fixed;\n\n // Undo the rounded corners\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0; // override .navbar defaults\n border-width: 1px 0 0;\n}\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n.container,\n.container-fluid {\n > .navbar-header,\n > .navbar-collapse {\n margin-right: -@navbar-padding-horizontal;\n margin-left: -@navbar-padding-horizontal;\n\n @media (min-width: @grid-float-breakpoint) {\n margin-right: 0;\n margin-left: 0;\n }\n }\n}\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirety of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-static-top {\n z-index: @zindex-navbar;\n border-width: 0 0 1px;\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n float: left;\n height: @navbar-height;\n padding: @navbar-padding-vertical @navbar-padding-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-computed;\n\n &:hover,\n &:focus {\n text-decoration: none;\n }\n\n > img {\n display: block;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n .navbar > .container &,\n .navbar > .container-fluid & {\n margin-left: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n position: relative;\n float: right;\n padding: 9px 10px;\n margin-right: @navbar-padding-horizontal;\n .navbar-vertical-align(34px);\n background-color: transparent;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n border-radius: @border-radius-base;\n\n // We remove the `outline` here, but later compensate by attaching `:hover`\n // styles to `:focus`.\n &:focus {\n outline: 0;\n }\n\n // Bars\n .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n }\n .icon-bar + .icon-bar {\n margin-top: 4px;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n display: none;\n }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;\n\n > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: @line-height-computed;\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n > li > a,\n .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n > li > a {\n line-height: @line-height-computed;\n &:hover,\n &:focus {\n background-image: none;\n }\n }\n }\n }\n\n // Uncollapse the nav\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin: 0;\n\n > li {\n float: left;\n > a {\n padding-top: @navbar-padding-vertical;\n padding-bottom: @navbar-padding-vertical;\n }\n }\n }\n}\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n padding: 10px @navbar-padding-horizontal;\n margin-right: -@navbar-padding-horizontal;\n margin-left: -@navbar-padding-horizontal;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n @shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);\n .box-shadow(@shadow);\n\n // Mixin behavior for optimum display\n .form-inline();\n\n .form-group {\n @media (max-width: @grid-float-breakpoint-max) {\n margin-bottom: 5px;\n\n &:last-child {\n margin-bottom: 0;\n }\n }\n }\n\n // Vertically center in expanded, horizontal navbar\n .navbar-vertical-align(@input-height-base);\n\n // Undo 100% width for pull classes\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n padding-top: 0;\n padding-bottom: 0;\n margin-right: 0;\n margin-left: 0;\n border: 0;\n .box-shadow(none);\n }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n .border-top-radius(0);\n}\n// Menu position and menu caret support for dropups via extra dropup class\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n .border-top-radius(@navbar-border-radius);\n .border-bottom-radius(0);\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n .navbar-vertical-align(@input-height-base);\n\n &.btn-sm {\n .navbar-vertical-align(@input-height-small);\n }\n &.btn-xs {\n .navbar-vertical-align(22);\n }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n .navbar-vertical-align(@line-height-computed);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin-right: @navbar-padding-horizontal;\n margin-left: @navbar-padding-horizontal;\n }\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specificity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n//\n// Declared after the navbar components to ensure more specificity on the margins.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-left { .pull-left(); }\n .navbar-right {\n .pull-right();\n margin-right: -@navbar-padding-horizontal;\n\n ~ .navbar-right {\n margin-right: 0;\n }\n }\n}\n\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n background-color: @navbar-default-bg;\n border-color: @navbar-default-border;\n\n .navbar-brand {\n color: @navbar-default-brand-color;\n &:hover,\n &:focus {\n color: @navbar-default-brand-hover-color;\n background-color: @navbar-default-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-default-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-default-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n\n // Dropdown menu items\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n > li > a {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n }\n }\n\n .navbar-toggle {\n border-color: @navbar-default-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-default-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-default-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: @navbar-default-border;\n }\n\n\n // Links in navbars\n //\n // Add a class to ensure links outside the navbar nav are colored correctly.\n\n .navbar-link {\n color: @navbar-default-link-color;\n &:hover {\n color: @navbar-default-link-hover-color;\n }\n }\n\n .btn-link {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n }\n }\n }\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n background-color: @navbar-inverse-bg;\n border-color: @navbar-inverse-border;\n\n .navbar-brand {\n color: @navbar-inverse-brand-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-brand-hover-color;\n background-color: @navbar-inverse-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-inverse-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-inverse-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n\n // Dropdowns\n > .open > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display\n .open .dropdown-menu {\n > .dropdown-header {\n border-color: @navbar-inverse-border;\n }\n .divider {\n background-color: @navbar-inverse-border;\n }\n > li > a {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n }\n }\n\n // Darken the responsive nav toggle\n .navbar-toggle {\n border-color: @navbar-inverse-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-inverse-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-inverse-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: darken(@navbar-inverse-bg, 7%);\n }\n\n .navbar-link {\n color: @navbar-inverse-link-color;\n &:hover {\n color: @navbar-inverse-link-hover-color;\n }\n }\n\n .btn-link {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n }\n }\n }\n}\n","// Navbar vertical align\n//\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n\n.navbar-vertical-align(@element-height) {\n margin-top: ((@navbar-height - @element-height) / 2);\n margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n","// stylelint-disable declaration-no-important\n\n//\n// Utility classes\n// --------------------------------------------------\n\n\n// Floats\n// -------------------------\n\n.clearfix {\n .clearfix();\n}\n.center-block {\n .center-block();\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n\n\n// Toggling content\n// -------------------------\n\n// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n .text-hide();\n}\n\n\n// Hide from screenreaders and browsers\n//\n// Credit: HTML5 Boilerplate\n\n.hidden {\n display: none !important;\n}\n\n\n// For Affix plugin\n// -------------------------\n\n.affix {\n position: fixed;\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;\n margin-bottom: @line-height-computed;\n list-style: none;\n background-color: @breadcrumb-bg;\n border-radius: @border-radius-base;\n\n > li {\n display: inline-block;\n\n + li:before {\n padding: 0 5px;\n color: @breadcrumb-color;\n content: \"@{breadcrumb-separator}\\00a0\"; // Unicode space added since inline-block means non-collapsing white-space\n }\n }\n\n > .active {\n color: @breadcrumb-active-color;\n }\n}\n","//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: @line-height-computed 0;\n border-radius: @border-radius-base;\n\n > li {\n display: inline; // Remove list-style and block-level defaults\n > a,\n > span {\n position: relative;\n float: left; // Collapse white-space\n padding: @padding-base-vertical @padding-base-horizontal;\n margin-left: -1px;\n line-height: @line-height-base;\n color: @pagination-color;\n text-decoration: none;\n background-color: @pagination-bg;\n border: 1px solid @pagination-border;\n\n &:hover,\n &:focus {\n z-index: 2;\n color: @pagination-hover-color;\n background-color: @pagination-hover-bg;\n border-color: @pagination-hover-border;\n }\n }\n &:first-child {\n > a,\n > span {\n margin-left: 0;\n .border-left-radius(@border-radius-base);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius-base);\n }\n }\n }\n\n > .active > a,\n > .active > span {\n &,\n &:hover,\n &:focus {\n z-index: 3;\n color: @pagination-active-color;\n cursor: default;\n background-color: @pagination-active-bg;\n border-color: @pagination-active-border;\n }\n }\n\n > .disabled {\n > span,\n > span:hover,\n > span:focus,\n > a,\n > a:hover,\n > a:focus {\n color: @pagination-disabled-color;\n cursor: @cursor-disabled;\n background-color: @pagination-disabled-bg;\n border-color: @pagination-disabled-border;\n }\n }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n","// Pagination\n\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n > li {\n > a,\n > span {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n }\n &:first-child {\n > a,\n > span {\n .border-left-radius(@border-radius);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius);\n }\n }\n }\n}\n","//\n// Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n padding-left: 0;\n margin: @line-height-computed 0;\n text-align: center;\n list-style: none;\n &:extend(.clearfix all);\n li {\n display: inline;\n > a,\n > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: @pager-bg;\n border: 1px solid @pager-border;\n border-radius: @pager-border-radius;\n }\n\n > a:hover,\n > a:focus {\n text-decoration: none;\n background-color: @pager-hover-bg;\n }\n }\n\n .next {\n > a,\n > span {\n float: right;\n }\n }\n\n .previous {\n > a,\n > span {\n float: left;\n }\n }\n\n .disabled {\n > a,\n > a:hover,\n > a:focus,\n > span {\n color: @pager-disabled-color;\n cursor: @cursor-disabled;\n background-color: @pager-bg;\n }\n }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: 700;\n line-height: 1;\n color: @label-color;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n\n // Add hover effects, but only for links\n a& {\n &:hover,\n &:focus {\n color: @label-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n }\n\n // Empty labels collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for labels in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n .label-variant(@label-default-bg);\n}\n\n.label-primary {\n .label-variant(@label-primary-bg);\n}\n\n.label-success {\n .label-variant(@label-success-bg);\n}\n\n.label-info {\n .label-variant(@label-info-bg);\n}\n\n.label-warning {\n .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n .label-variant(@label-danger-bg);\n}\n","// Labels\n\n.label-variant(@color) {\n background-color: @color;\n\n &[href] {\n &:hover,\n &:focus {\n background-color: darken(@color, 10%);\n }\n }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n\n// Base class\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: @font-size-small;\n font-weight: @badge-font-weight;\n line-height: @badge-line-height;\n color: @badge-color;\n text-align: center;\n white-space: nowrap;\n vertical-align: middle;\n background-color: @badge-bg;\n border-radius: @badge-border-radius;\n\n // Empty badges collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for badges in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n\n .btn-xs &,\n .btn-group-xs > .btn & {\n top: 0;\n padding: 1px 5px;\n }\n\n // Hover state, but only for links\n a& {\n &:hover,\n &:focus {\n color: @badge-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n }\n\n // Account for badges in navs\n .list-group-item.active > &,\n .nav-pills > .active > a > & {\n color: @badge-active-color;\n background-color: @badge-active-bg;\n }\n\n .list-group-item > & {\n float: right;\n }\n\n .list-group-item > & + & {\n margin-right: 5px;\n }\n\n .nav-pills > li > a > & {\n margin-left: 3px;\n }\n}\n","//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n padding-top: @jumbotron-padding;\n padding-bottom: @jumbotron-padding;\n margin-bottom: @jumbotron-padding;\n color: @jumbotron-color;\n background-color: @jumbotron-bg;\n\n h1,\n .h1 {\n color: @jumbotron-heading-color;\n }\n\n p {\n margin-bottom: (@jumbotron-padding / 2);\n font-size: @jumbotron-font-size;\n font-weight: 200;\n }\n\n > hr {\n border-top-color: darken(@jumbotron-bg, 10%);\n }\n\n .container &,\n .container-fluid & {\n padding-right: (@grid-gutter-width / 2);\n padding-left: (@grid-gutter-width / 2);\n border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n }\n\n .container {\n max-width: 100%;\n }\n\n @media screen and (min-width: @screen-sm-min) {\n padding-top: (@jumbotron-padding * 1.6);\n padding-bottom: (@jumbotron-padding * 1.6);\n\n .container &,\n .container-fluid & {\n padding-right: (@jumbotron-padding * 2);\n padding-left: (@jumbotron-padding * 2);\n }\n\n h1,\n .h1 {\n font-size: @jumbotron-heading-font-size;\n }\n }\n}\n","// stylelint-disable selector-no-qualifying-type\n\n//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n display: block;\n padding: @thumbnail-padding;\n margin-bottom: @line-height-computed;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(border .2s ease-in-out);\n\n > img,\n a > img {\n &:extend(.img-responsive);\n margin-right: auto;\n margin-left: auto;\n }\n\n // Add a hover state for linked versions only\n a&:hover,\n a&:focus,\n a&.active {\n border-color: @link-color;\n }\n\n // Image captions\n .caption {\n padding: @thumbnail-caption-padding;\n color: @thumbnail-caption-color;\n }\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n.alert {\n padding: @alert-padding;\n margin-bottom: @line-height-computed;\n border: 1px solid transparent;\n border-radius: @alert-border-radius;\n\n // Headings for larger alerts\n h4 {\n margin-top: 0;\n color: inherit; // Specified for the h4 to prevent conflicts of changing @headings-color\n }\n\n // Provide class for links that match alerts\n .alert-link {\n font-weight: @alert-link-font-weight;\n }\n\n // Improve alignment and spacing of inner content\n > p,\n > ul {\n margin-bottom: 0;\n }\n\n > p + p {\n margin-top: 5px;\n }\n}\n\n// Dismissible alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n// The misspelled .alert-dismissable was deprecated in 3.2.0.\n.alert-dismissable,\n.alert-dismissible {\n padding-right: (@alert-padding + 20);\n\n // Adjust close link position\n .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n }\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n\n.alert-info {\n .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n\n.alert-warning {\n .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n\n.alert-danger {\n .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n","// Alerts\n\n.alert-variant(@background; @border; @text-color) {\n color: @text-color;\n background-color: @background;\n border-color: @border;\n\n hr {\n border-top-color: darken(@border, 5%);\n }\n\n .alert-link {\n color: darken(@text-color, 10%);\n }\n}\n","// stylelint-disable at-rule-no-vendor-prefix\n\n//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar animations\n// -------------------------\n\n// WebKit\n@-webkit-keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n// Spec and IE10+\n@keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n height: @line-height-computed;\n margin-bottom: @line-height-computed;\n overflow: hidden;\n background-color: @progress-bg;\n border-radius: @progress-border-radius;\n .box-shadow(inset 0 1px 2px rgba(0, 0, 0, .1));\n}\n\n// Bar of progress\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: @font-size-small;\n line-height: @line-height-computed;\n color: @progress-bar-color;\n text-align: center;\n background-color: @progress-bar-bg;\n .box-shadow(inset 0 -1px 0 rgba(0, 0, 0, .15));\n .transition(width .6s ease);\n}\n\n// Striped bars\n//\n// `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar-striped` class, which you just add to an existing\n// `.progress-bar`.\n.progress-striped .progress-bar,\n.progress-bar-striped {\n #gradient > .striped();\n background-size: 40px 40px;\n}\n\n// Call animation for the active one\n//\n// `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar.active` approach.\n.progress.active .progress-bar,\n.progress-bar.active {\n .animation(progress-bar-stripes 2s linear infinite);\n}\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n .progress-bar-variant(@progress-bar-danger-bg);\n}\n","// stylelint-disable value-no-vendor-prefix, selector-max-id\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\", argb(@start-color), argb(@end-color))); // IE9 and down\n background-repeat: repeat-x;\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\", argb(@start-color), argb(@end-color))); // IE9 and down\n background-repeat: repeat-x;\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\", argb(@start-color), argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n background-repeat: no-repeat;\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\", argb(@start-color), argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n background-repeat: no-repeat;\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255, 255, 255, .15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n","// Progress bars\n\n.progress-bar-variant(@color) {\n background-color: @color;\n\n // Deprecated parent class requirement as of v3.2.0\n .progress-striped & {\n #gradient > .striped();\n }\n}\n",".media {\n // Proper spacing between instances of .media\n margin-top: 15px;\n\n &:first-child {\n margin-top: 0;\n }\n}\n\n.media,\n.media-body {\n overflow: hidden;\n zoom: 1;\n}\n\n.media-body {\n width: 10000px;\n}\n\n.media-object {\n display: block;\n\n // Fix collapse in webkit from max-width: 100% and display: table-cell.\n &.img-thumbnail {\n max-width: none;\n }\n}\n\n.media-right,\n.media > .pull-right {\n padding-left: 10px;\n}\n\n.media-left,\n.media > .pull-left {\n padding-right: 10px;\n}\n\n.media-left,\n.media-right,\n.media-body {\n display: table-cell;\n vertical-align: top;\n}\n\n.media-middle {\n vertical-align: middle;\n}\n\n.media-bottom {\n vertical-align: bottom;\n}\n\n// Reset margins on headings for tighter default spacing\n.media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n\n// Media list variation\n//\n// Undo default ul/ol styles\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n","// stylelint-disable selector-no-qualifying-type\n\n//\n// List groups\n// --------------------------------------------------\n\n\n// Base class\n//\n// Easily usable on <ul>, <ol>, or <div>.\n\n.list-group {\n // No need to set list-style: none; since .list-group-item is block level\n padding-left: 0; // reset padding because ul and ol\n margin-bottom: 20px;\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n // Place the border on the list items and negative margin up for better styling\n margin-bottom: -1px;\n background-color: @list-group-bg;\n border: 1px solid @list-group-border;\n\n // Round the first and last items\n &:first-child {\n .border-top-radius(@list-group-border-radius);\n }\n &:last-child {\n margin-bottom: 0;\n .border-bottom-radius(@list-group-border-radius);\n }\n\n // Disabled state\n &.disabled,\n &.disabled:hover,\n &.disabled:focus {\n color: @list-group-disabled-color;\n cursor: @cursor-disabled;\n background-color: @list-group-disabled-bg;\n\n // Force color to inherit for custom content\n .list-group-item-heading {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-disabled-text-color;\n }\n }\n\n // Active class on item itself, not parent\n &.active,\n &.active:hover,\n &.active:focus {\n z-index: 2; // Place active items above their siblings for proper border styling\n color: @list-group-active-color;\n background-color: @list-group-active-bg;\n border-color: @list-group-active-border;\n\n // Force color to inherit for custom content\n .list-group-item-heading,\n .list-group-item-heading > small,\n .list-group-item-heading > .small {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-active-text-color;\n }\n }\n}\n\n\n// Interactive list items\n//\n// Use anchor or button elements instead of `li`s or `div`s to create interactive items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item,\nbutton.list-group-item {\n color: @list-group-link-color;\n\n .list-group-item-heading {\n color: @list-group-link-heading-color;\n }\n\n // Hover state\n &:hover,\n &:focus {\n color: @list-group-link-hover-color;\n text-decoration: none;\n background-color: @list-group-hover-bg;\n }\n}\n\nbutton.list-group-item {\n width: 100%;\n text-align: left;\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n\n// Custom content options\n//\n// Extra classes for creating well-formatted content within `.list-group-item`s.\n\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n","// List Groups\n\n.list-group-item-variant(@state; @background; @color) {\n .list-group-item-@{state} {\n color: @color;\n background-color: @background;\n\n a&,\n button& {\n color: @color;\n\n .list-group-item-heading {\n color: inherit;\n }\n\n &:hover,\n &:focus {\n color: @color;\n background-color: darken(@background, 5%);\n }\n &.active,\n &.active:hover,\n &.active:focus {\n color: #fff;\n background-color: @color;\n border-color: @color;\n }\n }\n }\n}\n","// stylelint-disable selector-max-type, selector-max-compound-selectors, selector-max-combinators, no-duplicate-selectors\n\n//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n margin-bottom: @line-height-computed;\n background-color: @panel-bg;\n border: 1px solid transparent;\n border-radius: @panel-border-radius;\n .box-shadow(0 1px 1px rgba(0, 0, 0, .05));\n}\n\n// Panel contents\n.panel-body {\n padding: @panel-body-padding;\n &:extend(.clearfix all);\n}\n\n// Optional heading\n.panel-heading {\n padding: @panel-heading-padding;\n border-bottom: 1px solid transparent;\n .border-top-radius((@panel-border-radius - 1));\n\n > .dropdown .dropdown-toggle {\n color: inherit;\n }\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: ceil((@font-size-base * 1.125));\n color: inherit;\n\n > a,\n > small,\n > .small,\n > small > a,\n > .small > a {\n color: inherit;\n }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n padding: @panel-footer-padding;\n background-color: @panel-footer-bg;\n border-top: 1px solid @panel-inner-border;\n .border-bottom-radius((@panel-border-radius - 1));\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n > .list-group,\n > .panel-collapse > .list-group {\n margin-bottom: 0;\n\n .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n }\n\n // Add border top radius for first one\n &:first-child {\n .list-group-item:first-child {\n border-top: 0;\n .border-top-radius((@panel-border-radius - 1));\n }\n }\n\n // Add border bottom radius for last one\n &:last-child {\n .list-group-item:last-child {\n border-bottom: 0;\n .border-bottom-radius((@panel-border-radius - 1));\n }\n }\n }\n > .panel-heading + .panel-collapse > .list-group {\n .list-group-item:first-child {\n .border-top-radius(0);\n }\n }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n .list-group-item:first-child {\n border-top-width: 0;\n }\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n > .table,\n > .table-responsive > .table,\n > .panel-collapse > .table {\n margin-bottom: 0;\n\n caption {\n padding-right: @panel-body-padding;\n padding-left: @panel-body-padding;\n }\n }\n // Add border top radius for first one\n > .table:first-child,\n > .table-responsive:first-child > .table:first-child {\n .border-top-radius((@panel-border-radius - 1));\n\n > thead:first-child,\n > tbody:first-child {\n > tr:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n border-top-right-radius: (@panel-border-radius - 1);\n\n td:first-child,\n th:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-top-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n // Add border bottom radius for last one\n > .table:last-child,\n > .table-responsive:last-child > .table:last-child {\n .border-bottom-radius((@panel-border-radius - 1));\n\n > tbody:last-child,\n > tfoot:last-child {\n > tr:last-child {\n border-bottom-right-radius: (@panel-border-radius - 1);\n border-bottom-left-radius: (@panel-border-radius - 1);\n\n td:first-child,\n th:first-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-bottom-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n > .panel-body + .table,\n > .panel-body + .table-responsive,\n > .table + .panel-body,\n > .table-responsive + .panel-body {\n border-top: 1px solid @table-border-color;\n }\n > .table > tbody:first-child > tr:first-child th,\n > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n }\n > .table-bordered,\n > .table-responsive > .table-bordered {\n border: 0;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n > thead,\n > tbody {\n > tr:first-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n > tbody,\n > tfoot {\n > tr:last-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n }\n > .table-responsive {\n margin-bottom: 0;\n border: 0;\n }\n}\n\n\n// Collapsible panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n margin-bottom: @line-height-computed;\n\n // Tighten up margin so it's only between panels\n .panel {\n margin-bottom: 0;\n border-radius: @panel-border-radius;\n\n + .panel {\n margin-top: 5px;\n }\n }\n\n .panel-heading {\n border-bottom: 0;\n\n + .panel-collapse > .panel-body,\n + .panel-collapse > .list-group {\n border-top: 1px solid @panel-inner-border;\n }\n }\n\n .panel-footer {\n border-top: 0;\n + .panel-collapse .panel-body {\n border-bottom: 1px solid @panel-inner-border;\n }\n }\n}\n\n\n// Contextual variations\n.panel-default {\n .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n","// Panels\n\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n border-color: @border;\n\n & > .panel-heading {\n color: @heading-text-color;\n background-color: @heading-bg-color;\n border-color: @heading-border;\n\n + .panel-collapse > .panel-body {\n border-top-color: @border;\n }\n .badge {\n color: @heading-bg-color;\n background-color: @heading-text-color;\n }\n }\n & > .panel-footer {\n + .panel-collapse > .panel-body {\n border-bottom-color: @border;\n }\n }\n}\n","// Embeds responsive\n//\n// Credit: Nicolas Gallagher and SUIT CSS.\n\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n\n .embed-responsive-item,\n iframe,\n embed,\n object,\n video {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n height: 100%;\n border: 0;\n }\n}\n\n// Modifier class for 16:9 aspect ratio\n.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n}\n\n// Modifier class for 4:3 aspect ratio\n.embed-responsive-4by3 {\n padding-bottom: 75%;\n}\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: @well-bg;\n border: 1px solid @well-border;\n border-radius: @border-radius-base;\n .box-shadow(inset 0 1px 1px rgba(0, 0, 0, .05));\n blockquote {\n border-color: #ddd;\n border-color: rgba(0, 0, 0, .15);\n }\n}\n\n// Sizes\n.well-lg {\n padding: 24px;\n border-radius: @border-radius-large;\n}\n.well-sm {\n padding: 9px;\n border-radius: @border-radius-small;\n}\n","// stylelint-disable property-no-vendor-prefix\n\n//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n float: right;\n font-size: (@font-size-base * 1.5);\n font-weight: @close-font-weight;\n line-height: 1;\n color: @close-color;\n text-shadow: @close-text-shadow;\n .opacity(.2);\n\n &:hover,\n &:focus {\n color: @close-color;\n text-decoration: none;\n cursor: pointer;\n .opacity(.5);\n }\n\n // Additional properties for button version\n // iOS requires the button element instead of an anchor tag.\n // If you want the anchor version, it requires `href=\"#\"`.\n // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n button& {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n appearance: none;\n }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open - body class for killing the scroll\n// .modal - container to scroll within\n// .modal-dialog - positioning shell for the actual modal\n// .modal-content - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n overflow: hidden;\n}\n\n// Container that the modal scrolls within\n.modal {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal;\n display: none;\n overflow: hidden;\n -webkit-overflow-scrolling: touch;\n\n // Prevent Chrome on Windows from adding a focus outline. For details, see\n // https://github.com/twbs/bootstrap/pull/10951.\n outline: 0;\n\n // When fading in the modal, animate it to slide down\n &.fade .modal-dialog {\n .translate(0, -25%);\n .transition-transform(~\"0.3s ease-out\");\n }\n &.in .modal-dialog { .translate(0, 0); }\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n\n// Actual modal\n.modal-content {\n position: relative;\n background-color: @modal-content-bg;\n background-clip: padding-box;\n border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n border: 1px solid @modal-content-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 3px 9px rgba(0, 0, 0, .5));\n // Remove focus outline from opened modal\n outline: 0;\n}\n\n// Modal background\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal-background;\n background-color: @modal-backdrop-bg;\n // Fade for backdrop\n &.fade { .opacity(0); }\n &.in { .opacity(@modal-backdrop-opacity); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n padding: @modal-title-padding;\n border-bottom: 1px solid @modal-header-border-color;\n &:extend(.clearfix all);\n}\n// Close icon\n.modal-header .close {\n margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n margin: 0;\n line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n position: relative;\n padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n padding: @modal-inner-padding;\n text-align: right; // right align buttons\n border-top: 1px solid @modal-footer-border-color;\n &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\n\n // Properly space out buttons\n .btn + .btn {\n margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n margin-left: 5px;\n }\n // but override that for button groups\n .btn-group .btn + .btn {\n margin-left: -1px;\n }\n // and override it for block buttons as well\n .btn-block + .btn-block {\n margin-left: 0;\n }\n}\n\n// Measure scrollbar width for padding body during modal show/hide\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n\n// Scale up the modal\n@media (min-width: @screen-sm-min) {\n // Automatically set modal's width for larger viewports\n .modal-dialog {\n width: @modal-md;\n margin: 30px auto;\n }\n .modal-content {\n .box-shadow(0 5px 15px rgba(0, 0, 0, .5));\n }\n\n // Modal sizes\n .modal-sm { width: @modal-sm; }\n}\n\n@media (min-width: @screen-md-min) {\n .modal-lg { width: @modal-lg; }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n position: absolute;\n z-index: @zindex-tooltip;\n display: block;\n // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\n // So reset our font and text properties to avoid inheriting weird values.\n .reset-text();\n font-size: @font-size-small;\n\n .opacity(0);\n\n &.in { .opacity(@tooltip-opacity); }\n &.top {\n padding: @tooltip-arrow-width 0;\n margin-top: -3px;\n }\n &.right {\n padding: 0 @tooltip-arrow-width;\n margin-left: 3px;\n }\n &.bottom {\n padding: @tooltip-arrow-width 0;\n margin-top: 3px;\n }\n &.left {\n padding: 0 @tooltip-arrow-width;\n margin-left: -3px;\n }\n\n // Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1\n &.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-left .tooltip-arrow {\n right: @tooltip-arrow-width;\n bottom: 0;\n margin-bottom: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-right .tooltip-arrow {\n bottom: 0;\n left: @tooltip-arrow-width;\n margin-bottom: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n border-right-color: @tooltip-arrow-color;\n }\n &.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-left-color: @tooltip-arrow-color;\n }\n &.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-left .tooltip-arrow {\n top: 0;\n right: @tooltip-arrow-width;\n margin-top: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-right .tooltip-arrow {\n top: 0;\n left: @tooltip-arrow-width;\n margin-top: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n max-width: @tooltip-max-width;\n padding: 3px 8px;\n color: @tooltip-color;\n text-align: center;\n background-color: @tooltip-bg;\n border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n",".reset-text() {\n font-family: @font-family-base;\n // We deliberately do NOT reset font-size.\n font-style: normal;\n font-weight: 400;\n line-height: @line-height-base;\n line-break: auto;\n text-align: left; // Fallback for where `start` is not supported\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n white-space: normal;\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: @zindex-popover;\n display: none;\n max-width: @popover-max-width;\n padding: 1px;\n // Our parent element can be arbitrary since popovers are by default inserted as a sibling of their target element.\n // So reset our font and text properties to avoid inheriting weird values.\n .reset-text();\n font-size: @font-size-base;\n background-color: @popover-bg;\n background-clip: padding-box;\n border: 1px solid @popover-fallback-border-color;\n border: 1px solid @popover-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 5px 10px rgba(0, 0, 0, .2));\n\n // Offset the popover to account for the popover arrow\n &.top { margin-top: -@popover-arrow-width; }\n &.right { margin-left: @popover-arrow-width; }\n &.bottom { margin-top: @popover-arrow-width; }\n &.left { margin-left: -@popover-arrow-width; }\n\n // Arrows\n // .arrow is outer, .arrow:after is inner\n > .arrow {\n border-width: @popover-arrow-outer-width;\n\n &,\n &:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n }\n\n &:after {\n content: \"\";\n border-width: @popover-arrow-width;\n }\n }\n\n &.top > .arrow {\n bottom: -@popover-arrow-outer-width;\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-top-color: @popover-arrow-outer-color;\n border-bottom-width: 0;\n &:after {\n bottom: 1px;\n margin-left: -@popover-arrow-width;\n content: \" \";\n border-top-color: @popover-arrow-color;\n border-bottom-width: 0;\n }\n }\n &.right > .arrow {\n top: 50%;\n left: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-right-color: @popover-arrow-outer-color;\n border-left-width: 0;\n &:after {\n bottom: -@popover-arrow-width;\n left: 1px;\n content: \" \";\n border-right-color: @popover-arrow-color;\n border-left-width: 0;\n }\n }\n &.bottom > .arrow {\n top: -@popover-arrow-outer-width;\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-bottom-color: @popover-arrow-outer-color;\n &:after {\n top: 1px;\n margin-left: -@popover-arrow-width;\n content: \" \";\n border-top-width: 0;\n border-bottom-color: @popover-arrow-color;\n }\n }\n\n &.left > .arrow {\n top: 50%;\n right: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-right-width: 0;\n border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-left-color: @popover-arrow-outer-color;\n &:after {\n right: 1px;\n bottom: -@popover-arrow-width;\n content: \" \";\n border-right-width: 0;\n border-left-color: @popover-arrow-color;\n }\n }\n}\n\n.popover-title {\n padding: 8px 14px;\n margin: 0; // reset heading margin\n font-size: @font-size-base;\n background-color: @popover-title-bg;\n border-bottom: 1px solid darken(@popover-title-bg, 5%);\n border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;\n}\n\n.popover-content {\n padding: 9px 14px;\n}\n","// stylelint-disable media-feature-name-no-unknown\n\n//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n position: relative;\n}\n\n.carousel-inner {\n position: relative;\n width: 100%;\n overflow: hidden;\n\n > .item {\n position: relative;\n display: none;\n .transition(.6s ease-in-out left);\n\n // Account for jankitude on images\n > img,\n > a > img {\n &:extend(.img-responsive);\n line-height: 1;\n }\n\n // WebKit CSS3 transforms for supported devices\n @media all and (transform-3d), (-webkit-transform-3d) {\n .transition-transform(~\"0.6s ease-in-out\");\n .backface-visibility(~\"hidden\");\n .perspective(1000px);\n\n &.next,\n &.active.right {\n .translate3d(100%, 0, 0);\n left: 0;\n }\n &.prev,\n &.active.left {\n .translate3d(-100%, 0, 0);\n left: 0;\n }\n &.next.left,\n &.prev.right,\n &.active {\n .translate3d(0, 0, 0);\n left: 0;\n }\n }\n }\n\n > .active,\n > .next,\n > .prev {\n display: block;\n }\n\n > .active {\n left: 0;\n }\n\n > .next,\n > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n }\n\n > .next {\n left: 100%;\n }\n > .prev {\n left: -100%;\n }\n > .next.left,\n > .prev.right {\n left: 0;\n }\n\n > .active.left {\n left: -100%;\n }\n > .active.right {\n left: 100%;\n }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: @carousel-control-width;\n font-size: @carousel-control-font-size;\n color: @carousel-control-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug\n .opacity(@carousel-control-opacity);\n // We can't have this transition here because WebKit cancels the carousel\n // animation if you trip this while in the middle of another animation.\n\n // Set gradients for backgrounds\n &.left {\n #gradient > .horizontal(@start-color: rgba(0, 0, 0, .5); @end-color: rgba(0, 0, 0, .0001));\n }\n &.right {\n right: 0;\n left: auto;\n #gradient > .horizontal(@start-color: rgba(0, 0, 0, .0001); @end-color: rgba(0, 0, 0, .5));\n }\n\n // Hover/focus state\n &:hover,\n &:focus {\n color: @carousel-control-color;\n text-decoration: none;\n outline: 0;\n .opacity(.9);\n }\n\n // Toggles\n .icon-prev,\n .icon-next,\n .glyphicon-chevron-left,\n .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n z-index: 5;\n display: inline-block;\n margin-top: -10px;\n }\n .icon-prev,\n .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n }\n .icon-next,\n .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n }\n .icon-prev,\n .icon-next {\n width: 20px;\n height: 20px;\n font-family: serif;\n line-height: 1;\n }\n\n .icon-prev {\n &:before {\n content: \"\\2039\";// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n }\n }\n .icon-next {\n &:before {\n content: \"\\203a\";// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n }\n }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n padding-left: 0;\n margin-left: -30%;\n text-align: center;\n list-style: none;\n\n li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n cursor: pointer;\n // IE8-9 hack for event handling\n //\n // Internet Explorer 8-9 does not support clicks on elements without a set\n // `background-color`. We cannot use `filter` since that's not viewed as a\n // background color by the browser. Thus, a hack is needed.\n // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer\n //\n // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\n // set alpha transparency for the best results possible.\n background-color: #000 \\9; // IE8\n background-color: rgba(0, 0, 0, 0); // IE9\n\n border: 1px solid @carousel-indicator-border-color;\n border-radius: 10px;\n }\n\n .active {\n width: 12px;\n height: 12px;\n margin: 0;\n background-color: @carousel-indicator-active-bg;\n }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n position: absolute;\n right: 15%;\n bottom: 20px;\n left: 15%;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: @carousel-caption-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n\n & .btn {\n text-shadow: none; // No shadow for button elements in carousel-caption\n }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n // Scale up the controls a smidge\n .carousel-control {\n .glyphicon-chevron-left,\n .glyphicon-chevron-right,\n .icon-prev,\n .icon-next {\n width: (@carousel-control-font-size * 1.5);\n height: (@carousel-control-font-size * 1.5);\n margin-top: (@carousel-control-font-size / -2);\n font-size: (@carousel-control-font-size * 1.5);\n }\n .glyphicon-chevron-left,\n .icon-prev {\n margin-left: (@carousel-control-font-size / -2);\n }\n .glyphicon-chevron-right,\n .icon-next {\n margin-right: (@carousel-control-font-size / -2);\n }\n }\n\n // Show and left align the captions\n .carousel-caption {\n right: 20%;\n left: 20%;\n padding-bottom: 30px;\n }\n\n // Move up the indicators\n .carousel-indicators {\n bottom: 20px;\n }\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n// contenteditable attribute is included anywhere else in the document.\n// Otherwise it causes space to appear at the top and bottom of elements\n// that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n// `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n &:before,\n &:after {\n display: table; // 2\n content: \" \"; // 1\n }\n &:after {\n clear: both;\n }\n}\n","// Center-align a block level element\n\n.center-block() {\n display: block;\n margin-right: auto;\n margin-left: auto;\n}\n","// stylelint-disable font-family-name-quotes, font-family-no-missing-generic-family-keyword\n\n// CSS image replacement\n//\n// Heads up! v3 launched with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (has been removed in v4)\n.hide-text() {\n font: ~\"0/0\" a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n\n// New mixin to use as of v3.0.1\n.text-hide() {\n .hide-text();\n}\n","// stylelint-disable declaration-no-important, at-rule-no-vendor-prefix\n\n//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: https://getbootstrap.com/docs/3.4/getting-started/#support-ie10-width\n// Source: https://timkadlec.com/2013/01/windows-phone-8-and-device-width/\n// Source: https://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n width: device-width;\n}\n\n\n// Visibility utilities\n// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n .responsive-invisibility();\n}\n\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n\n.visible-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-visibility();\n }\n}\n.visible-xs-block {\n @media (max-width: @screen-xs-max) {\n display: block !important;\n }\n}\n.visible-xs-inline {\n @media (max-width: @screen-xs-max) {\n display: inline !important;\n }\n}\n.visible-xs-inline-block {\n @media (max-width: @screen-xs-max) {\n display: inline-block !important;\n }\n}\n\n.visible-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-visibility();\n }\n}\n.visible-sm-block {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: block !important;\n }\n}\n.visible-sm-inline {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: inline !important;\n }\n}\n.visible-sm-inline-block {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: inline-block !important;\n }\n}\n\n.visible-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-visibility();\n }\n}\n.visible-md-block {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: block !important;\n }\n}\n.visible-md-inline {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: inline !important;\n }\n}\n.visible-md-inline-block {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: inline-block !important;\n }\n}\n\n.visible-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-visibility();\n }\n}\n.visible-lg-block {\n @media (min-width: @screen-lg-min) {\n display: block !important;\n }\n}\n.visible-lg-inline {\n @media (min-width: @screen-lg-min) {\n display: inline !important;\n }\n}\n.visible-lg-inline-block {\n @media (min-width: @screen-lg-min) {\n display: inline-block !important;\n }\n}\n\n.hidden-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-invisibility();\n }\n}\n.hidden-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-invisibility();\n }\n}\n.hidden-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-invisibility();\n }\n}\n.hidden-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-invisibility();\n }\n}\n\n\n// Print utilities\n//\n// Media queries are placed on the inside to be mixin-friendly.\n\n// Note: Deprecated .visible-print as of v3.2.0\n.visible-print {\n .responsive-invisibility();\n\n @media print {\n .responsive-visibility();\n }\n}\n.visible-print-block {\n display: none !important;\n\n @media print {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n\n @media print {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n\n @media print {\n display: inline-block !important;\n }\n}\n\n.hidden-print {\n @media print {\n .responsive-invisibility();\n }\n}\n","// stylelint-disable declaration-no-important\n\n.responsive-visibility() {\n display: block !important;\n table& { display: table !important; }\n tr& { display: table-row !important; }\n th&,\n td& { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n display: none !important;\n}\n"]} \ No newline at end of file | |||
diff --git a/src/index.html b/src/index.html index 7eb123c..bc5975a 100644 --- a/src/index.html +++ b/src/index.html | |||
@@ -3,7 +3,7 @@ | |||
3 | <head lang="en"> | 3 | <head lang="en"> |
4 | <meta charset="utf-8" /> | 4 | <meta charset="utf-8" /> |
5 | <title>BIP39 - Mnemonic Code</title> | 5 | <title>BIP39 - Mnemonic Code</title> |
6 | <link rel="stylesheet" href="css/bootstrap-3.3.7.css"> | 6 | <link rel="stylesheet" href="css/bootstrap.css"> |
7 | <link rel="stylesheet" href="css/app.css"> | 7 | <link rel="stylesheet" href="css/app.css"> |
8 | <meta content="Mnemonic code for generating deterministic keys" name="description"/> | 8 | <meta content="Mnemonic code for generating deterministic keys" name="description"/> |
9 | <meta content="width=device-width, initial-scale=1.0" name="viewport" /> | 9 | <meta content="width=device-width, initial-scale=1.0" name="viewport" /> |
@@ -86,7 +86,7 @@ | |||
86 | <div class="row"> | 86 | <div class="row"> |
87 | <label class="col-sm-3 control-label">Entropy Type</label> | 87 | <label class="col-sm-3 control-label">Entropy Type</label> |
88 | <div class="type col-sm-3 form-control-static"></div> | 88 | <div class="type col-sm-3 form-control-static"></div> |
89 | <label class="col-sm-3 control-label">Bits Per Event</label> | 89 | <label class="col-sm-3 control-label">Avg Bits Per Event</label> |
90 | <div class="bits-per-event col-sm-3 form-control-static"></div> | 90 | <div class="bits-per-event col-sm-3 form-control-static"></div> |
91 | </div> | 91 | </div> |
92 | <div class="row"> | 92 | <div class="row"> |
@@ -871,9 +871,9 @@ | |||
871 | on any offline computer. | 871 | on any offline computer. |
872 | </p> | 872 | </p> |
873 | <p> | 873 | <p> |
874 | <span>Alternatively, download the file from the repository</span> | 874 | <span>Alternatively, download the file from the latest GitHub release</span> |
875 | - | 875 | - |
876 | <a href="https://github.com/iancoleman/bip39">https://github.com/iancoleman/bip39</a> | 876 | <a href="https://github.com/iancoleman/bip39/releases/latest/">https://github.com/iancoleman/bip39/releases/latest/</a> |
877 | </p> | 877 | </p> |
878 | 878 | ||
879 | </div> | 879 | </div> |
@@ -958,7 +958,7 @@ | |||
958 | </tr> | 958 | </tr> |
959 | </script> | 959 | </script> |
960 | <script src="js/jquery-3.2.1.js"></script> | 960 | <script src="js/jquery-3.2.1.js"></script> |
961 | <script src="js/bootstrap-3.3.7.js"></script> | 961 | <script src="js/bootstrap.js"></script> |
962 | <script src="js/bip39-libs.js"></script> | 962 | <script src="js/bip39-libs.js"></script> |
963 | <script src="js/bitcoinjs-extensions.js"></script> | 963 | <script src="js/bitcoinjs-extensions.js"></script> |
964 | <script src="js/segwit-parameters.js"></script> | 964 | <script src="js/segwit-parameters.js"></script> |
diff --git a/src/js/bootstrap-3.3.7.js b/src/js/bootstrap.js index 8a2e99a..170bd60 100644 --- a/src/js/bootstrap-3.3.7.js +++ b/src/js/bootstrap.js | |||
@@ -1,6 +1,6 @@ | |||
1 | /*! | 1 | /*! |
2 | * Bootstrap v3.3.7 (http://getbootstrap.com) | 2 | * Bootstrap v3.4.1 (https://getbootstrap.com/) |
3 | * Copyright 2011-2016 Twitter, Inc. | 3 | * Copyright 2011-2019 Twitter, Inc. |
4 | * Licensed under the MIT license | 4 | * Licensed under the MIT license |
5 | */ | 5 | */ |
6 | 6 | ||
@@ -17,10 +17,10 @@ if (typeof jQuery === 'undefined') { | |||
17 | }(jQuery); | 17 | }(jQuery); |
18 | 18 | ||
19 | /* ======================================================================== | 19 | /* ======================================================================== |
20 | * Bootstrap: transition.js v3.3.7 | 20 | * Bootstrap: transition.js v3.4.1 |
21 | * http://getbootstrap.com/javascript/#transitions | 21 | * https://getbootstrap.com/docs/3.4/javascript/#transitions |
22 | * ======================================================================== | 22 | * ======================================================================== |
23 | * Copyright 2011-2016 Twitter, Inc. | 23 | * Copyright 2011-2019 Twitter, Inc. |
24 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | 24 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
25 | * ======================================================================== */ | 25 | * ======================================================================== */ |
26 | 26 | ||
@@ -28,7 +28,7 @@ if (typeof jQuery === 'undefined') { | |||
28 | +function ($) { | 28 | +function ($) { |
29 | 'use strict'; | 29 | 'use strict'; |
30 | 30 | ||
31 | // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/) | 31 | // CSS TRANSITION SUPPORT (Shoutout: https://modernizr.com/) |
32 | // ============================================================ | 32 | // ============================================================ |
33 | 33 | ||
34 | function transitionEnd() { | 34 | function transitionEnd() { |
@@ -50,7 +50,7 @@ if (typeof jQuery === 'undefined') { | |||
50 | return false // explicit for ie8 ( ._.) | 50 | return false // explicit for ie8 ( ._.) |
51 | } | 51 | } |
52 | 52 | ||
53 | // http://blog.alexmaccaw.com/css-transitions | 53 | // https://blog.alexmaccaw.com/css-transitions |
54 | $.fn.emulateTransitionEnd = function (duration) { | 54 | $.fn.emulateTransitionEnd = function (duration) { |
55 | var called = false | 55 | var called = false |
56 | var $el = this | 56 | var $el = this |
@@ -77,10 +77,10 @@ if (typeof jQuery === 'undefined') { | |||
77 | }(jQuery); | 77 | }(jQuery); |
78 | 78 | ||
79 | /* ======================================================================== | 79 | /* ======================================================================== |
80 | * Bootstrap: alert.js v3.3.7 | 80 | * Bootstrap: alert.js v3.4.1 |
81 | * http://getbootstrap.com/javascript/#alerts | 81 | * https://getbootstrap.com/docs/3.4/javascript/#alerts |
82 | * ======================================================================== | 82 | * ======================================================================== |
83 | * Copyright 2011-2016 Twitter, Inc. | 83 | * Copyright 2011-2019 Twitter, Inc. |
84 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | 84 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
85 | * ======================================================================== */ | 85 | * ======================================================================== */ |
86 | 86 | ||
@@ -96,7 +96,7 @@ if (typeof jQuery === 'undefined') { | |||
96 | $(el).on('click', dismiss, this.close) | 96 | $(el).on('click', dismiss, this.close) |
97 | } | 97 | } |
98 | 98 | ||
99 | Alert.VERSION = '3.3.7' | 99 | Alert.VERSION = '3.4.1' |
100 | 100 | ||
101 | Alert.TRANSITION_DURATION = 150 | 101 | Alert.TRANSITION_DURATION = 150 |
102 | 102 | ||
@@ -109,7 +109,8 @@ if (typeof jQuery === 'undefined') { | |||
109 | selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 | 109 | selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 |
110 | } | 110 | } |
111 | 111 | ||
112 | var $parent = $(selector === '#' ? [] : selector) | 112 | selector = selector === '#' ? [] : selector |
113 | var $parent = $(document).find(selector) | ||
113 | 114 | ||
114 | if (e) e.preventDefault() | 115 | if (e) e.preventDefault() |
115 | 116 | ||
@@ -172,10 +173,10 @@ if (typeof jQuery === 'undefined') { | |||
172 | }(jQuery); | 173 | }(jQuery); |
173 | 174 | ||
174 | /* ======================================================================== | 175 | /* ======================================================================== |
175 | * Bootstrap: button.js v3.3.7 | 176 | * Bootstrap: button.js v3.4.1 |
176 | * http://getbootstrap.com/javascript/#buttons | 177 | * https://getbootstrap.com/docs/3.4/javascript/#buttons |
177 | * ======================================================================== | 178 | * ======================================================================== |
178 | * Copyright 2011-2016 Twitter, Inc. | 179 | * Copyright 2011-2019 Twitter, Inc. |
179 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | 180 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
180 | * ======================================================================== */ | 181 | * ======================================================================== */ |
181 | 182 | ||
@@ -192,7 +193,7 @@ if (typeof jQuery === 'undefined') { | |||
192 | this.isLoading = false | 193 | this.isLoading = false |
193 | } | 194 | } |
194 | 195 | ||
195 | Button.VERSION = '3.3.7' | 196 | Button.VERSION = '3.4.1' |
196 | 197 | ||
197 | Button.DEFAULTS = { | 198 | Button.DEFAULTS = { |
198 | loadingText: 'loading...' | 199 | loadingText: 'loading...' |
@@ -298,10 +299,10 @@ if (typeof jQuery === 'undefined') { | |||
298 | }(jQuery); | 299 | }(jQuery); |
299 | 300 | ||
300 | /* ======================================================================== | 301 | /* ======================================================================== |
301 | * Bootstrap: carousel.js v3.3.7 | 302 | * Bootstrap: carousel.js v3.4.1 |
302 | * http://getbootstrap.com/javascript/#carousel | 303 | * https://getbootstrap.com/docs/3.4/javascript/#carousel |
303 | * ======================================================================== | 304 | * ======================================================================== |
304 | * Copyright 2011-2016 Twitter, Inc. | 305 | * Copyright 2011-2019 Twitter, Inc. |
305 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | 306 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
306 | * ======================================================================== */ | 307 | * ======================================================================== */ |
307 | 308 | ||
@@ -329,7 +330,7 @@ if (typeof jQuery === 'undefined') { | |||
329 | .on('mouseleave.bs.carousel', $.proxy(this.cycle, this)) | 330 | .on('mouseleave.bs.carousel', $.proxy(this.cycle, this)) |
330 | } | 331 | } |
331 | 332 | ||
332 | Carousel.VERSION = '3.3.7' | 333 | Carousel.VERSION = '3.4.1' |
333 | 334 | ||
334 | Carousel.TRANSITION_DURATION = 600 | 335 | Carousel.TRANSITION_DURATION = 600 |
335 | 336 | ||
@@ -443,7 +444,9 @@ if (typeof jQuery === 'undefined') { | |||
443 | var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid" | 444 | var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid" |
444 | if ($.support.transition && this.$element.hasClass('slide')) { | 445 | if ($.support.transition && this.$element.hasClass('slide')) { |
445 | $next.addClass(type) | 446 | $next.addClass(type) |
446 | $next[0].offsetWidth // force reflow | 447 | if (typeof $next === 'object' && $next.length) { |
448 | $next[0].offsetWidth // force reflow | ||
449 | } | ||
447 | $active.addClass(direction) | 450 | $active.addClass(direction) |
448 | $next.addClass(direction) | 451 | $next.addClass(direction) |
449 | $active | 452 | $active |
@@ -505,10 +508,17 @@ if (typeof jQuery === 'undefined') { | |||
505 | // ================= | 508 | // ================= |
506 | 509 | ||
507 | var clickHandler = function (e) { | 510 | var clickHandler = function (e) { |
508 | var href | ||
509 | var $this = $(this) | 511 | var $this = $(this) |
510 | var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7 | 512 | var href = $this.attr('href') |
513 | if (href) { | ||
514 | href = href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7 | ||
515 | } | ||
516 | |||
517 | var target = $this.attr('data-target') || href | ||
518 | var $target = $(document).find(target) | ||
519 | |||
511 | if (!$target.hasClass('carousel')) return | 520 | if (!$target.hasClass('carousel')) return |
521 | |||
512 | var options = $.extend({}, $target.data(), $this.data()) | 522 | var options = $.extend({}, $target.data(), $this.data()) |
513 | var slideIndex = $this.attr('data-slide-to') | 523 | var slideIndex = $this.attr('data-slide-to') |
514 | if (slideIndex) options.interval = false | 524 | if (slideIndex) options.interval = false |
@@ -536,10 +546,10 @@ if (typeof jQuery === 'undefined') { | |||
536 | }(jQuery); | 546 | }(jQuery); |
537 | 547 | ||
538 | /* ======================================================================== | 548 | /* ======================================================================== |
539 | * Bootstrap: collapse.js v3.3.7 | 549 | * Bootstrap: collapse.js v3.4.1 |
540 | * http://getbootstrap.com/javascript/#collapse | 550 | * https://getbootstrap.com/docs/3.4/javascript/#collapse |
541 | * ======================================================================== | 551 | * ======================================================================== |
542 | * Copyright 2011-2016 Twitter, Inc. | 552 | * Copyright 2011-2019 Twitter, Inc. |
543 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | 553 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
544 | * ======================================================================== */ | 554 | * ======================================================================== */ |
545 | 555 | ||
@@ -567,7 +577,7 @@ if (typeof jQuery === 'undefined') { | |||
567 | if (this.options.toggle) this.toggle() | 577 | if (this.options.toggle) this.toggle() |
568 | } | 578 | } |
569 | 579 | ||
570 | Collapse.VERSION = '3.3.7' | 580 | Collapse.VERSION = '3.4.1' |
571 | 581 | ||
572 | Collapse.TRANSITION_DURATION = 350 | 582 | Collapse.TRANSITION_DURATION = 350 |
573 | 583 | ||
@@ -674,7 +684,7 @@ if (typeof jQuery === 'undefined') { | |||
674 | } | 684 | } |
675 | 685 | ||
676 | Collapse.prototype.getParent = function () { | 686 | Collapse.prototype.getParent = function () { |
677 | return $(this.options.parent) | 687 | return $(document).find(this.options.parent) |
678 | .find('[data-toggle="collapse"][data-parent="' + this.options.parent + '"]') | 688 | .find('[data-toggle="collapse"][data-parent="' + this.options.parent + '"]') |
679 | .each($.proxy(function (i, element) { | 689 | .each($.proxy(function (i, element) { |
680 | var $element = $(element) | 690 | var $element = $(element) |
@@ -697,7 +707,7 @@ if (typeof jQuery === 'undefined') { | |||
697 | var target = $trigger.attr('data-target') | 707 | var target = $trigger.attr('data-target') |
698 | || (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7 | 708 | || (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7 |
699 | 709 | ||
700 | return $(target) | 710 | return $(document).find(target) |
701 | } | 711 | } |
702 | 712 | ||
703 | 713 | ||
@@ -749,10 +759,10 @@ if (typeof jQuery === 'undefined') { | |||
749 | }(jQuery); | 759 | }(jQuery); |
750 | 760 | ||
751 | /* ======================================================================== | 761 | /* ======================================================================== |
752 | * Bootstrap: dropdown.js v3.3.7 | 762 | * Bootstrap: dropdown.js v3.4.1 |
753 | * http://getbootstrap.com/javascript/#dropdowns | 763 | * https://getbootstrap.com/docs/3.4/javascript/#dropdowns |
754 | * ======================================================================== | 764 | * ======================================================================== |
755 | * Copyright 2011-2016 Twitter, Inc. | 765 | * Copyright 2011-2019 Twitter, Inc. |
756 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | 766 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
757 | * ======================================================================== */ | 767 | * ======================================================================== */ |
758 | 768 | ||
@@ -769,7 +779,7 @@ if (typeof jQuery === 'undefined') { | |||
769 | $(element).on('click.bs.dropdown', this.toggle) | 779 | $(element).on('click.bs.dropdown', this.toggle) |
770 | } | 780 | } |
771 | 781 | ||
772 | Dropdown.VERSION = '3.3.7' | 782 | Dropdown.VERSION = '3.4.1' |
773 | 783 | ||
774 | function getParent($this) { | 784 | function getParent($this) { |
775 | var selector = $this.attr('data-target') | 785 | var selector = $this.attr('data-target') |
@@ -779,7 +789,7 @@ if (typeof jQuery === 'undefined') { | |||
779 | selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 | 789 | selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 |
780 | } | 790 | } |
781 | 791 | ||
782 | var $parent = selector && $(selector) | 792 | var $parent = selector !== '#' ? $(document).find(selector) : null |
783 | 793 | ||
784 | return $parent && $parent.length ? $parent : $this.parent() | 794 | return $parent && $parent.length ? $parent : $this.parent() |
785 | } | 795 | } |
@@ -915,10 +925,10 @@ if (typeof jQuery === 'undefined') { | |||
915 | }(jQuery); | 925 | }(jQuery); |
916 | 926 | ||
917 | /* ======================================================================== | 927 | /* ======================================================================== |
918 | * Bootstrap: modal.js v3.3.7 | 928 | * Bootstrap: modal.js v3.4.1 |
919 | * http://getbootstrap.com/javascript/#modals | 929 | * https://getbootstrap.com/docs/3.4/javascript/#modals |
920 | * ======================================================================== | 930 | * ======================================================================== |
921 | * Copyright 2011-2016 Twitter, Inc. | 931 | * Copyright 2011-2019 Twitter, Inc. |
922 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | 932 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
923 | * ======================================================================== */ | 933 | * ======================================================================== */ |
924 | 934 | ||
@@ -930,15 +940,16 @@ if (typeof jQuery === 'undefined') { | |||
930 | // ====================== | 940 | // ====================== |
931 | 941 | ||
932 | var Modal = function (element, options) { | 942 | var Modal = function (element, options) { |
933 | this.options = options | 943 | this.options = options |
934 | this.$body = $(document.body) | 944 | this.$body = $(document.body) |
935 | this.$element = $(element) | 945 | this.$element = $(element) |
936 | this.$dialog = this.$element.find('.modal-dialog') | 946 | this.$dialog = this.$element.find('.modal-dialog') |
937 | this.$backdrop = null | 947 | this.$backdrop = null |
938 | this.isShown = null | 948 | this.isShown = null |
939 | this.originalBodyPad = null | 949 | this.originalBodyPad = null |
940 | this.scrollbarWidth = 0 | 950 | this.scrollbarWidth = 0 |
941 | this.ignoreBackdropClick = false | 951 | this.ignoreBackdropClick = false |
952 | this.fixedContent = '.navbar-fixed-top, .navbar-fixed-bottom' | ||
942 | 953 | ||
943 | if (this.options.remote) { | 954 | if (this.options.remote) { |
944 | this.$element | 955 | this.$element |
@@ -949,7 +960,7 @@ if (typeof jQuery === 'undefined') { | |||
949 | } | 960 | } |
950 | } | 961 | } |
951 | 962 | ||
952 | Modal.VERSION = '3.3.7' | 963 | Modal.VERSION = '3.4.1' |
953 | 964 | ||
954 | Modal.TRANSITION_DURATION = 300 | 965 | Modal.TRANSITION_DURATION = 300 |
955 | Modal.BACKDROP_TRANSITION_DURATION = 150 | 966 | Modal.BACKDROP_TRANSITION_DURATION = 150 |
@@ -966,7 +977,7 @@ if (typeof jQuery === 'undefined') { | |||
966 | 977 | ||
967 | Modal.prototype.show = function (_relatedTarget) { | 978 | Modal.prototype.show = function (_relatedTarget) { |
968 | var that = this | 979 | var that = this |
969 | var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget }) | 980 | var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget }) |
970 | 981 | ||
971 | this.$element.trigger(e) | 982 | this.$element.trigger(e) |
972 | 983 | ||
@@ -1057,8 +1068,8 @@ if (typeof jQuery === 'undefined') { | |||
1057 | .off('focusin.bs.modal') // guard against infinite focus loop | 1068 | .off('focusin.bs.modal') // guard against infinite focus loop |
1058 | .on('focusin.bs.modal', $.proxy(function (e) { | 1069 | .on('focusin.bs.modal', $.proxy(function (e) { |
1059 | if (document !== e.target && | 1070 | if (document !== e.target && |
1060 | this.$element[0] !== e.target && | 1071 | this.$element[0] !== e.target && |
1061 | !this.$element.has(e.target).length) { | 1072 | !this.$element.has(e.target).length) { |
1062 | this.$element.trigger('focus') | 1073 | this.$element.trigger('focus') |
1063 | } | 1074 | } |
1064 | }, this)) | 1075 | }, this)) |
@@ -1160,7 +1171,7 @@ if (typeof jQuery === 'undefined') { | |||
1160 | var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight | 1171 | var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight |
1161 | 1172 | ||
1162 | this.$element.css({ | 1173 | this.$element.css({ |
1163 | paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '', | 1174 | paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '', |
1164 | paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : '' | 1175 | paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : '' |
1165 | }) | 1176 | }) |
1166 | } | 1177 | } |
@@ -1185,11 +1196,26 @@ if (typeof jQuery === 'undefined') { | |||
1185 | Modal.prototype.setScrollbar = function () { | 1196 | Modal.prototype.setScrollbar = function () { |
1186 | var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10) | 1197 | var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10) |
1187 | this.originalBodyPad = document.body.style.paddingRight || '' | 1198 | this.originalBodyPad = document.body.style.paddingRight || '' |
1188 | if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth) | 1199 | var scrollbarWidth = this.scrollbarWidth |
1200 | if (this.bodyIsOverflowing) { | ||
1201 | this.$body.css('padding-right', bodyPad + scrollbarWidth) | ||
1202 | $(this.fixedContent).each(function (index, element) { | ||
1203 | var actualPadding = element.style.paddingRight | ||
1204 | var calculatedPadding = $(element).css('padding-right') | ||
1205 | $(element) | ||
1206 | .data('padding-right', actualPadding) | ||
1207 | .css('padding-right', parseFloat(calculatedPadding) + scrollbarWidth + 'px') | ||
1208 | }) | ||
1209 | } | ||
1189 | } | 1210 | } |
1190 | 1211 | ||
1191 | Modal.prototype.resetScrollbar = function () { | 1212 | Modal.prototype.resetScrollbar = function () { |
1192 | this.$body.css('padding-right', this.originalBodyPad) | 1213 | this.$body.css('padding-right', this.originalBodyPad) |
1214 | $(this.fixedContent).each(function (index, element) { | ||
1215 | var padding = $(element).data('padding-right') | ||
1216 | $(element).removeData('padding-right') | ||
1217 | element.style.paddingRight = padding ? padding : '' | ||
1218 | }) | ||
1193 | } | 1219 | } |
1194 | 1220 | ||
1195 | Modal.prototype.measureScrollbar = function () { // thx walsh | 1221 | Modal.prototype.measureScrollbar = function () { // thx walsh |
@@ -1207,8 +1233,8 @@ if (typeof jQuery === 'undefined') { | |||
1207 | 1233 | ||
1208 | function Plugin(option, _relatedTarget) { | 1234 | function Plugin(option, _relatedTarget) { |
1209 | return this.each(function () { | 1235 | return this.each(function () { |
1210 | var $this = $(this) | 1236 | var $this = $(this) |
1211 | var data = $this.data('bs.modal') | 1237 | var data = $this.data('bs.modal') |
1212 | var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option) | 1238 | var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option) |
1213 | 1239 | ||
1214 | if (!data) $this.data('bs.modal', (data = new Modal(this, options))) | 1240 | if (!data) $this.data('bs.modal', (data = new Modal(this, options))) |
@@ -1219,7 +1245,7 @@ if (typeof jQuery === 'undefined') { | |||
1219 | 1245 | ||
1220 | var old = $.fn.modal | 1246 | var old = $.fn.modal |
1221 | 1247 | ||
1222 | $.fn.modal = Plugin | 1248 | $.fn.modal = Plugin |
1223 | $.fn.modal.Constructor = Modal | 1249 | $.fn.modal.Constructor = Modal |
1224 | 1250 | ||
1225 | 1251 | ||
@@ -1236,10 +1262,13 @@ if (typeof jQuery === 'undefined') { | |||
1236 | // ============== | 1262 | // ============== |
1237 | 1263 | ||
1238 | $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) { | 1264 | $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) { |
1239 | var $this = $(this) | 1265 | var $this = $(this) |
1240 | var href = $this.attr('href') | 1266 | var href = $this.attr('href') |
1241 | var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7 | 1267 | var target = $this.attr('data-target') || |
1242 | var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data()) | 1268 | (href && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7 |
1269 | |||
1270 | var $target = $(document).find(target) | ||
1271 | var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data()) | ||
1243 | 1272 | ||
1244 | if ($this.is('a')) e.preventDefault() | 1273 | if ($this.is('a')) e.preventDefault() |
1245 | 1274 | ||
@@ -1255,18 +1284,148 @@ if (typeof jQuery === 'undefined') { | |||
1255 | }(jQuery); | 1284 | }(jQuery); |
1256 | 1285 | ||
1257 | /* ======================================================================== | 1286 | /* ======================================================================== |
1258 | * Bootstrap: tooltip.js v3.3.7 | 1287 | * Bootstrap: tooltip.js v3.4.1 |
1259 | * http://getbootstrap.com/javascript/#tooltip | 1288 | * https://getbootstrap.com/docs/3.4/javascript/#tooltip |
1260 | * Inspired by the original jQuery.tipsy by Jason Frame | 1289 | * Inspired by the original jQuery.tipsy by Jason Frame |
1261 | * ======================================================================== | 1290 | * ======================================================================== |
1262 | * Copyright 2011-2016 Twitter, Inc. | 1291 | * Copyright 2011-2019 Twitter, Inc. |
1263 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | 1292 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
1264 | * ======================================================================== */ | 1293 | * ======================================================================== */ |
1265 | 1294 | ||
1266 | |||
1267 | +function ($) { | 1295 | +function ($) { |
1268 | 'use strict'; | 1296 | 'use strict'; |
1269 | 1297 | ||
1298 | var DISALLOWED_ATTRIBUTES = ['sanitize', 'whiteList', 'sanitizeFn'] | ||
1299 | |||
1300 | var uriAttrs = [ | ||
1301 | 'background', | ||
1302 | 'cite', | ||
1303 | 'href', | ||
1304 | 'itemtype', | ||
1305 | 'longdesc', | ||
1306 | 'poster', | ||
1307 | 'src', | ||
1308 | 'xlink:href' | ||
1309 | ] | ||
1310 | |||
1311 | var ARIA_ATTRIBUTE_PATTERN = /^aria-[\w-]*$/i | ||
1312 | |||
1313 | var DefaultWhitelist = { | ||
1314 | // Global attributes allowed on any supplied element below. | ||
1315 | '*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN], | ||
1316 | a: ['target', 'href', 'title', 'rel'], | ||
1317 | area: [], | ||
1318 | b: [], | ||
1319 | br: [], | ||
1320 | col: [], | ||
1321 | code: [], | ||
1322 | div: [], | ||
1323 | em: [], | ||
1324 | hr: [], | ||
1325 | h1: [], | ||
1326 | h2: [], | ||
1327 | h3: [], | ||
1328 | h4: [], | ||
1329 | h5: [], | ||
1330 | h6: [], | ||
1331 | i: [], | ||
1332 | img: ['src', 'alt', 'title', 'width', 'height'], | ||
1333 | li: [], | ||
1334 | ol: [], | ||
1335 | p: [], | ||
1336 | pre: [], | ||
1337 | s: [], | ||
1338 | small: [], | ||
1339 | span: [], | ||
1340 | sub: [], | ||
1341 | sup: [], | ||
1342 | strong: [], | ||
1343 | u: [], | ||
1344 | ul: [] | ||
1345 | } | ||
1346 | |||
1347 | /** | ||
1348 | * A pattern that recognizes a commonly useful subset of URLs that are safe. | ||
1349 | * | ||
1350 | * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts | ||
1351 | */ | ||
1352 | var SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi | ||
1353 | |||
1354 | /** | ||
1355 | * A pattern that matches safe data URLs. Only matches image, video and audio types. | ||
1356 | * | ||
1357 | * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts | ||
1358 | */ | ||
1359 | var DATA_URL_PATTERN = /^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i | ||
1360 | |||
1361 | function allowedAttribute(attr, allowedAttributeList) { | ||
1362 | var attrName = attr.nodeName.toLowerCase() | ||
1363 | |||
1364 | if ($.inArray(attrName, allowedAttributeList) !== -1) { | ||
1365 | if ($.inArray(attrName, uriAttrs) !== -1) { | ||
1366 | return Boolean(attr.nodeValue.match(SAFE_URL_PATTERN) || attr.nodeValue.match(DATA_URL_PATTERN)) | ||
1367 | } | ||
1368 | |||
1369 | return true | ||
1370 | } | ||
1371 | |||
1372 | var regExp = $(allowedAttributeList).filter(function (index, value) { | ||
1373 | return value instanceof RegExp | ||
1374 | }) | ||
1375 | |||
1376 | // Check if a regular expression validates the attribute. | ||
1377 | for (var i = 0, l = regExp.length; i < l; i++) { | ||
1378 | if (attrName.match(regExp[i])) { | ||
1379 | return true | ||
1380 | } | ||
1381 | } | ||
1382 | |||
1383 | return false | ||
1384 | } | ||
1385 | |||
1386 | function sanitizeHtml(unsafeHtml, whiteList, sanitizeFn) { | ||
1387 | if (unsafeHtml.length === 0) { | ||
1388 | return unsafeHtml | ||
1389 | } | ||
1390 | |||
1391 | if (sanitizeFn && typeof sanitizeFn === 'function') { | ||
1392 | return sanitizeFn(unsafeHtml) | ||
1393 | } | ||
1394 | |||
1395 | // IE 8 and below don't support createHTMLDocument | ||
1396 | if (!document.implementation || !document.implementation.createHTMLDocument) { | ||
1397 | return unsafeHtml | ||
1398 | } | ||
1399 | |||
1400 | var createdDocument = document.implementation.createHTMLDocument('sanitization') | ||
1401 | createdDocument.body.innerHTML = unsafeHtml | ||
1402 | |||
1403 | var whitelistKeys = $.map(whiteList, function (el, i) { return i }) | ||
1404 | var elements = $(createdDocument.body).find('*') | ||
1405 | |||
1406 | for (var i = 0, len = elements.length; i < len; i++) { | ||
1407 | var el = elements[i] | ||
1408 | var elName = el.nodeName.toLowerCase() | ||
1409 | |||
1410 | if ($.inArray(elName, whitelistKeys) === -1) { | ||
1411 | el.parentNode.removeChild(el) | ||
1412 | |||
1413 | continue | ||
1414 | } | ||
1415 | |||
1416 | var attributeList = $.map(el.attributes, function (el) { return el }) | ||
1417 | var whitelistedAttributes = [].concat(whiteList['*'] || [], whiteList[elName] || []) | ||
1418 | |||
1419 | for (var j = 0, len2 = attributeList.length; j < len2; j++) { | ||
1420 | if (!allowedAttribute(attributeList[j], whitelistedAttributes)) { | ||
1421 | el.removeAttribute(attributeList[j].nodeName) | ||
1422 | } | ||
1423 | } | ||
1424 | } | ||
1425 | |||
1426 | return createdDocument.body.innerHTML | ||
1427 | } | ||
1428 | |||
1270 | // TOOLTIP PUBLIC CLASS DEFINITION | 1429 | // TOOLTIP PUBLIC CLASS DEFINITION |
1271 | // =============================== | 1430 | // =============================== |
1272 | 1431 | ||
@@ -1282,7 +1441,7 @@ if (typeof jQuery === 'undefined') { | |||
1282 | this.init('tooltip', element, options) | 1441 | this.init('tooltip', element, options) |
1283 | } | 1442 | } |
1284 | 1443 | ||
1285 | Tooltip.VERSION = '3.3.7' | 1444 | Tooltip.VERSION = '3.4.1' |
1286 | 1445 | ||
1287 | Tooltip.TRANSITION_DURATION = 150 | 1446 | Tooltip.TRANSITION_DURATION = 150 |
1288 | 1447 | ||
@@ -1299,7 +1458,10 @@ if (typeof jQuery === 'undefined') { | |||
1299 | viewport: { | 1458 | viewport: { |
1300 | selector: 'body', | 1459 | selector: 'body', |
1301 | padding: 0 | 1460 | padding: 0 |
1302 | } | 1461 | }, |
1462 | sanitize : true, | ||
1463 | sanitizeFn : null, | ||
1464 | whiteList : DefaultWhitelist | ||
1303 | } | 1465 | } |
1304 | 1466 | ||
1305 | Tooltip.prototype.init = function (type, element, options) { | 1467 | Tooltip.prototype.init = function (type, element, options) { |
@@ -1307,7 +1469,7 @@ if (typeof jQuery === 'undefined') { | |||
1307 | this.type = type | 1469 | this.type = type |
1308 | this.$element = $(element) | 1470 | this.$element = $(element) |
1309 | this.options = this.getOptions(options) | 1471 | this.options = this.getOptions(options) |
1310 | this.$viewport = this.options.viewport && $($.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport)) | 1472 | this.$viewport = this.options.viewport && $(document).find($.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport)) |
1311 | this.inState = { click: false, hover: false, focus: false } | 1473 | this.inState = { click: false, hover: false, focus: false } |
1312 | 1474 | ||
1313 | if (this.$element[0] instanceof document.constructor && !this.options.selector) { | 1475 | if (this.$element[0] instanceof document.constructor && !this.options.selector) { |
@@ -1340,7 +1502,15 @@ if (typeof jQuery === 'undefined') { | |||
1340 | } | 1502 | } |
1341 | 1503 | ||
1342 | Tooltip.prototype.getOptions = function (options) { | 1504 | Tooltip.prototype.getOptions = function (options) { |
1343 | options = $.extend({}, this.getDefaults(), this.$element.data(), options) | 1505 | var dataAttributes = this.$element.data() |
1506 | |||
1507 | for (var dataAttr in dataAttributes) { | ||
1508 | if (dataAttributes.hasOwnProperty(dataAttr) && $.inArray(dataAttr, DISALLOWED_ATTRIBUTES) !== -1) { | ||
1509 | delete dataAttributes[dataAttr] | ||
1510 | } | ||
1511 | } | ||
1512 | |||
1513 | options = $.extend({}, this.getDefaults(), dataAttributes, options) | ||
1344 | 1514 | ||
1345 | if (options.delay && typeof options.delay == 'number') { | 1515 | if (options.delay && typeof options.delay == 'number') { |
1346 | options.delay = { | 1516 | options.delay = { |
@@ -1349,6 +1519,10 @@ if (typeof jQuery === 'undefined') { | |||
1349 | } | 1519 | } |
1350 | } | 1520 | } |
1351 | 1521 | ||
1522 | if (options.sanitize) { | ||
1523 | options.template = sanitizeHtml(options.template, options.whiteList, options.sanitizeFn) | ||
1524 | } | ||
1525 | |||
1352 | return options | 1526 | return options |
1353 | } | 1527 | } |
1354 | 1528 | ||
@@ -1460,7 +1634,7 @@ if (typeof jQuery === 'undefined') { | |||
1460 | .addClass(placement) | 1634 | .addClass(placement) |
1461 | .data('bs.' + this.type, this) | 1635 | .data('bs.' + this.type, this) |
1462 | 1636 | ||
1463 | this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element) | 1637 | this.options.container ? $tip.appendTo($(document).find(this.options.container)) : $tip.insertAfter(this.$element) |
1464 | this.$element.trigger('inserted.bs.' + this.type) | 1638 | this.$element.trigger('inserted.bs.' + this.type) |
1465 | 1639 | ||
1466 | var pos = this.getPosition() | 1640 | var pos = this.getPosition() |
@@ -1562,7 +1736,16 @@ if (typeof jQuery === 'undefined') { | |||
1562 | var $tip = this.tip() | 1736 | var $tip = this.tip() |
1563 | var title = this.getTitle() | 1737 | var title = this.getTitle() |
1564 | 1738 | ||
1565 | $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title) | 1739 | if (this.options.html) { |
1740 | if (this.options.sanitize) { | ||
1741 | title = sanitizeHtml(title, this.options.whiteList, this.options.sanitizeFn) | ||
1742 | } | ||
1743 | |||
1744 | $tip.find('.tooltip-inner').html(title) | ||
1745 | } else { | ||
1746 | $tip.find('.tooltip-inner').text(title) | ||
1747 | } | ||
1748 | |||
1566 | $tip.removeClass('fade in top bottom left right') | 1749 | $tip.removeClass('fade in top bottom left right') |
1567 | } | 1750 | } |
1568 | 1751 | ||
@@ -1743,6 +1926,9 @@ if (typeof jQuery === 'undefined') { | |||
1743 | }) | 1926 | }) |
1744 | } | 1927 | } |
1745 | 1928 | ||
1929 | Tooltip.prototype.sanitizeHtml = function (unsafeHtml) { | ||
1930 | return sanitizeHtml(unsafeHtml, this.options.whiteList, this.options.sanitizeFn) | ||
1931 | } | ||
1746 | 1932 | ||
1747 | // TOOLTIP PLUGIN DEFINITION | 1933 | // TOOLTIP PLUGIN DEFINITION |
1748 | // ========================= | 1934 | // ========================= |
@@ -1776,10 +1962,10 @@ if (typeof jQuery === 'undefined') { | |||
1776 | }(jQuery); | 1962 | }(jQuery); |
1777 | 1963 | ||
1778 | /* ======================================================================== | 1964 | /* ======================================================================== |
1779 | * Bootstrap: popover.js v3.3.7 | 1965 | * Bootstrap: popover.js v3.4.1 |
1780 | * http://getbootstrap.com/javascript/#popovers | 1966 | * https://getbootstrap.com/docs/3.4/javascript/#popovers |
1781 | * ======================================================================== | 1967 | * ======================================================================== |
1782 | * Copyright 2011-2016 Twitter, Inc. | 1968 | * Copyright 2011-2019 Twitter, Inc. |
1783 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | 1969 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
1784 | * ======================================================================== */ | 1970 | * ======================================================================== */ |
1785 | 1971 | ||
@@ -1796,7 +1982,7 @@ if (typeof jQuery === 'undefined') { | |||
1796 | 1982 | ||
1797 | if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js') | 1983 | if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js') |
1798 | 1984 | ||
1799 | Popover.VERSION = '3.3.7' | 1985 | Popover.VERSION = '3.4.1' |
1800 | 1986 | ||
1801 | Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, { | 1987 | Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, { |
1802 | placement: 'right', | 1988 | placement: 'right', |
@@ -1822,10 +2008,25 @@ if (typeof jQuery === 'undefined') { | |||
1822 | var title = this.getTitle() | 2008 | var title = this.getTitle() |
1823 | var content = this.getContent() | 2009 | var content = this.getContent() |
1824 | 2010 | ||
1825 | $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title) | 2011 | if (this.options.html) { |
1826 | $tip.find('.popover-content').children().detach().end()[ // we use append for html objects to maintain js events | 2012 | var typeContent = typeof content |
1827 | this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text' | 2013 | |
1828 | ](content) | 2014 | if (this.options.sanitize) { |
2015 | title = this.sanitizeHtml(title) | ||
2016 | |||
2017 | if (typeContent === 'string') { | ||
2018 | content = this.sanitizeHtml(content) | ||
2019 | } | ||
2020 | } | ||
2021 | |||
2022 | $tip.find('.popover-title').html(title) | ||
2023 | $tip.find('.popover-content').children().detach().end()[ | ||
2024 | typeContent === 'string' ? 'html' : 'append' | ||
2025 | ](content) | ||
2026 | } else { | ||
2027 | $tip.find('.popover-title').text(title) | ||
2028 | $tip.find('.popover-content').children().detach().end().text(content) | ||
2029 | } | ||
1829 | 2030 | ||
1830 | $tip.removeClass('fade top bottom left right in') | 2031 | $tip.removeClass('fade top bottom left right in') |
1831 | 2032 | ||
@@ -1844,8 +2045,8 @@ if (typeof jQuery === 'undefined') { | |||
1844 | 2045 | ||
1845 | return $e.attr('data-content') | 2046 | return $e.attr('data-content') |
1846 | || (typeof o.content == 'function' ? | 2047 | || (typeof o.content == 'function' ? |
1847 | o.content.call($e[0]) : | 2048 | o.content.call($e[0]) : |
1848 | o.content) | 2049 | o.content) |
1849 | } | 2050 | } |
1850 | 2051 | ||
1851 | Popover.prototype.arrow = function () { | 2052 | Popover.prototype.arrow = function () { |
@@ -1885,10 +2086,10 @@ if (typeof jQuery === 'undefined') { | |||
1885 | }(jQuery); | 2086 | }(jQuery); |
1886 | 2087 | ||
1887 | /* ======================================================================== | 2088 | /* ======================================================================== |
1888 | * Bootstrap: scrollspy.js v3.3.7 | 2089 | * Bootstrap: scrollspy.js v3.4.1 |
1889 | * http://getbootstrap.com/javascript/#scrollspy | 2090 | * https://getbootstrap.com/docs/3.4/javascript/#scrollspy |
1890 | * ======================================================================== | 2091 | * ======================================================================== |
1891 | * Copyright 2011-2016 Twitter, Inc. | 2092 | * Copyright 2011-2019 Twitter, Inc. |
1892 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | 2093 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
1893 | * ======================================================================== */ | 2094 | * ======================================================================== */ |
1894 | 2095 | ||
@@ -1914,7 +2115,7 @@ if (typeof jQuery === 'undefined') { | |||
1914 | this.process() | 2115 | this.process() |
1915 | } | 2116 | } |
1916 | 2117 | ||
1917 | ScrollSpy.VERSION = '3.3.7' | 2118 | ScrollSpy.VERSION = '3.4.1' |
1918 | 2119 | ||
1919 | ScrollSpy.DEFAULTS = { | 2120 | ScrollSpy.DEFAULTS = { |
1920 | offset: 10 | 2121 | offset: 10 |
@@ -2058,10 +2259,10 @@ if (typeof jQuery === 'undefined') { | |||
2058 | }(jQuery); | 2259 | }(jQuery); |
2059 | 2260 | ||
2060 | /* ======================================================================== | 2261 | /* ======================================================================== |
2061 | * Bootstrap: tab.js v3.3.7 | 2262 | * Bootstrap: tab.js v3.4.1 |
2062 | * http://getbootstrap.com/javascript/#tabs | 2263 | * https://getbootstrap.com/docs/3.4/javascript/#tabs |
2063 | * ======================================================================== | 2264 | * ======================================================================== |
2064 | * Copyright 2011-2016 Twitter, Inc. | 2265 | * Copyright 2011-2019 Twitter, Inc. |
2065 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | 2266 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
2066 | * ======================================================================== */ | 2267 | * ======================================================================== */ |
2067 | 2268 | ||
@@ -2078,7 +2279,7 @@ if (typeof jQuery === 'undefined') { | |||
2078 | // jscs:enable requireDollarBeforejQueryAssignment | 2279 | // jscs:enable requireDollarBeforejQueryAssignment |
2079 | } | 2280 | } |
2080 | 2281 | ||
2081 | Tab.VERSION = '3.3.7' | 2282 | Tab.VERSION = '3.4.1' |
2082 | 2283 | ||
2083 | Tab.TRANSITION_DURATION = 150 | 2284 | Tab.TRANSITION_DURATION = 150 |
2084 | 2285 | ||
@@ -2107,7 +2308,7 @@ if (typeof jQuery === 'undefined') { | |||
2107 | 2308 | ||
2108 | if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) return | 2309 | if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) return |
2109 | 2310 | ||
2110 | var $target = $(selector) | 2311 | var $target = $(document).find(selector) |
2111 | 2312 | ||
2112 | this.activate($this.closest('li'), $ul) | 2313 | this.activate($this.closest('li'), $ul) |
2113 | this.activate($target, $target.parent(), function () { | 2314 | this.activate($target, $target.parent(), function () { |
@@ -2132,15 +2333,15 @@ if (typeof jQuery === 'undefined') { | |||
2132 | $active | 2333 | $active |
2133 | .removeClass('active') | 2334 | .removeClass('active') |
2134 | .find('> .dropdown-menu > .active') | 2335 | .find('> .dropdown-menu > .active') |
2135 | .removeClass('active') | 2336 | .removeClass('active') |
2136 | .end() | 2337 | .end() |
2137 | .find('[data-toggle="tab"]') | 2338 | .find('[data-toggle="tab"]') |
2138 | .attr('aria-expanded', false) | 2339 | .attr('aria-expanded', false) |
2139 | 2340 | ||
2140 | element | 2341 | element |
2141 | .addClass('active') | 2342 | .addClass('active') |
2142 | .find('[data-toggle="tab"]') | 2343 | .find('[data-toggle="tab"]') |
2143 | .attr('aria-expanded', true) | 2344 | .attr('aria-expanded', true) |
2144 | 2345 | ||
2145 | if (transition) { | 2346 | if (transition) { |
2146 | element[0].offsetWidth // reflow for transition | 2347 | element[0].offsetWidth // reflow for transition |
@@ -2152,10 +2353,10 @@ if (typeof jQuery === 'undefined') { | |||
2152 | if (element.parent('.dropdown-menu').length) { | 2353 | if (element.parent('.dropdown-menu').length) { |
2153 | element | 2354 | element |
2154 | .closest('li.dropdown') | 2355 | .closest('li.dropdown') |
2155 | .addClass('active') | 2356 | .addClass('active') |
2156 | .end() | 2357 | .end() |
2157 | .find('[data-toggle="tab"]') | 2358 | .find('[data-toggle="tab"]') |
2158 | .attr('aria-expanded', true) | 2359 | .attr('aria-expanded', true) |
2159 | } | 2360 | } |
2160 | 2361 | ||
2161 | callback && callback() | 2362 | callback && callback() |
@@ -2214,10 +2415,10 @@ if (typeof jQuery === 'undefined') { | |||
2214 | }(jQuery); | 2415 | }(jQuery); |
2215 | 2416 | ||
2216 | /* ======================================================================== | 2417 | /* ======================================================================== |
2217 | * Bootstrap: affix.js v3.3.7 | 2418 | * Bootstrap: affix.js v3.4.1 |
2218 | * http://getbootstrap.com/javascript/#affix | 2419 | * https://getbootstrap.com/docs/3.4/javascript/#affix |
2219 | * ======================================================================== | 2420 | * ======================================================================== |
2220 | * Copyright 2011-2016 Twitter, Inc. | 2421 | * Copyright 2011-2019 Twitter, Inc. |
2221 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | 2422 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) |
2222 | * ======================================================================== */ | 2423 | * ======================================================================== */ |
2223 | 2424 | ||
@@ -2231,7 +2432,9 @@ if (typeof jQuery === 'undefined') { | |||
2231 | var Affix = function (element, options) { | 2432 | var Affix = function (element, options) { |
2232 | this.options = $.extend({}, Affix.DEFAULTS, options) | 2433 | this.options = $.extend({}, Affix.DEFAULTS, options) |
2233 | 2434 | ||
2234 | this.$target = $(this.options.target) | 2435 | var target = this.options.target === Affix.DEFAULTS.target ? $(this.options.target) : $(document).find(this.options.target) |
2436 | |||
2437 | this.$target = target | ||
2235 | .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this)) | 2438 | .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this)) |
2236 | .on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this)) | 2439 | .on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this)) |
2237 | 2440 | ||
@@ -2243,7 +2446,7 @@ if (typeof jQuery === 'undefined') { | |||
2243 | this.checkPosition() | 2446 | this.checkPosition() |
2244 | } | 2447 | } |
2245 | 2448 | ||
2246 | Affix.VERSION = '3.3.7' | 2449 | Affix.VERSION = '3.4.1' |
2247 | 2450 | ||
2248 | Affix.RESET = 'affix affix-top affix-bottom' | 2451 | Affix.RESET = 'affix affix-top affix-bottom' |
2249 | 2452 | ||
diff --git a/src/js/entropy.js b/src/js/entropy.js index 62b2711..3b62e10 100644 --- a/src/js/entropy.js +++ b/src/js/entropy.js | |||
@@ -16,7 +16,136 @@ | |||
16 | 16 | ||
17 | window.Entropy = new (function() { | 17 | window.Entropy = new (function() { |
18 | 18 | ||
19 | var TWO = new libs.BigInteger.BigInteger(2); | 19 | let eventBits = { |
20 | |||
21 | "binary": { | ||
22 | "0": "0", | ||
23 | "1": "1", | ||
24 | }, | ||
25 | |||
26 | // log2(6) = 2.58496 bits per roll, with bias | ||
27 | // 4 rolls give 2 bits each | ||
28 | // 2 rolls give 1 bit each | ||
29 | // Average (4*2 + 2*1) / 6 = 1.66 bits per roll without bias | ||
30 | "base 6": { | ||
31 | "0": "00", | ||
32 | "1": "01", | ||
33 | "2": "10", | ||
34 | "3": "11", | ||
35 | "4": "0", | ||
36 | "5": "1", | ||
37 | }, | ||
38 | |||
39 | // log2(6) = 2.58496 bits per roll, with bias | ||
40 | // 4 rolls give 2 bits each | ||
41 | // 2 rolls give 1 bit each | ||
42 | // Average (4*2 + 2*1) / 6 = 1.66 bits per roll without bias | ||
43 | "base 6 (dice)": { | ||
44 | "0": "00", // equivalent to 0 in base 6 | ||
45 | "1": "01", | ||
46 | "2": "10", | ||
47 | "3": "11", | ||
48 | "4": "0", | ||
49 | "5": "1", | ||
50 | }, | ||
51 | |||
52 | // log2(10) = 3.321928 bits per digit, with bias | ||
53 | // 8 digits give 3 bits each | ||
54 | // 2 digits give 1 bit each | ||
55 | // Average (8*3 + 2*1) / 10 = 2.6 bits per digit without bias | ||
56 | "base 10": { | ||
57 | "0": "000", | ||
58 | "1": "001", | ||
59 | "2": "010", | ||
60 | "3": "011", | ||
61 | "4": "100", | ||
62 | "5": "101", | ||
63 | "6": "110", | ||
64 | "7": "111", | ||
65 | "8": "0", | ||
66 | "9": "1", | ||
67 | }, | ||
68 | |||
69 | "hexadecimal": { | ||
70 | "0": "0000", | ||
71 | "1": "0001", | ||
72 | "2": "0010", | ||
73 | "3": "0011", | ||
74 | "4": "0100", | ||
75 | "5": "0101", | ||
76 | "6": "0110", | ||
77 | "7": "0111", | ||
78 | "8": "1000", | ||
79 | "9": "1001", | ||
80 | "a": "1010", | ||
81 | "b": "1011", | ||
82 | "c": "1100", | ||
83 | "d": "1101", | ||
84 | "e": "1110", | ||
85 | "f": "1111", | ||
86 | }, | ||
87 | |||
88 | // log2(52) = 5.7004 bits per card, with bias | ||
89 | // 32 cards give 5 bits each | ||
90 | // 16 cards give 4 bits each | ||
91 | // 4 cards give 2 bits each | ||
92 | // Average (32*5 + 16*4 + 4*2) / 52 = 4.46 bits per card without bias | ||
93 | "card": { | ||
94 | "ac": "00000", | ||
95 | "2c": "00001", | ||
96 | "3c": "00010", | ||
97 | "4c": "00011", | ||
98 | "5c": "00100", | ||
99 | "6c": "00101", | ||
100 | "7c": "00110", | ||
101 | "8c": "00111", | ||
102 | "9c": "01000", | ||
103 | "tc": "01001", | ||
104 | "jc": "01010", | ||
105 | "qc": "01011", | ||
106 | "kc": "01100", | ||
107 | "ad": "01101", | ||
108 | "2d": "01110", | ||
109 | "3d": "01111", | ||
110 | "4d": "10000", | ||
111 | "5d": "10001", | ||
112 | "6d": "10010", | ||
113 | "7d": "10011", | ||
114 | "8d": "10100", | ||
115 | "9d": "10101", | ||
116 | "td": "10110", | ||
117 | "jd": "10111", | ||
118 | "qd": "11000", | ||
119 | "kd": "11001", | ||
120 | "ah": "11010", | ||
121 | "2h": "11011", | ||
122 | "3h": "11100", | ||
123 | "4h": "11101", | ||
124 | "5h": "11110", | ||
125 | "6h": "11111", | ||
126 | "7h": "0000", | ||
127 | "8h": "0001", | ||
128 | "9h": "0010", | ||
129 | "th": "0011", | ||
130 | "jh": "0100", | ||
131 | "qh": "0101", | ||
132 | "kh": "0110", | ||
133 | "as": "0111", | ||
134 | "2s": "1000", | ||
135 | "3s": "1001", | ||
136 | "4s": "1010", | ||
137 | "5s": "1011", | ||
138 | "6s": "1100", | ||
139 | "7s": "1101", | ||
140 | "8s": "1110", | ||
141 | "9s": "1111", | ||
142 | "ts": "00", | ||
143 | "js": "01", | ||
144 | "qs": "10", | ||
145 | "ks": "11", | ||
146 | }, | ||
147 | |||
148 | } | ||
20 | 149 | ||
21 | // matchers returns an array of the matched events for each type of entropy. | 150 | // matchers returns an array of the matched events for each type of entropy. |
22 | // eg | 151 | // eg |
@@ -51,48 +180,28 @@ window.Entropy = new (function() { | |||
51 | } | 180 | } |
52 | } | 181 | } |
53 | 182 | ||
54 | // Convert array of cards from ["ac", "4d", "ks"] | ||
55 | // to numbers between 0 and 51 [0, 16, 51] | ||
56 | function convertCardsToInts(cards) { | ||
57 | var ints = []; | ||
58 | var values = "a23456789tjqk"; | ||
59 | var suits = "cdhs"; | ||
60 | for (var i=0; i<cards.length; i++) { | ||
61 | var card = cards[i].toLowerCase(); | ||
62 | var value = card[0]; | ||
63 | var suit = card[1]; | ||
64 | var asInt = 13 * suits.indexOf(suit) + values.indexOf(value); | ||
65 | ints.push(asInt); | ||
66 | } | ||
67 | return ints; | ||
68 | } | ||
69 | |||
70 | this.fromString = function(rawEntropyStr, baseStr) { | 183 | this.fromString = function(rawEntropyStr, baseStr) { |
71 | // Find type of entropy being used (binary, hex, dice etc) | 184 | // Find type of entropy being used (binary, hex, dice etc) |
72 | var base = getBase(rawEntropyStr, baseStr); | 185 | var base = getBase(rawEntropyStr, baseStr); |
73 | // Convert dice to base6 entropy (ie 1-6 to 0-5) | 186 | // Convert dice to base6 entropy (ie 1-6 to 0-5) |
74 | // This is done by changing all 6s to 0s | 187 | // This is done by changing all 6s to 0s |
75 | if (base.str == "dice") { | 188 | if (base.str == "dice") { |
76 | var newParts = []; | 189 | var newEvents = []; |
77 | var newInts = []; | 190 | for (var i=0; i<base.events.length; i++) { |
78 | for (var i=0; i<base.parts.length; i++) { | 191 | var c = base.events[i]; |
79 | var c = base.parts[i]; | ||
80 | if ("12345".indexOf(c) > -1) { | 192 | if ("12345".indexOf(c) > -1) { |
81 | newParts[i] = base.parts[i]; | 193 | newEvents[i] = base.events[i]; |
82 | newInts[i] = base.ints[i]; | ||
83 | } | 194 | } |
84 | else { | 195 | else { |
85 | newParts[i] = "0"; | 196 | newEvents[i] = "0"; |
86 | newInts[i] = 0; | ||
87 | } | 197 | } |
88 | } | 198 | } |
89 | base.str = "base 6 (dice)"; | 199 | base.str = "base 6 (dice)"; |
90 | base.ints = newInts; | 200 | base.events = newEvents; |
91 | base.parts = newParts; | ||
92 | base.matcher = matchers.base6; | 201 | base.matcher = matchers.base6; |
93 | } | 202 | } |
94 | // Detect empty entropy | 203 | // Detect empty entropy |
95 | if (base.parts.length == 0) { | 204 | if (base.events.length == 0) { |
96 | return { | 205 | return { |
97 | binaryStr: "", | 206 | binaryStr: "", |
98 | cleanStr: "", | 207 | cleanStr: "", |
@@ -100,44 +209,23 @@ window.Entropy = new (function() { | |||
100 | base: base, | 209 | base: base, |
101 | }; | 210 | }; |
102 | } | 211 | } |
103 | // Convert base.ints to BigInteger. | 212 | // Convert entropy events to binary |
104 | // Due to using unusual bases, eg cards of base52, this is not as simple as | 213 | var entropyBin = base.events.map(function(e) { |
105 | // using BigInteger.parse() | 214 | return eventBits[base.str][e.toLowerCase()]; |
106 | var entropyInt = libs.BigInteger.BigInteger.ZERO; | 215 | }).join(""); |
107 | for (var i=base.ints.length-1; i>=0; i--) { | 216 | // Get average bits per event |
108 | var thisInt = libs.BigInteger.BigInteger.parse(base.ints[i]); | 217 | // which may be adjusted for bias if log2(base) is fractional |
109 | var power = (base.ints.length - 1) - i; | 218 | var bitsPerEvent = base.bitsPerEvent; |
110 | var additionalEntropy = libs.BigInteger.BigInteger.parse(base.asInt).pow(power).multiply(thisInt); | ||
111 | entropyInt = entropyInt.add(additionalEntropy); | ||
112 | } | ||
113 | // Convert entropy to binary | ||
114 | var entropyBin = entropyInt.toString(2); | ||
115 | // If the first integer is small, it must be padded with zeros. | ||
116 | // Otherwise the chance of the first bit being 1 is 100%, which is | ||
117 | // obviously incorrect. | ||
118 | // This is not perfect for non-2^n bases. | ||
119 | var expectedBits = Math.floor(base.parts.length * Math.log2(base.asInt)); | ||
120 | while (entropyBin.length < expectedBits) { | ||
121 | entropyBin = "0" + entropyBin; | ||
122 | } | ||
123 | // Calculate the number of bits per event | ||
124 | var bitsPerEvent = Math.log2(base.asInt); | ||
125 | // Cards binary must be handled differently, since they're not replaced | ||
126 | if (base.asInt == 52) { | ||
127 | var cardEntropy = processCardEntropy(base.parts); | ||
128 | entropyBin = cardEntropy.binaryStr; | ||
129 | bitsPerEvent = cardEntropy.bitsPerEvent; | ||
130 | } | ||
131 | // Supply a 'filtered' entropy string for display purposes | 219 | // Supply a 'filtered' entropy string for display purposes |
132 | var entropyClean = base.parts.join(""); | 220 | var entropyClean = base.events.join(""); |
133 | var entropyHtml = base.parts.join(""); | 221 | var entropyHtml = base.events.join(""); |
134 | if (base.asInt == 52) { | 222 | if (base.asInt == 52) { |
135 | entropyClean = base.parts.join(" ").toUpperCase(); | 223 | entropyClean = base.events.join(" ").toUpperCase(); |
136 | entropyClean = entropyClean.replace(/C/g, "\u2663"); | 224 | entropyClean = entropyClean.replace(/C/g, "\u2663"); |
137 | entropyClean = entropyClean.replace(/D/g, "\u2666"); | 225 | entropyClean = entropyClean.replace(/D/g, "\u2666"); |
138 | entropyClean = entropyClean.replace(/H/g, "\u2665"); | 226 | entropyClean = entropyClean.replace(/H/g, "\u2665"); |
139 | entropyClean = entropyClean.replace(/S/g, "\u2660"); | 227 | entropyClean = entropyClean.replace(/S/g, "\u2660"); |
140 | entropyHtml = base.parts.join(" ").toUpperCase(); | 228 | entropyHtml = base.events.join(" ").toUpperCase(); |
141 | entropyHtml = entropyHtml.replace(/C/g, "<span class='card-suit club'>\u2663</span>"); | 229 | entropyHtml = entropyHtml.replace(/C/g, "<span class='card-suit club'>\u2663</span>"); |
142 | entropyHtml = entropyHtml.replace(/D/g, "<span class='card-suit diamond'>\u2666</span>"); | 230 | entropyHtml = entropyHtml.replace(/D/g, "<span class='card-suit diamond'>\u2666</span>"); |
143 | entropyHtml = entropyHtml.replace(/H/g, "<span class='card-suit heart'>\u2665</span>"); | 231 | entropyHtml = entropyHtml.replace(/H/g, "<span class='card-suit heart'>\u2665</span>"); |
@@ -154,18 +242,6 @@ window.Entropy = new (function() { | |||
154 | return e; | 242 | return e; |
155 | } | 243 | } |
156 | 244 | ||
157 | function getSortedDeck() { | ||
158 | var s = []; | ||
159 | var suits = "CDHS"; | ||
160 | var values = "A23456789TJQK"; | ||
161 | for (var i=0; i<suits.length; i++) { | ||
162 | for (var j=0; j<values.length; j++) { | ||
163 | s.push(values[j]+suits[i]); | ||
164 | } | ||
165 | } | ||
166 | return s; | ||
167 | } | ||
168 | |||
169 | function getBase(str, baseStr) { | 245 | function getBase(str, baseStr) { |
170 | // Need to get the lowest base for the supplied entropy. | 246 | // Need to get the lowest base for the supplied entropy. |
171 | // This prevents interpreting, say, dice rolls as hexadecimal. | 247 | // This prevents interpreting, say, dice rolls as hexadecimal. |
@@ -177,20 +253,21 @@ window.Entropy = new (function() { | |||
177 | var ints = binaryMatches.map(function(i) { return parseInt(i, 2) }); | 253 | var ints = binaryMatches.map(function(i) { return parseInt(i, 2) }); |
178 | return { | 254 | return { |
179 | ints: ints, | 255 | ints: ints, |
180 | parts: binaryMatches, | 256 | events: binaryMatches, |
181 | matcher: matchers.binary, | 257 | matcher: matchers.binary, |
182 | asInt: 2, | 258 | asInt: 2, |
259 | bitsPerEvent: 1, | ||
183 | str: "binary", | 260 | str: "binary", |
184 | } | 261 | } |
185 | } | 262 | } |
186 | var cardMatches = matchers.card(str); | 263 | var cardMatches = matchers.card(str); |
187 | if ((cardMatches.length >= hexMatches.length / 2 && autodetect) || baseStr === "card") { | 264 | if ((cardMatches.length >= hexMatches.length / 2 && autodetect) || baseStr === "card") { |
188 | var ints = convertCardsToInts(cardMatches); | ||
189 | return { | 265 | return { |
190 | ints: ints, | 266 | ints: ints, |
191 | parts: cardMatches, | 267 | events: cardMatches, |
192 | matcher: matchers.card, | 268 | matcher: matchers.card, |
193 | asInt: 52, | 269 | asInt: 52, |
270 | bitsPerEvent: (32*5 + 16*4 + 4*2) / 52, // see cardBits | ||
194 | str: "card", | 271 | str: "card", |
195 | } | 272 | } |
196 | } | 273 | } |
@@ -199,9 +276,10 @@ window.Entropy = new (function() { | |||
199 | var ints = diceMatches.map(function(i) { return parseInt(i) }); | 276 | var ints = diceMatches.map(function(i) { return parseInt(i) }); |
200 | return { | 277 | return { |
201 | ints: ints, | 278 | ints: ints, |
202 | parts: diceMatches, | 279 | events: diceMatches, |
203 | matcher: matchers.dice, | 280 | matcher: matchers.dice, |
204 | asInt: 6, | 281 | asInt: 6, |
282 | bitsPerEvent: (4*2 + 2*1) / 6, // see diceBits | ||
205 | str: "dice", | 283 | str: "dice", |
206 | } | 284 | } |
207 | } | 285 | } |
@@ -210,9 +288,10 @@ window.Entropy = new (function() { | |||
210 | var ints = base6Matches.map(function(i) { return parseInt(i) }); | 288 | var ints = base6Matches.map(function(i) { return parseInt(i) }); |
211 | return { | 289 | return { |
212 | ints: ints, | 290 | ints: ints, |
213 | parts: base6Matches, | 291 | events: base6Matches, |
214 | matcher: matchers.base6, | 292 | matcher: matchers.base6, |
215 | asInt: 6, | 293 | asInt: 6, |
294 | bitsPerEvent: (4*2 + 2*1) / 6, // see diceBits | ||
216 | str: "base 6", | 295 | str: "base 6", |
217 | } | 296 | } |
218 | } | 297 | } |
@@ -221,126 +300,22 @@ window.Entropy = new (function() { | |||
221 | var ints = base10Matches.map(function(i) { return parseInt(i) }); | 300 | var ints = base10Matches.map(function(i) { return parseInt(i) }); |
222 | return { | 301 | return { |
223 | ints: ints, | 302 | ints: ints, |
224 | parts: base10Matches, | 303 | events: base10Matches, |
225 | matcher: matchers.base10, | 304 | matcher: matchers.base10, |
226 | asInt: 10, | 305 | asInt: 10, |
306 | bitsPerEvent: (8*3 + 2*1) / 10, // see b10Bits | ||
227 | str: "base 10", | 307 | str: "base 10", |
228 | } | 308 | } |
229 | } | 309 | } |
230 | var ints = hexMatches.map(function(i) { return parseInt(i, 16) }); | 310 | var ints = hexMatches.map(function(i) { return parseInt(i, 16) }); |
231 | return { | 311 | return { |
232 | ints: ints, | 312 | ints: ints, |
233 | parts: hexMatches, | 313 | events: hexMatches, |
234 | matcher: matchers.hex, | 314 | matcher: matchers.hex, |
235 | asInt: 16, | 315 | asInt: 16, |
316 | bitsPerEvent: 4, | ||
236 | str: "hexadecimal", | 317 | str: "hexadecimal", |
237 | } | 318 | } |
238 | } | 319 | } |
239 | 320 | ||
240 | // Assume cards are NOT replaced. | ||
241 | // Additional entropy decreases as more cards are used. This means | ||
242 | // total possible entropy is measured using n!, not base^n. | ||
243 | // eg the second last card can be only one of two, not one of fifty two | ||
244 | // so the added entropy for that card is only one bit at most | ||
245 | function processCardEntropy(cards) { | ||
246 | // Track how many instances of each card have been used, and thus | ||
247 | // how many decks are in use. | ||
248 | var cardCounts = {}; | ||
249 | var numberOfDecks = 0; | ||
250 | // Work out number of decks by max(duplicates) | ||
251 | for (var i=0; i<cards.length; i++) { | ||
252 | // Get the card that was drawn | ||
253 | var cardLower = cards[i]; | ||
254 | var card = cardLower.toUpperCase(); | ||
255 | // Initialize the count for this card if needed | ||
256 | if (!(card in cardCounts)) { | ||
257 | cardCounts[card] = 0; | ||
258 | } | ||
259 | cardCounts[card] += 1; | ||
260 | // See if this is max(duplicates) | ||
261 | if (cardCounts[card] > numberOfDecks) { | ||
262 | numberOfDecks = cardCounts[card]; | ||
263 | } | ||
264 | } | ||
265 | // Work out the total number of bits for this many decks | ||
266 | // See http://crypto.stackexchange.com/q/41886 | ||
267 | var gainedBits = 0; | ||
268 | // Equivalent of Math.log2(factorial(52*numberOfDecks)) | ||
269 | // which becomes infinity for numberOfDecks > 4 | ||
270 | for (var i=1; i<=52*numberOfDecks; i++) { | ||
271 | gainedBits = gainedBits + Math.log2(i); | ||
272 | } | ||
273 | var lostBits = 52 * Math.log2(factorial(numberOfDecks)); | ||
274 | var maxBits = gainedBits - lostBits; | ||
275 | // Convert the drawn cards to a binary representation. | ||
276 | // The exact technique for doing this is unclear. | ||
277 | // See | ||
278 | // http://crypto.stackexchange.com/a/41896 | ||
279 | // "I even doubt that this is well defined (only the average entropy | ||
280 | // is, I believe)." | ||
281 | // See | ||
282 | // https://github.com/iancoleman/bip39/issues/33#issuecomment-263021856 | ||
283 | // "The binary representation can be the first log(permutations,2) bits | ||
284 | // of the sha-2 hash of the normalized deck string." | ||
285 | // | ||
286 | // In this specific implementation, the first N bits of the hash of the | ||
287 | // normalized cards string is being used. Uppercase, no spaces; eg | ||
288 | // sha256("AH8DQSTC2H") | ||
289 | var totalCards = numberOfDecks * 52; | ||
290 | var percentUsed = cards.length / totalCards; | ||
291 | // Calculate the average number of bits of entropy for the number of | ||
292 | // cards drawn. | ||
293 | var numberOfBits = Math.floor(maxBits * percentUsed); | ||
294 | // Create a normalized string of the selected cards | ||
295 | var normalizedCards = cards.join("").toUpperCase(); | ||
296 | // Convert to binary using the SHA256 hash of the normalized cards. | ||
297 | // If the number of bits is more than 256, multiple hashes | ||
298 | // are used until the required number of bits is reached. | ||
299 | var entropyBin = ""; | ||
300 | var iterations = 0; | ||
301 | while (entropyBin.length < numberOfBits) { | ||
302 | var hashedCards = sjcl.hash.sha256.hash(normalizedCards + ":" + iterations); | ||
303 | var hashHex = sjcl.codec.hex.fromBits(hashedCards); | ||
304 | for (var i=0; i<hashHex.length; i++) { | ||
305 | var decimal = parseInt(hashHex[i], 16); | ||
306 | var binary = decimal.toString(2); | ||
307 | while (binary.length < 4) { | ||
308 | binary = "0" + binary; | ||
309 | } | ||
310 | entropyBin = entropyBin + binary; | ||
311 | } | ||
312 | iterations = iterations + 1; | ||
313 | } | ||
314 | // Truncate to the appropriate number of bits. | ||
315 | entropyBin = entropyBin.substring(0, numberOfBits); | ||
316 | // Get the number of bits per event | ||
317 | bitsPerEvent = maxBits / totalCards; | ||
318 | return { | ||
319 | binaryStr: entropyBin, | ||
320 | bitsPerEvent: bitsPerEvent, | ||
321 | } | ||
322 | } | ||
323 | |||
324 | // Polyfill for Math.log2 | ||
325 | // See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/log2#Polyfill | ||
326 | Math.log2 = Math.log2 || function(x) { | ||
327 | // The polyfill isn't good enough because of the poor accuracy of | ||
328 | // Math.LOG2E | ||
329 | // log2(8) gave 2.9999999999999996 which when floored causes issues. | ||
330 | // So instead use the BigInteger library to get it right. | ||
331 | return libs.BigInteger.BigInteger.log(x) / libs.BigInteger.BigInteger.log(2); | ||
332 | }; | ||
333 | |||
334 | // Depends on BigInteger | ||
335 | function factorial(n) { | ||
336 | if (n == 0) { | ||
337 | return 1; | ||
338 | } | ||
339 | f = libs.BigInteger.BigInteger.ONE; | ||
340 | for (var i=1; i<=n; i++) { | ||
341 | f = f.multiply(new libs.BigInteger.BigInteger(i)); | ||
342 | } | ||
343 | return f; | ||
344 | } | ||
345 | |||
346 | })(); | 321 | })(); |
diff --git a/src/js/index.js b/src/js/index.js index e959c58..114f74a 100644 --- a/src/js/index.js +++ b/src/js/index.js | |||
@@ -1737,7 +1737,7 @@ | |||
1737 | var numberOfBits = entropy.binaryStr.length; | 1737 | var numberOfBits = entropy.binaryStr.length; |
1738 | var timeToCrack = "unknown"; | 1738 | var timeToCrack = "unknown"; |
1739 | try { | 1739 | try { |
1740 | var z = libs.zxcvbn(entropy.base.parts.join("")); | 1740 | var z = libs.zxcvbn(entropy.base.events.join("")); |
1741 | timeToCrack = z.crack_times_display.offline_fast_hashing_1e10_per_second; | 1741 | timeToCrack = z.crack_times_display.offline_fast_hashing_1e10_per_second; |
1742 | if (z.feedback.warning != "") { | 1742 | if (z.feedback.warning != "") { |
1743 | timeToCrack = timeToCrack + " - " + z.feedback.warning; | 1743 | timeToCrack = timeToCrack + " - " + z.feedback.warning; |
@@ -1756,7 +1756,7 @@ | |||
1756 | DOM.entropyFiltered.html(entropy.cleanHtml); | 1756 | DOM.entropyFiltered.html(entropy.cleanHtml); |
1757 | DOM.entropyType.text(entropyTypeStr); | 1757 | DOM.entropyType.text(entropyTypeStr); |
1758 | DOM.entropyCrackTime.text(timeToCrack); | 1758 | DOM.entropyCrackTime.text(timeToCrack); |
1759 | DOM.entropyEventCount.text(entropy.base.ints.length); | 1759 | DOM.entropyEventCount.text(entropy.base.events.length); |
1760 | DOM.entropyBits.text(numberOfBits); | 1760 | DOM.entropyBits.text(numberOfBits); |
1761 | DOM.entropyWordCount.text(wordCount); | 1761 | DOM.entropyWordCount.text(wordCount); |
1762 | DOM.entropyBinary.text(spacedBinaryStr); | 1762 | DOM.entropyBinary.text(spacedBinaryStr); |
@@ -1781,8 +1781,8 @@ | |||
1781 | // Detect duplicates | 1781 | // Detect duplicates |
1782 | var dupes = []; | 1782 | var dupes = []; |
1783 | var dupeTracker = {}; | 1783 | var dupeTracker = {}; |
1784 | for (var i=0; i<entropy.base.parts.length; i++) { | 1784 | for (var i=0; i<entropy.base.events.length; i++) { |
1785 | var card = entropy.base.parts[i]; | 1785 | var card = entropy.base.events[i]; |
1786 | var cardUpper = card.toUpperCase(); | 1786 | var cardUpper = card.toUpperCase(); |
1787 | if (cardUpper in dupeTracker) { | 1787 | if (cardUpper in dupeTracker) { |
1788 | dupes.push(card); | 1788 | dupes.push(card); |
@@ -1898,6 +1898,7 @@ | |||
1898 | || (name == "ESN - Ethersocial Network") | 1898 | || (name == "ESN - Ethersocial Network") |
1899 | || (name == "VET - VeChain") | 1899 | || (name == "VET - VeChain") |
1900 | || (name == "ERE - EtherCore") | 1900 | || (name == "ERE - EtherCore") |
1901 | || (name == "BSC - Binance Smart Chain") | ||
1901 | } | 1902 | } |
1902 | 1903 | ||
1903 | function networkIsRsk() { | 1904 | function networkIsRsk() { |
@@ -2244,6 +2245,13 @@ | |||
2244 | }, | 2245 | }, |
2245 | }, | 2246 | }, |
2246 | { | 2247 | { |
2248 | name: "BSC - Binance Smart Chain", | ||
2249 | onSelect: function() { | ||
2250 | network = libs.bitcoin.networks.bitcoin; | ||
2251 | setHdCoin(60); | ||
2252 | }, | ||
2253 | }, | ||
2254 | { | ||
2247 | name: "BSV - BitcoinSV", | 2255 | name: "BSV - BitcoinSV", |
2248 | onSelect: function() { | 2256 | onSelect: function() { |
2249 | network = libs.bitcoin.networks.bitcoinsv; | 2257 | network = libs.bitcoin.networks.bitcoinsv; |
diff --git a/tests/spec/tests.js b/tests/spec/tests.js index d73f17d..8b3b07b 100644 --- a/tests/spec/tests.js +++ b/tests/spec/tests.js | |||
@@ -2275,6 +2275,16 @@ it('Allows selection of Scribe', function(done) { | |||
2275 | }; | 2275 | }; |
2276 | testNetwork(done, params); | 2276 | testNetwork(done, params); |
2277 | }); | 2277 | }); |
2278 | it('Allows selection of Binance Smart Chain', function(done) { | ||
2279 | var params = { | ||
2280 | selectText: "BSC - Binance Smart Chain", | ||
2281 | phrase: "abandon abandon ability", | ||
2282 | firstAddress: "0xe5815d5902Ad612d49283DEdEc02100Bd44C2772", | ||
2283 | firstPubKey: "0x03e723e5b3aa7d72213f01139aa4783e1b34f74e1a04534e3fd8e29bfe2768af8a", | ||
2284 | firstPrivKey: "0x8f253078b73d7498302bb78c171b23ce7a8fb511987d2b2702b731638a4a15e7", | ||
2285 | }; | ||
2286 | testNetwork(done, params); | ||
2287 | }); | ||
2278 | 2288 | ||
2279 | it('Allows selection of TRX on Tron', function(done) { | 2289 | it('Allows selection of TRX on Tron', function(done) { |
2280 | var params = { | 2290 | var params = { |
@@ -3131,7 +3141,7 @@ it("Shows the number of bits of entropy for 4 bits of binary", function(done) { | |||
3131 | testEntropyBits(done, "0000", "4"); | 3141 | testEntropyBits(done, "0000", "4"); |
3132 | }); | 3142 | }); |
3133 | it("Shows the number of bits of entropy for 1 character of base 6 (dice)", function(done) { | 3143 | it("Shows the number of bits of entropy for 1 character of base 6 (dice)", function(done) { |
3134 | // 6 in card is 0 in base 6, 0 in base 6 is 2.6 bits (rounded down to 2 bits) | 3144 | // 6 in card is 0 in base 6, 0 is mapped to 00 by entropy.js |
3135 | testEntropyBits(done, "6", "2"); | 3145 | testEntropyBits(done, "6", "2"); |
3136 | }); | 3146 | }); |
3137 | it("Shows the number of bits of entropy for 1 character of base 10 with 3 bits", function(done) { | 3147 | it("Shows the number of bits of entropy for 1 character of base 10 with 3 bits", function(done) { |
@@ -3139,13 +3149,15 @@ it("Shows the number of bits of entropy for 1 character of base 10 with 3 bits", | |||
3139 | testEntropyBits(done, "7", "3"); | 3149 | testEntropyBits(done, "7", "3"); |
3140 | }); | 3150 | }); |
3141 | it("Shows the number of bits of entropy for 1 character of base 10 with 4 bis", function(done) { | 3151 | it("Shows the number of bits of entropy for 1 character of base 10 with 4 bis", function(done) { |
3142 | testEntropyBits(done, "8", "4"); | 3152 | // 8 in base 10 is mapped to 0 by entropy.js |
3153 | testEntropyBits(done, "8", "1"); | ||
3143 | }); | 3154 | }); |
3144 | it("Shows the number of bits of entropy for 1 character of hex", function(done) { | 3155 | it("Shows the number of bits of entropy for 1 character of hex", function(done) { |
3145 | testEntropyBits(done, "F", "4"); | 3156 | testEntropyBits(done, "F", "4"); |
3146 | }); | 3157 | }); |
3147 | it("Shows the number of bits of entropy for 2 characters of base 10", function(done) { | 3158 | it("Shows the number of bits of entropy for 2 characters of base 10", function(done) { |
3148 | testEntropyBits(done, "29", "6"); | 3159 | // 2 as base 10 is binary 010, 9 is mapped to binary 1 by entropy.js |
3160 | testEntropyBits(done, "29", "4"); | ||
3149 | }); | 3161 | }); |
3150 | it("Shows the number of bits of entropy for 2 characters of hex", function(done) { | 3162 | it("Shows the number of bits of entropy for 2 characters of hex", function(done) { |
3151 | testEntropyBits(done, "0A", "8"); | 3163 | testEntropyBits(done, "0A", "8"); |
@@ -3170,17 +3182,17 @@ it("Shows the number of bits of entropy for 4 characters of hex with leading zer | |||
3170 | testEntropyBits(done, "000A", "16"); | 3182 | testEntropyBits(done, "000A", "16"); |
3171 | }); | 3183 | }); |
3172 | it("Shows the number of bits of entropy for 4 characters of base 6", function(done) { | 3184 | it("Shows the number of bits of entropy for 4 characters of base 6", function(done) { |
3173 | testEntropyBits(done, "5555", "11"); | 3185 | // 5 in base 6 is mapped to binary 1 |
3186 | testEntropyBits(done, "5555", "4"); | ||
3174 | }); | 3187 | }); |
3175 | it("Shows the number of bits of entropy for 4 characters of base 6 dice", function(done) { | 3188 | it("Shows the number of bits of entropy for 4 characters of base 6 dice", function(done) { |
3176 | // uses dice, so entropy is actually 0000 in base 6, which is 4 lots of | 3189 | // uses dice, so entropy is actually 0000 in base 6, which is 4 lots of |
3177 | // 2.58 bits, which is 10.32 bits (rounded down to 10 bits) | 3190 | // binary 00 |
3178 | testEntropyBits(done, "6666", "10"); | 3191 | testEntropyBits(done, "6666", "8"); |
3179 | }); | 3192 | }); |
3180 | it("Shows the number of bits of entropy for 4 charactes of base 10", function(done) { | 3193 | it("Shows the number of bits of entropy for 4 charactes of base 10", function(done) { |
3181 | // Uses base 10, which is 4 lots of 3.32 bits, which is 13.3 bits (rounded | 3194 | // 2 in base 10 is binary 010 and 7 is binary 111 so is 4 events of 3 bits |
3182 | // down to 13) | 3195 | testEntropyBits(done, "2227", "12"); |
3183 | testEntropyBits(done, "2227", "13"); | ||
3184 | }); | 3196 | }); |
3185 | it("Shows the number of bits of entropy for 4 characters of hex with 2 leading zeros", function(done) { | 3197 | it("Shows the number of bits of entropy for 4 characters of hex with 2 leading zeros", function(done) { |
3186 | testEntropyBits(done, "222F", "16"); | 3198 | testEntropyBits(done, "222F", "16"); |
@@ -3189,13 +3201,16 @@ it("Shows the number of bits of entropy for 4 characters of hex starting with F" | |||
3189 | testEntropyBits(done, "FFFF", "16"); | 3201 | testEntropyBits(done, "FFFF", "16"); |
3190 | }); | 3202 | }); |
3191 | it("Shows the number of bits of entropy for 10 characters of base 10", function(done) { | 3203 | it("Shows the number of bits of entropy for 10 characters of base 10", function(done) { |
3192 | // 10 events at 3.32 bits per event | 3204 | // 10 events with 3 bits for each event |
3193 | testEntropyBits(done, "0000101017", "33"); | 3205 | testEntropyBits(done, "0000101017", "30"); |
3206 | }); | ||
3207 | it("Shows the number of bits of entropy for 10 characters of base 10 account for bias", function(done) { | ||
3208 | // 9 events with 3 bits per event and 1 event with 1 bit per event | ||
3209 | testEntropyBits(done, "0000101018", "28"); | ||
3194 | }); | 3210 | }); |
3195 | it("Shows the number of bits of entropy for a full deck of cards", function(done) { | 3211 | it("Shows the number of bits of entropy for a full deck of cards", function(done) { |
3196 | // cards are not replaced, so a full deck is not 52^52 entropy which is 296 | 3212 | // removing bias is 32*5 + 16*4 + 4*2 |
3197 | // bits, it's 52!, which is 225 bits | 3213 | testEntropyBits(done, "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks", "232"); |
3198 | testEntropyBits(done, "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks", "225"); | ||
3199 | }); | 3214 | }); |
3200 | 3215 | ||
3201 | it("Shows details about the entered entropy", function(done) { | 3216 | it("Shows details about the entered entropy", function(done) { |
@@ -3321,7 +3336,7 @@ it("Shows details about the entered entropy", function(done) { | |||
3321 | entropy: "7d", | 3336 | entropy: "7d", |
3322 | type: "card", | 3337 | type: "card", |
3323 | events: "1", | 3338 | events: "1", |
3324 | bits: "4", | 3339 | bits: "5", |
3325 | words: 0, | 3340 | words: 0, |
3326 | strength: "less than a second", | 3341 | strength: "less than a second", |
3327 | } | 3342 | } |
@@ -3333,7 +3348,7 @@ it("Shows details about the entered entropy", function(done) { | |||
3333 | entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks", | 3348 | entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks", |
3334 | type: "card (full deck)", | 3349 | type: "card (full deck)", |
3335 | events: "52", | 3350 | events: "52", |
3336 | bits: "225", | 3351 | bits: "232", |
3337 | words: 21, | 3352 | words: 21, |
3338 | strength: "centuries", | 3353 | strength: "centuries", |
3339 | } | 3354 | } |
@@ -3345,7 +3360,7 @@ it("Shows details about the entered entropy", function(done) { | |||
3345 | entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks3d", | 3360 | entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks3d", |
3346 | type: "card (full deck, 1 duplicate: 3d)", | 3361 | type: "card (full deck, 1 duplicate: 3d)", |
3347 | events: "53", | 3362 | events: "53", |
3348 | bits: "254", | 3363 | bits: "237", |
3349 | words: 21, | 3364 | words: 21, |
3350 | strength: "centuries", | 3365 | strength: "centuries", |
3351 | } | 3366 | } |
@@ -3357,7 +3372,7 @@ it("Shows details about the entered entropy", function(done) { | |||
3357 | entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqs3d4d", | 3372 | entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqs3d4d", |
3358 | type: "card (2 duplicates: 3d 4d, 1 missing: KS)", | 3373 | type: "card (2 duplicates: 3d 4d, 1 missing: KS)", |
3359 | events: "53", | 3374 | events: "53", |
3360 | bits: "254", | 3375 | bits: "240", |
3361 | words: 21, | 3376 | words: 21, |
3362 | strength: "centuries", | 3377 | strength: "centuries", |
3363 | } | 3378 | } |
@@ -3369,8 +3384,8 @@ it("Shows details about the entered entropy", function(done) { | |||
3369 | entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqs3d4d5d6d", | 3384 | entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqs3d4d5d6d", |
3370 | type: "card (4 duplicates: 3d 4d 5d..., 1 missing: KS)", | 3385 | type: "card (4 duplicates: 3d 4d 5d..., 1 missing: KS)", |
3371 | events: "55", | 3386 | events: "55", |
3372 | bits: "264", | 3387 | bits: "250", |
3373 | words: 24, | 3388 | words: 21, |
3374 | strength: "centuries", | 3389 | strength: "centuries", |
3375 | } | 3390 | } |
3376 | ); | 3391 | ); |
@@ -3378,13 +3393,12 @@ it("Shows details about the entered entropy", function(done) { | |||
3378 | it("Shows details about the entered entropy", function(done) { | 3393 | it("Shows details about the entered entropy", function(done) { |
3379 | testEntropyFeedback(done, | 3394 | testEntropyFeedback(done, |
3380 | // Next test was throwing uncaught error in zxcvbn | 3395 | // Next test was throwing uncaught error in zxcvbn |
3381 | // Also tests 451 bits, ie Math.log2(52!)*2 = 225.58 * 2 | ||
3382 | { | 3396 | { |
3383 | entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsksac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks", | 3397 | entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsksac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks", |
3384 | type: "card (full deck, 52 duplicates: ac 2c 3c...)", | 3398 | type: "card (full deck, 52 duplicates: ac 2c 3c...)", |
3385 | events: "104", | 3399 | events: "104", |
3386 | bits: "499", | 3400 | bits: "464", |
3387 | words: 45, | 3401 | words: 42, |
3388 | strength: "centuries", | 3402 | strength: "centuries", |
3389 | } | 3403 | } |
3390 | ); | 3404 | ); |
@@ -3396,7 +3410,7 @@ it("Shows details about the entered entropy", function(done) { | |||
3396 | entropy: "asAS", | 3410 | entropy: "asAS", |
3397 | type: "card (1 duplicate: AS)", | 3411 | type: "card (1 duplicate: AS)", |
3398 | events: "2", | 3412 | events: "2", |
3399 | bits: "9", | 3413 | bits: "8", |
3400 | words: 0, | 3414 | words: 0, |
3401 | strength: "less than a second", | 3415 | strength: "less than a second", |
3402 | } | 3416 | } |
@@ -3408,7 +3422,7 @@ it("Shows details about the entered entropy", function(done) { | |||
3408 | entropy: "ASas", | 3422 | entropy: "ASas", |
3409 | type: "card (1 duplicate: as)", | 3423 | type: "card (1 duplicate: as)", |
3410 | events: "2", | 3424 | events: "2", |
3411 | bits: "9", | 3425 | bits: "8", |
3412 | words: 0, | 3426 | words: 0, |
3413 | strength: "less than a second", | 3427 | strength: "less than a second", |
3414 | } | 3428 | } |
@@ -3421,8 +3435,8 @@ it("Shows details about the entered entropy", function(done) { | |||
3421 | entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks", | 3435 | entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks", |
3422 | type: "card (1 missing: 9C)", | 3436 | type: "card (1 missing: 9C)", |
3423 | events: "51", | 3437 | events: "51", |
3424 | bits: "221", | 3438 | bits: "227", |
3425 | words: 18, | 3439 | words: 21, |
3426 | strength: "centuries", | 3440 | strength: "centuries", |
3427 | } | 3441 | } |
3428 | ); | 3442 | ); |
@@ -3433,7 +3447,7 @@ it("Shows details about the entered entropy", function(done) { | |||
3433 | entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d 6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks", | 3447 | entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d 6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks", |
3434 | type: "card (2 missing: 9C 5D)", | 3448 | type: "card (2 missing: 9C 5D)", |
3435 | events: "50", | 3449 | events: "50", |
3436 | bits: "216", | 3450 | bits: "222", |
3437 | words: 18, | 3451 | words: 18, |
3438 | strength: "centuries", | 3452 | strength: "centuries", |
3439 | } | 3453 | } |
@@ -3445,7 +3459,7 @@ it("Shows details about the entered entropy", function(done) { | |||
3445 | entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d 6d7d8d9dtdjd kdah2h3h 5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks", | 3459 | entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d 6d7d8d9dtdjd kdah2h3h 5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks", |
3446 | type: "card (4 missing: 9C 5D QD...)", | 3460 | type: "card (4 missing: 9C 5D QD...)", |
3447 | events: "48", | 3461 | events: "48", |
3448 | bits: "208", | 3462 | bits: "212", |
3449 | words: 18, | 3463 | words: 18, |
3450 | strength: "centuries", | 3464 | strength: "centuries", |
3451 | } | 3465 | } |
@@ -3458,20 +3472,21 @@ it("Shows details about the entered entropy", function(done) { | |||
3458 | entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d 6d 8d9d jd kdah2h3h 5h6h7h8h9hthjhqhkh 2s3s4s5s6s7s8s9stsjsqsks", | 3472 | entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d 6d 8d9d jd kdah2h3h 5h6h7h8h9hthjhqhkh 2s3s4s5s6s7s8s9stsjsqsks", |
3459 | type: "card", | 3473 | type: "card", |
3460 | events: "45", | 3474 | events: "45", |
3461 | bits: "195", | 3475 | bits: "198", |
3462 | words: 18, | 3476 | words: 18, |
3463 | strength: "centuries", | 3477 | strength: "centuries", |
3464 | } | 3478 | } |
3465 | ); | 3479 | ); |
3466 | }); | 3480 | }); |
3467 | it("Shows details about the entered entropy", function(done) { | 3481 | it("Shows details about the entered entropy", function(done) { |
3482 | // multiple decks does not affect the bits per event | ||
3483 | // since the bits are hardcoded in entropy.js | ||
3468 | testEntropyFeedback(done, | 3484 | testEntropyFeedback(done, |
3469 | // Multiple decks of cards increases bits per event | ||
3470 | { | 3485 | { |
3471 | entropy: "3d", | 3486 | entropy: "3d", |
3472 | events: "1", | 3487 | events: "1", |
3473 | bits: "4", | 3488 | bits: "5", |
3474 | bitsPerEvent: "4.34", | 3489 | bitsPerEvent: "4.46", |
3475 | } | 3490 | } |
3476 | ); | 3491 | ); |
3477 | }); | 3492 | }); |
@@ -3480,8 +3495,8 @@ it("Shows details about the entered entropy", function(done) { | |||
3480 | { | 3495 | { |
3481 | entropy: "3d3d", | 3496 | entropy: "3d3d", |
3482 | events: "2", | 3497 | events: "2", |
3483 | bits: "9", | 3498 | bits: "10", |
3484 | bitsPerEvent: "4.80", | 3499 | bitsPerEvent: "4.46", |
3485 | } | 3500 | } |
3486 | ); | 3501 | ); |
3487 | }); | 3502 | }); |
@@ -3491,7 +3506,7 @@ it("Shows details about the entered entropy", function(done) { | |||
3491 | entropy: "3d3d3d", | 3506 | entropy: "3d3d3d", |
3492 | events: "3", | 3507 | events: "3", |
3493 | bits: "15", | 3508 | bits: "15", |
3494 | bitsPerEvent: "5.01", | 3509 | bitsPerEvent: "4.46", |
3495 | } | 3510 | } |
3496 | ); | 3511 | ); |
3497 | }); | 3512 | }); |
@@ -3501,7 +3516,7 @@ it("Shows details about the entered entropy", function(done) { | |||
3501 | entropy: "3d3d3d3d", | 3516 | entropy: "3d3d3d3d", |
3502 | events: "4", | 3517 | events: "4", |
3503 | bits: "20", | 3518 | bits: "20", |
3504 | bitsPerEvent: "5.14", | 3519 | bitsPerEvent: "4.46", |
3505 | } | 3520 | } |
3506 | ); | 3521 | ); |
3507 | }); | 3522 | }); |
@@ -3510,8 +3525,8 @@ it("Shows details about the entered entropy", function(done) { | |||
3510 | { | 3525 | { |
3511 | entropy: "3d3d3d3d3d", | 3526 | entropy: "3d3d3d3d3d", |
3512 | events: "5", | 3527 | events: "5", |
3513 | bits: "26", | 3528 | bits: "25", |
3514 | bitsPerEvent: "5.22", | 3529 | bitsPerEvent: "4.46", |
3515 | } | 3530 | } |
3516 | ); | 3531 | ); |
3517 | }); | 3532 | }); |
@@ -3520,8 +3535,8 @@ it("Shows details about the entered entropy", function(done) { | |||
3520 | { | 3535 | { |
3521 | entropy: "3d3d3d3d3d3d", | 3536 | entropy: "3d3d3d3d3d3d", |
3522 | events: "6", | 3537 | events: "6", |
3523 | bits: "31", | 3538 | bits: "30", |
3524 | bitsPerEvent: "5.28", | 3539 | bitsPerEvent: "4.46", |
3525 | } | 3540 | } |
3526 | ); | 3541 | ); |
3527 | }); | 3542 | }); |
@@ -3530,8 +3545,8 @@ it("Shows details about the entered entropy", function(done) { | |||
3530 | { | 3545 | { |
3531 | entropy: "3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d", | 3546 | entropy: "3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d", |
3532 | events: "33", | 3547 | events: "33", |
3533 | bits: "184", | 3548 | bits: "165", |
3534 | bitsPerEvent: "5.59", | 3549 | bitsPerEvent: "4.46", |
3535 | strength: 'less than a second - Repeats like "abcabcabc" are only slightly harder to guess than "abc"', | 3550 | strength: 'less than a second - Repeats like "abcabcabc" are only slightly harder to guess than "abc"', |
3536 | } | 3551 | } |
3537 | ); | 3552 | ); |
@@ -3582,10 +3597,11 @@ it('Converts very long entropy to very long mnemonics', function(done) { | |||
3582 | // https://bip32jp.github.io/english/index.html | 3597 | // https://bip32jp.github.io/english/index.html |
3583 | // NOTES: | 3598 | // NOTES: |
3584 | // Is incompatible with: | 3599 | // Is incompatible with: |
3600 | // base 6 | ||
3585 | // base 20 | 3601 | // base 20 |
3586 | it('Is compatible with bip32jp.github.io', function(done) { | 3602 | it('Is compatible with bip32jp.github.io', function(done) { |
3587 | var entropy = "543210543210543210543210543210543210543210543210543210543210543210543210543210543210543210543210543"; | 3603 | var entropy = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"; |
3588 | var expectedPhrase = "train then jungle barely whip fiber purpose puppy eagle cloud clump hospital robot brave balcony utility detect estate old green desk skill multiply virus"; | 3604 | var expectedPhrase = "primary fetch primary fetch primary fetch primary fetch primary fetch primary fetch primary fetch primary fetch primary fetch primary fetch primary fetch primary foster"; |
3589 | driver.findElement(By.css('.use-entropy')) | 3605 | driver.findElement(By.css('.use-entropy')) |
3590 | .click(); | 3606 | .click(); |
3591 | driver.findElement(By.css('.entropy')) | 3607 | driver.findElement(By.css('.entropy')) |