From: Snapshot-Content-Location: http://localhost:8888/notebooks/Ex2-solucao.ipynb Subject: Ex2-solucao - Jupyter Notebook Date: Tue, 28 Jul 2020 12:07:39 -0000 MIME-Version: 1.0 Content-Type: multipart/related; type="text/html"; boundary="----MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj----" ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/html Content-ID: Content-Transfer-Encoding: quoted-printable Content-Location: http://localhost:8888/notebooks/Ex2-solucao.ipynb =20 Ex2-solucao - Jupyter Notebook =20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20
=20 Ex2-solucao L= ast Checkpoint: a few seconds ago (autosaved) =20 =20 3D"Current =20 =20 =20 =20 =20 =20
=20

Python 3

Trust= ed
Run
=
 
# Solu=C3=A7=C3=A3o do Execicio 2
<= /div>
<= /div>

Solu=C3=A7=C3=A3o do Execicio 2=C2=B6

=
 
Import e leitura
=

Import e leitura

In [1]:
=
x=
xxxxxxxxx
 
import numpy as np
import<=
/span> pandas as pd
from sklearn.preprocessing=
 import StandardScaler
from sklea=
rn.model_selection import KFold, RandomizedSearchCV
from sklearn.linear_model<=
/span> import LinearRegression, Ridge
from=
 sklearn.metrics import mean_squared_error
np.set_printoptions(precision=
=3D3)
. . .
=
In [2]:
=
=
xxxxxxxxxx
 
def se=
mbusca(est):
    kf <=
span class=3D"cm-operator">=3D KFold()
    soma =3D 0.0
    for train_index, test_index in kf.split(X,y):
        X_train, X_test =3D X[train_index,:], X[te=
st_index,:]
    =
    y_train, y_test =3D y[train_index], y[test_index]
        modelo =3D est.fit(X_train,y_train)
        yout =3D modelo.predict(X_test)
        soma +=3D mean_squar=
ed_error(y_test,yout,squared=3DFalse)=
=E2=80=8B<=
/span>
<=
span role=3D"presentation" style=3D"padding-right: 0.1px;">    res =3D soma/5
    return res
. . .
In [3]:
=
xxxxxxxxxx
<= div class=3D"CodeMirror-cursors">
 
tabela =3D {}
dat =3D pd.read_csv('https://archive.ics.uci.edu/ml/machine-learn=
ing-databases/00514/Bias_correction_ucl.csv')
print(dat.shape)=
dat =3D dat.dropna()
print(dat.sh=
ape)
dat
(7752, 25)
(7588, 25)
<= /div>
Out[3]:
station Date Present_Tmax Present_Tmin LDAPS_RHmin LDAPS_RHmax LDAPS_Tmax_lapse LDAPS_Tmin_lapse LDAPS_WS LDAPS_LH ... LDAPS_PPT2 LDAPS_PPT3 LDAPS_PPT4 lat lon DEM Slope Solar radiation Next_Tmax Next_Tmin
0 1.0 2013-06-30 28.7 21.4 58.255688 91.116364 28.074101 23.006936 6.818887 69.451805 ... 0.0 0.0 0.0 37.6046 126.991 212.3350 2.7850 5992.895996 29.1 21.2
1 2.0 2013-06-30 31.9 21.6 52.263397 90.604721 29.850689 24.035009 5.691890 51.937448 ... 0.0 0.0 0.0 37.6046 127.032 44.7624 0.5141 5869.312500 30.5 22.5
2 3.0 2013-06-30 31.6 23.3 48.690479 83.973587 30.091292 24.565633 6.138224 20.573050 ... 0.0 0.0 0.0 37.5776 127.058 33.3068 0.2661 5863.555664 31.1 23.9
3 4.0 2013-06-30 32.0 23.4 58.239788 96.483688 29.704629 23.326177 5.650050 65.727144 ... 0.0 0.0 0.0 37.6450 127.022 45.7160 2.5348 5856.964844 31.7 24.3
4 5.0 2013-06-30 31.4 21.9 56.174095 90.155128 29.113934 23.486480 5.735004 107.965535 ... 0.0 0.0 0.0 37.5507 127.135 35.0380 0.5055 5859.552246 31.2 22.5
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
7745 21.0 2017-08-30 23.1 17.8 24.688997 78.261383 27.812697 18.303014 6.603253 9.614074 ... 0.0 0.0 0.0 37.5507 127.040 26.2980 0.5721 4456.024414 27.6 17.7
7746 22.0 2017-08-30 22.5 17.4 30.094858 83.690018 26.704905 17.814038 5.768083 82.146707 ... 0.0 0.0 0.0 37.5102 127.086 21.9668 0.1332 4441.803711 28.0 17.1
7747 23.0 2017-08-30 23.3 17.1 26.741310 78.869858 26.352081 18.775678 6.148918 72.058294 ... 0.0 0.0 0.0 37.5372 126.891 15.5876 0.1554 4443.313965 28.3 18.1
7748 24.0 2017-08-30 23.3 17.7 24.040634 77.294975 27.010193 18.733519 6.542819 47.241457 ... 0.0 0.0 0.0 37.5237 126.909 17.2956 0.2223 4438.373535 28.6 18.8
7749 25.0 2017-08-30 23.2 17.4 22.933014 77.243744 27.939516 18.522965 7.289264 9.090034 ... 0.0 0.0 0.0 37.5237 126.970 19.5844 0.2713 4451.345215 27.8 17.4

7588 rows =C3=97 25 columns

. . .
In [4]:
xxxxxxxxx=
x
=  
y =3D dat= ['Next_Tmax'].= to_numpy()
X =3D dat.drop(=
['Next_Tmin','Da=
te'], axis=3D1).to_numpy()
=
. . .
 
Eu nao vejo uma boa razao para NAO=
 usar sempre (ou quase sempre) o centering e scaling.

E= u nao vejo uma boa razao para NAO usar sempre (ou quase sempre) o centering= e scaling.

In [5]:
=
=
xx=
xxxxxxxx
 
X =3D Sta=
ndardScaler().fit_transform(X)
=
=
. . .
=
=
xx=
xxxxxxxx
 
res<=
/span> =3D s=
embusca(LinearRegression())
    
tabela['reglinear'] =3D<=
/span> (res,=
res)
print('RMSE: {:.3} Default=
:{:.3}'.format(res,res))
<= /div>
=
RMSE: 4.38e-15 Default:4.3=
8e-15
. . .
 
## Regress=
=C3=A3o linear com regulariza=C3=A7=C3=A3o L2

Regress=C3=A3o l= inear com regulariza=C3=A7=C3=A3o L2=C2=B6

In [7]:
=
xxxxxxxxxx
=
 
import random
random.seed(42)
=
melhor =3D np.Inf=
=
for volta in range(10):
    alfa =3D 10**random.uniform(-3.0,3.0)
    res =3D sembus=
ca(Ridge(alpha=3Dalfa))
  =
  
    if res < melhor:<=
/pre>
        melhor =3D res
=
=E2=80=8B
z =3D sembusca(Ridge())        
        
tabela['reglinea=
rL2'] =3D (melhor,z)
print(=
'RMSE: {:.3} Default:{:.3}'.format(melhor,z))
RMSE: 1.72e-06 Default:0.00121
. . .
 
## Regress=
ao linear com L1

Regressao linear com L1=C2=B6

=
 
Vamos usar o [RandomizedSearchCV](https://s=
cikit-learn.org/stable/modules/generated/sklearn.model_selection.Randomized=
SearchCV.html#sklearn.model_selection.RandomizedSearchCV) em vez de =
fazer o loop diretamente
=E2=80=8B
Este codigo =C3=A9 meio chato pois a distribui=C3=A7ao de p=
robabilidade do parametro alpha =C3=A9 uniforme no exponente. O que signifi=
ca que a distribio=C3=A7ao do parametro =C3=A9 [log=
uniform](https://docs.scipy.org/doc=
/scipy/reference/generated/scipy.stats.loguniform.html#scipy.stats.logunifo=
rm). Neste caso voce da o menor valor e o maior valor (como se fosse=
 uma distribui=C3=A7ao uniforme). 

Vamos usar o RandomizedSearchCV em vez de fazer o loop diretamente

Este codigo =C3=A9 meio chato pois a distribui=C3=A7ao de probabilidade = do parametro alpha =C3=A9 uniforme no exponente. O que significa que a dist= ribio=C3=A7ao do parametro =C3=A9 loguniform. Neste caso voce da o menor valor e o maio= r valor (como se fosse uma distribui=C3=A7ao uniforme).

In [8]:
=
=
xx=
xxxxxxxx
 
from<=
/span> sklearn.model_selection import RandomizedSearchCV
from sklearn.linear_model import L=
asso
from scipy.stats import=
 loguniform
from math import sqrt
. . .
= In [9]:
xxxxxxxxx=
x
=  
=
est=3D Lasso()
=E2=80=8B
pardistr =3D dict(alpha =3D loguniform(10**(-3.0),10**3.0))
=E2=80=8B
rcv =3D RandomizedSearchCV(est=
,param_distributions=3Dpardistr,n_iter=3D10,cv=3D5,scoring =3D 'neg_root_mean_squared_error', 
random_state=3D<= span class=3D"cm-number">42)
res =3D rcv.fit(X,y)
=E2=80=8B
melhor =3D -res.best_score_
<= pre class=3D" CodeMirror-line " role=3D"presentation">=E2=80=8B<= /span>
z =3D sembusca(est)      <=
/pre>
=E2=80=8B
tabela['reglinearL1'] =3D (melhor,z)
print('RMSE: {:.3} Default:{:.3}'.f=
ormat(melhor,z))
RMSE: 0.00227 Default:1.02
. . .
 
## SVMLine=
ar

SVMLinear=C2=B6

In [10]:
xxxxxxxxxx
 
from sklearn=
.svm import LinearSVR
=E2=80=8B
est<=
/span> =3D L=
inearSVR()
=E2=80=8B
pardistr =3D dict(C =3D loguniform(2**(-5.0),2**15.0), epsilon=3D[0.1,0.3])
=E2=80=8B
rcv =3D RandomizedSearchCV(est,param_distributions=3Dpardistr,n_iter=3D10,cv=3D5,scoring =3D 'neg_root_mean_squared_error', 
random_state=3D<= span class=3D"cm-number">42)
res =3D rcv.fit(X,y)
=E2=80=8B
melhor =3D -res.best_score_
<= pre class=3D" CodeMirror-line " role=3D"presentation">=E2=80=8B<= /span>
z =3D sembusca(est)      <=
/pre>
=E2=80=8B
tabela['linearSVM'] =3D (melhor,z)
print('RMSE: {:.3} Default:{:.3}'.for=
mat(melhor,z))
=E2=80=8B
<= div class=3D"output_wrapper">
RMSE: 0.1 Default:6.23e-12
. . .
 
## SVM

SVM=C2=B6

In [11]:
xxxxxxxxxx
 
from sklearn=
.svm import SVR
=E2=80=8B
est <=
span class=3D"cm-operator">=3D SVR(kernel=3D<=
/span>'rbf')
=E2=80=8B
pardistr =3D dict= (C = =3D loguniform(2**(-5.0),2**= 15.0), epsilon=3D[0.1,0.3],gamma=3Dloguniform(2**(-9),2**3))
<=
span cm-text=3D"">=E2=80=8B
rcv =3D RandomizedSearchCV(est,param_distribu=
tions=3Dpardistr,n_iter=3D10,cv=3D5,scoring =3D 'neg_root_mean_square=
d_error', 
     =
                    random_state=3D42)
res=
 =3D =
rcv.fit(X,y)
=E2=80=8B
=
melhor<=
/span> =3D -=
res.b=
est_score_
=E2=80=8B
z =
=3D sembusca(est)      
=E2=80=8B
tabela['SVM'] =3D (melhor,z)=
pr=
int('RMSE: {:.3} Default:{:.3}'.format(melhor,z))
=E2=80=8B
RMSE: 0.122 Default:0.558
. . .
 
## KNN

KNN=C2=B6

In [12]:
x
from sklearn.neighbors import KNeighborsRegressor
from scipy.stats import randint<=
/span>
<=
span role=3D"presentation" style=3D"padding-right: 0.1px;">=E2=80=8B
est =3D =
KNeighborsRegressor()
=E2=80=8B
=
pardistr =3D dict(n_neighbors =3D randint(1,1000))
=E2=80=
=8B
rcv =3D RandomizedSearchCV(e=
st,param_distributions=3Dpardistr,n_iter=3D=
10,cv=3D5,scoring =3D 'neg_root_mean_squared_error', <=
/pre>
                         random_state=3D42)
res =3D rcv.fit(X,y)
=E2=80=8B
melhor =3D -res.best_score_
=E2=80=8B=
=
z =3D sembusca(est)      =
=E2=
=80=8B
tabela['KNN'] =3D (melhor,z)
print('RMSE: {:.3} Default:{:.3}'.f=
ormat(melhor,z))
=E2=80=8B
<= div style=3D"position: absolute; height: 30px; width: 1px; border-bottom: 0= px solid transparent; top: 317px;">
RMSE: 1.4 Default:1.42
. . .
 
## MLP

MLP=C2=B6

In [13]:
xxxxxxxxxx
 
from sklearn=
.neural_network import MLPRegressor
from sklearn.model_selection import GridSearchCV
=E2=80=8B
est =3D MLPRegressor(max_iter=3D400,random_state=3D42)
=E2=80=8B
pardistr =3D dict(hidden_layer_sizes =3D=
 list(map(lambda x: (x,), =
range(5,2=
1,3))))
=E2=80=8B
=
rcv =3D Grid=
SearchCV(est,param_grid=3Dpardistr,cv=3D5,scoring =3D =
'neg_root_mean_squared_error')
=E2=80=8B
res =3D rcv.fit(X,y)
=E2=80=8B
melhor =3D -res.best_score_
=E2=80=8B
z =3D sembusca(est)      
=E2=80=8B
tabela['MLP'] =3D (<=
span class=3D"cm-variable">melhor,z)
print('RMSE: {:.3} Default:{:.3}'<=
/span>.format(melhor,z))
=E2=80=8B<=
/pre>
/opt/miniconda3/lib=
/python3.7/site-packages/sklearn/neural_network/_multilayer_perceptron.py:5=
85: ConvergenceWarning: Stochastic Optimizer: Maximum iterations (400) reac=
hed and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
/opt/miniconda3/lib/python3.7/site-packages/sklearn/neural_network/_multila=
yer_perceptron.py:585: ConvergenceWarning: Stochastic Optimizer: Maximum it=
erations (400) reached and the optimization hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
<= /div>
RMSE: 0.18 Default:0.358
<= /div>
/opt/miniconda3/lib/python3.7/site-package=
s/sklearn/neural_network/_multilayer_perceptron.py:585: ConvergenceWarning:=
 Stochastic Optimizer: Maximum iterations (400) reached and the optimizatio=
n hasn't converged yet.
  % self.max_iter, ConvergenceWarning)
. . .
 
## Arvore =
de decis=C3=A3o

A= rvore de decis=C3=A3o=C2=B6

In [14]:
xxxxxxxxxx
 
from sklearn=
.tree import<=
/span> DecisionTreeRegressor
from scipy.s=
tats import uniform
=E2=80=8B
est =3D DecisionTreeRegressor()
=E2=80=
=8B
pardistr =3D dict(ccp_alpha =3D un=
iform(0,0=
.04))
=E2=80=8B
rcv =3D RandomizedSearchCV(est,param_distributions=3Dpardis=
tr,n_iter=3D10,cv=3D5,scoring =3D 'neg_root_mean_squared_error', 
<=
span role=3D"presentation" style=3D"padding-right: 0.1px;">                =
         random_state=3D42)
res =3D rcv.=
fit(X=
,y)
=E2=80=8B
melhor =3D -res.best_score_=
=
=E2=80=8B
=
z =3D=
 sembusca(es=
t)      
=E2=80=8B
tabela['=
Arvore'] =3D (melhor,z)
print('RMSE: {:.3} Default:{:.3}'.format(melhor,z))
=E2=80=8B
<= /div>
RMSE: 0.177 Default:0.0296
. . .
 
## Random =
Forest

Random Forest=C2=B6

In [15]:
xxxxxxxxxx
 
from sklearn=
.ensemble imp=
ort RandomForestRegressor<=
/pre>
=E2=80=8B
est =3D RandomForestRegressor(rand=
om_state=3D42)
=E2=80=8B
pardistr =3D dict(n_estimators=3D[10,100,1000],max_features=
=3D[5, =
10, 22])<=
/span>
=E2=
=80=8B
rcv =3D GridSearchCV(est,param_grid=3Dpardistr,cv=3D5,scoring =3D 'neg_root_mean_squared_e=
rror')
=E2=80=8B
res =3D<=
/span> rcv.f=
it(X,=
y)
=E2=80=8B
=
melhor =3D -res.best_score_
=E2=80=8B
z =3D sem=
busca(est)      
=E2=80=8B
tabela['RF'] =3D (melhor,z)
print('RMSE=
: {:.3} Default:{:.3}'.format(melhor,z=
))
=
=E2=80=8B
<= /div>
=
RMSE: 0.03 Default:0.0281
. . .
 
## GBM

GBM=C2=B6

In [17]:
x
 
from sklearn.ensemble =
import GradientBoostingRegressor<=
/span>
=E2=
=80=8B
est =3D GradientBoostingRegressor(random_state=3D42
                               )
pardistr =3D dict(n_estimators=3Drandint(5,100), learning_r=
ate=3Duniform(0.01,0.3),max_depth=3D[2,3])
<=
span cm-text=3D"">=E2=80=8B
rcv =3D RandomizedSearchCV(est,param_distribu=
tions=3Dpardistr,n_iter=3D10,cv=3D5,scoring =3D 'neg_root_mean_square=
d_error', 
     =
                    random_state=3D42)
res=
 =3D =
rcv.fit(X,y)
=E2=80=8B
=
melhor<=
/span> =3D -=
res.b=
est_score_
=E2=80=8B
z =
=3D sembusca(est)      
=E2=80=8B
tabela['GBM'] =3D (melhor=
,z)
<=
span class=3D"cm-builtin">print('RMSE: {:.=
3} Default:{:.3}'.format(melhor,z))
=E2=80=
=8B
=E2=80=8B
=E2=80=8B
=
<= div class=3D"prompt">
RMSE: 0.0663 Default:0.0348
. . .
In [ ]:
<= div class=3D"CodeMirror-cursor" style=3D"left: 4px; top: 0px; height: 17px;= "> 
=E2=80=8B
. . .
In [18]:
=
&nb= sp;
d=
f =3D pd.DataFrame(columns=3D["Algoritmo","RMSE",<=
span class=3D"cm-string">"Default"])
i=3D0
for alg,x in tabela.=
items():
    try:
        df.loc[i] =3D alg,x[0],x[1]
    except:
        df.loc[i] =3D alg,x,1000.0
   =
 i+=3D1
=E2=80=8B
=
=
. . .
In [19]:
 
p=
d.set_option('precision', 3)
<= pre class=3D" CodeMirror-line " role=3D"presentation">print(df)
     Algoritmo       RMSE    Default
0    reglinear  4.378e-15  4.378e-15
1  reglinearL2  1.718e-06  1.215e-03
2  reglinearL1  2.273e-03  1.019e+00
3    linearSVM  9.997e-02  6.229e-12
4          SVM  1.224e-01  5.583e-01
5          KNN  1.399e+00  1.415e+00
6          MLP  1.797e-01  3.577e-01
7       Arvore  1.771e-01  2.956e-02
8           RF  3.001e-02  2.812e-02
9          GBM  6.634e-02  3.480e-02
. . .
In [ ]:
 
=E2=80=8B
=
. . .
------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-0ee21d0b-580f-4eac-b8f8-5ec6ec7c8036@mhtml.blink @charset "utf-8"; .MathJax_Hover_Frame { border-radius: 0.25em; box-shadow: rgb(136, 51, 170)= 0px 0px 15px; display: inline-block; position: absolute; border: 1px solid= rgb(170, 102, 221) !important; } .MathJax_Menu_Button .MathJax_Hover_Arrow { position: absolute; cursor: poi= nter; display: inline-block; border: 2px solid rgb(170, 170, 170); border-r= adius: 4px; font-family: "Courier New", Courier; font-size: 9px; color: rgb= (240, 240, 240); } .MathJax_Menu_Button .MathJax_Hover_Arrow span { display: block; background= -color: rgb(170, 170, 170); border: 1px solid; border-radius: 3px; line-hei= ght: 0; padding: 4px; } .MathJax_Hover_Arrow:hover { color: white !important; border: 2px solid rgb= (204, 204, 204) !important; } .MathJax_Hover_Arrow:hover span { background-color: rgb(204, 204, 204) !imp= ortant; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-313a7131-9bbd-490a-8087-39b241af7456@mhtml.blink @charset "utf-8"; #MathJax_About { position: fixed; left: 50%; width: auto; text-align: cente= r; border: 3px outset; padding: 1em 2em; background-color: rgb(221, 221, 22= 1); color: black; cursor: default; font-family: message-box; font-size: 120= %; font-style: normal; text-indent: 0px; text-transform: none; line-height:= normal; letter-spacing: normal; word-spacing: normal; overflow-wrap: norma= l; white-space: nowrap; float: none; z-index: 201; border-radius: 15px; box= -shadow: rgb(128, 128, 128) 0px 10px 20px; } #MathJax_About.MathJax_MousePost { outline: none; } .MathJax_Menu { position: absolute; background-color: white; color: black; = width: auto; padding: 5px 0px; border: 1px solid rgb(204, 204, 204); margin= : 0px; cursor: default; font: 400 16px Arial; text-align: left; text-indent= : 0px; text-transform: none; letter-spacing: normal; word-spacing: normal; = overflow-wrap: normal; white-space: nowrap; float: none; z-index: 201; bord= er-radius: 5px; box-shadow: rgb(128, 128, 128) 0px 10px 20px; } .MathJax_MenuItem { padding: 1px 2em; background: transparent; } .MathJax_MenuArrow { position: absolute; right: 0.5em; padding-top: 0.25em;= color: rgb(102, 102, 102); font-size: 0.75em; } .MathJax_MenuActive .MathJax_MenuArrow { color: white; } .MathJax_MenuArrow.RTL { left: 0.5em; right: auto; } .MathJax_MenuCheck { position: absolute; left: 0.7em; } .MathJax_MenuCheck.RTL { right: 0.7em; left: auto; } .MathJax_MenuRadioCheck { position: absolute; left: 0.7em; } .MathJax_MenuRadioCheck.RTL { right: 0.7em; left: auto; } .MathJax_MenuLabel { padding: 1px 2em 3px 1.33em; font-style: italic; } .MathJax_MenuRule { border-top: 1px solid rgb(221, 221, 221); margin: 4px 3= px; } .MathJax_MenuDisabled { color: graytext; } .MathJax_MenuActive { background-color: rgb(96, 104, 114); color: white; } .MathJax_MenuDisabled:focus, .MathJax_MenuLabel:focus { background-color: r= gb(232, 232, 232); } .MathJax_ContextMenu:focus { outline: none; } .MathJax_ContextMenu .MathJax_MenuItem:focus { outline: none; } #MathJax_AboutClose { top: 0.2em; right: 0.2em; } .MathJax_Menu .MathJax_MenuClose { top: -10px; left: -10px; } .MathJax_MenuClose { position: absolute; cursor: pointer; display: inline-b= lock; border: 2px solid rgb(170, 170, 170); border-radius: 18px; font-famil= y: "Courier New", Courier; font-size: 24px; color: rgb(240, 240, 240); } .MathJax_MenuClose span { display: block; background-color: rgb(170, 170, 1= 70); border: 1.5px solid; border-radius: 18px; line-height: 0; padding: 8px= 0px 6px; } .MathJax_MenuClose:hover { color: white !important; border: 2px solid rgb(2= 04, 204, 204) !important; } .MathJax_MenuClose:hover span { background-color: rgb(204, 204, 204) !impor= tant; } .MathJax_MenuClose:hover:focus { outline: none; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-f887e12f-3d6b-4a5a-ac41-15322d855cd8@mhtml.blink @charset "utf-8"; .MathJax_Preview .MJXf-math { color: inherit !important; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-a02d54ec-f24c-4f9c-9342-672026601333@mhtml.blink @charset "utf-8"; .MJX_Assistive_MathML { top: 0px; left: 0px; clip: rect(1px, 1px, 1px, 1px)= ; user-select: none; position: absolute !important; padding: 1px 0px 0px !i= mportant; border: 0px !important; height: 1px !important; width: 1px !impor= tant; overflow: hidden !important; display: block !important; } .MJX_Assistive_MathML.MJX_Assistive_MathML_Block { width: 100% !important; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-0ab8a5e8-3091-4f6d-a744-77c777534055@mhtml.blink @charset "utf-8"; #MathJax_Zoom { position: absolute; background-color: rgb(240, 240, 240); o= verflow: auto; display: block; z-index: 301; padding: 0.5em; border: 1px so= lid black; margin: 0px; font-weight: normal; font-style: normal; text-align= : left; text-indent: 0px; text-transform: none; line-height: normal; letter= -spacing: normal; word-spacing: normal; overflow-wrap: normal; white-space:= nowrap; float: none; box-sizing: content-box; box-shadow: rgb(170, 170, 17= 0) 5px 5px 15px; } #MathJax_ZoomOverlay { position: absolute; left: 0px; top: 0px; z-index: 30= 0; display: inline-block; width: 100%; height: 100%; border: 0px; padding: = 0px; margin: 0px; background-color: white; opacity: 0; } #MathJax_ZoomFrame { position: relative; display: inline-block; height: 0px= ; width: 0px; } #MathJax_ZoomEventTrap { position: absolute; left: 0px; top: 0px; z-index: = 302; display: inline-block; border: 0px; padding: 0px; margin: 0px; backgro= und-color: white; opacity: 0; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-7532fb3a-4799-457c-91b3-2cbfa45b9a65@mhtml.blink @charset "utf-8"; .MathJax_Preview { color: rgb(136, 136, 136); } #MathJax_Message { position: fixed; left: 1em; bottom: 1.5em; background-co= lor: rgb(230, 230, 230); border: 1px solid rgb(149, 149, 149); margin: 0px;= padding: 2px 8px; z-index: 102; color: black; font-size: 80%; width: auto;= white-space: nowrap; } #MathJax_MSIE_Frame { position: absolute; top: 0px; left: 0px; width: 0px; = z-index: 101; border: 0px; margin: 0px; padding: 0px; } .MathJax_Error { color: rgb(204, 0, 0); font-style: italic; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-26c759fe-3af3-4ddd-b5e7-e5b5cd88b3f4@mhtml.blink @charset "utf-8"; div.MathJax_MathML { text-align: center; margin: 0.75em 0px; display: block= !important; } .MathJax_MathML { font-style: normal; font-weight: normal; line-height: nor= mal; font-size: 100%; text-indent: 0px; text-align: left; text-transform: n= one; letter-spacing: normal; word-spacing: normal; overflow-wrap: normal; w= hite-space: nowrap; float: none; direction: ltr; max-width: none; max-heigh= t: none; min-width: 0px; min-height: 0px; border: 0px; padding: 0px; margin= : 0px; } span.MathJax_MathML { display: inline !important; } .MathJax_mmlExBox { overflow: hidden; height: 1px; width: 60ex; min-height:= 0px; max-height: none; padding: 0px; border: 0px; margin: 0px; display: bl= ock !important; } [class=3D"MJX-tex-oldstyle"] { font-family: MathJax_Caligraphic, MathJax_Ca= ligraphic-WEB; } [class=3D"MJX-tex-oldstyle-bold"] { font-family: MathJax_Caligraphic, MathJ= ax_Caligraphic-WEB; font-weight: bold; } [class=3D"MJX-tex-caligraphic"] { font-family: MathJax_Caligraphic, MathJax= _Caligraphic-WEB; } [class=3D"MJX-tex-caligraphic-bold"] { font-family: MathJax_Caligraphic, Ma= thJax_Caligraphic-WEB; font-weight: bold; } @font-face { font-family: MathJax_Caligraphic-WEB; src: url("http://localho= st:8888/static/components/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphi= c-Regular.otf"); } @font-face { font-family: MathJax_Caligraphic-WEB; font-weight: bold; src: = url("http://localhost:8888/static/components/MathJax/fonts/HTML-CSS/TeX/otf= /MathJax_Caligraphic-Bold.otf"); } [mathvariant=3D"double-struck"] { font-family: MathJax_AMS, MathJax_AMS-WEB= ; } [mathvariant=3D"script"] { font-family: MathJax_Script, MathJax_Script-WEB;= } [mathvariant=3D"fraktur"] { font-family: MathJax_Fraktur, MathJax_Fraktur-W= EB; } [mathvariant=3D"bold-script"] { font-family: MathJax_Script, MathJax_Caligr= aphic-WEB; font-weight: bold; } [mathvariant=3D"bold-fraktur"] { font-family: MathJax_Fraktur, MathJax_Frak= tur-WEB; font-weight: bold; } [mathvariant=3D"monospace"] { font-family: monospace; } [mathvariant=3D"sans-serif"] { font-family: sans-serif; } [mathvariant=3D"bold-sans-serif"] { font-family: sans-serif; font-weight: b= old; } [mathvariant=3D"sans-serif-italic"] { font-family: sans-serif; font-style: = italic; } [mathvariant=3D"sans-serif-bold-italic"] { font-family: sans-serif; font-st= yle: italic; font-weight: bold; } @font-face { font-family: MathJax_AMS-WEB; src: url("http://localhost:8888/= static/components/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf");= } @font-face { font-family: MathJax_Script-WEB; src: url("http://localhost:88= 88/static/components/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.= otf"); } @font-face { font-family: MathJax_Fraktur-WEB; src: url("http://localhost:8= 888/static/components/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regula= r.otf"); } @font-face { font-family: MathJax_Fraktur-WEB; font-weight: bold; src: url(= "http://localhost:8888/static/components/MathJax/fonts/HTML-CSS/TeX/otf/Mat= hJax_Fraktur-Bold.otf"); } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-885bc050-054b-4f33-8b19-869011031ab8@mhtml.blink @charset "utf-8"; .MJXp-script { font-size: 0.8em; } .MJXp-right { transform-origin: right center; } .MJXp-bold { font-weight: bold; } .MJXp-italic { font-style: italic; } .MJXp-scr { font-family: MathJax_Script, "Times New Roman", Times, STIXGene= ral, serif; } .MJXp-frak { font-family: MathJax_Fraktur, "Times New Roman", Times, STIXGe= neral, serif; } .MJXp-sf { font-family: MathJax_SansSerif, "Times New Roman", Times, STIXGe= neral, serif; } .MJXp-cal { font-family: MathJax_Caligraphic, "Times New Roman", Times, STI= XGeneral, serif; } .MJXp-mono { font-family: MathJax_Typewriter, "Times New Roman", Times, STI= XGeneral, serif; } .MJXp-largeop { font-size: 150%; } .MJXp-largeop.MJXp-int { vertical-align: -0.2em; } .MJXp-math { display: inline-block; line-height: 1.2; text-indent: 0px; fon= t-family: "Times New Roman", Times, STIXGeneral, serif; white-space: nowrap= ; border-collapse: collapse; } .MJXp-display { display: block; text-align: center; margin: 1em 0px; } .MJXp-math span { display: inline-block; } .MJXp-box { text-align: center; display: block !important; } .MJXp-box::after { content: " "; } .MJXp-rule { margin-top: 0.1em; display: block !important; } .MJXp-char { display: block !important; } .MJXp-mo { margin: 0px 0.15em; } .MJXp-mfrac { margin: 0px 0.125em; vertical-align: 0.25em; } .MJXp-denom { width: 100%; display: inline-table !important; } .MJXp-denom > * { display: table-row !important; } .MJXp-surd { vertical-align: top; } .MJXp-surd > * { display: block !important; } .MJXp-script-box > * { height: 50%; display: table !important; } .MJXp-script-box > * > * { vertical-align: top; display: table-cell !import= ant; } .MJXp-script-box > :last-child > * { vertical-align: bottom; } .MJXp-script-box > * > * > * { display: block !important; } .MJXp-mphantom { visibility: hidden; } .MJXp-munderover, .MJXp-munder { display: inline-table !important; } .MJXp-over { text-align: center; display: inline-block !important; } .MJXp-over > * { display: block !important; } .MJXp-munderover > *, .MJXp-munder > * { display: table-row !important; } .MJXp-mtable { vertical-align: 0.25em; margin: 0px 0.125em; } .MJXp-mtable > * { vertical-align: middle; display: inline-table !important= ; } .MJXp-mtr { display: table-row !important; } .MJXp-mtd { text-align: center; padding: 0.5em 0px 0px 0.5em; display: tabl= e-cell !important; } .MJXp-mtr > .MJXp-mtd:first-child { padding-left: 0px; } .MJXp-mtr:first-child > .MJXp-mtd { padding-top: 0px; } .MJXp-mlabeledtr { display: table-row !important; } .MJXp-mlabeledtr > .MJXp-mtd:first-child { padding-left: 0px; } .MJXp-mlabeledtr:first-child > .MJXp-mtd { padding-top: 0px; } .MJXp-merror { background-color: rgb(255, 255, 136); color: rgb(204, 0, 0);= border: 1px solid rgb(204, 0, 0); padding: 1px 3px; font-style: normal; fo= nt-size: 90%; } .MJXp-scale0 { transform: scaleX(0); } .MJXp-scale1 { transform: scaleX(0.1); } .MJXp-scale2 { transform: scaleX(0.2); } .MJXp-scale3 { transform: scaleX(0.3); } .MJXp-scale4 { transform: scaleX(0.4); } .MJXp-scale5 { transform: scaleX(0.5); } .MJXp-scale6 { transform: scaleX(0.6); } .MJXp-scale7 { transform: scaleX(0.7); } .MJXp-scale8 { transform: scaleX(0.8); } .MJXp-scale9 { transform: scaleX(0.9); } .MathJax_PHTML .noError { font-size: 90%; text-align: left; color: black; p= adding: 1px 3px; border: 1px solid; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-8327f4be-d374-4339-8ae7-b52650c9b509@mhtml.blink @charset "utf-8"; .MathJax_Display { text-align: center; margin: 0px; position: relative; tex= t-indent: 0px; max-width: none; max-height: none; min-width: 0px; min-heigh= t: 0px; width: 100%; display: block !important; } .MathJax .merror { background-color: rgb(255, 255, 136); color: rgb(204, 0,= 0); border: 1px solid rgb(204, 0, 0); padding: 1px 3px; font-style: normal= ; font-size: 90%; } .MathJax .MJX-monospace { font-family: monospace; } .MathJax .MJX-sans-serif { font-family: sans-serif; } #MathJax_Tooltip { background-color: infobackground; color: infotext; borde= r: 1px solid black; box-shadow: rgb(170, 170, 170) 2px 2px 5px; padding: 3p= x 4px; z-index: 401; position: absolute; left: 0px; top: 0px; width: auto; = height: auto; display: none; } .MathJax { display: inline; font-style: normal; font-weight: normal; line-h= eight: normal; font-size: 100%; text-indent: 0px; text-align: left; text-tr= ansform: none; letter-spacing: normal; word-spacing: normal; overflow-wrap:= normal; white-space: nowrap; float: none; direction: ltr; max-width: none;= max-height: none; min-width: 0px; min-height: 0px; border: 0px; padding: 0= px; margin: 0px; } .MathJax:focus, body :focus .MathJax { display: inline-table; } .MathJax.MathJax_FullWidth { text-align: center; display: table-cell !impor= tant; width: 10000em !important; } .MathJax img, .MathJax nobr, .MathJax a { border: 0px; padding: 0px; margin= : 0px; max-width: none; max-height: none; min-width: 0px; min-height: 0px; = vertical-align: 0px; line-height: normal; text-decoration: none; } img.MathJax_strut { border: 0px !important; padding: 0px !important; margin= : 0px !important; vertical-align: 0px !important; } .MathJax span { display: inline; position: static; border: 0px; padding: 0p= x; margin: 0px; vertical-align: 0px; line-height: normal; text-decoration: = none; box-sizing: content-box; } .MathJax nobr { white-space: nowrap !important; } .MathJax img { display: inline !important; float: none !important; } .MathJax * { transition: none 0s ease 0s; } .MathJax_Processing { visibility: hidden; position: fixed; width: 0px; heig= ht: 0px; overflow: hidden; } .MathJax_Processed { display: none !important; } .MathJax_test { font-style: normal; font-weight: normal; font-size: 100%; t= ext-indent: 0px; text-transform: none; letter-spacing: normal; word-spacing= : normal; overflow: hidden; height: 1px; } .MathJax_test.mjx-test-display { display: table !important; } .MathJax_test.mjx-test-inline { margin-right: -1px; display: inline !import= ant; } .MathJax_test.mjx-test-default { clear: both; display: block !important; } .MathJax_ex_box { position: absolute; overflow: hidden; min-height: 0px; ma= x-height: none; padding: 0px; border: 0px; margin: 0px; width: 1px; height:= 60ex; display: inline-block !important; } .MathJax_em_box { position: absolute; overflow: hidden; min-height: 0px; ma= x-height: none; padding: 0px; border: 0px; margin: 0px; width: 1px; height:= 60em; display: inline-block !important; } .mjx-test-inline .MathJax_left_box { display: inline-block; width: 0px; flo= at: left; } .mjx-test-inline .MathJax_right_box { display: inline-block; width: 0px; fl= oat: right; } .mjx-test-display .MathJax_right_box { min-width: 0px; max-width: none; pad= ding: 0px; border: 0px; margin: 0px; display: table-cell !important; width:= 10000em !important; } .MathJax .MathJax_HitBox { cursor: text; background: white; opacity: 0; } .MathJax .MathJax_HitBox * { filter: none; opacity: 1; background: transpar= ent; } #MathJax_Tooltip * { filter: none; opacity: 1; background: transparent; } @font-face { font-family: MathJax_Blank; src: url("about:blank"); } .MathJax .noError { font-size: 90%; text-align: left; color: black; padding= : 1px 3px; border: 1px solid; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-084f45f2-adf2-4c2e-ab5c-f116820f3b50@mhtml.blink @charset "utf-8"; .jupyter-widgets-output-area div.output_subarea { max-width: 100%; } .jupyter-widgets-output-area > .out_prompt_overlay { display: none; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-2ca82e44-d699-4ab3-9836-1539fb10a1ce@mhtml.blink @charset "utf-8"; .p-Widget { box-sizing: border-box; position: relative; overflow: hidden; c= ursor: default; } .p-Widget.p-mod-hidden { display: none !important; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-68117b77-cd02-49b6-8f76-0e8194d37436@mhtml.blink @charset "utf-8"; .p-CommandPalette { display: flex; flex-direction: column; user-select: non= e; } .p-CommandPalette-search { flex: 0 0 auto; } .p-CommandPalette-content { flex: 1 1 auto; margin: 0px; padding: 0px; min-= height: 0px; overflow: auto; list-style-type: none; } .p-CommandPalette-header { overflow: hidden; white-space: nowrap; text-over= flow: ellipsis; } .p-CommandPalette-item { display: flex; flex-direction: row; } .p-CommandPalette-itemIcon { flex: 0 0 auto; } .p-CommandPalette-itemContent { flex: 1 1 auto; overflow: hidden; } .p-CommandPalette-itemShortcut { flex: 0 0 auto; } .p-CommandPalette-itemLabel { overflow: hidden; white-space: nowrap; text-o= verflow: ellipsis; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-1ebf599b-a936-43f5-a7b2-94994ea0b9a1@mhtml.blink @charset "utf-8"; .p-DockPanel { z-index: 0; } .p-DockPanel-widget { z-index: 0; } .p-DockPanel-tabBar { z-index: 1; } .p-DockPanel-handle { z-index: 2; } .p-DockPanel-handle.p-mod-hidden { display: none !important; } .p-DockPanel-handle::after { position: absolute; top: 0px; left: 0px; width= : 100%; height: 100%; content: ""; } .p-DockPanel-handle[data-orientation=3D"horizontal"] { cursor: ew-resize; } .p-DockPanel-handle[data-orientation=3D"vertical"] { cursor: ns-resize; } .p-DockPanel-handle[data-orientation=3D"horizontal"]::after { left: 50%; mi= n-width: 8px; transform: translateX(-50%); } .p-DockPanel-handle[data-orientation=3D"vertical"]::after { top: 50%; min-h= eight: 8px; transform: translateY(-50%); } .p-DockPanel-overlay { z-index: 3; box-sizing: border-box; pointer-events: = none; } .p-DockPanel-overlay.p-mod-hidden { display: none !important; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-d060576c-4dae-49ab-b83c-7a2cd01af4c5@mhtml.blink @charset "utf-8"; .p-Menu { z-index: 10000; position: absolute; white-space: nowrap; overflow= : hidden auto; outline: none; user-select: none; } .p-Menu-content { margin: 0px; padding: 0px; display: table; list-style-typ= e: none; } .p-Menu-item { display: table-row; } .p-Menu-item.p-mod-hidden, .p-Menu-item.p-mod-collapsed { display: none !im= portant; } .p-Menu-itemIcon, .p-Menu-itemSubmenuIcon { display: table-cell; text-align= : center; } .p-Menu-itemLabel { display: table-cell; text-align: left; } .p-Menu-itemShortcut { display: table-cell; text-align: right; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-d11a90c4-f6c3-4f39-a10b-1d067e547111@mhtml.blink @charset "utf-8"; .p-MenuBar { outline: none; user-select: none; } .p-MenuBar-content { margin: 0px; padding: 0px; display: flex; flex-directi= on: row; list-style-type: none; } .p-MenuBar-item { box-sizing: border-box; } .p-MenuBar-itemIcon, .p-MenuBar-itemLabel { display: inline-block; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-ab1ecc77-93c5-4247-83e2-97bcb584e3ae@mhtml.blink @charset "utf-8"; .p-ScrollBar { display: flex; user-select: none; } .p-ScrollBar[data-orientation=3D"horizontal"] { flex-direction: row; } .p-ScrollBar[data-orientation=3D"vertical"] { flex-direction: column; } .p-ScrollBar-button { box-sizing: border-box; flex: 0 0 auto; } .p-ScrollBar-track { box-sizing: border-box; position: relative; overflow: = hidden; flex: 1 1 auto; } .p-ScrollBar-thumb { box-sizing: border-box; position: absolute; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-d760aa69-f124-4d30-a067-90730effe032@mhtml.blink @charset "utf-8"; .p-SplitPanel-child { z-index: 0; } .p-SplitPanel-handle { z-index: 1; } .p-SplitPanel-handle.p-mod-hidden { display: none !important; } .p-SplitPanel-handle::after { position: absolute; top: 0px; left: 0px; widt= h: 100%; height: 100%; content: ""; } .p-SplitPanel[data-orientation=3D"horizontal"] > .p-SplitPanel-handle { cur= sor: ew-resize; } .p-SplitPanel[data-orientation=3D"vertical"] > .p-SplitPanel-handle { curso= r: ns-resize; } .p-SplitPanel[data-orientation=3D"horizontal"] > .p-SplitPanel-handle::afte= r { left: 50%; min-width: 8px; transform: translateX(-50%); } .p-SplitPanel[data-orientation=3D"vertical"] > .p-SplitPanel-handle::after = { top: 50%; min-height: 8px; transform: translateY(-50%); } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-6cc4f774-0eb7-4cf8-b6b7-077671be0b6b@mhtml.blink @charset "utf-8"; .p-TabBar { display: flex; user-select: none; } .p-TabBar[data-orientation=3D"horizontal"] { flex-direction: row; } .p-TabBar[data-orientation=3D"vertical"] { flex-direction: column; } .p-TabBar-content { margin: 0px; padding: 0px; display: flex; flex: 1 1 aut= o; list-style-type: none; } .p-TabBar[data-orientation=3D"horizontal"] > .p-TabBar-content { flex-direc= tion: row; } .p-TabBar[data-orientation=3D"vertical"] > .p-TabBar-content { flex-directi= on: column; } .p-TabBar-tab { display: flex; flex-direction: row; box-sizing: border-box;= overflow: hidden; } .p-TabBar-tabIcon, .p-TabBar-tabCloseIcon { flex: 0 0 auto; } .p-TabBar-tabLabel { flex: 1 1 auto; overflow: hidden; white-space: nowrap;= } .p-TabBar-tab.p-mod-hidden { display: none !important; } .p-TabBar.p-mod-dragging .p-TabBar-tab { position: relative; } .p-TabBar.p-mod-dragging[data-orientation=3D"horizontal"] .p-TabBar-tab { l= eft: 0px; transition: left 150ms ease 0s; } .p-TabBar.p-mod-dragging[data-orientation=3D"vertical"] .p-TabBar-tab { top= : 0px; transition: top 150ms ease 0s; } .p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-dragging { transition: none 0s= ease 0s; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-5131023e-6c9c-452c-aab5-18b43f15b218@mhtml.blink @charset "utf-8"; .p-TabPanel-tabBar { z-index: 1; } .p-TabPanel-stackedPanel { z-index: 0; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-c69f164d-451a-43ba-9d94-157b2add472c@mhtml.blink @charset "utf-8"; =0A ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-4904c5d5-5af7-430b-90ba-6b484890fb1f@mhtml.blink @charset "utf-8"; .jupyter-widgets-disconnected::before { content: "=EF=84=A7"; display: inli= ne-block; font-style: normal; font-variant: normal; font-weight: normal; fo= nt-stretch: normal; line-height: 1; font-family: FontAwesome; font-size: in= herit; text-rendering: auto; -webkit-font-smoothing: antialiased; color: rg= b(217, 83, 79); padding: 3px; align-self: flex-start; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-cecf5419-c451-4cc0-a72e-07da4d0d7a08@mhtml.blink @charset "utf-8"; :root { --md-red-50: #FFEBEE; --md-red-100: #FFCDD2; --md-red-200: #EF9A9A;= --md-red-300: #E57373; --md-red-400: #EF5350; --md-red-500: #F44336; --md-= red-600: #E53935; --md-red-700: #D32F2F; --md-red-800: #C62828; --md-red-90= 0: #B71C1C; --md-red-A100: #FF8A80; --md-red-A200: #FF5252; --md-red-A400: = #FF1744; --md-red-A700: #D50000; --md-pink-50: #FCE4EC; --md-pink-100: #F8B= BD0; --md-pink-200: #F48FB1; --md-pink-300: #F06292; --md-pink-400: #EC407A= ; --md-pink-500: #E91E63; --md-pink-600: #D81B60; --md-pink-700: #C2185B; -= -md-pink-800: #AD1457; --md-pink-900: #880E4F; --md-pink-A100: #FF80AB; --m= d-pink-A200: #FF4081; --md-pink-A400: #F50057; --md-pink-A700: #C51162; --m= d-purple-50: #F3E5F5; --md-purple-100: #E1BEE7; --md-purple-200: #CE93D8; -= -md-purple-300: #BA68C8; --md-purple-400: #AB47BC; --md-purple-500: #9C27B0= ; --md-purple-600: #8E24AA; --md-purple-700: #7B1FA2; --md-purple-800: #6A1= B9A; --md-purple-900: #4A148C; --md-purple-A100: #EA80FC; --md-purple-A200:= #E040FB; --md-purple-A400: #D500F9; --md-purple-A700: #AA00FF; --md-deep-p= urple-50: #EDE7F6; --md-deep-purple-100: #D1C4E9; --md-deep-purple-200: #B3= 9DDB; --md-deep-purple-300: #9575CD; --md-deep-purple-400: #7E57C2; --md-de= ep-purple-500: #673AB7; --md-deep-purple-600: #5E35B1; --md-deep-purple-700= : #512DA8; --md-deep-purple-800: #4527A0; --md-deep-purple-900: #311B92; --= md-deep-purple-A100: #B388FF; --md-deep-purple-A200: #7C4DFF; --md-deep-pur= ple-A400: #651FFF; --md-deep-purple-A700: #6200EA; --md-indigo-50: #E8EAF6;= --md-indigo-100: #C5CAE9; --md-indigo-200: #9FA8DA; --md-indigo-300: #7986= CB; --md-indigo-400: #5C6BC0; --md-indigo-500: #3F51B5; --md-indigo-600: #3= 949AB; --md-indigo-700: #303F9F; --md-indigo-800: #283593; --md-indigo-900:= #1A237E; --md-indigo-A100: #8C9EFF; --md-indigo-A200: #536DFE; --md-indigo= -A400: #3D5AFE; --md-indigo-A700: #304FFE; --md-blue-50: #E3F2FD; --md-blue= -100: #BBDEFB; --md-blue-200: #90CAF9; --md-blue-300: #64B5F6; --md-blue-40= 0: #42A5F5; --md-blue-500: #2196F3; --md-blue-600: #1E88E5; --md-blue-700: = #1976D2; --md-blue-800: #1565C0; --md-blue-900: #0D47A1; --md-blue-A100: #8= 2B1FF; --md-blue-A200: #448AFF; --md-blue-A400: #2979FF; --md-blue-A700: #2= 962FF; --md-light-blue-50: #E1F5FE; --md-light-blue-100: #B3E5FC; --md-ligh= t-blue-200: #81D4FA; --md-light-blue-300: #4FC3F7; --md-light-blue-400: #29= B6F6; --md-light-blue-500: #03A9F4; --md-light-blue-600: #039BE5; --md-ligh= t-blue-700: #0288D1; --md-light-blue-800: #0277BD; --md-light-blue-900: #01= 579B; --md-light-blue-A100: #80D8FF; --md-light-blue-A200: #40C4FF; --md-li= ght-blue-A400: #00B0FF; --md-light-blue-A700: #0091EA; --md-cyan-50: #E0F7F= A; --md-cyan-100: #B2EBF2; --md-cyan-200: #80DEEA; --md-cyan-300: #4DD0E1; = --md-cyan-400: #26C6DA; --md-cyan-500: #00BCD4; --md-cyan-600: #00ACC1; --m= d-cyan-700: #0097A7; --md-cyan-800: #00838F; --md-cyan-900: #006064; --md-c= yan-A100: #84FFFF; --md-cyan-A200: #18FFFF; --md-cyan-A400: #00E5FF; --md-c= yan-A700: #00B8D4; --md-teal-50: #E0F2F1; --md-teal-100: #B2DFDB; --md-teal= -200: #80CBC4; --md-teal-300: #4DB6AC; --md-teal-400: #26A69A; --md-teal-50= 0: #009688; --md-teal-600: #00897B; --md-teal-700: #00796B; --md-teal-800: = #00695C; --md-teal-900: #004D40; --md-teal-A100: #A7FFEB; --md-teal-A200: #= 64FFDA; --md-teal-A400: #1DE9B6; --md-teal-A700: #00BFA5; --md-green-50: #E= 8F5E9; --md-green-100: #C8E6C9; --md-green-200: #A5D6A7; --md-green-300: #8= 1C784; --md-green-400: #66BB6A; --md-green-500: #4CAF50; --md-green-600: #4= 3A047; --md-green-700: #388E3C; --md-green-800: #2E7D32; --md-green-900: #1= B5E20; --md-green-A100: #B9F6CA; --md-green-A200: #69F0AE; --md-green-A400:= #00E676; --md-green-A700: #00C853; --md-light-green-50: #F1F8E9; --md-ligh= t-green-100: #DCEDC8; --md-light-green-200: #C5E1A5; --md-light-green-300: = #AED581; --md-light-green-400: #9CCC65; --md-light-green-500: #8BC34A; --md= -light-green-600: #7CB342; --md-light-green-700: #689F38; --md-light-green-= 800: #558B2F; --md-light-green-900: #33691E; --md-light-green-A100: #CCFF90= ; --md-light-green-A200: #B2FF59; --md-light-green-A400: #76FF03; --md-ligh= t-green-A700: #64DD17; --md-lime-50: #F9FBE7; --md-lime-100: #F0F4C3; --md-= lime-200: #E6EE9C; --md-lime-300: #DCE775; --md-lime-400: #D4E157; --md-lim= e-500: #CDDC39; --md-lime-600: #C0CA33; --md-lime-700: #AFB42B; --md-lime-8= 00: #9E9D24; --md-lime-900: #827717; --md-lime-A100: #F4FF81; --md-lime-A20= 0: #EEFF41; --md-lime-A400: #C6FF00; --md-lime-A700: #AEEA00; --md-yellow-5= 0: #FFFDE7; --md-yellow-100: #FFF9C4; --md-yellow-200: #FFF59D; --md-yellow= -300: #FFF176; --md-yellow-400: #FFEE58; --md-yellow-500: #FFEB3B; --md-yel= low-600: #FDD835; --md-yellow-700: #FBC02D; --md-yellow-800: #F9A825; --md-= yellow-900: #F57F17; --md-yellow-A100: #FFFF8D; --md-yellow-A200: #FFFF00; = --md-yellow-A400: #FFEA00; --md-yellow-A700: #FFD600; --md-amber-50: #FFF8E= 1; --md-amber-100: #FFECB3; --md-amber-200: #FFE082; --md-amber-300: #FFD54= F; --md-amber-400: #FFCA28; --md-amber-500: #FFC107; --md-amber-600: #FFB30= 0; --md-amber-700: #FFA000; --md-amber-800: #FF8F00; --md-amber-900: #FF6F0= 0; --md-amber-A100: #FFE57F; --md-amber-A200: #FFD740; --md-amber-A400: #FF= C400; --md-amber-A700: #FFAB00; --md-orange-50: #FFF3E0; --md-orange-100: #= FFE0B2; --md-orange-200: #FFCC80; --md-orange-300: #FFB74D; --md-orange-400= : #FFA726; --md-orange-500: #FF9800; --md-orange-600: #FB8C00; --md-orange-= 700: #F57C00; --md-orange-800: #EF6C00; --md-orange-900: #E65100; --md-oran= ge-A100: #FFD180; --md-orange-A200: #FFAB40; --md-orange-A400: #FF9100; --m= d-orange-A700: #FF6D00; --md-deep-orange-50: #FBE9E7; --md-deep-orange-100:= #FFCCBC; --md-deep-orange-200: #FFAB91; --md-deep-orange-300: #FF8A65; --m= d-deep-orange-400: #FF7043; --md-deep-orange-500: #FF5722; --md-deep-orange= -600: #F4511E; --md-deep-orange-700: #E64A19; --md-deep-orange-800: #D84315= ; --md-deep-orange-900: #BF360C; --md-deep-orange-A100: #FF9E80; --md-deep-= orange-A200: #FF6E40; --md-deep-orange-A400: #FF3D00; --md-deep-orange-A700= : #DD2C00; --md-brown-50: #EFEBE9; --md-brown-100: #D7CCC8; --md-brown-200:= #BCAAA4; --md-brown-300: #A1887F; --md-brown-400: #8D6E63; --md-brown-500:= #795548; --md-brown-600: #6D4C41; --md-brown-700: #5D4037; --md-brown-800:= #4E342E; --md-brown-900: #3E2723; --md-grey-50: #FAFAFA; --md-grey-100: #F= 5F5F5; --md-grey-200: #EEEEEE; --md-grey-300: #E0E0E0; --md-grey-400: #BDBD= BD; --md-grey-500: #9E9E9E; --md-grey-600: #757575; --md-grey-700: #616161;= --md-grey-800: #424242; --md-grey-900: #212121; --md-blue-grey-50: #ECEFF1= ; --md-blue-grey-100: #CFD8DC; --md-blue-grey-200: #B0BEC5; --md-blue-grey-= 300: #90A4AE; --md-blue-grey-400: #78909C; --md-blue-grey-500: #607D8B; --m= d-blue-grey-600: #546E7A; --md-blue-grey-700: #455A64; --md-blue-grey-800: = #37474F; --md-blue-grey-900: #263238; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-dff5627a-ca00-471e-9e33-f978ac798e0d@mhtml.blink @charset "utf-8"; :root { --jp-icon-search: none; --jp-ui-select-caret: none; } :root { --jp-border-width: 1px; --jp-border-color0: var(--md-grey-700); --j= p-border-color1: var(--md-grey-500); --jp-border-color2: var(--md-grey-300)= ; --jp-border-color3: var(--md-grey-100); --jp-ui-icon-font-size: 14px; --j= p-ui-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; --jp-ui-f= ont-color0: rgba(0,0,0,1); --jp-ui-font-color1: rgba(0,0,0,0.8); --jp-ui-fo= nt-color2: rgba(0,0,0,0.5); --jp-ui-font-color3: rgba(0,0,0,0.3); --jp-inve= rse-ui-font-color0: rgba(255,255,255,1); --jp-inverse-ui-font-color1: rgba(= 255,255,255,1); --jp-inverse-ui-font-color2: rgba(255,255,255,0.7); --jp-in= verse-ui-font-color3: rgba(255,255,255,0.5); --jp-content-font-size: 13px; = --jp-content-line-height: 1.5; --jp-content-font-color0: black; --jp-conten= t-font-color1: black; --jp-content-font-color2: var(--md-grey-700); --jp-co= ntent-font-color3: var(--md-grey-500); --jp-ui-font-scale-factor: 1.2; --jp= -ui-font-size0: calc(var(--jp-ui-font-size1)/var(--jp-ui-font-scale-factor)= ); --jp-ui-font-size1: 13px; --jp-ui-font-size2: calc(var(--jp-ui-font-size= 1)*var(--jp-ui-font-scale-factor)); --jp-ui-font-size3: calc(var(--jp-ui-fo= nt-size2)*var(--jp-ui-font-scale-factor)); --jp-code-font-size: 13px; --jp-= code-line-height: 1.307; --jp-code-padding: 5px; --jp-code-font-family: mon= ospace; --jp-layout-color0: white; --jp-layout-color1: white; --jp-layout-c= olor2: var(--md-grey-200); --jp-layout-color3: var(--md-grey-400); --jp-bra= nd-color0: var(--md-blue-700); --jp-brand-color1: var(--md-blue-500); --jp-= brand-color2: var(--md-blue-300); --jp-brand-color3: var(--md-blue-100); --= jp-accent-color0: var(--md-green-700); --jp-accent-color1: var(--md-green-5= 00); --jp-accent-color2: var(--md-green-300); --jp-accent-color3: var(--md-= green-100); --jp-warn-color0: var(--md-orange-700); --jp-warn-color1: var(-= -md-orange-500); --jp-warn-color2: var(--md-orange-300); --jp-warn-color3: = var(--md-orange-100); --jp-error-color0: var(--md-red-700); --jp-error-colo= r1: var(--md-red-500); --jp-error-color2: var(--md-red-300); --jp-error-col= or3: var(--md-red-100); --jp-success-color0: var(--md-green-700); --jp-succ= ess-color1: var(--md-green-500); --jp-success-color2: var(--md-green-300); = --jp-success-color3: var(--md-green-100); --jp-info-color0: var(--md-cyan-7= 00); --jp-info-color1: var(--md-cyan-500); --jp-info-color2: var(--md-cyan-= 300); --jp-info-color3: var(--md-cyan-100); --jp-cell-padding: 5px; --jp-ce= ll-editor-background: #f7f7f7; --jp-cell-editor-border-color: #cfcfcf; --jp= -cell-editor-background-edit: var(--jp-ui-layout-color1); --jp-cell-editor-= border-color-edit: var(--jp-brand-color1); --jp-cell-prompt-width: 100px; -= -jp-cell-prompt-font-family: "Roboto Mono", monospace; --jp-cell-prompt-let= ter-spacing: 0px; --jp-cell-prompt-opacity: 1; --jp-cell-prompt-opacity-not= -active: 0.4; --jp-cell-prompt-font-color-not-active: var(--md-grey-700); -= -jp-cell-inprompt-font-color: #307FC1; --jp-cell-outprompt-font-color: #BF5= B3D; --jp-notebook-padding: 10px; --jp-notebook-scroll-padding: 100px; --jp= -console-background: var(--md-grey-100); --jp-toolbar-border-color: var(--m= d-grey-400); --jp-toolbar-micro-height: 8px; --jp-toolbar-background: var(-= -jp-layout-color0); --jp-toolbar-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2= 4); --jp-toolbar-header-margin: 4px 4px 0px 4px; --jp-toolbar-active-backgr= ound: var(--md-grey-300); } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-ebde05c5-bd92-41b0-abb0-a43c6b09e360@mhtml.blink @charset "utf-8"; .jupyter-widgets.widget-tab > .p-TabBar { display: flex; user-select: none;= } .jupyter-widgets.widget-tab > .p-TabBar[data-orientation=3D"horizontal"] { = flex-direction: row; } .jupyter-widgets.widget-tab > .p-TabBar[data-orientation=3D"vertical"] { fl= ex-direction: column; } .jupyter-widgets.widget-tab > .p-TabBar > .p-TabBar-content { margin: 0px; = padding: 0px; display: flex; flex: 1 1 auto; list-style-type: none; } .jupyter-widgets.widget-tab > .p-TabBar[data-orientation=3D"horizontal"] > = .p-TabBar-content { flex-direction: row; } .jupyter-widgets.widget-tab > .p-TabBar[data-orientation=3D"vertical"] > .p= -TabBar-content { flex-direction: column; } .jupyter-widgets.widget-tab > .p-TabBar .p-TabBar-tab { display: flex; flex= -direction: row; box-sizing: border-box; overflow: hidden; } .jupyter-widgets.widget-tab > .p-TabBar .p-TabBar-tabIcon, .jupyter-widgets= .widget-tab > .p-TabBar .p-TabBar-tabCloseIcon { flex: 0 0 auto; } .jupyter-widgets.widget-tab > .p-TabBar .p-TabBar-tabLabel { flex: 1 1 auto= ; overflow: hidden; white-space: nowrap; } .jupyter-widgets.widget-tab > .p-TabBar .p-TabBar-tab.p-mod-hidden { displa= y: none !important; } .jupyter-widgets.widget-tab > .p-TabBar.p-mod-dragging .p-TabBar-tab { posi= tion: relative; } .jupyter-widgets.widget-tab > .p-TabBar.p-mod-dragging[data-orientation=3D"= horizontal"] .p-TabBar-tab { left: 0px; transition: left 150ms ease 0s; } .jupyter-widgets.widget-tab > .p-TabBar.p-mod-dragging[data-orientation=3D"= vertical"] .p-TabBar-tab { top: 0px; transition: top 150ms ease 0s; } .jupyter-widgets.widget-tab > .p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-= dragging { transition: none 0s ease 0s; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-63bd1962-522a-4e67-b52d-4d66566f0b9d@mhtml.blink @charset "utf-8"; :root { --jp-widgets-color: var(--jp-content-font-color1); --jp-widgets-lab= el-color: var(--jp-widgets-color); --jp-widgets-readout-color: var(--jp-wid= gets-color); --jp-widgets-font-size: var(--jp-ui-font-size1); --jp-widgets-= margin: 2px; --jp-widgets-inline-height: 28px; --jp-widgets-inline-width: 3= 00px; --jp-widgets-inline-width-short: calc(var(--jp-widgets-inline-width) = / 2 - var(--jp-widgets-margin)); --jp-widgets-inline-width-tiny: calc(var(-= -jp-widgets-inline-width-short) / 2 - var(--jp-widgets-margin)); --jp-widge= ts-inline-margin: 4px; --jp-widgets-inline-label-width: 80px; --jp-widgets-= border-width: var(--jp-border-width); --jp-widgets-vertical-height: 200px; = --jp-widgets-horizontal-tab-height: 24px; --jp-widgets-horizontal-tab-width= : 144px; --jp-widgets-horizontal-tab-top-border: 2px; --jp-widgets-progress= -thickness: 20px; --jp-widgets-container-padding: 15px; --jp-widgets-input-= padding: 4px; --jp-widgets-radio-item-height-adjustment: 8px; --jp-widgets-= radio-item-height: calc(var(--jp-widgets-inline-height) - var(--jp-widgets-= radio-item-height-adjustment)); --jp-widgets-slider-track-thickness: 4px; -= -jp-widgets-slider-border-width: var(--jp-widgets-border-width); --jp-widge= ts-slider-handle-size: 16px; --jp-widgets-slider-handle-border-color: var(-= -jp-border-color1); --jp-widgets-slider-handle-background-color: var(--jp-l= ayout-color1); --jp-widgets-slider-active-handle-color: var(--jp-brand-colo= r1); --jp-widgets-menu-item-height: 24px; --jp-widgets-dropdown-arrow: url(= "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgi= Pz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjIuMSwgU1ZHIEV4cG9ydCB= QbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249Ij= EuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sb= nM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJ= IHZpZXdCb3g9IjAgMCAxOCAxOCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg= gMTg7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdD= B7ZmlsbDpub25lO30KPC9zdHlsZT4KPHBhdGggZD0iTTUuMiw1LjlMOSw5LjdsMy44LTMuOGwxL= jIsMS4ybC00LjksNWwtNC45LTVMNS4yLDUuOXoiLz4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTAt= MC42aDE4djE4SDBWLTAuNnoiLz4KPC9zdmc+Cg"); --jp-widgets-input-color: var(--j= p-ui-font-color1); --jp-widgets-input-background-color: var(--jp-layout-col= or1); --jp-widgets-input-border-color: var(--jp-border-color1); --jp-widget= s-input-focus-border-color: var(--jp-brand-color2); --jp-widgets-input-bord= er-width: var(--jp-widgets-border-width); --jp-widgets-disabled-opacity: 0.= 6; --md-shadow-key-umbra-opacity: 0.2; --md-shadow-key-penumbra-opacity: 0.= 14; --md-shadow-ambient-shadow-opacity: 0.12; } .jupyter-widgets { margin: var(--jp-widgets-margin); box-sizing: border-box= ; color: var(--jp-widgets-color); overflow: visible; } .jupyter-widgets.jupyter-widgets-disconnected::before { line-height: var(--= jp-widgets-inline-height); height: var(--jp-widgets-inline-height); } .jp-Output-result > .jupyter-widgets { margin-left: 0px; margin-right: 0px;= } .widget-inline-hbox { box-sizing: border-box; display: flex; flex-direction= : row; align-items: baseline; } .widget-inline-vbox { box-sizing: border-box; display: flex; flex-direction= : column; align-items: center; } .widget-box { box-sizing: border-box; display: flex; margin: 0px; overflow:= auto; } .widget-gridbox { box-sizing: border-box; display: grid; margin: 0px; overf= low: auto; } .widget-hbox { flex-direction: row; } .widget-vbox { flex-direction: column; } .jupyter-button { padding: 0px 10px; display: inline-block; white-space: no= wrap; overflow: hidden; text-overflow: ellipsis; text-align: center; font-s= ize: var(--jp-widgets-font-size); cursor: pointer; height: var(--jp-widgets= -inline-height); line-height: var(--jp-widgets-inline-height); box-shadow: = none; color: var(--jp-ui-font-color1); background-color: var(--jp-layout-co= lor2); border: none; user-select: none; } .jupyter-button i.fa { margin-right: var(--jp-widgets-inline-margin); point= er-events: none; } .jupyter-button:empty::before { content: "=E2=80=8B"; } .jupyter-widgets.jupyter-button:disabled { opacity: var(--jp-widgets-disabl= ed-opacity); } .jupyter-button i.fa.center { margin-right: 0px; } .jupyter-button:hover:enabled, .jupyter-button:focus:enabled { box-shadow: = 0 2px 2px 0 rgba(0, 0, 0, var(--md-shadow-key-penumbra-opacity)), 0 3px 1px= -2px rgba(0, 0, 0, var(--md-shadow-key-umbra-opacity)), 0 1px 5px 0 rgba(0= , 0, 0, var(--md-shadow-ambient-shadow-opacity)); } .jupyter-button:active, .jupyter-button.mod-active { box-shadow: 0 4px 5px = 0 rgba(0, 0, 0, var(--md-shadow-key-penumbra-opacity)), 0 1px 10px 0 rgba(0= , 0, 0, var(--md-shadow-ambient-shadow-opacity)), 0 2px 4px -1px rgba(0, 0,= 0, var(--md-shadow-key-umbra-opacity)); color: var(--jp-ui-font-color1); b= ackground-color: var(--jp-layout-color3); } .jupyter-button:focus:enabled { outline: 1px solid var(--jp-widgets-input-f= ocus-border-color); } .jupyter-button.mod-primary { color: var(--jp-inverse-ui-font-color1); back= ground-color: var(--jp-brand-color1); } .jupyter-button.mod-primary.mod-active { color: var(--jp-inverse-ui-font-co= lor0); background-color: var(--jp-brand-color0); } .jupyter-button.mod-primary:active { color: var(--jp-inverse-ui-font-color0= ); background-color: var(--jp-brand-color0); } .jupyter-button.mod-success { color: var(--jp-inverse-ui-font-color1); back= ground-color: var(--jp-success-color1); } .jupyter-button.mod-success.mod-active { color: var(--jp-inverse-ui-font-co= lor0); background-color: var(--jp-success-color0); } .jupyter-button.mod-success:active { color: var(--jp-inverse-ui-font-color0= ); background-color: var(--jp-success-color0); } .jupyter-button.mod-info { color: var(--jp-inverse-ui-font-color1); backgro= und-color: var(--jp-info-color1); } .jupyter-button.mod-info.mod-active { color: var(--jp-inverse-ui-font-color= 0); background-color: var(--jp-info-color0); } .jupyter-button.mod-info:active { color: var(--jp-inverse-ui-font-color0); = background-color: var(--jp-info-color0); } .jupyter-button.mod-warning { color: var(--jp-inverse-ui-font-color1); back= ground-color: var(--jp-warn-color1); } .jupyter-button.mod-warning.mod-active { color: var(--jp-inverse-ui-font-co= lor0); background-color: var(--jp-warn-color0); } .jupyter-button.mod-warning:active { color: var(--jp-inverse-ui-font-color0= ); background-color: var(--jp-warn-color0); } .jupyter-button.mod-danger { color: var(--jp-inverse-ui-font-color1); backg= round-color: var(--jp-error-color1); } .jupyter-button.mod-danger.mod-active { color: var(--jp-inverse-ui-font-col= or0); background-color: var(--jp-error-color0); } .jupyter-button.mod-danger:active { color: var(--jp-inverse-ui-font-color0)= ; background-color: var(--jp-error-color0); } .widget-button, .widget-toggle-button, .widget-upload { width: var(--jp-wid= gets-inline-width-short); } .jupyter-widgets label { margin-bottom: initial; } .widget-label-basic { color: var(--jp-widgets-label-color); font-size: var(= --jp-widgets-font-size); overflow: hidden; text-overflow: ellipsis; white-s= pace: nowrap; line-height: var(--jp-widgets-inline-height); } .widget-label { color: var(--jp-widgets-label-color); font-size: var(--jp-w= idgets-font-size); overflow: hidden; text-overflow: ellipsis; white-space: = nowrap; line-height: var(--jp-widgets-inline-height); } .widget-inline-hbox .widget-label { color: var(--jp-widgets-label-color); t= ext-align: right; margin-right: calc( var(--jp-widgets-inline-margin) * 2 )= ; width: var(--jp-widgets-inline-label-width); flex-shrink: 0; } .widget-inline-vbox .widget-label { color: var(--jp-widgets-label-color); t= ext-align: center; line-height: var(--jp-widgets-inline-height); } .widget-readout { color: var(--jp-widgets-readout-color); font-size: var(--= jp-widgets-font-size); height: var(--jp-widgets-inline-height); line-height= : var(--jp-widgets-inline-height); overflow: hidden; white-space: nowrap; t= ext-align: center; } .widget-readout.overflow { box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 2px 0px, = rgba(0, 0, 0, 0.14) 0px 3px 1px -2px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px; = } .widget-inline-hbox .widget-readout { text-align: center; max-width: var(--= jp-widgets-inline-width-short); min-width: var(--jp-widgets-inline-width-ti= ny); margin-left: var(--jp-widgets-inline-margin); } .widget-inline-vbox .widget-readout { margin-top: var(--jp-widgets-inline-m= argin); width: inherit; } .widget-checkbox { width: var(--jp-widgets-inline-width); height: var(--jp-= widgets-inline-height); line-height: var(--jp-widgets-inline-height); } .widget-checkbox input[type=3D"checkbox"] { margin: 0px calc( var(--jp-widg= ets-inline-margin) * 2 ) 0px 0px; line-height: var(--jp-widgets-inline-heig= ht); font-size: large; flex-grow: 1; flex-shrink: 0; align-self: center; } .widget-valid { height: var(--jp-widgets-inline-height); line-height: var(-= -jp-widgets-inline-height); width: var(--jp-widgets-inline-width-short); fo= nt-size: var(--jp-widgets-font-size); } .widget-valid i::before { margin-right: var(--jp-widgets-inline-margin); ma= rgin-left: var(--jp-widgets-inline-margin); display: inline-block; font-sty= le: normal; font-variant: normal; font-weight: normal; font-stretch: normal= ; line-height: 1; font-family: FontAwesome; font-size: inherit; text-render= ing: auto; -webkit-font-smoothing: antialiased; } .widget-valid.mod-valid i::before { content: "=EF=80=8C"; color: green; } .widget-valid.mod-invalid i::before { content: "=EF=80=8D"; color: red; } .widget-valid.mod-valid .widget-valid-readout { display: none; } .widget-textarea, .widget-text { width: var(--jp-widgets-inline-width); } .widget-text input[type=3D"text"], .widget-text input[type=3D"number"] { he= ight: var(--jp-widgets-inline-height); line-height: var(--jp-widgets-inline= -height); } .widget-text input[type=3D"text"]:disabled, .widget-text input[type=3D"numb= er"]:disabled, .widget-textarea textarea:disabled { opacity: var(--jp-widge= ts-disabled-opacity); } .widget-text input[type=3D"text"], .widget-text input[type=3D"number"], .wi= dget-textarea textarea { box-sizing: border-box; border: var(--jp-widgets-i= nput-border-width) solid var(--jp-widgets-input-border-color); background-c= olor: var(--jp-widgets-input-background-color); color: var(--jp-widgets-inp= ut-color); font-size: var(--jp-widgets-font-size); flex-grow: 1; min-width:= 0px; flex-shrink: 1; outline: none !important; } .widget-text input[type=3D"text"], .widget-textarea textarea { padding: var= (--jp-widgets-input-padding) calc( var(--jp-widgets-input-padding) * 2); } .widget-text input[type=3D"number"] { padding: var(--jp-widgets-input-paddi= ng) 0 var(--jp-widgets-input-padding) calc(var(--jp-widgets-input-padding) = * 2); } .widget-textarea textarea { height: inherit; width: inherit; } .widget-text input:focus, .widget-textarea textarea:focus { border-color: v= ar(--jp-widgets-input-focus-border-color); } .widget-slider .ui-slider { border: var(--jp-widgets-slider-border-width) s= olid var(--jp-layout-color3); background: var(--jp-layout-color3); box-sizi= ng: border-box; position: relative; border-radius: 0px; } .widget-slider .ui-slider .ui-slider-handle { position: absolute; backgroun= d-color: var(--jp-widgets-slider-handle-background-color); border: var(--jp= -widgets-slider-border-width) solid var(--jp-widgets-slider-handle-border-c= olor); box-sizing: border-box; z-index: 1; background-image: none; outline:= none !important; } .widget-slider .ui-slider .ui-slider-handle:hover, .widget-slider .ui-slide= r .ui-slider-handle:focus { background-color: var(--jp-widgets-slider-activ= e-handle-color); border: var(--jp-widgets-slider-border-width) solid var(--= jp-widgets-slider-active-handle-color); } .widget-slider .ui-slider .ui-slider-handle:active { background-color: var(= --jp-widgets-slider-active-handle-color); border-color: var(--jp-widgets-sl= ider-active-handle-color); z-index: 2; transform: scale(1.2); } .widget-slider .ui-slider .ui-slider-range { position: absolute; background= : var(--jp-widgets-slider-active-handle-color); z-index: 0; } .widget-hslider .ui-slider .ui-slider-handle { width: var(--jp-widgets-slid= er-handle-size); height: var(--jp-widgets-slider-handle-size); margin-top: = calc((var(--jp-widgets-slider-track-thickness) - var(--jp-widgets-slider-ha= ndle-size)) / 2 - var(--jp-widgets-slider-border-width)); margin-left: calc= (var(--jp-widgets-slider-handle-size) / -2 + var(--jp-widgets-slider-border= -width)); border-radius: 50%; top: 0px; } .widget-vslider .ui-slider .ui-slider-handle { width: var(--jp-widgets-slid= er-handle-size); height: var(--jp-widgets-slider-handle-size); margin-botto= m: calc(var(--jp-widgets-slider-handle-size) / -2 + var(--jp-widgets-slider= -border-width)); margin-left: calc((var(--jp-widgets-slider-track-thickness= ) - var(--jp-widgets-slider-handle-size)) / 2 - var(--jp-widgets-slider-bor= der-width)); border-radius: 50%; left: 0px; } .widget-hslider .ui-slider .ui-slider-range { height: calc( var(--jp-widget= s-slider-track-thickness) * 2 ); margin-top: calc((var(--jp-widgets-slider-= track-thickness) - var(--jp-widgets-slider-track-thickness) * 2 ) / 2 - var= (--jp-widgets-slider-border-width)); } .widget-vslider .ui-slider .ui-slider-range { width: calc( var(--jp-widgets= -slider-track-thickness) * 2 ); margin-left: calc((var(--jp-widgets-slider-= track-thickness) - var(--jp-widgets-slider-track-thickness) * 2 ) / 2 - var= (--jp-widgets-slider-border-width)); } .widget-hslider { width: var(--jp-widgets-inline-width); height: var(--jp-w= idgets-inline-height); line-height: var(--jp-widgets-inline-height); align-= items: center; } .widgets-slider .slider-container { overflow: visible; } .widget-hslider .slider-container { height: var(--jp-widgets-inline-height)= ; margin-left: calc(var(--jp-widgets-slider-handle-size) / 2 - 2 * var(--jp= -widgets-slider-border-width)); margin-right: calc(var(--jp-widgets-slider-= handle-size) / 2 - 2 * var(--jp-widgets-slider-border-width)); flex: 1 1 va= r(--jp-widgets-inline-width-short); } .widget-hslider .ui-slider { height: var(--jp-widgets-slider-track-thicknes= s); margin-top: calc((var(--jp-widgets-inline-height) - var(--jp-widgets-sl= ider-track-thickness)) / 2); width: 100%; } .widget-vbox .widget-label { height: var(--jp-widgets-inline-height); line-= height: var(--jp-widgets-inline-height); } .widget-vslider { height: var(--jp-widgets-vertical-height); width: var(--j= p-widgets-inline-width-tiny); } .widget-vslider .slider-container { flex: 1 1 var(--jp-widgets-inline-width= -short); margin-left: auto; margin-right: auto; margin-bottom: calc(var(--j= p-widgets-slider-handle-size) / 2 - 2 * var(--jp-widgets-slider-border-widt= h)); margin-top: calc(var(--jp-widgets-slider-handle-size) / 2 - 2 * var(--= jp-widgets-slider-border-width)); display: flex; flex-direction: column; } .widget-vslider .ui-slider-vertical { width: var(--jp-widgets-slider-track-= thickness); flex-grow: 1; margin-left: auto; margin-right: auto; } .progress-bar { transition: none 0s ease 0s; } .progress-bar { height: var(--jp-widgets-inline-height); } .progress-bar { background-color: var(--jp-brand-color1); } .progress-bar-success { background-color: var(--jp-success-color1); } .progress-bar-info { background-color: var(--jp-info-color1); } .progress-bar-warning { background-color: var(--jp-warn-color1); } .progress-bar-danger { background-color: var(--jp-error-color1); } .progress { background-color: var(--jp-layout-color2); border: none; box-sh= adow: none; } .widget-hprogress { height: var(--jp-widgets-inline-height); line-height: v= ar(--jp-widgets-inline-height); width: var(--jp-widgets-inline-width); alig= n-items: center; } .widget-hprogress .progress { flex-grow: 1; margin-top: var(--jp-widgets-in= put-padding); margin-bottom: var(--jp-widgets-input-padding); align-self: s= tretch; height: initial; } .widget-vprogress { height: var(--jp-widgets-vertical-height); width: var(-= -jp-widgets-inline-width-tiny); } .widget-vprogress .progress { flex-grow: 1; width: var(--jp-widgets-progres= s-thickness); margin-left: auto; margin-right: auto; margin-bottom: 0px; } .widget-dropdown { height: var(--jp-widgets-inline-height); width: var(--jp= -widgets-inline-width); line-height: var(--jp-widgets-inline-height); } .widget-dropdown > select { padding-right: 20px; border: var(--jp-widgets-i= nput-border-width) solid var(--jp-widgets-input-border-color); border-radiu= s: 0px; height: inherit; flex: 1 1 var(--jp-widgets-inline-width-short); mi= n-width: 0px; box-sizing: border-box; box-shadow: none; background-color: v= ar(--jp-widgets-input-background-color); color: var(--jp-widgets-input-colo= r); font-size: var(--jp-widgets-font-size); vertical-align: top; padding-le= ft: calc( var(--jp-widgets-input-padding) * 2); appearance: none; backgroun= d-repeat: no-repeat; background-size: 20px; background-position: right cent= er; background-image: var(--jp-widgets-dropdown-arrow); outline: none !impo= rtant; } .widget-dropdown > select:focus { border-color: var(--jp-widgets-input-focu= s-border-color); } .widget-dropdown > select:disabled { opacity: var(--jp-widgets-disabled-opa= city); } .widget-select { width: var(--jp-widgets-inline-width); line-height: var(--= jp-widgets-inline-height); align-items: flex-start; } .widget-select > select { border: var(--jp-widgets-input-border-width) soli= d var(--jp-widgets-input-border-color); background-color: var(--jp-widgets-= input-background-color); color: var(--jp-widgets-input-color); font-size: v= ar(--jp-widgets-font-size); flex: 1 1 var(--jp-widgets-inline-width-short);= overflow: auto; height: inherit; padding-top: 5px; outline: none !importan= t; } .widget-select > select:focus { border-color: var(--jp-widgets-input-focus-= border-color); } .wiget-select > select > option { padding-left: var(--jp-widgets-input-padd= ing); line-height: var(--jp-widgets-inline-height); padding-top: calc(var(-= -jp-widgets-inline-height)-var(--jp-widgets-font-size)/2); padding-bottom: = calc(var(--jp-widgets-inline-height)-var(--jp-widgets-font-size)/2); } .widget-toggle-buttons { line-height: var(--jp-widgets-inline-height); } .widget-toggle-buttons .widget-toggle-button { margin-left: var(--jp-widget= s-margin); margin-right: var(--jp-widgets-margin); } .widget-toggle-buttons .jupyter-button:disabled { opacity: var(--jp-widgets= -disabled-opacity); } .widget-radio { width: var(--jp-widgets-inline-width); line-height: var(--j= p-widgets-inline-height); } .widget-radio-box { display: flex; flex-direction: column; align-items: str= etch; box-sizing: border-box; flex-grow: 1; margin-bottom: var(--jp-widgets= -radio-item-height-adjustment); } .widget-radio-box label { height: var(--jp-widgets-radio-item-height); line= -height: var(--jp-widgets-radio-item-height); font-size: var(--jp-widgets-f= ont-size); } .widget-radio-box input { height: var(--jp-widgets-radio-item-height); line= -height: var(--jp-widgets-radio-item-height); margin: 0 calc( var(--jp-widg= ets-input-padding) * 2 ) 0 1px; float: left; } .widget-colorpicker { width: var(--jp-widgets-inline-width); height: var(--= jp-widgets-inline-height); line-height: var(--jp-widgets-inline-height); } .widget-colorpicker > .widget-colorpicker-input { flex-grow: 1; flex-shrink= : 1; min-width: var(--jp-widgets-inline-width-tiny); } .widget-colorpicker input[type=3D"color"] { width: var(--jp-widgets-inline-= height); height: var(--jp-widgets-inline-height); padding: 0px 2px; backgro= und: var(--jp-widgets-input-background-color); color: var(--jp-widgets-inpu= t-color); border-top-color: ; border-top-style: ; border-top-width: ; borde= r-right-color: ; border-right-style: ; border-right-width: ; border-bottom-= color: ; border-bottom-style: ; border-bottom-width: ; border-image-source:= ; border-image-slice: ; border-image-width: ; border-image-outset: ; borde= r-image-repeat: ; border-left: none; flex-grow: 0; flex-shrink: 0; box-sizi= ng: border-box; align-self: stretch; outline: none !important; } .widget-colorpicker.concise input[type=3D"color"] { border-left: var(--jp-w= idgets-input-border-width) solid var(--jp-widgets-input-border-color); } .widget-colorpicker input[type=3D"color"]:focus, .widget-colorpicker input[= type=3D"text"]:focus { border-color: var(--jp-widgets-input-focus-border-co= lor); } .widget-colorpicker input[type=3D"text"] { flex-grow: 1; height: var(--jp-w= idgets-inline-height); line-height: var(--jp-widgets-inline-height); backgr= ound: var(--jp-widgets-input-background-color); color: var(--jp-widgets-inp= ut-color); border: var(--jp-widgets-input-border-width) solid var(--jp-widg= ets-input-border-color); font-size: var(--jp-widgets-font-size); padding: v= ar(--jp-widgets-input-padding) calc( var(--jp-widgets-input-padding) * 2 );= min-width: 0px; flex-shrink: 1; box-sizing: border-box; outline: none !imp= ortant; } .widget-colorpicker input[type=3D"text"]:disabled { opacity: var(--jp-widge= ts-disabled-opacity); } .widget-datepicker { width: var(--jp-widgets-inline-width); height: var(--j= p-widgets-inline-height); line-height: var(--jp-widgets-inline-height); } .widget-datepicker input[type=3D"date"] { flex-grow: 1; flex-shrink: 1; min= -width: 0px; height: var(--jp-widgets-inline-height); border: var(--jp-widg= ets-input-border-width) solid var(--jp-widgets-input-border-color); backgro= und-color: var(--jp-widgets-input-background-color); color: var(--jp-widget= s-input-color); font-size: var(--jp-widgets-font-size); padding: var(--jp-w= idgets-input-padding) calc( var(--jp-widgets-input-padding) * 2 ); box-sizi= ng: border-box; outline: none !important; } .widget-datepicker input[type=3D"date"]:focus { border-color: var(--jp-widg= ets-input-focus-border-color); } .widget-datepicker input[type=3D"date"]:invalid { border-color: var(--jp-wa= rn-color1); } .widget-datepicker input[type=3D"date"]:disabled { opacity: var(--jp-widget= s-disabled-opacity); } .widget-play { width: var(--jp-widgets-inline-width-short); display: flex; = align-items: stretch; } .widget-play .jupyter-button { flex-grow: 1; height: auto; } .widget-play .jupyter-button:disabled { opacity: var(--jp-widgets-disabled-= opacity); } .jupyter-widgets.widget-tab { display: flex; flex-direction: column; } .jupyter-widgets.widget-tab > .p-TabBar { overflow: visible; } .jupyter-widgets.widget-tab > .p-TabBar > .p-TabBar-content { align-items: = flex-end; min-width: 0px; min-height: 0px; } .jupyter-widgets.widget-tab > .widget-tab-contents { width: 100%; box-sizin= g: border-box; margin: 0px; background: var(--jp-layout-color1); color: var= (--jp-ui-font-color1); border: var(--jp-border-width) solid var(--jp-border= -color1); padding: var(--jp-widgets-container-padding); flex-grow: 1; overf= low: auto; } .jupyter-widgets.widget-tab > .p-TabBar { font: var(--jp-widgets-font-size)= Helvetica, Arial, sans-serif; min-height: calc(var(--jp-widgets-horizontal= -tab-height) + var(--jp-border-width)); } .jupyter-widgets.widget-tab > .p-TabBar .p-TabBar-tab { flex: 0 1 var(--jp-= widgets-horizontal-tab-width); min-width: 35px; min-height: calc(var(--jp-w= idgets-horizontal-tab-height) + var(--jp-border-width)); line-height: var(-= -jp-widgets-horizontal-tab-height); margin-left: calc(-1 * var(--jp-border-= width)); padding: 0px 10px; background: var(--jp-layout-color2); color: var= (--jp-ui-font-color2); border-top-color: ; border-top-style: ; border-top-w= idth: ; border-right-color: ; border-right-style: ; border-right-width: ; b= order-left-color: ; border-left-style: ; border-left-width: ; border-image-= source: ; border-image-slice: ; border-image-width: ; border-image-outset: = ; border-image-repeat: ; border-bottom: none; position: relative; } .jupyter-widgets.widget-tab > .p-TabBar .p-TabBar-tab.p-mod-current { color= : var(--jp-ui-font-color0); background: var(--jp-layout-color1); min-height= : calc(var(--jp-widgets-horizontal-tab-height) + 2 * var(--jp-border-width)= ); transform: translateY(var(--jp-border-width)); overflow: visible; } .jupyter-widgets.widget-tab > .p-TabBar .p-TabBar-tab.p-mod-current::before= { position: absolute; top: calc(-1 * var(--jp-border-width)); left: calc(-= 1 * var(--jp-border-width)); content: ""; height: var(--jp-widgets-horizont= al-tab-top-border); width: calc(100% + 2 * var(--jp-border-width)); backgro= und: var(--jp-brand-color1); } .jupyter-widgets.widget-tab > .p-TabBar .p-TabBar-tab:first-child { margin-= left: 0px; } .jupyter-widgets.widget-tab > .p-TabBar .p-TabBar-tab:hover:not(.p-mod-curr= ent) { background: var(--jp-layout-color1); color: var(--jp-ui-font-color1)= ; } .jupyter-widgets.widget-tab > .p-TabBar .p-mod-closable > .p-TabBar-tabClos= eIcon { margin-left: 4px; } .jupyter-widgets.widget-tab > .p-TabBar .p-mod-closable > .p-TabBar-tabClos= eIcon::before { font-family: FontAwesome; content: "=EF=80=8D"; } .jupyter-widgets.widget-tab > .p-TabBar .p-TabBar-tabIcon, .jupyter-widgets= .widget-tab > .p-TabBar .p-TabBar-tabLabel, .jupyter-widgets.widget-tab > .= p-TabBar .p-TabBar-tabCloseIcon { line-height: var(--jp-widgets-horizontal-= tab-height); } .p-Collapse { display: flex; flex-direction: column; align-items: stretch; = } .p-Collapse-header { cursor: pointer; color: var(--jp-ui-font-color2); back= ground-color: var(--jp-layout-color2); border: var(--jp-widgets-border-widt= h) solid var(--jp-border-color1); padding: calc(var(--jp-widgets-container-= padding) * 2 / 3) var(--jp-widgets-container-padding); font-weight: bold; } .p-Collapse-header:hover { background-color: var(--jp-layout-color1); color= : var(--jp-ui-font-color1); } .p-Collapse-open > .p-Collapse-header { background-color: var(--jp-layout-c= olor1); color: var(--jp-ui-font-color0); cursor: default; border-bottom: no= ne; } .p-Collapse .p-Collapse-header::before { content: "=EF=83=9A=C2=A0"; displa= y: inline-block; font-style: normal; font-variant: normal; font-weight: nor= mal; font-stretch: normal; line-height: 1; font-family: FontAwesome; font-s= ize: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; } .p-Collapse-open > .p-Collapse-header::before { content: "=EF=83=97=C2=A0";= } .p-Collapse-contents { padding: var(--jp-widgets-container-padding); backgr= ound-color: var(--jp-layout-color1); color: var(--jp-ui-font-color1); borde= r-left: var(--jp-widgets-border-width) solid var(--jp-border-color1); borde= r-right: var(--jp-widgets-border-width) solid var(--jp-border-color1); bord= er-bottom: var(--jp-widgets-border-width) solid var(--jp-border-color1); ov= erflow: auto; } .p-Accordion { display: flex; flex-direction: column; align-items: stretch;= } .p-Accordion .p-Collapse { margin-bottom: 0px; } .p-Accordion .p-Collapse + .p-Collapse { margin-top: 4px; } .widget-html, .widget-htmlmath { font-size: var(--jp-widgets-font-size); } .widget-html > .widget-html-content, .widget-htmlmath > .widget-html-conten= t { align-self: stretch; flex-grow: 1; flex-shrink: 1; line-height: var(--j= p-widgets-inline-height); position: relative; } .widget-image { max-width: 100%; height: auto; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-a08c05c4-bb9c-4033-a3bd-151c9515d12c@mhtml.blink @charset "utf-8"; =0A ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: cid:css-3d5e49ce-e6d4-4f61-aa75-39b3e72a0ee9@mhtml.blink @charset "utf-8"; .dataframe tbody tr th:only-of-type { vertical-align: middle; } .dataframe tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: http://localhost:8888/static/components/jquery-ui/themes/smoothness/jquery-ui.min.css?v=3c2a865c832a1322285c55c6ed99abb2 @charset "utf-8"; .ui-helper-hidden { display: none; } .ui-helper-hidden-accessible { border: 0px; clip: rect(0px, 0px, 0px, 0px);= height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absol= ute; width: 1px; } .ui-helper-reset { margin: 0px; padding: 0px; border: 0px; outline: 0px; li= ne-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } .ui-helper-clearfix::before, .ui-helper-clearfix::after { content: ""; disp= lay: table; border-collapse: collapse; } .ui-helper-clearfix::after { clear: both; } .ui-helper-zfix { width: 100%; height: 100%; top: 0px; left: 0px; position:= absolute; opacity: 0; } .ui-front { z-index: 100; } .ui-state-disabled { pointer-events: none; cursor: default !important; } .ui-icon { display: inline-block; vertical-align: middle; margin-top: -0.25= em; position: relative; text-indent: -99999px; overflow: hidden; background= -repeat: no-repeat; } .ui-widget-icon-block { left: 50%; margin-left: -8px; display: block; } .ui-widget-overlay { position: fixed; top: 0px; left: 0px; width: 100%; hei= ght: 100%; } .ui-accordion .ui-accordion-header { display: block; cursor: pointer; posit= ion: relative; margin: 2px 0px 0px; padding: 0.5em 0.5em 0.5em 0.7em; font-= size: 100%; } .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0px; = overflow: auto; } .ui-autocomplete { position: absolute; top: 0px; left: 0px; cursor: default= ; } .ui-menu { list-style: none; padding: 0px; margin: 0px; display: block; out= line: 0px; } .ui-menu .ui-menu { position: absolute; } .ui-menu .ui-menu-item { margin: 0px; cursor: pointer; list-style-image: ur= l("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAA= IBRAA7"); } .ui-menu .ui-menu-item-wrapper { position: relative; padding: 3px 1em 3px 0= .4em; } .ui-menu .ui-menu-divider { margin: 5px 0px; height: 0px; font-size: 0px; l= ine-height: 0; border-width: 1px 0px 0px; } .ui-menu .ui-state-focus, .ui-menu .ui-state-active { margin: -1px; } .ui-menu-icons { position: relative; } .ui-menu-icons .ui-menu-item-wrapper { padding-left: 2em; } .ui-menu .ui-icon { position: absolute; top: 0px; bottom: 0px; left: 0.2em;= margin: auto 0px; } .ui-menu .ui-menu-icon { left: auto; right: 0px; } .ui-button { padding: 0.4em 1em; display: inline-block; position: relative;= line-height: normal; margin-right: 0.1em; cursor: pointer; vertical-align:= middle; text-align: center; user-select: none; overflow: visible; } .ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-butt= on:active { text-decoration: none; } .ui-button-icon-only { width: 2em; box-sizing: border-box; text-indent: -99= 99px; white-space: nowrap; } input.ui-button.ui-button-icon-only { text-indent: 0px; } .ui-button-icon-only .ui-icon { position: absolute; top: 50%; left: 50%; ma= rgin-top: -8px; margin-left: -8px; } .ui-button.ui-icon-notext .ui-icon { padding: 0px; width: 2.1em; height: 2.= 1em; text-indent: -9999px; white-space: nowrap; } input.ui-button.ui-icon-notext .ui-icon { width: auto; height: auto; text-i= ndent: 0px; white-space: normal; padding: 0.4em 1em; } .ui-controlgroup { vertical-align: middle; display: inline-block; } .ui-controlgroup > .ui-controlgroup-item { float: left; margin-left: 0px; m= argin-right: 0px; } .ui-controlgroup > .ui-controlgroup-item:focus, .ui-controlgroup > .ui-cont= rolgroup-item.ui-visual-focus { z-index: 9999; } .ui-controlgroup-vertical > .ui-controlgroup-item { display: block; float: = none; width: 100%; margin-top: 0px; margin-bottom: 0px; text-align: left; } .ui-controlgroup-vertical .ui-controlgroup-item { box-sizing: border-box; } .ui-controlgroup .ui-controlgroup-label { padding: 0.4em 1em; } .ui-controlgroup .ui-controlgroup-label span { font-size: 80%; } .ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item = { border-left: none; } .ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item { = border-top: none; } .ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content { bord= er-right: none; } .ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content { border= -bottom: none; } .ui-controlgroup-vertical .ui-spinner-input { width: calc(100% - 2.4em); } .ui-controlgroup-vertical .ui-spinner .ui-spinner-up { border-top-style: so= lid; } .ui-checkboxradio-label .ui-icon-background { box-shadow: rgb(204, 204, 204= ) 1px 1px 1px inset; border-radius: 0.12em; border: none; } .ui-checkboxradio-radio-label .ui-icon-background { width: 16px; height: 16= px; border-radius: 1em; overflow: visible; border: none; } .ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon, .ui-checkb= oxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon { background-im= age: none; width: 8px; height: 8px; border-width: 4px; border-style: solid;= } .ui-checkboxradio-disabled { pointer-events: none; } .ui-datepicker { width: 17em; padding: 0.2em 0.2em 0px; display: none; } .ui-datepicker .ui-datepicker-header { position: relative; padding: 0.2em 0= px; } .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { po= sition: absolute; top: 2px; width: 1.8em; height: 1.8em; } .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-nex= t-hover { top: 1px; } .ui-datepicker .ui-datepicker-prev { left: 2px; } .ui-datepicker .ui-datepicker-next { right: 2px; } .ui-datepicker .ui-datepicker-prev-hover { left: 1px; } .ui-datepicker .ui-datepicker-next-hover { right: 1px; } .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next= span { display: block; position: absolute; left: 50%; margin-left: -8px; t= op: 50%; margin-top: -8px; } .ui-datepicker .ui-datepicker-title { margin: 0px 2.3em; line-height: 1.8em= ; text-align: center; } .ui-datepicker .ui-datepicker-title select { font-size: 1em; margin: 1px 0p= x; } .ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepic= ker-year { width: 45%; } .ui-datepicker table { width: 100%; font-size: 0.9em; border-collapse: coll= apse; margin: 0px 0px 0.4em; } .ui-datepicker th { padding: 0.7em 0.3em; text-align: center; font-weight: = bold; border: 0px; } .ui-datepicker td { border: 0px; padding: 1px; } .ui-datepicker td span, .ui-datepicker td a { display: block; padding: 0.2e= m; text-align: right; text-decoration: none; } .ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: = 0.7em 0px 0px; padding: 0px 0.2em; border-left: 0px; border-right: 0px; bor= der-bottom: 0px; } .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: 0.5= em 0.2em 0.4em; cursor: pointer; padding: 0.2em 0.6em 0.3em; width: auto; o= verflow: visible; } .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { flo= at: left; } .ui-datepicker.ui-datepicker-multi { width: auto; } .ui-datepicker-multi .ui-datepicker-group { float: left; } .ui-datepicker-multi .ui-datepicker-group table { width: 95%; margin: 0px a= uto 0.4em; } .ui-datepicker-multi-2 .ui-datepicker-group { width: 50%; } .ui-datepicker-multi-3 .ui-datepicker-group { width: 33.3%; } .ui-datepicker-multi-4 .ui-datepicker-group { width: 25%; } .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-d= atepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-= left-width: 0px; } .ui-datepicker-multi .ui-datepicker-buttonpane { clear: left; } .ui-datepicker-row-break { clear: both; width: 100%; font-size: 0px; } .ui-datepicker-rtl { direction: rtl; } .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; } .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; } .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; } .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; } .ui-datepicker-rtl .ui-datepicker-buttonpane { clear: right; } .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; } .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, = .ui-datepicker-rtl .ui-datepicker-group { float: right; } .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, .ui-dat= epicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-righ= t-width: 0px; border-left-width: 1px; } .ui-datepicker .ui-icon { display: block; text-indent: -99999px; overflow: = hidden; background-repeat: no-repeat; left: 0.5em; top: 0.3em; } .ui-dialog { position: absolute; top: 0px; left: 0px; padding: 0.2em; outli= ne: 0px; } .ui-dialog .ui-dialog-titlebar { padding: 0.4em 1em; position: relative; } .ui-dialog .ui-dialog-title { float: left; margin: 0.1em 0px; white-space: = nowrap; width: 90%; overflow: hidden; text-overflow: ellipsis; } .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: 0.3em; to= p: 50%; width: 20px; margin: -10px 0px 0px; padding: 1px; height: 20px; } .ui-dialog .ui-dialog-content { position: relative; border: 0px; padding: 0= .5em 1em; background: none; overflow: auto; } .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0px = 0px; background-image: none; margin-top: 0.5em; padding: 0.3em 1em 0.5em 0.= 4em; } .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } .ui-dialog .ui-dialog-buttonpane button { margin: 0.5em 0.4em 0.5em 0px; cu= rsor: pointer; } .ui-dialog .ui-resizable-n { height: 2px; top: 0px; } .ui-dialog .ui-resizable-e { width: 2px; right: 0px; } .ui-dialog .ui-resizable-s { height: 2px; bottom: 0px; } .ui-dialog .ui-resizable-w { width: 2px; left: 0px; } .ui-dialog .ui-resizable-se, .ui-dialog .ui-resizable-sw, .ui-dialog .ui-re= sizable-ne, .ui-dialog .ui-resizable-nw { width: 7px; height: 7px; } .ui-dialog .ui-resizable-se { right: 0px; bottom: 0px; } .ui-dialog .ui-resizable-sw { left: 0px; bottom: 0px; } .ui-dialog .ui-resizable-ne { right: 0px; top: 0px; } .ui-dialog .ui-resizable-nw { left: 0px; top: 0px; } .ui-draggable .ui-dialog-titlebar { cursor: move; } .ui-draggable-handle { touch-action: none; } .ui-resizable { position: relative; } .ui-resizable-handle { position: absolute; font-size: 0.1px; display: block= ; touch-action: none; } .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-res= izable-handle { display: none; } .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; le= ft: 0px; } .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px;= left: 0px; } .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0px; heig= ht: 100%; } .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0px; heigh= t: 100%; } .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px= ; bottom: 1px; } .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; = bottom: -5px; } .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; = top: -5px; } .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px;= top: -5px; } .ui-progressbar { height: 2em; text-align: left; overflow: hidden; } .ui-progressbar .ui-progressbar-value { margin: -1px; height: 100%; } .ui-progressbar .ui-progressbar-overlay { background: url("data:image/gif;b= ase64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAK= AAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQ= RWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg= 2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKA= AAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP0= 5nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K2= 5+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACg= AAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyx= L5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXl= Kjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgA= KAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLI= hskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqN= fHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAA= CgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1= lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g= 4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABAC= wAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzX= O7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1in= V0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAA= AAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEX= fk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4B= niGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEA= LAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDH= izNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGA= dXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJA= QABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+x= BYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztf= XZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BA= kBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99= HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+= p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw= =3D=3D"); height: 100%; opacity: 0.25; } .ui-progressbar-indeterminate .ui-progressbar-value { background-image: non= e; } .ui-selectable { touch-action: none; } .ui-selectable-helper { position: absolute; z-index: 100; border: 1px dotte= d black; } .ui-selectmenu-menu { padding: 0px; margin: 0px; position: absolute; top: 0= px; left: 0px; display: none; } .ui-selectmenu-menu .ui-menu { overflow: hidden auto; padding-bottom: 1px; = } .ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup { font-size: 1em; font= -weight: bold; line-height: 1.5; padding: 2px 0.4em; margin: 0.5em 0px 0px;= height: auto; border: 0px; } .ui-selectmenu-open { display: block; } .ui-selectmenu-text { display: block; margin-right: 20px; overflow: hidden;= text-overflow: ellipsis; } .ui-selectmenu-button.ui-button { text-align: left; white-space: nowrap; wi= dth: 14em; } .ui-selectmenu-icon.ui-icon { float: right; margin-top: 0px; } .ui-slider { position: relative; text-align: left; } .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em= ; height: 1.2em; cursor: default; touch-action: none; } .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: 0.= 7em; display: block; border: 0px; background-position: 0px 0px; } .ui-slider.ui-state-disabled .ui-slider-handle, .ui-slider.ui-state-disable= d .ui-slider-range { filter: inherit; } .ui-slider-horizontal { height: 0.8em; } .ui-slider-horizontal .ui-slider-handle { top: -0.3em; margin-left: -0.6em;= } .ui-slider-horizontal .ui-slider-range { top: 0px; height: 100%; } .ui-slider-horizontal .ui-slider-range-min { left: 0px; } .ui-slider-horizontal .ui-slider-range-max { right: 0px; } .ui-slider-vertical { width: 0.8em; height: 100px; } .ui-slider-vertical .ui-slider-handle { left: -0.3em; margin-left: 0px; mar= gin-bottom: -0.6em; } .ui-slider-vertical .ui-slider-range { left: 0px; width: 100%; } .ui-slider-vertical .ui-slider-range-min { bottom: 0px; } .ui-slider-vertical .ui-slider-range-max { top: 0px; } .ui-sortable-handle { touch-action: none; } .ui-spinner { position: relative; display: inline-block; overflow: hidden; = padding: 0px; vertical-align: middle; } .ui-spinner-input { border: none; background: none; color: inherit; padding= : 0.222em 0px; margin: 0.2em 2em 0.2em 0.4em; vertical-align: middle; } .ui-spinner-button { width: 1.6em; height: 50%; font-size: 0.5em; padding: = 0px; margin: 0px; text-align: center; position: absolute; cursor: default; = display: block; overflow: hidden; right: 0px; } .ui-spinner a.ui-spinner-button { border-top-style: none; border-bottom-sty= le: none; border-right-style: none; } .ui-spinner-up { top: 0px; } .ui-spinner-down { bottom: 0px; } .ui-tabs { position: relative; padding: 0.2em; } .ui-tabs .ui-tabs-nav { margin: 0px; padding: 0.2em 0.2em 0px; } .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relativ= e; top: 0px; margin: 1px 0.2em 0px 0px; border-bottom-width: 0px; padding: = 0px; white-space: nowrap; } .ui-tabs .ui-tabs-nav .ui-tabs-anchor { float: left; padding: 0.5em 1em; te= xt-decoration: none; } .ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: -1px; padding-bott= om: 1px; } .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, .ui-tabs .ui-tabs-= nav li.ui-state-disabled .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-= loading .ui-tabs-anchor { cursor: text; } .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor { curso= r: pointer; } .ui-tabs .ui-tabs-panel { display: block; border-width: 0px; padding: 1em 1= .4em; background: none; } .ui-tooltip { padding: 8px; position: absolute; z-index: 9999; max-width: 3= 00px; } body .ui-tooltip { border-width: 2px; } .ui-widget { font-family: Verdana, Arial, sans-serif; font-size: 1.1em; } .ui-widget .ui-widget { font-size: 1em; } .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button= { font-family: Verdana, Arial, sans-serif; font-size: 1em; } .ui-widget.ui-widget-content { border: 1px solid rgb(211, 211, 211); } .ui-widget-content { border: 1px solid rgb(170, 170, 170); background: rgb(= 255, 255, 255); color: rgb(34, 34, 34); } .ui-widget-content a { color: rgb(34, 34, 34); } .ui-widget-header { border: 1px solid rgb(170, 170, 170); background: url("= images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x rgb(204,= 204, 204); color: rgb(34, 34, 34); font-weight: bold; } .ui-widget-header a { color: rgb(34, 34, 34); } .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header = .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, htm= l .ui-button.ui-state-disabled:active { border: 1px solid rgb(211, 211, 211= ); background: url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat= -x rgb(230, 230, 230); font-weight: normal; color: rgb(85, 85, 85); } .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited,= a.ui-button, a:link.ui-button, a:visited.ui-button, .ui-button { color: rg= b(85, 85, 85); text-decoration: none; } .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-= state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widge= t-header .ui-state-focus, .ui-button:hover, .ui-button:focus { border: 1px = solid rgb(153, 153, 153); background: url("images/ui-bg_glass_75_dadada_1x4= 00.png") 50% 50% repeat-x rgb(218, 218, 218); font-weight: normal; color: r= gb(33, 33, 33); } .ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-sta= te-hover a:visited, .ui-state-focus a, .ui-state-focus a:hover, .ui-state-f= ocus a:link, .ui-state-focus a:visited, a.ui-button:hover, a.ui-button:focu= s { color: rgb(33, 33, 33); text-decoration: none; } .ui-visual-focus { box-shadow: rgb(94, 158, 214) 0px 0px 3px 1px; } .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .u= i-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-= active:hover { border: 1px solid rgb(170, 170, 170); background: url("image= s/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x rgb(255, 255, 255); fo= nt-weight: normal; color: rgb(33, 33, 33); } .ui-icon-background, .ui-state-active .ui-icon-background { border: rgb(170= , 170, 170); background-color: rgb(33, 33, 33); } .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { c= olor: rgb(33, 33, 33); text-decoration: none; } .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-hea= der .ui-state-highlight { border: 1px solid rgb(252, 239, 161); background:= url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x rgb(251, 24= 9, 238); color: rgb(54, 54, 54); } .ui-state-checked { border: 1px solid rgb(252, 239, 161); background: rgb(2= 51, 249, 238); } .ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget= -header .ui-state-highlight a { color: rgb(54, 54, 54); } .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-= state-error { border: 1px solid rgb(205, 10, 10); background: url("images/u= i-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x rgb(254, 241, 236); color= : rgb(205, 10, 10); } .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header = .ui-state-error a { color: rgb(205, 10, 10); } .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-h= eader .ui-state-error-text { color: rgb(205, 10, 10); } .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-h= eader .ui-priority-primary { font-weight: bold; } .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widg= et-header .ui-priority-secondary { opacity: 0.7; font-weight: normal; } .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-heade= r .ui-state-disabled { opacity: 0.35; background-image: none; } .ui-state-disabled .ui-icon { } .ui-icon { width: 16px; height: 16px; } .ui-icon, .ui-widget-content .ui-icon { background-image: url("images/ui-ic= ons_222222_256x240.png"); } .ui-widget-header .ui-icon { background-image: url("images/ui-icons_222222_= 256x240.png"); } .ui-state-hover .ui-icon, .ui-state-focus .ui-icon, .ui-button:hover .ui-ic= on, .ui-button:focus .ui-icon { background-image: url("images/ui-icons_4545= 45_256x240.png"); } .ui-state-active .ui-icon, .ui-button:active .ui-icon { background-image: u= rl("images/ui-icons_454545_256x240.png"); } .ui-state-highlight .ui-icon, .ui-button .ui-state-highlight.ui-icon { back= ground-image: url("images/ui-icons_2e83ff_256x240.png"); } .ui-state-error .ui-icon, .ui-state-error-text .ui-icon { background-image:= url("images/ui-icons_cd0a0a_256x240.png"); } .ui-button .ui-icon { background-image: url("images/ui-icons_888888_256x240= .png"); } .ui-icon-blank { background-position: 16px 16px; } .ui-icon-caret-1-n { background-position: 0px 0px; } .ui-icon-caret-1-ne { background-position: -16px 0px; } .ui-icon-caret-1-e { background-position: -32px 0px; } .ui-icon-caret-1-se { background-position: -48px 0px; } .ui-icon-caret-1-s { background-position: -65px 0px; } .ui-icon-caret-1-sw { background-position: -80px 0px; } .ui-icon-caret-1-w { background-position: -96px 0px; } .ui-icon-caret-1-nw { background-position: -112px 0px; } .ui-icon-caret-2-n-s { background-position: -128px 0px; } .ui-icon-caret-2-e-w { background-position: -144px 0px; } .ui-icon-triangle-1-n { background-position: 0px -16px; } .ui-icon-triangle-1-ne { background-position: -16px -16px; } .ui-icon-triangle-1-e { background-position: -32px -16px; } .ui-icon-triangle-1-se { background-position: -48px -16px; } .ui-icon-triangle-1-s { background-position: -65px -16px; } .ui-icon-triangle-1-sw { background-position: -80px -16px; } .ui-icon-triangle-1-w { background-position: -96px -16px; } .ui-icon-triangle-1-nw { background-position: -112px -16px; } .ui-icon-triangle-2-n-s { background-position: -128px -16px; } .ui-icon-triangle-2-e-w { background-position: -144px -16px; } .ui-icon-arrow-1-n { background-position: 0px -32px; } .ui-icon-arrow-1-ne { background-position: -16px -32px; } .ui-icon-arrow-1-e { background-position: -32px -32px; } .ui-icon-arrow-1-se { background-position: -48px -32px; } .ui-icon-arrow-1-s { background-position: -65px -32px; } .ui-icon-arrow-1-sw { background-position: -80px -32px; } .ui-icon-arrow-1-w { background-position: -96px -32px; } .ui-icon-arrow-1-nw { background-position: -112px -32px; } .ui-icon-arrow-2-n-s { background-position: -128px -32px; } .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } .ui-icon-arrow-2-e-w { background-position: -160px -32px; } .ui-icon-arrow-2-se-nw { background-position: -176px -32px; } .ui-icon-arrowstop-1-n { background-position: -192px -32px; } .ui-icon-arrowstop-1-e { background-position: -208px -32px; } .ui-icon-arrowstop-1-s { background-position: -224px -32px; } .ui-icon-arrowstop-1-w { background-position: -240px -32px; } .ui-icon-arrowthick-1-n { background-position: 1px -48px; } .ui-icon-arrowthick-1-ne { background-position: -16px -48px; } .ui-icon-arrowthick-1-e { background-position: -32px -48px; } .ui-icon-arrowthick-1-se { background-position: -48px -48px; } .ui-icon-arrowthick-1-s { background-position: -64px -48px; } .ui-icon-arrowthick-1-sw { background-position: -80px -48px; } .ui-icon-arrowthick-1-w { background-position: -96px -48px; } .ui-icon-arrowthick-1-nw { background-position: -112px -48px; } .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } .ui-icon-arrowreturnthick-1-w { background-position: 0px -64px; } .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } .ui-icon-arrowreturn-1-w { background-position: -64px -64px; } .ui-icon-arrowreturn-1-n { background-position: -80px -64px; } .ui-icon-arrowreturn-1-e { background-position: -96px -64px; } .ui-icon-arrowreturn-1-s { background-position: -112px -64px; } .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } .ui-icon-arrow-4 { background-position: 0px -80px; } .ui-icon-arrow-4-diag { background-position: -16px -80px; } .ui-icon-extlink { background-position: -32px -80px; } .ui-icon-newwin { background-position: -48px -80px; } .ui-icon-refresh { background-position: -64px -80px; } .ui-icon-shuffle { background-position: -80px -80px; } .ui-icon-transfer-e-w { background-position: -96px -80px; } .ui-icon-transferthick-e-w { background-position: -112px -80px; } .ui-icon-folder-collapsed { background-position: 0px -96px; } .ui-icon-folder-open { background-position: -16px -96px; } .ui-icon-document { background-position: -32px -96px; } .ui-icon-document-b { background-position: -48px -96px; } .ui-icon-note { background-position: -64px -96px; } .ui-icon-mail-closed { background-position: -80px -96px; } .ui-icon-mail-open { background-position: -96px -96px; } .ui-icon-suitcase { background-position: -112px -96px; } .ui-icon-comment { background-position: -128px -96px; } .ui-icon-person { background-position: -144px -96px; } .ui-icon-print { background-position: -160px -96px; } .ui-icon-trash { background-position: -176px -96px; } .ui-icon-locked { background-position: -192px -96px; } .ui-icon-unlocked { background-position: -208px -96px; } .ui-icon-bookmark { background-position: -224px -96px; } .ui-icon-tag { background-position: -240px -96px; } .ui-icon-home { background-position: 0px -112px; } .ui-icon-flag { background-position: -16px -112px; } .ui-icon-calendar { background-position: -32px -112px; } .ui-icon-cart { background-position: -48px -112px; } .ui-icon-pencil { background-position: -64px -112px; } .ui-icon-clock { background-position: -80px -112px; } .ui-icon-disk { background-position: -96px -112px; } .ui-icon-calculator { background-position: -112px -112px; } .ui-icon-zoomin { background-position: -128px -112px; } .ui-icon-zoomout { background-position: -144px -112px; } .ui-icon-search { background-position: -160px -112px; } .ui-icon-wrench { background-position: -176px -112px; } .ui-icon-gear { background-position: -192px -112px; } .ui-icon-heart { background-position: -208px -112px; } .ui-icon-star { background-position: -224px -112px; } .ui-icon-link { background-position: -240px -112px; } .ui-icon-cancel { background-position: 0px -128px; } .ui-icon-plus { background-position: -16px -128px; } .ui-icon-plusthick { background-position: -32px -128px; } .ui-icon-minus { background-position: -48px -128px; } .ui-icon-minusthick { background-position: -64px -128px; } .ui-icon-close { background-position: -80px -128px; } .ui-icon-closethick { background-position: -96px -128px; } .ui-icon-key { background-position: -112px -128px; } .ui-icon-lightbulb { background-position: -128px -128px; } .ui-icon-scissors { background-position: -144px -128px; } .ui-icon-clipboard { background-position: -160px -128px; } .ui-icon-copy { background-position: -176px -128px; } .ui-icon-contact { background-position: -192px -128px; } .ui-icon-image { background-position: -208px -128px; } .ui-icon-video { background-position: -224px -128px; } .ui-icon-script { background-position: -240px -128px; } .ui-icon-alert { background-position: 0px -144px; } .ui-icon-info { background-position: -16px -144px; } .ui-icon-notice { background-position: -32px -144px; } .ui-icon-help { background-position: -48px -144px; } .ui-icon-check { background-position: -64px -144px; } .ui-icon-bullet { background-position: -80px -144px; } .ui-icon-radio-on { background-position: -96px -144px; } .ui-icon-radio-off { background-position: -112px -144px; } .ui-icon-pin-w { background-position: -128px -144px; } .ui-icon-pin-s { background-position: -144px -144px; } .ui-icon-play { background-position: 0px -160px; } .ui-icon-pause { background-position: -16px -160px; } .ui-icon-seek-next { background-position: -32px -160px; } .ui-icon-seek-prev { background-position: -48px -160px; } .ui-icon-seek-end { background-position: -64px -160px; } .ui-icon-seek-start { background-position: -80px -160px; } .ui-icon-seek-first { background-position: -80px -160px; } .ui-icon-stop { background-position: -96px -160px; } .ui-icon-eject { background-position: -112px -160px; } .ui-icon-volume-off { background-position: -128px -160px; } .ui-icon-volume-on { background-position: -144px -160px; } .ui-icon-power { background-position: 0px -176px; } .ui-icon-signal-diag { background-position: -16px -176px; } .ui-icon-signal { background-position: -32px -176px; } .ui-icon-battery-0 { background-position: -48px -176px; } .ui-icon-battery-1 { background-position: -64px -176px; } .ui-icon-battery-2 { background-position: -80px -176px; } .ui-icon-battery-3 { background-position: -96px -176px; } .ui-icon-circle-plus { background-position: 0px -192px; } .ui-icon-circle-minus { background-position: -16px -192px; } .ui-icon-circle-close { background-position: -32px -192px; } .ui-icon-circle-triangle-e { background-position: -48px -192px; } .ui-icon-circle-triangle-s { background-position: -64px -192px; } .ui-icon-circle-triangle-w { background-position: -80px -192px; } .ui-icon-circle-triangle-n { background-position: -96px -192px; } .ui-icon-circle-arrow-e { background-position: -112px -192px; } .ui-icon-circle-arrow-s { background-position: -128px -192px; } .ui-icon-circle-arrow-w { background-position: -144px -192px; } .ui-icon-circle-arrow-n { background-position: -160px -192px; } .ui-icon-circle-zoomin { background-position: -176px -192px; } .ui-icon-circle-zoomout { background-position: -192px -192px; } .ui-icon-circle-check { background-position: -208px -192px; } .ui-icon-circlesmall-plus { background-position: 0px -208px; } .ui-icon-circlesmall-minus { background-position: -16px -208px; } .ui-icon-circlesmall-close { background-position: -32px -208px; } .ui-icon-squaresmall-plus { background-position: -48px -208px; } .ui-icon-squaresmall-minus { background-position: -64px -208px; } .ui-icon-squaresmall-close { background-position: -80px -208px; } .ui-icon-grip-dotted-vertical { background-position: 0px -224px; } .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } .ui-icon-grip-solid-vertical { background-position: -32px -224px; } .ui-icon-grip-solid-horizontal { background-position: -48px -224px; } .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } .ui-icon-grip-diagonal-se { background-position: -80px -224px; } .ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { border-top= -left-radius: 4px; } .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { border-to= p-right-radius: 4px; } .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { border-= bottom-left-radius: 4px; } .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { border= -bottom-right-radius: 4px; } .ui-widget-overlay { background: rgb(170, 170, 170); opacity: 0.3; } .ui-widget-shadow { box-shadow: rgb(170, 170, 170) -8px -8px 8px; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: http://localhost:8888/static/components/jquery-typeahead/dist/jquery.typeahead.min.css?v=9df10041c3e07da766e7c48dd4c35e4a @charset "utf-8"; .typeahead__container button, .typeahead__container input, .typeahead__cont= ainer optgroup, .typeahead__container select, .typeahead__container textare= a { font: inherit; margin: 0px; } .typeahead__container optgroup { font-weight: 700; } .typeahead__container button, .typeahead__container input { overflow: visib= le; } .typeahead__container button, .typeahead__container select { text-transform= : none; } .typeahead__container [type=3D"reset"], .typeahead__container [type=3D"subm= it"], .typeahead__container button, .typeahead__container html [type=3D"but= ton"] { appearance: button; } .typeahead__container fieldset { border: 1px solid silver; margin: 0px 2px;= padding: 0.35em 0.625em 0.75em; } .typeahead__container legend { box-sizing: border-box; color: inherit; disp= lay: table; max-width: 100%; padding: 0px; white-space: normal; } .typeahead__container textarea { overflow: auto; } .typeahead__container [type=3D"checkbox"], .typeahead__container [type=3D"r= adio"] { box-sizing: border-box; padding: 0px; } .typeahead__container [type=3D"number"]::-webkit-inner-spin-button, .typeah= ead__container [type=3D"number"]::-webkit-outer-spin-button { height: auto;= } .typeahead__container ::-webkit-input-placeholder { color: inherit; opacity= : 0.54; } .typeahead__container ::-webkit-file-upload-button { appearance: button; fo= nt: inherit; } .typeahead__container { position: relative; font: 1rem Lato, "Helvetica Neu= e", Arial, Helvetica, sans-serif; } .typeahead__container * { box-sizing: border-box; outline: 0px; } .typeahead__query { position: relative; z-index: 2; width: 100%; } .typeahead__filter { position: relative; } .typeahead__filter button { min-width: 100%; white-space: nowrap; } .typeahead__filter button::after { display: inline-block; margin-left: 4px;= width: 0px; height: 0px; vertical-align: -2px; content: ""; border-width: = 4px; border-style: solid; border-top-color: initial; border-image: initial;= border-right-color: transparent; border-bottom-color: transparent; border-= left-color: transparent; } .typeahead__field { display: flex; position: relative; width: 100%; } .typeahead__button button { border-top-right-radius: 2px; border-bottom-rig= ht-radius: 2px; } .typeahead__field { color: rgb(85, 85, 85); } .typeahead__field .typeahead__hint, .typeahead__field [contenteditable], .t= ypeahead__field input, .typeahead__field textarea { display: block; width: = 100%; line-height: 1.25; min-height: calc(2.25rem + 2px); padding: 0.5rem 0= .75rem; background: rgb(255, 255, 255); border: 1px solid rgb(204, 204, 204= ); border-radius: 2px 0px 0px 2px; appearance: none; box-sizing: border-box= ; } .typeahead__field .typeahead__hint:active, .typeahead__field .typeahead__hi= nt:focus, .typeahead__field [contenteditable]:active, .typeahead__field [co= ntenteditable]:focus, .typeahead__field input:active, .typeahead__field inp= ut:focus, .typeahead__field textarea:active, .typeahead__field textarea:foc= us { border-color: rgb(102, 175, 233); } .typeahead__container.hint .typeahead__field [contenteditable], .typeahead_= _container.hint .typeahead__field input, .typeahead__container.hint .typeah= ead__field textarea { background: transparent; } .typeahead__container.hint .typeahead__query > :last-child, .typeahead__hin= t { background: rgb(255, 255, 255); } .typeahead__container button { display: inline-block; margin-bottom: 0px; t= ext-align: center; touch-action: manipulation; cursor: pointer; background-= color: rgb(255, 255, 255); border: 1px solid rgb(204, 204, 204); line-heigh= t: 1.25; padding: 0.5rem 0.75rem; user-select: none; color: rgb(85, 85, 85)= ; } .typeahead__container button:focus, .typeahead__container button:hover { co= lor: rgb(60, 60, 60); background-color: rgb(245, 245, 245); border-color: r= gb(179, 179, 179); } .typeahead__container button.active, .typeahead__container button:active { = background-image: none; } .typeahead__container button:active, .typeahead__container button:focus { b= order-color: rgb(102, 175, 233); } .typeahead__container button.disabled, .typeahead__container button[disable= d], .typeahead__container input.disabled, .typeahead__container input[disab= led] { cursor: not-allowed; pointer-events: none; opacity: 0.65; box-shadow= : none; background-color: rgb(255, 255, 255); border-color: rgb(204, 204, 2= 04); } .typeahead__container .typeahead__field .typeahead__hint, .typeahead__conta= iner .typeahead__field .typeahead__label-container, .typeahead__container .= typeahead__field [contenteditable], .typeahead__container .typeahead__field= input, .typeahead__container .typeahead__field textarea { padding-right: 3= 2px; } .typeahead__button, .typeahead__filter { z-index: 1; } .typeahead__button button, .typeahead__filter button { margin-left: -1px; b= order-bottom-left-radius: 0px; border-top-left-radius: 0px; } .typeahead__button:active, .typeahead__button:active button:active, .typeah= ead__button:active button:focus, .typeahead__button:focus, .typeahead__butt= on:focus button:active, .typeahead__button:focus button:focus, .typeahead__= button:hover, .typeahead__button:hover button:active, .typeahead__button:ho= ver button:focus, .typeahead__filter:active, .typeahead__filter:active butt= on:active, .typeahead__filter:active button:focus, .typeahead__filter:focus= , .typeahead__filter:focus button:active, .typeahead__filter:focus button:f= ocus, .typeahead__filter:hover, .typeahead__filter:hover button:active, .ty= peahead__filter:hover button:focus { z-index: 5; } .typeahead__filter + .typeahead__button button { margin-left: -2px; } .typeahead__container.filter .typeahead__filter { z-index: 5; } .typeahead__dropdown, .typeahead__list { position: absolute; left: 0px; z-i= ndex: 4; width: 100%; min-width: 160px; padding: 5px 0px; margin: 2px 0px 0= px; list-style: none; text-align: left; background-color: rgb(255, 255, 255= ); border: 1px solid rgb(204, 204, 204); border-radius: 2px; background-cli= p: padding-box; } .typeahead__result.detached .typeahead__list { position: relative; z-index:= 6; top: auto; left: auto; } .typeahead__dropdown { right: 0px; left: auto; z-index: 5; } .typeahead__list > li { position: relative; border-top: 1px solid rgb(204, = 204, 204); } .typeahead__list > li:first-child { border-top: none; } .typeahead__dropdown .typeahead__dropdown-item[disabled] > a, .typeahead__l= ist .typeahead__item[disabled] > a { cursor: not-allowed; color: rgb(186, 1= 86, 186); background-color: rgb(250, 250, 250); } .typeahead__dropdown .typeahead__dropdown-item > a, .typeahead__list .typea= head__item > a { display: block; padding: 0.5rem 0.75rem; clear: both; colo= r: rgb(51, 51, 51); text-decoration: none; } .typeahead__dropdown .typeahead__dropdown-item:not([disabled]).active > a, = .typeahead__dropdown .typeahead__dropdown-item:not([disabled]) > a:focus, .= typeahead__dropdown .typeahead__dropdown-item:not([disabled]) > a:hover, .t= ypeahead__list .typeahead__item:not([disabled]).active > a, .typeahead__lis= t .typeahead__item:not([disabled]) > a:focus, .typeahead__list .typeahead__= item:not([disabled]) > a:hover { background-color: rgb(245, 245, 245); colo= r: rgb(60, 60, 60); } .typeahead__list.empty > li { padding: 0.5rem 0.75rem; color: rgb(51, 51, 5= 1); } .typeahead__list > .typeahead__group { border-color: rgb(191, 222, 246); fo= nt-weight: 700; } .typeahead__list > .typeahead__group:first-child { border-top: 1px solid rg= b(191, 222, 246); } .typeahead__list > .typeahead__group.active > a, .typeahead__list > .typeah= ead__group > a, .typeahead__list > .typeahead__group > a:focus, .typeahead_= _list > .typeahead__group > a:hover { cursor: default; color: rgb(23, 99, 1= 59); background: rgb(236, 245, 252); display: block; padding: 0.5rem 0.75re= m; clear: both; text-decoration: none; } .typeahead__list > li.typeahead__group + li.typeahead__item { border-color:= rgb(191, 222, 246); } .typeahead__container.backdrop + .typeahead__backdrop, .typeahead__containe= r.filter .typeahead__dropdown, .typeahead__container.hint .typeahead__hint,= .typeahead__container.result .typeahead__list { display: block !important;= } .typeahead__container + .typeahead__backdrop, .typeahead__container .typeah= ead__dropdown, .typeahead__container .typeahead__hint, .typeahead__containe= r .typeahead__list { display: none !important; } .typeahead__dropdown li:last-child { margin-top: 5px; padding-top: 5px; bor= der-top: 1px solid rgb(204, 204, 204); } .typeahead__cancel-button { user-select: none; position: absolute; right: 0= px; cursor: pointer; line-height: 1.25; padding: 0.5rem 0.75rem; visibility= : hidden; } .typeahead__label .typeahead__cancel-button { visibility: visible; right: 4= px; } .typeahead__container.cancel:not(.loading) .typeahead__cancel-button, .type= ahead__label .typeahead__cancel-button { visibility: visible; } .typeahead__container.cancel:not(.loading) .typeahead__cancel-button:hover,= .typeahead__label .typeahead__cancel-button:hover { color: rgb(208, 2, 27)= ; } .typeahead__search-icon { padding: 0px 1.25rem; width: 16px; height: 16px; = background: url("data:image/svg+xml;charset=3Dutf8;base64,PD94bWwgdmVyc2lvb= j0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxs= dXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCB= CdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bW= xuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZ= D0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDI1MC4zMTMgMjUwLjMxMyIg= c3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjUwLjMxMyAyNTAuMzEzOyIgeG1sOnN= wYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCI+CjxnIGlkPSJTZWFyY2= giPgoJPHBhdGggc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkOyIgZ= D0iTTI0NC4xODYsMjE0LjYwNGwtNTQuMzc5LTU0LjM3OGMtMC4yODktMC4yODktMC42MjgtMC40= OTEtMC45My0wLjc2ICAgYzEwLjctMTYuMjMxLDE2Ljk0NS0zNS42NiwxNi45NDUtNTYuNTU0QzI= wNS44MjIsNDYuMDc1LDE1OS43NDcsMCwxMDIuOTExLDBTMCw0Ni4wNzUsMCwxMDIuOTExICAgYz= AsNTYuODM1LDQ2LjA3NCwxMDIuOTExLDEwMi45MSwxMDIuOTExYzIwLjg5NSwwLDQwLjMyMy02L= jI0NSw1Ni41NTQtMTYuOTQ1YzAuMjY5LDAuMzAxLDAuNDcsMC42NCwwLjc1OSwwLjkyOWw1NC4z= OCw1NC4zOCAgIGM4LjE2OSw4LjE2OCwyMS40MTMsOC4xNjgsMjkuNTgzLDBDMjUyLjM1NCwyMzY= uMDE3LDI1Mi4zNTQsMjIyLjc3MywyNDQuMTg2LDIxNC42MDR6IE0xMDIuOTExLDE3MC4xNDYgIC= BjLTM3LjEzNCwwLTY3LjIzNi0zMC4xMDItNjcuMjM2LTY3LjIzNWMwLTM3LjEzNCwzMC4xMDMtN= jcuMjM2LDY3LjIzNi02Ny4yMzZjMzcuMTMyLDAsNjcuMjM1LDMwLjEwMyw2Ny4yMzUsNjcuMjM2= ICAgQzE3MC4xNDYsMTQwLjA0NCwxNDAuMDQzLDE3MC4xNDYsMTAyLjkxMSwxNzAuMTQ2eiIgZml= sbD0iIzU1NTU1NSIvPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cj= xnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnP= go8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=3D") 50%= center no-repeat scroll transparent; } .typeahead__container.loading .typeahead__query::after, .typeahead__contain= er.loading .typeahead__query::before { transition: all 0s linear 0s, opacit= y 0.2s ease 0s; position: absolute; z-index: 3; content: ""; top: 50%; righ= t: 0.55em; margin-top: -0.675rem; width: 1.35rem; height: 1.35rem; box-sizi= ng: border-box; border-radius: 500rem; border-style: solid; border-width: 0= .1em; } .typeahead__container.loading .typeahead__query::before { border-color: rgb= a(0, 0, 0, 0.35); } .typeahead__container.loading .typeahead__query::after { animation: 0.6s li= near 0s infinite normal none running a; border-color: rgb(255, 255, 255) tr= ansparent transparent; box-shadow: transparent 0px 0px 0px 1px; } @keyframes a {=20 0% { transform: rotate(0deg); } 100% { transform: rotate(1turn); } } .typeahead__label-container { list-style: none; position: absolute; padding= -top: 0.375rem; padding-left: 6px; width: 100%; flex-wrap: wrap; display: f= lex; } .typeahead__label { display: flex; font-size: 0.875rem; position: relative;= background: rgb(236, 245, 252); border: 1px solid rgb(194, 224, 255); padd= ing-left: 4px; border-radius: 2px; margin-right: 4px; margin-bottom: 0.375r= em; } .typeahead__label > * { align-self: center; } .typeahead__label .typeahead__cancel-button { line-height: normal; height: = auto; position: static; padding: calc(0.25rem - 1px) 6px calc(0.25rem + 1px= ); margin-left: 4px; font-size: 0.875rem; border-left: 1px solid rgb(194, 2= 24, 255); } .typeahead__label .typeahead__cancel-button:hover { background-color: rgb(2= 13, 233, 249); } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: http://localhost:8888/static/components/bootstrap-tour/build/css/bootstrap-tour.min.css?v=d0b3c2fce6056a2ddd5a4513762a94c4 @charset "utf-8"; .tour-backdrop { position: fixed; top: 0px; right: 0px; bottom: 0px; left: = 0px; z-index: 1100; background-color: rgb(0, 0, 0); opacity: 0.8; } .tour-step-backdrop { position: relative; z-index: 1101; background: inheri= t; } .tour-step-background { position: absolute; z-index: 1100; background: inhe= rit; border-radius: 6px; } .popover[class*=3D"tour-"] { z-index: 1100; } .popover[class*=3D"tour-"] .popover-navigation { padding: 9px 14px; } .popover[class*=3D"tour-"] .popover-navigation [data-role=3D"end"] { float:= right; } .popover[class*=3D"tour-"] .popover-navigation [data-role=3D"prev"], .popov= er[class*=3D"tour-"] .popover-navigation [data-role=3D"next"], .popover[cla= ss*=3D"tour-"] .popover-navigation [data-role=3D"end"] { cursor: pointer; } .popover[class*=3D"tour-"] .popover-navigation [data-role=3D"prev"].disable= d, .popover[class*=3D"tour-"] .popover-navigation [data-role=3D"next"].disa= bled, .popover[class*=3D"tour-"] .popover-navigation [data-role=3D"end"].di= sabled { cursor: default; } .popover[class*=3D"tour-"].orphan { position: fixed; margin-top: 0px; } .popover[class*=3D"tour-"].orphan .arrow { display: none; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: http://localhost:8888/static/components/codemirror/lib/codemirror.css?v=fc217d502b05f65616356459c0ec1d62 @charset "utf-8"; .CodeMirror { font-family: monospace; height: 300px; color: black; directio= n: ltr; } .CodeMirror-lines { padding: 4px 0px; } .CodeMirror pre.CodeMirror-line, .CodeMirror pre.CodeMirror-line-like { pad= ding: 0px 4px; } .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler { background-color:= white; } .CodeMirror-gutters { border-right: 1px solid rgb(221, 221, 221); backgroun= d-color: rgb(247, 247, 247); white-space: nowrap; } .CodeMirror-linenumbers { } .CodeMirror-linenumber { padding: 0px 3px 0px 5px; min-width: 20px; text-al= ign: right; color: rgb(153, 153, 153); white-space: nowrap; } .CodeMirror-guttermarker { color: black; } .CodeMirror-guttermarker-subtle { color: rgb(153, 153, 153); } .CodeMirror-cursor { border-left: 1px solid black; border-right: none; widt= h: 0px; } .CodeMirror div.CodeMirror-secondarycursor { border-left: 1px solid silver;= } .cm-fat-cursor .CodeMirror-cursor { width: auto; background: rgb(119, 238, = 119); border: 0px !important; } .cm-fat-cursor div.CodeMirror-cursors { z-index: 1; } .cm-fat-cursor-mark { background-color: rgba(20, 255, 20, 0.5); animation: = 1.06s steps(1) 0s infinite normal none running blink; } .cm-animate-fat-cursor { width: auto; border: 0px; animation: 1.06s steps(1= ) 0s infinite normal none running blink; background-color: rgb(119, 238, 11= 9); } @-webkit-keyframes blink {=20 0% { } 50% { background-color: transparent; } 100% { } } @keyframes blink {=20 0% { } 50% { background-color: transparent; } 100% { } } .CodeMirror-overwrite .CodeMirror-cursor { } .cm-tab { display: inline-block; text-decoration: inherit; } .CodeMirror-rulers { position: absolute; left: 0px; right: 0px; top: -50px;= bottom: 0px; overflow: hidden; } .CodeMirror-ruler { border-left: 1px solid rgb(204, 204, 204); top: 0px; bo= ttom: 0px; position: absolute; } .cm-s-default .cm-header { color: blue; } .cm-s-default .cm-quote { color: rgb(0, 153, 0); } .cm-negative { color: rgb(221, 68, 68); } .cm-positive { color: rgb(34, 153, 34); } .cm-header, .cm-strong { font-weight: bold; } .cm-em { font-style: italic; } .cm-link { text-decoration: underline; } .cm-strikethrough { text-decoration: line-through; } .cm-s-default .cm-keyword { color: rgb(119, 0, 136); } .cm-s-default .cm-atom { color: rgb(34, 17, 153); } .cm-s-default .cm-number { color: rgb(17, 102, 68); } .cm-s-default .cm-def { color: rgb(0, 0, 255); } .cm-s-default .cm-variable, .cm-s-default .cm-punctuation, .cm-s-default .c= m-property, .cm-s-default .cm-operator { } .cm-s-default .cm-variable-2 { color: rgb(0, 85, 170); } .cm-s-default .cm-variable-3, .cm-s-default .cm-type { color: rgb(0, 136, 8= 5); } .cm-s-default .cm-comment { color: rgb(170, 85, 0); } .cm-s-default .cm-string { color: rgb(170, 17, 17); } .cm-s-default .cm-string-2 { color: rgb(255, 85, 0); } .cm-s-default .cm-meta { color: rgb(85, 85, 85); } .cm-s-default .cm-qualifier { color: rgb(85, 85, 85); } .cm-s-default .cm-builtin { color: rgb(51, 0, 170); } .cm-s-default .cm-bracket { color: rgb(153, 153, 119); } .cm-s-default .cm-tag { color: rgb(17, 119, 0); } .cm-s-default .cm-attribute { color: rgb(0, 0, 204); } .cm-s-default .cm-hr { color: rgb(153, 153, 153); } .cm-s-default .cm-link { color: rgb(0, 0, 204); } .cm-s-default .cm-error { color: rgb(255, 0, 0); } .cm-invalidchar { color: rgb(255, 0, 0); } .CodeMirror-composing { border-bottom: 2px solid; } div.CodeMirror span.CodeMirror-matchingbracket { color: rgb(0, 187, 0); } div.CodeMirror span.CodeMirror-nonmatchingbracket { color: rgb(170, 34, 34)= ; } .CodeMirror-matchingtag { background: rgba(255, 150, 0, 0.3); } .CodeMirror-activeline-background { background: rgb(232, 242, 255); } .CodeMirror { position: relative; overflow: hidden; background: white; } .CodeMirror-scroll { margin-bottom: -30px; margin-right: -30px; padding-bot= tom: 30px; height: 100%; outline: none; position: relative; overflow: scrol= l !important; } .CodeMirror-sizer { position: relative; border-right: 30px solid transparen= t; } .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-fille= r, .CodeMirror-gutter-filler { position: absolute; z-index: 6; display: non= e; } .CodeMirror-vscrollbar { right: 0px; top: 0px; overflow: hidden scroll; } .CodeMirror-hscrollbar { bottom: 0px; left: 0px; overflow: scroll hidden; } .CodeMirror-scrollbar-filler { right: 0px; bottom: 0px; } .CodeMirror-gutter-filler { left: 0px; bottom: 0px; } .CodeMirror-gutters { position: absolute; left: 0px; top: 0px; min-height: = 100%; z-index: 3; } .CodeMirror-gutter { white-space: normal; height: 100%; display: inline-blo= ck; vertical-align: top; margin-bottom: -30px; } .CodeMirror-gutter-wrapper { position: absolute; z-index: 4; background: no= ne !important; border: none !important; } .CodeMirror-gutter-background { position: absolute; top: 0px; bottom: 0px; = z-index: 4; } .CodeMirror-gutter-elt { position: absolute; cursor: default; z-index: 4; } .CodeMirror-gutter-wrapper ::selection { background-color: transparent; } .CodeMirror-lines { cursor: text; min-height: 1px; } .CodeMirror pre.CodeMirror-line, .CodeMirror pre.CodeMirror-line-like { bor= der-radius: 0px; border-width: 0px; background: transparent; font-family: i= nherit; font-size: inherit; margin: 0px; white-space: pre; overflow-wrap: n= ormal; line-height: inherit; color: inherit; z-index: 2; position: relative= ; overflow: visible; -webkit-tap-highlight-color: transparent; font-variant= -ligatures: contextual; } .CodeMirror-wrap pre.CodeMirror-line, .CodeMirror-wrap pre.CodeMirror-line-= like { overflow-wrap: break-word; white-space: pre-wrap; word-break: normal= ; } .CodeMirror-linebackground { position: absolute; left: 0px; right: 0px; top= : 0px; bottom: 0px; z-index: 0; } .CodeMirror-linewidget { position: relative; z-index: 2; padding: 0.1px; } .CodeMirror-widget { } .CodeMirror-rtl pre { direction: rtl; } .CodeMirror-code { outline: none; } .CodeMirror-scroll, .CodeMirror-sizer, .CodeMirror-gutter, .CodeMirror-gutt= ers, .CodeMirror-linenumber { box-sizing: content-box; } .CodeMirror-measure { position: absolute; width: 100%; height: 0px; overflo= w: hidden; visibility: hidden; } .CodeMirror-cursor { position: absolute; pointer-events: none; } .CodeMirror-measure pre { position: static; } div.CodeMirror-cursors { visibility: hidden; position: relative; z-index: 3= ; } div.CodeMirror-dragcursors { visibility: visible; } .CodeMirror-focused div.CodeMirror-cursors { visibility: visible; } .CodeMirror-selected { background: rgb(217, 217, 217); } .CodeMirror-focused .CodeMirror-selected { background: rgb(215, 212, 240); = } .CodeMirror-crosshair { cursor: crosshair; } .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirro= r-line > span > span::selection { background: rgb(215, 212, 240); } .cm-searching { background-color: rgba(255, 255, 0, 0.4); } .cm-force-border { padding-right: 0.1px; } @media print { .CodeMirror div.CodeMirror-cursors { visibility: hidden; } } .cm-tab-wrap-hack::after { content: ""; } span.CodeMirror-selectedtext { background: none; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: http://localhost:8888/static/style/style.min.css?v=2165fc0d023f0baf5cce3b2a6db40e22 @charset "utf-8"; html { font-family: sans-serif; text-size-adjust: 100%; } body { margin: 0px; } article, aside, details, figcaption, figure, footer, header, hgroup, main, = menu, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: bas= eline; } audio:not([controls]) { display: none; height: 0px; } [hidden], template { display: none; } a { background-color: transparent; } a:active, a:hover { outline: 0px; } abbr[title] { border-bottom: none; text-decoration: underline dotted; } b, strong { font-weight: bold; } dfn { font-style: italic; } h1 { font-size: 2em; margin: 0.67em 0px; } mark { background: rgb(255, 255, 0); color: rgb(0, 0, 0); } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-ali= gn: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { border: 0px; } svg:not(:root) { overflow: hidden; } figure { margin: 1em 40px; } hr { box-sizing: content-box; height: 0px; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, input, optgroup, select, textarea { color: inherit; font: inherit; = margin: 0px; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type=3D"button"], input[type=3D"reset"], input[type=3D"s= ubmit"] { appearance: button; cursor: pointer; } button[disabled], html input[disabled] { cursor: default; } input { line-height: normal; } input[type=3D"checkbox"], input[type=3D"radio"] { box-sizing: border-box; p= adding: 0px; } input[type=3D"number"]::-webkit-inner-spin-button, input[type=3D"number"]::= -webkit-outer-spin-button { height: auto; } input[type=3D"search"] { appearance: textfield; box-sizing: content-box; } input[type=3D"search"]::-webkit-search-cancel-button, input[type=3D"search"= ]::-webkit-search-decoration { appearance: none; } fieldset { border: 1px solid rgb(192, 192, 192); margin: 0px 2px; padding: = 0.35em 0.625em 0.75em; } legend { border: 0px; padding: 0px; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-collapse: collapse; border-spacing: 0px; } td, th { padding: 0px; } @media print { *, ::before, ::after { text-shadow: none !important; background: transpar= ent !important; box-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]::after { content: " (" attr(href) ")"; } abbr[title]::after { content: " (" attr(title) ")"; } a[href^=3D"#"]::after, a[href^=3D"javascript:"]::after { content: ""; } pre, blockquote { border: 1px solid rgb(153, 153, 153); break-inside: avo= id; } thead { display: table-header-group; } tr, img { break-inside: avoid; } img { max-width: 100% !important; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { break-after: avoid; } .navbar { display: none; } .btn > .caret, .dropup > .btn > .caret { border-top-color: rgb(0, 0, 0) != important; } .label { border: 1px solid rgb(0, 0, 0); } .table { border-collapse: collapse !important; } .table td, .table th { background-color: rgb(255, 255, 255) !important; } .table-bordered th, .table-bordered td { border: 1px solid rgb(221, 221, = 221) !important; } } @font-face { font-family: "Glyphicons Halflings"; src: url("../components/b= ootstrap/fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-o= pentype"), url("../components/bootstrap/fonts/glyphicons-halflings-regular.= woff2") format("woff2"), url("../components/bootstrap/fonts/glyphicons-half= lings-regular.woff") format("woff"), url("../components/bootstrap/fonts/gly= phicons-halflings-regular.ttf") format("truetype"), url("../components/boot= strap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") = format("svg"); } .glyphicon { position: relative; top: 1px; display: inline-block; font-fami= ly: "Glyphicons Halflings"; font-style: normal; font-weight: 400; line-heig= ht: 1; -webkit-font-smoothing: antialiased; } .glyphicon-asterisk::before { content: "*"; } .glyphicon-plus::before { content: "+"; } .glyphicon-euro::before, .glyphicon-eur::before { content: "=E2=82=AC"; } .glyphicon-minus::before { content: "=E2=88=92"; } .glyphicon-cloud::before { content: "=E2=98=81"; } .glyphicon-envelope::before { content: "=E2=9C=89"; } .glyphicon-pencil::before { content: "=E2=9C=8F"; } .glyphicon-glass::before { content: "=EE=80=81"; } .glyphicon-music::before { content: "=EE=80=82"; } .glyphicon-search::before { content: "=EE=80=83"; } .glyphicon-heart::before { content: "=EE=80=85"; } .glyphicon-star::before { content: "=EE=80=86"; } .glyphicon-star-empty::before { content: "=EE=80=87"; } .glyphicon-user::before { content: "=EE=80=88"; } .glyphicon-film::before { content: "=EE=80=89"; } .glyphicon-th-large::before { content: "=EE=80=90"; } .glyphicon-th::before { content: "=EE=80=91"; } .glyphicon-th-list::before { content: "=EE=80=92"; } .glyphicon-ok::before { content: "=EE=80=93"; } .glyphicon-remove::before { content: "=EE=80=94"; } .glyphicon-zoom-in::before { content: "=EE=80=95"; } .glyphicon-zoom-out::before { content: "=EE=80=96"; } .glyphicon-off::before { content: "=EE=80=97"; } .glyphicon-signal::before { content: "=EE=80=98"; } .glyphicon-cog::before { content: "=EE=80=99"; } .glyphicon-trash::before { content: "=EE=80=A0"; } .glyphicon-home::before { content: "=EE=80=A1"; } .glyphicon-file::before { content: "=EE=80=A2"; } .glyphicon-time::before { content: "=EE=80=A3"; } .glyphicon-road::before { content: "=EE=80=A4"; } .glyphicon-download-alt::before { content: "=EE=80=A5"; } .glyphicon-download::before { content: "=EE=80=A6"; } .glyphicon-upload::before { content: "=EE=80=A7"; } .glyphicon-inbox::before { content: "=EE=80=A8"; } .glyphicon-play-circle::before { content: "=EE=80=A9"; } .glyphicon-repeat::before { content: "=EE=80=B0"; } .glyphicon-refresh::before { content: "=EE=80=B1"; } .glyphicon-list-alt::before { content: "=EE=80=B2"; } .glyphicon-lock::before { content: "=EE=80=B3"; } .glyphicon-flag::before { content: "=EE=80=B4"; } .glyphicon-headphones::before { content: "=EE=80=B5"; } .glyphicon-volume-off::before { content: "=EE=80=B6"; } .glyphicon-volume-down::before { content: "=EE=80=B7"; } .glyphicon-volume-up::before { content: "=EE=80=B8"; } .glyphicon-qrcode::before { content: "=EE=80=B9"; } .glyphicon-barcode::before { content: "=EE=81=80"; } .glyphicon-tag::before { content: "=EE=81=81"; } .glyphicon-tags::before { content: "=EE=81=82"; } .glyphicon-book::before { content: "=EE=81=83"; } .glyphicon-bookmark::before { content: "=EE=81=84"; } .glyphicon-print::before { content: "=EE=81=85"; } .glyphicon-camera::before { content: "=EE=81=86"; } .glyphicon-font::before { content: "=EE=81=87"; } .glyphicon-bold::before { content: "=EE=81=88"; } .glyphicon-italic::before { content: "=EE=81=89"; } .glyphicon-text-height::before { content: "=EE=81=90"; } .glyphicon-text-width::before { content: "=EE=81=91"; } .glyphicon-align-left::before { content: "=EE=81=92"; } .glyphicon-align-center::before { content: "=EE=81=93"; } .glyphicon-align-right::before { content: "=EE=81=94"; } .glyphicon-align-justify::before { content: "=EE=81=95"; } .glyphicon-list::before { content: "=EE=81=96"; } .glyphicon-indent-left::before { content: "=EE=81=97"; } .glyphicon-indent-right::before { content: "=EE=81=98"; } .glyphicon-facetime-video::before { content: "=EE=81=99"; } .glyphicon-picture::before { content: "=EE=81=A0"; } .glyphicon-map-marker::before { content: "=EE=81=A2"; } .glyphicon-adjust::before { content: "=EE=81=A3"; } .glyphicon-tint::before { content: "=EE=81=A4"; } .glyphicon-edit::before { content: "=EE=81=A5"; } .glyphicon-share::before { content: "=EE=81=A6"; } .glyphicon-check::before { content: "=EE=81=A7"; } .glyphicon-move::before { content: "=EE=81=A8"; } .glyphicon-step-backward::before { content: "=EE=81=A9"; } .glyphicon-fast-backward::before { content: "=EE=81=B0"; } .glyphicon-backward::before { content: "=EE=81=B1"; } .glyphicon-play::before { content: "=EE=81=B2"; } .glyphicon-pause::before { content: "=EE=81=B3"; } .glyphicon-stop::before { content: "=EE=81=B4"; } .glyphicon-forward::before { content: "=EE=81=B5"; } .glyphicon-fast-forward::before { content: "=EE=81=B6"; } .glyphicon-step-forward::before { content: "=EE=81=B7"; } .glyphicon-eject::before { content: "=EE=81=B8"; } .glyphicon-chevron-left::before { content: "=EE=81=B9"; } .glyphicon-chevron-right::before { content: "=EE=82=80"; } .glyphicon-plus-sign::before { content: "=EE=82=81"; } .glyphicon-minus-sign::before { content: "=EE=82=82"; } .glyphicon-remove-sign::before { content: "=EE=82=83"; } .glyphicon-ok-sign::before { content: "=EE=82=84"; } .glyphicon-question-sign::before { content: "=EE=82=85"; } .glyphicon-info-sign::before { content: "=EE=82=86"; } .glyphicon-screenshot::before { content: "=EE=82=87"; } .glyphicon-remove-circle::before { content: "=EE=82=88"; } .glyphicon-ok-circle::before { content: "=EE=82=89"; } .glyphicon-ban-circle::before { content: "=EE=82=90"; } .glyphicon-arrow-left::before { content: "=EE=82=91"; } .glyphicon-arrow-right::before { content: "=EE=82=92"; } .glyphicon-arrow-up::before { content: "=EE=82=93"; } .glyphicon-arrow-down::before { content: "=EE=82=94"; } .glyphicon-share-alt::before { content: "=EE=82=95"; } .glyphicon-resize-full::before { content: "=EE=82=96"; } .glyphicon-resize-small::before { content: "=EE=82=97"; } .glyphicon-exclamation-sign::before { content: "=EE=84=81"; } .glyphicon-gift::before { content: "=EE=84=82"; } .glyphicon-leaf::before { content: "=EE=84=83"; } .glyphicon-fire::before { content: "=EE=84=84"; } .glyphicon-eye-open::before { content: "=EE=84=85"; } .glyphicon-eye-close::before { content: "=EE=84=86"; } .glyphicon-warning-sign::before { content: "=EE=84=87"; } .glyphicon-plane::before { content: "=EE=84=88"; } .glyphicon-calendar::before { content: "=EE=84=89"; } .glyphicon-random::before { content: "=EE=84=90"; } .glyphicon-comment::before { content: "=EE=84=91"; } .glyphicon-magnet::before { content: "=EE=84=92"; } .glyphicon-chevron-up::before { content: "=EE=84=93"; } .glyphicon-chevron-down::before { content: "=EE=84=94"; } .glyphicon-retweet::before { content: "=EE=84=95"; } .glyphicon-shopping-cart::before { content: "=EE=84=96"; } .glyphicon-folder-close::before { content: "=EE=84=97"; } .glyphicon-folder-open::before { content: "=EE=84=98"; } .glyphicon-resize-vertical::before { content: "=EE=84=99"; } .glyphicon-resize-horizontal::before { content: "=EE=84=A0"; } .glyphicon-hdd::before { content: "=EE=84=A1"; } .glyphicon-bullhorn::before { content: "=EE=84=A2"; } .glyphicon-bell::before { content: "=EE=84=A3"; } .glyphicon-certificate::before { content: "=EE=84=A4"; } .glyphicon-thumbs-up::before { content: "=EE=84=A5"; } .glyphicon-thumbs-down::before { content: "=EE=84=A6"; } .glyphicon-hand-right::before { content: "=EE=84=A7"; } .glyphicon-hand-left::before { content: "=EE=84=A8"; } .glyphicon-hand-up::before { content: "=EE=84=A9"; } .glyphicon-hand-down::before { content: "=EE=84=B0"; } .glyphicon-circle-arrow-right::before { content: "=EE=84=B1"; } .glyphicon-circle-arrow-left::before { content: "=EE=84=B2"; } .glyphicon-circle-arrow-up::before { content: "=EE=84=B3"; } .glyphicon-circle-arrow-down::before { content: "=EE=84=B4"; } .glyphicon-globe::before { content: "=EE=84=B5"; } .glyphicon-wrench::before { content: "=EE=84=B6"; } .glyphicon-tasks::before { content: "=EE=84=B7"; } .glyphicon-filter::before { content: "=EE=84=B8"; } .glyphicon-briefcase::before { content: "=EE=84=B9"; } .glyphicon-fullscreen::before { content: "=EE=85=80"; } .glyphicon-dashboard::before { content: "=EE=85=81"; } .glyphicon-paperclip::before { content: "=EE=85=82"; } .glyphicon-heart-empty::before { content: "=EE=85=83"; } .glyphicon-link::before { content: "=EE=85=84"; } .glyphicon-phone::before { content: "=EE=85=85"; } .glyphicon-pushpin::before { content: "=EE=85=86"; } .glyphicon-usd::before { content: "=EE=85=88"; } .glyphicon-gbp::before { content: "=EE=85=89"; } .glyphicon-sort::before { content: "=EE=85=90"; } .glyphicon-sort-by-alphabet::before { content: "=EE=85=91"; } .glyphicon-sort-by-alphabet-alt::before { content: "=EE=85=92"; } .glyphicon-sort-by-order::before { content: "=EE=85=93"; } .glyphicon-sort-by-order-alt::before { content: "=EE=85=94"; } .glyphicon-sort-by-attributes::before { content: "=EE=85=95"; } .glyphicon-sort-by-attributes-alt::before { content: "=EE=85=96"; } .glyphicon-unchecked::before { content: "=EE=85=97"; } .glyphicon-expand::before { content: "=EE=85=98"; } .glyphicon-collapse-down::before { content: "=EE=85=99"; } .glyphicon-collapse-up::before { content: "=EE=85=A0"; } .glyphicon-log-in::before { content: "=EE=85=A1"; } .glyphicon-flash::before { content: "=EE=85=A2"; } .glyphicon-log-out::before { content: "=EE=85=A3"; } .glyphicon-new-window::before { content: "=EE=85=A4"; } .glyphicon-record::before { content: "=EE=85=A5"; } .glyphicon-save::before { content: "=EE=85=A6"; } .glyphicon-open::before { content: "=EE=85=A7"; } .glyphicon-saved::before { content: "=EE=85=A8"; } .glyphicon-import::before { content: "=EE=85=A9"; } .glyphicon-export::before { content: "=EE=85=B0"; } .glyphicon-send::before { content: "=EE=85=B1"; } .glyphicon-floppy-disk::before { content: "=EE=85=B2"; } .glyphicon-floppy-saved::before { content: "=EE=85=B3"; } .glyphicon-floppy-remove::before { content: "=EE=85=B4"; } .glyphicon-floppy-save::before { content: "=EE=85=B5"; } .glyphicon-floppy-open::before { content: "=EE=85=B6"; } .glyphicon-credit-card::before { content: "=EE=85=B7"; } .glyphicon-transfer::before { content: "=EE=85=B8"; } .glyphicon-cutlery::before { content: "=EE=85=B9"; } .glyphicon-header::before { content: "=EE=86=80"; } .glyphicon-compressed::before { content: "=EE=86=81"; } .glyphicon-earphone::before { content: "=EE=86=82"; } .glyphicon-phone-alt::before { content: "=EE=86=83"; } .glyphicon-tower::before { content: "=EE=86=84"; } .glyphicon-stats::before { content: "=EE=86=85"; } .glyphicon-sd-video::before { content: "=EE=86=86"; } .glyphicon-hd-video::before { content: "=EE=86=87"; } .glyphicon-subtitles::before { content: "=EE=86=88"; } .glyphicon-sound-stereo::before { content: "=EE=86=89"; } .glyphicon-sound-dolby::before { content: "=EE=86=90"; } .glyphicon-sound-5-1::before { content: "=EE=86=91"; } .glyphicon-sound-6-1::before { content: "=EE=86=92"; } .glyphicon-sound-7-1::before { content: "=EE=86=93"; } .glyphicon-copyright-mark::before { content: "=EE=86=94"; } .glyphicon-registration-mark::before { content: "=EE=86=95"; } .glyphicon-cloud-download::before { content: "=EE=86=97"; } .glyphicon-cloud-upload::before { content: "=EE=86=98"; } .glyphicon-tree-conifer::before { content: "=EE=86=99"; } .glyphicon-tree-deciduous::before { content: "=EE=88=80"; } .glyphicon-cd::before { content: "=EE=88=81"; } .glyphicon-save-file::before { content: "=EE=88=82"; } .glyphicon-open-file::before { content: "=EE=88=83"; } .glyphicon-level-up::before { content: "=EE=88=84"; } .glyphicon-copy::before { content: "=EE=88=85"; } .glyphicon-paste::before { content: "=EE=88=86"; } .glyphicon-alert::before { content: "=EE=88=89"; } .glyphicon-equalizer::before { content: "=EE=88=90"; } .glyphicon-king::before { content: "=EE=88=91"; } .glyphicon-queen::before { content: "=EE=88=92"; } .glyphicon-pawn::before { content: "=EE=88=93"; } .glyphicon-bishop::before { content: "=EE=88=94"; } .glyphicon-knight::before { content: "=EE=88=95"; } .glyphicon-baby-formula::before { content: "=EE=88=96"; } .glyphicon-tent::before { content: "=E2=9B=BA"; } .glyphicon-blackboard::before { content: "=EE=88=98"; } .glyphicon-bed::before { content: "=EE=88=99"; } .glyphicon-apple::before { content: "=EF=A3=BF"; } .glyphicon-erase::before { content: "=EE=88=A1"; } .glyphicon-hourglass::before { content: "=E2=8C=9B"; } .glyphicon-lamp::before { content: "=EE=88=A3"; } .glyphicon-duplicate::before { content: "=EE=88=A4"; } .glyphicon-piggy-bank::before { content: "=EE=88=A5"; } .glyphicon-scissors::before { content: "=EE=88=A6"; } .glyphicon-bitcoin::before { content: "=EE=88=A7"; } .glyphicon-btc::before { content: "=EE=88=A7"; } .glyphicon-xbt::before { content: "=EE=88=A7"; } .glyphicon-yen::before { content: "=C2=A5"; } .glyphicon-jpy::before { content: "=C2=A5"; } .glyphicon-ruble::before { content: "=E2=82=BD"; } .glyphicon-rub::before { content: "=E2=82=BD"; } .glyphicon-scale::before { content: "=EE=88=B0"; } .glyphicon-ice-lolly::before { content: "=EE=88=B1"; } .glyphicon-ice-lolly-tasted::before { content: "=EE=88=B2"; } .glyphicon-education::before { content: "=EE=88=B3"; } .glyphicon-option-horizontal::before { content: "=EE=88=B4"; } .glyphicon-option-vertical::before { content: "=EE=88=B5"; } .glyphicon-menu-hamburger::before { content: "=EE=88=B6"; } .glyphicon-modal-window::before { content: "=EE=88=B7"; } .glyphicon-oil::before { content: "=EE=88=B8"; } .glyphicon-grain::before { content: "=EE=88=B9"; } .glyphicon-sunglasses::before { content: "=EE=89=80"; } .glyphicon-text-size::before { content: "=EE=89=81"; } .glyphicon-text-color::before { content: "=EE=89=82"; } .glyphicon-text-background::before { content: "=EE=89=83"; } .glyphicon-object-align-top::before { content: "=EE=89=84"; } .glyphicon-object-align-bottom::before { content: "=EE=89=85"; } .glyphicon-object-align-horizontal::before { content: "=EE=89=86"; } .glyphicon-object-align-left::before { content: "=EE=89=87"; } .glyphicon-object-align-vertical::before { content: "=EE=89=88"; } .glyphicon-object-align-right::before { content: "=EE=89=89"; } .glyphicon-triangle-right::before { content: "=EE=89=90"; } .glyphicon-triangle-left::before { content: "=EE=89=91"; } .glyphicon-triangle-bottom::before { content: "=EE=89=92"; } .glyphicon-triangle-top::before { content: "=EE=89=93"; } .glyphicon-console::before { content: "=EE=89=94"; } .glyphicon-superscript::before { content: "=EE=89=95"; } .glyphicon-subscript::before { content: "=EE=89=96"; } .glyphicon-menu-left::before { content: "=EE=89=97"; } .glyphicon-menu-right::before { content: "=EE=89=98"; } .glyphicon-menu-down::before { content: "=EE=89=99"; } .glyphicon-menu-up::before { content: "=EE=89=A0"; } * { box-sizing: border-box; } ::before, ::after { box-sizing: border-box; } html { font-size: 10px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } body { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-si= ze: 13px; line-height: 1.42857; color: rgb(0, 0, 0); background-color: rgb(= 255, 255, 255); } input, button, select, textarea { font-family: inherit; font-size: inherit;= line-height: inherit; } a { color: rgb(41, 110, 170); text-decoration: none; } a:hover, a:focus { color: rgb(26, 70, 108); text-decoration: underline; } a:focus { outline: -webkit-focus-ring-color auto 5px; outline-offset: -2px;= } figure { margin: 0px; } img { vertical-align: middle; } .img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .i= tem > img, .carousel-inner > .item > a > img { display: block; max-width: 1= 00%; height: auto; } .img-rounded { border-radius: 3px; } .img-thumbnail { padding: 4px; line-height: 1.42857; background-color: rgb(= 255, 255, 255); border: 1px solid rgb(221, 221, 221); border-radius: 2px; t= ransition: all 0.2s ease-in-out 0s; display: inline-block; max-width: 100%;= height: auto; } .img-circle { border-radius: 50%; } hr { margin-top: 18px; margin-bottom: 18px; border-width: 1px 0px 0px; bord= er-right-style: initial; border-bottom-style: initial; border-left-style: i= nitial; border-right-color: initial; border-bottom-color: initial; border-l= eft-color: initial; border-image: initial; border-top-style: solid; border-= top-color: rgb(238, 238, 238); } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0px; margi= n: -1px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); border: 0px; } .sr-only-focusable:active, .sr-only-focusable:focus { position: static; wid= th: auto; height: auto; margin: 0px; overflow: visible; clip: auto; } [role=3D"button"] { cursor: pointer; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: inherit= ; font-weight: 500; line-height: 1.1; color: inherit; } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 = small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3= .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .smal= l, .h4 .small, .h5 .small, .h6 .small { font-weight: 400; line-height: 1; c= olor: rgb(119, 119, 119); } h1, .h1, h2, .h2, h3, .h3 { margin-top: 18px; margin-bottom: 9px; } h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .= h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small { font-size: 65%; } h4, .h4, h5, .h5, h6, .h6 { margin-top: 9px; margin-bottom: 9px; } h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .= h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small { font-size: 75%; } h1, .h1 { font-size: 33px; } h2, .h2 { font-size: 27px; } h3, .h3 { font-size: 23px; } h4, .h4 { font-size: 17px; } h5, .h5 { font-size: 13px; } h6, .h6 { font-size: 12px; } p { margin: 0px 0px 9px; } .lead { margin-bottom: 18px; font-size: 14px; font-weight: 300; line-height= : 1.4; } @media (min-width: 768px) { .lead { font-size: 19.5px; } } small, .small { font-size: 92%; } mark, .mark { padding: 0.2em; background-color: rgb(252, 248, 227); } .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } .text-justify { text-align: justify; } .text-nowrap { white-space: nowrap; } .text-lowercase { text-transform: lowercase; } .text-uppercase { text-transform: uppercase; } .text-capitalize { text-transform: capitalize; } .text-muted { color: rgb(119, 119, 119); } .text-primary { color: rgb(51, 122, 183); } a.text-primary:hover, a.text-primary:focus { color: rgb(40, 96, 144); } .text-success { color: rgb(60, 118, 61); } a.text-success:hover, a.text-success:focus { color: rgb(43, 84, 44); } .text-info { color: rgb(49, 112, 143); } a.text-info:hover, a.text-info:focus { color: rgb(36, 82, 105); } .text-warning { color: rgb(138, 109, 59); } a.text-warning:hover, a.text-warning:focus { color: rgb(102, 81, 44); } .text-danger { color: rgb(169, 68, 66); } a.text-danger:hover, a.text-danger:focus { color: rgb(132, 53, 52); } .bg-primary { color: rgb(255, 255, 255); background-color: rgb(51, 122, 183= ); } a.bg-primary:hover, a.bg-primary:focus { background-color: rgb(40, 96, 144)= ; } .bg-success { background-color: rgb(223, 240, 216); } a.bg-success:hover, a.bg-success:focus { background-color: rgb(193, 226, 17= 9); } .bg-info { background-color: rgb(217, 237, 247); } a.bg-info:hover, a.bg-info:focus { background-color: rgb(175, 217, 238); } .bg-warning { background-color: rgb(252, 248, 227); } a.bg-warning:hover, a.bg-warning:focus { background-color: rgb(247, 236, 18= 1); } .bg-danger { background-color: rgb(242, 222, 222); } a.bg-danger:hover, a.bg-danger:focus { background-color: rgb(228, 185, 185)= ; } .page-header { padding-bottom: 8px; margin: 36px 0px 18px; border-bottom: 1= px solid rgb(238, 238, 238); } ul, ol { margin-top: 0px; margin-bottom: 9px; } ul ul, ol ul, ul ol, ol ol { margin-bottom: 0px; } .list-unstyled { padding-left: 0px; list-style: none; } .list-inline { padding-left: 0px; list-style: none; margin-left: -5px; } .list-inline > li { display: inline-block; padding-right: 5px; padding-left= : 5px; } dl { margin-top: 0px; margin-bottom: 18px; } dt, dd { line-height: 1.42857; } dt { font-weight: 700; } dd { margin-left: 0px; } @media (min-width: 541px) { .dl-horizontal dt { float: left; width: 160px; clear: left; text-align: r= ight; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .dl-horizontal dd { margin-left: 180px; } } abbr[title], abbr[data-original-title] { cursor: help; } .initialism { font-size: 90%; text-transform: uppercase; } blockquote { padding: 9px 18px; margin: 0px 0px 18px; font-size: inherit; b= order-left: 5px solid rgb(238, 238, 238); } blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child= { margin-bottom: 0px; } blockquote footer, blockquote small, blockquote .small { display: block; fo= nt-size: 80%; line-height: 1.42857; color: rgb(119, 119, 119); } blockquote footer::before, blockquote small::before, blockquote .small::bef= ore { content: "=E2=80=94=C2=A0"; } .blockquote-reverse, blockquote.pull-right { padding-right: 15px; padding-l= eft: 0px; text-align: right; border-right: 5px solid rgb(238, 238, 238); bo= rder-left: 0px; } .blockquote-reverse footer::before, blockquote.pull-right footer::before, .= blockquote-reverse small::before, blockquote.pull-right small::before, .blo= ckquote-reverse .small::before, blockquote.pull-right .small::before { cont= ent: ""; } .blockquote-reverse footer::after, blockquote.pull-right footer::after, .bl= ockquote-reverse small::after, blockquote.pull-right small::after, .blockqu= ote-reverse .small::after, blockquote.pull-right .small::after { content: "= =C2=A0=E2=80=94"; } address { margin-bottom: 18px; font-style: normal; line-height: 1.42857; } code, kbd, pre, samp { font-family: monospace; } code { padding: 2px 4px; font-size: 90%; color: rgb(199, 37, 78); backgroun= d-color: rgb(249, 242, 244); border-radius: 2px; } kbd { padding: 2px 4px; font-size: 90%; color: rgb(136, 136, 136); backgrou= nd-color: transparent; border-radius: 1px; box-shadow: rgba(0, 0, 0, 0.25) = 0px -1px 0px inset; } kbd kbd { padding: 0px; font-size: 100%; font-weight: 700; box-shadow: none= ; } pre { display: block; padding: 8.5px; margin: 0px 0px 9px; font-size: 12px;= line-height: 1.42857; color: rgb(51, 51, 51); word-break: break-all; overf= low-wrap: break-word; background-color: rgb(245, 245, 245); border: 1px sol= id rgb(204, 204, 204); border-radius: 2px; } pre code { padding: 0px; font-size: inherit; color: inherit; white-space: p= re-wrap; background-color: transparent; border-radius: 0px; } .pre-scrollable { max-height: 340px; overflow-y: scroll; } .container { padding-right: 0px; padding-left: 0px; margin-right: auto; mar= gin-left: auto; } @media (min-width: 768px) { .container { width: 768px; } } @media (min-width: 992px) { .container { width: 940px; } } @media (min-width: 1200px) { .container { width: 1140px; } } .container-fluid { padding-right: 0px; padding-left: 0px; margin-right: aut= o; margin-left: auto; } .row { margin-right: 0px; margin-left: 0px; } .row-no-gutters { margin-right: 0px; margin-left: 0px; } .row-no-gutters [class*=3D"col-"] { padding-right: 0px; padding-left: 0px; = } .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, .co= l-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-x= s-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-1= 2, .col-lg-12 { position: relative; min-height: 1px; padding-right: 0px; pa= dding-left: 0px; } .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 { float: left; } .col-xs-12 { width: 100%; } .col-xs-11 { width: 91.6667%; } .col-xs-10 { width: 83.3333%; } .col-xs-9 { width: 75%; } .col-xs-8 { width: 66.6667%; } .col-xs-7 { width: 58.3333%; } .col-xs-6 { width: 50%; } .col-xs-5 { width: 41.6667%; } .col-xs-4 { width: 33.3333%; } .col-xs-3 { width: 25%; } .col-xs-2 { width: 16.6667%; } .col-xs-1 { width: 8.33333%; } .col-xs-pull-12 { right: 100%; } .col-xs-pull-11 { right: 91.6667%; } .col-xs-pull-10 { right: 83.3333%; } .col-xs-pull-9 { right: 75%; } .col-xs-pull-8 { right: 66.6667%; } .col-xs-pull-7 { right: 58.3333%; } .col-xs-pull-6 { right: 50%; } .col-xs-pull-5 { right: 41.6667%; } .col-xs-pull-4 { right: 33.3333%; } .col-xs-pull-3 { right: 25%; } .col-xs-pull-2 { right: 16.6667%; } .col-xs-pull-1 { right: 8.33333%; } .col-xs-pull-0 { right: auto; } .col-xs-push-12 { left: 100%; } .col-xs-push-11 { left: 91.6667%; } .col-xs-push-10 { left: 83.3333%; } .col-xs-push-9 { left: 75%; } .col-xs-push-8 { left: 66.6667%; } .col-xs-push-7 { left: 58.3333%; } .col-xs-push-6 { left: 50%; } .col-xs-push-5 { left: 41.6667%; } .col-xs-push-4 { left: 33.3333%; } .col-xs-push-3 { left: 25%; } .col-xs-push-2 { left: 16.6667%; } .col-xs-push-1 { left: 8.33333%; } .col-xs-push-0 { left: auto; } .col-xs-offset-12 { margin-left: 100%; } .col-xs-offset-11 { margin-left: 91.6667%; } .col-xs-offset-10 { margin-left: 83.3333%; } .col-xs-offset-9 { margin-left: 75%; } .col-xs-offset-8 { margin-left: 66.6667%; } .col-xs-offset-7 { margin-left: 58.3333%; } .col-xs-offset-6 { margin-left: 50%; } .col-xs-offset-5 { margin-left: 41.6667%; } .col-xs-offset-4 { margin-left: 33.3333%; } .col-xs-offset-3 { margin-left: 25%; } .col-xs-offset-2 { margin-left: 16.6667%; } .col-xs-offset-1 { margin-left: 8.33333%; } .col-xs-offset-0 { margin-left: 0%; } @media (min-width: 768px) { .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 { float: left;= } .col-sm-12 { width: 100%; } .col-sm-11 { width: 91.6667%; } .col-sm-10 { width: 83.3333%; } .col-sm-9 { width: 75%; } .col-sm-8 { width: 66.6667%; } .col-sm-7 { width: 58.3333%; } .col-sm-6 { width: 50%; } .col-sm-5 { width: 41.6667%; } .col-sm-4 { width: 33.3333%; } .col-sm-3 { width: 25%; } .col-sm-2 { width: 16.6667%; } .col-sm-1 { width: 8.33333%; } .col-sm-pull-12 { right: 100%; } .col-sm-pull-11 { right: 91.6667%; } .col-sm-pull-10 { right: 83.3333%; } .col-sm-pull-9 { right: 75%; } .col-sm-pull-8 { right: 66.6667%; } .col-sm-pull-7 { right: 58.3333%; } .col-sm-pull-6 { right: 50%; } .col-sm-pull-5 { right: 41.6667%; } .col-sm-pull-4 { right: 33.3333%; } .col-sm-pull-3 { right: 25%; } .col-sm-pull-2 { right: 16.6667%; } .col-sm-pull-1 { right: 8.33333%; } .col-sm-pull-0 { right: auto; } .col-sm-push-12 { left: 100%; } .col-sm-push-11 { left: 91.6667%; } .col-sm-push-10 { left: 83.3333%; } .col-sm-push-9 { left: 75%; } .col-sm-push-8 { left: 66.6667%; } .col-sm-push-7 { left: 58.3333%; } .col-sm-push-6 { left: 50%; } .col-sm-push-5 { left: 41.6667%; } .col-sm-push-4 { left: 33.3333%; } .col-sm-push-3 { left: 25%; } .col-sm-push-2 { left: 16.6667%; } .col-sm-push-1 { left: 8.33333%; } .col-sm-push-0 { left: auto; } .col-sm-offset-12 { margin-left: 100%; } .col-sm-offset-11 { margin-left: 91.6667%; } .col-sm-offset-10 { margin-left: 83.3333%; } .col-sm-offset-9 { margin-left: 75%; } .col-sm-offset-8 { margin-left: 66.6667%; } .col-sm-offset-7 { margin-left: 58.3333%; } .col-sm-offset-6 { margin-left: 50%; } .col-sm-offset-5 { margin-left: 41.6667%; } .col-sm-offset-4 { margin-left: 33.3333%; } .col-sm-offset-3 { margin-left: 25%; } .col-sm-offset-2 { margin-left: 16.6667%; } .col-sm-offset-1 { margin-left: 8.33333%; } .col-sm-offset-0 { margin-left: 0%; } } @media (min-width: 992px) { .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 { float: left;= } .col-md-12 { width: 100%; } .col-md-11 { width: 91.6667%; } .col-md-10 { width: 83.3333%; } .col-md-9 { width: 75%; } .col-md-8 { width: 66.6667%; } .col-md-7 { width: 58.3333%; } .col-md-6 { width: 50%; } .col-md-5 { width: 41.6667%; } .col-md-4 { width: 33.3333%; } .col-md-3 { width: 25%; } .col-md-2 { width: 16.6667%; } .col-md-1 { width: 8.33333%; } .col-md-pull-12 { right: 100%; } .col-md-pull-11 { right: 91.6667%; } .col-md-pull-10 { right: 83.3333%; } .col-md-pull-9 { right: 75%; } .col-md-pull-8 { right: 66.6667%; } .col-md-pull-7 { right: 58.3333%; } .col-md-pull-6 { right: 50%; } .col-md-pull-5 { right: 41.6667%; } .col-md-pull-4 { right: 33.3333%; } .col-md-pull-3 { right: 25%; } .col-md-pull-2 { right: 16.6667%; } .col-md-pull-1 { right: 8.33333%; } .col-md-pull-0 { right: auto; } .col-md-push-12 { left: 100%; } .col-md-push-11 { left: 91.6667%; } .col-md-push-10 { left: 83.3333%; } .col-md-push-9 { left: 75%; } .col-md-push-8 { left: 66.6667%; } .col-md-push-7 { left: 58.3333%; } .col-md-push-6 { left: 50%; } .col-md-push-5 { left: 41.6667%; } .col-md-push-4 { left: 33.3333%; } .col-md-push-3 { left: 25%; } .col-md-push-2 { left: 16.6667%; } .col-md-push-1 { left: 8.33333%; } .col-md-push-0 { left: auto; } .col-md-offset-12 { margin-left: 100%; } .col-md-offset-11 { margin-left: 91.6667%; } .col-md-offset-10 { margin-left: 83.3333%; } .col-md-offset-9 { margin-left: 75%; } .col-md-offset-8 { margin-left: 66.6667%; } .col-md-offset-7 { margin-left: 58.3333%; } .col-md-offset-6 { margin-left: 50%; } .col-md-offset-5 { margin-left: 41.6667%; } .col-md-offset-4 { margin-left: 33.3333%; } .col-md-offset-3 { margin-left: 25%; } .col-md-offset-2 { margin-left: 16.6667%; } .col-md-offset-1 { margin-left: 8.33333%; } .col-md-offset-0 { margin-left: 0%; } } @media (min-width: 1200px) { .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 { float: left;= } .col-lg-12 { width: 100%; } .col-lg-11 { width: 91.6667%; } .col-lg-10 { width: 83.3333%; } .col-lg-9 { width: 75%; } .col-lg-8 { width: 66.6667%; } .col-lg-7 { width: 58.3333%; } .col-lg-6 { width: 50%; } .col-lg-5 { width: 41.6667%; } .col-lg-4 { width: 33.3333%; } .col-lg-3 { width: 25%; } .col-lg-2 { width: 16.6667%; } .col-lg-1 { width: 8.33333%; } .col-lg-pull-12 { right: 100%; } .col-lg-pull-11 { right: 91.6667%; } .col-lg-pull-10 { right: 83.3333%; } .col-lg-pull-9 { right: 75%; } .col-lg-pull-8 { right: 66.6667%; } .col-lg-pull-7 { right: 58.3333%; } .col-lg-pull-6 { right: 50%; } .col-lg-pull-5 { right: 41.6667%; } .col-lg-pull-4 { right: 33.3333%; } .col-lg-pull-3 { right: 25%; } .col-lg-pull-2 { right: 16.6667%; } .col-lg-pull-1 { right: 8.33333%; } .col-lg-pull-0 { right: auto; } .col-lg-push-12 { left: 100%; } .col-lg-push-11 { left: 91.6667%; } .col-lg-push-10 { left: 83.3333%; } .col-lg-push-9 { left: 75%; } .col-lg-push-8 { left: 66.6667%; } .col-lg-push-7 { left: 58.3333%; } .col-lg-push-6 { left: 50%; } .col-lg-push-5 { left: 41.6667%; } .col-lg-push-4 { left: 33.3333%; } .col-lg-push-3 { left: 25%; } .col-lg-push-2 { left: 16.6667%; } .col-lg-push-1 { left: 8.33333%; } .col-lg-push-0 { left: auto; } .col-lg-offset-12 { margin-left: 100%; } .col-lg-offset-11 { margin-left: 91.6667%; } .col-lg-offset-10 { margin-left: 83.3333%; } .col-lg-offset-9 { margin-left: 75%; } .col-lg-offset-8 { margin-left: 66.6667%; } .col-lg-offset-7 { margin-left: 58.3333%; } .col-lg-offset-6 { margin-left: 50%; } .col-lg-offset-5 { margin-left: 41.6667%; } .col-lg-offset-4 { margin-left: 33.3333%; } .col-lg-offset-3 { margin-left: 25%; } .col-lg-offset-2 { margin-left: 16.6667%; } .col-lg-offset-1 { margin-left: 8.33333%; } .col-lg-offset-0 { margin-left: 0%; } } table { background-color: transparent; } table col[class*=3D"col-"] { position: static; display: table-column; float= : none; } table td[class*=3D"col-"], table th[class*=3D"col-"] { position: static; di= splay: table-cell; float: none; } caption { padding-top: 8px; padding-bottom: 8px; color: rgb(119, 119, 119);= text-align: left; } th { text-align: left; } .table { width: 100%; max-width: 100%; margin-bottom: 18px; } .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > t= h, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr = > td { padding: 8px; line-height: 1.42857; vertical-align: top; border-top:= 1px solid rgb(221, 221, 221); } .table > thead > tr > th { vertical-align: bottom; border-bottom: 2px solid= rgb(221, 221, 221); } .table > caption + thead > tr:first-child > th, .table > colgroup + thead >= tr:first-child > th, .table > thead:first-child > tr:first-child > th, .ta= ble > caption + thead > tr:first-child > td, .table > colgroup + thead > tr= :first-child > td, .table > thead:first-child > tr:first-child > td { borde= r-top: 0px; } .table > tbody + tbody { border-top: 2px solid rgb(221, 221, 221); } .table .table { background-color: rgb(255, 255, 255); } .table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .ta= ble-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table= -condensed > tbody > tr > td, .table-condensed > tfoot > tr > td { padding:= 5px; } .table-bordered { border: 1px solid rgb(221, 221, 221); } .table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .tabl= e-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bor= dered > tbody > tr > td, .table-bordered > tfoot > tr > td { border: 1px so= lid rgb(221, 221, 221); } .table-bordered > thead > tr > th, .table-bordered > thead > tr > td { bord= er-bottom-width: 2px; } .table-striped > tbody > tr:nth-of-type(2n+1) { background-color: rgb(249, = 249, 249); } .table-hover > tbody > tr:hover { background-color: rgb(245, 245, 245); } .table > thead > tr > td.active, .table > tbody > tr > td.active, .table > = tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > t= r > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active = > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .ta= ble > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfo= ot > tr.active > th { background-color: rgb(245, 245, 245); } .table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th= .active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > = tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { b= ackground-color: rgb(232, 232, 232); } .table > thead > tr > td.success, .table > tbody > tr > td.success, .table = > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody= > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.s= uccess > td, .table > tbody > tr.success > td, .table > tfoot > tr.success = > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .= table > tfoot > tr.success > th { background-color: rgb(223, 240, 216); } .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > t= h.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover= > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > t= h { background-color: rgb(208, 233, 198); } .table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoo= t > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.i= nfo, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table >= tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.i= nfo > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th { ba= ckground-color: rgb(217, 237, 247); } .table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.i= nfo:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody = > tr:hover > .info, .table-hover > tbody > tr.info:hover > th { background-= color: rgb(196, 227, 243); } .table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table = > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody= > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.w= arning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning = > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .= table > tfoot > tr.warning > th { background-color: rgb(252, 248, 227); } .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > t= h.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover= > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > t= h { background-color: rgb(250, 242, 204); } .table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > = tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > t= r > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger = > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .ta= ble > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfo= ot > tr.danger > th { background-color: rgb(242, 222, 222); } .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th= .danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > = tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th { b= ackground-color: rgb(235, 204, 204); } .table-responsive { min-height: 0.01%; overflow-x: auto; } @media screen and (max-width: 767px) { .table-responsive { width: 100%; margin-bottom: 13.5px; overflow-y: hidde= n; border: 1px solid rgb(221, 221, 221); } .table-responsive > .table { margin-bottom: 0px; } .table-responsive > .table > thead > tr > th, .table-responsive > .table = > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-res= ponsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr= > td, .table-responsive > .table > tfoot > tr > td { white-space: nowrap; = } .table-responsive > .table-bordered { border: 0px; } .table-responsive > .table-bordered > thead > tr > th:first-child, .table= -responsive > .table-bordered > tbody > tr > th:first-child, .table-respons= ive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .t= able-bordered > thead > tr > td:first-child, .table-responsive > .table-bor= dered > tbody > tr > td:first-child, .table-responsive > .table-bordered > = tfoot > tr > td:first-child { border-left: 0px; } .table-responsive > .table-bordered > thead > tr > th:last-child, .table-= responsive > .table-bordered > tbody > tr > th:last-child, .table-responsiv= e > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .tabl= e-bordered > thead > tr > td:last-child, .table-responsive > .table-bordere= d > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot= > tr > td:last-child { border-right: 0px; } .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-= responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsiv= e > .table-bordered > tbody > tr:last-child > td, .table-responsive > .tabl= e-bordered > tfoot > tr:last-child > td { border-bottom: 0px; } } fieldset { min-width: 0px; padding: 0px; margin: 0px; border: 0px; } legend { display: block; width: 100%; padding: 0px; margin-bottom: 18px; fo= nt-size: 19.5px; line-height: inherit; color: rgb(51, 51, 51); border-width= : 0px 0px 1px; border-top-style: initial; border-right-style: initial; bord= er-left-style: initial; border-top-color: initial; border-right-color: init= ial; border-left-color: initial; border-image: initial; border-bottom-style= : solid; border-bottom-color: rgb(229, 229, 229); } label { display: inline-block; max-width: 100%; margin-bottom: 5px; font-we= ight: 700; } input[type=3D"search"] { box-sizing: border-box; appearance: none; } input[type=3D"radio"], input[type=3D"checkbox"] { margin: 4px 0px 0px; line= -height: normal; } input[type=3D"radio"][disabled], input[type=3D"checkbox"][disabled], input[= type=3D"radio"].disabled, input[type=3D"checkbox"].disabled, fieldset[disab= led] input[type=3D"radio"], fieldset[disabled] input[type=3D"checkbox"] { c= ursor: not-allowed; } input[type=3D"file"] { display: block; } input[type=3D"range"] { display: block; width: 100%; } select[multiple], select[size] { height: auto; } input[type=3D"file"]:focus, input[type=3D"radio"]:focus, input[type=3D"chec= kbox"]:focus { outline: -webkit-focus-ring-color auto 5px; outline-offset: = -2px; } output { display: block; padding-top: 7px; font-size: 13px; line-height: 1.= 42857; color: rgb(85, 85, 85); } .form-control { display: block; width: 100%; height: 32px; padding: 6px 12p= x; font-size: 13px; line-height: 1.42857; color: rgb(85, 85, 85); backgroun= d-color: rgb(255, 255, 255); background-image: none; border: 1px solid rgb(= 204, 204, 204); border-radius: 2px; box-shadow: rgba(0, 0, 0, 0.075) 0px 1p= x 1px inset; transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15= s ease-in-out 0s; } .form-control:focus { border-color: rgb(102, 175, 233); outline: 0px; box-s= hadow: rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgba(102, 175, 233, 0.6) 0px= 0px 8px; } .form-control::-webkit-input-placeholder { color: rgb(153, 153, 153); } .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-= control { background-color: rgb(238, 238, 238); opacity: 1; } .form-control[disabled], fieldset[disabled] .form-control { cursor: not-all= owed; } textarea.form-control { height: auto; } @media screen and (-webkit-min-device-pixel-ratio: 0) { input[type=3D"date"].form-control, input[type=3D"time"].form-control, inp= ut[type=3D"datetime-local"].form-control, input[type=3D"month"].form-contro= l { line-height: 32px; } input[type=3D"date"].input-sm, input[type=3D"time"].input-sm, input[type= =3D"datetime-local"].input-sm, input[type=3D"month"].input-sm, .input-group= -sm input[type=3D"date"], .input-group-sm input[type=3D"time"], .input-grou= p-sm input[type=3D"datetime-local"], .input-group-sm input[type=3D"month"] = { line-height: 30px; } input[type=3D"date"].input-lg, input[type=3D"time"].input-lg, input[type= =3D"datetime-local"].input-lg, input[type=3D"month"].input-lg, .input-group= -lg input[type=3D"date"], .input-group-lg input[type=3D"time"], .input-grou= p-lg input[type=3D"datetime-local"], .input-group-lg input[type=3D"month"] = { line-height: 45px; } } .form-group { margin-bottom: 15px; } .radio, .checkbox { position: relative; display: block; margin-top: 10px; m= argin-bottom: 10px; } .radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio = label, fieldset[disabled] .checkbox label { cursor: not-allowed; } .radio label, .checkbox label { min-height: 18px; padding-left: 20px; margi= n-bottom: 0px; font-weight: 400; cursor: pointer; } .radio input[type=3D"radio"], .radio-inline input[type=3D"radio"], .checkbo= x input[type=3D"checkbox"], .checkbox-inline input[type=3D"checkbox"] { pos= ition: absolute; margin-left: -20px; } .radio + .radio, .checkbox + .checkbox { margin-top: -5px; } .radio-inline, .checkbox-inline { position: relative; display: inline-block= ; padding-left: 20px; margin-bottom: 0px; font-weight: 400; vertical-align:= middle; cursor: pointer; } .radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radi= o-inline, fieldset[disabled] .checkbox-inline { cursor: not-allowed; } .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline { margin= -top: 0px; margin-left: 10px; } .form-control-static { min-height: 31px; padding-top: 7px; padding-bottom: = 7px; margin-bottom: 0px; } .form-control-static.input-lg, .form-control-static.input-sm { padding-righ= t: 0px; padding-left: 0px; } .input-sm { height: 30px; padding: 5px 10px; font-size: 12px; line-height: = 1.5; border-radius: 1px; } select.input-sm { height: 30px; line-height: 30px; } textarea.input-sm, select[multiple].input-sm { height: auto; } .form-group-sm .form-control { height: 30px; padding: 5px 10px; font-size: = 12px; line-height: 1.5; border-radius: 1px; } .form-group-sm select.form-control { height: 30px; line-height: 30px; } .form-group-sm textarea.form-control, .form-group-sm select[multiple].form-= control { height: auto; } .form-group-sm .form-control-static { height: 30px; min-height: 30px; paddi= ng: 6px 10px; font-size: 12px; line-height: 1.5; } .input-lg { height: 45px; padding: 10px 16px; font-size: 17px; line-height:= 1.33333; border-radius: 3px; } select.input-lg { height: 45px; line-height: 45px; } textarea.input-lg, select[multiple].input-lg { height: auto; } .form-group-lg .form-control { height: 45px; padding: 10px 16px; font-size:= 17px; line-height: 1.33333; border-radius: 3px; } .form-group-lg select.form-control { height: 45px; line-height: 45px; } .form-group-lg textarea.form-control, .form-group-lg select[multiple].form-= control { height: auto; } .form-group-lg .form-control-static { height: 45px; min-height: 35px; paddi= ng: 11px 16px; font-size: 17px; line-height: 1.33333; } .has-feedback { position: relative; } .has-feedback .form-control { padding-right: 40px; } .form-control-feedback { position: absolute; top: 0px; right: 0px; z-index:= 2; display: block; width: 32px; height: 32px; line-height: 32px; text-alig= n: center; pointer-events: none; } .input-lg + .form-control-feedback, .input-group-lg + .form-control-feedbac= k, .form-group-lg .form-control + .form-control-feedback { width: 45px; hei= ght: 45px; line-height: 45px; } .input-sm + .form-control-feedback, .input-group-sm + .form-control-feedbac= k, .form-group-sm .form-control + .form-control-feedback { width: 30px; hei= ght: 30px; line-height: 30px; } .has-success .help-block, .has-success .control-label, .has-success .radio,= .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox= -inline, .has-success.radio label, .has-success.checkbox label, .has-succes= s.radio-inline label, .has-success.checkbox-inline label { color: rgb(60, 1= 18, 61); } .has-success .form-control { border-color: rgb(60, 118, 61); box-shadow: rg= ba(0, 0, 0, 0.075) 0px 1px 1px inset; } .has-success .form-control:focus { border-color: rgb(43, 84, 44); box-shado= w: rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgb(103, 177, 104) 0px 0px 6px; = } .has-success .input-group-addon { color: rgb(60, 118, 61); background-color= : rgb(223, 240, 216); border-color: rgb(60, 118, 61); } .has-success .form-control-feedback { color: rgb(60, 118, 61); } .has-warning .help-block, .has-warning .control-label, .has-warning .radio,= .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox= -inline, .has-warning.radio label, .has-warning.checkbox label, .has-warnin= g.radio-inline label, .has-warning.checkbox-inline label { color: rgb(138, = 109, 59); } .has-warning .form-control { border-color: rgb(138, 109, 59); box-shadow: r= gba(0, 0, 0, 0.075) 0px 1px 1px inset; } .has-warning .form-control:focus { border-color: rgb(102, 81, 44); box-shad= ow: rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgb(192, 161, 107) 0px 0px 6px;= } .has-warning .input-group-addon { color: rgb(138, 109, 59); background-colo= r: rgb(252, 248, 227); border-color: rgb(138, 109, 59); } .has-warning .form-control-feedback { color: rgb(138, 109, 59); } .has-error .help-block, .has-error .control-label, .has-error .radio, .has-= error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .ha= s-error.radio label, .has-error.checkbox label, .has-error.radio-inline lab= el, .has-error.checkbox-inline label { color: rgb(169, 68, 66); } .has-error .form-control { border-color: rgb(169, 68, 66); box-shadow: rgba= (0, 0, 0, 0.075) 0px 1px 1px inset; } .has-error .form-control:focus { border-color: rgb(132, 53, 52); box-shadow= : rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgb(206, 132, 131) 0px 0px 6px; } .has-error .input-group-addon { color: rgb(169, 68, 66); background-color: = rgb(242, 222, 222); border-color: rgb(169, 68, 66); } .has-error .form-control-feedback { color: rgb(169, 68, 66); } .has-feedback label ~ .form-control-feedback { top: 23px; } .has-feedback label.sr-only ~ .form-control-feedback { top: 0px; } .help-block { display: block; margin-top: 5px; margin-bottom: 10px; color: = rgb(64, 64, 64); } @media (min-width: 768px) { .form-inline .form-group { display: inline-block; margin-bottom: 0px; ver= tical-align: middle; } .form-inline .form-control { display: inline-block; width: auto; vertical= -align: middle; } .form-inline .form-control-static { display: inline-block; } .form-inline .input-group { display: inline-table; vertical-align: middle= ; } .form-inline .input-group .input-group-addon, .form-inline .input-group .= input-group-btn, .form-inline .input-group .form-control { width: auto; } .form-inline .input-group > .form-control { width: 100%; } .form-inline .control-label { margin-bottom: 0px; vertical-align: middle;= } .form-inline .radio, .form-inline .checkbox { display: inline-block; marg= in-top: 0px; margin-bottom: 0px; vertical-align: middle; } .form-inline .radio label, .form-inline .checkbox label { padding-left: 0= px; } .form-inline .radio input[type=3D"radio"], .form-inline .checkbox input[t= ype=3D"checkbox"] { position: relative; margin-left: 0px; } .form-inline .has-feedback .form-control-feedback { top: 0px; } } .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radi= o-inline, .form-horizontal .checkbox-inline { padding-top: 7px; margin-top:= 0px; margin-bottom: 0px; } .form-horizontal .radio, .form-horizontal .checkbox { min-height: 25px; } .form-horizontal .form-group { margin-right: 0px; margin-left: 0px; } @media (min-width: 768px) { .form-horizontal .control-label { padding-top: 7px; margin-bottom: 0px; t= ext-align: right; } } .form-horizontal .has-feedback .form-control-feedback { right: 0px; } @media (min-width: 768px) { .form-horizontal .form-group-lg .control-label { padding-top: 11px; font-= size: 17px; } } @media (min-width: 768px) { .form-horizontal .form-group-sm .control-label { padding-top: 6px; font-s= ize: 12px; } } .btn { display: inline-block; margin-bottom: 0px; font-weight: normal; text= -align: center; white-space: nowrap; vertical-align: middle; touch-action: = manipulation; cursor: pointer; background-image: none; border: 1px solid tr= ansparent; padding: 6px 12px; font-size: 13px; line-height: 1.42857; border= -radius: 2px; user-select: none; } .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.f= ocus, .btn.active.focus { outline: -webkit-focus-ring-color auto 5px; outli= ne-offset: -2px; } .btn:hover, .btn:focus, .btn.focus { color: rgb(51, 51, 51); text-decoratio= n: none; } .btn:active, .btn.active { background-image: none; outline: 0px; box-shadow= : rgba(0, 0, 0, 0.125) 0px 3px 5px inset; } .btn.disabled, .btn[disabled], fieldset[disabled] .btn { cursor: not-allowe= d; opacity: 0.65; box-shadow: none; } a.btn.disabled, fieldset[disabled] a.btn { pointer-events: none; } .btn-default { color: rgb(51, 51, 51); background-color: rgb(255, 255, 255)= ; border-color: rgb(204, 204, 204); } .btn-default:focus, .btn-default.focus { color: rgb(51, 51, 51); background= -color: rgb(230, 230, 230); border-color: rgb(140, 140, 140); } .btn-default:hover { color: rgb(51, 51, 51); background-color: rgb(230, 230= , 230); border-color: rgb(173, 173, 173); } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-defa= ult { color: rgb(51, 51, 51); background-color: rgb(230, 230, 230); backgro= und-image: none; border-color: rgb(173, 173, 173); } .btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-tog= gle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus= , .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .b= tn-default.active.focus, .open > .dropdown-toggle.btn-default.focus { color= : rgb(51, 51, 51); background-color: rgb(212, 212, 212); border-color: rgb(= 140, 140, 140); } .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disable= d] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:= focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, = .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus { backg= round-color: rgb(255, 255, 255); border-color: rgb(204, 204, 204); } .btn-default .badge { color: rgb(255, 255, 255); background-color: rgb(51, = 51, 51); } .btn-primary { color: rgb(255, 255, 255); background-color: rgb(51, 122, 18= 3); border-color: rgb(46, 109, 164); } .btn-primary:focus, .btn-primary.focus { color: rgb(255, 255, 255); backgro= und-color: rgb(40, 96, 144); border-color: rgb(18, 43, 64); } .btn-primary:hover { color: rgb(255, 255, 255); background-color: rgb(40, 9= 6, 144); border-color: rgb(32, 77, 116); } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-prim= ary { color: rgb(255, 255, 255); background-color: rgb(40, 96, 144); backgr= ound-image: none; border-color: rgb(32, 77, 116); } .btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-tog= gle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus= , .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .b= tn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus { color= : rgb(255, 255, 255); background-color: rgb(32, 77, 116); border-color: rgb= (18, 43, 64); } .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disable= d] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:= focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, = .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus { backg= round-color: rgb(51, 122, 183); border-color: rgb(46, 109, 164); } .btn-primary .badge { color: rgb(51, 122, 183); background-color: rgb(255, = 255, 255); } .btn-success { color: rgb(255, 255, 255); background-color: rgb(92, 184, 92= ); border-color: rgb(76, 174, 76); } .btn-success:focus, .btn-success.focus { color: rgb(255, 255, 255); backgro= und-color: rgb(68, 157, 68); border-color: rgb(37, 86, 37); } .btn-success:hover { color: rgb(255, 255, 255); background-color: rgb(68, 1= 57, 68); border-color: rgb(57, 132, 57); } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-succ= ess { color: rgb(255, 255, 255); background-color: rgb(68, 157, 68); backgr= ound-image: none; border-color: rgb(57, 132, 57); } .btn-success:active:hover, .btn-success.active:hover, .open > .dropdown-tog= gle.btn-success:hover, .btn-success:active:focus, .btn-success.active:focus= , .open > .dropdown-toggle.btn-success:focus, .btn-success:active.focus, .b= tn-success.active.focus, .open > .dropdown-toggle.btn-success.focus { color= : rgb(255, 255, 255); background-color: rgb(57, 132, 57); border-color: rgb= (37, 86, 37); } .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disable= d] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:= focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, = .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus { backg= round-color: rgb(92, 184, 92); border-color: rgb(76, 174, 76); } .btn-success .badge { color: rgb(92, 184, 92); background-color: rgb(255, 2= 55, 255); } .btn-info { color: rgb(255, 255, 255); background-color: rgb(91, 192, 222);= border-color: rgb(70, 184, 218); } .btn-info:focus, .btn-info.focus { color: rgb(255, 255, 255); background-co= lor: rgb(49, 176, 213); border-color: rgb(27, 109, 133); } .btn-info:hover { color: rgb(255, 255, 255); background-color: rgb(49, 176,= 213); border-color: rgb(38, 154, 188); } .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { col= or: rgb(255, 255, 255); background-color: rgb(49, 176, 213); background-ima= ge: none; border-color: rgb(38, 154, 188); } .btn-info:active:hover, .btn-info.active:hover, .open > .dropdown-toggle.bt= n-info:hover, .btn-info:active:focus, .btn-info.active:focus, .open > .drop= down-toggle.btn-info:focus, .btn-info:active.focus, .btn-info.active.focus,= .open > .dropdown-toggle.btn-info.focus { color: rgb(255, 255, 255); backg= round-color: rgb(38, 154, 188); border-color: rgb(27, 109, 133); } .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .bt= n-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset= [disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].f= ocus, fieldset[disabled] .btn-info.focus { background-color: rgb(91, 192, 2= 22); border-color: rgb(70, 184, 218); } .btn-info .badge { color: rgb(91, 192, 222); background-color: rgb(255, 255= , 255); } .btn-warning { color: rgb(255, 255, 255); background-color: rgb(240, 173, 7= 8); border-color: rgb(238, 162, 54); } .btn-warning:focus, .btn-warning.focus { color: rgb(255, 255, 255); backgro= und-color: rgb(236, 151, 31); border-color: rgb(152, 95, 13); } .btn-warning:hover { color: rgb(255, 255, 255); background-color: rgb(236, = 151, 31); border-color: rgb(213, 133, 18); } .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warn= ing { color: rgb(255, 255, 255); background-color: rgb(236, 151, 31); backg= round-image: none; border-color: rgb(213, 133, 18); } .btn-warning:active:hover, .btn-warning.active:hover, .open > .dropdown-tog= gle.btn-warning:hover, .btn-warning:active:focus, .btn-warning.active:focus= , .open > .dropdown-toggle.btn-warning:focus, .btn-warning:active.focus, .b= tn-warning.active.focus, .open > .dropdown-toggle.btn-warning.focus { color= : rgb(255, 255, 255); background-color: rgb(213, 133, 18); border-color: rg= b(152, 95, 13); } .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disable= d] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:= focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, = .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus { backg= round-color: rgb(240, 173, 78); border-color: rgb(238, 162, 54); } .btn-warning .badge { color: rgb(240, 173, 78); background-color: rgb(255, = 255, 255); } .btn-danger { color: rgb(255, 255, 255); background-color: rgb(217, 83, 79)= ; border-color: rgb(212, 63, 58); } .btn-danger:focus, .btn-danger.focus { color: rgb(255, 255, 255); backgroun= d-color: rgb(201, 48, 44); border-color: rgb(118, 28, 25); } .btn-danger:hover { color: rgb(255, 255, 255); background-color: rgb(201, 4= 8, 44); border-color: rgb(172, 41, 37); } .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger= { color: rgb(255, 255, 255); background-color: rgb(201, 48, 44); backgroun= d-image: none; border-color: rgb(172, 41, 37); } .btn-danger:active:hover, .btn-danger.active:hover, .open > .dropdown-toggl= e.btn-danger:hover, .btn-danger:active:focus, .btn-danger.active:focus, .op= en > .dropdown-toggle.btn-danger:focus, .btn-danger:active.focus, .btn-dang= er.active.focus, .open > .dropdown-toggle.btn-danger.focus { color: rgb(255= , 255, 255); background-color: rgb(172, 41, 37); border-color: rgb(118, 28,= 25); } .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled]= .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus= , fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-da= nger[disabled].focus, fieldset[disabled] .btn-danger.focus { background-col= or: rgb(217, 83, 79); border-color: rgb(212, 63, 58); } .btn-danger .badge { color: rgb(217, 83, 79); background-color: rgb(255, 25= 5, 255); } .btn-link { font-weight: 400; color: rgb(41, 110, 170); border-radius: 0px;= } .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldse= t[disabled] .btn-link { background-color: transparent; box-shadow: none; } .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { border-colo= r: transparent; } .btn-link:hover, .btn-link:focus { color: rgb(26, 70, 108); text-decoration= : underline; background-color: transparent; } .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[di= sabled]:focus, fieldset[disabled] .btn-link:focus { color: rgb(119, 119, 11= 9); text-decoration: none; } .btn-lg, .btn-group-lg > .btn { padding: 10px 16px; font-size: 17px; line-h= eight: 1.33333; border-radius: 3px; } .btn-sm, .btn-group-sm > .btn { padding: 5px 10px; font-size: 12px; line-he= ight: 1.5; border-radius: 1px; } .btn-xs, .btn-group-xs > .btn { padding: 1px 5px; font-size: 12px; line-hei= ght: 1.5; border-radius: 1px; } .btn-block { display: block; width: 100%; } .btn-block + .btn-block { margin-top: 5px; } input[type=3D"submit"].btn-block, input[type=3D"reset"].btn-block, input[ty= pe=3D"button"].btn-block { width: 100%; } .fade { opacity: 0; transition: opacity 0.15s linear 0s; } .fade.in { opacity: 1; } .collapse { display: none; } .collapse.in { display: block; } tr.collapse.in { display: table-row; } tbody.collapse.in { display: table-row-group; } .collapsing { position: relative; height: 0px; overflow: hidden; transition= -property: height, visibility; transition-duration: 0.35s; transition-timin= g-function: ease; } .caret { display: inline-block; width: 0px; height: 0px; margin-left: 2px; = vertical-align: middle; border-top: 4px dashed; border-right: 4px solid tra= nsparent; border-left: 4px solid transparent; } .dropup, .dropdown { position: relative; } .dropdown-toggle:focus { outline: 0px; } .dropdown-menu { position: absolute; top: 100%; left: 0px; z-index: 1000; d= isplay: none; float: left; min-width: 160px; padding: 5px 0px; margin: 2px = 0px 0px; font-size: 13px; text-align: left; list-style: none; background-co= lor: rgb(255, 255, 255); background-clip: padding-box; border: 1px solid rg= ba(0, 0, 0, 0.15); border-radius: 2px; box-shadow: rgba(0, 0, 0, 0.176) 0px= 6px 12px; } .dropdown-menu.pull-right { right: 0px; left: auto; } .dropdown-menu .divider { height: 1px; margin: 8px 0px; overflow: hidden; b= ackground-color: rgb(229, 229, 229); } .dropdown-menu > li > a { display: block; padding: 3px 20px; clear: both; f= ont-weight: 400; line-height: 1.42857; color: rgb(51, 51, 51); white-space:= nowrap; } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { color: rgb(3= 8, 38, 38); text-decoration: none; background-color: rgb(245, 245, 245); } .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown= -menu > .active > a:focus { color: rgb(255, 255, 255); text-decoration: non= e; background-color: rgb(51, 122, 183); outline: 0px; } .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .drop= down-menu > .disabled > a:focus { color: rgb(119, 119, 119); } .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus = { text-decoration: none; cursor: not-allowed; background-color: transparent= ; background-image: none; } .open > .dropdown-menu { display: block; } .open > a { outline: 0px; } .dropdown-menu-right { right: 0px; left: auto; } .dropdown-menu-left { right: auto; left: 0px; } .dropdown-header { display: block; padding: 3px 20px; font-size: 12px; line= -height: 1.42857; color: rgb(119, 119, 119); white-space: nowrap; } .dropdown-backdrop { position: fixed; top: 0px; right: 0px; bottom: 0px; le= ft: 0px; z-index: 990; } .pull-right > .dropdown-menu { right: 0px; left: auto; } .dropup .caret, .navbar-fixed-bottom .dropdown .caret { content: ""; border= -top: 0px; border-bottom: 4px dashed; } .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { top= : auto; bottom: 100%; margin-bottom: 2px; } @media (min-width: 541px) { .navbar-right .dropdown-menu { right: 0px; left: auto; } .navbar-right .dropdown-menu-left { right: auto; left: 0px; } } .btn-group, .btn-group-vertical { position: relative; display: inline-block= ; vertical-align: middle; } .btn-group > .btn, .btn-group-vertical > .btn { position: relative; float: = left; } .btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .bt= n:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-g= roup-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical = > .btn.active { z-index: 2; } .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group= + .btn, .btn-group .btn-group + .btn-group { margin-left: -1px; } .btn-toolbar { margin-left: -5px; } .btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group { flo= at: left; } .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group= { margin-left: 5px; } .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) = { border-radius: 0px; } .btn-group > .btn:first-child { margin-left: 0px; } .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { bord= er-top-right-radius: 0px; border-bottom-right-radius: 0px; } .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-togg= le:not(:first-child) { border-top-left-radius: 0px; border-bottom-left-radi= us: 0px; } .btn-group > .btn-group { float: left; } .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { border-= radius: 0px; } .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .bt= n-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { bord= er-top-right-radius: 0px; border-bottom-right-radius: 0px; } .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { b= order-top-left-radius: 0px; border-bottom-left-radius: 0px; } .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outl= ine: 0px; } .btn-group > .btn + .dropdown-toggle { padding-right: 8px; padding-left: 8p= x; } .btn-group > .btn-lg + .dropdown-toggle { padding-right: 12px; padding-left= : 12px; } .btn-group.open .dropdown-toggle { box-shadow: rgba(0, 0, 0, 0.125) 0px 3px= 5px inset; } .btn-group.open .dropdown-toggle.btn-link { box-shadow: none; } .btn .caret { margin-left: 0px; } .btn-lg .caret { border-width: 5px 5px 0px; } .dropup .btn-lg .caret { border-width: 0px 5px 5px; } .btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-ve= rtical > .btn-group > .btn { display: block; float: none; width: 100%; max-= width: 100%; } .btn-group-vertical > .btn-group > .btn { float: none; } .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group,= .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group = + .btn-group { margin-top: -1px; margin-left: 0px; } .btn-group-vertical > .btn:not(:first-child):not(:last-child) { border-radi= us: 0px; } .btn-group-vertical > .btn:first-child:not(:last-child) { border-radius: 2p= x 2px 0px 0px; } .btn-group-vertical > .btn:last-child:not(:first-child) { border-radius: 0p= x 0px 2px 2px; } .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn = { border-radius: 0px; } .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-c= hild, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .drop= down-toggle { border-bottom-right-radius: 0px; border-bottom-left-radius: 0= px; } .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-= child { border-top-left-radius: 0px; border-top-right-radius: 0px; } .btn-group-justified { display: table; width: 100%; table-layout: fixed; bo= rder-collapse: separate; } .btn-group-justified > .btn, .btn-group-justified > .btn-group { display: t= able-cell; float: none; width: 1%; } .btn-group-justified > .btn-group .btn { width: 100%; } .btn-group-justified > .btn-group .dropdown-menu { left: auto; } [data-toggle=3D"buttons"] > .btn input[type=3D"radio"], [data-toggle=3D"but= tons"] > .btn-group > .btn input[type=3D"radio"], [data-toggle=3D"buttons"]= > .btn input[type=3D"checkbox"], [data-toggle=3D"buttons"] > .btn-group > = .btn input[type=3D"checkbox"] { position: absolute; clip: rect(0px, 0px, 0p= x, 0px); pointer-events: none; } .input-group { position: relative; display: table; border-collapse: separat= e; } .input-group[class*=3D"col-"] { float: none; padding-right: 0px; padding-le= ft: 0px; } .input-group .form-control { position: relative; z-index: 2; float: left; w= idth: 100%; margin-bottom: 0px; } .input-group .form-control:focus { z-index: 3; } .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .inp= ut-group-lg > .input-group-btn > .btn { height: 45px; padding: 10px 16px; f= ont-size: 17px; line-height: 1.33333; border-radius: 3px; } select.input-group-lg > .form-control, select.input-group-lg > .input-group= -addon, select.input-group-lg > .input-group-btn > .btn { height: 45px; lin= e-height: 45px; } textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-g= roup-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multi= ple].input-group-lg > .form-control, select[multiple].input-group-lg > .inp= ut-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn {= height: auto; } .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .inp= ut-group-sm > .input-group-btn > .btn { height: 30px; padding: 5px 10px; fo= nt-size: 12px; line-height: 1.5; border-radius: 1px; } select.input-group-sm > .form-control, select.input-group-sm > .input-group= -addon, select.input-group-sm > .input-group-btn > .btn { height: 30px; lin= e-height: 30px; } textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-g= roup-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multi= ple].input-group-sm > .form-control, select[multiple].input-group-sm > .inp= ut-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn {= height: auto; } .input-group-addon, .input-group-btn, .input-group .form-control { display:= table-cell; } .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not= (:first-child):not(:last-child), .input-group .form-control:not(:first-chil= d):not(:last-child) { border-radius: 0px; } .input-group-addon, .input-group-btn { width: 1%; white-space: nowrap; vert= ical-align: middle; } .input-group-addon { padding: 6px 12px; font-size: 13px; font-weight: 400; = line-height: 1; color: rgb(85, 85, 85); text-align: center; background-colo= r: rgb(238, 238, 238); border: 1px solid rgb(204, 204, 204); border-radius:= 2px; } .input-group-addon.input-sm { padding: 5px 10px; font-size: 12px; border-ra= dius: 1px; } .input-group-addon.input-lg { padding: 10px 16px; font-size: 17px; border-r= adius: 3px; } .input-group-addon input[type=3D"radio"], .input-group-addon input[type=3D"= checkbox"] { margin-top: 0px; } .input-group .form-control:first-child, .input-group-addon:first-child, .in= put-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group= > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:= last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:= last-child > .btn-group:not(:last-child) > .btn { border-top-right-radius: = 0px; border-bottom-right-radius: 0px; } .input-group-addon:first-child { border-right: 0px; } .input-group .form-control:last-child, .input-group-addon:last-child, .inpu= t-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .= btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first= -child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:= not(:first-child) > .btn { border-top-left-radius: 0px; border-bottom-left-= radius: 0px; } .input-group-addon:last-child { border-left: 0px; } .input-group-btn { position: relative; font-size: 0px; white-space: nowrap;= } .input-group-btn > .btn { position: relative; } .input-group-btn > .btn + .btn { margin-left: -1px; } .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-= btn > .btn:active { z-index: 2; } .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-gr= oup { margin-right: -1px; } .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-grou= p { z-index: 2; margin-left: -1px; } .nav { padding-left: 0px; margin-bottom: 0px; list-style: none; } .nav > li { position: relative; display: block; } .nav > li > a { position: relative; display: block; padding: 10px 15px; } .nav > li > a:hover, .nav > li > a:focus { text-decoration: none; backgroun= d-color: rgb(238, 238, 238); } .nav > li.disabled > a { color: rgb(119, 119, 119); } .nav > li.disabled > a:hover, .nav > li.disabled > a:focus { color: rgb(119= , 119, 119); text-decoration: none; cursor: not-allowed; background-color: = transparent; } .nav .open > a, .nav .open > a:hover, .nav .open > a:focus { background-col= or: rgb(238, 238, 238); border-color: rgb(41, 110, 170); } .nav .nav-divider { height: 1px; margin: 8px 0px; overflow: hidden; backgro= und-color: rgb(229, 229, 229); } .nav > li > a > img { max-width: none; } .nav-tabs { border-bottom: 1px solid rgb(221, 221, 221); } .nav-tabs > li { float: left; margin-bottom: -1px; } .nav-tabs > li > a { margin-right: 2px; line-height: 1.42857; border: 1px s= olid transparent; border-radius: 2px 2px 0px 0px; } .nav-tabs > li > a:hover { border-color: rgb(238, 238, 238) rgb(238, 238, 2= 38) rgb(221, 221, 221); } .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.= active > a:focus { color: rgb(85, 85, 85); cursor: default; background-colo= r: rgb(255, 255, 255); border-width: 1px; border-style: solid; border-color= : rgb(221, 221, 221) rgb(221, 221, 221) transparent; border-image: initial;= } .nav-tabs.nav-justified { width: 100%; border-bottom: 0px; } .nav-tabs.nav-justified > li { float: none; } .nav-tabs.nav-justified > li > a { margin-bottom: 5px; text-align: center; = } .nav-tabs.nav-justified > .dropdown .dropdown-menu { top: auto; left: auto;= } @media (min-width: 768px) { .nav-tabs.nav-justified > li { display: table-cell; width: 1%; } .nav-tabs.nav-justified > li > a { margin-bottom: 0px; } } .nav-tabs.nav-justified > li > a { margin-right: 0px; border-radius: 2px; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > = a:hover, .nav-tabs.nav-justified > .active > a:focus { border: 1px solid rg= b(221, 221, 221); } @media (min-width: 768px) { .nav-tabs.nav-justified > li > a { border-bottom: 1px solid rgb(221, 221,= 221); border-radius: 2px 2px 0px 0px; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active = > a:hover, .nav-tabs.nav-justified > .active > a:focus { border-bottom-colo= r: rgb(255, 255, 255); } } .nav-pills > li { float: left; } .nav-pills > li > a { border-radius: 2px; } .nav-pills > li + li { margin-left: 2px; } .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > = li.active > a:focus { color: rgb(255, 255, 255); background-color: rgb(51, = 122, 183); } .nav-stacked > li { float: none; } .nav-stacked > li + li { margin-top: 2px; margin-left: 0px; } .nav-justified { width: 100%; } .nav-justified > li { float: none; } .nav-justified > li > a { margin-bottom: 5px; text-align: center; } .nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-justified > li { display: table-cell; width: 1%; } .nav-justified > li > a { margin-bottom: 0px; } } .nav-tabs-justified { border-bottom: 0px; } .nav-tabs-justified > li > a { margin-right: 0px; border-radius: 2px; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover,= .nav-tabs-justified > .active > a:focus { border: 1px solid rgb(221, 221, = 221); } @media (min-width: 768px) { .nav-tabs-justified > li > a { border-bottom: 1px solid rgb(221, 221, 221= ); border-radius: 2px 2px 0px 0px; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hove= r, .nav-tabs-justified > .active > a:focus { border-bottom-color: rgb(255, = 255, 255); } } .tab-content > .tab-pane { display: none; } .tab-content > .active { display: block; } .nav-tabs .dropdown-menu { margin-top: -1px; border-top-left-radius: 0px; b= order-top-right-radius: 0px; } .navbar { position: relative; min-height: 30px; margin-bottom: 18px; border= : 1px solid transparent; } @media (min-width: 541px) { .navbar { border-radius: 2px; } } @media (min-width: 541px) { .navbar-header { float: left; } } .navbar-collapse { padding-right: 0px; padding-left: 0px; overflow-x: visib= le; border-top: 1px solid transparent; box-shadow: rgba(255, 255, 255, 0.1)= 0px 1px 0px inset; } .navbar-collapse.in { overflow-y: auto; } @media (min-width: 541px) { .navbar-collapse { width: auto; border-top: 0px; box-shadow: none; } .navbar-collapse.collapse { padding-bottom: 0px; display: block !importan= t; height: auto !important; overflow: visible !important; } .navbar-collapse.in { overflow-y: visible; } .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, = .navbar-fixed-bottom .navbar-collapse { padding-right: 0px; padding-left: 0= px; } } .navbar-fixed-top, .navbar-fixed-bottom { position: fixed; right: 0px; left= : 0px; z-index: 1030; } .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {= max-height: 340px; } @media (max-device-width: 540px) and (orientation: landscape) { .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse= { max-height: 200px; } } @media (min-width: 541px) { .navbar-fixed-top, .navbar-fixed-bottom { border-radius: 0px; } } .navbar-fixed-top { top: 0px; border-width: 0px 0px 1px; } .navbar-fixed-bottom { bottom: 0px; margin-bottom: 0px; border-width: 1px 0= px 0px; } .container > .navbar-header, .container-fluid > .navbar-header, .container = > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: 0px= ; margin-left: 0px; } @media (min-width: 541px) { .container > .navbar-header, .container-fluid > .navbar-header, .containe= r > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: 0= px; margin-left: 0px; } } .navbar-static-top { z-index: 1000; border-width: 0px 0px 1px; } @media (min-width: 541px) { .navbar-static-top { border-radius: 0px; } } .navbar-brand { float: left; height: 30px; padding: 6px 0px; font-size: 17p= x; line-height: 18px; } .navbar-brand:hover, .navbar-brand:focus { text-decoration: none; } .navbar-brand > img { display: block; } @media (min-width: 541px) { .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-br= and { margin-left: 0px; } } .navbar-toggle { position: relative; float: right; padding: 9px 10px; margi= n-right: 0px; margin-top: -2px; margin-bottom: -2px; background-color: tran= sparent; background-image: none; border: 1px solid transparent; border-radi= us: 2px; } .navbar-toggle:focus { outline: 0px; } .navbar-toggle .icon-bar { display: block; width: 22px; height: 2px; border= -radius: 1px; } .navbar-toggle .icon-bar + .icon-bar { margin-top: 4px; } @media (min-width: 541px) { .navbar-toggle { display: none; } } .navbar-nav { margin: 3px 0px; } .navbar-nav > li > a { padding-top: 10px; padding-bottom: 10px; line-height= : 18px; } @media (max-width: 540px) { .navbar-nav .open .dropdown-menu { position: static; float: none; width: = auto; margin-top: 0px; background-color: transparent; border: 0px; box-shad= ow: none; } .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-me= nu .dropdown-header { padding: 5px 15px 5px 25px; } .navbar-nav .open .dropdown-menu > li > a { line-height: 18px; } .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropd= own-menu > li > a:focus { background-image: none; } } @media (min-width: 541px) { .navbar-nav { float: left; margin: 0px; } .navbar-nav > li { float: left; } .navbar-nav > li > a { padding-top: 6px; padding-bottom: 6px; } } .navbar-form { padding: 10px 0px; margin: -1px 0px; border-top: 1px solid t= ransparent; border-bottom: 1px solid transparent; box-shadow: rgba(255, 255= , 255, 0.1) 0px 1px 0px inset, rgba(255, 255, 255, 0.1) 0px 1px 0px; } @media (min-width: 768px) { .navbar-form .form-group { display: inline-block; margin-bottom: 0px; ver= tical-align: middle; } .navbar-form .form-control { display: inline-block; width: auto; vertical= -align: middle; } .navbar-form .form-control-static { display: inline-block; } .navbar-form .input-group { display: inline-table; vertical-align: middle= ; } .navbar-form .input-group .input-group-addon, .navbar-form .input-group .= input-group-btn, .navbar-form .input-group .form-control { width: auto; } .navbar-form .input-group > .form-control { width: 100%; } .navbar-form .control-label { margin-bottom: 0px; vertical-align: middle;= } .navbar-form .radio, .navbar-form .checkbox { display: inline-block; marg= in-top: 0px; margin-bottom: 0px; vertical-align: middle; } .navbar-form .radio label, .navbar-form .checkbox label { padding-left: 0= px; } .navbar-form .radio input[type=3D"radio"], .navbar-form .checkbox input[t= ype=3D"checkbox"] { position: relative; margin-left: 0px; } .navbar-form .has-feedback .form-control-feedback { top: 0px; } } @media (max-width: 540px) { .navbar-form .form-group { margin-bottom: 5px; } .navbar-form .form-group:last-child { margin-bottom: 0px; } } @media (min-width: 541px) { .navbar-form { width: auto; padding-top: 0px; padding-bottom: 0px; margin= -right: 0px; margin-left: 0px; border: 0px; box-shadow: none; } } .navbar-nav > li > .dropdown-menu { margin-top: 0px; border-top-left-radius= : 0px; border-top-right-radius: 0px; } .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { margin-bottom: 0px= ; border-radius: 2px 2px 0px 0px; } .navbar-btn { margin-top: -1px; margin-bottom: -1px; } .navbar-btn.btn-sm { margin-top: 0px; margin-bottom: 0px; } .navbar-btn.btn-xs { margin-top: 4px; margin-bottom: 4px; } .navbar-text { margin-top: 6px; margin-bottom: 6px; } @media (min-width: 541px) { .navbar-text { float: left; margin-right: 0px; margin-left: 0px; } } @media (min-width: 541px) { .navbar-left { float: left !important; } .navbar-right { margin-right: 0px; float: right !important; } .navbar-right ~ .navbar-right { margin-right: 0px; } } .navbar-default { background-color: rgb(248, 248, 248); border-color: rgb(2= 31, 231, 231); } .navbar-default .navbar-brand { color: rgb(86, 86, 86); } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { = color: rgb(60, 60, 60); background-color: transparent; } .navbar-default .navbar-text { color: rgb(119, 119, 119); } .navbar-default .navbar-nav > li > a { color: rgb(86, 86, 86); } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > l= i > a:focus { color: rgb(51, 51, 51); background-color: transparent; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .a= ctive > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: r= gb(85, 85, 85); background-color: rgb(231, 231, 231); } .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > = .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { co= lor: rgb(204, 204, 204); background-color: transparent; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .ope= n > a:hover, .navbar-default .navbar-nav > .open > a:focus { color: rgb(85,= 85, 85); background-color: rgb(231, 231, 231); } @media (max-width: 540px) { .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: rgb(86= , 86, 86); } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-= default .navbar-nav .open .dropdown-menu > li > a:focus { color: rgb(51, 51= , 51); background-color: transparent; } .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-d= efault .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-defaul= t .navbar-nav .open .dropdown-menu > .active > a:focus { color: rgb(85, 85,= 85); background-color: rgb(231, 231, 231); } .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar= -default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-de= fault .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: rgb(2= 04, 204, 204); background-color: transparent; } } .navbar-default .navbar-toggle { border-color: rgb(221, 221, 221); } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus = { background-color: rgb(221, 221, 221); } .navbar-default .navbar-toggle .icon-bar { background-color: rgb(136, 136, = 136); } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-col= or: rgb(231, 231, 231); } .navbar-default .navbar-link { color: rgb(86, 86, 86); } .navbar-default .navbar-link:hover { color: rgb(51, 51, 51); } .navbar-default .btn-link { color: rgb(86, 86, 86); } .navbar-default .btn-link:hover, .navbar-default .btn-link:focus { color: r= gb(51, 51, 51); } .navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-defau= lt .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[dis= abled] .navbar-default .btn-link:focus { color: rgb(204, 204, 204); } .navbar-inverse { background-color: rgb(34, 34, 34); border-color: rgb(8, 8= , 8); } .navbar-inverse .navbar-brand { color: rgb(157, 157, 157); } .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { = color: rgb(255, 255, 255); background-color: transparent; } .navbar-inverse .navbar-text { color: rgb(157, 157, 157); } .navbar-inverse .navbar-nav > li > a { color: rgb(157, 157, 157); } .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > l= i > a:focus { color: rgb(255, 255, 255); background-color: transparent; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .a= ctive > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { color: r= gb(255, 255, 255); background-color: rgb(8, 8, 8); } .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > = .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { co= lor: rgb(68, 68, 68); background-color: transparent; } .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .ope= n > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { color: rgb(255= , 255, 255); background-color: rgb(8, 8, 8); } @media (max-width: 540px) { .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { bor= der-color: rgb(8, 8, 8); } .navbar-inverse .navbar-nav .open .dropdown-menu .divider { background-co= lor: rgb(8, 8, 8); } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { color: rgb(15= 7, 157, 157); } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-= inverse .navbar-nav .open .dropdown-menu > li > a:focus { color: rgb(255, 2= 55, 255); background-color: transparent; } .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-i= nverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-invers= e .navbar-nav .open .dropdown-menu > .active > a:focus { color: rgb(255, 25= 5, 255); background-color: rgb(8, 8, 8); } .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar= -inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-in= verse .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: rgb(6= 8, 68, 68); background-color: transparent; } } .navbar-inverse .navbar-toggle { border-color: rgb(51, 51, 51); } .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus = { background-color: rgb(51, 51, 51); } .navbar-inverse .navbar-toggle .icon-bar { background-color: rgb(255, 255, = 255); } .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { border-col= or: rgb(16, 16, 16); } .navbar-inverse .navbar-link { color: rgb(157, 157, 157); } .navbar-inverse .navbar-link:hover { color: rgb(255, 255, 255); } .navbar-inverse .btn-link { color: rgb(157, 157, 157); } .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { color: r= gb(255, 255, 255); } .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inver= se .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[dis= abled] .navbar-inverse .btn-link:focus { color: rgb(68, 68, 68); } .breadcrumb { padding: 8px 15px; margin-bottom: 18px; list-style: none; bac= kground-color: rgb(245, 245, 245); border-radius: 2px; } .breadcrumb > li { display: inline-block; } .breadcrumb > li + li::before { padding: 0px 5px; color: rgb(94, 94, 94); c= ontent: "/=C2=A0"; } .breadcrumb > .active { color: rgb(119, 119, 119); } .pagination { display: inline-block; padding-left: 0px; margin: 18px 0px; b= order-radius: 2px; } .pagination > li { display: inline; } .pagination > li > a, .pagination > li > span { position: relative; float: = left; padding: 6px 12px; margin-left: -1px; line-height: 1.42857; color: rg= b(41, 110, 170); text-decoration: none; background-color: rgb(255, 255, 255= ); border: 1px solid rgb(221, 221, 221); } .pagination > li > a:hover, .pagination > li > span:hover, .pagination > li= > a:focus, .pagination > li > span:focus { z-index: 2; color: rgb(26, 70, = 108); background-color: rgb(238, 238, 238); border-color: rgb(221, 221, 221= ); } .pagination > li:first-child > a, .pagination > li:first-child > span { mar= gin-left: 0px; border-top-left-radius: 2px; border-bottom-left-radius: 2px;= } .pagination > li:last-child > a, .pagination > li:last-child > span { borde= r-top-right-radius: 2px; border-bottom-right-radius: 2px; } .pagination > .active > a, .pagination > .active > span, .pagination > .act= ive > a:hover, .pagination > .active > span:hover, .pagination > .active > = a:focus, .pagination > .active > span:focus { z-index: 3; color: rgb(255, 2= 55, 255); cursor: default; background-color: rgb(51, 122, 183); border-colo= r: rgb(51, 122, 183); } .pagination > .disabled > span, .pagination > .disabled > span:hover, .pagi= nation > .disabled > span:focus, .pagination > .disabled > a, .pagination >= .disabled > a:hover, .pagination > .disabled > a:focus { color: rgb(119, 1= 19, 119); cursor: not-allowed; background-color: rgb(255, 255, 255); border= -color: rgb(221, 221, 221); } .pagination-lg > li > a, .pagination-lg > li > span { padding: 10px 16px; f= ont-size: 17px; line-height: 1.33333; } .pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span= { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } .pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {= border-top-right-radius: 3px; border-bottom-right-radius: 3px; } .pagination-sm > li > a, .pagination-sm > li > span { padding: 5px 10px; fo= nt-size: 12px; line-height: 1.5; } .pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span= { border-top-left-radius: 1px; border-bottom-left-radius: 1px; } .pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {= border-top-right-radius: 1px; border-bottom-right-radius: 1px; } .pager { padding-left: 0px; margin: 18px 0px; text-align: center; list-styl= e: none; } .pager li { display: inline; } .pager li > a, .pager li > span { display: inline-block; padding: 5px 14px;= background-color: rgb(255, 255, 255); border: 1px solid rgb(221, 221, 221)= ; border-radius: 15px; } .pager li > a:hover, .pager li > a:focus { text-decoration: none; backgroun= d-color: rgb(238, 238, 238); } .pager .next > a, .pager .next > span { float: right; } .pager .previous > a, .pager .previous > span { float: left; } .pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focu= s, .pager .disabled > span { color: rgb(119, 119, 119); cursor: not-allowed= ; background-color: rgb(255, 255, 255); } .label { display: inline; padding: 0.2em 0.6em 0.3em; font-size: 75%; font-= weight: 700; line-height: 1; color: rgb(255, 255, 255); text-align: center;= white-space: nowrap; vertical-align: baseline; border-radius: 0.25em; } a.label:hover, a.label:focus { color: rgb(255, 255, 255); text-decoration: = none; cursor: pointer; } .label:empty { display: none; } .btn .label { position: relative; top: -1px; } .label-default { background-color: rgb(119, 119, 119); } .label-default[href]:hover, .label-default[href]:focus { background-color: = rgb(94, 94, 94); } .label-primary { background-color: rgb(51, 122, 183); } .label-primary[href]:hover, .label-primary[href]:focus { background-color: = rgb(40, 96, 144); } .label-success { background-color: rgb(92, 184, 92); } .label-success[href]:hover, .label-success[href]:focus { background-color: = rgb(68, 157, 68); } .label-info { background-color: rgb(91, 192, 222); } .label-info[href]:hover, .label-info[href]:focus { background-color: rgb(49= , 176, 213); } .label-warning { background-color: rgb(240, 173, 78); } .label-warning[href]:hover, .label-warning[href]:focus { background-color: = rgb(236, 151, 31); } .label-danger { background-color: rgb(217, 83, 79); } .label-danger[href]:hover, .label-danger[href]:focus { background-color: rg= b(201, 48, 44); } .badge { display: inline-block; min-width: 10px; padding: 3px 7px; font-siz= e: 12px; font-weight: bold; line-height: 1; color: rgb(255, 255, 255); text= -align: center; white-space: nowrap; vertical-align: middle; background-col= or: rgb(119, 119, 119); border-radius: 10px; } .badge:empty { display: none; } .btn .badge { position: relative; top: -1px; } .btn-xs .badge, .btn-group-xs > .btn .badge { top: 0px; padding: 1px 5px; } a.badge:hover, a.badge:focus { color: rgb(255, 255, 255); text-decoration: = none; cursor: pointer; } .list-group-item.active > .badge, .nav-pills > .active > a > .badge { color= : rgb(41, 110, 170); background-color: rgb(255, 255, 255); } .list-group-item > .badge { float: right; } .list-group-item > .badge + .badge { margin-right: 5px; } .nav-pills > li > a > .badge { margin-left: 3px; } .jumbotron { padding-top: 30px; padding-bottom: 30px; margin-bottom: 30px; = color: inherit; background-color: rgb(238, 238, 238); } .jumbotron h1, .jumbotron .h1 { color: inherit; } .jumbotron p { margin-bottom: 15px; font-size: 20px; font-weight: 200; } .jumbotron > hr { border-top-color: rgb(213, 213, 213); } .container .jumbotron, .container-fluid .jumbotron { padding-right: 0px; pa= dding-left: 0px; border-radius: 3px; } .jumbotron .container { max-width: 100%; } @media screen and (min-width: 768px) { .jumbotron { padding-top: 48px; padding-bottom: 48px; } .container .jumbotron, .container-fluid .jumbotron { padding-right: 60px;= padding-left: 60px; } .jumbotron h1, .jumbotron .h1 { font-size: 59px; } } .thumbnail { display: block; padding: 4px; margin-bottom: 18px; line-height= : 1.42857; background-color: rgb(255, 255, 255); border: 1px solid rgb(221,= 221, 221); border-radius: 2px; transition: border 0.2s ease-in-out 0s; } .thumbnail > img, .thumbnail a > img { margin-right: auto; margin-left: aut= o; } a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { border-color: rg= b(41, 110, 170); } .thumbnail .caption { padding: 9px; color: rgb(0, 0, 0); } .alert { padding: 15px; margin-bottom: 18px; border: 1px solid transparent;= border-radius: 2px; } .alert h4 { margin-top: 0px; color: inherit; } .alert .alert-link { font-weight: bold; } .alert > p, .alert > ul { margin-bottom: 0px; } .alert > p + p { margin-top: 5px; } .alert-dismissable, .alert-dismissible { padding-right: 35px; } .alert-dismissable .close, .alert-dismissible .close { position: relative; = top: -2px; right: -21px; color: inherit; } .alert-success { color: rgb(60, 118, 61); background-color: rgb(223, 240, 2= 16); border-color: rgb(214, 233, 198); } .alert-success hr { border-top-color: rgb(201, 226, 179); } .alert-success .alert-link { color: rgb(43, 84, 44); } .alert-info { color: rgb(49, 112, 143); background-color: rgb(217, 237, 247= ); border-color: rgb(188, 232, 241); } .alert-info hr { border-top-color: rgb(166, 225, 236); } .alert-info .alert-link { color: rgb(36, 82, 105); } .alert-warning { color: rgb(138, 109, 59); background-color: rgb(252, 248, = 227); border-color: rgb(250, 235, 204); } .alert-warning hr { border-top-color: rgb(247, 225, 181); } .alert-warning .alert-link { color: rgb(102, 81, 44); } .alert-danger { color: rgb(169, 68, 66); background-color: rgb(242, 222, 22= 2); border-color: rgb(235, 204, 209); } .alert-danger hr { border-top-color: rgb(228, 185, 192); } .alert-danger .alert-link { color: rgb(132, 53, 52); } @-webkit-keyframes progress-bar-stripes {=20 0% { background-position: 40px 0px; } 100% { background-position: 0px 0px; } } @keyframes progress-bar-stripes {=20 0% { background-position: 40px 0px; } 100% { background-position: 0px 0px; } } .progress { height: 18px; margin-bottom: 18px; overflow: hidden; background= -color: rgb(245, 245, 245); border-radius: 2px; box-shadow: rgba(0, 0, 0, 0= .1) 0px 1px 2px inset; } .progress-bar { float: left; width: 0%; height: 100%; font-size: 12px; line= -height: 18px; color: rgb(255, 255, 255); text-align: center; background-co= lor: rgb(51, 122, 183); box-shadow: rgba(0, 0, 0, 0.15) 0px -1px 0px inset;= transition: width 0.6s ease 0s; } .progress-striped .progress-bar, .progress-bar-striped { background-image: = linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, tran= sparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, = transparent 75%, transparent); background-size: 40px 40px; } .progress.active .progress-bar, .progress-bar.active { animation: 2s linear= 0s infinite normal none running progress-bar-stripes; } .progress-bar-success { background-color: rgb(92, 184, 92); } .progress-striped .progress-bar-success { background-image: linear-gradient= (45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rg= ba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%= , transparent); } .progress-bar-info { background-color: rgb(91, 192, 222); } .progress-striped .progress-bar-info { background-image: linear-gradient(45= deg, 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%, t= ransparent); } .progress-bar-warning { background-color: rgb(240, 173, 78); } .progress-striped .progress-bar-warning { background-image: linear-gradient= (45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rg= ba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%= , transparent); } .progress-bar-danger { background-color: rgb(217, 83, 79); } .progress-striped .progress-bar-danger { background-image: linear-gradient(= 45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgb= a(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%,= transparent); } .media { margin-top: 15px; } .media:first-child { margin-top: 0px; } .media, .media-body { overflow: hidden; zoom: 1; } .media-body { width: 10000px; } .media-object { display: block; } .media-object.img-thumbnail { max-width: none; } .media-right, .media > .pull-right { padding-left: 10px; } .media-left, .media > .pull-left { padding-right: 10px; } .media-left, .media-right, .media-body { display: table-cell; vertical-alig= n: top; } .media-middle { vertical-align: middle; } .media-bottom { vertical-align: bottom; } .media-heading { margin-top: 0px; margin-bottom: 5px; } .media-list { padding-left: 0px; list-style: none; } .list-group { padding-left: 0px; margin-bottom: 20px; } .list-group-item { position: relative; display: block; padding: 10px 15px; = margin-bottom: -1px; background-color: rgb(255, 255, 255); border: 1px soli= d rgb(221, 221, 221); } .list-group-item:first-child { border-top-left-radius: 2px; border-top-righ= t-radius: 2px; } .list-group-item:last-child { margin-bottom: 0px; border-bottom-right-radiu= s: 2px; border-bottom-left-radius: 2px; } .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-ite= m.disabled:focus { color: rgb(119, 119, 119); cursor: not-allowed; backgrou= nd-color: rgb(238, 238, 238); } .list-group-item.disabled .list-group-item-heading, .list-group-item.disabl= ed:hover .list-group-item-heading, .list-group-item.disabled:focus .list-gr= oup-item-heading { color: inherit; } .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:= hover .list-group-item-text, .list-group-item.disabled:focus .list-group-it= em-text { color: rgb(119, 119, 119); } .list-group-item.active, .list-group-item.active:hover, .list-group-item.ac= tive:focus { z-index: 2; color: rgb(255, 255, 255); background-color: rgb(5= 1, 122, 183); border-color: rgb(51, 122, 183); } .list-group-item.active .list-group-item-heading, .list-group-item.active:h= over .list-group-item-heading, .list-group-item.active:focus .list-group-it= em-heading, .list-group-item.active .list-group-item-heading > small, .list= -group-item.active:hover .list-group-item-heading > small, .list-group-item= .active:focus .list-group-item-heading > small, .list-group-item.active .li= st-group-item-heading > .small, .list-group-item.active:hover .list-group-i= tem-heading > .small, .list-group-item.active:focus .list-group-item-headin= g > .small { color: inherit; } .list-group-item.active .list-group-item-text, .list-group-item.active:hove= r .list-group-item-text, .list-group-item.active:focus .list-group-item-tex= t { color: rgb(199, 221, 239); } a.list-group-item, button.list-group-item { color: rgb(85, 85, 85); } a.list-group-item .list-group-item-heading, button.list-group-item .list-gr= oup-item-heading { color: rgb(51, 51, 51); } a.list-group-item:hover, button.list-group-item:hover, a.list-group-item:fo= cus, button.list-group-item:focus { color: rgb(85, 85, 85); text-decoration= : none; background-color: rgb(245, 245, 245); } button.list-group-item { width: 100%; text-align: left; } .list-group-item-success { color: rgb(60, 118, 61); background-color: rgb(2= 23, 240, 216); } a.list-group-item-success, button.list-group-item-success { color: rgb(60, = 118, 61); } a.list-group-item-success .list-group-item-heading, button.list-group-item-= success .list-group-item-heading { color: inherit; } a.list-group-item-success:hover, button.list-group-item-success:hover, a.li= st-group-item-success:focus, button.list-group-item-success:focus { color: = rgb(60, 118, 61); background-color: rgb(208, 233, 198); } a.list-group-item-success.active, button.list-group-item-success.active, a.= list-group-item-success.active:hover, button.list-group-item-success.active= :hover, a.list-group-item-success.active:focus, button.list-group-item-succ= ess.active:focus { color: rgb(255, 255, 255); background-color: rgb(60, 118= , 61); border-color: rgb(60, 118, 61); } .list-group-item-info { color: rgb(49, 112, 143); background-color: rgb(217= , 237, 247); } a.list-group-item-info, button.list-group-item-info { color: rgb(49, 112, 1= 43); } a.list-group-item-info .list-group-item-heading, button.list-group-item-inf= o .list-group-item-heading { color: inherit; } a.list-group-item-info:hover, button.list-group-item-info:hover, a.list-gro= up-item-info:focus, button.list-group-item-info:focus { color: rgb(49, 112,= 143); background-color: rgb(196, 227, 243); } a.list-group-item-info.active, button.list-group-item-info.active, a.list-g= roup-item-info.active:hover, button.list-group-item-info.active:hover, a.li= st-group-item-info.active:focus, button.list-group-item-info.active:focus {= color: rgb(255, 255, 255); background-color: rgb(49, 112, 143); border-col= or: rgb(49, 112, 143); } .list-group-item-warning { color: rgb(138, 109, 59); background-color: rgb(= 252, 248, 227); } a.list-group-item-warning, button.list-group-item-warning { color: rgb(138,= 109, 59); } a.list-group-item-warning .list-group-item-heading, button.list-group-item-= warning .list-group-item-heading { color: inherit; } a.list-group-item-warning:hover, button.list-group-item-warning:hover, a.li= st-group-item-warning:focus, button.list-group-item-warning:focus { color: = rgb(138, 109, 59); background-color: rgb(250, 242, 204); } a.list-group-item-warning.active, button.list-group-item-warning.active, a.= list-group-item-warning.active:hover, button.list-group-item-warning.active= :hover, a.list-group-item-warning.active:focus, button.list-group-item-warn= ing.active:focus { color: rgb(255, 255, 255); background-color: rgb(138, 10= 9, 59); border-color: rgb(138, 109, 59); } .list-group-item-danger { color: rgb(169, 68, 66); background-color: rgb(24= 2, 222, 222); } a.list-group-item-danger, button.list-group-item-danger { color: rgb(169, 6= 8, 66); } a.list-group-item-danger .list-group-item-heading, button.list-group-item-d= anger .list-group-item-heading { color: inherit; } a.list-group-item-danger:hover, button.list-group-item-danger:hover, a.list= -group-item-danger:focus, button.list-group-item-danger:focus { color: rgb(= 169, 68, 66); background-color: rgb(235, 204, 204); } a.list-group-item-danger.active, button.list-group-item-danger.active, a.li= st-group-item-danger.active:hover, button.list-group-item-danger.active:hov= er, a.list-group-item-danger.active:focus, button.list-group-item-danger.ac= tive:focus { color: rgb(255, 255, 255); background-color: rgb(169, 68, 66);= border-color: rgb(169, 68, 66); } .list-group-item-heading { margin-top: 0px; margin-bottom: 5px; } .list-group-item-text { margin-bottom: 0px; line-height: 1.3; } .panel { margin-bottom: 18px; background-color: rgb(255, 255, 255); border:= 1px solid transparent; border-radius: 2px; box-shadow: rgba(0, 0, 0, 0.05)= 0px 1px 1px; } .panel-body { padding: 15px; } .panel-heading { padding: 10px 15px; border-bottom: 1px solid transparent; = border-top-left-radius: 1px; border-top-right-radius: 1px; } .panel-heading > .dropdown .dropdown-toggle { color: inherit; } .panel-title { margin-top: 0px; margin-bottom: 0px; font-size: 15px; color:= inherit; } .panel-title > a, .panel-title > small, .panel-title > .small, .panel-title= > small > a, .panel-title > .small > a { color: inherit; } .panel-footer { padding: 10px 15px; background-color: rgb(245, 245, 245); b= order-top: 1px solid rgb(221, 221, 221); border-bottom-right-radius: 1px; b= order-bottom-left-radius: 1px; } .panel > .list-group, .panel > .panel-collapse > .list-group { margin-botto= m: 0px; } .panel > .list-group .list-group-item, .panel > .panel-collapse > .list-gro= up .list-group-item { border-width: 1px 0px; border-radius: 0px; } .panel > .list-group:first-child .list-group-item:first-child, .panel > .pa= nel-collapse > .list-group:first-child .list-group-item:first-child { borde= r-top: 0px; border-top-left-radius: 1px; border-top-right-radius: 1px; } .panel > .list-group:last-child .list-group-item:last-child, .panel > .pane= l-collapse > .list-group:last-child .list-group-item:last-child { border-bo= ttom: 0px; border-bottom-right-radius: 1px; border-bottom-left-radius: 1px;= } .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:fi= rst-child { border-top-left-radius: 0px; border-top-right-radius: 0px; } .panel-heading + .list-group .list-group-item:first-child { border-top-widt= h: 0px; } .list-group + .panel-footer { border-top-width: 0px; } .panel > .table, .panel > .table-responsive > .table, .panel > .panel-colla= pse > .table { margin-bottom: 0px; } .panel > .table caption, .panel > .table-responsive > .table caption, .pane= l > .panel-collapse > .table caption { padding-right: 15px; padding-left: 1= 5px; } .panel > .table:first-child, .panel > .table-responsive:first-child > .tabl= e:first-child { border-top-left-radius: 1px; border-top-right-radius: 1px; = } .panel > .table:first-child > thead:first-child > tr:first-child, .panel > = .table-responsive:first-child > .table:first-child > thead:first-child > tr= :first-child, .panel > .table:first-child > tbody:first-child > tr:first-ch= ild, .panel > .table-responsive:first-child > .table:first-child > tbody:fi= rst-child > tr:first-child { border-top-left-radius: 1px; border-top-right-= radius: 1px; } .panel > .table:first-child > thead:first-child > tr:first-child td:first-c= hild, .panel > .table-responsive:first-child > .table:first-child > thead:f= irst-child > tr:first-child td:first-child, .panel > .table:first-child > t= body:first-child > tr:first-child td:first-child, .panel > .table-responsiv= e:first-child > .table:first-child > tbody:first-child > tr:first-child td:= first-child, .panel > .table:first-child > thead:first-child > tr:first-chi= ld th:first-child, .panel > .table-responsive:first-child > .table:first-ch= ild > thead:first-child > tr:first-child th:first-child, .panel > .table:fi= rst-child > tbody:first-child > tr:first-child th:first-child, .panel > .ta= ble-responsive:first-child > .table:first-child > tbody:first-child > tr:fi= rst-child th:first-child { border-top-left-radius: 1px; } .panel > .table:first-child > thead:first-child > tr:first-child td:last-ch= ild, .panel > .table-responsive:first-child > .table:first-child > thead:fi= rst-child > tr:first-child td:last-child, .panel > .table:first-child > tbo= dy:first-child > tr:first-child td:last-child, .panel > .table-responsive:f= irst-child > .table:first-child > tbody:first-child > tr:first-child td:las= t-child, .panel > .table:first-child > thead:first-child > tr:first-child t= h:last-child, .panel > .table-responsive:first-child > .table:first-child >= thead:first-child > tr:first-child th:last-child, .panel > .table:first-ch= ild > tbody:first-child > tr:first-child th:last-child, .panel > .table-res= ponsive:first-child > .table:first-child > tbody:first-child > tr:first-chi= ld th:last-child { border-top-right-radius: 1px; } .panel > .table:last-child, .panel > .table-responsive:last-child > .table:= last-child { border-bottom-right-radius: 1px; border-bottom-left-radius: 1p= x; } .panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .ta= ble-responsive:last-child > .table:last-child > tbody:last-child > tr:last-= child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .pane= l > .table-responsive:last-child > .table:last-child > tfoot:last-child > t= r:last-child { border-bottom-right-radius: 1px; border-bottom-left-radius: = 1px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:first-chil= d, .panel > .table-responsive:last-child > .table:last-child > tbody:last-c= hild > tr:last-child td:first-child, .panel > .table:last-child > tfoot:las= t-child > tr:last-child td:first-child, .panel > .table-responsive:last-chi= ld > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .= panel > .table:last-child > tbody:last-child > tr:last-child th:first-child= , .panel > .table-responsive:last-child > .table:last-child > tbody:last-ch= ild > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last= -child > tr:last-child th:first-child, .panel > .table-responsive:last-chil= d > .table:last-child > tfoot:last-child > tr:last-child th:first-child { b= order-bottom-left-radius: 1px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child= , .panel > .table-responsive:last-child > .table:last-child > tbody:last-ch= ild > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-= child > tr:last-child td:last-child, .panel > .table-responsive:last-child = > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .pane= l > .table:last-child > tbody:last-child > tr:last-child th:last-child, .pa= nel > .table-responsive:last-child > .table:last-child > tbody:last-child >= tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child= > tr:last-child th:last-child, .panel > .table-responsive:last-child > .ta= ble:last-child > tfoot:last-child > tr:last-child th:last-child { border-bo= ttom-right-radius: 1px; } .panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .p= anel > .table + .panel-body, .panel > .table-responsive + .panel-body { bor= der-top: 1px solid rgb(221, 221, 221); } .panel > .table > tbody:first-child > tr:first-child th, .panel > .table > = tbody:first-child > tr:first-child td { border-top: 0px; } .panel > .table-bordered, .panel > .table-responsive > .table-bordered { bo= rder: 0px; } .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-res= ponsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bo= rdered > tbody > tr > th:first-child, .panel > .table-responsive > .table-b= ordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > t= r > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > = tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child= , .panel > .table-responsive > .table-bordered > thead > tr > td:first-chil= d, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-= responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table= -bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .tabl= e-bordered > tfoot > tr > td:first-child { border-left: 0px; } .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-resp= onsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bord= ered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bord= ered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > = th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > = th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .pane= l > .table-responsive > .table-bordered > thead > tr > td:last-child, .pane= l > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsiv= e > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered = > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered = > tfoot > tr > td:last-child { border-right: 0px; } .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-res= ponsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bo= rdered > tbody > tr:first-child > td, .panel > .table-responsive > .table-b= ordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > t= r:first-child > th, .panel > .table-responsive > .table-bordered > thead > = tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th= , .panel > .table-responsive > .table-bordered > tbody > tr:first-child > t= h { border-bottom: 0px; } .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-resp= onsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bord= ered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bord= ered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:la= st-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:la= st-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .pane= l > .table-responsive > .table-bordered > tfoot > tr:last-child > th { bord= er-bottom: 0px; } .panel > .table-responsive { margin-bottom: 0px; border: 0px; } .panel-group { margin-bottom: 18px; } .panel-group .panel { margin-bottom: 0px; border-radius: 2px; } .panel-group .panel + .panel { margin-top: 5px; } .panel-group .panel-heading { border-bottom: 0px; } .panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .= panel-heading + .panel-collapse > .list-group { border-top: 1px solid rgb(2= 21, 221, 221); } .panel-group .panel-footer { border-top: 0px; } .panel-group .panel-footer + .panel-collapse .panel-body { border-bottom: 1= px solid rgb(221, 221, 221); } .panel-default { border-color: rgb(221, 221, 221); } .panel-default > .panel-heading { color: rgb(51, 51, 51); background-color:= rgb(245, 245, 245); border-color: rgb(221, 221, 221); } .panel-default > .panel-heading + .panel-collapse > .panel-body { border-to= p-color: rgb(221, 221, 221); } .panel-default > .panel-heading .badge { color: rgb(245, 245, 245); backgro= und-color: rgb(51, 51, 51); } .panel-default > .panel-footer + .panel-collapse > .panel-body { border-bot= tom-color: rgb(221, 221, 221); } .panel-primary { border-color: rgb(51, 122, 183); } .panel-primary > .panel-heading { color: rgb(255, 255, 255); background-col= or: rgb(51, 122, 183); border-color: rgb(51, 122, 183); } .panel-primary > .panel-heading + .panel-collapse > .panel-body { border-to= p-color: rgb(51, 122, 183); } .panel-primary > .panel-heading .badge { color: rgb(51, 122, 183); backgrou= nd-color: rgb(255, 255, 255); } .panel-primary > .panel-footer + .panel-collapse > .panel-body { border-bot= tom-color: rgb(51, 122, 183); } .panel-success { border-color: rgb(214, 233, 198); } .panel-success > .panel-heading { color: rgb(60, 118, 61); background-color= : rgb(223, 240, 216); border-color: rgb(214, 233, 198); } .panel-success > .panel-heading + .panel-collapse > .panel-body { border-to= p-color: rgb(214, 233, 198); } .panel-success > .panel-heading .badge { color: rgb(223, 240, 216); backgro= und-color: rgb(60, 118, 61); } .panel-success > .panel-footer + .panel-collapse > .panel-body { border-bot= tom-color: rgb(214, 233, 198); } .panel-info { border-color: rgb(188, 232, 241); } .panel-info > .panel-heading { color: rgb(49, 112, 143); background-color: = rgb(217, 237, 247); border-color: rgb(188, 232, 241); } .panel-info > .panel-heading + .panel-collapse > .panel-body { border-top-c= olor: rgb(188, 232, 241); } .panel-info > .panel-heading .badge { color: rgb(217, 237, 247); background= -color: rgb(49, 112, 143); } .panel-info > .panel-footer + .panel-collapse > .panel-body { border-bottom= -color: rgb(188, 232, 241); } .panel-warning { border-color: rgb(250, 235, 204); } .panel-warning > .panel-heading { color: rgb(138, 109, 59); background-colo= r: rgb(252, 248, 227); border-color: rgb(250, 235, 204); } .panel-warning > .panel-heading + .panel-collapse > .panel-body { border-to= p-color: rgb(250, 235, 204); } .panel-warning > .panel-heading .badge { color: rgb(252, 248, 227); backgro= und-color: rgb(138, 109, 59); } .panel-warning > .panel-footer + .panel-collapse > .panel-body { border-bot= tom-color: rgb(250, 235, 204); } .panel-danger { border-color: rgb(235, 204, 209); } .panel-danger > .panel-heading { color: rgb(169, 68, 66); background-color:= rgb(242, 222, 222); border-color: rgb(235, 204, 209); } .panel-danger > .panel-heading + .panel-collapse > .panel-body { border-top= -color: rgb(235, 204, 209); } .panel-danger > .panel-heading .badge { color: rgb(242, 222, 222); backgrou= nd-color: rgb(169, 68, 66); } .panel-danger > .panel-footer + .panel-collapse > .panel-body { border-bott= om-color: rgb(235, 204, 209); } .embed-responsive { position: relative; display: block; height: 0px; paddin= g: 0px; overflow: hidden; } .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-= responsive embed, .embed-responsive object, .embed-responsive video { posit= ion: absolute; top: 0px; bottom: 0px; left: 0px; width: 100%; height: 100%;= border: 0px; } .embed-responsive-16by9 { padding-bottom: 56.25%; } .embed-responsive-4by3 { padding-bottom: 75%; } .well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-co= lor: rgb(245, 245, 245); border: 1px solid rgb(227, 227, 227); border-radiu= s: 2px; box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 1px inset; } .well blockquote { border-color: rgba(0, 0, 0, 0.15); } .well-lg { padding: 24px; border-radius: 3px; } .well-sm { padding: 9px; border-radius: 1px; } .close { float: right; font-size: 19.5px; font-weight: bold; line-height: 1= ; color: rgb(0, 0, 0); text-shadow: rgb(255, 255, 255) 0px 1px 0px; opacity= : 0.2; } .close:hover, .close:focus { color: rgb(0, 0, 0); text-decoration: none; cu= rsor: pointer; opacity: 0.5; } button.close { padding: 0px; cursor: pointer; background: transparent; bord= er: 0px; appearance: none; } .modal-open { overflow: hidden; } .modal { position: fixed; top: 0px; right: 0px; bottom: 0px; left: 0px; z-i= ndex: 1050; display: none; overflow: hidden; outline: 0px; } .modal.fade .modal-dialog { transform: translate(0px, -25%); transition: tr= ansform 0.3s ease-out 0s; } .modal.in .modal-dialog { transform: translate(0px, 0px); } .modal-open .modal { overflow: hidden auto; } .modal-dialog { position: relative; width: auto; margin: 10px; } .modal-content { position: relative; background-color: rgb(255, 255, 255); = background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.2); border-= radius: 3px; box-shadow: rgba(0, 0, 0, 0.5) 0px 3px 9px; outline: 0px; } .modal-backdrop { position: fixed; top: 0px; right: 0px; bottom: 0px; left:= 0px; z-index: 1040; background-color: rgb(0, 0, 0); } .modal-backdrop.fade { opacity: 0; } .modal-backdrop.in { opacity: 0.5; } .modal-header { padding: 15px; border-bottom: 1px solid rgb(229, 229, 229);= } .modal-header .close { margin-top: -2px; } .modal-title { margin: 0px; line-height: 1.42857; } .modal-body { position: relative; padding: 15px; } .modal-footer { padding: 15px; text-align: right; border-top: 1px solid rgb= (229, 229, 229); } .modal-footer .btn + .btn { margin-bottom: 0px; margin-left: 5px; } .modal-footer .btn-group .btn + .btn { margin-left: -1px; } .modal-footer .btn-block + .btn-block { margin-left: 0px; } .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; h= eight: 50px; overflow: scroll; } @media (min-width: 768px) { .modal-dialog { width: 600px; margin: 30px auto; } .modal-content { box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px; } .modal-sm { width: 300px; } } @media (min-width: 992px) { .modal-lg { width: 900px; } } .tooltip { position: absolute; z-index: 1070; display: block; font-family: = "Helvetica Neue", Helvetica, Arial, sans-serif; font-style: normal; font-we= ight: 400; line-height: 1.42857; line-break: auto; text-align: start; text-= decoration: none; text-shadow: none; text-transform: none; letter-spacing: = normal; word-break: normal; word-spacing: normal; overflow-wrap: normal; wh= ite-space: normal; font-size: 12px; opacity: 0; } .tooltip.in { opacity: 0.9; } .tooltip.top { padding: 5px 0px; margin-top: -3px; } .tooltip.right { padding: 0px 5px; margin-left: 3px; } .tooltip.bottom { padding: 5px 0px; margin-top: 3px; } .tooltip.left { padding: 0px 5px; margin-left: -3px; } .tooltip.top .tooltip-arrow { bottom: 0px; left: 50%; margin-left: -5px; bo= rder-width: 5px 5px 0px; border-top-color: rgb(0, 0, 0); } .tooltip.top-left .tooltip-arrow { right: 5px; bottom: 0px; margin-bottom: = -5px; border-width: 5px 5px 0px; border-top-color: rgb(0, 0, 0); } .tooltip.top-right .tooltip-arrow { bottom: 0px; left: 5px; margin-bottom: = -5px; border-width: 5px 5px 0px; border-top-color: rgb(0, 0, 0); } .tooltip.right .tooltip-arrow { top: 50%; left: 0px; margin-top: -5px; bord= er-width: 5px 5px 5px 0px; border-right-color: rgb(0, 0, 0); } .tooltip.left .tooltip-arrow { top: 50%; right: 0px; margin-top: -5px; bord= er-width: 5px 0px 5px 5px; border-left-color: rgb(0, 0, 0); } .tooltip.bottom .tooltip-arrow { top: 0px; left: 50%; margin-left: -5px; bo= rder-width: 0px 5px 5px; border-bottom-color: rgb(0, 0, 0); } .tooltip.bottom-left .tooltip-arrow { top: 0px; right: 5px; margin-top: -5p= x; border-width: 0px 5px 5px; border-bottom-color: rgb(0, 0, 0); } .tooltip.bottom-right .tooltip-arrow { top: 0px; left: 5px; margin-top: -5p= x; border-width: 0px 5px 5px; border-bottom-color: rgb(0, 0, 0); } .tooltip-inner { max-width: 200px; padding: 3px 8px; color: rgb(255, 255, 2= 55); text-align: center; background-color: rgb(0, 0, 0); border-radius: 2px= ; } .tooltip-arrow { position: absolute; width: 0px; height: 0px; border-color:= transparent; border-style: solid; } .popover { position: absolute; top: 0px; left: 0px; z-index: 1060; display:= none; max-width: 276px; padding: 1px; font-family: "Helvetica Neue", Helve= tica, Arial, sans-serif; font-style: normal; font-weight: 400; line-height:= 1.42857; line-break: auto; text-align: start; text-decoration: none; text-= shadow: none; text-transform: none; letter-spacing: normal; word-break: nor= mal; word-spacing: normal; overflow-wrap: normal; white-space: normal; font= -size: 13px; background-color: rgb(255, 255, 255); background-clip: padding= -box; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 3px; box-shadow:= rgba(0, 0, 0, 0.2) 0px 5px 10px; } .popover.top { margin-top: -10px; } .popover.right { margin-left: 10px; } .popover.bottom { margin-top: 10px; } .popover.left { margin-left: -10px; } .popover > .arrow { border-width: 11px; } .popover > .arrow, .popover > .arrow::after { position: absolute; display: = block; width: 0px; height: 0px; border-color: transparent; border-style: so= lid; } .popover > .arrow::after { content: ""; border-width: 10px; } .popover.top > .arrow { bottom: -11px; left: 50%; margin-left: -11px; borde= r-top-color: rgba(0, 0, 0, 0.25); border-bottom-width: 0px; } .popover.top > .arrow::after { bottom: 1px; margin-left: -10px; content: " = "; border-top-color: rgb(255, 255, 255); border-bottom-width: 0px; } .popover.right > .arrow { top: 50%; left: -11px; margin-top: -11px; border-= right-color: rgba(0, 0, 0, 0.25); border-left-width: 0px; } .popover.right > .arrow::after { bottom: -10px; left: 1px; content: " "; bo= rder-right-color: rgb(255, 255, 255); border-left-width: 0px; } .popover.bottom > .arrow { top: -11px; left: 50%; margin-left: -11px; borde= r-top-width: 0px; border-bottom-color: rgba(0, 0, 0, 0.25); } .popover.bottom > .arrow::after { top: 1px; margin-left: -10px; content: " = "; border-top-width: 0px; border-bottom-color: rgb(255, 255, 255); } .popover.left > .arrow { top: 50%; right: -11px; margin-top: -11px; border-= right-width: 0px; border-left-color: rgba(0, 0, 0, 0.25); } .popover.left > .arrow::after { right: 1px; bottom: -10px; content: " "; bo= rder-right-width: 0px; border-left-color: rgb(255, 255, 255); } .popover-title { padding: 8px 14px; margin: 0px; font-size: 13px; backgroun= d-color: rgb(247, 247, 247); border-bottom: 1px solid rgb(235, 235, 235); b= order-radius: 2px 2px 0px 0px; } .popover-content { padding: 9px 14px; } .carousel { position: relative; } .carousel-inner { position: relative; width: 100%; overflow: hidden; } .carousel-inner > .item { position: relative; display: none; transition: le= ft 0.6s ease-in-out 0s; } .carousel-inner > .item > img, .carousel-inner > .item > a > img { line-hei= ght: 1; } @media not all, (-webkit-transform-3d) { .carousel-inner > .item { transition: transform 0.6s ease-in-out 0s; back= face-visibility: hidden; perspective: 1000px; } .carousel-inner > .item.next, .carousel-inner > .item.active.right { tran= sform: translate3d(100%, 0px, 0px); left: 0px; } .carousel-inner > .item.prev, .carousel-inner > .item.active.left { trans= form: translate3d(-100%, 0px, 0px); left: 0px; } .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .c= arousel-inner > .item.active { transform: translate3d(0px, 0px, 0px); left:= 0px; } } .carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev= { display: block; } .carousel-inner > .active { left: 0px; } .carousel-inner > .next, .carousel-inner > .prev { position: absolute; top:= 0px; width: 100%; } .carousel-inner > .next { left: 100%; } .carousel-inner > .prev { left: -100%; } .carousel-inner > .next.left, .carousel-inner > .prev.right { left: 0px; } .carousel-inner > .active.left { left: -100%; } .carousel-inner > .active.right { left: 100%; } .carousel-control { position: absolute; top: 0px; bottom: 0px; left: 0px; w= idth: 15%; font-size: 20px; color: rgb(255, 255, 255); text-align: center; = text-shadow: rgba(0, 0, 0, 0.6) 0px 1px 2px; background-color: rgba(0, 0, 0= , 0); opacity: 0.5; } .carousel-control.left { background-image: linear-gradient(to right, rgba(0= , 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%); background-repeat: repeat-x; } .carousel-control.right { right: 0px; left: auto; background-image: linear-= gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%); backgroun= d-repeat: repeat-x; } .carousel-control:hover, .carousel-control:focus { color: rgb(255, 255, 255= ); text-decoration: none; outline: 0px; opacity: 0.9; } .carousel-control .icon-prev, .carousel-control .icon-next, .carousel-contr= ol .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right { po= sition: absolute; top: 50%; z-index: 5; display: inline-block; margin-top: = -10px; } .carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left { l= eft: 50%; margin-left: -10px; } .carousel-control .icon-next, .carousel-control .glyphicon-chevron-right { = right: 50%; margin-right: -10px; } .carousel-control .icon-prev, .carousel-control .icon-next { width: 20px; h= eight: 20px; font-family: serif; line-height: 1; } .carousel-control .icon-prev::before { content: "=E2=80=B9"; } .carousel-control .icon-next::before { content: "=E2=80=BA"; } .carousel-indicators { position: absolute; bottom: 10px; left: 50%; z-index= : 15; width: 60%; padding-left: 0px; margin-left: -30%; text-align: center;= list-style: none; } .carousel-indicators li { display: inline-block; width: 10px; height: 10px;= margin: 1px; text-indent: -999px; cursor: pointer; background-color: rgba(= 0, 0, 0, 0); border: 1px solid rgb(255, 255, 255); border-radius: 10px; } .carousel-indicators .active { width: 12px; height: 12px; margin: 0px; back= ground-color: rgb(255, 255, 255); } .carousel-caption { position: absolute; right: 15%; bottom: 20px; left: 15%= ; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: rgb(255, 255= , 255); text-align: center; text-shadow: rgba(0, 0, 0, 0.6) 0px 1px 2px; } .carousel-caption .btn { text-shadow: none; } @media screen and (min-width: 768px) { .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-c= hevron-right, .carousel-control .icon-prev, .carousel-control .icon-next { = width: 30px; height: 30px; margin-top: -10px; font-size: 30px; } .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {= margin-left: -10px; } .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next = { margin-right: -10px; } .carousel-caption { right: 20%; left: 20%; padding-bottom: 30px; } .carousel-indicators { bottom: 20px; } } .clearfix::before, .clearfix::after, .dl-horizontal dd::before, .dl-horizon= tal dd::after, .container::before, .container::after, .container-fluid::bef= ore, .container-fluid::after, .row::before, .row::after, .form-horizontal .= form-group::before, .form-horizontal .form-group::after, .btn-toolbar::befo= re, .btn-toolbar::after, .btn-group-vertical > .btn-group::before, .btn-gro= up-vertical > .btn-group::after, .nav::before, .nav::after, .navbar::before= , .navbar::after, .navbar-header::before, .navbar-header::after, .navbar-co= llapse::before, .navbar-collapse::after, .pager::before, .pager::after, .pa= nel-body::before, .panel-body::after, .modal-header::before, .modal-header:= :after, .modal-footer::before, .modal-footer::after, .item_buttons::before,= .item_buttons::after { display: table; content: " "; } .clearfix::after, .dl-horizontal dd::after, .container::after, .container-f= luid::after, .row::after, .form-horizontal .form-group::after, .btn-toolbar= ::after, .btn-group-vertical > .btn-group::after, .nav::after, .navbar::aft= er, .navbar-header::after, .navbar-collapse::after, .pager::after, .panel-b= ody::after, .modal-header::after, .modal-footer::after, .item_buttons::afte= r { clear: both; } .center-block { display: block; margin-right: auto; margin-left: auto; } .pull-right { float: right !important; } .pull-left { float: left !important; } .hide { display: none !important; } .show { display: block !important; } .invisible { visibility: hidden; } .text-hide { font: 0px / 0 a; color: transparent; text-shadow: none; backgr= ound-color: transparent; border: 0px; } .hidden { display: none !important; } .affix { position: fixed; } .visible-xs, .visible-sm, .visible-md, .visible-lg { display: none !importa= nt; } .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-s= m-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .= visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg= -inline, .visible-lg-inline-block { display: none !important; } @media (max-width: 767px) { .visible-xs { display: block !important; } table.visible-xs { display: table !important; } tr.visible-xs { display: table-row !important; } th.visible-xs, td.visible-xs { display: table-cell !important; } } @media (max-width: 767px) { .visible-xs-block { display: block !important; } } @media (max-width: 767px) { .visible-xs-inline { display: inline !important; } } @media (max-width: 767px) { .visible-xs-inline-block { display: inline-block !important; } } @media (max-width: 991px) and (min-width: 768px) { .visible-sm { display: block !important; } table.visible-sm { display: table !important; } tr.visible-sm { display: table-row !important; } th.visible-sm, td.visible-sm { display: table-cell !important; } } @media (max-width: 991px) and (min-width: 768px) { .visible-sm-block { display: block !important; } } @media (max-width: 991px) and (min-width: 768px) { .visible-sm-inline { display: inline !important; } } @media (max-width: 991px) and (min-width: 768px) { .visible-sm-inline-block { display: inline-block !important; } } @media (max-width: 1199px) and (min-width: 992px) { .visible-md { display: block !important; } table.visible-md { display: table !important; } tr.visible-md { display: table-row !important; } th.visible-md, td.visible-md { display: table-cell !important; } } @media (max-width: 1199px) and (min-width: 992px) { .visible-md-block { display: block !important; } } @media (max-width: 1199px) and (min-width: 992px) { .visible-md-inline { display: inline !important; } } @media (max-width: 1199px) and (min-width: 992px) { .visible-md-inline-block { display: inline-block !important; } } @media (min-width: 1200px) { .visible-lg { display: block !important; } table.visible-lg { display: table !important; } tr.visible-lg { display: table-row !important; } th.visible-lg, td.visible-lg { display: table-cell !important; } } @media (min-width: 1200px) { .visible-lg-block { display: block !important; } } @media (min-width: 1200px) { .visible-lg-inline { display: inline !important; } } @media (min-width: 1200px) { .visible-lg-inline-block { display: inline-block !important; } } @media (max-width: 767px) { .hidden-xs { display: none !important; } } @media (max-width: 991px) and (min-width: 768px) { .hidden-sm { display: none !important; } } @media (max-width: 1199px) and (min-width: 992px) { .hidden-md { display: none !important; } } @media (min-width: 1200px) { .hidden-lg { display: none !important; } } .visible-print { display: none !important; } @media print { .visible-print { display: block !important; } table.visible-print { display: table !important; } tr.visible-print { display: table-row !important; } th.visible-print, td.visible-print { display: table-cell !important; } } .visible-print-block { display: none !important; } @media print { .visible-print-block { display: block !important; } } .visible-print-inline { display: none !important; } @media print { .visible-print-inline { display: inline !important; } } .visible-print-inline-block { display: none !important; } @media print { .visible-print-inline-block { display: inline-block !important; } } @media print { .hidden-print { display: none !important; } } @font-face { font-family: FontAwesome; src: url("../components/font-awesome= /fonts/fontawesome-webfont.eot?#iefix&v=3D4.7.0") format("embedded-opentype= "), url("../components/font-awesome/fonts/fontawesome-webfont.woff2?v=3D4.7= .0") format("woff2"), url("../components/font-awesome/fonts/fontawesome-web= font.woff?v=3D4.7.0") format("woff"), url("../components/font-awesome/fonts= /fontawesome-webfont.ttf?v=3D4.7.0") format("truetype"), url("../components= /font-awesome/fonts/fontawesome-webfont.svg?v=3D4.7.0#fontawesomeregular") = format("svg"); font-weight: normal; font-style: normal; } .fa { display: inline-block; font-style: normal; font-variant: normal; font= -weight: normal; font-stretch: normal; line-height: 1; font-family: FontAwe= some; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: ant= ialiased; } .fa-lg { font-size: 1.33333em; line-height: 0.75em; vertical-align: -15%; } .fa-2x { font-size: 2em; } .fa-3x { font-size: 3em; } .fa-4x { font-size: 4em; } .fa-5x { font-size: 5em; } .fa-fw { width: 1.28571em; text-align: center; } .fa-ul { padding-left: 0px; margin-left: 2.14286em; list-style-type: none; = } .fa-ul > li { position: relative; } .fa-li { position: absolute; left: -2.14286em; width: 2.14286em; top: 0.142= 857em; text-align: center; } .fa-li.fa-lg { left: -1.85714em; } .fa-border { padding: 0.2em 0.25em 0.15em; border: 0.08em solid rgb(238, 23= 8, 238); border-radius: 0.1em; } .fa-pull-left { float: left; } .fa-pull-right { float: right; } .fa.fa-pull-left { margin-right: 0.3em; } .fa.fa-pull-right { margin-left: 0.3em; } .pull-right { float: right; } .pull-left { float: left; } .fa.pull-left { margin-right: 0.3em; } .fa.pull-right { margin-left: 0.3em; } .fa-spin { animation: 2s linear 0s infinite normal none running fa-spin; } .fa-pulse { animation: 1s steps(8) 0s infinite normal none running fa-spin;= } @-webkit-keyframes fa-spin {=20 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } } @keyframes fa-spin {=20 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } } .fa-rotate-90 { transform: rotate(90deg); } .fa-rotate-180 { transform: rotate(180deg); } .fa-rotate-270 { transform: rotate(270deg); } .fa-flip-horizontal { transform: scale(-1, 1); } .fa-flip-vertical { transform: scale(1, -1); } :root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-= flip-horizontal, :root .fa-flip-vertical { filter: none; } .fa-stack { position: relative; display: inline-block; width: 2em; height: = 2em; line-height: 2em; vertical-align: middle; } .fa-stack-1x, .fa-stack-2x { position: absolute; left: 0px; width: 100%; te= xt-align: center; } .fa-stack-1x { line-height: inherit; } .fa-stack-2x { font-size: 2em; } .fa-inverse { color: rgb(255, 255, 255); } .fa-glass::before { content: "=EF=80=80"; } .fa-music::before { content: "=EF=80=81"; } .fa-search::before { content: "=EF=80=82"; } .fa-envelope-o::before { content: "=EF=80=83"; } .fa-heart::before { content: "=EF=80=84"; } .fa-star::before { content: "=EF=80=85"; } .fa-star-o::before { content: "=EF=80=86"; } .fa-user::before { content: "=EF=80=87"; } .fa-film::before { content: "=EF=80=88"; } .fa-th-large::before { content: "=EF=80=89"; } .fa-th::before { content: "=EF=80=8A"; } .fa-th-list::before { content: "=EF=80=8B"; } .fa-check::before { content: "=EF=80=8C"; } .fa-remove::before, .fa-close::before, .fa-times::before { content: "=EF=80= =8D"; } .fa-search-plus::before { content: "=EF=80=8E"; } .fa-search-minus::before { content: "=EF=80=90"; } .fa-power-off::before { content: "=EF=80=91"; } .fa-signal::before { content: "=EF=80=92"; } .fa-gear::before, .fa-cog::before { content: "=EF=80=93"; } .fa-trash-o::before { content: "=EF=80=94"; } .fa-home::before { content: "=EF=80=95"; } .fa-file-o::before { content: "=EF=80=96"; } .fa-clock-o::before { content: "=EF=80=97"; } .fa-road::before { content: "=EF=80=98"; } .fa-download::before { content: "=EF=80=99"; } .fa-arrow-circle-o-down::before { content: "=EF=80=9A"; } .fa-arrow-circle-o-up::before { content: "=EF=80=9B"; } .fa-inbox::before { content: "=EF=80=9C"; } .fa-play-circle-o::before { content: "=EF=80=9D"; } .fa-rotate-right::before, .fa-repeat::before { content: "=EF=80=9E"; } .fa-refresh::before { content: "=EF=80=A1"; } .fa-list-alt::before { content: "=EF=80=A2"; } .fa-lock::before { content: "=EF=80=A3"; } .fa-flag::before { content: "=EF=80=A4"; } .fa-headphones::before { content: "=EF=80=A5"; } .fa-volume-off::before { content: "=EF=80=A6"; } .fa-volume-down::before { content: "=EF=80=A7"; } .fa-volume-up::before { content: "=EF=80=A8"; } .fa-qrcode::before { content: "=EF=80=A9"; } .fa-barcode::before { content: "=EF=80=AA"; } .fa-tag::before { content: "=EF=80=AB"; } .fa-tags::before { content: "=EF=80=AC"; } .fa-book::before { content: "=EF=80=AD"; } .fa-bookmark::before { content: "=EF=80=AE"; } .fa-print::before { content: "=EF=80=AF"; } .fa-camera::before { content: "=EF=80=B0"; } .fa-font::before { content: "=EF=80=B1"; } .fa-bold::before { content: "=EF=80=B2"; } .fa-italic::before { content: "=EF=80=B3"; } .fa-text-height::before { content: "=EF=80=B4"; } .fa-text-width::before { content: "=EF=80=B5"; } .fa-align-left::before { content: "=EF=80=B6"; } .fa-align-center::before { content: "=EF=80=B7"; } .fa-align-right::before { content: "=EF=80=B8"; } .fa-align-justify::before { content: "=EF=80=B9"; } .fa-list::before { content: "=EF=80=BA"; } .fa-dedent::before, .fa-outdent::before { content: "=EF=80=BB"; } .fa-indent::before { content: "=EF=80=BC"; } .fa-video-camera::before { content: "=EF=80=BD"; } .fa-photo::before, .fa-image::before, .fa-picture-o::before { content: "=EF= =80=BE"; } .fa-pencil::before { content: "=EF=81=80"; } .fa-map-marker::before { content: "=EF=81=81"; } .fa-adjust::before { content: "=EF=81=82"; } .fa-tint::before { content: "=EF=81=83"; } .fa-edit::before, .fa-pencil-square-o::before { content: "=EF=81=84"; } .fa-share-square-o::before { content: "=EF=81=85"; } .fa-check-square-o::before { content: "=EF=81=86"; } .fa-arrows::before { content: "=EF=81=87"; } .fa-step-backward::before { content: "=EF=81=88"; } .fa-fast-backward::before { content: "=EF=81=89"; } .fa-backward::before { content: "=EF=81=8A"; } .fa-play::before { content: "=EF=81=8B"; } .fa-pause::before { content: "=EF=81=8C"; } .fa-stop::before { content: "=EF=81=8D"; } .fa-forward::before { content: "=EF=81=8E"; } .fa-fast-forward::before { content: "=EF=81=90"; } .fa-step-forward::before { content: "=EF=81=91"; } .fa-eject::before { content: "=EF=81=92"; } .fa-chevron-left::before { content: "=EF=81=93"; } .fa-chevron-right::before { content: "=EF=81=94"; } .fa-plus-circle::before { content: "=EF=81=95"; } .fa-minus-circle::before { content: "=EF=81=96"; } .fa-times-circle::before { content: "=EF=81=97"; } .fa-check-circle::before { content: "=EF=81=98"; } .fa-question-circle::before { content: "=EF=81=99"; } .fa-info-circle::before { content: "=EF=81=9A"; } .fa-crosshairs::before { content: "=EF=81=9B"; } .fa-times-circle-o::before { content: "=EF=81=9C"; } .fa-check-circle-o::before { content: "=EF=81=9D"; } .fa-ban::before { content: "=EF=81=9E"; } .fa-arrow-left::before { content: "=EF=81=A0"; } .fa-arrow-right::before { content: "=EF=81=A1"; } .fa-arrow-up::before { content: "=EF=81=A2"; } .fa-arrow-down::before { content: "=EF=81=A3"; } .fa-mail-forward::before, .fa-share::before { content: "=EF=81=A4"; } .fa-expand::before { content: "=EF=81=A5"; } .fa-compress::before { content: "=EF=81=A6"; } .fa-plus::before { content: "=EF=81=A7"; } .fa-minus::before { content: "=EF=81=A8"; } .fa-asterisk::before { content: "=EF=81=A9"; } .fa-exclamation-circle::before { content: "=EF=81=AA"; } .fa-gift::before { content: "=EF=81=AB"; } .fa-leaf::before { content: "=EF=81=AC"; } .fa-fire::before { content: "=EF=81=AD"; } .fa-eye::before { content: "=EF=81=AE"; } .fa-eye-slash::before { content: "=EF=81=B0"; } .fa-warning::before, .fa-exclamation-triangle::before { content: "=EF=81=B1= "; } .fa-plane::before { content: "=EF=81=B2"; } .fa-calendar::before { content: "=EF=81=B3"; } .fa-random::before { content: "=EF=81=B4"; } .fa-comment::before { content: "=EF=81=B5"; } .fa-magnet::before { content: "=EF=81=B6"; } .fa-chevron-up::before { content: "=EF=81=B7"; } .fa-chevron-down::before { content: "=EF=81=B8"; } .fa-retweet::before { content: "=EF=81=B9"; } .fa-shopping-cart::before { content: "=EF=81=BA"; } .fa-folder::before { content: "=EF=81=BB"; } .fa-folder-open::before { content: "=EF=81=BC"; } .fa-arrows-v::before { content: "=EF=81=BD"; } .fa-arrows-h::before { content: "=EF=81=BE"; } .fa-bar-chart-o::before, .fa-bar-chart::before { content: "=EF=82=80"; } .fa-twitter-square::before { content: "=EF=82=81"; } .fa-facebook-square::before { content: "=EF=82=82"; } .fa-camera-retro::before { content: "=EF=82=83"; } .fa-key::before { content: "=EF=82=84"; } .fa-gears::before, .fa-cogs::before { content: "=EF=82=85"; } .fa-comments::before { content: "=EF=82=86"; } .fa-thumbs-o-up::before { content: "=EF=82=87"; } .fa-thumbs-o-down::before { content: "=EF=82=88"; } .fa-star-half::before { content: "=EF=82=89"; } .fa-heart-o::before { content: "=EF=82=8A"; } .fa-sign-out::before { content: "=EF=82=8B"; } .fa-linkedin-square::before { content: "=EF=82=8C"; } .fa-thumb-tack::before { content: "=EF=82=8D"; } .fa-external-link::before { content: "=EF=82=8E"; } .fa-sign-in::before { content: "=EF=82=90"; } .fa-trophy::before { content: "=EF=82=91"; } .fa-github-square::before { content: "=EF=82=92"; } .fa-upload::before { content: "=EF=82=93"; } .fa-lemon-o::before { content: "=EF=82=94"; } .fa-phone::before { content: "=EF=82=95"; } .fa-square-o::before { content: "=EF=82=96"; } .fa-bookmark-o::before { content: "=EF=82=97"; } .fa-phone-square::before { content: "=EF=82=98"; } .fa-twitter::before { content: "=EF=82=99"; } .fa-facebook-f::before, .fa-facebook::before { content: "=EF=82=9A"; } .fa-github::before { content: "=EF=82=9B"; } .fa-unlock::before { content: "=EF=82=9C"; } .fa-credit-card::before { content: "=EF=82=9D"; } .fa-feed::before, .fa-rss::before { content: "=EF=82=9E"; } .fa-hdd-o::before { content: "=EF=82=A0"; } .fa-bullhorn::before { content: "=EF=82=A1"; } .fa-bell::before { content: "=EF=83=B3"; } .fa-certificate::before { content: "=EF=82=A3"; } .fa-hand-o-right::before { content: "=EF=82=A4"; } .fa-hand-o-left::before { content: "=EF=82=A5"; } .fa-hand-o-up::before { content: "=EF=82=A6"; } .fa-hand-o-down::before { content: "=EF=82=A7"; } .fa-arrow-circle-left::before { content: "=EF=82=A8"; } .fa-arrow-circle-right::before { content: "=EF=82=A9"; } .fa-arrow-circle-up::before { content: "=EF=82=AA"; } .fa-arrow-circle-down::before { content: "=EF=82=AB"; } .fa-globe::before { content: "=EF=82=AC"; } .fa-wrench::before { content: "=EF=82=AD"; } .fa-tasks::before { content: "=EF=82=AE"; } .fa-filter::before { content: "=EF=82=B0"; } .fa-briefcase::before { content: "=EF=82=B1"; } .fa-arrows-alt::before { content: "=EF=82=B2"; } .fa-group::before, .fa-users::before { content: "=EF=83=80"; } .fa-chain::before, .fa-link::before { content: "=EF=83=81"; } .fa-cloud::before { content: "=EF=83=82"; } .fa-flask::before { content: "=EF=83=83"; } .fa-cut::before, .fa-scissors::before { content: "=EF=83=84"; } .fa-copy::before, .fa-files-o::before { content: "=EF=83=85"; } .fa-paperclip::before { content: "=EF=83=86"; } .fa-save::before, .fa-floppy-o::before { content: "=EF=83=87"; } .fa-square::before { content: "=EF=83=88"; } .fa-navicon::before, .fa-reorder::before, .fa-bars::before { content: "=EF= =83=89"; } .fa-list-ul::before { content: "=EF=83=8A"; } .fa-list-ol::before { content: "=EF=83=8B"; } .fa-strikethrough::before { content: "=EF=83=8C"; } .fa-underline::before { content: "=EF=83=8D"; } .fa-table::before { content: "=EF=83=8E"; } .fa-magic::before { content: "=EF=83=90"; } .fa-truck::before { content: "=EF=83=91"; } .fa-pinterest::before { content: "=EF=83=92"; } .fa-pinterest-square::before { content: "=EF=83=93"; } .fa-google-plus-square::before { content: "=EF=83=94"; } .fa-google-plus::before { content: "=EF=83=95"; } .fa-money::before { content: "=EF=83=96"; } .fa-caret-down::before { content: "=EF=83=97"; } .fa-caret-up::before { content: "=EF=83=98"; } .fa-caret-left::before { content: "=EF=83=99"; } .fa-caret-right::before { content: "=EF=83=9A"; } .fa-columns::before { content: "=EF=83=9B"; } .fa-unsorted::before, .fa-sort::before { content: "=EF=83=9C"; } .fa-sort-down::before, .fa-sort-desc::before { content: "=EF=83=9D"; } .fa-sort-up::before, .fa-sort-asc::before { content: "=EF=83=9E"; } .fa-envelope::before { content: "=EF=83=A0"; } .fa-linkedin::before { content: "=EF=83=A1"; } .fa-rotate-left::before, .fa-undo::before { content: "=EF=83=A2"; } .fa-legal::before, .fa-gavel::before { content: "=EF=83=A3"; } .fa-dashboard::before, .fa-tachometer::before { content: "=EF=83=A4"; } .fa-comment-o::before { content: "=EF=83=A5"; } .fa-comments-o::before { content: "=EF=83=A6"; } .fa-flash::before, .fa-bolt::before { content: "=EF=83=A7"; } .fa-sitemap::before { content: "=EF=83=A8"; } .fa-umbrella::before { content: "=EF=83=A9"; } .fa-paste::before, .fa-clipboard::before { content: "=EF=83=AA"; } .fa-lightbulb-o::before { content: "=EF=83=AB"; } .fa-exchange::before { content: "=EF=83=AC"; } .fa-cloud-download::before { content: "=EF=83=AD"; } .fa-cloud-upload::before { content: "=EF=83=AE"; } .fa-user-md::before { content: "=EF=83=B0"; } .fa-stethoscope::before { content: "=EF=83=B1"; } .fa-suitcase::before { content: "=EF=83=B2"; } .fa-bell-o::before { content: "=EF=82=A2"; } .fa-coffee::before { content: "=EF=83=B4"; } .fa-cutlery::before { content: "=EF=83=B5"; } .fa-file-text-o::before { content: "=EF=83=B6"; } .fa-building-o::before { content: "=EF=83=B7"; } .fa-hospital-o::before { content: "=EF=83=B8"; } .fa-ambulance::before { content: "=EF=83=B9"; } .fa-medkit::before { content: "=EF=83=BA"; } .fa-fighter-jet::before { content: "=EF=83=BB"; } .fa-beer::before { content: "=EF=83=BC"; } .fa-h-square::before { content: "=EF=83=BD"; } .fa-plus-square::before { content: "=EF=83=BE"; } .fa-angle-double-left::before { content: "=EF=84=80"; } .fa-angle-double-right::before { content: "=EF=84=81"; } .fa-angle-double-up::before { content: "=EF=84=82"; } .fa-angle-double-down::before { content: "=EF=84=83"; } .fa-angle-left::before { content: "=EF=84=84"; } .fa-angle-right::before { content: "=EF=84=85"; } .fa-angle-up::before { content: "=EF=84=86"; } .fa-angle-down::before { content: "=EF=84=87"; } .fa-desktop::before { content: "=EF=84=88"; } .fa-laptop::before { content: "=EF=84=89"; } .fa-tablet::before { content: "=EF=84=8A"; } .fa-mobile-phone::before, .fa-mobile::before { content: "=EF=84=8B"; } .fa-circle-o::before { content: "=EF=84=8C"; } .fa-quote-left::before { content: "=EF=84=8D"; } .fa-quote-right::before { content: "=EF=84=8E"; } .fa-spinner::before { content: "=EF=84=90"; } .fa-circle::before { content: "=EF=84=91"; } .fa-mail-reply::before, .fa-reply::before { content: "=EF=84=92"; } .fa-github-alt::before { content: "=EF=84=93"; } .fa-folder-o::before { content: "=EF=84=94"; } .fa-folder-open-o::before { content: "=EF=84=95"; } .fa-smile-o::before { content: "=EF=84=98"; } .fa-frown-o::before { content: "=EF=84=99"; } .fa-meh-o::before { content: "=EF=84=9A"; } .fa-gamepad::before { content: "=EF=84=9B"; } .fa-keyboard-o::before { content: "=EF=84=9C"; } .fa-flag-o::before { content: "=EF=84=9D"; } .fa-flag-checkered::before { content: "=EF=84=9E"; } .fa-terminal::before { content: "=EF=84=A0"; } .fa-code::before { content: "=EF=84=A1"; } .fa-mail-reply-all::before, .fa-reply-all::before { content: "=EF=84=A2"; } .fa-star-half-empty::before, .fa-star-half-full::before, .fa-star-half-o::b= efore { content: "=EF=84=A3"; } .fa-location-arrow::before { content: "=EF=84=A4"; } .fa-crop::before { content: "=EF=84=A5"; } .fa-code-fork::before { content: "=EF=84=A6"; } .fa-unlink::before, .fa-chain-broken::before { content: "=EF=84=A7"; } .fa-question::before { content: "=EF=84=A8"; } .fa-info::before { content: "=EF=84=A9"; } .fa-exclamation::before { content: "=EF=84=AA"; } .fa-superscript::before { content: "=EF=84=AB"; } .fa-subscript::before { content: "=EF=84=AC"; } .fa-eraser::before { content: "=EF=84=AD"; } .fa-puzzle-piece::before { content: "=EF=84=AE"; } .fa-microphone::before { content: "=EF=84=B0"; } .fa-microphone-slash::before { content: "=EF=84=B1"; } .fa-shield::before { content: "=EF=84=B2"; } .fa-calendar-o::before { content: "=EF=84=B3"; } .fa-fire-extinguisher::before { content: "=EF=84=B4"; } .fa-rocket::before { content: "=EF=84=B5"; } .fa-maxcdn::before { content: "=EF=84=B6"; } .fa-chevron-circle-left::before { content: "=EF=84=B7"; } .fa-chevron-circle-right::before { content: "=EF=84=B8"; } .fa-chevron-circle-up::before { content: "=EF=84=B9"; } .fa-chevron-circle-down::before { content: "=EF=84=BA"; } .fa-html5::before { content: "=EF=84=BB"; } .fa-css3::before { content: "=EF=84=BC"; } .fa-anchor::before { content: "=EF=84=BD"; } .fa-unlock-alt::before { content: "=EF=84=BE"; } .fa-bullseye::before { content: "=EF=85=80"; } .fa-ellipsis-h::before { content: "=EF=85=81"; } .fa-ellipsis-v::before { content: "=EF=85=82"; } .fa-rss-square::before { content: "=EF=85=83"; } .fa-play-circle::before { content: "=EF=85=84"; } .fa-ticket::before { content: "=EF=85=85"; } .fa-minus-square::before { content: "=EF=85=86"; } .fa-minus-square-o::before { content: "=EF=85=87"; } .fa-level-up::before { content: "=EF=85=88"; } .fa-level-down::before { content: "=EF=85=89"; } .fa-check-square::before { content: "=EF=85=8A"; } .fa-pencil-square::before { content: "=EF=85=8B"; } .fa-external-link-square::before { content: "=EF=85=8C"; } .fa-share-square::before { content: "=EF=85=8D"; } .fa-compass::before { content: "=EF=85=8E"; } .fa-toggle-down::before, .fa-caret-square-o-down::before { content: "=EF=85= =90"; } .fa-toggle-up::before, .fa-caret-square-o-up::before { content: "=EF=85=91"= ; } .fa-toggle-right::before, .fa-caret-square-o-right::before { content: "=EF= =85=92"; } .fa-euro::before, .fa-eur::before { content: "=EF=85=93"; } .fa-gbp::before { content: "=EF=85=94"; } .fa-dollar::before, .fa-usd::before { content: "=EF=85=95"; } .fa-rupee::before, .fa-inr::before { content: "=EF=85=96"; } .fa-cny::before, .fa-rmb::before, .fa-yen::before, .fa-jpy::before { conten= t: "=EF=85=97"; } .fa-ruble::before, .fa-rouble::before, .fa-rub::before { content: "=EF=85= =98"; } .fa-won::before, .fa-krw::before { content: "=EF=85=99"; } .fa-bitcoin::before, .fa-btc::before { content: "=EF=85=9A"; } .fa-file::before { content: "=EF=85=9B"; } .fa-file-text::before { content: "=EF=85=9C"; } .fa-sort-alpha-asc::before { content: "=EF=85=9D"; } .fa-sort-alpha-desc::before { content: "=EF=85=9E"; } .fa-sort-amount-asc::before { content: "=EF=85=A0"; } .fa-sort-amount-desc::before { content: "=EF=85=A1"; } .fa-sort-numeric-asc::before { content: "=EF=85=A2"; } .fa-sort-numeric-desc::before { content: "=EF=85=A3"; } .fa-thumbs-up::before { content: "=EF=85=A4"; } .fa-thumbs-down::before { content: "=EF=85=A5"; } .fa-youtube-square::before { content: "=EF=85=A6"; } .fa-youtube::before { content: "=EF=85=A7"; } .fa-xing::before { content: "=EF=85=A8"; } .fa-xing-square::before { content: "=EF=85=A9"; } .fa-youtube-play::before { content: "=EF=85=AA"; } .fa-dropbox::before { content: "=EF=85=AB"; } .fa-stack-overflow::before { content: "=EF=85=AC"; } .fa-instagram::before { content: "=EF=85=AD"; } .fa-flickr::before { content: "=EF=85=AE"; } .fa-adn::before { content: "=EF=85=B0"; } .fa-bitbucket::before { content: "=EF=85=B1"; } .fa-bitbucket-square::before { content: "=EF=85=B2"; } .fa-tumblr::before { content: "=EF=85=B3"; } .fa-tumblr-square::before { content: "=EF=85=B4"; } .fa-long-arrow-down::before { content: "=EF=85=B5"; } .fa-long-arrow-up::before { content: "=EF=85=B6"; } .fa-long-arrow-left::before { content: "=EF=85=B7"; } .fa-long-arrow-right::before { content: "=EF=85=B8"; } .fa-apple::before { content: "=EF=85=B9"; } .fa-windows::before { content: "=EF=85=BA"; } .fa-android::before { content: "=EF=85=BB"; } .fa-linux::before { content: "=EF=85=BC"; } .fa-dribbble::before { content: "=EF=85=BD"; } .fa-skype::before { content: "=EF=85=BE"; } .fa-foursquare::before { content: "=EF=86=80"; } .fa-trello::before { content: "=EF=86=81"; } .fa-female::before { content: "=EF=86=82"; } .fa-male::before { content: "=EF=86=83"; } .fa-gittip::before, .fa-gratipay::before { content: "=EF=86=84"; } .fa-sun-o::before { content: "=EF=86=85"; } .fa-moon-o::before { content: "=EF=86=86"; } .fa-archive::before { content: "=EF=86=87"; } .fa-bug::before { content: "=EF=86=88"; } .fa-vk::before { content: "=EF=86=89"; } .fa-weibo::before { content: "=EF=86=8A"; } .fa-renren::before { content: "=EF=86=8B"; } .fa-pagelines::before { content: "=EF=86=8C"; } .fa-stack-exchange::before { content: "=EF=86=8D"; } .fa-arrow-circle-o-right::before { content: "=EF=86=8E"; } .fa-arrow-circle-o-left::before { content: "=EF=86=90"; } .fa-toggle-left::before, .fa-caret-square-o-left::before { content: "=EF=86= =91"; } .fa-dot-circle-o::before { content: "=EF=86=92"; } .fa-wheelchair::before { content: "=EF=86=93"; } .fa-vimeo-square::before { content: "=EF=86=94"; } .fa-turkish-lira::before, .fa-try::before { content: "=EF=86=95"; } .fa-plus-square-o::before { content: "=EF=86=96"; } .fa-space-shuttle::before { content: "=EF=86=97"; } .fa-slack::before { content: "=EF=86=98"; } .fa-envelope-square::before { content: "=EF=86=99"; } .fa-wordpress::before { content: "=EF=86=9A"; } .fa-openid::before { content: "=EF=86=9B"; } .fa-institution::before, .fa-bank::before, .fa-university::before { content= : "=EF=86=9C"; } .fa-mortar-board::before, .fa-graduation-cap::before { content: "=EF=86=9D"= ; } .fa-yahoo::before { content: "=EF=86=9E"; } .fa-google::before { content: "=EF=86=A0"; } .fa-reddit::before { content: "=EF=86=A1"; } .fa-reddit-square::before { content: "=EF=86=A2"; } .fa-stumbleupon-circle::before { content: "=EF=86=A3"; } .fa-stumbleupon::before { content: "=EF=86=A4"; } .fa-delicious::before { content: "=EF=86=A5"; } .fa-digg::before { content: "=EF=86=A6"; } .fa-pied-piper-pp::before { content: "=EF=86=A7"; } .fa-pied-piper-alt::before { content: "=EF=86=A8"; } .fa-drupal::before { content: "=EF=86=A9"; } .fa-joomla::before { content: "=EF=86=AA"; } .fa-language::before { content: "=EF=86=AB"; } .fa-fax::before { content: "=EF=86=AC"; } .fa-building::before { content: "=EF=86=AD"; } .fa-child::before { content: "=EF=86=AE"; } .fa-paw::before { content: "=EF=86=B0"; } .fa-spoon::before { content: "=EF=86=B1"; } .fa-cube::before { content: "=EF=86=B2"; } .fa-cubes::before { content: "=EF=86=B3"; } .fa-behance::before { content: "=EF=86=B4"; } .fa-behance-square::before { content: "=EF=86=B5"; } .fa-steam::before { content: "=EF=86=B6"; } .fa-steam-square::before { content: "=EF=86=B7"; } .fa-recycle::before { content: "=EF=86=B8"; } .fa-automobile::before, .fa-car::before { content: "=EF=86=B9"; } .fa-cab::before, .fa-taxi::before { content: "=EF=86=BA"; } .fa-tree::before { content: "=EF=86=BB"; } .fa-spotify::before { content: "=EF=86=BC"; } .fa-deviantart::before { content: "=EF=86=BD"; } .fa-soundcloud::before { content: "=EF=86=BE"; } .fa-database::before { content: "=EF=87=80"; } .fa-file-pdf-o::before { content: "=EF=87=81"; } .fa-file-word-o::before { content: "=EF=87=82"; } .fa-file-excel-o::before { content: "=EF=87=83"; } .fa-file-powerpoint-o::before { content: "=EF=87=84"; } .fa-file-photo-o::before, .fa-file-picture-o::before, .fa-file-image-o::bef= ore { content: "=EF=87=85"; } .fa-file-zip-o::before, .fa-file-archive-o::before { content: "=EF=87=86"; = } .fa-file-sound-o::before, .fa-file-audio-o::before { content: "=EF=87=87"; = } .fa-file-movie-o::before, .fa-file-video-o::before { content: "=EF=87=88"; = } .fa-file-code-o::before { content: "=EF=87=89"; } .fa-vine::before { content: "=EF=87=8A"; } .fa-codepen::before { content: "=EF=87=8B"; } .fa-jsfiddle::before { content: "=EF=87=8C"; } .fa-life-bouy::before, .fa-life-buoy::before, .fa-life-saver::before, .fa-s= upport::before, .fa-life-ring::before { content: "=EF=87=8D"; } .fa-circle-o-notch::before { content: "=EF=87=8E"; } .fa-ra::before, .fa-resistance::before, .fa-rebel::before { content: "=EF= =87=90"; } .fa-ge::before, .fa-empire::before { content: "=EF=87=91"; } .fa-git-square::before { content: "=EF=87=92"; } .fa-git::before { content: "=EF=87=93"; } .fa-y-combinator-square::before, .fa-yc-square::before, .fa-hacker-news::be= fore { content: "=EF=87=94"; } .fa-tencent-weibo::before { content: "=EF=87=95"; } .fa-qq::before { content: "=EF=87=96"; } .fa-wechat::before, .fa-weixin::before { content: "=EF=87=97"; } .fa-send::before, .fa-paper-plane::before { content: "=EF=87=98"; } .fa-send-o::before, .fa-paper-plane-o::before { content: "=EF=87=99"; } .fa-history::before { content: "=EF=87=9A"; } .fa-circle-thin::before { content: "=EF=87=9B"; } .fa-header::before { content: "=EF=87=9C"; } .fa-paragraph::before { content: "=EF=87=9D"; } .fa-sliders::before { content: "=EF=87=9E"; } .fa-share-alt::before { content: "=EF=87=A0"; } .fa-share-alt-square::before { content: "=EF=87=A1"; } .fa-bomb::before { content: "=EF=87=A2"; } .fa-soccer-ball-o::before, .fa-futbol-o::before { content: "=EF=87=A3"; } .fa-tty::before { content: "=EF=87=A4"; } .fa-binoculars::before { content: "=EF=87=A5"; } .fa-plug::before { content: "=EF=87=A6"; } .fa-slideshare::before { content: "=EF=87=A7"; } .fa-twitch::before { content: "=EF=87=A8"; } .fa-yelp::before { content: "=EF=87=A9"; } .fa-newspaper-o::before { content: "=EF=87=AA"; } .fa-wifi::before { content: "=EF=87=AB"; } .fa-calculator::before { content: "=EF=87=AC"; } .fa-paypal::before { content: "=EF=87=AD"; } .fa-google-wallet::before { content: "=EF=87=AE"; } .fa-cc-visa::before { content: "=EF=87=B0"; } .fa-cc-mastercard::before { content: "=EF=87=B1"; } .fa-cc-discover::before { content: "=EF=87=B2"; } .fa-cc-amex::before { content: "=EF=87=B3"; } .fa-cc-paypal::before { content: "=EF=87=B4"; } .fa-cc-stripe::before { content: "=EF=87=B5"; } .fa-bell-slash::before { content: "=EF=87=B6"; } .fa-bell-slash-o::before { content: "=EF=87=B7"; } .fa-trash::before { content: "=EF=87=B8"; } .fa-copyright::before { content: "=EF=87=B9"; } .fa-at::before { content: "=EF=87=BA"; } .fa-eyedropper::before { content: "=EF=87=BB"; } .fa-paint-brush::before { content: "=EF=87=BC"; } .fa-birthday-cake::before { content: "=EF=87=BD"; } .fa-area-chart::before { content: "=EF=87=BE"; } .fa-pie-chart::before { content: "=EF=88=80"; } .fa-line-chart::before { content: "=EF=88=81"; } .fa-lastfm::before { content: "=EF=88=82"; } .fa-lastfm-square::before { content: "=EF=88=83"; } .fa-toggle-off::before { content: "=EF=88=84"; } .fa-toggle-on::before { content: "=EF=88=85"; } .fa-bicycle::before { content: "=EF=88=86"; } .fa-bus::before { content: "=EF=88=87"; } .fa-ioxhost::before { content: "=EF=88=88"; } .fa-angellist::before { content: "=EF=88=89"; } .fa-cc::before { content: "=EF=88=8A"; } .fa-shekel::before, .fa-sheqel::before, .fa-ils::before { content: "=EF=88= =8B"; } .fa-meanpath::before { content: "=EF=88=8C"; } .fa-buysellads::before { content: "=EF=88=8D"; } .fa-connectdevelop::before { content: "=EF=88=8E"; } .fa-dashcube::before { content: "=EF=88=90"; } .fa-forumbee::before { content: "=EF=88=91"; } .fa-leanpub::before { content: "=EF=88=92"; } .fa-sellsy::before { content: "=EF=88=93"; } .fa-shirtsinbulk::before { content: "=EF=88=94"; } .fa-simplybuilt::before { content: "=EF=88=95"; } .fa-skyatlas::before { content: "=EF=88=96"; } .fa-cart-plus::before { content: "=EF=88=97"; } .fa-cart-arrow-down::before { content: "=EF=88=98"; } .fa-diamond::before { content: "=EF=88=99"; } .fa-ship::before { content: "=EF=88=9A"; } .fa-user-secret::before { content: "=EF=88=9B"; } .fa-motorcycle::before { content: "=EF=88=9C"; } .fa-street-view::before { content: "=EF=88=9D"; } .fa-heartbeat::before { content: "=EF=88=9E"; } .fa-venus::before { content: "=EF=88=A1"; } .fa-mars::before { content: "=EF=88=A2"; } .fa-mercury::before { content: "=EF=88=A3"; } .fa-intersex::before, .fa-transgender::before { content: "=EF=88=A4"; } .fa-transgender-alt::before { content: "=EF=88=A5"; } .fa-venus-double::before { content: "=EF=88=A6"; } .fa-mars-double::before { content: "=EF=88=A7"; } .fa-venus-mars::before { content: "=EF=88=A8"; } .fa-mars-stroke::before { content: "=EF=88=A9"; } .fa-mars-stroke-v::before { content: "=EF=88=AA"; } .fa-mars-stroke-h::before { content: "=EF=88=AB"; } .fa-neuter::before { content: "=EF=88=AC"; } .fa-genderless::before { content: "=EF=88=AD"; } .fa-facebook-official::before { content: "=EF=88=B0"; } .fa-pinterest-p::before { content: "=EF=88=B1"; } .fa-whatsapp::before { content: "=EF=88=B2"; } .fa-server::before { content: "=EF=88=B3"; } .fa-user-plus::before { content: "=EF=88=B4"; } .fa-user-times::before { content: "=EF=88=B5"; } .fa-hotel::before, .fa-bed::before { content: "=EF=88=B6"; } .fa-viacoin::before { content: "=EF=88=B7"; } .fa-train::before { content: "=EF=88=B8"; } .fa-subway::before { content: "=EF=88=B9"; } .fa-medium::before { content: "=EF=88=BA"; } .fa-yc::before, .fa-y-combinator::before { content: "=EF=88=BB"; } .fa-optin-monster::before { content: "=EF=88=BC"; } .fa-opencart::before { content: "=EF=88=BD"; } .fa-expeditedssl::before { content: "=EF=88=BE"; } .fa-battery-4::before, .fa-battery::before, .fa-battery-full::before { cont= ent: "=EF=89=80"; } .fa-battery-3::before, .fa-battery-three-quarters::before { content: "=EF= =89=81"; } .fa-battery-2::before, .fa-battery-half::before { content: "=EF=89=82"; } .fa-battery-1::before, .fa-battery-quarter::before { content: "=EF=89=83"; = } .fa-battery-0::before, .fa-battery-empty::before { content: "=EF=89=84"; } .fa-mouse-pointer::before { content: "=EF=89=85"; } .fa-i-cursor::before { content: "=EF=89=86"; } .fa-object-group::before { content: "=EF=89=87"; } .fa-object-ungroup::before { content: "=EF=89=88"; } .fa-sticky-note::before { content: "=EF=89=89"; } .fa-sticky-note-o::before { content: "=EF=89=8A"; } .fa-cc-jcb::before { content: "=EF=89=8B"; } .fa-cc-diners-club::before { content: "=EF=89=8C"; } .fa-clone::before { content: "=EF=89=8D"; } .fa-balance-scale::before { content: "=EF=89=8E"; } .fa-hourglass-o::before { content: "=EF=89=90"; } .fa-hourglass-1::before, .fa-hourglass-start::before { content: "=EF=89=91"= ; } .fa-hourglass-2::before, .fa-hourglass-half::before { content: "=EF=89=92";= } .fa-hourglass-3::before, .fa-hourglass-end::before { content: "=EF=89=93"; = } .fa-hourglass::before { content: "=EF=89=94"; } .fa-hand-grab-o::before, .fa-hand-rock-o::before { content: "=EF=89=95"; } .fa-hand-stop-o::before, .fa-hand-paper-o::before { content: "=EF=89=96"; } .fa-hand-scissors-o::before { content: "=EF=89=97"; } .fa-hand-lizard-o::before { content: "=EF=89=98"; } .fa-hand-spock-o::before { content: "=EF=89=99"; } .fa-hand-pointer-o::before { content: "=EF=89=9A"; } .fa-hand-peace-o::before { content: "=EF=89=9B"; } .fa-trademark::before { content: "=EF=89=9C"; } .fa-registered::before { content: "=EF=89=9D"; } .fa-creative-commons::before { content: "=EF=89=9E"; } .fa-gg::before { content: "=EF=89=A0"; } .fa-gg-circle::before { content: "=EF=89=A1"; } .fa-tripadvisor::before { content: "=EF=89=A2"; } .fa-odnoklassniki::before { content: "=EF=89=A3"; } .fa-odnoklassniki-square::before { content: "=EF=89=A4"; } .fa-get-pocket::before { content: "=EF=89=A5"; } .fa-wikipedia-w::before { content: "=EF=89=A6"; } .fa-safari::before { content: "=EF=89=A7"; } .fa-chrome::before { content: "=EF=89=A8"; } .fa-firefox::before { content: "=EF=89=A9"; } .fa-opera::before { content: "=EF=89=AA"; } .fa-internet-explorer::before { content: "=EF=89=AB"; } .fa-tv::before, .fa-television::before { content: "=EF=89=AC"; } .fa-contao::before { content: "=EF=89=AD"; } .fa-500px::before { content: "=EF=89=AE"; } .fa-amazon::before { content: "=EF=89=B0"; } .fa-calendar-plus-o::before { content: "=EF=89=B1"; } .fa-calendar-minus-o::before { content: "=EF=89=B2"; } .fa-calendar-times-o::before { content: "=EF=89=B3"; } .fa-calendar-check-o::before { content: "=EF=89=B4"; } .fa-industry::before { content: "=EF=89=B5"; } .fa-map-pin::before { content: "=EF=89=B6"; } .fa-map-signs::before { content: "=EF=89=B7"; } .fa-map-o::before { content: "=EF=89=B8"; } .fa-map::before { content: "=EF=89=B9"; } .fa-commenting::before { content: "=EF=89=BA"; } .fa-commenting-o::before { content: "=EF=89=BB"; } .fa-houzz::before { content: "=EF=89=BC"; } .fa-vimeo::before { content: "=EF=89=BD"; } .fa-black-tie::before { content: "=EF=89=BE"; } .fa-fonticons::before { content: "=EF=8A=80"; } .fa-reddit-alien::before { content: "=EF=8A=81"; } .fa-edge::before { content: "=EF=8A=82"; } .fa-credit-card-alt::before { content: "=EF=8A=83"; } .fa-codiepie::before { content: "=EF=8A=84"; } .fa-modx::before { content: "=EF=8A=85"; } .fa-fort-awesome::before { content: "=EF=8A=86"; } .fa-usb::before { content: "=EF=8A=87"; } .fa-product-hunt::before { content: "=EF=8A=88"; } .fa-mixcloud::before { content: "=EF=8A=89"; } .fa-scribd::before { content: "=EF=8A=8A"; } .fa-pause-circle::before { content: "=EF=8A=8B"; } .fa-pause-circle-o::before { content: "=EF=8A=8C"; } .fa-stop-circle::before { content: "=EF=8A=8D"; } .fa-stop-circle-o::before { content: "=EF=8A=8E"; } .fa-shopping-bag::before { content: "=EF=8A=90"; } .fa-shopping-basket::before { content: "=EF=8A=91"; } .fa-hashtag::before { content: "=EF=8A=92"; } .fa-bluetooth::before { content: "=EF=8A=93"; } .fa-bluetooth-b::before { content: "=EF=8A=94"; } .fa-percent::before { content: "=EF=8A=95"; } .fa-gitlab::before { content: "=EF=8A=96"; } .fa-wpbeginner::before { content: "=EF=8A=97"; } .fa-wpforms::before { content: "=EF=8A=98"; } .fa-envira::before { content: "=EF=8A=99"; } .fa-universal-access::before { content: "=EF=8A=9A"; } .fa-wheelchair-alt::before { content: "=EF=8A=9B"; } .fa-question-circle-o::before { content: "=EF=8A=9C"; } .fa-blind::before { content: "=EF=8A=9D"; } .fa-audio-description::before { content: "=EF=8A=9E"; } .fa-volume-control-phone::before { content: "=EF=8A=A0"; } .fa-braille::before { content: "=EF=8A=A1"; } .fa-assistive-listening-systems::before { content: "=EF=8A=A2"; } .fa-asl-interpreting::before, .fa-american-sign-language-interpreting::befo= re { content: "=EF=8A=A3"; } .fa-deafness::before, .fa-hard-of-hearing::before, .fa-deaf::before { conte= nt: "=EF=8A=A4"; } .fa-glide::before { content: "=EF=8A=A5"; } .fa-glide-g::before { content: "=EF=8A=A6"; } .fa-signing::before, .fa-sign-language::before { content: "=EF=8A=A7"; } .fa-low-vision::before { content: "=EF=8A=A8"; } .fa-viadeo::before { content: "=EF=8A=A9"; } .fa-viadeo-square::before { content: "=EF=8A=AA"; } .fa-snapchat::before { content: "=EF=8A=AB"; } .fa-snapchat-ghost::before { content: "=EF=8A=AC"; } .fa-snapchat-square::before { content: "=EF=8A=AD"; } .fa-pied-piper::before { content: "=EF=8A=AE"; } .fa-first-order::before { content: "=EF=8A=B0"; } .fa-yoast::before { content: "=EF=8A=B1"; } .fa-themeisle::before { content: "=EF=8A=B2"; } .fa-google-plus-circle::before, .fa-google-plus-official::before { content:= "=EF=8A=B3"; } .fa-fa::before, .fa-font-awesome::before { content: "=EF=8A=B4"; } .fa-handshake-o::before { content: "=EF=8A=B5"; } .fa-envelope-open::before { content: "=EF=8A=B6"; } .fa-envelope-open-o::before { content: "=EF=8A=B7"; } .fa-linode::before { content: "=EF=8A=B8"; } .fa-address-book::before { content: "=EF=8A=B9"; } .fa-address-book-o::before { content: "=EF=8A=BA"; } .fa-vcard::before, .fa-address-card::before { content: "=EF=8A=BB"; } .fa-vcard-o::before, .fa-address-card-o::before { content: "=EF=8A=BC"; } .fa-user-circle::before { content: "=EF=8A=BD"; } .fa-user-circle-o::before { content: "=EF=8A=BE"; } .fa-user-o::before { content: "=EF=8B=80"; } .fa-id-badge::before { content: "=EF=8B=81"; } .fa-drivers-license::before, .fa-id-card::before { content: "=EF=8B=82"; } .fa-drivers-license-o::before, .fa-id-card-o::before { content: "=EF=8B=83"= ; } .fa-quora::before { content: "=EF=8B=84"; } .fa-free-code-camp::before { content: "=EF=8B=85"; } .fa-telegram::before { content: "=EF=8B=86"; } .fa-thermometer-4::before, .fa-thermometer::before, .fa-thermometer-full::b= efore { content: "=EF=8B=87"; } .fa-thermometer-3::before, .fa-thermometer-three-quarters::before { content= : "=EF=8B=88"; } .fa-thermometer-2::before, .fa-thermometer-half::before { content: "=EF=8B= =89"; } .fa-thermometer-1::before, .fa-thermometer-quarter::before { content: "=EF= =8B=8A"; } .fa-thermometer-0::before, .fa-thermometer-empty::before { content: "=EF=8B= =8B"; } .fa-shower::before { content: "=EF=8B=8C"; } .fa-bathtub::before, .fa-s15::before, .fa-bath::before { content: "=EF=8B= =8D"; } .fa-podcast::before { content: "=EF=8B=8E"; } .fa-window-maximize::before { content: "=EF=8B=90"; } .fa-window-minimize::before { content: "=EF=8B=91"; } .fa-window-restore::before { content: "=EF=8B=92"; } .fa-times-rectangle::before, .fa-window-close::before { content: "=EF=8B=93= "; } .fa-times-rectangle-o::before, .fa-window-close-o::before { content: "=EF= =8B=94"; } .fa-bandcamp::before { content: "=EF=8B=95"; } .fa-grav::before { content: "=EF=8B=96"; } .fa-etsy::before { content: "=EF=8B=97"; } .fa-imdb::before { content: "=EF=8B=98"; } .fa-ravelry::before { content: "=EF=8B=99"; } .fa-eercast::before { content: "=EF=8B=9A"; } .fa-microchip::before { content: "=EF=8B=9B"; } .fa-snowflake-o::before { content: "=EF=8B=9C"; } .fa-superpowers::before { content: "=EF=8B=9D"; } .fa-wpexplorer::before { content: "=EF=8B=9E"; } .fa-meetup::before { content: "=EF=8B=A0"; } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0px; margi= n: -1px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); border: 0px; } .sr-only-focusable:active, .sr-only-focusable:focus { position: static; wid= th: auto; height: auto; margin: 0px; overflow: visible; clip: auto; } .sr-only-focusable:active, .sr-only-focusable:focus { position: static; wid= th: auto; height: auto; margin: 0px; overflow: visible; clip: auto; } .modal.fade .modal-dialog { transform: translate(0px, 0px); } code { color: rgb(0, 0, 0); } pre { font-size: inherit; line-height: inherit; } label { font-weight: normal; } .border-box-sizing { box-sizing: border-box; } .corner-all { border-radius: 2px; } .no-padding { padding: 0px; } .hbox { -webkit-box-orient: horizontal; -webkit-box-align: stretch; display= : flex; flex-direction: row; align-items: stretch; } .hbox > * { -webkit-box-flex: 0; flex: 0 0 auto; } .vbox { -webkit-box-orient: vertical; -webkit-box-align: stretch; display: = flex; flex-direction: column; align-items: stretch; } .vbox > * { -webkit-box-flex: 0; flex: 0 0 auto; } .hbox.reverse, .vbox.reverse, .reverse { -webkit-box-direction: reverse; fl= ex-direction: row-reverse; } .hbox.box-flex0, .vbox.box-flex0, .box-flex0 { -webkit-box-flex: 0; flex: 0= 0 auto; width: auto; } .hbox.box-flex1, .vbox.box-flex1, .box-flex1 { -webkit-box-flex: 1; flex: 1= 1 0%; } .hbox.box-flex, .vbox.box-flex, .box-flex { -webkit-box-flex: 1; flex: 1 1 = 0%; } .hbox.box-flex2, .vbox.box-flex2, .box-flex2 { -webkit-box-flex: 2; flex: 2= 1 0%; } .box-group1 { } .box-group2 { } .hbox.start, .vbox.start, .start { -webkit-box-pack: start; justify-content= : flex-start; } .hbox.end, .vbox.end, .end { -webkit-box-pack: end; justify-content: flex-e= nd; } .hbox.center, .vbox.center, .center { -webkit-box-pack: center; justify-con= tent: center; } .hbox.baseline, .vbox.baseline, .baseline { } .hbox.stretch, .vbox.stretch, .stretch { justify-content: stretch; } .hbox.align-start, .vbox.align-start, .align-start { -webkit-box-align: sta= rt; align-items: flex-start; } .hbox.align-end, .vbox.align-end, .align-end { -webkit-box-align: end; alig= n-items: flex-end; } .hbox.align-center, .vbox.align-center, .align-center { -webkit-box-align: = center; align-items: center; } .hbox.align-baseline, .vbox.align-baseline, .align-baseline { -webkit-box-a= lign: baseline; align-items: baseline; } .hbox.align-stretch, .vbox.align-stretch, .align-stretch { -webkit-box-alig= n: stretch; align-items: stretch; } div.error { margin: 2em; text-align: center; } div.error > h1 { font-size: 500%; line-height: normal; } div.error > p { font-size: 200%; line-height: normal; } div.traceback-wrapper { text-align: left; max-width: 800px; margin: auto; } div.traceback-wrapper pre.traceback { max-height: 600px; overflow: auto; } body { background-color: rgb(255, 255, 255); position: absolute; left: 0px;= right: 0px; top: 0px; bottom: 0px; overflow: visible; } body > #header { display: none; background-color: rgb(255, 255, 255); posit= ion: relative; z-index: 100; } body > #header #header-container { display: flex; flex-direction: row; just= ify-content: space-between; padding: 5px; box-sizing: border-box; } body > #header .header-bar { width: 100%; height: 1px; background: rgb(231,= 231, 231); margin-bottom: -1px; } @media print { body > #header { display: none !important; } } #header-spacer { width: 100%; visibility: hidden; } @media print { #header-spacer { display: none; } } #ipython_notebook { padding-left: 0px; padding-top: 1px; padding-bottom: 1p= x; } [dir=3D"rtl"] #ipython_notebook { margin-right: 10px; margin-left: 0px; } [dir=3D"rtl"] #ipython_notebook.pull-left { float: right !important; } .flex-spacer { flex: 1 1 0%; } #noscript { width: auto; padding-top: 16px; padding-bottom: 16px; text-alig= n: center; font-size: 22px; color: red; font-weight: bold; } #ipython_notebook img { height: 28px; } #site { width: 100%; display: none; box-sizing: border-box; overflow: auto;= } @media print { #site { height: auto !important; } } .ui-button .ui-button-text { padding: 0.2em 0.8em; font-size: 77%; } input.ui-button { padding: 0.3em 0.9em; } span#kernel_logo_widget { margin: 0px 10px; } span#login_widget { float: right; } [dir=3D"rtl"] span#login_widget { float: left; } span#login_widget > .button, #logout, #shutdown { color: rgb(51, 51, 51); b= ackground-color: rgb(255, 255, 255); border-color: rgb(204, 204, 204); marg= in-left: 10px; } span#login_widget > .button:focus, #logout:focus, #shutdown:focus, span#log= in_widget > .button.focus, #logout.focus, #shutdown.focus { color: rgb(51, = 51, 51); background-color: rgb(230, 230, 230); border-color: rgb(140, 140, = 140); } span#login_widget > .button:hover, #logout:hover, #shutdown:hover { color: = rgb(51, 51, 51); background-color: rgb(230, 230, 230); border-color: rgb(17= 3, 173, 173); } span#login_widget > .button:active, #logout:active, #shutdown:active, span#= login_widget > .button.active, #logout.active, #shutdown.active, .open > .d= ropdown-togglespan#login_widget > .button, .open > .dropdown-toggle#logout,= .open > .dropdown-toggle#shutdown { color: rgb(51, 51, 51); background-col= or: rgb(230, 230, 230); background-image: none; border-color: rgb(173, 173,= 173); } span#login_widget > .button:active:hover, #logout:active:hover, #shutdown:a= ctive:hover, span#login_widget > .button.active:hover, #logout.active:hover= , #shutdown.active:hover, .open > .dropdown-togglespan#login_widget > .butt= on:hover, .open > .dropdown-toggle#logout:hover, .open > .dropdown-toggle#s= hutdown:hover, span#login_widget > .button:active:focus, #logout:active:foc= us, #shutdown:active:focus, span#login_widget > .button.active:focus, #logo= ut.active:focus, #shutdown.active:focus, .open > .dropdown-togglespan#login= _widget > .button:focus, .open > .dropdown-toggle#logout:focus, .open > .dr= opdown-toggle#shutdown:focus, span#login_widget > .button:active.focus, #lo= gout:active.focus, #shutdown:active.focus, span#login_widget > .button.acti= ve.focus, #logout.active.focus, #shutdown.active.focus, .open > .dropdown-t= ogglespan#login_widget > .button.focus, .open > .dropdown-toggle#logout.foc= us, .open > .dropdown-toggle#shutdown.focus { color: rgb(51, 51, 51); backg= round-color: rgb(212, 212, 212); border-color: rgb(140, 140, 140); } span#login_widget > .button.disabled:hover, #logout.disabled:hover, #shutdo= wn.disabled:hover, span#login_widget > .button[disabled]:hover, #logout[dis= abled]:hover, #shutdown[disabled]:hover, fieldset[disabled] span#login_widg= et > .button:hover, fieldset[disabled] #logout:hover, fieldset[disabled] #s= hutdown:hover, span#login_widget > .button.disabled:focus, #logout.disabled= :focus, #shutdown.disabled:focus, span#login_widget > .button[disabled]:foc= us, #logout[disabled]:focus, #shutdown[disabled]:focus, fieldset[disabled] = span#login_widget > .button:focus, fieldset[disabled] #logout:focus, fields= et[disabled] #shutdown:focus, span#login_widget > .button.disabled.focus, #= logout.disabled.focus, #shutdown.disabled.focus, span#login_widget > .butto= n[disabled].focus, #logout[disabled].focus, #shutdown[disabled].focus, fiel= dset[disabled] span#login_widget > .button.focus, fieldset[disabled] #logou= t.focus, fieldset[disabled] #shutdown.focus { background-color: rgb(255, 25= 5, 255); border-color: rgb(204, 204, 204); } span#login_widget > .button .badge, #logout .badge, #shutdown .badge { colo= r: rgb(255, 255, 255); background-color: rgb(51, 51, 51); } .nav-header { text-transform: none; } #header > span { margin-top: 10px; } .modal_stretch .modal-dialog { -webkit-box-orient: vertical; -webkit-box-al= ign: stretch; display: flex; flex-direction: column; align-items: stretch; = min-height: 80vh; } .modal_stretch .modal-dialog .modal-body { max-height: calc(100vh - 200px);= overflow: auto; flex: 1 1 0%; } .modal-header { cursor: move; } @media (min-width: 768px) { .modal .modal-dialog { width: 700px; } } @media (min-width: 768px) { select.form-control { margin-left: 12px; margin-right: 12px; } } [dir=3D"rtl"] .modal-footer { text-align: left !important; } [dir=3D"rtl"] .close { float: left; } [dir=3D"rtl"] .fa-step-forward::before { content: "=EF=81=88"; } .center-nav { display: inline-block; margin-bottom: -4px; } [dir=3D"rtl"] .center-nav form.pull-left { float: right !important; } [dir=3D"rtl"] .center-nav .navbar-text { float: right; } [dir=3D"rtl"] .navbar-inner { text-align: right; } [dir=3D"rtl"] div.text-left { text-align: right; } .alternate_upload { display: inline; } .alternate_upload.form { padding: 0px; margin: 0px; } .alternate_upload input.fileinput { position: absolute; display: block; wid= th: 100%; height: 100%; overflow: hidden; cursor: pointer; opacity: 0; z-in= dex: 2; } .alternate_upload .btn-xs > input.fileinput { margin: -1px -5px; } .alternate_upload .btn-upload { position: relative; height: 22px; } ::-webkit-file-upload-button { cursor: pointer; } ul#tabs { margin-bottom: 4px; } ul#tabs a { padding-top: 6px; padding-bottom: 4px; } [dir=3D"rtl"] ul#tabs.nav-tabs > li { float: right; } [dir=3D"rtl"] ul#tabs.nav.nav-tabs { padding-right: 0px; } ul.breadcrumb a:focus, ul.breadcrumb a:hover { text-decoration: none; } ul.breadcrumb i.icon-home { font-size: 16px; margin-right: 4px; } ul.breadcrumb span { color: rgb(94, 94, 94); } .list_toolbar { padding: 4px 0px; vertical-align: middle; } .list_toolbar .tree-buttons { padding-top: 1px; } [dir=3D"rtl"] .list_toolbar .tree-buttons .pull-right { float: left !import= ant; } [dir=3D"rtl"] .list_toolbar .col-sm-4, [dir=3D"rtl"] .list_toolbar .col-sm-= 8 { float: right; } .dynamic-buttons { padding-top: 3px; display: inline-block; } .list_toolbar [class*=3D"span"] { min-height: 24px; } .list_header { font-weight: bold; background-color: rgb(238, 238, 238); } .list_placeholder { font-weight: bold; padding: 4px 7px; } .list_container { margin-top: 4px; margin-bottom: 20px; border: 1px solid r= gb(221, 221, 221); border-radius: 2px; } .list_container > div { border-bottom: 1px solid rgb(221, 221, 221); } .list_container > div:hover .list-item { background-color: red; } .list_container > div:last-child { border: none; } .list_item:hover .list_item { background-color: rgb(221, 221, 221); } .list_item a { text-decoration: none; } .list_item:hover { background-color: rgb(250, 250, 250); } .list_header > div, .list_item > div { padding: 4px 7px; line-height: 22px;= } .list_header > div input, .list_item > div input { margin-right: 7px; margi= n-left: 14px; vertical-align: text-bottom; line-height: 22px; position: rel= ative; top: -1px; } .list_header > div .item_link, .list_item > div .item_link { margin-left: -= 1px; vertical-align: baseline; line-height: 22px; } [dir=3D"rtl"] .list_item > div input { margin-right: 0px; } .new-file input[type=3D"checkbox"] { visibility: hidden; } .item_name { line-height: 22px; height: 24px; } .item_icon { font-size: 14px; color: rgb(94, 94, 94); margin-right: 7px; ma= rgin-left: 7px; line-height: 22px; vertical-align: baseline; } .item_modified { margin-right: 7px; margin-left: 7px; } .file_size { width: 65px; text-align: right; } [dir=3D"rtl"] .item_modified.pull-right { float: left !important; } .item_buttons { line-height: 1em; margin-left: -5px; } .item_buttons .btn, .item_buttons .btn-group, .item_buttons .input-group { = float: left; } .item_buttons > .btn, .item_buttons > .btn-group, .item_buttons > .input-gr= oup { margin-left: 5px; } .item_buttons .btn { min-width: 13ex; } .item_buttons .running-indicator { padding-top: 4px; color: rgb(53, 121, 53= ); } .item_buttons .kernel-name { padding-top: 4px; color: rgb(91, 192, 222); ma= rgin-right: 7px; float: left; } [dir=3D"rtl"] .item_buttons.pull-right { float: left !important; } [dir=3D"rtl"] .item_buttons .kernel-name { margin-left: 7px; float: right; = } .toolbar_info { height: 24px; line-height: 24px; } .list_item input:not([type=3D"checkbox"]) { padding-top: 3px; padding-botto= m: 3px; height: 22px; line-height: 14px; margin: 0px; } .highlight_text { color: blue; } #project_name { display: inline-block; padding-left: 7px; margin-left: -2px= ; } #project_name > .breadcrumb { padding: 0px; margin-bottom: 0px; background-= color: transparent; font-weight: bold; } .sort_button { display: inline-block; padding-left: 7px; } [dir=3D"rtl"] .sort_button.pull-right { float: left !important; } #tree-selector { padding-right: 0px; } #button-select-all { min-width: 50px; } [dir=3D"rtl"] #button-select-all.btn { float: right; } #select-all { margin-left: 7px; margin-right: 2px; margin-top: 2px; height:= 16px; } [dir=3D"rtl"] #select-all.pull-left { float: right !important; } .menu_icon { margin-right: 2px; } .tab-content .row { margin-left: 0px; margin-right: 0px; } .folder_icon::before { display: inline-block; font-style: normal; font-vari= ant: normal; font-weight: normal; font-stretch: normal; line-height: 1; fon= t-family: FontAwesome; font-size: inherit; text-rendering: auto; -webkit-fo= nt-smoothing: antialiased; content: "=EF=84=94"; } .notebook_icon::before { display: inline-block; font-style: normal; font-va= riant: normal; font-weight: normal; font-stretch: normal; line-height: 1; f= ont-family: FontAwesome; font-size: inherit; text-rendering: auto; -webkit-= font-smoothing: antialiased; content: "=EF=80=AD"; position: relative; top:= -1px; } .running_notebook_icon::before { display: inline-block; font-style: normal;= font-variant: normal; font-weight: normal; font-stretch: normal; line-heig= ht: 1; font-family: FontAwesome; font-size: inherit; text-rendering: auto; = -webkit-font-smoothing: antialiased; content: "=EF=80=AD"; position: relati= ve; top: -1px; color: rgb(92, 184, 92); } .file_icon::before { display: inline-block; font-style: normal; font-varian= t: normal; font-weight: normal; font-stretch: normal; line-height: 1; font-= family: FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font= -smoothing: antialiased; content: "=EF=80=96"; position: relative; top: -2p= x; } #notebook_toolbar .pull-right { padding-top: 0px; margin-right: -1px; } ul#new-menu { left: auto; right: 0px; } #new-menu .dropdown-header { font-size: 10px; border-bottom: 1px solid rgb(= 229, 229, 229); padding: 0px 0px 3px; margin: -3px 20px 0px; } .kernel-menu-icon { padding-right: 12px; width: 24px; content: "=EF=82=96";= } .kernel-menu-icon::before { content: "=EF=82=96"; } .kernel-menu-icon-current::before { content: "=EF=80=8C"; } #tab_content { padding-top: 20px; } #running .panel-group .panel { margin-top: 3px; margin-bottom: 1em; } #running .panel-group .panel .panel-heading { background-color: rgb(238, 23= 8, 238); padding: 4px 7px; line-height: 22px; } #running .panel-group .panel .panel-heading a:focus, #running .panel-group = .panel .panel-heading a:hover { text-decoration: none; } #running .panel-group .panel .panel-body { padding: 0px; } #running .panel-group .panel .panel-body .list_container { margin-top: 0px;= margin-bottom: 0px; border: 0px; border-radius: 0px; } #running .panel-group .panel .panel-body .list_container .list_item { borde= r-bottom: 1px solid rgb(221, 221, 221); } #running .panel-group .panel .panel-body .list_container .list_item:last-ch= ild { border-bottom: 0px; } .delete-button { display: none; } .duplicate-button { display: none; } .rename-button { display: none; } .move-button { display: none; } .download-button { display: none; } .shutdown-button { display: none; } .dynamic-instructions { display: inline-block; padding-top: 4px; } .selected-keymap i.fa { padding: 0px 5px; } .selected-keymap i.fa::before { content: "=EF=80=8C"; } #mode-menu { overflow: auto; max-height: 20em; } .edit_app #header { box-shadow: rgba(87, 87, 87, 0.2) 0px 0px 12px 1px; } .edit_app #menubar .navbar { margin-bottom: -1px; } .dirty-indicator { display: inline-block; font-style: normal; font-variant:= normal; font-weight: normal; font-stretch: normal; line-height: 1; font-fa= mily: FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-s= moothing: antialiased; width: 20px; } .dirty-indicator.fa-pull-left { margin-right: 0.3em; } .dirty-indicator.fa-pull-right { margin-left: 0.3em; } .dirty-indicator.pull-left { margin-right: 0.3em; } .dirty-indicator.pull-right { margin-left: 0.3em; } .dirty-indicator-dirty { display: inline-block; font-style: normal; font-va= riant: normal; font-weight: normal; font-stretch: normal; line-height: 1; f= ont-family: FontAwesome; font-size: inherit; text-rendering: auto; -webkit-= font-smoothing: antialiased; width: 20px; } .dirty-indicator-dirty.fa-pull-left { margin-right: 0.3em; } .dirty-indicator-dirty.fa-pull-right { margin-left: 0.3em; } .dirty-indicator-dirty.pull-left { margin-right: 0.3em; } .dirty-indicator-dirty.pull-right { margin-left: 0.3em; } .dirty-indicator-clean { display: inline-block; font-style: normal; font-va= riant: normal; font-weight: normal; font-stretch: normal; line-height: 1; f= ont-family: FontAwesome; font-size: inherit; text-rendering: auto; -webkit-= font-smoothing: antialiased; width: 20px; } .dirty-indicator-clean.fa-pull-left { margin-right: 0.3em; } .dirty-indicator-clean.fa-pull-right { margin-left: 0.3em; } .dirty-indicator-clean.pull-left { margin-right: 0.3em; } .dirty-indicator-clean.pull-right { margin-left: 0.3em; } .dirty-indicator-clean::before { display: inline-block; font-style: normal;= font-variant: normal; font-weight: normal; font-stretch: normal; line-heig= ht: 1; font-family: FontAwesome; font-size: inherit; text-rendering: auto; = -webkit-font-smoothing: antialiased; content: "=EF=80=8C"; } #filename { font-size: 16pt; display: table; padding: 0px 5px; } #current-mode { padding-left: 5px; padding-right: 5px; } #texteditor-backdrop { padding-top: 20px; padding-bottom: 20px; } @media not print { #texteditor-backdrop { background-color: rgb(238, 238, 238); } } @media print { #texteditor-backdrop #texteditor-container .CodeMirror-gutter, #textedito= r-backdrop #texteditor-container .CodeMirror-gutters { background-color: rg= b(255, 255, 255); } } @media not print { #texteditor-backdrop #texteditor-container .CodeMirror-gutter, #textedito= r-backdrop #texteditor-container .CodeMirror-gutters { background-color: rg= b(255, 255, 255); } } @media not print { #texteditor-backdrop #texteditor-container { padding: 0px; background-col= or: rgb(255, 255, 255); box-shadow: rgba(87, 87, 87, 0.2) 0px 0px 12px 1px;= } } .CodeMirror-dialog { background-color: rgb(255, 255, 255); } .ansi-black-fg { color: rgb(62, 66, 77); } .ansi-black-bg { background-color: rgb(62, 66, 77); } .ansi-black-intense-fg { color: rgb(40, 44, 54); } .ansi-black-intense-bg { background-color: rgb(40, 44, 54); } .ansi-red-fg { color: rgb(231, 92, 88); } .ansi-red-bg { background-color: rgb(231, 92, 88); } .ansi-red-intense-fg { color: rgb(178, 43, 49); } .ansi-red-intense-bg { background-color: rgb(178, 43, 49); } .ansi-green-fg { color: rgb(0, 162, 80); } .ansi-green-bg { background-color: rgb(0, 162, 80); } .ansi-green-intense-fg { color: rgb(0, 116, 39); } .ansi-green-intense-bg { background-color: rgb(0, 116, 39); } .ansi-yellow-fg { color: rgb(221, 182, 43); } .ansi-yellow-bg { background-color: rgb(221, 182, 43); } .ansi-yellow-intense-fg { color: rgb(178, 125, 18); } .ansi-yellow-intense-bg { background-color: rgb(178, 125, 18); } .ansi-blue-fg { color: rgb(32, 143, 251); } .ansi-blue-bg { background-color: rgb(32, 143, 251); } .ansi-blue-intense-fg { color: rgb(0, 101, 202); } .ansi-blue-intense-bg { background-color: rgb(0, 101, 202); } .ansi-magenta-fg { color: rgb(209, 96, 196); } .ansi-magenta-bg { background-color: rgb(209, 96, 196); } .ansi-magenta-intense-fg { color: rgb(160, 49, 150); } .ansi-magenta-intense-bg { background-color: rgb(160, 49, 150); } .ansi-cyan-fg { color: rgb(96, 198, 200); } .ansi-cyan-bg { background-color: rgb(96, 198, 200); } .ansi-cyan-intense-fg { color: rgb(37, 143, 143); } .ansi-cyan-intense-bg { background-color: rgb(37, 143, 143); } .ansi-white-fg { color: rgb(197, 193, 180); } .ansi-white-bg { background-color: rgb(197, 193, 180); } .ansi-white-intense-fg { color: rgb(161, 166, 178); } .ansi-white-intense-bg { background-color: rgb(161, 166, 178); } .ansi-default-inverse-fg { color: rgb(255, 255, 255); } .ansi-default-inverse-bg { background-color: rgb(0, 0, 0); } .ansi-bold { font-weight: bold; } .ansi-underline { text-decoration: underline; } div.cell { -webkit-box-orient: vertical; -webkit-box-align: stretch; displa= y: flex; flex-direction: column; align-items: stretch; border-radius: 2px; = box-sizing: border-box; border-width: 1px; border-style: solid; border-colo= r: transparent; width: 100%; padding: 5px; margin: 0px; outline: none; posi= tion: relative; overflow: visible; } div.cell::before { position: absolute; display: block; top: -1px; left: -1p= x; width: 5px; height: calc(100% + 2px); content: ""; background: transpare= nt; } div.cell.jupyter-soft-selected { border-left-color: rgb(227, 242, 253); bor= der-left-width: 1px; padding-left: 5px; border-right-color: rgb(227, 242, 2= 53); border-right-width: 1px; background: rgb(227, 242, 253); } @media print { div.cell.jupyter-soft-selected { border-color: transparent; } } div.cell.selected, div.cell.selected.jupyter-soft-selected { border-color: = rgb(171, 171, 171); } div.cell.selected::before, div.cell.selected.jupyter-soft-selected::before = { position: absolute; display: block; top: -1px; left: -1px; width: 5px; he= ight: calc(100% + 2px); content: ""; background: rgb(66, 165, 245); } @media print { div.cell.selected, div.cell.selected.jupyter-soft-selected { border-color= : transparent; } } .edit_mode div.cell.selected { border-color: rgb(102, 187, 106); } .edit_mode div.cell.selected::before { position: absolute; display: block; = top: -1px; left: -1px; width: 5px; height: calc(100% + 2px); content: ""; b= ackground: rgb(102, 187, 106); } @media print { .edit_mode div.cell.selected { border-color: transparent; } } .prompt { min-width: 14ex; padding: 0.4em; margin: 0px; font-family: monosp= ace; text-align: right; line-height: 1.21429em; user-select: none; cursor: = default; } @media (max-width: 540px) { .prompt { text-align: left; } } div.inner_cell { min-width: 0px; -webkit-box-orient: vertical; -webkit-box-= align: stretch; display: flex; flex-direction: column; align-items: stretch= ; -webkit-box-flex: 1; flex: 1 1 0%; } div.input_area { border: 1px solid rgb(207, 207, 207); border-radius: 2px; = background: rgb(247, 247, 247); line-height: 1.21429em; } div.prompt:empty { padding-top: 0px; padding-bottom: 0px; } div.unrecognized_cell { padding: 5px 5px 5px 0px; -webkit-box-orient: horiz= ontal; -webkit-box-align: stretch; display: flex; flex-direction: row; alig= n-items: stretch; } div.unrecognized_cell .inner_cell { border-radius: 2px; padding: 5px; font-= weight: bold; color: red; border: 1px solid rgb(207, 207, 207); background:= rgb(234, 234, 234); } div.unrecognized_cell .inner_cell a { color: inherit; text-decoration: none= ; } div.unrecognized_cell .inner_cell a:hover { color: inherit; text-decoration= : none; } @media (max-width: 540px) { div.unrecognized_cell > div.prompt { display: none; } } div.code_cell { } @media print { div.code_cell { break-inside: avoid; } } div.input { break-inside: avoid; -webkit-box-orient: horizontal; -webkit-bo= x-align: stretch; display: flex; flex-direction: row; align-items: stretch;= } @media (max-width: 540px) { div.input { -webkit-box-orient: vertical; -webkit-box-align: stretch; dis= play: flex; flex-direction: column; align-items: stretch; } } div.prompt_container { display: flex; flex-direction: row; justify-content:= space-between; align-items: flex-start; text-align: right; } div.input_prompt { color: rgb(48, 63, 159); border-top: 1px solid transpare= nt; } div.run_this_cell { display: none; cursor: pointer; color: rgb(51, 51, 51);= padding: 5px 2ex; width: 1ex; } div.prompt { min-width: 15ex; } @media not all, (any-pointer: coarse) { div.run_this_cell { display: block; } } div.input_area > div.highlight { margin: 0.4em; border: none; padding: 0px;= background-color: transparent; } div.input_area > div.highlight > pre { margin: 0px; border: none; padding: = 0px; background-color: transparent; } .CodeMirror { line-height: 1.21429em; font-size: 14px; height: auto; backgr= ound: none; } .CodeMirror-scroll { overflow: auto hidden; } .CodeMirror-lines { padding: 0.4em 0px; } .CodeMirror-linenumber { padding: 0px 8px 0px 4px; } .CodeMirror-gutters { border-bottom-left-radius: 2px; border-top-left-radiu= s: 2px; } .CodeMirror pre { padding: 0px 0.4em; border: 0px; border-radius: 0px; } .CodeMirror-cursor { border-left: 1.4px solid black; } @media screen and (max-width: 4319px) and (min-width: 2138px) { .CodeMirror-cursor { border-left: 2px solid black; } } @media screen and (min-width: 4320px) { .CodeMirror-cursor { border-left: 4px solid black; } } .highlight-base { color: rgb(0, 0, 0); } .highlight-variable { color: rgb(0, 0, 0); } .highlight-variable-2 { color: rgb(26, 26, 26); } .highlight-variable-3 { color: rgb(51, 51, 51); } .highlight-string { color: rgb(186, 33, 33); } .highlight-comment { color: rgb(0, 121, 121); font-style: italic; } .highlight-number { color: rgb(0, 136, 0); } .highlight-atom { color: rgb(136, 136, 255); } .highlight-keyword { color: rgb(0, 128, 0); font-weight: bold; } .highlight-builtin { color: rgb(0, 128, 0); } .highlight-error { color: rgb(255, 0, 0); } .highlight-operator { color: rgb(170, 34, 255); font-weight: bold; } .highlight-meta { color: rgb(170, 34, 255); } .highlight-def { color: rgb(0, 0, 255); } .highlight-string-2 { color: rgb(255, 85, 0); } .highlight-qualifier { color: rgb(85, 85, 85); } .highlight-bracket { color: rgb(153, 153, 119); } .highlight-tag { color: rgb(17, 119, 0); } .highlight-attribute { color: rgb(0, 0, 204); } .highlight-header { color: blue; } .highlight-quote { color: rgb(0, 153, 0); } .highlight-link { color: rgb(0, 0, 204); } .cm-s-ipython span.cm-keyword { color: rgb(0, 128, 0); font-weight: bold; } .cm-s-ipython span.cm-atom { color: rgb(136, 136, 255); } .cm-s-ipython span.cm-number { color: rgb(0, 136, 0); } .cm-s-ipython span.cm-def { color: rgb(0, 0, 255); } .cm-s-ipython span.cm-variable { color: rgb(0, 0, 0); } .cm-s-ipython span.cm-operator { color: rgb(170, 34, 255); font-weight: bol= d; } .cm-s-ipython span.cm-variable-2 { color: rgb(26, 26, 26); } .cm-s-ipython span.cm-variable-3 { color: rgb(51, 51, 51); } .cm-s-ipython span.cm-comment { color: rgb(0, 121, 121); font-style: italic= ; } .cm-s-ipython span.cm-string { color: rgb(186, 33, 33); } .cm-s-ipython span.cm-string-2 { color: rgb(255, 85, 0); } .cm-s-ipython span.cm-meta { color: rgb(170, 34, 255); } .cm-s-ipython span.cm-qualifier { color: rgb(85, 85, 85); } .cm-s-ipython span.cm-builtin { color: rgb(0, 128, 0); } .cm-s-ipython span.cm-bracket { color: rgb(153, 153, 119); } .cm-s-ipython span.cm-tag { color: rgb(17, 119, 0); } .cm-s-ipython span.cm-attribute { color: rgb(0, 0, 204); } .cm-s-ipython span.cm-header { color: blue; } .cm-s-ipython span.cm-quote { color: rgb(0, 153, 0); } .cm-s-ipython span.cm-link { color: rgb(0, 0, 204); } .cm-s-ipython span.cm-error { color: rgb(255, 0, 0); } .cm-s-ipython span.cm-tab { background: url("data:image/png;base64,iVBORw0K= GgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFA= QheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJ= vElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=3D") righ= t center no-repeat; } div.output_wrapper { position: relative; -webkit-box-orient: vertical; -web= kit-box-align: stretch; display: flex; flex-direction: column; align-items:= stretch; z-index: 1; } div.output_scroll { height: 24em; width: 100%; overflow: auto; border-radiu= s: 2px; box-shadow: rgba(0, 0, 0, 0.8) 0px 2px 8px inset; display: block; } div.output_collapsed { margin: 0px; padding: 0px; -webkit-box-orient: verti= cal; -webkit-box-align: stretch; display: flex; flex-direction: column; ali= gn-items: stretch; } div.out_prompt_overlay { height: 100%; padding: 0px 0.4em; position: absolu= te; border-radius: 2px; } div.out_prompt_overlay:hover { box-shadow: rgb(0, 0, 0) 0px 0px 1px inset; = background: rgba(240, 240, 240, 0.5); } div.output_prompt { color: rgb(216, 67, 21); } div.output_area { padding: 0px; break-inside: avoid; -webkit-box-orient: ho= rizontal; -webkit-box-align: stretch; display: flex; flex-direction: row; a= lign-items: stretch; } div.output_area .MathJax_Display { text-align: left !important; } div.output_area .rendered_html table { margin-left: 0px; margin-right: 0px;= } div.output_area .rendered_html img { margin-left: 0px; margin-right: 0px; } div.output_area img, div.output_area svg { max-width: 100%; height: auto; } div.output_area img.unconfined, div.output_area svg.unconfined { max-width:= none; } div.output_area .mglyph > img { max-width: none; } .output { -webkit-box-orient: vertical; -webkit-box-align: stretch; display= : flex; flex-direction: column; align-items: stretch; } @media (max-width: 540px) { div.output_area { -webkit-box-orient: vertical; -webkit-box-align: stretc= h; display: flex; flex-direction: column; align-items: stretch; } } div.output_area pre { margin: 0px; padding: 1px 0px; border: 0px; vertical-= align: baseline; color: black; background-color: transparent; border-radius= : 0px; } div.output_subarea { overflow-x: auto; padding: 0.4em; -webkit-box-flex: 1;= flex: 1 1 0%; max-width: calc(100% - 14ex); } div.output_scroll div.output_subarea { overflow-x: visible; } div.output_text { text-align: left; color: rgb(0, 0, 0); line-height: 1.214= 29em; } div.output_stderr { background: rgb(255, 221, 221); } div.output_latex { text-align: left; } div.output_javascript:empty { padding: 0px; } .js-error { color: darkred; } div.raw_input_container { line-height: 1.21429em; padding-top: 5px; } pre.raw_input_prompt { } input.raw_input { font-family: monospace; font-size: inherit; color: inheri= t; width: auto; vertical-align: baseline; padding: 0em 0.25em; margin: 0em = 0.25em; } input.raw_input:focus { box-shadow: none; } p.p-space { margin-bottom: 10px; } div.output_unrecognized { padding: 5px; font-weight: bold; color: red; } div.output_unrecognized a { color: inherit; text-decoration: none; } div.output_unrecognized a:hover { color: inherit; text-decoration: none; } .rendered_html { color: rgb(0, 0, 0); } .rendered_html em { font-style: italic; } .rendered_html strong { font-weight: bold; } .rendered_html u { text-decoration: underline; } .rendered_html :link { text-decoration: underline; } .rendered_html :visited { text-decoration: underline; } .rendered_html h1 { font-size: 185.7%; margin: 1.08em 0px 0px; font-weight:= bold; line-height: 1; } .rendered_html h2 { font-size: 157.1%; margin: 1.27em 0px 0px; font-weight:= bold; line-height: 1; } .rendered_html h3 { font-size: 128.6%; margin: 1.55em 0px 0px; font-weight:= bold; line-height: 1; } .rendered_html h4 { font-size: 100%; margin: 2em 0px 0px; font-weight: bold= ; line-height: 1; } .rendered_html h5 { font-size: 100%; margin: 2em 0px 0px; font-weight: bold= ; line-height: 1; font-style: italic; } .rendered_html h6 { font-size: 100%; margin: 2em 0px 0px; font-weight: bold= ; line-height: 1; font-style: italic; } .rendered_html h1:first-child { margin-top: 0.538em; } .rendered_html h2:first-child { margin-top: 0.636em; } .rendered_html h3:first-child { margin-top: 0.777em; } .rendered_html h4:first-child { margin-top: 1em; } .rendered_html h5:first-child { margin-top: 1em; } .rendered_html h6:first-child { margin-top: 1em; } .rendered_html ul:not(.list-inline), .rendered_html ol:not(.list-inline) { = padding-left: 2em; } .rendered_html ul { list-style: disc; } .rendered_html ul ul { list-style: square; margin-top: 0px; } .rendered_html ul ul ul { list-style: circle; } .rendered_html ol { list-style: decimal; } .rendered_html ol ol { list-style: upper-alpha; margin-top: 0px; } .rendered_html ol ol ol { list-style: lower-alpha; } .rendered_html ol ol ol ol { list-style: lower-roman; } .rendered_html ol ol ol ol ol { list-style: decimal; } .rendered_html * + ul { margin-top: 1em; } .rendered_html * + ol { margin-top: 1em; } .rendered_html hr { color: black; background-color: black; } .rendered_html pre { margin: 1em 2em; padding: 0px; background-color: rgb(2= 55, 255, 255); } .rendered_html code { background-color: rgb(239, 240, 241); } .rendered_html p code { padding: 1px 5px; } .rendered_html pre code { background-color: rgb(255, 255, 255); } .rendered_html pre, .rendered_html code { border: 0px; color: rgb(0, 0, 0);= font-size: 100%; } .rendered_html blockquote { margin: 1em 2em; } .rendered_html table { margin-left: auto; margin-right: auto; border: none;= border-collapse: collapse; border-spacing: 0px; color: black; font-size: 1= 2px; table-layout: fixed; } .rendered_html thead { border-bottom: 1px solid black; vertical-align: bott= om; } .rendered_html tr, .rendered_html th, .rendered_html td { text-align: right= ; vertical-align: middle; padding: 0.5em; line-height: normal; white-space:= normal; max-width: none; border: none; } .rendered_html th { font-weight: bold; } .rendered_html tbody tr:nth-child(2n+1) { background: rgb(245, 245, 245); } .rendered_html tbody tr:hover { background: rgba(66, 165, 245, 0.2); } .rendered_html * + table { margin-top: 1em; } .rendered_html p { text-align: left; } .rendered_html * + p { margin-top: 1em; } .rendered_html img { display: block; margin-left: auto; margin-right: auto;= } .rendered_html * + img { margin-top: 1em; } .rendered_html img, .rendered_html svg { max-width: 100%; height: auto; } .rendered_html img.unconfined, .rendered_html svg.unconfined { max-width: n= one; } .rendered_html .alert { margin-bottom: initial; } .rendered_html * + .alert { margin-top: 1em; } [dir=3D"rtl"] .rendered_html p { text-align: right; } div.text_cell { -webkit-box-orient: horizontal; -webkit-box-align: stretch;= display: flex; flex-direction: row; align-items: stretch; } @media (max-width: 540px) { div.text_cell > div.prompt { display: none; } } div.text_cell_render { outline: none; resize: none; width: inherit; border-= style: none; padding: 0.5em 0.5em 0.5em 0.4em; color: rgb(0, 0, 0); box-siz= ing: border-box; } a.anchor-link:link { text-decoration: none; padding: 0px 20px; visibility: = hidden; } h1:hover .anchor-link, h2:hover .anchor-link, h3:hover .anchor-link, h4:hov= er .anchor-link, h5:hover .anchor-link, h6:hover .anchor-link { visibility:= visible; } .text_cell.rendered .input_area { display: none; } .text_cell.rendered .rendered_html { overflow: auto hidden; } .text_cell.rendered .rendered_html tr, .text_cell.rendered .rendered_html t= h, .text_cell.rendered .rendered_html td { max-width: none; } .text_cell.unrendered .text_cell_render { display: none; } .text_cell .dropzone .input_area { border: 2px dashed rgb(186, 186, 186); m= argin: -1px; } .cm-header-1, .cm-header-2, .cm-header-3, .cm-header-4, .cm-header-5, .cm-h= eader-6 { font-weight: bold; font-family: "Helvetica Neue", Helvetica, Aria= l, sans-serif; } .cm-header-1 { font-size: 185.7%; } .cm-header-2 { font-size: 157.1%; } .cm-header-3 { font-size: 128.6%; } .cm-header-4 { font-size: 110%; } .cm-header-5 { font-size: 100%; font-style: italic; } .cm-header-6 { font-size: 100%; font-style: italic; } @media (max-width: 767px) { .notebook_app { padding-left: 0px; padding-right: 0px; } } #ipython-main-app { box-sizing: border-box; height: 100%; } div#notebook_panel { margin: 0px; padding: 0px; box-sizing: border-box; hei= ght: 100%; } div#notebook { font-size: 14px; line-height: 20px; overflow: auto hidden; w= idth: 100%; padding-top: 20px; padding-bottom: 20px; margin: 0px; outline: = none; box-sizing: border-box; min-height: 100%; } @media not print { #notebook-container { padding: 15px; background-color: rgb(255, 255, 255)= ; min-height: 0px; box-shadow: rgba(87, 87, 87, 0.2) 0px 0px 12px 1px; } } @media print { #notebook-container { width: 100%; } } div.ui-widget-content { border: 1px solid rgb(171, 171, 171); outline: none= ; } pre.dialog { background-color: rgb(247, 247, 247); border: 1px solid rgb(22= 1, 221, 221); border-radius: 2px; padding: 0.4em 0.4em 0.4em 2em; } p.dialog { padding: 0.2em; } pre, code, kbd, samp { white-space: pre-wrap; } #fonttest { font-family: monospace; } p { margin-bottom: 0px; } .end_space { min-height: 100px; transition: height 0.2s ease 0s; } .notebook_app > #header { box-shadow: rgba(87, 87, 87, 0.2) 0px 0px 12px 1p= x; } @media not print { .notebook_app { background-color: rgb(238, 238, 238); } } kbd { border-style: solid; border-width: 1px; box-shadow: none; margin: 2px= ; padding: 1px 2px; } .jupyter-keybindings { padding: 1px; line-height: 24px; border-bottom: 1px = solid gray; } .jupyter-keybindings input { margin: 0px; padding: 0px; border: none; } .jupyter-keybindings i { padding: 6px; } .well code { background-color: rgb(255, 255, 255); border-color: rgb(171, 1= 71, 171); border-width: 1px; border-style: solid; padding: 1px 2px; } .celltoolbar { border-top: thin solid rgb(207, 207, 207); border-right: thi= n solid rgb(207, 207, 207); border-left: thin solid rgb(207, 207, 207); bor= der-image: initial; border-bottom: none; background: rgb(238, 238, 238); bo= rder-radius: 2px 2px 0px 0px; width: 100%; height: 29px; padding-right: 4px= ; -webkit-box-orient: horizontal; -webkit-box-align: stretch; flex-directio= n: row; align-items: stretch; -webkit-box-pack: end; justify-content: flex-= end; display: -webkit-flex; } @media print { .celltoolbar { display: none; } } .ctb_hideshow { display: none; vertical-align: bottom; } .ctb_global_show .ctb_show.ctb_hideshow { display: block; } .ctb_global_show .ctb_show + .input_area, .ctb_global_show .ctb_show + div.= text_cell_input, .ctb_global_show .ctb_show ~ div.text_cell_render { border= -top-right-radius: 0px; border-top-left-radius: 0px; } .ctb_global_show .ctb_show ~ div.text_cell_render { border: 1px solid rgb(2= 07, 207, 207); } .celltoolbar { font-size: 87%; padding-top: 3px; } .celltoolbar select { color: rgb(85, 85, 85); background-color: rgb(255, 25= 5, 255); background-image: none; border: 1px solid rgb(204, 204, 204); box-= shadow: rgba(0, 0, 0, 0.075) 0px 1px 1px inset; transition: border-color 0.= 15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s; line-height: 1.5; bord= er-radius: 1px; width: inherit; font-size: inherit; height: 22px; padding: = 0px; display: inline-block; } .celltoolbar select:focus { border-color: rgb(102, 175, 233); outline: 0px;= box-shadow: rgba(0, 0, 0, 0.075) 0px 1px 1px inset, rgba(102, 175, 233, 0.= 6) 0px 0px 8px; } .celltoolbar select::-webkit-input-placeholder { color: rgb(153, 153, 153);= } .celltoolbar select[disabled], .celltoolbar select[readonly], fieldset[disa= bled] .celltoolbar select { background-color: rgb(238, 238, 238); opacity: = 1; } .celltoolbar select[disabled], fieldset[disabled] .celltoolbar select { cur= sor: not-allowed; } textarea.celltoolbar select { height: auto; } select.celltoolbar select { height: 30px; line-height: 30px; } textarea.celltoolbar select, select[multiple].celltoolbar select { height: = auto; } .celltoolbar label { margin-left: 5px; margin-right: 5px; } .tags_button_container { width: 100%; display: flex; } .tag-container { display: flex; flex-direction: row; flex-grow: 1; overflow= : hidden; position: relative; } .tag-container > * { margin: 0px 4px; } .remove-tag-btn { margin-left: 4px; } .tags-input { display: flex; } .cell-tag:last-child::after { content: ""; position: absolute; right: 0px; = width: 40px; height: 100%; background: linear-gradient(to right, rgba(0, 0,= 0, 0), rgb(238, 238, 238)); } .tags-input > * { margin-left: 4px; } .cell-tag, .tags-input input, .tags-input button { color: rgb(85, 85, 85); = background-color: rgb(255, 255, 255); background-image: none; border: 1px s= olid rgb(204, 204, 204); transition: border-color 0.15s ease-in-out 0s, box= -shadow 0.15s ease-in-out 0s; border-radius: 1px; box-shadow: none; width: = inherit; font-size: inherit; height: 22px; line-height: 22px; padding: 0px = 4px; display: inline-block; } .cell-tag:focus, .tags-input input:focus, .tags-input button:focus { border= -color: rgb(102, 175, 233); outline: 0px; box-shadow: rgba(0, 0, 0, 0.075) = 0px 1px 1px inset, rgba(102, 175, 233, 0.6) 0px 0px 8px; } .cell-tag::-webkit-input-placeholder, .tags-input input::-webkit-input-plac= eholder, .tags-input button::-webkit-input-placeholder { color: rgb(153, 15= 3, 153); } .cell-tag[disabled], .tags-input input[disabled], .tags-input button[disabl= ed], .cell-tag[readonly], .tags-input input[readonly], .tags-input button[r= eadonly], fieldset[disabled] .cell-tag, fieldset[disabled] .tags-input inpu= t, fieldset[disabled] .tags-input button { background-color: rgb(238, 238, = 238); opacity: 1; } .cell-tag[disabled], .tags-input input[disabled], .tags-input button[disabl= ed], fieldset[disabled] .cell-tag, fieldset[disabled] .tags-input input, fi= eldset[disabled] .tags-input button { cursor: not-allowed; } textarea.cell-tag, textarea.tags-input input, textarea.tags-input button { = height: auto; } select.cell-tag, select.tags-input input, select.tags-input button { height= : 30px; line-height: 30px; } textarea.cell-tag, textarea.tags-input input, textarea.tags-input button, s= elect[multiple].cell-tag, select[multiple].tags-input input, select[multipl= e].tags-input button { height: auto; } .cell-tag, .tags-input button { padding: 0px 4px; } .cell-tag { background-color: rgb(255, 255, 255); white-space: nowrap; } .tags-input input[type=3D"text"]:focus { outline: none; box-shadow: none; b= order-color: rgb(204, 204, 204); } .completions { position: absolute; z-index: 110; overflow: hidden; border: = 1px solid rgb(171, 171, 171); border-radius: 2px; box-shadow: rgb(173, 173,= 173) 0px 6px 10px -1px; line-height: 1; } .completions select { background: white; outline: none; border: none; paddi= ng: 0px; margin: 0px; overflow: auto; font-family: monospace; font-size: 11= 0%; color: rgb(0, 0, 0); width: auto; } .completions select option.context { color: rgb(40, 96, 144); } #kernel_logo_widget .current_kernel_logo { display: none; margin-top: -1px;= margin-bottom: -1px; width: 32px; height: 32px; } [dir=3D"rtl"] #kernel_logo_widget { float: left !important; } .modal .modal-body .move-path { display: flex; flex-direction: row; align-i= tems: center; } .modal .modal-body .move-path .server-root { padding-right: 20px; } .modal .modal-body .move-path .path-input { flex: 1 1 0%; } #menubar { box-sizing: border-box; margin-top: 1px; } #menubar .navbar { border-top: 1px; border-radius: 0px 0px 2px 2px; margin-= bottom: 0px; } #menubar .navbar-toggle { float: left; padding-top: 7px; padding-bottom: 7p= x; border: none; } #menubar .navbar-collapse { clear: left; } [dir=3D"rtl"] #menubar .navbar-toggle { float: right; } [dir=3D"rtl"] #menubar .navbar-collapse { clear: right; } [dir=3D"rtl"] #menubar .navbar-nav { float: right; } [dir=3D"rtl"] #menubar .nav { padding-right: 0px; } [dir=3D"rtl"] #menubar .navbar-nav > li { float: right; } [dir=3D"rtl"] #menubar .navbar-right { float: left !important; } [dir=3D"rtl"] ul.dropdown-menu { text-align: right; left: auto; } [dir=3D"rtl"] ul#new-menu.dropdown-menu { right: auto; left: 0px; } .nav-wrapper { border-bottom: 1px solid rgb(231, 231, 231); } i.menu-icon { padding-top: 4px; } [dir=3D"rtl"] i.menu-icon.pull-right { float: left !important; } ul#help_menu li a { overflow: hidden; padding-right: 2.2em; } ul#help_menu li a i { margin-right: -1.2em; } [dir=3D"rtl"] ul#help_menu li a { padding-left: 2.2em; } [dir=3D"rtl"] ul#help_menu li a i { margin-right: 0px; margin-left: -1.2em;= } [dir=3D"rtl"] ul#help_menu li a i.pull-right { float: left !important; } .dropdown-submenu { position: relative; } .dropdown-submenu > .dropdown-menu { top: 0px; left: 100%; margin-top: -6px= ; margin-left: -1px; } [dir=3D"rtl"] .dropdown-submenu > .dropdown-menu { right: 100%; margin-righ= t: -1px; } .dropdown-submenu:hover > .dropdown-menu { display: block; } .dropdown-submenu > a::after { font-style: normal; font-variant: normal; fo= nt-weight: normal; font-stretch: normal; line-height: 1; font-family: FontA= wesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: a= ntialiased; display: block; content: "=EF=83=9A"; float: right; color: rgb(= 51, 51, 51); margin-top: 2px; margin-right: -10px; } [dir=3D"rtl"] .dropdown-submenu > a::after { float: left; content: "=EF=83= =99"; margin-right: 0px; margin-left: -10px; } .dropdown-submenu:hover > a::after { color: rgb(38, 38, 38); } .dropdown-submenu.pull-left { float: none; } .dropdown-submenu.pull-left > .dropdown-menu { left: -100%; margin-left: 10= px; } #notification_area { z-index: 10; float: right !important; } [dir=3D"rtl"] #notification_area { float: left !important; } .indicator_area { color: rgb(86, 86, 86); margin-left: 5px; margin-right: 5= px; z-index: 10; text-align: center; width: auto; float: right !important; = } [dir=3D"rtl"] .indicator_area { float: left !important; } #kernel_indicator { color: rgb(86, 86, 86); margin-left: 5px; margin-right:= 5px; z-index: 10; text-align: center; width: auto; border-left: 1px solid;= float: right !important; } #kernel_indicator .kernel_indicator_name { padding-left: 5px; padding-right= : 5px; } [dir=3D"rtl"] #kernel_indicator { border-left: 0px; border-right: 1px solid= ; float: left !important; } #modal_indicator { color: rgb(86, 86, 86); margin-left: 5px; margin-right: = 5px; z-index: 10; text-align: center; width: auto; float: right !important;= } [dir=3D"rtl"] #modal_indicator { float: left !important; } #readonly-indicator { color: rgb(86, 86, 86); z-index: 10; text-align: cent= er; width: auto; margin: 2px 0px 0px; display: none; float: right !importan= t; } .modal_indicator::before { width: 1.28571em; text-align: center; } .edit_mode .modal_indicator::before { display: inline-block; font-style: no= rmal; font-variant: normal; font-weight: normal; font-stretch: normal; line= -height: 1; font-family: FontAwesome; font-size: inherit; text-rendering: a= uto; -webkit-font-smoothing: antialiased; content: "=EF=81=80"; } .command_mode .modal_indicator::before { display: inline-block; font-style:= normal; font-variant: normal; font-weight: normal; font-stretch: normal; l= ine-height: 1; font-family: FontAwesome; font-size: inherit; text-rendering= : auto; -webkit-font-smoothing: antialiased; content: " "; } .kernel_idle_icon::before { display: inline-block; font-style: normal; font= -variant: normal; font-weight: normal; font-stretch: normal; line-height: 1= ; font-family: FontAwesome; font-size: inherit; text-rendering: auto; -webk= it-font-smoothing: antialiased; content: "=EF=84=8C"; } .kernel_busy_icon::before { display: inline-block; font-style: normal; font= -variant: normal; font-weight: normal; font-stretch: normal; line-height: 1= ; font-family: FontAwesome; font-size: inherit; text-rendering: auto; -webk= it-font-smoothing: antialiased; content: "=EF=84=91"; } .kernel_dead_icon::before { display: inline-block; font-style: normal; font= -variant: normal; font-weight: normal; font-stretch: normal; line-height: 1= ; font-family: FontAwesome; font-size: inherit; text-rendering: auto; -webk= it-font-smoothing: antialiased; content: "=EF=87=A2"; } .kernel_disconnected_icon::before { display: inline-block; font-style: norm= al; font-variant: normal; font-weight: normal; font-stretch: normal; line-h= eight: 1; font-family: FontAwesome; font-size: inherit; text-rendering: aut= o; -webkit-font-smoothing: antialiased; content: "=EF=84=A7"; } .notification_widget { z-index: 10; background: rgb(255, 255, 255); margin-= right: 4px; color: rgb(51, 51, 51); border-color: rgb(204, 204, 204); } .notification_widget:focus, .notification_widget.focus { color: rgb(51, 51,= 51); background-color: rgb(230, 230, 230); border-color: rgb(140, 140, 140= ); } .notification_widget:hover { color: rgb(51, 51, 51); background-color: rgb(= 230, 230, 230); border-color: rgb(173, 173, 173); } .notification_widget:active, .notification_widget.active, .open > .dropdown= -toggle.notification_widget { color: rgb(51, 51, 51); background-color: rgb= (230, 230, 230); background-image: none; border-color: rgb(173, 173, 173); = } .notification_widget:active:hover, .notification_widget.active:hover, .open= > .dropdown-toggle.notification_widget:hover, .notification_widget:active:= focus, .notification_widget.active:focus, .open > .dropdown-toggle.notifica= tion_widget:focus, .notification_widget:active.focus, .notification_widget.= active.focus, .open > .dropdown-toggle.notification_widget.focus { color: r= gb(51, 51, 51); background-color: rgb(212, 212, 212); border-color: rgb(140= , 140, 140); } .notification_widget.disabled:hover, .notification_widget[disabled]:hover, = fieldset[disabled] .notification_widget:hover, .notification_widget.disable= d:focus, .notification_widget[disabled]:focus, fieldset[disabled] .notifica= tion_widget:focus, .notification_widget.disabled.focus, .notification_widge= t[disabled].focus, fieldset[disabled] .notification_widget.focus { backgrou= nd-color: rgb(255, 255, 255); border-color: rgb(204, 204, 204); } .notification_widget .badge { color: rgb(255, 255, 255); background-color: = rgb(51, 51, 51); } .notification_widget.warning { color: rgb(255, 255, 255); background-color:= rgb(180, 97, 2); border-color: rgb(180, 97, 2); } .notification_widget.warning:focus, .notification_widget.warning.focus { co= lor: rgb(255, 255, 255); background-color: rgb(236, 151, 31); border-color:= rgb(152, 95, 13); } .notification_widget.warning:hover { color: rgb(255, 255, 255); background-= color: rgb(236, 151, 31); border-color: rgb(213, 133, 18); } .notification_widget.warning:active, .notification_widget.warning.active, .= open > .dropdown-toggle.notification_widget.warning { color: rgb(255, 255, = 255); background-color: rgb(236, 151, 31); background-image: none; border-c= olor: rgb(213, 133, 18); } .notification_widget.warning:active:hover, .notification_widget.warning.act= ive:hover, .open > .dropdown-toggle.notification_widget.warning:hover, .not= ification_widget.warning:active:focus, .notification_widget.warning.active:= focus, .open > .dropdown-toggle.notification_widget.warning:focus, .notific= ation_widget.warning:active.focus, .notification_widget.warning.active.focu= s, .open > .dropdown-toggle.notification_widget.warning.focus { color: rgb(= 255, 255, 255); background-color: rgb(213, 133, 18); border-color: rgb(152,= 95, 13); } .notification_widget.warning.disabled:hover, .notification_widget.warning[d= isabled]:hover, fieldset[disabled] .notification_widget.warning:hover, .not= ification_widget.warning.disabled:focus, .notification_widget.warning[disab= led]:focus, fieldset[disabled] .notification_widget.warning:focus, .notific= ation_widget.warning.disabled.focus, .notification_widget.warning[disabled]= .focus, fieldset[disabled] .notification_widget.warning.focus { background-= color: rgb(240, 173, 78); border-color: rgb(238, 162, 54); } .notification_widget.warning .badge { color: rgb(240, 173, 78); background-= color: rgb(255, 255, 255); } .notification_widget.success { color: rgb(255, 255, 255); background-color:= rgb(92, 184, 92); border-color: rgb(76, 174, 76); } .notification_widget.success:focus, .notification_widget.success.focus { co= lor: rgb(255, 255, 255); background-color: rgb(68, 157, 68); border-color: = rgb(37, 86, 37); } .notification_widget.success:hover { color: rgb(255, 255, 255); background-= color: rgb(68, 157, 68); border-color: rgb(57, 132, 57); } .notification_widget.success:active, .notification_widget.success.active, .= open > .dropdown-toggle.notification_widget.success { color: rgb(255, 255, = 255); background-color: rgb(68, 157, 68); background-image: none; border-co= lor: rgb(57, 132, 57); } .notification_widget.success:active:hover, .notification_widget.success.act= ive:hover, .open > .dropdown-toggle.notification_widget.success:hover, .not= ification_widget.success:active:focus, .notification_widget.success.active:= focus, .open > .dropdown-toggle.notification_widget.success:focus, .notific= ation_widget.success:active.focus, .notification_widget.success.active.focu= s, .open > .dropdown-toggle.notification_widget.success.focus { color: rgb(= 255, 255, 255); background-color: rgb(57, 132, 57); border-color: rgb(37, 8= 6, 37); } .notification_widget.success.disabled:hover, .notification_widget.success[d= isabled]:hover, fieldset[disabled] .notification_widget.success:hover, .not= ification_widget.success.disabled:focus, .notification_widget.success[disab= led]:focus, fieldset[disabled] .notification_widget.success:focus, .notific= ation_widget.success.disabled.focus, .notification_widget.success[disabled]= .focus, fieldset[disabled] .notification_widget.success.focus { background-= color: rgb(92, 184, 92); border-color: rgb(76, 174, 76); } .notification_widget.success .badge { color: rgb(92, 184, 92); background-c= olor: rgb(255, 255, 255); } .notification_widget.info { color: rgb(255, 255, 255); background-color: rg= b(91, 192, 222); border-color: rgb(70, 184, 218); } .notification_widget.info:focus, .notification_widget.info.focus { color: r= gb(255, 255, 255); background-color: rgb(49, 176, 213); border-color: rgb(2= 7, 109, 133); } .notification_widget.info:hover { color: rgb(255, 255, 255); background-col= or: rgb(49, 176, 213); border-color: rgb(38, 154, 188); } .notification_widget.info:active, .notification_widget.info.active, .open >= .dropdown-toggle.notification_widget.info { color: rgb(255, 255, 255); bac= kground-color: rgb(49, 176, 213); background-image: none; border-color: rgb= (38, 154, 188); } .notification_widget.info:active:hover, .notification_widget.info.active:ho= ver, .open > .dropdown-toggle.notification_widget.info:hover, .notification= _widget.info:active:focus, .notification_widget.info.active:focus, .open > = .dropdown-toggle.notification_widget.info:focus, .notification_widget.info:= active.focus, .notification_widget.info.active.focus, .open > .dropdown-tog= gle.notification_widget.info.focus { color: rgb(255, 255, 255); background-= color: rgb(38, 154, 188); border-color: rgb(27, 109, 133); } .notification_widget.info.disabled:hover, .notification_widget.info[disable= d]:hover, fieldset[disabled] .notification_widget.info:hover, .notification= _widget.info.disabled:focus, .notification_widget.info[disabled]:focus, fie= ldset[disabled] .notification_widget.info:focus, .notification_widget.info.= disabled.focus, .notification_widget.info[disabled].focus, fieldset[disable= d] .notification_widget.info.focus { background-color: rgb(91, 192, 222); b= order-color: rgb(70, 184, 218); } .notification_widget.info .badge { color: rgb(91, 192, 222); background-col= or: rgb(255, 255, 255); } .notification_widget.danger { color: rgb(255, 255, 255); background-color: = rgb(223, 4, 4); border-color: rgb(223, 4, 4); } .notification_widget.danger:focus, .notification_widget.danger.focus { colo= r: rgb(255, 255, 255); background-color: rgb(201, 48, 44); border-color: rg= b(118, 28, 25); } .notification_widget.danger:hover { color: rgb(255, 255, 255); background-c= olor: rgb(201, 48, 44); border-color: rgb(172, 41, 37); } .notification_widget.danger:active, .notification_widget.danger.active, .op= en > .dropdown-toggle.notification_widget.danger { color: rgb(255, 255, 255= ); background-color: rgb(201, 48, 44); background-image: none; border-color= : rgb(172, 41, 37); } .notification_widget.danger:active:hover, .notification_widget.danger.activ= e:hover, .open > .dropdown-toggle.notification_widget.danger:hover, .notifi= cation_widget.danger:active:focus, .notification_widget.danger.active:focus= , .open > .dropdown-toggle.notification_widget.danger:focus, .notification_= widget.danger:active.focus, .notification_widget.danger.active.focus, .open= > .dropdown-toggle.notification_widget.danger.focus { color: rgb(255, 255,= 255); background-color: rgb(172, 41, 37); border-color: rgb(118, 28, 25); = } .notification_widget.danger.disabled:hover, .notification_widget.danger[dis= abled]:hover, fieldset[disabled] .notification_widget.danger:hover, .notifi= cation_widget.danger.disabled:focus, .notification_widget.danger[disabled]:= focus, fieldset[disabled] .notification_widget.danger:focus, .notification_= widget.danger.disabled.focus, .notification_widget.danger[disabled].focus, = fieldset[disabled] .notification_widget.danger.focus { background-color: rg= b(217, 83, 79); border-color: rgb(212, 63, 58); } .notification_widget.danger .badge { color: rgb(217, 83, 79); background-co= lor: rgb(255, 255, 255); } div#pager { background-color: rgb(255, 255, 255); font-size: 14px; line-hei= ght: 20px; overflow: hidden; display: none; position: fixed; bottom: 0px; w= idth: 100%; max-height: 50%; padding-top: 8px; box-shadow: rgba(87, 87, 87,= 0.2) 0px 0px 12px 1px; z-index: 100; top: auto !important; } div#pager pre { line-height: 1.21429em; color: rgb(0, 0, 0); background-col= or: rgb(247, 247, 247); padding: 0.4em; } div#pager #pager-button-area { position: absolute; top: 8px; right: 20px; } div#pager #pager-button-area .ui-button { padding: 0px 10px; } div#pager #pager-contents { position: relative; overflow: auto; width: 100%= ; height: 100%; } div#pager #pager-contents #pager-container { position: relative; padding: 1= 5px 0px; box-sizing: border-box; } div#pager .ui-resizable-handle { top: 0px; height: 8px; background: rgb(247= , 247, 247); border-top: 1px solid rgb(207, 207, 207); border-bottom: 1px s= olid rgb(207, 207, 207); } div#pager .ui-resizable-handle::after { content: ""; top: 2px; left: 50%; h= eight: 3px; width: 30px; margin-left: -15px; position: absolute; border-top= : 1px solid rgb(207, 207, 207); } .quickhelp { -webkit-box-orient: horizontal; -webkit-box-align: stretch; di= splay: flex; flex-direction: row; align-items: stretch; line-height: 1.8em;= } .shortcut_key { display: inline-block; width: 21ex; text-align: right; font= -family: monospace; } .shortcut_descr { display: inline-block; -webkit-box-flex: 1; flex: 1 1 0%;= } span.save_widget { height: 30px; margin-top: 4px; display: flex; justify-co= ntent: flex-start; align-items: baseline; width: 50%; flex: 1 1 0%; } span.save_widget span.filename { height: 100%; line-height: 1em; margin-lef= t: 16px; border: none; font-size: 146.5%; text-overflow: ellipsis; overflow= : hidden; white-space: nowrap; border-radius: 2px; } span.save_widget span.filename:hover { background-color: rgb(230, 230, 230)= ; } [dir=3D"rtl"] span.save_widget.pull-left { float: right !important; } [dir=3D"rtl"] span.save_widget span.filename { margin-left: 0px; margin-rig= ht: 16px; } span.checkpoint_status, span.autosave_status { font-size: small; white-spac= e: nowrap; padding: 0px 5px; } @media (max-width: 767px) { span.save_widget { font-size: small; padding: 0px 0px 0px 5px; } span.checkpoint_status, span.autosave_status { display: none; } } @media (max-width: 991px) and (min-width: 768px) { span.checkpoint_status { display: none; } span.autosave_status { font-size: x-small; } } .toolbar { padding: 0px; margin-left: -5px; margin-top: 2px; margin-bottom:= 5px; box-sizing: border-box; } .toolbar select, .toolbar label { width: auto; vertical-align: middle; marg= in-bottom: 0px; display: inline; font-size: 92%; margin-left: 0.3em; margin= -right: 0.3em; padding: 3px 0px 0px; } .toolbar .btn { padding: 2px 8px; } .toolbar .btn-group { margin-top: 0px; margin-left: 5px; } .toolbar-btn-label { margin-left: 6px; } #maintoolbar { margin-bottom: -3px; margin-top: -8px; border: 0px; min-heig= ht: 27px; margin-left: 0px; padding-top: 11px; padding-bottom: 3px; } #maintoolbar .navbar-text { float: none; vertical-align: middle; text-align= : right; margin-left: 5px; margin-right: 0px; margin-top: 0px; } .select-xs { height: 24px; } [dir=3D"rtl"] .btn-group > .btn, .btn-group-vertical > .btn { float: right;= } .pulse, .dropdown-menu > li > a.pulse, li.pulse > a.dropdown-toggle, li.pul= se.open > a.dropdown-toggle { background-color: rgb(243, 118, 38); color: w= hite; } @-webkit-keyframes fadeOut {=20 0% { opacity: 1; } 100% { opacity: 0; } } @-webkit-keyframes fadeIn {=20 0% { opacity: 0; } 100% { opacity: 1; } } .bigtooltip { overflow: auto; height: 200px; transition-property: height; t= ransition-duration: 500ms; } .smalltooltip { transition-property: height; transition-duration: 500ms; te= xt-overflow: ellipsis; overflow: hidden; height: 85px; } .tooltipbuttons { position: absolute; padding-right: 15px; top: 0px; right:= 0px; } .tooltipbuttons .ui-button { padding: 0px 10px; } .tooltiptext { padding-right: 30px; padding-top: 5px; } .ipython_tooltip { max-width: 700px; animation: 400ms ease 0s 1 normal none= running fadeIn; vertical-align: middle; background-color: rgb(247, 247, 24= 7); overflow: visible; border: 1px solid rgb(171, 171, 171); outline: none;= padding: 3px 3px 3px 7px; margin: 0px; font-family: monospace; min-height:= 50px; box-shadow: rgb(173, 173, 173) 0px 6px 10px -1px; border-radius: 2px= ; position: absolute; z-index: 1000; } .ipython_tooltip a { float: right; } .ipython_tooltip .tooltiptext pre { border: 0px; border-radius: 0px; font-s= ize: 100%; background-color: rgb(247, 247, 247); } .pretooltiparrow { left: 0px; margin: 0px; top: -16px; width: 40px; height:= 16px; overflow: hidden; position: absolute; } .pretooltiparrow::before { background-color: rgb(247, 247, 247); border: 1p= x solid rgb(171, 171, 171); z-index: 11; content: ""; position: absolute; l= eft: 15px; top: 10px; width: 25px; height: 25px; transform: rotate(45deg); = } div.typeahead__container { font: revert; } ul.typeahead__list i { width: 18px; } ul.typeahead__list { max-height: 80vh; overflow: auto; } ul.typeahead__list > li > a { white-space: normal; } ul.typeahead__list > li > a.pull-right { float: left !important; } [dir=3D"rtl"] .typeahead__list { text-align: right; } .cmd-palette .modal-body { padding: 7px; } .cmd-palette form { background: white; } .cmd-palette input { outline: none; } .no-shortcut { min-width: 20px; color: transparent; } [dir=3D"rtl"] .no-shortcut.pull-right { float: left !important; } [dir=3D"rtl"] .command-shortcut.pull-right { float: left !important; } .command-shortcut::before { content: "(command mode)"; padding-right: 3px; = color: rgb(119, 119, 119); } .edit-shortcut::before { content: "(edit)"; padding-right: 3px; color: rgb(= 119, 119, 119); } [dir=3D"rtl"] .edit-shortcut.pull-right { float: left !important; } #find-and-replace #replace-preview .match, #find-and-replace #replace-previ= ew .insert { background-color: rgb(187, 222, 251); border-color: rgb(144, 2= 02, 249); border-style: solid; border-width: 1px; border-radius: 0px; } [dir=3D"ltr"] #find-and-replace .input-group-btn + .form-control { border-l= eft: none; } [dir=3D"rtl"] #find-and-replace .input-group-btn + .form-control { border-r= ight: none; } #find-and-replace #replace-preview .replace .match { background-color: rgb(= 255, 205, 210); border-color: rgb(239, 154, 154); border-radius: 0px; } #find-and-replace #replace-preview .replace .insert { background-color: rgb= (200, 230, 201); border-color: rgb(165, 214, 167); border-radius: 0px; } #find-and-replace #replace-preview { max-height: 60vh; overflow: auto; } #find-and-replace #replace-preview pre { padding: 5px 10px; } .terminal-app { background: rgb(238, 238, 238); } .terminal-app #header { background: rgb(255, 255, 255); box-shadow: rgba(87= , 87, 87, 0.2) 0px 0px 12px 1px; } .terminal-app .terminal { width: 100%; float: left; font-family: monospace;= color: white; background: black; padding: 0.4em; border-radius: 2px; box-s= hadow: rgba(87, 87, 87, 0.4) 0px 0px 12px 1px; line-height: 1em; font-size:= 14px; } .terminal-app .terminal .xterm-rows { padding: 10px; } .terminal-app .terminal-cursor { color: black; background: white; } .terminal-app .terminado-container-container { padding-top: 20px; height: 1= 00%; } .terminal-app #terminado-container { height: 100%; } .btn-danger { color: rgb(255, 255, 255); background-color: rgb(223, 4, 4); = border-color: rgb(223, 4, 4); } .btn-warning { color: rgb(255, 255, 255); background-color: rgb(180, 97, 2)= ; border-color: rgb(180, 97, 2); } .close { float: right; font-size: 19.5px; font-weight: bold; line-height: 1= ; color: rgb(0, 0, 0); text-shadow: rgb(255, 255, 255) 0px 1px 0px; opacity= : 0.6; } .close:hover, .close:focus { color: rgb(0, 0, 0); text-decoration: none; cu= rsor: pointer; opacity: 1; } button.close { padding: 0px; cursor: pointer; background: transparent; bord= er: 0px; appearance: none; } .navbar-nav > li > a { color: rgb(86, 86, 86); } .navbar-nav > li > a:focus { outline: -webkit-focus-ring-color auto 5px; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: http://localhost:8888/static/notebook/css/override.css?v=e6f18013b8771987812e992b38ec3318 @charset "utf-8"; #ipython-main-app { position: relative; } ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: text/css Content-Transfer-Encoding: quoted-printable Content-Location: http://localhost:8888/custom/custom.css @charset "utf-8"; =0A ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: image/png Content-Transfer-Encoding: base64 Content-Location: http://localhost:8888/static/base/images/logo.png?v=641991992878ee24c6f3826e81054a0f iVBORw0KGgoAAAANSUhEUgAAANAAAAA4CAYAAACMs3abAAAAAXNSR0IArs4c6QAAFtxJREFUeAHt nQt4VEWWgO/tTiBJdxSUp7oCorxBhfGB4iijo4zDEEVhRGFhv/j+Bldd1yQ8JCMwCSM4CO6AwkhE ARdR1HFwnJ1dYUBRZgBRESKgvMUhgpA3Sfruf9q+N3Vvujsd0iHB3Pq+m6o6derUqXPrVJ06VX2j a00oZGdnJ5WWlqZrmt5f04xduq7Py83NPdqEWHRZcSVgk4BuyzViZs6cOS0PHDiw2jC0KxU2Dqak JA9AsQ4pMDfpSqDJSMDTVDg5ePDgWIfyCGvnsCJlNxUeXT5cCTgl0GQUKBDQLnUy931e/1F4uAt1 JdD4EmgQBTKe6ucznh6YXJfueTza7vD4xp7wcBfqSqDxJZAgLLDH8B89fvznusfzzeyZM1fHypaR 2bd1iX7iGkyvQTxX65pxvqZrbYoKypI0rUwryuxeohlagaEbu9lsva97tLUpZ+rr9Iz8QmcbOAxe wHHwEPBzzDJgJwzDO8PMu7ErgaYmAf2xxx5rV1FZuRnGggOXgT6b8Eg0RkuzelxbZRgPoBzDDc1I jIbrLIN+KUr23x5v4ryU6Vs3qOUTJ07sVFFRNVXXtQEo01cej2d6Tk7OehXHTbsSaEoS0B955JEJ AcOYrjBVkZyU1D6c+7g0q9c1VUblXFabixX8k0/q+nqPpo/35W7fePJE3JqnowRGjBjRZfny5bux MozTkX+TZzHhys1MKE6oqKjwqrDC7H7t9LLymZWByjEqvN5pwxiIebehMLP7fH9S8kQ9++Pv6k3T JdAkJcA2IWHz5s2/MAzjpzD40/Ly8gvvu+++FqQrmiTDMTLlSUpKymMW+MLC1/XZs2bNKjDzxZm9 LtXLyjbR8fgqT6gBVjOPZhgPFpWWbijL6tHNbNeNf1gS+OSTT9oyhl6nVw/wXPhD6Z2HPca3CV5v f83rHaInJFz1zO9+96jZuZLMnrcaWtU6Bvm5JqzhYuOiCsP4sGhCt+sbrg2XsiuB+Eog6IWbOXNm MWTfVUkXZ3W7JWBUrQiuEGqBI61r+iGM2J2Ysrs0w/MtJlkxToAiHAxi3Poo9+MQaEP6Qt0wuhK3 c5CozhpGay2gryrM7HFTau721dUFbsqVQNOUQFCBnKyVZPW6IhCoXMpgr3FOhHJs0Qz9XRRjXUqy 9309e+sRZ/1oeSPr0ralRtkgHBeDDD0wBEXrpeKzzGMXGyvLJ/W5quW0z7apZW7alUBTkwBeZXso zu5+TqDM+JiB3dYsQWkOgLjAm6C/kjQtP9+ExyMunNCzj2ZUjdID2t3q6sS+bI/P8F+sz9h4LB7t /FBpMOHoo0ePTl2yZMnxptzH4cOHd6ysrDyo8tihQ4cWzz//fNycCOKo4KlU22iItMjc9B7WUKDC jG6v0ejwYMM4F1hpcnxdfEv0+zbGraPhOmVkX5dUUn5oLMxl8nT+Hkd/LnVG/v3h8OsLu+WWWx6H huVt5Mzppddff31/OLoiMPCnqmXAfv/WW2/ZBoRarqbT0tLuBP8iE0Zba954443VZt4Zg/8gsM4m HNwM84UJjMF4dVVVVTrJG3g6QFvO4srB+ZL4TfJ58BZ1ohs2bNgIcLvzBAM8fUc7z5r5WGL4vIm2 LjNxaf/om2+++V9mHpmNCgQCPSVPmR9c2/kisOnAAia+GaNYU2NRLNrvS507oDGE+HyeNtCUQ/p9 PJvp0wu80/eAMTfXHpDJPdQJ7vfh+zgyfNqsRZmck06C1rW014347/T1KpsJV5zRPS2gGcNRmmIO O6f6uvifbmjFMRnUs1eXkX4ORXqxqPxQlh4IZGDK3Vua0e3l5BlfrDPx4hUjhKk8mIvfB9LSxn4z r8YjR470UD5RhSHoleRjUiDw7uK52awPrSdJrzbzYeLbwRlswmlf8ItGjRrVvqSk5GVm8hvMMiVu SR0ZrPI8xuCadf7550+ZO3eu85jCrNKKhDUpMGA0zmb+/Oqrr+40EWKInwJHBnEw0P48My0xNH9J lCZpyiSyBWA2mZqFXCCeQbrCzDtj+Oxw4sSJ2dQX+rYALBWAbAt6McnchRz+ftttt93x2muvyeQS NaAUY+D5mhDSYeKgAqE88v6e4/Ep/ZB2qvc4xvIRXkPXZmOubfYman39ufkzTpXyCCNmEEVKzdk+ JdGT2B8/xBdVmv6MWdaM4lJHX/28xEuLi4s/5gWGUx4HupYAXsbevXvfZrAlOwtD+VeIi9UyBmXM RxXw0502LOUROkwqeSq9hkiLHODzM9quoTwR2ruMCWcTq+HlEcotMDQteaBMXEdD+9PSfkGUx+Pj qREsJ0Hppk9vYZ5Y70s656rkaflf1cA8xYCWOVs/95+lYR4YX8vVoVPcfGM3Z1MgBkwnXqiseB2E MdIneFaRlBXkAdK/If6ExxYYEDdwYLnMBgxlME/E1BElsgL4o61MLQmUZaSKAg/bMAE3OGBbgf9N HuAfqmWSBr7WLFdjr9db5cSVfMhk+1/4PFspXwcvv+Tp0rJly1bQ6U1aTMW9Jg74Z/KslH2YCQsX U9dSIMqTUNZU6r1IOiEcvsCsAu60tfUl3Tlaz86uYZNGqtzQcLl0amT3Hl5SHrwBsaah22tC9G1m Fy/xJXjrJPzxkv+UkJDwCCbJDge/E3nhw4At5GmrlKUx+45jcOcpsGASWgugna7AL5D9FfuG9xVY 2CT1RqgF0MpT85Jmj2CZaOGcCO3bt78+lr2O0Lr33nsTv/nmmyUkW0teAoryxMqVK6fRtmofHqPo c/qcB4+yH/yx4BKfg0mXS3Ks5CMES+7gJ0L3IWKzvW+ok52YmPjB2WefvfPw4cMcz4RMOJD0lP79 FjQl5TE7iJv8REpn/2Iz30xipyfpIuk3L3Qxg3JoGOUJioVV5S1esOydjgYBoT+839/IAFRhkobW R9D8VIUzyGo149BTm/kGjSoGsyh5gwWU53H6YZmMtDmfSYGLxzblsdqn7LuUlJTbAKiyGH3rrbd2 s5BqJmwrH+1NFhTaeI9VsTfinY/sP0HpS1Dcf0pZ0IQTJvSRr9oqS2FTCY2xF2vMvvM+nAokL3FD ixYt7qmNL16wmE3BF2/iMhA6Hjp0yGZymWXgLjDTEoM7cvz48S1VWJi0bfWh/F1Wra/D4MUFxD6u BXyNN4nBcyGyeMLMR4qXLVtWAK6l2NDw4CQQh0Ck4NQBkcNhFHEUCvNtuEpBBQpX4MIaTwK8aOeL FGaewkN2IhauGFwvgCcmhxUYSGEViMHxMkjiATVD63379g01MxFimwLBb14EvLiA2cfJsUp7kxh9 eQZZiJes1oC5+wcHkpi5YQN0a2xfgE1GEW2yVCu7CqRKo4mkGZCqTS9cFbBfeDNW9hhcpbz4OQ58 fvSIn9URli5dKibOChXMLD1GzavpkAnUT4Ed7dSp01tKPu5J+nKjSpR+vK3mo6X79u37GfWtCYm6 fSKtsPTbJnepxwTzWjT6lhMhGpJb1rgS4EVuinWzbXLKQFlnpiUmf9btt9/eheSXKjyUFjPO8sDR 3s0oytnhzBYGmW31AXdZlLOmME3VHQTvg8xatFfK+dbH3Dioy+QvK4gchEpI2L9//wXE24K56H82 iBkYDcVVoGjSaSJlDKBddWUF0+VLzj9s1ci3BVBDgdgc/w0X8Re0E9xgEyeiKHLO8nsbATKU2RSI /CInTjzz4vxg/xZ0oghd2kves2dPGc9JN0PfTM9aVBq0tTsqAoV10eLaaLnlDScBywSJtQmcCQfA tdyyoXrq+YmTlNOZUMOMC5lvFysVt6J8/1DycU8WFhaeFXeiMRJktat1n+UqUIzCPN3QePlizx9X +QZmX5KUQhwPL1JeoYCu5AqMNfMLPIz5lqfgN0iSQ+SYVou6NM7qfCRG/FonLleBYpSkE41zjyYv OxTiTJVvWI5oz4tXC5PlDRUfk8/aFwmccst8g3YVSicevAYNtFmkNkC7Ys6eUZ9nxYoV+SrN+qTd PVAM0uPjFwFOtvkJk2EpDelo5lAMVCOjMEj47WG1Q4hsnd9T6OS/hdoKh4ERFUjwKF/AQaqlJIDk zGSKlHEWcyHuZNV8k4unh6SsIcMZZ5xRcOSIbcFoh9lYWJ82kWd9qtvqWgPCBnUzNgnIeAbg/OCJ dS5hQw6fqQuuzPTV2gM9sh3Dk40MRRFsX3SlD0eYCPZFrqFpHIb+FbzdJg7tdmXiuETyfGgmzYSH 4jxHvkGyeXl5ckZlKSo8pcJT5wZp7CSIugoUu9COqqjsB85V85HSIXerXK8/6cCg7s8K4K0LAepw OdgW1gCzKaatlEyofKEDLtdhZP9j0QPvCOZbnc5+WN1qtM3+JqY+0d5qB09DHflGy7oKFKPomfl2 OFCHO/Jhs1u2bLmRuslqIQMi4mZexTPT1P8X9iMxDxqUTb6Ao5piohx/NulFi6m3CFxr84ziDJMz IWADzXrgLMV8i+lWhFmHuFRJB5P8PCMmM5i231Xr0v7D4e72qTinKu0qUIyS5iWuU1F5iQPwUvVW Yc70uHHjkhiAs5xw8nVSIKkPnWl33XWXbJ5rDczsM+EvVUE8zCVT606YAq+RZH9xEOAqpaAfbd8N PXW1kKtCdQ1FyNB2VYZJ4cJYiLRq1eoV8KzrNPDSlculT8ZSt6FxXAWKUcKYIO84URkAz0aaCeW3 JEePHn2Hl13DfAMWdRfLQKtRTp0+RUVFb9BeipMPNU+7U8D9VxUGuVlyvUeF1ZJeoJZD7wkzD62P UbLNZj7WmPb5GrTxpYofy81vwZd9EO3OUOtCK5O9EBZynW4kqCTikg56d2BGL8rqeW1T/ZQUXy79 SWpu/v/FpcchIvS5hk0ejT4b7E2c1q+m2nUmnqSZCT8APgVv0ZquXbuWbt269QI23EMpk+v3wc0/ L/8V0nco9aJOXODaeKM+H9k35EbyYNrbgZJM5sdjyxmUQRcvcPlmwyDoTyJ9o9mOxNRdy35lpgqr LQ3+KjxuchBr7vNUpXXukWojZ5XDy3r4U1eddGS3F4RF3PU7xIRzHmkv/dppVQol+HnCbPo4RO0f K+MUvnY6FHnMTE1NXRXuwypiJaCow6iXhht/AteT4jqOggpEx4yijO4XF2X16OTP2f6ik/nGzBdm 9Bgv7MWbB/os3zmoE1nqPEad96lkXfcnL96uPx07dkzbtGlTJemgTE3C1HmJ52nwLAXiRVr1Tbxa 4hco78MjF0LlTtcfGOALGXx7yB9nYJ1P3CoMjR0owyiZ/cOURQQJPjQXMUAnOZCK/X5/TKago14w C4+LSIxRy4D9mvyvua4jLwNR6SuIbfs3wQdusBe7E55WUedygUkgPYBoGatzAHl8RVp+diB7zjby MJklEgcDuD8mEVcFsmZCX3KrRUbAmFuU0WMWH/awDYJQ+6c0Mub8rCVfCHpe0wOTfS07Lotn4whS zllsfcREE3dp1MAsuJHBfzcvsyICoo0mOPO4+HgP8XcqPm2fqeZrS9Neuc/nu5V4vYIrfehMvh9x OOVZQ58GogyyktQ50NZSZyWBhZvlnXiR8ph+7yE/mQzChaDZGk02crmVCeE6+FgMAdvsRz2ZELvy XM7Tl6cjj6U80iD5QeEarg/MUiA9+6PjHl2bYWiBR4tKD64tyuh9cX0I16eufNix+MCuD6HB4PM8 GfpiT31I2uryUXOZoWz7DJb5YhtShAxK9DIDczAv8R8RUGS2FEW7nQHzYOimslOBYnIGqPTlVjCD 5xroToD+P9UyR3or+VH82nRwuNvUDtyI2bZt2+6hHdvKRdtzIlaIseCSSy65B7rTQS8PV4WyqLJh Qiilb2O5jvMjcFdCoyQcHRUG3kby2fD/Hyo8HmnbjJnSxf/b4i8LR6HaV3J0trE4s9s83ZucmzJ9 y0nNYnVlsDSzR+cqzZjMV1H/DR7ot/aRL+kObgRn15VUVPyCgoKznAgMzpjNxNA3Ay7jtL8/iidm lewV5Ltse0lv5AXbNtny82Jcy9Yq0bp160grWJAt6NhuIpi8hkyxHDbOT2H7X09bPUBtR7kMooP0 YS04wf0DcLPaScX85n8E9C3PG/T+gkJ+dlLElErwHiA7CXk8i7fwZ6Q7SzFtHWOAb8NbuFbytQXZ k4IzXH7bw88Trsa0u4B8O+gkwav8EvWwxLyfrbwP8SzWGthXjkeGj5qI8FKrq76GlEuyegwMGAH5 oHxwdYIJiBhLdc3zbEP8Hx86rJdO6jkwUBX4FYvySBQn+NL4Nh2DTB/gn7H9U7ND8Yqxla+gXVnh zFCJ8HwMvloFZlZoyJhN8XPQv9dsg4H1DEr4sJlv6Fg8fTgr8pHReWZb8DAYHlabeTf+XgK2FUhA KTnb1/Nx93/n5GGu5BFiC6JxmHbjCjO77cTwWZ4Q8L6blNx+w8maVvI/VIu+Lb8C7R1SnNVjJG10 krZswWOk+3Py4648oTYuUdtiktjeVJRH5aux0mzoM2nbUh7SUb+k2lh8NoV2ayiQMIU7+9mizG6d WYXsNqPB/3UxtAmVWtWE4rKvT+Be3sjlkM9Rs52Gl8/KBrQCr+4trkrgvzNUGbpX1/z8hwefoXnb 8jUHNnhaVxSwT/G35ZeimQmsNmGDR9ef8OXkn7S3JyxRO/Dn9qwm5oAbkACrs/wTrCxFGAarz+NK 3k0qEgirQFLOAP5P3No+Bvr9Cr6VDK1MA1GCgUFg1ffqwL+A1LSQIVS9A61Ct0IhktaEijHdfuvL zZ9qosc7xj07AN5vVumyAi1R8801jek4GNksp//WuEA2eZhuG5qrTGrrt+WFcyIiOIPDywcY0A9j alXrghMxTnnZ87DypPtn5GfEiWQNMgwQ2Rj/kSe4zxIE+rmLzfH/1EBuZgAmlnS6/EeeJLPryGY/ j7WpNuFuXC0Ba6apBtlTDOhnijJ7bONf2D/PwOtkL41XTt/h9XjTk3M+XxsvikIHj08Ch5t9MUF6 w/sYHrnYaTXB4JAPAqYTVwOt0uaRwJN4JZ4qPJ8B56osXrGhTC42F3zzkErsvYy4Aqkk/Lnb/+JL 8vfCM5rDYIubp4qVrZT/0j3Zf+4FfeOtPMI/12p8RJsYHC+J8qh9oh/yA7nHGSBrVHhzSrPqjOY+ n1yvsSkPMihHedKQzZbmJI+T6WtMCiSE9eyNJf7cLyZ4Nb277FNwBtT6wYVIDDF4v8Z2mupJSL7I NyN/mv7QO2EP1SLVjxWOZ+0YuEed+LS/B9hNHHQ+7SxrZnn1ZkOw68hmtxwUN+eJpS5jwGbCLVy4 sFNVZdW04GytB/8/y3oEmsnJ/S6TaHLu9t2kM/jo++Sisso0vHLX899Qr8EI6okdxKJSM7By4UPQ 5QN3mGiBv6a07Pg2LnC8DQ0fZEDQH/kwhdzoXUe8lIuLL9f1O2sNz2l1C8z+G1g11Z8jyEl63APO gV143eS8pzuykX3uUu66/ao+13XizmQTJ2gN+EXzFnU+oZ/4AGF2VHlGsMUJiQkD0tPT81W4M21k 9m1dbFScZ3iNNqhLG1zYBp7sAs2jF/irUvY11r9qlC/LMCAr+a9nBxv6A4BOmZwOecy4h3nnSZzA v8SKfUpunJwOcomVR0uB5s+fv5TVZFTYirq2+v777x8ctswFuhJoxhKo3gMZ2pCIcjC0QYsXL5YN uRtcCbgSUCRQrUCK/18pN5PyLwOt8wET6MauBJq7BCwFYq/zYURh6NqOsWPHyg+V3OBKwJWAIgFL gfCfPQE8rGcM5Zqo1HGTrgRcCYQkYCkQrup1Hq9nGGc8e0zpkD6MYo2h7FUT5sauBFwJVEvA8sKZ IPY6OudB8kMtLx/K2DZy5MgGvwdntu3GrgRONwn8P/bAJ2+7POJyAAAAAElFTkSuQmCC ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj---- Content-Type: image/png Content-Transfer-Encoding: base64 Content-Location: http://localhost:8888/kernelspecs/python3/logo-64x64.png iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAAAbmAAAG5gFFAfPZAAAAB3RJTUUH3gwMFiIaKb3l3gAACBFJREFUeNrtW31sVWcZ/z23pSKt CYqXjW3R4DqEdpNVgzaKAXUE3ew2xRLHRKMuk3WajbQ6DW65M4jgGIiLZP5lxGmyofhBl8lWsMBW KBPWdC4zHRAj8lFoN6al68c9z88/7rnnnnPvOee+5/Z2O8a+bdP3vufet+f5Pc/v+TpvgakxNabG //OQydz85p90XDY+xuUk5wNIUpkkOZtkEqqzSU4nOUhiQKEDCYuDCgworAFR7R2aNv3Jo6mm4f8p AJpTL1UN1/S3KbEC1AaQQhLZHzhzLVzT3DV7bVjJXemE1da9YVV/7AG4aev+BbD0NySvR56QXuEL BPV5n+uzyguk9bVDD32pPbYAND/xRMXwP5N/B1nLPC0bCVnwvoLPjhPaePih1cfKCUCiXBsNn0re 5hZeiQNQ3CLUW0gccAsJHzAM1qZB8aulqV9MLycAleXaiMpPwhGeF6tGRj6z23ZgTandHW9UJE6D nOlvCcZrdcP/TtwAoD12FgBgDkEABIhdu13ee3eqaRjkrkINI0Tr8LcExYdjSQFSk9kbBazFIMV1 UUguDtJwNFpYC2NJASEqNae9ecs3PPVg5Y/atwLAyA/a1xKcB9tC3F9AJAoAirfFEgDNi+tK3D+a ltaMRXBGqIZdYHgA8rMEEPF0gv5mO6O4k0Ow1vPsxfYv8QQgnMOYaAj0WEtMLUB3EjwMAqKEAlBb i2BWewQVUBD25CMErw8X3AfcOALw9Lobfxj1Mx/9zuMbYQNgnA+ovjUA3PRw5yeo2qDUBSCvAinM 3kwm+QGhoNraZUbTtGjfswVQ7fBPQAmLOk+K5gPeNcfi+ltboViWd5uXkGAPVP6Ky9+xRySlEwag acu+JVTZqKqNICEej4wAhwav1xY6/ouusCcl+ANX8XIdBMsLuYjPAwqcfe0Znv3W7TLnkQslJ0JN WzpbVKWTZOPEkheftYJ8ACEUgCH3s9ZnAdBlsPQwz7VVlwRA08P7VqjiERNuolxrQfmAiefPCk51 gWC9D+mhByMDcOvWv8wkEjtATZjk7xMscIzADdd6geCu1+l7+I875kYCwFL5MqkzvAmIqTZR1nwg 1PQdITVPaIcGALUSSH8hEgBKfMMvAfHwFZNBi0KAfMZFW0szMwKGad+ei5oDcOPmve8ltc5IgEC+ locC/gYvRzPVl7XIK6iP4Llri3iq+e1GAKhILVzaKFnDUQocn7UQs3+ep9ZeCdUrHMHhIzg8oAhG E1cbAZBQrTXOy8tW4Jimutzf8+ia/UiMLc8J7RIcIdYAvcYoESJZSzv/fjMLHINw90ZC9A6euyuJ tGxyAHBif/5c7ejhXKs1o4CidvJjP6KGu1dILj22/e7jsPAoYL07hO8BlEhfY0YBYa1HHyVRoLS1 PFu8APApCL+v1TMaetb1vch/rdkO1c8FJD1FKOFvAZWFFsC5Hs3Bx6EV0zB4VIh2Jbp1RI8c+dlX BidUap+5+4PQ9K9Bne8x9ayZO/MAGkT0Aa+DrA51aPn5QM7Dj4G8v6u6bzNSKeX5lhqkqxvwQOss I0kty56kAWA2yEbQaoQ1Ph9Q8XDaM88HpYD/AHW2WTVIniB5RQlcv2Apb+jevKqXZ9uWYk3rNiiu RUITRVP57M3CRKshjs4jdME+rxr5AJInS3NyaOnevKqX59rWQ7gXwAeM2u6FMTvPkUVxdGEJkQ6Y +QDihER2aPp4149v/y37W1eDXGfI7ADzLWrKAdrXkD0VIM8aASAZCkQqcNLpigd4/tuXg7rN8Dla OGcjOTpTUNhlRAELOBEx9g8e2fLFPlBvBfFOI62jSP5uWuQUpYTrtaY7jSygSiteGUeaAMUTAgMo oGS3Ldsic5PP12oE7Yc6ukBKDKOm8rCRBexJffpVwudxNgILnJecHp1xt0Z9tGYFa7/A0Rns4/mb /L3M7Rwx7gfQ4mPGBY4y23mtit6t8RGGJYASBm5GWTsiNUQqx8Z2guw3a26qYbcmhMOBaWxEUPKt IzP6cG1XRyQAOjatfJ3AnSb5QGGSw4AbNIjZxUzZNPa7b0oSLSLQyF3hA+tX/EmATUXzAc/eNNRa EKcNQQkD1xPT5adSf3Bvyc8FDmxo/q5SP0vwdGA+oDbcWmJ4oiEoRSnhMcX/gPJ1qX/2ngk/Gera dNuTAK5afN+O94xbFQ1UzrFzxsy38IWSw5xaf0CCezL3rs6enrrASZzUaVhk5pbrtWOBQ6hAD/52 5cuycqf1ph6T45lv9oBcaFiaZo+7fE+u3rkRb+EoHwCn78oA4CtoIChDIC8FJjlgTuPZfUT3Sd3B VTE8IBGlNHXmNaDWRCpxFe+K6QkRg8ZEaWms6zpR7uPN5QXAvDQt5icswPojyFkAl3jDW3mPiJQP AFg5jU6syBkDWS/1+48DAF/82DIInnYH93ICUL6ToqoDZYn90N9JfedxR9zrnnsGwAsuCxiMJwBI d0V6UhMISnrUp6YadTGgO6YWgA7zfD4s88NKHvt40pG3d/GHIGjM3TEPxjIPAACebP45qHdG6+W5 3+eMIYA7IDIrc+YH0+x+3Tap77o3pk4QwDTci1F9P6hLojU4Cxx7DSAtect/xvmqtthmgjmKphLo O7YWYq0HdXqRXr3JlpcAuQ/1z24XKfdB2Un8rzGevPkyjI6sBvhVwD5wka/98NEL4S+RxmOysOt8 7GuBUDBe/tQsaLoOYB2gCzK/UQciCeAiBK9B0Q/weQgOoVIOyfznzmBqTI2pMTUmefwX5Mz8p5zV bn8AAAAASUVORK5CYII= ------MultipartBoundary--fhQW0axVwP17ObAylTmVYuMjRjmsDowUWxEgQyGbTj------