diff --git a/.eslintrc.js b/.eslintrc.js
new file mode 100644
index 0000000..b569baa
--- /dev/null
+++ b/.eslintrc.js
@@ -0,0 +1,25 @@
+module.exports = {
+ "parser": "babel-eslint",
+ "parserOptions": {
+ "sourceType": "module",
+ "ecmaVersion": 8
+ },
+ "extends": [
+ "eslint:recommended",
+ "plugin:react/recommended"
+ ],
+ "env": {
+ "browser": true,
+ "es6": true
+ },
+ "rules": {
+ "indent": ["error", 4, {
+ "SwitchCase": 0
+ }],
+ "no-trailing-spaces": "error",
+ "no-unused-vars": ["warn", {"args": "none"}],
+ "space-infix-ops": "error",
+ "space-in-parens": ["error", "never"],
+ "react/prop-types": "warn"
+ }
+};
\ No newline at end of file
diff --git a/package.json b/package.json
index 45d5f64..e1cd28b 100644
--- a/package.json
+++ b/package.json
@@ -9,15 +9,17 @@
"private": true,
"devDependencies": {
"babel-core": "6.26.0",
+ "babel-eslint": "^8.2.3",
"babel-loader": "7.1.2",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-3": "^6.24.1",
"copy-webpack-plugin": "4.2.1",
- "css-hot-loader": "1.3.3",
"css-loader": "0.28.7",
"dotenv": "^4.0.0",
+ "eslint": "^4.19.1",
+ "eslint-plugin-react": "^7.9.1",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.5",
"git-describe": "^4.0.2",
diff --git a/src/actions/index.js b/src/actions/index.js
index 0b71d1a..3240a71 100644
--- a/src/actions/index.js
+++ b/src/actions/index.js
@@ -18,95 +18,95 @@ export const FETCH_SESSION_CONTENT = 'FETCH_SESSION_CONTENT';
const ROOT_URL = 'http://127.0.0.1:8089';
export function clearHotCountries(event) {
- return {
- type: HOT_COUNTRIES,
+ return {
+ type: HOT_COUNTRIES,
payload: {},
- };
+ };
}
export function receivedHotCountries(event) {
- return {
- type: RECEIVED_HOT_COUNTRIES,
+ return {
+ type: RECEIVED_HOT_COUNTRIES,
payload: event
- };
+ };
}
export function receivedMetadata(event) {
- return {
- type: RECEIVED_METADATA,
+ return {
+ type: RECEIVED_METADATA,
payload: event
- };
+ };
}
export function receivedEvents(data) {
- return {
- type: RECEIVED_EVENTS,
+ return {
+ type: RECEIVED_EVENTS,
payload: data
- };
+ };
}
export function receivedEvent(event) {
- return {
- type: RECEIVED_EVENT,
+ return {
+ type: RECEIVED_EVENT,
payload: event
- };
+ };
}
export function connectionStatus(connected) {
- return {
- type: CONNECTION_STATUS,
- payload: {
- connected: connected,
+ return {
+ type: CONNECTION_STATUS,
+ payload: {
+ connected: connected,
}
- };
+ };
}
export function addSession(id) {
- return {
- type: ADD_SESSION,
- payload: {
- id: id,
- date: '10/02/2017',
- location: 'unknown',
- started: '10/02/2017 10:10',
- ended: '10/02/2017 10:11',
- username: 'root',
- password: 'root'
- }
- };
+ return {
+ type: ADD_SESSION,
+ payload: {
+ id: id,
+ date: '10/02/2017',
+ location: 'unknown',
+ started: '10/02/2017 10:10',
+ ended: '10/02/2017 10:11',
+ username: 'root',
+ password: 'root'
+ }
+ };
}
export function fetchCountries() {
const request = axios.all([axios.get(`https://unpkg.com/world-atlas@1/world/110m.json`), axios.get(`https://unpkg.com/world-atlas@1/world/110m.tsv`)]);
- return {
- type: FETCH_COUNTRIES,
- payload: request
+ return {
+ type: FETCH_COUNTRIES,
+ payload: request
};
}
export function fetchSessions() {
- const request = axios.get(`${ROOT_URL}/api/v1/sessions`);
+ const request = axios.get(`${ROOT_URL}/api/v1/sessions`);
- return {
- type: FETCH_SESSIONS,
- payload: request
- }
+ return {
+ type: FETCH_SESSIONS,
+ payload: request
+ }
}
export function fetchSession(id) {
- const request = axios.get(`${ROOT_URL}/api/v1/sessions/${id}`);
+ const request = axios.get(`${ROOT_URL}/api/v1/sessions/${id}`);
- return {
- type: FETCH_SESSION,
- payload: request
- }
+ return {
+ type: FETCH_SESSION,
+ payload: request
+ }
}
export function fetchSessionContent(content) {
- return {
- type: FETCH_SESSION_CONTENT,
- payload: content
- }
+ return {
+ type: FETCH_SESSION_CONTENT,
+ payload: content
+ }
}
diff --git a/src/bootstrap.min.css b/src/bootstrap.min.css
deleted file mode 100644
index a8da074..0000000
--- a/src/bootstrap.min.css
+++ /dev/null
@@ -1,6 +0,0 @@
-/*!
- * Bootstrap v4.0.0-alpha.6 (https://getbootstrap.com)
- * Copyright 2011-2017 The Bootstrap Authors
- * Copyright 2011-2017 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- *//*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}@media print{*,::after,::before,blockquote::first-letter,blockquote::first-line,div::first-letter,div::first-line,li::first-letter,li::first-line,p::first-letter,p::first-line{text-shadow:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}html{-webkit-box-sizing:border-box;box-sizing:border-box}*,::after,::before{-webkit-box-sizing:inherit;box-sizing:inherit}@-ms-viewport{width:device-width}html{-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}body{font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-size:1rem;font-weight:400;line-height:1.5;color:#292b2c;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{cursor:help}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}a{color:#0275d8;text-decoration:none}a:focus,a:hover{color:#014c8c;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle}[role=button]{cursor:pointer}[role=button],a,area,button,input,label,select,summary,textarea{-ms-touch-action:manipulation;touch-action:manipulation}table{border-collapse:collapse;background-color:transparent}caption{padding-top:.75rem;padding-bottom:.75rem;color:#636c72;text-align:left;caption-side:bottom}th{text-align:left}label{display:inline-block;margin-bottom:.5rem}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,select,textarea{line-height:inherit}input[type=checkbox]:disabled,input[type=radio]:disabled{cursor:not-allowed}input[type=date],input[type=time],input[type=datetime-local],input[type=month]{-webkit-appearance:listbox}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit}input[type=search]{-webkit-appearance:none}output{display:inline-block}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.1}.display-2{font-size:5.5rem;font-weight:300;line-height:1.1}.display-3{font-size:4.5rem;font-weight:300;line-height:1.1}.display-4{font-size:3.5rem;font-weight:300;line-height:1.1}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:5px}.initialism{font-size:90%;text-transform:uppercase}.blockquote{padding:.5rem 1rem;margin-bottom:1rem;font-size:1.25rem;border-left:.25rem solid #eceeef}.blockquote-footer{display:block;font-size:80%;color:#636c72}.blockquote-footer::before{content:"\2014 \00A0"}.blockquote-reverse{padding-right:1rem;padding-left:0;text-align:right;border-right:.25rem solid #eceeef;border-left:0}.blockquote-reverse .blockquote-footer::before{content:""}.blockquote-reverse .blockquote-footer::after{content:"\00A0 \2014"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #ddd;border-radius:.25rem;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#636c72}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}code{padding:.2rem .4rem;font-size:90%;color:#bd4147;background-color:#f7f7f9;border-radius:.25rem}a>code{padding:0;color:inherit;background-color:inherit}kbd{padding:.2rem .4rem;font-size:90%;color:#fff;background-color:#292b2c;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;margin-top:0;margin-bottom:1rem;font-size:90%;color:#292b2c}pre code{padding:0;font-size:inherit;color:inherit;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{position:relative;margin-left:auto;margin-right:auto;padding-right:15px;padding-left:15px}@media (min-width:576px){.container{padding-right:15px;padding-left:15px}}@media (min-width:768px){.container{padding-right:15px;padding-left:15px}}@media (min-width:992px){.container{padding-right:15px;padding-left:15px}}@media (min-width:1200px){.container{padding-right:15px;padding-left:15px}}@media (min-width:576px){.container{width:540px;max-width:100%}}@media (min-width:768px){.container{width:720px;max-width:100%}}@media (min-width:992px){.container{width:960px;max-width:100%}}@media (min-width:1200px){.container{width:1140px;max-width:100%}}.container-fluid{position:relative;margin-left:auto;margin-right:auto;padding-right:15px;padding-left:15px}@media (min-width:576px){.container-fluid{padding-right:15px;padding-left:15px}}@media (min-width:768px){.container-fluid{padding-right:15px;padding-left:15px}}@media (min-width:992px){.container-fluid{padding-right:15px;padding-left:15px}}@media (min-width:1200px){.container-fluid{padding-right:15px;padding-left:15px}}.row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}@media (min-width:576px){.row{margin-right:-15px;margin-left:-15px}}@media (min-width:768px){.row{margin-right:-15px;margin-left:-15px}}@media (min-width:992px){.row{margin-right:-15px;margin-left:-15px}}@media (min-width:1200px){.row{margin-right:-15px;margin-left:-15px}}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.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-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}@media (min-width:576px){.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.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-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9{padding-right:15px;padding-left:15px}}@media (min-width:768px){.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.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-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9{padding-right:15px;padding-left:15px}}@media (min-width:992px){.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.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-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9{padding-right:15px;padding-left:15px}}@media (min-width:1200px){.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.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-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9{padding-right:15px;padding-left:15px}}.col{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.col-1{-webkit-box-flex:0;-webkit-flex:0 0 8.333333%;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-webkit-box-flex:0;-webkit-flex:0 0 16.666667%;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-webkit-box-flex:0;-webkit-flex:0 0 33.333333%;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-webkit-box-flex:0;-webkit-flex:0 0 41.666667%;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-webkit-box-flex:0;-webkit-flex:0 0 58.333333%;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-webkit-box-flex:0;-webkit-flex:0 0 66.666667%;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-webkit-box-flex:0;-webkit-flex:0 0 83.333333%;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-webkit-box-flex:0;-webkit-flex:0 0 91.666667%;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.pull-0{right:auto}.pull-1{right:8.333333%}.pull-2{right:16.666667%}.pull-3{right:25%}.pull-4{right:33.333333%}.pull-5{right:41.666667%}.pull-6{right:50%}.pull-7{right:58.333333%}.pull-8{right:66.666667%}.pull-9{right:75%}.pull-10{right:83.333333%}.pull-11{right:91.666667%}.pull-12{right:100%}.push-0{left:auto}.push-1{left:8.333333%}.push-2{left:16.666667%}.push-3{left:25%}.push-4{left:33.333333%}.push-5{left:41.666667%}.push-6{left:50%}.push-7{left:58.333333%}.push-8{left:66.666667%}.push-9{left:75%}.push-10{left:83.333333%}.push-11{left:91.666667%}.push-12{left:100%}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.col-sm-1{-webkit-box-flex:0;-webkit-flex:0 0 8.333333%;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-webkit-box-flex:0;-webkit-flex:0 0 16.666667%;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-webkit-flex:0 0 33.333333%;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-webkit-box-flex:0;-webkit-flex:0 0 41.666667%;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-webkit-flex:0 0 58.333333%;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-webkit-box-flex:0;-webkit-flex:0 0 66.666667%;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-webkit-flex:0 0 83.333333%;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-webkit-box-flex:0;-webkit-flex:0 0 91.666667%;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.pull-sm-0{right:auto}.pull-sm-1{right:8.333333%}.pull-sm-2{right:16.666667%}.pull-sm-3{right:25%}.pull-sm-4{right:33.333333%}.pull-sm-5{right:41.666667%}.pull-sm-6{right:50%}.pull-sm-7{right:58.333333%}.pull-sm-8{right:66.666667%}.pull-sm-9{right:75%}.pull-sm-10{right:83.333333%}.pull-sm-11{right:91.666667%}.pull-sm-12{right:100%}.push-sm-0{left:auto}.push-sm-1{left:8.333333%}.push-sm-2{left:16.666667%}.push-sm-3{left:25%}.push-sm-4{left:33.333333%}.push-sm-5{left:41.666667%}.push-sm-6{left:50%}.push-sm-7{left:58.333333%}.push-sm-8{left:66.666667%}.push-sm-9{left:75%}.push-sm-10{left:83.333333%}.push-sm-11{left:91.666667%}.push-sm-12{left:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.col-md-1{-webkit-box-flex:0;-webkit-flex:0 0 8.333333%;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-webkit-box-flex:0;-webkit-flex:0 0 16.666667%;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-webkit-flex:0 0 33.333333%;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-webkit-box-flex:0;-webkit-flex:0 0 41.666667%;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-webkit-flex:0 0 58.333333%;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-webkit-box-flex:0;-webkit-flex:0 0 66.666667%;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-webkit-flex:0 0 83.333333%;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-webkit-box-flex:0;-webkit-flex:0 0 91.666667%;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.pull-md-0{right:auto}.pull-md-1{right:8.333333%}.pull-md-2{right:16.666667%}.pull-md-3{right:25%}.pull-md-4{right:33.333333%}.pull-md-5{right:41.666667%}.pull-md-6{right:50%}.pull-md-7{right:58.333333%}.pull-md-8{right:66.666667%}.pull-md-9{right:75%}.pull-md-10{right:83.333333%}.pull-md-11{right:91.666667%}.pull-md-12{right:100%}.push-md-0{left:auto}.push-md-1{left:8.333333%}.push-md-2{left:16.666667%}.push-md-3{left:25%}.push-md-4{left:33.333333%}.push-md-5{left:41.666667%}.push-md-6{left:50%}.push-md-7{left:58.333333%}.push-md-8{left:66.666667%}.push-md-9{left:75%}.push-md-10{left:83.333333%}.push-md-11{left:91.666667%}.push-md-12{left:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.col-lg-1{-webkit-box-flex:0;-webkit-flex:0 0 8.333333%;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-webkit-box-flex:0;-webkit-flex:0 0 16.666667%;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-webkit-flex:0 0 33.333333%;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-webkit-box-flex:0;-webkit-flex:0 0 41.666667%;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-webkit-flex:0 0 58.333333%;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-webkit-box-flex:0;-webkit-flex:0 0 66.666667%;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-webkit-flex:0 0 83.333333%;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-webkit-box-flex:0;-webkit-flex:0 0 91.666667%;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.pull-lg-0{right:auto}.pull-lg-1{right:8.333333%}.pull-lg-2{right:16.666667%}.pull-lg-3{right:25%}.pull-lg-4{right:33.333333%}.pull-lg-5{right:41.666667%}.pull-lg-6{right:50%}.pull-lg-7{right:58.333333%}.pull-lg-8{right:66.666667%}.pull-lg-9{right:75%}.pull-lg-10{right:83.333333%}.pull-lg-11{right:91.666667%}.pull-lg-12{right:100%}.push-lg-0{left:auto}.push-lg-1{left:8.333333%}.push-lg-2{left:16.666667%}.push-lg-3{left:25%}.push-lg-4{left:33.333333%}.push-lg-5{left:41.666667%}.push-lg-6{left:50%}.push-lg-7{left:58.333333%}.push-lg-8{left:66.666667%}.push-lg-9{left:75%}.push-lg-10{left:83.333333%}.push-lg-11{left:91.666667%}.push-lg-12{left:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.col-xl-1{-webkit-box-flex:0;-webkit-flex:0 0 8.333333%;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-webkit-box-flex:0;-webkit-flex:0 0 16.666667%;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-webkit-flex:0 0 33.333333%;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-webkit-box-flex:0;-webkit-flex:0 0 41.666667%;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-webkit-flex:0 0 58.333333%;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-webkit-box-flex:0;-webkit-flex:0 0 66.666667%;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-webkit-flex:0 0 83.333333%;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-webkit-box-flex:0;-webkit-flex:0 0 91.666667%;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.pull-xl-0{right:auto}.pull-xl-1{right:8.333333%}.pull-xl-2{right:16.666667%}.pull-xl-3{right:25%}.pull-xl-4{right:33.333333%}.pull-xl-5{right:41.666667%}.pull-xl-6{right:50%}.pull-xl-7{right:58.333333%}.pull-xl-8{right:66.666667%}.pull-xl-9{right:75%}.pull-xl-10{right:83.333333%}.pull-xl-11{right:91.666667%}.pull-xl-12{right:100%}.push-xl-0{left:auto}.push-xl-1{left:8.333333%}.push-xl-2{left:16.666667%}.push-xl-3{left:25%}.push-xl-4{left:33.333333%}.push-xl-5{left:41.666667%}.push-xl-6{left:50%}.push-xl-7{left:58.333333%}.push-xl-8{left:66.666667%}.push-xl-9{left:75%}.push-xl-10{left:83.333333%}.push-xl-11{left:91.666667%}.push-xl-12{left:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;max-width:100%;margin-bottom:1rem}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #eceeef}.table thead th{vertical-align:bottom;border-bottom:2px solid #eceeef}.table tbody+tbody{border-top:2px solid #eceeef}.table .table{background-color:#fff}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #eceeef}.table-bordered td,.table-bordered th{border:1px solid #eceeef}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table-success,.table-success>td,.table-success>th{background-color:#dff0d8}.table-hover .table-success:hover{background-color:#d0e9c6}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#d0e9c6}.table-info,.table-info>td,.table-info>th{background-color:#d9edf7}.table-hover .table-info:hover{background-color:#c4e3f3}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#c4e3f3}.table-warning,.table-warning>td,.table-warning>th{background-color:#fcf8e3}.table-hover .table-warning:hover{background-color:#faf2cc}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#faf2cc}.table-danger,.table-danger>td,.table-danger>th{background-color:#f2dede}.table-hover .table-danger:hover{background-color:#ebcccc}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#ebcccc}.thead-inverse th{color:#fff;background-color:#292b2c}.thead-default th{color:#464a4c;background-color:#eceeef}.table-inverse{color:#fff;background-color:#292b2c}.table-inverse td,.table-inverse th,.table-inverse thead th{border-color:#fff}.table-inverse.table-bordered{border:0}.table-responsive{display:block;width:100%;overflow-x:auto;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive.table-bordered{border:0}.form-control{display:block;width:100%;padding:.5rem .75rem;font-size:1rem;line-height:1.25;color:#464a4c;background-color:#fff;background-image:none;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem;-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#464a4c;background-color:#fff;border-color:#5cb3fd;outline:0}.form-control::-webkit-input-placeholder{color:#636c72;opacity:1}.form-control::-moz-placeholder{color:#636c72;opacity:1}.form-control:-ms-input-placeholder{color:#636c72;opacity:1}.form-control::placeholder{color:#636c72;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#eceeef;opacity:1}.form-control:disabled{cursor:not-allowed}select.form-control:not([size]):not([multiple]){height:calc(2.25rem + 2px)}select.form-control:focus::-ms-value{color:#464a4c;background-color:#fff}.form-control-file,.form-control-range{display:block}.col-form-label{padding-top:calc(.5rem - 1px * 2);padding-bottom:calc(.5rem - 1px * 2);margin-bottom:0}.col-form-label-lg{padding-top:calc(.75rem - 1px * 2);padding-bottom:calc(.75rem - 1px * 2);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem - 1px * 2);padding-bottom:calc(.25rem - 1px * 2);font-size:.875rem}.col-form-legend{padding-top:.5rem;padding-bottom:.5rem;margin-bottom:0;font-size:1rem}.form-control-static{padding-top:.5rem;padding-bottom:.5rem;margin-bottom:0;line-height:1.25;border:solid transparent;border-width:1px 0}.form-control-static.form-control-lg,.form-control-static.form-control-sm,.input-group-lg>.form-control-static.form-control,.input-group-lg>.form-control-static.input-group-addon,.input-group-lg>.input-group-btn>.form-control-static.btn,.input-group-sm>.form-control-static.form-control,.input-group-sm>.form-control-static.input-group-addon,.input-group-sm>.input-group-btn>.form-control-static.btn{padding-right:0;padding-left:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-sm>.input-group-btn>select.btn:not([size]):not([multiple]),.input-group-sm>select.form-control:not([size]):not([multiple]),.input-group-sm>select.input-group-addon:not([size]):not([multiple]),select.form-control-sm:not([size]):not([multiple]){height:1.8125rem}.form-control-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{padding:.75rem 1.5rem;font-size:1.25rem;border-radius:.3rem}.input-group-lg>.input-group-btn>select.btn:not([size]):not([multiple]),.input-group-lg>select.form-control:not([size]):not([multiple]),.input-group-lg>select.input-group-addon:not([size]):not([multiple]),select.form-control-lg:not([size]):not([multiple]){height:3.166667rem}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-check{position:relative;display:block;margin-bottom:.5rem}.form-check.disabled .form-check-label{color:#636c72;cursor:not-allowed}.form-check-label{padding-left:1.25rem;margin-bottom:0;cursor:pointer}.form-check-input{position:absolute;margin-top:.25rem;margin-left:-1.25rem}.form-check-input:only-child{position:static}.form-check-inline{display:inline-block}.form-check-inline .form-check-label{vertical-align:middle}.form-check-inline+.form-check-inline{margin-left:.75rem}.form-control-feedback{margin-top:.25rem}.form-control-danger,.form-control-success,.form-control-warning{padding-right:2.25rem;background-repeat:no-repeat;background-position:center right .5625rem;-webkit-background-size:1.125rem 1.125rem;background-size:1.125rem 1.125rem}.has-success .col-form-label,.has-success .custom-control,.has-success .form-check-label,.has-success .form-control-feedback,.has-success .form-control-label{color:#5cb85c}.has-success .form-control{border-color:#5cb85c}.has-success .input-group-addon{color:#5cb85c;border-color:#5cb85c;background-color:#eaf6ea}.has-success .form-control-success{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E")}.has-warning .col-form-label,.has-warning .custom-control,.has-warning .form-check-label,.has-warning .form-control-feedback,.has-warning .form-control-label{color:#f0ad4e}.has-warning .form-control{border-color:#f0ad4e}.has-warning .input-group-addon{color:#f0ad4e;border-color:#f0ad4e;background-color:#fff}.has-warning .form-control-warning{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E")}.has-danger .col-form-label,.has-danger .custom-control,.has-danger .form-check-label,.has-danger .form-control-feedback,.has-danger .form-control-label{color:#d9534f}.has-danger .form-control{border-color:#d9534f}.has-danger .input-group-addon{color:#d9534f;border-color:#d9534f;background-color:#fdf7f7}.has-danger .form-control-danger{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E")}.form-inline{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{width:auto}.form-inline .form-control-label{margin-bottom:0;vertical-align:middle}.form-inline .form-check{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;width:auto;margin-top:0;margin-bottom:0}.form-inline .form-check-label{padding-left:0}.form-inline .form-check-input{position:relative;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding-left:0}.form-inline .custom-control-indicator{position:static;display:inline-block;margin-right:.25rem;vertical-align:text-bottom}.form-inline .has-feedback .form-control-feedback{top:0}}.btn{display:inline-block;font-weight:400;line-height:1.25;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:.5rem 1rem;font-size:1rem;border-radius:.25rem;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.btn:focus,.btn:hover{text-decoration:none}.btn.focus,.btn:focus{outline:0;-webkit-box-shadow:0 0 0 2px rgba(2,117,216,.25);box-shadow:0 0 0 2px rgba(2,117,216,.25)}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}.btn.active,.btn:active{background-image:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#0275d8;border-color:#0275d8}.btn-primary:hover{color:#fff;background-color:#025aa5;border-color:#01549b}.btn-primary.focus,.btn-primary:focus{-webkit-box-shadow:0 0 0 2px rgba(2,117,216,.5);box-shadow:0 0 0 2px rgba(2,117,216,.5)}.btn-primary.disabled,.btn-primary:disabled{background-color:#0275d8;border-color:#0275d8}.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#025aa5;background-image:none;border-color:#01549b}.btn-secondary{color:#292b2c;background-color:#fff;border-color:#ccc}.btn-secondary:hover{color:#292b2c;background-color:#e6e6e6;border-color:#adadad}.btn-secondary.focus,.btn-secondary:focus{-webkit-box-shadow:0 0 0 2px rgba(204,204,204,.5);box-shadow:0 0 0 2px rgba(204,204,204,.5)}.btn-secondary.disabled,.btn-secondary:disabled{background-color:#fff;border-color:#ccc}.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#292b2c;background-color:#e6e6e6;background-image:none;border-color:#adadad}.btn-info{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#2aabd2}.btn-info.focus,.btn-info:focus{-webkit-box-shadow:0 0 0 2px rgba(91,192,222,.5);box-shadow:0 0 0 2px rgba(91,192,222,.5)}.btn-info.disabled,.btn-info:disabled{background-color:#5bc0de;border-color:#5bc0de}.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#31b0d5;background-image:none;border-color:#2aabd2}.btn-success{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#419641}.btn-success.focus,.btn-success:focus{-webkit-box-shadow:0 0 0 2px rgba(92,184,92,.5);box-shadow:0 0 0 2px rgba(92,184,92,.5)}.btn-success.disabled,.btn-success:disabled{background-color:#5cb85c;border-color:#5cb85c}.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#449d44;background-image:none;border-color:#419641}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#eb9316}.btn-warning.focus,.btn-warning:focus{-webkit-box-shadow:0 0 0 2px rgba(240,173,78,.5);box-shadow:0 0 0 2px rgba(240,173,78,.5)}.btn-warning.disabled,.btn-warning:disabled{background-color:#f0ad4e;border-color:#f0ad4e}.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#ec971f;background-image:none;border-color:#eb9316}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#c12e2a}.btn-danger.focus,.btn-danger:focus{-webkit-box-shadow:0 0 0 2px rgba(217,83,79,.5);box-shadow:0 0 0 2px rgba(217,83,79,.5)}.btn-danger.disabled,.btn-danger:disabled{background-color:#d9534f;border-color:#d9534f}.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#c9302c;background-image:none;border-color:#c12e2a}.btn-outline-primary{color:#0275d8;background-image:none;background-color:transparent;border-color:#0275d8}.btn-outline-primary:hover{color:#fff;background-color:#0275d8;border-color:#0275d8}.btn-outline-primary.focus,.btn-outline-primary:focus{-webkit-box-shadow:0 0 0 2px rgba(2,117,216,.5);box-shadow:0 0 0 2px rgba(2,117,216,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0275d8;background-color:transparent}.btn-outline-primary.active,.btn-outline-primary:active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#0275d8;border-color:#0275d8}.btn-outline-secondary{color:#ccc;background-image:none;background-color:transparent;border-color:#ccc}.btn-outline-secondary:hover{color:#fff;background-color:#ccc;border-color:#ccc}.btn-outline-secondary.focus,.btn-outline-secondary:focus{-webkit-box-shadow:0 0 0 2px rgba(204,204,204,.5);box-shadow:0 0 0 2px rgba(204,204,204,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#ccc;background-color:transparent}.btn-outline-secondary.active,.btn-outline-secondary:active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#ccc;border-color:#ccc}.btn-outline-info{color:#5bc0de;background-image:none;background-color:transparent;border-color:#5bc0de}.btn-outline-info:hover{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-outline-info.focus,.btn-outline-info:focus{-webkit-box-shadow:0 0 0 2px rgba(91,192,222,.5);box-shadow:0 0 0 2px rgba(91,192,222,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#5bc0de;background-color:transparent}.btn-outline-info.active,.btn-outline-info:active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-outline-success{color:#5cb85c;background-image:none;background-color:transparent;border-color:#5cb85c}.btn-outline-success:hover{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-outline-success.focus,.btn-outline-success:focus{-webkit-box-shadow:0 0 0 2px rgba(92,184,92,.5);box-shadow:0 0 0 2px rgba(92,184,92,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#5cb85c;background-color:transparent}.btn-outline-success.active,.btn-outline-success:active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-outline-warning{color:#f0ad4e;background-image:none;background-color:transparent;border-color:#f0ad4e}.btn-outline-warning:hover{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.btn-outline-warning.focus,.btn-outline-warning:focus{-webkit-box-shadow:0 0 0 2px rgba(240,173,78,.5);box-shadow:0 0 0 2px rgba(240,173,78,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#f0ad4e;background-color:transparent}.btn-outline-warning.active,.btn-outline-warning:active,.show>.btn-outline-warning.dropdown-toggle{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.btn-outline-danger{color:#d9534f;background-image:none;background-color:transparent;border-color:#d9534f}.btn-outline-danger:hover{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-outline-danger.focus,.btn-outline-danger:focus{-webkit-box-shadow:0 0 0 2px rgba(217,83,79,.5);box-shadow:0 0 0 2px rgba(217,83,79,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#d9534f;background-color:transparent}.btn-outline-danger.active,.btn-outline-danger:active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-link{font-weight:400;color:#0275d8;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link:disabled{background-color:transparent}.btn-link,.btn-link:active,.btn-link:focus{border-color:transparent}.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#014c8c;text-decoration:underline;background-color:transparent}.btn-link:disabled{color:#636c72}.btn-link:disabled:focus,.btn-link:disabled:hover{text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:.75rem 1.5rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.show{opacity:1}.collapse{display:none}.collapse.show{display:block}tr.collapse.show{display:table-row}tbody.collapse.show{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.dropdown,.dropup{position:relative}.dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.3em;vertical-align:middle;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-left:.3em solid transparent}.dropdown-toggle:focus{outline:0}.dropup .dropdown-toggle::after{border-top:0;border-bottom:.3em solid}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#292b2c;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-divider{height:1px;margin:.5rem 0;overflow:hidden;background-color:#eceeef}.dropdown-item{display:block;width:100%;padding:3px 1.5rem;clear:both;font-weight:400;color:#292b2c;text-align:inherit;white-space:nowrap;background:0 0;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1d1e1f;text-decoration:none;background-color:#f7f7f9}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0275d8}.dropdown-item.disabled,.dropdown-item:disabled{color:#636c72;cursor:not-allowed;background-color:transparent}.show>.dropdown-menu{display:block}.show>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#636c72;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.dropup .dropdown-menu{top:auto;bottom:100%;margin-bottom:.125rem}.btn-group,.btn-group-vertical{position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:2}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group,.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-left:-1px}.btn-toolbar{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn+.dropdown-toggle-split::after{margin-left:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:1.125rem;padding-left:1.125rem}.btn-group-vertical{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.btn-group-vertical .btn,.btn-group-vertical .btn-group{width:100%}.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:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%}.input-group .form-control{position:relative;z-index:2;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group .form-control:active,.input-group .form-control:focus,.input-group .form-control:hover{z-index:3}.input-group .form-control,.input-group-addon,.input-group-btn{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{white-space:nowrap;vertical-align:middle}.input-group-addon{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.25;color:#464a4c;text-align:center;background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.input-group-addon.form-control-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-addon.form-control-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn{padding:.75rem 1.5rem;font-size:1.25rem;border-radius:.3rem}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:not(:last-child),.input-group-addon:not(:last-child),.input-group-btn:not(:first-child)>.btn-group:not(:last-child)>.btn,.input-group-btn:not(:first-child)>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:not(:last-child)>.btn,.input-group-btn:not(:last-child)>.btn-group>.btn,.input-group-btn:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:not(:last-child){border-right:0}.input-group .form-control:not(:first-child),.input-group-addon:not(:first-child),.input-group-btn:not(:first-child)>.btn,.input-group-btn:not(:first-child)>.btn-group>.btn,.input-group-btn:not(:first-child)>.dropdown-toggle,.input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn,.input-group-btn:not(:last-child)>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.form-control+.input-group-addon:not(:first-child){border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative;-webkit-box-flex:1;-webkit-flex:1 1 0%;-ms-flex:1 1 0%;flex:1 1 0%}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:3}.input-group-btn:not(:last-child)>.btn,.input-group-btn:not(:last-child)>.btn-group{margin-right:-1px}.input-group-btn:not(:first-child)>.btn,.input-group-btn:not(:first-child)>.btn-group{z-index:2;margin-left:-1px}.input-group-btn:not(:first-child)>.btn-group:active,.input-group-btn:not(:first-child)>.btn-group:focus,.input-group-btn:not(:first-child)>.btn-group:hover,.input-group-btn:not(:first-child)>.btn:active,.input-group-btn:not(:first-child)>.btn:focus,.input-group-btn:not(:first-child)>.btn:hover{z-index:3}.custom-control{position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;min-height:1.5rem;padding-left:1.5rem;margin-right:1rem;cursor:pointer}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-indicator{color:#fff;background-color:#0275d8}.custom-control-input:focus~.custom-control-indicator{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 3px #0275d8;box-shadow:0 0 0 1px #fff,0 0 0 3px #0275d8}.custom-control-input:active~.custom-control-indicator{color:#fff;background-color:#8fcafe}.custom-control-input:disabled~.custom-control-indicator{cursor:not-allowed;background-color:#eceeef}.custom-control-input:disabled~.custom-control-description{color:#636c72;cursor:not-allowed}.custom-control-indicator{position:absolute;top:.25rem;left:0;display:block;width:1rem;height:1rem;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#ddd;background-repeat:no-repeat;background-position:center center;-webkit-background-size:50% 50%;background-size:50% 50%}.custom-checkbox .custom-control-indicator{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-indicator{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-indicator{background-color:#0275d8;background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-radio .custom-control-indicator{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-indicator{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-controls-stacked{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.custom-controls-stacked .custom-control{margin-bottom:.25rem}.custom-controls-stacked .custom-control+.custom-control{margin-left:0}.custom-select{display:inline-block;max-width:100%;height:calc(2.25rem + 2px);padding:.375rem 1.75rem .375rem .75rem;line-height:1.25;color:#464a4c;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;-webkit-background-size:8px 10px;background-size:8px 10px;border:1px solid rgba(0,0,0,.15);border-radius:.25rem;-moz-appearance:none;-webkit-appearance:none}.custom-select:focus{border-color:#5cb3fd;outline:0}.custom-select:focus::-ms-value{color:#464a4c;background-color:#fff}.custom-select:disabled{color:#636c72;cursor:not-allowed;background-color:#eceeef}.custom-select::-ms-expand{opacity:0}.custom-select-sm{padding-top:.375rem;padding-bottom:.375rem;font-size:75%}.custom-file{position:relative;display:inline-block;max-width:100%;height:2.5rem;margin-bottom:0;cursor:pointer}.custom-file-input{min-width:14rem;max-width:100%;height:2.5rem;margin:0;filter:alpha(opacity=0);opacity:0}.custom-file-control{position:absolute;top:0;right:0;left:0;z-index:5;height:2.5rem;padding:.5rem 1rem;line-height:1.5;color:#464a4c;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fff;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.custom-file-control:lang(en)::after{content:"Choose file..."}.custom-file-control::before{position:absolute;top:-1px;right:-1px;bottom:-1px;z-index:6;display:block;height:2.5rem;padding:.5rem 1rem;line-height:1.5;color:#464a4c;background-color:#eceeef;border:1px solid rgba(0,0,0,.15);border-radius:0 .25rem .25rem 0}.custom-file-control:lang(en)::before{content:"Browse"}.nav{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5em 1em}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#636c72;cursor:not-allowed}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-right-radius:.25rem;border-top-left-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#eceeef #eceeef #ddd}.nav-tabs .nav-link.disabled{color:#636c72;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#464a4c;background-color:#fff;border-color:#ddd #ddd #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-item.show .nav-link,.nav-pills .nav-link.active{color:#fff;cursor:default;background-color:#0275d8}.nav-fill .nav-item{-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-webkit-box-flex:1;-webkit-flex:1 1 100%;-ms-flex:1 1 100%;flex:1 1 100%;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding:.5rem 1rem}.navbar-brand{display:inline-block;padding-top:.25rem;padding-bottom:.25rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-text{display:inline-block;padding-top:.425rem;padding-bottom:.425rem}.navbar-toggler{-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start;padding:.25rem .75rem;font-size:1.25rem;line-height:1;background:0 0;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;-webkit-background-size:100% 100%;background-size:100% 100%}.navbar-toggler-left{position:absolute;left:1rem}.navbar-toggler-right{position:absolute;right:1rem}@media (max-width:575px){.navbar-toggleable .navbar-nav .dropdown-menu{position:static;float:none}.navbar-toggleable>.container{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-toggleable{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.navbar-toggleable .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.navbar-toggleable .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-toggleable>.container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.navbar-toggleable .navbar-collapse{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;width:100%}.navbar-toggleable .navbar-toggler{display:none}}@media (max-width:767px){.navbar-toggleable-sm .navbar-nav .dropdown-menu{position:static;float:none}.navbar-toggleable-sm>.container{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-toggleable-sm{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.navbar-toggleable-sm .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.navbar-toggleable-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-toggleable-sm>.container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.navbar-toggleable-sm .navbar-collapse{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;width:100%}.navbar-toggleable-sm .navbar-toggler{display:none}}@media (max-width:991px){.navbar-toggleable-md .navbar-nav .dropdown-menu{position:static;float:none}.navbar-toggleable-md>.container{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-toggleable-md{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.navbar-toggleable-md .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.navbar-toggleable-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-toggleable-md>.container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.navbar-toggleable-md .navbar-collapse{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;width:100%}.navbar-toggleable-md .navbar-toggler{display:none}}@media (max-width:1199px){.navbar-toggleable-lg .navbar-nav .dropdown-menu{position:static;float:none}.navbar-toggleable-lg>.container{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-toggleable-lg{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.navbar-toggleable-lg .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.navbar-toggleable-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-toggleable-lg>.container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.navbar-toggleable-lg .navbar-collapse{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;width:100%}.navbar-toggleable-lg .navbar-toggler{display:none}}.navbar-toggleable-xl{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.navbar-toggleable-xl .navbar-nav .dropdown-menu{position:static;float:none}.navbar-toggleable-xl>.container{padding-right:0;padding-left:0}.navbar-toggleable-xl .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.navbar-toggleable-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-toggleable-xl>.container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.navbar-toggleable-xl .navbar-collapse{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;width:100%}.navbar-toggleable-xl .navbar-toggler{display:none}.navbar-light .navbar-brand,.navbar-light .navbar-toggler{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover,.navbar-light .navbar-toggler:focus,.navbar-light .navbar-toggler:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.open,.navbar-light .navbar-nav .open>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-toggler{color:#fff}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-toggler:focus,.navbar-inverse .navbar-toggler:hover{color:#fff}.navbar-inverse .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-inverse .navbar-nav .nav-link:focus,.navbar-inverse .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-inverse .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-inverse .navbar-nav .active>.nav-link,.navbar-inverse .navbar-nav .nav-link.active,.navbar-inverse .navbar-nav .nav-link.open,.navbar-inverse .navbar-nav .open>.nav-link{color:#fff}.navbar-inverse .navbar-toggler{border-color:rgba(255,255,255,.1)}.navbar-inverse .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E")}.navbar-inverse .navbar-text{color:rgba(255,255,255,.5)}.card{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;background-color:#fff;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card-block{-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card>.list-group:first-child .list-group-item:first-child{border-top-right-radius:.25rem;border-top-left-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:#f7f7f9;border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.75rem 1.25rem;background-color:#f7f7f9;border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-primary{background-color:#0275d8;border-color:#0275d8}.card-primary .card-footer,.card-primary .card-header{background-color:transparent}.card-success{background-color:#5cb85c;border-color:#5cb85c}.card-success .card-footer,.card-success .card-header{background-color:transparent}.card-info{background-color:#5bc0de;border-color:#5bc0de}.card-info .card-footer,.card-info .card-header{background-color:transparent}.card-warning{background-color:#f0ad4e;border-color:#f0ad4e}.card-warning .card-footer,.card-warning .card-header{background-color:transparent}.card-danger{background-color:#d9534f;border-color:#d9534f}.card-danger .card-footer,.card-danger .card-header{background-color:transparent}.card-outline-primary{background-color:transparent;border-color:#0275d8}.card-outline-secondary{background-color:transparent;border-color:#ccc}.card-outline-info{background-color:transparent;border-color:#5bc0de}.card-outline-success{background-color:transparent;border-color:#5cb85c}.card-outline-warning{background-color:transparent;border-color:#f0ad4e}.card-outline-danger{background-color:transparent;border-color:#d9534f}.card-inverse{color:rgba(255,255,255,.65)}.card-inverse .card-footer,.card-inverse .card-header{background-color:transparent;border-color:rgba(255,255,255,.2)}.card-inverse .card-blockquote,.card-inverse .card-footer,.card-inverse .card-header,.card-inverse .card-title{color:#fff}.card-inverse .card-blockquote .blockquote-footer,.card-inverse .card-link,.card-inverse .card-subtitle,.card-inverse .card-text{color:rgba(255,255,255,.65)}.card-inverse .card-link:focus,.card-inverse .card-link:hover{color:#fff}.card-blockquote{padding:0;margin-bottom:0;border-left:0}.card-img{border-radius:calc(.25rem - 1px)}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img-top{border-top-right-radius:calc(.25rem - 1px);border-top-left-radius:calc(.25rem - 1px)}.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}@media (min-width:576px){.card-deck{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-deck .card{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1 0 0%;-ms-flex:1 0 0%;flex:1 0 0%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.card-deck .card:not(:first-child){margin-left:15px}.card-deck .card:not(:last-child){margin-right:15px}}@media (min-width:576px){.card-group{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group .card{-webkit-box-flex:1;-webkit-flex:1 0 0%;-ms-flex:1 0 0%;flex:1 0 0%}.card-group .card+.card{margin-left:0;border-left:0}.card-group .card:first-child{border-bottom-right-radius:0;border-top-right-radius:0}.card-group .card:first-child .card-img-top{border-top-right-radius:0}.card-group .card:first-child .card-img-bottom{border-bottom-right-radius:0}.card-group .card:last-child{border-bottom-left-radius:0;border-top-left-radius:0}.card-group .card:last-child .card-img-top{border-top-left-radius:0}.card-group .card:last-child .card-img-bottom{border-bottom-left-radius:0}.card-group .card:not(:first-child):not(:last-child){border-radius:0}.card-group .card:not(:first-child):not(:last-child) .card-img-bottom,.card-group .card:not(:first-child):not(:last-child) .card-img-top{border-radius:0}}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem}.card-columns .card{display:inline-block;width:100%;margin-bottom:.75rem}}.breadcrumb{padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#eceeef;border-radius:.25rem}.breadcrumb::after{display:block;content:"";clear:both}.breadcrumb-item{float:left}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;padding-left:.5rem;color:#636c72;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#636c72}.pagination{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-item:first-child .page-link{margin-left:0;border-bottom-left-radius:.25rem;border-top-left-radius:.25rem}.page-item:last-child .page-link{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.page-item.active .page-link{z-index:2;color:#fff;background-color:#0275d8;border-color:#0275d8}.page-item.disabled .page-link{color:#636c72;pointer-events:none;cursor:not-allowed;background-color:#fff;border-color:#ddd}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#0275d8;background-color:#fff;border:1px solid #ddd}.page-link:focus,.page-link:hover{color:#014c8c;text-decoration:none;background-color:#eceeef;border-color:#ddd}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-bottom-left-radius:.3rem;border-top-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-bottom-right-radius:.3rem;border-top-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-bottom-left-radius:.2rem;border-top-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-bottom-right-radius:.2rem;border-top-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-default{background-color:#636c72}.badge-default[href]:focus,.badge-default[href]:hover{background-color:#4b5257}.badge-primary{background-color:#0275d8}.badge-primary[href]:focus,.badge-primary[href]:hover{background-color:#025aa5}.badge-success{background-color:#5cb85c}.badge-success[href]:focus,.badge-success[href]:hover{background-color:#449d44}.badge-info{background-color:#5bc0de}.badge-info[href]:focus,.badge-info[href]:hover{background-color:#31b0d5}.badge-warning{background-color:#f0ad4e}.badge-warning[href]:focus,.badge-warning[href]:hover{background-color:#ec971f}.badge-danger{background-color:#d9534f}.badge-danger[href]:focus,.badge-danger[href]:hover{background-color:#c9302c}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#eceeef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-hr{border-top-color:#d0d5d8}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible .close{position:relative;top:-.75rem;right:-1.25rem;padding:.75rem 1.25rem;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d0e9c6;color:#3c763d}.alert-success hr{border-top-color:#c1e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bcdff1;color:#31708f}.alert-info hr{border-top-color:#a6d5ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faf2cc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7ecb5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebcccc;color:#a94442}.alert-danger hr{border-top-color:#e4b9b9}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;overflow:hidden;font-size:.75rem;line-height:1rem;text-align:center;background-color:#eceeef;border-radius:.25rem}.progress-bar{height:1rem;color:#fff;background-color:#0275d8}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:1rem 1rem;background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;-o-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}.media{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.media-body{-webkit-box-flex:1;-webkit-flex:1 1 0%;-ms-flex:1 1 0%;flex:1 1 0%}.list-group{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#464a4c;text-align:inherit}.list-group-item-action .list-group-item-heading{color:#292b2c}.list-group-item-action:focus,.list-group-item-action:hover{color:#464a4c;text-decoration:none;background-color:#f7f7f9}.list-group-item-action:active{color:#292b2c;background-color:#eceeef}.list-group-item{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-right-radius:.25rem;border-top-left-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item:focus,.list-group-item:hover{text-decoration:none}.list-group-item.disabled,.list-group-item:disabled{color:#636c72;cursor:not-allowed;background-color:#fff}.list-group-item.disabled .list-group-item-heading,.list-group-item:disabled .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item:disabled .list-group-item-text{color:#636c72}.list-group-item.active{z-index:2;color:#fff;background-color:#0275d8;border-color:#0275d8}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text{color:#daeeff}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom:0}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}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:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,button.list-group-item-success.active{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,button.list-group-item-info.active{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}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:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,button.list-group-item-warning.active{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,button.list-group-item-danger.active{color:#fff;background-color:#a94442;border-color:#a94442}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.75}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out,-o-transform .3s ease-out;-webkit-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.show .modal-dialog{-webkit-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;padding:15px;border-bottom:1px solid #eceeef}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;padding:15px}.modal-footer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;padding:15px;border-top:1px solid #eceeef}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:30px auto}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg{max-width:800px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip.bs-tether-element-attached-bottom,.tooltip.tooltip-top{padding:5px 0;margin-top:-3px}.tooltip.bs-tether-element-attached-bottom .tooltip-inner::before,.tooltip.tooltip-top .tooltip-inner::before{bottom:0;left:50%;margin-left:-5px;content:"";border-width:5px 5px 0;border-top-color:#000}.tooltip.bs-tether-element-attached-left,.tooltip.tooltip-right{padding:0 5px;margin-left:3px}.tooltip.bs-tether-element-attached-left .tooltip-inner::before,.tooltip.tooltip-right .tooltip-inner::before{top:50%;left:0;margin-top:-5px;content:"";border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.bs-tether-element-attached-top,.tooltip.tooltip-bottom{padding:5px 0;margin-top:3px}.tooltip.bs-tether-element-attached-top .tooltip-inner::before,.tooltip.tooltip-bottom .tooltip-inner::before{top:0;left:50%;margin-left:-5px;content:"";border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bs-tether-element-attached-right,.tooltip.tooltip-left{padding:0 5px;margin-left:-3px}.tooltip.bs-tether-element-attached-right .tooltip-inner::before,.tooltip.tooltip-left .tooltip-inner::before{top:50%;right:0;margin-top:-5px;content:"";border-width:5px 0 5px 5px;border-left-color:#000}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.tooltip-inner::before{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;padding:1px;font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;font-size:.875rem;word-wrap:break-word;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover.bs-tether-element-attached-bottom,.popover.popover-top{margin-top:-10px}.popover.bs-tether-element-attached-bottom::after,.popover.bs-tether-element-attached-bottom::before,.popover.popover-top::after,.popover.popover-top::before{left:50%;border-bottom-width:0}.popover.bs-tether-element-attached-bottom::before,.popover.popover-top::before{bottom:-11px;margin-left:-11px;border-top-color:rgba(0,0,0,.25)}.popover.bs-tether-element-attached-bottom::after,.popover.popover-top::after{bottom:-10px;margin-left:-10px;border-top-color:#fff}.popover.bs-tether-element-attached-left,.popover.popover-right{margin-left:10px}.popover.bs-tether-element-attached-left::after,.popover.bs-tether-element-attached-left::before,.popover.popover-right::after,.popover.popover-right::before{top:50%;border-left-width:0}.popover.bs-tether-element-attached-left::before,.popover.popover-right::before{left:-11px;margin-top:-11px;border-right-color:rgba(0,0,0,.25)}.popover.bs-tether-element-attached-left::after,.popover.popover-right::after{left:-10px;margin-top:-10px;border-right-color:#fff}.popover.bs-tether-element-attached-top,.popover.popover-bottom{margin-top:10px}.popover.bs-tether-element-attached-top::after,.popover.bs-tether-element-attached-top::before,.popover.popover-bottom::after,.popover.popover-bottom::before{left:50%;border-top-width:0}.popover.bs-tether-element-attached-top::before,.popover.popover-bottom::before{top:-11px;margin-left:-11px;border-bottom-color:rgba(0,0,0,.25)}.popover.bs-tether-element-attached-top::after,.popover.popover-bottom::after{top:-10px;margin-left:-10px;border-bottom-color:#f7f7f7}.popover.bs-tether-element-attached-top .popover-title::before,.popover.popover-bottom .popover-title::before{position:absolute;top:0;left:50%;display:block;width:20px;margin-left:-10px;content:"";border-bottom:1px solid #f7f7f7}.popover.bs-tether-element-attached-right,.popover.popover-left{margin-left:-10px}.popover.bs-tether-element-attached-right::after,.popover.bs-tether-element-attached-right::before,.popover.popover-left::after,.popover.popover-left::before{top:50%;border-right-width:0}.popover.bs-tether-element-attached-right::before,.popover.popover-left::before{right:-11px;margin-top:-11px;border-left-color:rgba(0,0,0,.25)}.popover.bs-tether-element-attached-right::after,.popover.popover-left::after{right:-10px;margin-top:-10px;border-left-color:#fff}.popover-title{padding:8px 14px;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-right-radius:calc(.3rem - 1px);border-top-left-radius:calc(.3rem - 1px)}.popover-title:empty{display:none}.popover-content{padding:9px 14px}.popover::after,.popover::before{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover::before{content:"";border-width:11px}.popover::after{content:"";border-width:10px}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-item{position:relative;display:none;width:100%}@media (-webkit-transform-3d){.carousel-item{-webkit-transition:-webkit-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out,-o-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}}@supports ((-webkit-transform:translate3d(0,0,0)) or (transform:translate3d(0,0,0))){.carousel-item{-webkit-transition:-webkit-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out,-o-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.carousel-item-next,.carousel-item-prev{position:absolute;top:0}@media (-webkit-transform-3d){.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.active.carousel-item-right,.carousel-item-next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.active.carousel-item-left,.carousel-item-prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@supports ((-webkit-transform:translate3d(0,0,0)) or (transform:translate3d(0,0,0))){.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.active.carousel-item-right,.carousel-item-next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.active.carousel-item-left,.carousel-item-prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:transparent no-repeat center center;-webkit-background-size:100% 100%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:10px;left:0;z-index:15;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{position:relative;-webkit-box-flex:1;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;max-width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:rgba(255,255,255,.5)}.carousel-indicators li::before{position:absolute;top:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators li::after{position:absolute;bottom:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators .active{background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-faded{background-color:#f7f7f7}.bg-primary{background-color:#0275d8!important}a.bg-primary:focus,a.bg-primary:hover{background-color:#025aa5!important}.bg-success{background-color:#5cb85c!important}a.bg-success:focus,a.bg-success:hover{background-color:#449d44!important}.bg-info{background-color:#5bc0de!important}a.bg-info:focus,a.bg-info:hover{background-color:#31b0d5!important}.bg-warning{background-color:#f0ad4e!important}a.bg-warning:focus,a.bg-warning:hover{background-color:#ec971f!important}.bg-danger{background-color:#d9534f!important}a.bg-danger:focus,a.bg-danger:hover{background-color:#c9302c!important}.bg-inverse{background-color:#292b2c!important}a.bg-inverse:focus,a.bg-inverse:hover{background-color:#101112!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.rounded{border-radius:.25rem}.rounded-top{border-top-right-radius:.25rem;border-top-left-radius:.25rem}.rounded-right{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.rounded-bottom{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-left{border-bottom-left-radius:.25rem;border-top-left-radius:.25rem}.rounded-circle{border-radius:50%}.rounded-0{border-radius:0}.clearfix::after{display:block;content:"";clear:both}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-cell{display:table-cell!important}.d-flex{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}.flex-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.flex-last{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.flex-unordered{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;-ms-grid-row-align:auto!important;align-self:auto!important}.align-self-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;-ms-grid-row-align:center!important;align-self:center!important}.align-self-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;-ms-grid-row-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.flex-sm-last{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.flex-sm-unordered{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.flex-sm-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-sm-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;-ms-grid-row-align:auto!important;align-self:auto!important}.align-self-sm-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;-ms-grid-row-align:center!important;align-self:center!important}.align-self-sm-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;-ms-grid-row-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.flex-md-last{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.flex-md-unordered{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.flex-md-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-md-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;-ms-grid-row-align:auto!important;align-self:auto!important}.align-self-md-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;-ms-grid-row-align:center!important;align-self:center!important}.align-self-md-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;-ms-grid-row-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.flex-lg-last{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.flex-lg-unordered{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.flex-lg-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-lg-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;-ms-grid-row-align:auto!important;align-self:auto!important}.align-self-lg-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;-ms-grid-row-align:center!important;align-self:center!important}.align-self-lg-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;-ms-grid-row-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.flex-xl-last{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.flex-xl-unordered{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.flex-xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-xl-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;-ms-grid-row-align:auto!important;align-self:auto!important}.align-self-xl-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;-ms-grid-row-align:center!important;align-self:center!important}.align-self-xl-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;-ms-grid-row-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1030}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.m-0{margin:0 0!important}.mt-0{margin-top:0!important}.mr-0{margin-right:0!important}.mb-0{margin-bottom:0!important}.ml-0{margin-left:0!important}.mx-0{margin-right:0!important;margin-left:0!important}.my-0{margin-top:0!important;margin-bottom:0!important}.m-1{margin:.25rem .25rem!important}.mt-1{margin-top:.25rem!important}.mr-1{margin-right:.25rem!important}.mb-1{margin-bottom:.25rem!important}.ml-1{margin-left:.25rem!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.m-2{margin:.5rem .5rem!important}.mt-2{margin-top:.5rem!important}.mr-2{margin-right:.5rem!important}.mb-2{margin-bottom:.5rem!important}.ml-2{margin-left:.5rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.m-3{margin:1rem 1rem!important}.mt-3{margin-top:1rem!important}.mr-3{margin-right:1rem!important}.mb-3{margin-bottom:1rem!important}.ml-3{margin-left:1rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.m-4{margin:1.5rem 1.5rem!important}.mt-4{margin-top:1.5rem!important}.mr-4{margin-right:1.5rem!important}.mb-4{margin-bottom:1.5rem!important}.ml-4{margin-left:1.5rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-5{margin:3rem 3rem!important}.mt-5{margin-top:3rem!important}.mr-5{margin-right:3rem!important}.mb-5{margin-bottom:3rem!important}.ml-5{margin-left:3rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.p-0{padding:0 0!important}.pt-0{padding-top:0!important}.pr-0{padding-right:0!important}.pb-0{padding-bottom:0!important}.pl-0{padding-left:0!important}.px-0{padding-right:0!important;padding-left:0!important}.py-0{padding-top:0!important;padding-bottom:0!important}.p-1{padding:.25rem .25rem!important}.pt-1{padding-top:.25rem!important}.pr-1{padding-right:.25rem!important}.pb-1{padding-bottom:.25rem!important}.pl-1{padding-left:.25rem!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.p-2{padding:.5rem .5rem!important}.pt-2{padding-top:.5rem!important}.pr-2{padding-right:.5rem!important}.pb-2{padding-bottom:.5rem!important}.pl-2{padding-left:.5rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.p-3{padding:1rem 1rem!important}.pt-3{padding-top:1rem!important}.pr-3{padding-right:1rem!important}.pb-3{padding-bottom:1rem!important}.pl-3{padding-left:1rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.p-4{padding:1.5rem 1.5rem!important}.pt-4{padding-top:1.5rem!important}.pr-4{padding-right:1.5rem!important}.pb-4{padding-bottom:1.5rem!important}.pl-4{padding-left:1.5rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-5{padding:3rem 3rem!important}.pt-5{padding-top:3rem!important}.pr-5{padding-right:3rem!important}.pb-5{padding-bottom:3rem!important}.pl-5{padding-left:3rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.m-auto{margin:auto!important}.mt-auto{margin-top:auto!important}.mr-auto{margin-right:auto!important}.mb-auto{margin-bottom:auto!important}.ml-auto{margin-left:auto!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}@media (min-width:576px){.m-sm-0{margin:0 0!important}.mt-sm-0{margin-top:0!important}.mr-sm-0{margin-right:0!important}.mb-sm-0{margin-bottom:0!important}.ml-sm-0{margin-left:0!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.m-sm-1{margin:.25rem .25rem!important}.mt-sm-1{margin-top:.25rem!important}.mr-sm-1{margin-right:.25rem!important}.mb-sm-1{margin-bottom:.25rem!important}.ml-sm-1{margin-left:.25rem!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.m-sm-2{margin:.5rem .5rem!important}.mt-sm-2{margin-top:.5rem!important}.mr-sm-2{margin-right:.5rem!important}.mb-sm-2{margin-bottom:.5rem!important}.ml-sm-2{margin-left:.5rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.m-sm-3{margin:1rem 1rem!important}.mt-sm-3{margin-top:1rem!important}.mr-sm-3{margin-right:1rem!important}.mb-sm-3{margin-bottom:1rem!important}.ml-sm-3{margin-left:1rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.m-sm-4{margin:1.5rem 1.5rem!important}.mt-sm-4{margin-top:1.5rem!important}.mr-sm-4{margin-right:1.5rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.ml-sm-4{margin-left:1.5rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-sm-5{margin:3rem 3rem!important}.mt-sm-5{margin-top:3rem!important}.mr-sm-5{margin-right:3rem!important}.mb-sm-5{margin-bottom:3rem!important}.ml-sm-5{margin-left:3rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.p-sm-0{padding:0 0!important}.pt-sm-0{padding-top:0!important}.pr-sm-0{padding-right:0!important}.pb-sm-0{padding-bottom:0!important}.pl-sm-0{padding-left:0!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.p-sm-1{padding:.25rem .25rem!important}.pt-sm-1{padding-top:.25rem!important}.pr-sm-1{padding-right:.25rem!important}.pb-sm-1{padding-bottom:.25rem!important}.pl-sm-1{padding-left:.25rem!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.p-sm-2{padding:.5rem .5rem!important}.pt-sm-2{padding-top:.5rem!important}.pr-sm-2{padding-right:.5rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pl-sm-2{padding-left:.5rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.p-sm-3{padding:1rem 1rem!important}.pt-sm-3{padding-top:1rem!important}.pr-sm-3{padding-right:1rem!important}.pb-sm-3{padding-bottom:1rem!important}.pl-sm-3{padding-left:1rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.p-sm-4{padding:1.5rem 1.5rem!important}.pt-sm-4{padding-top:1.5rem!important}.pr-sm-4{padding-right:1.5rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pl-sm-4{padding-left:1.5rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-sm-5{padding:3rem 3rem!important}.pt-sm-5{padding-top:3rem!important}.pr-sm-5{padding-right:3rem!important}.pb-sm-5{padding-bottom:3rem!important}.pl-sm-5{padding-left:3rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto{margin-top:auto!important}.mr-sm-auto{margin-right:auto!important}.mb-sm-auto{margin-bottom:auto!important}.ml-sm-auto{margin-left:auto!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}}@media (min-width:768px){.m-md-0{margin:0 0!important}.mt-md-0{margin-top:0!important}.mr-md-0{margin-right:0!important}.mb-md-0{margin-bottom:0!important}.ml-md-0{margin-left:0!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.m-md-1{margin:.25rem .25rem!important}.mt-md-1{margin-top:.25rem!important}.mr-md-1{margin-right:.25rem!important}.mb-md-1{margin-bottom:.25rem!important}.ml-md-1{margin-left:.25rem!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.m-md-2{margin:.5rem .5rem!important}.mt-md-2{margin-top:.5rem!important}.mr-md-2{margin-right:.5rem!important}.mb-md-2{margin-bottom:.5rem!important}.ml-md-2{margin-left:.5rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.m-md-3{margin:1rem 1rem!important}.mt-md-3{margin-top:1rem!important}.mr-md-3{margin-right:1rem!important}.mb-md-3{margin-bottom:1rem!important}.ml-md-3{margin-left:1rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.m-md-4{margin:1.5rem 1.5rem!important}.mt-md-4{margin-top:1.5rem!important}.mr-md-4{margin-right:1.5rem!important}.mb-md-4{margin-bottom:1.5rem!important}.ml-md-4{margin-left:1.5rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-md-5{margin:3rem 3rem!important}.mt-md-5{margin-top:3rem!important}.mr-md-5{margin-right:3rem!important}.mb-md-5{margin-bottom:3rem!important}.ml-md-5{margin-left:3rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.p-md-0{padding:0 0!important}.pt-md-0{padding-top:0!important}.pr-md-0{padding-right:0!important}.pb-md-0{padding-bottom:0!important}.pl-md-0{padding-left:0!important}.px-md-0{padding-right:0!important;padding-left:0!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.p-md-1{padding:.25rem .25rem!important}.pt-md-1{padding-top:.25rem!important}.pr-md-1{padding-right:.25rem!important}.pb-md-1{padding-bottom:.25rem!important}.pl-md-1{padding-left:.25rem!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.p-md-2{padding:.5rem .5rem!important}.pt-md-2{padding-top:.5rem!important}.pr-md-2{padding-right:.5rem!important}.pb-md-2{padding-bottom:.5rem!important}.pl-md-2{padding-left:.5rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.p-md-3{padding:1rem 1rem!important}.pt-md-3{padding-top:1rem!important}.pr-md-3{padding-right:1rem!important}.pb-md-3{padding-bottom:1rem!important}.pl-md-3{padding-left:1rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.p-md-4{padding:1.5rem 1.5rem!important}.pt-md-4{padding-top:1.5rem!important}.pr-md-4{padding-right:1.5rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pl-md-4{padding-left:1.5rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-md-5{padding:3rem 3rem!important}.pt-md-5{padding-top:3rem!important}.pr-md-5{padding-right:3rem!important}.pb-md-5{padding-bottom:3rem!important}.pl-md-5{padding-left:3rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto{margin-top:auto!important}.mr-md-auto{margin-right:auto!important}.mb-md-auto{margin-bottom:auto!important}.ml-md-auto{margin-left:auto!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}}@media (min-width:992px){.m-lg-0{margin:0 0!important}.mt-lg-0{margin-top:0!important}.mr-lg-0{margin-right:0!important}.mb-lg-0{margin-bottom:0!important}.ml-lg-0{margin-left:0!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.m-lg-1{margin:.25rem .25rem!important}.mt-lg-1{margin-top:.25rem!important}.mr-lg-1{margin-right:.25rem!important}.mb-lg-1{margin-bottom:.25rem!important}.ml-lg-1{margin-left:.25rem!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.m-lg-2{margin:.5rem .5rem!important}.mt-lg-2{margin-top:.5rem!important}.mr-lg-2{margin-right:.5rem!important}.mb-lg-2{margin-bottom:.5rem!important}.ml-lg-2{margin-left:.5rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.m-lg-3{margin:1rem 1rem!important}.mt-lg-3{margin-top:1rem!important}.mr-lg-3{margin-right:1rem!important}.mb-lg-3{margin-bottom:1rem!important}.ml-lg-3{margin-left:1rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.m-lg-4{margin:1.5rem 1.5rem!important}.mt-lg-4{margin-top:1.5rem!important}.mr-lg-4{margin-right:1.5rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.ml-lg-4{margin-left:1.5rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-lg-5{margin:3rem 3rem!important}.mt-lg-5{margin-top:3rem!important}.mr-lg-5{margin-right:3rem!important}.mb-lg-5{margin-bottom:3rem!important}.ml-lg-5{margin-left:3rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.p-lg-0{padding:0 0!important}.pt-lg-0{padding-top:0!important}.pr-lg-0{padding-right:0!important}.pb-lg-0{padding-bottom:0!important}.pl-lg-0{padding-left:0!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.p-lg-1{padding:.25rem .25rem!important}.pt-lg-1{padding-top:.25rem!important}.pr-lg-1{padding-right:.25rem!important}.pb-lg-1{padding-bottom:.25rem!important}.pl-lg-1{padding-left:.25rem!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.p-lg-2{padding:.5rem .5rem!important}.pt-lg-2{padding-top:.5rem!important}.pr-lg-2{padding-right:.5rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pl-lg-2{padding-left:.5rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.p-lg-3{padding:1rem 1rem!important}.pt-lg-3{padding-top:1rem!important}.pr-lg-3{padding-right:1rem!important}.pb-lg-3{padding-bottom:1rem!important}.pl-lg-3{padding-left:1rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.p-lg-4{padding:1.5rem 1.5rem!important}.pt-lg-4{padding-top:1.5rem!important}.pr-lg-4{padding-right:1.5rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pl-lg-4{padding-left:1.5rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-lg-5{padding:3rem 3rem!important}.pt-lg-5{padding-top:3rem!important}.pr-lg-5{padding-right:3rem!important}.pb-lg-5{padding-bottom:3rem!important}.pl-lg-5{padding-left:3rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto{margin-top:auto!important}.mr-lg-auto{margin-right:auto!important}.mb-lg-auto{margin-bottom:auto!important}.ml-lg-auto{margin-left:auto!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0 0!important}.mt-xl-0{margin-top:0!important}.mr-xl-0{margin-right:0!important}.mb-xl-0{margin-bottom:0!important}.ml-xl-0{margin-left:0!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.m-xl-1{margin:.25rem .25rem!important}.mt-xl-1{margin-top:.25rem!important}.mr-xl-1{margin-right:.25rem!important}.mb-xl-1{margin-bottom:.25rem!important}.ml-xl-1{margin-left:.25rem!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.m-xl-2{margin:.5rem .5rem!important}.mt-xl-2{margin-top:.5rem!important}.mr-xl-2{margin-right:.5rem!important}.mb-xl-2{margin-bottom:.5rem!important}.ml-xl-2{margin-left:.5rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.m-xl-3{margin:1rem 1rem!important}.mt-xl-3{margin-top:1rem!important}.mr-xl-3{margin-right:1rem!important}.mb-xl-3{margin-bottom:1rem!important}.ml-xl-3{margin-left:1rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.m-xl-4{margin:1.5rem 1.5rem!important}.mt-xl-4{margin-top:1.5rem!important}.mr-xl-4{margin-right:1.5rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.ml-xl-4{margin-left:1.5rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-xl-5{margin:3rem 3rem!important}.mt-xl-5{margin-top:3rem!important}.mr-xl-5{margin-right:3rem!important}.mb-xl-5{margin-bottom:3rem!important}.ml-xl-5{margin-left:3rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.p-xl-0{padding:0 0!important}.pt-xl-0{padding-top:0!important}.pr-xl-0{padding-right:0!important}.pb-xl-0{padding-bottom:0!important}.pl-xl-0{padding-left:0!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.p-xl-1{padding:.25rem .25rem!important}.pt-xl-1{padding-top:.25rem!important}.pr-xl-1{padding-right:.25rem!important}.pb-xl-1{padding-bottom:.25rem!important}.pl-xl-1{padding-left:.25rem!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.p-xl-2{padding:.5rem .5rem!important}.pt-xl-2{padding-top:.5rem!important}.pr-xl-2{padding-right:.5rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pl-xl-2{padding-left:.5rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.p-xl-3{padding:1rem 1rem!important}.pt-xl-3{padding-top:1rem!important}.pr-xl-3{padding-right:1rem!important}.pb-xl-3{padding-bottom:1rem!important}.pl-xl-3{padding-left:1rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.p-xl-4{padding:1.5rem 1.5rem!important}.pt-xl-4{padding-top:1.5rem!important}.pr-xl-4{padding-right:1.5rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pl-xl-4{padding-left:1.5rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-xl-5{padding:3rem 3rem!important}.pt-xl-5{padding-top:3rem!important}.pr-xl-5{padding-right:3rem!important}.pb-xl-5{padding-bottom:3rem!important}.pl-xl-5{padding-left:3rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto{margin-top:auto!important}.mr-xl-auto{margin-right:auto!important}.mb-xl-auto{margin-bottom:auto!important}.ml-xl-auto{margin-left:auto!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}}.text-justify{text-align:justify!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-normal{font-weight:400}.font-weight-bold{font-weight:700}.font-italic{font-style:italic}.text-white{color:#fff!important}.text-muted{color:#636c72!important}a.text-muted:focus,a.text-muted:hover{color:#4b5257!important}.text-primary{color:#0275d8!important}a.text-primary:focus,a.text-primary:hover{color:#025aa5!important}.text-success{color:#5cb85c!important}a.text-success:focus,a.text-success:hover{color:#449d44!important}.text-info{color:#5bc0de!important}a.text-info:focus,a.text-info:hover{color:#31b0d5!important}.text-warning{color:#f0ad4e!important}a.text-warning:focus,a.text-warning:hover{color:#ec971f!important}.text-danger{color:#d9534f!important}a.text-danger:focus,a.text-danger:hover{color:#c9302c!important}.text-gray-dark{color:#292b2c!important}a.text-gray-dark:focus,a.text-gray-dark:hover{color:#101112!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.invisible{visibility:hidden!important}.hidden-xs-up{display:none!important}@media (max-width:575px){.hidden-xs-down{display:none!important}}@media (min-width:576px){.hidden-sm-up{display:none!important}}@media (max-width:767px){.hidden-sm-down{display:none!important}}@media (min-width:768px){.hidden-md-up{display:none!important}}@media (max-width:991px){.hidden-md-down{display:none!important}}@media (min-width:992px){.hidden-lg-up{display:none!important}}@media (max-width:1199px){.hidden-lg-down{display:none!important}}@media (min-width:1200px){.hidden-xl-up{display:none!important}}.hidden-xl-down{display:none!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}}/*# sourceMappingURL=bootstrap.min.css.map */
\ No newline at end of file
diff --git a/src/components/agents.js b/src/components/agents.js
index 19b0575..f5d28c1 100644
--- a/src/components/agents.js
+++ b/src/components/agents.js
@@ -1,22 +1,8 @@
-import React, { Component } from 'react';
-
-import { connect } from 'react-redux';
-
-import Header from './header';
-import SessionList from './session-list';
+import React, {PureComponent} from 'react';
import View from './view';
-import Flag from "react-flags";
-
-class Agents extends Component {
- constructor(props) {
- super(props);
- }
-
- componentWillMount() {
- const { dispatch } = this.props;
- }
+export default class Agents extends PureComponent {
render() {
return (
@@ -24,11 +10,4 @@ class Agents extends Component {
);
}
-}
-
-function mapStateToProps(state) {
- return {
- };
-}
-
-export default connect(mapStateToProps)(Agents);
+}
\ No newline at end of file
diff --git a/src/components/app.js b/src/components/app.js
index 4982f96..e8a5bf7 100644
--- a/src/components/app.js
+++ b/src/components/app.js
@@ -1,21 +1,22 @@
import React, { Component } from 'react';
import { connect } from 'react-redux';
-import Header from './header';
-
import Dashboard from './dashboard';
-import Attacks from './attacks';
import Events from './events';
import Agents from './agents';
+/*
+import SessionShow from './components/session-show';
+import Socket from './components/socket';
+import Server from './components/server';
+import Random from './components/random';
+*/
import Navigation from './navigation';
-import Search from './search';
-import SessionList from './session-list';
import ConfigurationOverview from './configuration-overview';
import NotFoundPage from './not-found';
-import { HashRouter, BrowserRouter, Redirect, Switch, Route } from 'react-router-dom';
+import { Redirect, Switch, Route } from 'react-router-dom';
class App extends Component {
render() {
@@ -32,12 +33,14 @@ class App extends Component {
}
let versionAvailable = null;
- if (false) {
+ /*
+ if (...) {
versionAvailable =
;
}
+ */
return (
@@ -57,18 +60,25 @@ class App extends Component {
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+ {/*
+
+
+
+
+
+ */}
+
+
);
- }
+ }
}
function mapStateToProps(state) {
diff --git a/src/components/attacks.js b/src/components/attacks.js
index f559e36..0626e55 100644
--- a/src/components/attacks.js
+++ b/src/components/attacks.js
@@ -2,20 +2,9 @@ import React, { Component } from 'react';
import { connect } from 'react-redux';
-import Header from './header';
-import SessionList from './session-list';
-
import View from './view';
class Attacks extends Component {
- constructor(props) {
- super(props);
- }
-
- componentWillMount() {
- const { dispatch } = this.props;
- }
-
renderTable() {
if(!this.props.events) {
return (
@@ -27,18 +16,18 @@ class Attacks extends Component {
return events.map((event, i) => {
- const message = (event.message || event.payload );
-
- return (
-
- {event.date.format('lll')} |
- {event.sensor} |
- {event.category} |
- {event["source-ip"] } ({event["source-port"] }) |
- {event["destination-ip"] } ({event["destination-port"] }) |
- {message} |
-
-
+ const message = (event.message || event.payload);
+
+ return (
+
+ {event.date.format('lll')} |
+ {event.sensor} |
+ {event.category} |
+ {event["source-ip"] } ({event["source-port"] }) |
+ {event["destination-ip"] } ({event["destination-port"] }) |
+ {message} |
+
+
);
});
}
diff --git a/src/components/configuration-overview.js b/src/components/configuration-overview.js
index 641be61..ffad950 100644
--- a/src/components/configuration-overview.js
+++ b/src/components/configuration-overview.js
@@ -1,34 +1,12 @@
-import React, { Component } from 'react';
-import { connect } from 'react-redux';
-import { bindActionCreators } from 'redux';
-import { addSession, fetchSessions } from '../actions/index';
-import { Link } from 'react-router';
+import React, { PureComponent } from 'react';
import View from './view';
-class ConfigurationOverview extends Component {
- constructor(props) {
- super(props);
- }
-
- componentWillMount() {
- const { dispatch } = this.props;
- }
-
- renderTable() {
- }
-
- render() {
- return (
-
+export default class ConfigurationOverview extends PureComponent {
+ render() {
+ return (
+
Configuration
-
- );
- }
-}
-
-function mapStateToProps(state) {
- return {
- };
-}
-
-export default connect(mapStateToProps)(ConfigurationOverview);
+
+ );
+ }
+}
\ No newline at end of file
diff --git a/src/components/dashboard.js b/src/components/dashboard.js
index 622cc57..1ff1d81 100644
--- a/src/components/dashboard.js
+++ b/src/components/dashboard.js
@@ -2,19 +2,13 @@ import React, { Component } from 'react';
import { connect } from 'react-redux';
-import Header from './header';
-import SessionList from './session-list';
import Earth from './earth';
import View from './view';
import moment from 'moment';
import Flag from "react-flags";
-import * as d3 from 'd3';
-import * as topojson from 'topojson';
-
import * as countries from 'i18n-iso-countries';
-import { clearHotCountries } from '../actions/index';
import classNames from 'classnames';
@@ -41,7 +35,7 @@ class Dashboard extends Component {
var uptime = now.diff(moment(start), 'minutes');
let hotCountries = this.props.hotCountries.sort((left, right) => {
- return right.count - left.count;
+ return right.count - left.count;
}).slice(0, 10).map((country, i) => {
const isocode = country['isocode'];
@@ -79,17 +73,17 @@ class Dashboard extends Component {
return red;
}, []).slice(0, 10).map((event, i) => {
return i) }) } style={{ fontFamily: 'courier', fontSize: '0.8em' }}>
-
-
- |
-
- { `${event["source-ip"]}` }
+ |
+
+ |
+
+ { `${event["source-ip"]}` }
|
{ `${event["category"]}` }
@@ -128,7 +122,7 @@ class Dashboard extends Component {
Last attacks
- { events }
+ { events }
diff --git a/src/components/earth.js b/src/components/earth.js
index 788a983..c29ea53 100644
--- a/src/components/earth.js
+++ b/src/components/earth.js
@@ -2,10 +2,6 @@ import React, { Component } from 'react';
import { connect } from 'react-redux';
-import Header from './header';
-import SessionList from './session-list';
-
-import View from './view';
import moment from 'moment';
import * as d3 from 'd3';
@@ -14,37 +10,9 @@ import * as topojson from 'topojson';
import Color from 'color';
import classNames from 'classnames';
-import { fetchCountries, clearHotCountries } from '../actions/index';
-
-function darken(col, amt) {
- var usePound = false;
-
- if (col[0] == "#") {
- col = col.slice(1);
- usePound = true;
- }
-
- var num = parseInt(col,16);
-
- var r = (num >> 16) + amt;
-
- if (r > 255) r = 255;
- else if (r < 0) r = 0;
-
- var b = ((num >> 8) & 0x00FF) + amt;
-
- if (b > 255) b = 255;
- else if (b < 0) b = 0;
-
- var g = (num & 0x0000FF) + amt;
+import { fetchCountries } from '../actions/index';
- if (g > 255) g = 255;
- else if (g < 0) g = 0;
-
- return (usePound?"#":"") + (g | (b << 8) | (r << 16)).toString(16);
-}
-
-class Earth extends React.Component {
+class Earth extends Component {
constructor() {
super();
@@ -64,44 +32,39 @@ class Earth extends React.Component {
this.setState({loading: false});
});
- let canvas = this.refs.canvas;
- const context = canvas.getContext('2d');
-
const angle = 90;
this.projection = d3.geoOrthographic()
.clipAngle(angle);
var drag = d3.drag()
- .on('drag', () => {
- var dx = d3.event.dx;
- var dy = d3.event.dy;
-
- var rotation = this.projection.rotate();
- var radius = this.projection.scale();
+ .on('drag', () => {
+ var dx = d3.event.dx;
+ var dy = d3.event.dy;
- var scale = d3.scaleLinear()
- .domain([-1 * radius, radius])
- .range([-90, 90]);
+ var rotation = this.projection.rotate();
+ var radius = this.projection.scale();
- var degX = scale(dx);
- var degY = scale(dy);
+ var scale = d3.scaleLinear()
+ .domain([-1 * radius, radius])
+ .range([-90, 90]);
- rotation[0] += degX;
- rotation[1] -= degY;
+ var degX = scale(dx);
+ var degY = scale(dy);
- if (rotation[1] > 90) rotation[1] = 90;
- if (rotation[1] < -90) rotation[1] = -90;
- if (rotation[0] >= 180) rotation[0] -= 360;
+ rotation[0] += degX;
+ rotation[1] -= degY;
- this.projection.rotate(rotation);
+ if (rotation[1] > 90) rotation[1] = 90;
+ if (rotation[1] < -90) rotation[1] = -90;
+ if (rotation[0] >= 180) rotation[0] -= 360;
- this.updateCanvas();
- });
+ this.projection.rotate(rotation);
- const { width, height } = canvas;
+ this.updateCanvas();
+ });
var zoom = d3.zoom()
- .scaleExtent([200, 2000]);
+ .scaleExtent([200, 2000]);
zoom
.on('zoom', (event) => {
@@ -110,8 +73,8 @@ class Earth extends React.Component {
this.updateCanvas();
});
- d3.select(this.refs.canvas).call(drag);
- d3.select(this.refs.canvas).call(zoom);
+ d3.select(this.canvas).call(drag);
+ d3.select(this.canvas).call(zoom);
window.addEventListener("resize", () => this.updateDimensions);
}
@@ -119,8 +82,8 @@ class Earth extends React.Component {
componentWillUnmount() {
window.removeEventListener("resize", () => this.updateDimensions);
}
-
- componentWillReceiveProps(nextProps, nextState) {
+
+ componentDidUpdate(nextProps, nextState) {
if (!nextProps.countries.length)
return;
@@ -162,15 +125,15 @@ class Earth extends React.Component {
let projection = this.projection;
d3.transition()
- .duration(2500)
- .tween("rotate", () => {
- var r = d3.interpolate(projection.rotate(), [-p[0], -p[1]]);
- return (t) => {
- projection.rotate(r(t));
-
- this.updateCanvas();
- };
- });
+ .duration(2500)
+ .tween("rotate", () => {
+ var r = d3.interpolate(projection.rotate(), [-p[0], -p[1]]);
+ return (t) => {
+ projection.rotate(r(t));
+
+ this.updateCanvas();
+ };
+ });
return
}
@@ -181,14 +144,14 @@ class Earth extends React.Component {
documentElement = d.documentElement,
body = d.getElementsByTagName('body')[0],
width = w.innerWidth || documentElement.clientWidth || body.clientWidth,
- height = w.innerHeight|| documentElement.clientHeight|| body.clientHeight;
+ height = w.innerHeight || documentElement.clientHeight || body.clientHeight;
this.setState({width: width, height: height});
}
updateCanvas() {
requestAnimationFrame(() => {
- let canvas = this.refs.canvas;
+ let canvas = this.canvas;
if (!canvas)
return;
@@ -198,7 +161,7 @@ class Earth extends React.Component {
context(context).
projection(
this.projection
- .translate([canvas.width/2, (canvas.height * (5/12))])
+ .translate([canvas.width / 2, (canvas.height * (5 / 12))])
);
context.clearRect(0, 0, canvas.width, canvas.height);
@@ -271,7 +234,7 @@ class Earth extends React.Component {
return (
-
);
}
diff --git a/src/components/events.js b/src/components/events.js
index 4ddf965..2f1e68f 100644
--- a/src/components/events.js
+++ b/src/components/events.js
@@ -3,21 +3,11 @@ import moment from 'moment';
import { connect } from 'react-redux';
-import Header from './header';
-import SessionList from './session-list';
import View from './view';
import Flag from "react-flags";
class Events extends Component {
- constructor(props) {
- super(props);
- }
-
- componentWillMount() {
- const { dispatch } = this.props;
- }
-
renderTable() {
if(!this.props.events) {
return (
@@ -31,11 +21,11 @@ class Events extends Component {
return events.sort(function (left, right) {
return moment(right.date).utc().diff(moment(left.date).utc());
}).slice(0, 10).map((event, i) => {
- let message = (event.message || event.payload );
+ let message = (event.message || event.payload);
if (event.category == 'ssh') {
message = event['ssh.request-type'];
- };
+ }
return (
|
@@ -43,13 +33,13 @@ class Events extends Component {
{event.sensor} |
{event.category} |
- {event["source-ip"] } ({event["source-port"] }) |
+ name={event['source.country.isocode']}
+ basePath="images/flags"
+ format="png"
+ pngSize={16}
+ shiny={false}
+ />
+ {event["source-ip"] } ({event["source-port"] })
{event["destination-ip"] } ({event["destination-port"] }) |
{message} |
diff --git a/src/components/header.js b/src/components/header.js
index fec131c..2ec7bfa 100644
--- a/src/components/header.js
+++ b/src/components/header.js
@@ -1,15 +1,14 @@
-import React, { Component } from 'react';
-import { Link } from 'react-router';
+import React, { PureComponent } from 'react';
-class Header extends Component {
+class Header extends PureComponent {
render() {
return (
-
-
{ this.props.subtitle }
- { this.props.title }
-
- );
- }
+
+
{ this.props.subtitle }
+ { this.props.title }
+
+ );
+ }
}
export default Header;
diff --git a/src/components/index.js b/src/components/index.js
deleted file mode 100644
index 1e7a195..0000000
--- a/src/components/index.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default as Websocket } from './websocket';
diff --git a/src/components/navigation.js b/src/components/navigation.js
index c2bc5c9..b7d3271 100644
--- a/src/components/navigation.js
+++ b/src/components/navigation.js
@@ -1,5 +1,5 @@
import React, { Component } from 'react';
-import { Link, NavLink } from 'react-router-dom';
+import { NavLink } from 'react-router-dom';
class Navigation extends Component {
render() {
@@ -7,19 +7,19 @@ class Navigation extends Component {
- Dashboard
-
- Overview
+ Overview
- Events
-
- Overview
+ Overview
- Agents
-
- Overview
+ Overview
- Configuration
-
- Overview
+ Overview
- Other
-
diff --git a/src/components/not-found.js b/src/components/not-found.js
index b65b444..089b205 100644
--- a/src/components/not-found.js
+++ b/src/components/not-found.js
@@ -1,34 +1,12 @@
-import React, { Component } from 'react';
-import { connect } from 'react-redux';
-import { bindActionCreators } from 'redux';
-import { addSession, fetchSessions } from '../actions/index';
-import { Link } from 'react-router';
+import React, { PureComponent } from 'react';
import View from './view';
-class NotFoundPage extends Component {
- constructor(props) {
- super(props);
- }
-
- componentWillMount() {
- const { dispatch } = this.props;
- }
-
- renderTable() {
- }
-
- render() {
- return (
-
+export default class NotFoundPage extends PureComponent {
+ render() {
+ return (
+
Not found
-
- );
- }
-}
-
-function mapStateToProps(state) {
- return {
- };
-}
-
-export default connect(mapStateToProps)(NotFoundPage);
+
+ );
+ }
+}
\ No newline at end of file
diff --git a/src/components/random.js b/src/components/random.js
index c85c1b8..cf2aba5 100644
--- a/src/components/random.js
+++ b/src/components/random.js
@@ -1,126 +1,126 @@
import React, { Component } from 'react';
class Socket extends Component {
- constructor() {
- super();
+ constructor() {
+ super();
- this.state = ({ messages: [], socket: null });
- }
+ this.state = ({ messages: [], socket: null });
+ }
- componentDidMount() {
- this.connection = new WebSocket('ws://localhost:1234', 'echo-protocol');
- console.log(this.connection);
+ componentDidMount() {
+ this.connection = new WebSocket('ws://localhost:1234', 'echo-protocol');
+ console.log(this.connection);
- this.connection.onopen = (data) => {
- console.log('connection opened!');
- this.connection.send(JSON.stringify({ type: "id" }));
- }
+ this.connection.onopen = (data) => {
+ console.log('connection opened!');
+ this.connection.send(JSON.stringify({ type: "id" }));
+ }
- this.connection.onclose = () => {
- console.log('connection closed');
- }
+ this.connection.onclose = () => {
+ console.log('connection closed');
+ }
- this.setState ({socket: this.connection})
+ this.setState ({socket: this.connection})
- this.connection.onmessage = (message) => {
- console.log(message.type);
- this.setState({
- messages : this.state.messages.concat([ message.data ])
- })
+ this.connection.onmessage = (message) => {
+ console.log(message.type);
+ this.setState({
+ messages : this.state.messages.concat([ message.data ])
+ })
+ }
}
- }
- componentWillUnmount() {
- this.state.socket.close();
- }
+ componentWillUnmount() {
+ this.state.socket.close();
+ }
- renderMessages() {
- return this.state.messages.map((message, i) => {
- return (
-
- {message}
- );
- })
- }
+ renderMessages() {
+ return this.state.messages.map((message, i) => {
+ return (
+ - {message}
+ );
+ })
+ }
- exampleMessage() {
- return {
- type: "message",
- data: "sample text"
+ exampleMessage() {
+ return {
+ type: "message",
+ data: "sample text"
+ }
}
- }
- exampleBroadcast() {
- return {
- type: "broadcast",
- data: "sample text"
+ exampleBroadcast() {
+ return {
+ type: "broadcast",
+ data: "sample text"
+ }
}
- }
- render() {
- return (
-
-
-
-
- Date |
- 10/02/2017 |
-
-
- Origin |
-
- unknown
- |
-
-
- Start date |
- 10/02/2017 10:10 |
-
-
- End date |
- 10/02/2017 10:11 |
-
-
- Username |
- root |
-
-
- Password |
- root |
-
-
-
|
-
-
- Request types: |
-
-
- pty-req |
- xterm-256colorx;û%%ÿÿ !"#$'()2356789:;=>FHIJKZ[\] |
-
-
- shell |
- |
-
-
- exit-status |
- |
-
-
-
-
-
+ render() {
+ return (
+
+
+
+
+ Date |
+ 10/02/2017 |
+
+
+ Origin |
+
+ unknown
+ |
+
+
+ Start date |
+ 10/02/2017 10:10 |
+
+
+ End date |
+ 10/02/2017 10:11 |
+
+
+ Username |
+ root |
+
+
+ Password |
+ root |
+
+
+
|
+
+
+ Request types: |
+
+
+ pty-req |
+ {`xterm-256colorx;û%%ÿÿ !"#$'()2356789:;=>FHIJKZ[\\]`} |
+
+
+ shell |
+ |
+
+
+ exit-status |
+ |
+
+
+
+
+
Welcome to Ubuntu 14.04.5 LTS (GNU/Linux 4.4.0-31-generic x86_64)
-
+
* Documentation: https://help.ubuntu.com/
- Last login: Fri Feb 10 08:25:09 2017 from 10.0.3.1
- {this.renderMessages()}
-
-
-
-
-
- );
- }
+ Last login: Fri Feb 10 08:25:09 2017 from 10.0.3.1
+ {this.renderMessages()}
+
+
+
+
+
+ );
+ }
}
export default Socket;
\ No newline at end of file
diff --git a/src/components/server.js b/src/components/server.js
index 53230a4..a37db11 100644
--- a/src/components/server.js
+++ b/src/components/server.js
@@ -1,40 +1,40 @@
import React, { Component } from 'react';
class Server extends Component {
- componentDidMount() {
- this.connection = new WebSocket('ws://localhost:1234', 'echo-protocol');
+ componentDidMount() {
+ this.connection = new WebSocket('ws://localhost:1234', 'echo-protocol');
- this.connection.onopen = () => {
- console.log('connection opened!');
- }
+ this.connection.onopen = () => {
+ console.log('connection opened!');
+ }
- this.connection.onclose = () => {
- console.log('connection closed');
- }
+ this.connection.onclose = () => {
+ console.log('connection closed');
+ }
+
+ this.setState ({socket: this.connection})
- this.setState ({socket: this.connection})
+ }
- }
+ componentWillUnmount() {
+ this.state.socket.close();
+ }
- componentWillUnmount() {
- this.state.socket.close();
- }
+ exampleBroadcast() {
+ return {
+ type: "broadcast",
+ data: "sample text"
+ }
+ }
- exampleBroadcast() {
- return {
- type: "broadcast",
- data: "sample text"
+ render() {
+ return (
+
+
Serverish
+
+
+ );
}
- }
-
- render() {
- return (
-
-
Serverish
-
-
- );
- }
}
export default Server;
\ No newline at end of file
diff --git a/src/components/session-list-header.js b/src/components/session-list-header.js
index 0f2cdb4..458ea6c 100644
--- a/src/components/session-list-header.js
+++ b/src/components/session-list-header.js
@@ -1,18 +1,18 @@
import React, { Component } from 'react';
export default class SessionListHeader extends Component {
- render() {
- return (
-
-
-
Get in on the action
-
-
-
Check out some of the live honeypots happening and being recorded right now around the world
-
-
-
-
- );
- }
+ render() {
+ return (
+
+
+
Get in on the action
+
+
+
Check out some of the live honeypots happening and being recorded right now around the world
+
+
+
+
+ );
+ }
}
\ No newline at end of file
diff --git a/src/components/session-list.js b/src/components/session-list.js
index 1f3889a..fb37cfa 100644
--- a/src/components/session-list.js
+++ b/src/components/session-list.js
@@ -1,97 +1,95 @@
import React, { Component } from 'react';
import { connect } from 'react-redux';
-import { bindActionCreators } from 'redux';
import { addSession, fetchSessions } from '../actions/index';
-import SessionListHeader from '../components/session-list-header';
import { Link } from 'react-router';
class SessionList extends Component {
- constructor(props) {
- super(props);
-
- this.onClickAddSession = this.onClickAddSession.bind(this);
- }
-
- componentWillMount() {
- const { dispatch } = this.props;
-
- dispatch(fetchSessions());
- }
-
- renderTable() {
- if(!this.props.sessions) {
- return (
- Loading...
- );
- }
-
- const { sessions } = this.props;
-
- return sessions.map((session, i) => {
- return (
-
- {session.id} |
- {session.date} |
- {session.location} |
- {session.started} |
- {session.ended} |
- {session.username} |
- {session.password} |
-
-
- );
- })
- }
-
- makeId()
- {
- var text = "";
- var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-";
-
- for( var i=0; i < 36; i++ )
- text += possible.charAt(Math.floor(Math.random() * possible.length));
-
- return text;
- }
-
- onClickAddSession() {
- const { dispatch } = this.props;
- console.debug("test");
-
- dispatch(addSession(this.makeId()));
- }
-
- render() {
- return (
-
-
-
-
-
- Session |
- Date |
- Location |
- Started |
- Ended |
- Username |
- Password |
-
-
-
- {this.renderTable()}
-
-
-
-
-
- );
- }
+ constructor(props) {
+ super(props);
+
+ this.onClickAddSession = this.onClickAddSession.bind(this);
+ }
+
+ componentWillMount() {
+ const { dispatch } = this.props;
+
+ dispatch(fetchSessions());
+ }
+
+ renderTable() {
+ if(!this.props.sessions) {
+ return (
+ Loading...
+ );
+ }
+
+ const { sessions } = this.props;
+
+ return sessions.map((session, i) => {
+ return (
+
+ {session.id} |
+ {session.date} |
+ {session.location} |
+ {session.started} |
+ {session.ended} |
+ {session.username} |
+ {session.password} |
+
+
+ );
+ })
+ }
+
+ makeId()
+ {
+ var text = "";
+ var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-";
+
+ for(var i = 0; i < 36; i++)
+ text += possible.charAt(Math.floor(Math.random() * possible.length));
+
+ return text;
+ }
+
+ onClickAddSession() {
+ const { dispatch } = this.props;
+ console.debug("test");
+
+ dispatch(addSession(this.makeId()));
+ }
+
+ render() {
+ return (
+
+
+
+
+
+ Session |
+ Date |
+ Location |
+ Started |
+ Ended |
+ Username |
+ Password |
+
+
+
+ {this.renderTable()}
+
+
+
+
+
+ );
+ }
}
function mapStateToProps(state) {
- return {
- sessions: state.sessions.all
- };
+ return {
+ sessions: state.sessions.all
+ };
}
export default connect(mapStateToProps)(SessionList);
diff --git a/src/components/session-show.js b/src/components/session-show.js
index 1fc0b22..1dfc51e 100644
--- a/src/components/session-show.js
+++ b/src/components/session-show.js
@@ -3,139 +3,139 @@ import { connect } from 'react-redux';
import { fetchSession, fetchSessionContent } from '../actions/index';
class SessionShow extends Component {
- constructor() {
- super();
+ constructor() {
+ super();
- this.addContentLine = this.addContentLine.bind(this);
- this.line = 0;
- this.totalLines = this.getContent().length;
- }
+ this.addContentLine = this.addContentLine.bind(this);
+ this.line = 0;
+ this.totalLines = this.getContent().length;
+ }
- componentWillMount() {
- const { dispatch } = this.props;
+ componentWillMount() {
+ const { dispatch } = this.props;
- dispatch(fetchSession(this.props.params.id));
- this.startTimeout(1000);
- }
+ dispatch(fetchSession(this.props.params.id));
+ this.startTimeout(1000);
+ }
- startTimeout(ms) {
- this.timeOut = setInterval(this.addContentLine, ms);
- }
+ startTimeout(ms) {
+ this.timeOut = setInterval(this.addContentLine, ms);
+ }
- addContentLine() {
- const { dispatch } = this.props;
+ addContentLine() {
+ const { dispatch } = this.props;
- if(this.line < this.totalLines) {
- dispatch(fetchSessionContent(this.getContent()[this.line]))
- this.line += 1;
- }
- if (this.line == this.totalLines) {
- clearInterval(this.timeOut);
- }
- }
+ if(this.line < this.totalLines) {
+ dispatch(fetchSessionContent(this.getContent()[this.line]))
+ this.line += 1;
+ }
+ if (this.line == this.totalLines) {
+ clearInterval(this.timeOut);
+ }
+ }
- renderContent() {
- const { content } = this.props;
+ renderContent() {
+ const { content } = this.props;
- return (
- content.map((line, i) => {
- return (
- {line}
- );
- })
- );
- }
+ return (
+ content.map((line, i) => {
+ return (
+ {line}
+ );
+ })
+ );
+ }
- getContent() {
- return [
- "root@honeytrap:~# logout",
- "root@honeytrap:~# exit",
- "root@honeytrap:~# logout",
- "root@honeytrap:~# exit",
- "root@honeytrap:~# logout",
- "root@honeytrap:~# exit",
- "root@honeytrap:~# logout",
- "root@honeytrap:~# exit",
- "root@honeytrap:~# logout",
- ]
- }
+ getContent() {
+ return [
+ "root@honeytrap:~# logout",
+ "root@honeytrap:~# exit",
+ "root@honeytrap:~# logout",
+ "root@honeytrap:~# exit",
+ "root@honeytrap:~# logout",
+ "root@honeytrap:~# exit",
+ "root@honeytrap:~# logout",
+ "root@honeytrap:~# exit",
+ "root@honeytrap:~# logout",
+ ]
+ }
- render() {
- if(!this.props.session) {
- return (
- Loading...
- );
- }
+ render() {
+ if(!this.props.session) {
+ return (
+ Loading...
+ );
+ }
- return (
-
-
-
-
- Date |
- {this.props.session.date} |
-
-
- Origin |
-
- {this.props.session.location}
- |
-
-
- Start date |
- {this.props.session.started} |
-
-
- End date |
- {this.props.session.ended} |
-
-
- Username |
- {this.props.session.username} |
-
-
- Password |
- {this.props.session.password} |
-
-
-
|
-
-
- Request types: |
-
-
- pty-req |
- xterm-256colorx;û%%ÿÿ !"#$'()2356789:;=>FHIJKZ[\] |
-
-
- shell |
- |
-
-
- exit-status |
- |
-
-
-
-
-
- Welcome to Ubuntu 14.04.5 LTS (GNU/Linux 4.4.0-31-generic x86_64)
-
- * Documentation: https://help.ubuntu.com/
- Last login: Fri Feb 10 08:25:09 2017 from 10.0.3.1
- {this.renderContent()}
-
-
-
- );
- }
+ return (
+
+
+
+
+ Date |
+ {this.props.session.date} |
+
+
+ Origin |
+
+ {this.props.session.location}
+ |
+
+
+ Start date |
+ {this.props.session.started} |
+
+
+ End date |
+ {this.props.session.ended} |
+
+
+ Username |
+ {this.props.session.username} |
+
+
+ Password |
+ {this.props.session.password} |
+
+
+
|
+
+
+ Request types: |
+
+
+ pty-req |
+ {`xterm-256colorx;û%%ÿÿ !"#$'()2356789:;=>FHIJKZ[\\]`} |
+
+
+ shell |
+ |
+
+
+ exit-status |
+ |
+
+
+
+
+
+ Welcome to Ubuntu 14.04.5 LTS (GNU/Linux 4.4.0-31-generic x86_64)
+
+ * Documentation: https://help.ubuntu.com/
+ Last login: Fri Feb 10 08:25:09 2017 from 10.0.3.1
+ {this.renderContent()}
+
+
+
+ );
+ }
}
function mapStateToProps(state) {
- return {
- session: state.sessions.session,
- content: state.sessions.content
- }
+ return {
+ session: state.sessions.session,
+ content: state.sessions.content
+ }
}
export default connect(mapStateToProps)(SessionShow);
\ No newline at end of file
diff --git a/src/components/socket.js b/src/components/socket.js
index b1a0686..976d6c4 100644
--- a/src/components/socket.js
+++ b/src/components/socket.js
@@ -1,123 +1,123 @@
import React, { Component } from 'react';
class Socket extends Component {
- constructor() {
- super();
+ constructor() {
+ super();
- this.state = ({ messages: [], socket: null });
- }
+ this.state = ({ messages: [], socket: null });
+ }
- componentDidMount() {
- this.connection = new WebSocket('ws://localhost:1234', 'echo-protocol');
+ componentDidMount() {
+ this.connection = new WebSocket('ws://localhost:1234', 'echo-protocol');
- this.connection.onopen = (data) => {
- console.log('connection opened!');
- }
+ this.connection.onopen = (data) => {
+ console.log('connection opened!');
+ }
- this.connection.onclose = () => {
- console.log('connection closed');
- }
+ this.connection.onclose = () => {
+ console.log('connection closed');
+ }
- this.setState ({socket: this.connection})
+ this.setState ({socket: this.connection})
- this.connection.onmessage = (message) => {
- let test = JSON.parse(message.data);
- if(test.type === 'message') {
- this.setState({
- messages : this.state.messages.concat([ test.data ])
- })
- }
- if(test.type === 'broadcast') {
- this.setState({
- messages : this.state.messages.concat([ test.data ])
- })
- }
+ this.connection.onmessage = (message) => {
+ let test = JSON.parse(message.data);
+ if(test.type === 'message') {
+ this.setState({
+ messages : this.state.messages.concat([ test.data ])
+ })
+ }
+ if(test.type === 'broadcast') {
+ this.setState({
+ messages : this.state.messages.concat([ test.data ])
+ })
+ }
+ }
}
- }
- componentWillUnmount() {
- this.state.socket.close();
- }
+ componentWillUnmount() {
+ this.state.socket.close();
+ }
- renderMessages() {
- return this.state.messages.map((message, i) => {
- return (
- - {message}
- );
- })
- }
+ renderMessages() {
+ return this.state.messages.map((message, i) => {
+ return (
+ - {message}
+ );
+ })
+ }
- exampleMessage() {
- return {
- type: "message",
- data: "sample text"
+ exampleMessage() {
+ return {
+ type: "message",
+ data: "sample text"
+ }
}
- }
- render() {
- return (
-
-
-
-
- Date |
- 10/02/2017 |
-
-
- Origin |
-
- unknown
- |
-
-
- Start date |
- 10/02/2017 10:10 |
-
-
- End date |
- 10/02/2017 10:11 |
-
-
- Username |
- root |
-
-
- Password |
- root |
-
-
-
|
-
-
- Request types: |
-
-
- pty-req |
- xterm-256colorx;û%%ÿÿ !"#$'()2356789:;=>FHIJKZ[\] |
-
-
- shell |
- |
-
-
- exit-status |
- |
-
-
-
-
-
+ render() {
+ return (
+
+
+
+
+ Date |
+ 10/02/2017 |
+
+
+ Origin |
+
+ unknown
+ |
+
+
+ Start date |
+ 10/02/2017 10:10 |
+
+
+ End date |
+ 10/02/2017 10:11 |
+
+
+ Username |
+ root |
+
+
+ Password |
+ root |
+
+
+
|
+
+
+ Request types: |
+
+
+ pty-req |
+ {`xterm-256colorx;û%%ÿÿ !"#$'()2356789:;=>FHIJKZ[\\]`} |
+
+
+ shell |
+ |
+
+
+ exit-status |
+ |
+
+
+
+
+
Welcome to Ubuntu 14.04.5 LTS (GNU/Linux 4.4.0-31-generic x86_64)
-
+
* Documentation: https://help.ubuntu.com/
- Last login: Fri Feb 10 08:25:09 2017 from 10.0.3.1
- {this.renderMessages()}
-
-
-
-
- );
- }
+ Last login: Fri Feb 10 08:25:09 2017 from 10.0.3.1
+ {this.renderMessages()}
+
+
+
+
+ );
+ }
}
export default Socket;
\ No newline at end of file
diff --git a/src/components/view.js b/src/components/view.js
index 90b9d67..bbd1adb 100644
--- a/src/components/view.js
+++ b/src/components/view.js
@@ -1,16 +1,9 @@
import React, { Component } from 'react';
import { connect } from 'react-redux';
-import { bindActionCreators } from 'redux';
-import { addSession, fetchSessions } from '../actions/index';
-import { Link } from 'react-router';
import Header from './header';
class View extends Component {
- constructor(props) {
- super(props);
- }
-
render() {
return (
diff --git a/src/components/websocket.js b/src/components/websocket.js
index f5c427f..c80a36f 100644
--- a/src/components/websocket.js
+++ b/src/components/websocket.js
@@ -1,4 +1,4 @@
-import React, { Component } from 'react';
+import { Component } from 'react';
import { connect } from 'react-redux';
// import Socket from '../utils/socket'
@@ -6,7 +6,7 @@ import { default as Socket } from '../utils/socket';
class Websocket extends Component {
componentWillMount() {
- const { dispatch } = this.props;
+ const { dispatch } = this.props;
let url;
diff --git a/src/index.js b/src/index.js
index b96e338..399209a 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,28 +1,25 @@
import React from 'react';
import ReactDOM from 'react-dom';
-import { Provider, connect } from 'react-redux';
-import { dispatch, compose, createStore, combineReducers, applyMiddleware } from 'redux';
-import { browserHistory, Router } from 'react-router';
-import { HashRouter, BrowserRouter, Redirect, Switch, Route } from 'react-router-dom';
+import { Provider } from 'react-redux';
+import { createStore, applyMiddleware } from 'redux';
+import { Switch, Route } from 'react-router-dom';
import createHistory from 'history/createBrowserHistory'
// import { Intl } from 'react-intl-es6';
-import { i18n } from './config';
+// import { i18n } from './config';
import promise from 'redux-promise';
-// import css from './style.css';
-import css from './toolkit-inverse.css';
-import application_css from './application.css';
-import routes from './routes';
+import './toolkit-inverse.min.css';
+import './application.css';
-import { Websocket } from './components/index';
+import Websocket from './components/websocket';
import App from './components/app';
import reducers from './reducers';
-import { syncHistoryWithStore, ConnectedRouter, routerReducer, routerMiddleware, push } from 'react-router-redux'
+import { ConnectedRouter, routerMiddleware } from 'react-router-redux'
import * as countries from 'i18n-iso-countries';
countries.registerLocale(require("i18n-iso-countries/langs/en.json"));
@@ -42,7 +39,7 @@ function configureStore() {
const store = configureStore({
sessions: { all: [], events: [], session: null, content: [], metadata: null, hotCountries: [], connected: false, topology: {} },
-});
+});
ReactDOM.render(
diff --git a/src/npm-debug.log b/src/npm-debug.log
deleted file mode 100644
index 8b2acb8..0000000
--- a/src/npm-debug.log
+++ /dev/null
@@ -1,27 +0,0 @@
-0 info it worked if it ends with ok
-1 verbose cli [ '/usr/local/Cellar/node/7.7.2/bin/node',
-1 verbose cli '/Users/troyvanderstel/.npm-packages/bin/npm',
-1 verbose cli 'run-script',
-1 verbose cli 'server' ]
-2 info using npm@3.10.9
-3 info using node@v7.7.2
-4 verbose stack Error: missing script: server
-4 verbose stack at run (/Users/troyvanderstel/.npm-packages/lib/node_modules/npm/lib/run-script.js:151:19)
-4 verbose stack at /Users/troyvanderstel/.npm-packages/lib/node_modules/npm/lib/run-script.js:61:5
-4 verbose stack at /Users/troyvanderstel/.npm-packages/lib/node_modules/npm/node_modules/read-package-json/read-json.js:356:5
-4 verbose stack at checkBinReferences_ (/Users/troyvanderstel/.npm-packages/lib/node_modules/npm/node_modules/read-package-json/read-json.js:320:45)
-4 verbose stack at final (/Users/troyvanderstel/.npm-packages/lib/node_modules/npm/node_modules/read-package-json/read-json.js:354:3)
-4 verbose stack at then (/Users/troyvanderstel/.npm-packages/lib/node_modules/npm/node_modules/read-package-json/read-json.js:124:5)
-4 verbose stack at /Users/troyvanderstel/.npm-packages/lib/node_modules/npm/node_modules/read-package-json/read-json.js:311:12
-4 verbose stack at /Users/troyvanderstel/.npm-packages/lib/node_modules/npm/node_modules/graceful-fs/graceful-fs.js:78:16
-4 verbose stack at tryToString (fs.js:448:3)
-4 verbose stack at FSReqWrap.readFileAfterClose [as oncomplete] (fs.js:435:12)
-5 verbose cwd /Users/troyvanderstel/Sites/honeytrap-web/src
-6 error Darwin 16.0.0
-7 error argv "/usr/local/Cellar/node/7.7.2/bin/node" "/Users/troyvanderstel/.npm-packages/bin/npm" "run-script" "server"
-8 error node v7.7.2
-9 error npm v3.10.9
-10 error missing script: server
-11 error If you need help, you may report this error at:
-11 error
-12 verbose exit [ 1, true ]
diff --git a/src/reducers/index.js b/src/reducers/index.js
index f3b6f93..6abb6e8 100644
--- a/src/reducers/index.js
+++ b/src/reducers/index.js
@@ -2,7 +2,7 @@ import { combineReducers } from 'redux';
import SessionReducer from './reducer_sessions';
const rootReducer = combineReducers({
- sessions: SessionReducer,
+ sessions: SessionReducer,
});
export default rootReducer;
\ No newline at end of file
diff --git a/src/reducers/reducer_sessions.js b/src/reducers/reducer_sessions.js
index d3d305e..1fee323 100644
--- a/src/reducers/reducer_sessions.js
+++ b/src/reducers/reducer_sessions.js
@@ -8,64 +8,64 @@ import { RECEIVED_METADATA, RECEIVED_HOT_COUNTRIES, CLEAR_HOT_COUNTRIES, CONNECT
const INITIAL_STATE = { all: [], events: [], session: null, content: [], metadata: null, hotCountries: [], connected: false, topology: {} };
export default function(state = INITIAL_STATE, action) {
- switch(action.type) {
- case CONNECTION_STATUS:
- return { ...state, connected: action.payload.connected };
- case RECEIVED_METADATA: {
- let metadata = action.payload;
- metadata.start = moment(metadata.start);
- return { ...state, metadata: metadata };
- }
- case FETCH_COUNTRIES: {
- let payload = action.payload;
+ switch(action.type) {
+ case CONNECTION_STATUS:
+ return { ...state, connected: action.payload.connected };
+ case RECEIVED_METADATA: {
+ let metadata = action.payload;
+ metadata.start = moment(metadata.start);
+ return { ...state, metadata: metadata };
+ }
+ case FETCH_COUNTRIES: {
+ let payload = action.payload;
- const world = payload[0].data;
+ const world = payload[0].data;
- let names = payload[1].data;
- names = d3.tsvParse(names);
+ let names = payload[1].data;
+ names = d3.tsvParse(names);
- let countries = topojson.feature(world, world.objects.countries).features.filter((d) => {
- return names.some((n) => {
- if (d.id == n.iso_n3) return d.iso_a2 = n.iso_a2;
- });
- }).sort((a, b) => {
- return a.iso_a2.localeCompare(b.iso_a2);
- });
+ let countries = topojson.feature(world, world.objects.countries).features.filter((d) => {
+ return names.some((n) => {
+ if (d.id == n.iso_n3) return d.iso_a2 = n.iso_a2;
+ });
+ }).sort((a, b) => {
+ return a.iso_a2.localeCompare(b.iso_a2);
+ });
- return { ...state, topology: { countries: countries, world: world, names: names } };
- }
- case RECEIVED_HOT_COUNTRIES: {
- let payload = action.payload;
- return { ...state, hotCountries: payload };
- }
- case RECEIVED_EVENTS: {
- let payload = action.payload;
+ return { ...state, topology: { countries: countries, world: world, names: names } };
+ }
+ case RECEIVED_HOT_COUNTRIES: {
+ let payload = action.payload;
+ return { ...state, hotCountries: payload };
+ }
+ case RECEIVED_EVENTS: {
+ let payload = action.payload;
- let events = payload.reduce((red, event) => {
- event.date = moment(event.date);
- red.push(event);
- return red;
- }, []);
+ let events = payload.reduce((red, event) => {
+ event.date = moment(event.date);
+ red.push(event);
+ return red;
+ }, []);
- return { ...state, events: events};
- }
- case RECEIVED_EVENT: {
- let payload = action.payload;
- payload.date = moment(payload.date);
- return { ...state, ...payload, events: [payload, ...state.events]};
- }
- case ADD_SESSION:
- return { ...state, all: [action.payload, ...state.all] };
- case FETCH_SESSIONS:
- return { ...state, all: action.payload.data };
- case FETCH_SESSION:
- return { ...state, session: action.payload.data };
- case FETCH_SESSION_CONTENT:
- return { ...state, content: [ ...state.content, action.payload, ] }
- }
-
+ return { ...state, events: events};
+ }
+ case RECEIVED_EVENT: {
+ let payload = action.payload;
+ payload.date = moment(payload.date);
+ return { ...state, ...payload, events: [payload, ...state.events]};
+ }
+ case ADD_SESSION:
+ return { ...state, all: [action.payload, ...state.all] };
+ case FETCH_SESSIONS:
+ return { ...state, all: action.payload.data };
+ case FETCH_SESSION:
+ return { ...state, session: action.payload.data };
+ case FETCH_SESSION_CONTENT:
+ return { ...state, content: [ ...state.content, action.payload, ] }
+ }
- return state;
+
+ return state;
}
// adword -> restaurant roka of ander account?
diff --git a/src/routes.js b/src/routes.js
deleted file mode 100644
index ffda663..0000000
--- a/src/routes.js
+++ /dev/null
@@ -1,27 +0,0 @@
-import React from 'react';
-import { Redirect, Route, IndexRoute } from 'react-router';
-
-import SessionShow from './components/session-show';
-import Socket from './components/socket';
-import Server from './components/server';
-import Random from './components/random';
-import Dashboard from './components/dashboard';
-import SessionList from './components/session-list';
-import ConfigurationOverview from './components/configuration-overview';
-import App from './components/app';
-import NotFoundPage from './components/not-found';
-
-export default (
-
-
-
- /*
-
-
-
-
-
- */
-
-
-);
diff --git a/src/style.css b/src/style.css
deleted file mode 100644
index 4cf4800..0000000
--- a/src/style.css
+++ /dev/null
@@ -1,6170 +0,0 @@
-@import url('https://fonts.googleapis.com/css?family=Karla:400,700');
-
-body {
- font-family: 'Karla', sans-serif;
- color: #535352!important;
-}
-
-a, p, td, th {
- font-family: 'Karla', sans-serif;
-}
-
-.header {
- padding-top: 40px;
- background: #21201f;
- background-image:url('./assets/images/honeycast-bg.png');
-}
-
-.header .logo {
- margin-top: 0;
- font-size: 22px;
- letter-spacing: .5px;
-}
-
-.header .logo a {
- opacity: .85;
- color: #f8ba1c;
- transition:opacity, .3s;
-}
-
-.header .logo a:hover {
- transition:opacity, .3s;
- opacity:1;
- text-decoration: none;
-}
-
-.terminal pre {
- margin: 0;
- height:400px;
- padding: 10px;
- border: grey 1px solid;
- clear: both;
- background-color: #000;
- color: #fff;
- font-family: monospace,monospace;
- font-size: 1em;
- white-space: pre;
- word-wrap: break-word;
-}
-
-.terminal pre span:after {
- position: absolute;
- height: 19px;
- width: 8px;
- content: "";
- margin-top: 1px;
- background-color: #00ff00;
-}
-
-.terminal pre p {
- margin:0;
-}
-
-.terminal pre li {
- list-style-type:none;
-}
-
-.table td, .table th {
- background-color:rgba(255,255,255,0.5);
-}
-
-.table td.dark {
- background-color: rgba(238,238,238,0.7);
-}
-
-.main-container {
- position:relative;
-}
-
-.b-button {
- border: 1px solid #878684;
- background-color: #fad67d;
- border-radius: 5px;
- font-size: 16px;
- display: block;
- margin: auto;
- padding: 10px 15px;
- opacity:.7;
- transition: all, .3s;
-}
-
-.b-button:hover {
- opacity:1;
- background-color:#878684;
- border:1px solid transparent;
- color:#fad67d;
- transition: all, .3s;
-}
-
-.b-button:focus {
- border: 1px solid #878684;
- outline: none;
- border-color: #878684;
- box-shadow: 0px 0px 10px 0px #878684;
-}
-
-.bee {
- position: absolute;
- z-index: -1;
-}
-
-.bee.bee-1 {
- top:75px;
- left:0;
-}
-
-.bee.bee-2 {
- top:0;
- right:40px;
-}
-
-.bee.bee-3 {
- bottom:170px;
- right:0;
-}
-
-.page-title {
- color: #f8ba1c;
- font-weight: 700;
- font-size: 38px;
- letter-spacing: -1px;
- margin-top: 64px;
- margin-bottom: 32px;
-}
-
-.page-lead {
- font-size: 22px;
- margin-bottom: 0;
-}
-
-.intro {
- margin-bottom: 80px;
-}
-
-.table-generic {
- border: 1px solid #e5e5e5;
- border-radius: 2px;
- border-collapse: separate;
-}
-
-.table {
- width: 100%;
- max-width: 100%;
- margin-bottom: 20px;
- border-spacing:0;
-}
-
-.table a {
- color: #425577;
- text-decoration: none;
-}
-
-.table-generic tbody>tr>td {
- font-size: 15px;
- color: #a4a7a8;
-}
-
-.table-generic>thead>tr>th {
- background-color: #f9f9f9;
- border-bottom: none;
- font-size: 14px;
- color: #72787a;
- padding: 10px 20px;
- letter-spacing: .2px;
- font-weight: 600;
-}
-
-.block-faded {
- position: relative;
-}
-
-.block-faded:after {
- display: block;
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 100;
- pointer-events: none;
- width: 100%;
- background-image: -webkit-linear-gradient(top,rgba(255,255,255,0)0%,#fff 100%);
- background-image: linear-gradient(to bottom,rgba(255,255,255,0)0%,#fff 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffffff', GradientType=0);
- opacity:1;
- transition:opacity, .3s;
-}
-
-.block-faded:hover:after {
- opacity:.6;
- transition:opacity, .3s;
-}
-
-th {
- text-align:left;
-}
-
-.table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
- padding: 12px 20px;
- line-height: 1.42857143;
- vertical-align: top;
- border-top: 1px solid #e5e5e5;
-}
-
-
-/* Bootstrap */
-
-/*!
- * Bootstrap v3.3.7 (http://getbootstrap.com)
- * Copyright 2011-2016 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
-/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
-html {
- font-family: sans-serif;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
-}
-body {
- margin: 0;
-}
-article,
-aside,
-details,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-main,
-menu,
-nav,
-section,
-summary {
- display: block;
-}
-audio,
-canvas,
-progress,
-video {
- display: inline-block;
- vertical-align: baseline;
-}
-audio:not([controls]) {
- display: none;
- height: 0;
-}
-[hidden],
-template {
- display: none;
-}
-a {
- background-color: transparent;
-}
-a:active,
-a:hover {
- outline: 0;
-}
-abbr[title] {
- border-bottom: 1px dotted;
-}
-b,
-strong {
- font-weight: bold;
-}
-dfn {
- font-style: italic;
-}
-h1 {
- margin: .67em 0;
- font-size: 2em;
-}
-mark {
- color: #000;
- background: #ff0;
-}
-small {
- font-size: 80%;
-}
-sub,
-sup {
- position: relative;
- font-size: 75%;
- line-height: 0;
- vertical-align: baseline;
-}
-sup {
- top: -.5em;
-}
-sub {
- bottom: -.25em;
-}
-img {
- border: 0;
-}
-svg:not(:root) {
- overflow: hidden;
-}
-figure {
- margin: 1em 40px;
-}
-hr {
- height: 0;
- -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
- box-sizing: content-box;
-}
-pre {
- overflow: auto;
-}
-code,
-kbd,
-pre,
-samp {
- font-family: monospace, monospace;
- font-size: 1em;
-}
-button,
-input,
-optgroup,
-select,
-textarea {
- margin: 0;
- font: inherit;
- color: inherit;
-}
-button {
- overflow: visible;
-}
-button,
-select {
- text-transform: none;
-}
-button,
-html input[type="button"],
-input[type="reset"],
-input[type="submit"] {
- -webkit-appearance: button;
- cursor: pointer;
-}
-button[disabled],
-html input[disabled] {
- cursor: default;
-}
-button::-moz-focus-inner,
-input::-moz-focus-inner {
- padding: 0;
- border: 0;
-}
-input {
- line-height: normal;
-}
-input[type="checkbox"],
-input[type="radio"] {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- padding: 0;
-}
-input[type="number"]::-webkit-inner-spin-button,
-input[type="number"]::-webkit-outer-spin-button {
- height: auto;
-}
-input[type="search"] {
- -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
- box-sizing: content-box;
- -webkit-appearance: textfield;
-}
-input[type="search"]::-webkit-search-cancel-button,
-input[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
-}
-fieldset {
- padding: .35em .625em .75em;
- margin: 0 2px;
- border: 1px solid #c0c0c0;
-}
-legend {
- padding: 0;
- border: 0;
-}
-textarea {
- overflow: auto;
-}
-optgroup {
- font-weight: bold;
-}
-table {
- border-spacing: 0;
- border-collapse: collapse;
-}
-td,
-th {
- padding: 0;
-}
-/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
-@media print {
- *,
- *:before,
- *:after {
- color: #000 !important;
- text-shadow: none !important;
- background: transparent !important;
- -webkit-box-shadow: none !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^="#"]:after,
- a[href^="javascript:"]:after {
- content: "";
- }
- pre,
- blockquote {
- border: 1px solid #999;
-
- page-break-inside: avoid;
- }
- thead {
- display: table-header-group;
- }
- tr,
- img {
- page-break-inside: avoid;
- }
- img {
- max-width: 100% !important;
- }
- p,
- h2,
- h3 {
- orphans: 3;
- widows: 3;
- }
- h2,
- h3 {
- page-break-after: avoid;
- }
- .navbar {
- display: none;
- }
- .btn > .caret,
- .dropup > .btn > .caret {
- border-top-color: #000 !important;
- }
- .label {
- border: 1px solid #000;
- }
- .table {
- border-collapse: collapse !important;
- }
- .table td,
- .table th {
- background-color: #fff !important;
- }
- .table-bordered th,
- .table-bordered td {
- border: 1px solid #ddd !important;
- }
-}
-* {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
-}
-*:before,
-*:after {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- 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-size: 14px;
- line-height: 1.42857143;
- color: #333;
- background-color: #fff;
-}
-input,
-button,
-select,
-textarea {
- font-family: inherit;
- font-size: inherit;
- line-height: inherit;
-}
-a {
- color: #337ab7;
- text-decoration: none;
-}
-a:hover,
-a:focus {
- color: #23527c;
- text-decoration: underline;
-}
-a:focus {
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
-}
-figure {
- margin: 0;
-}
-img {
- vertical-align: middle;
-}
-.img-responsive,
-.thumbnail > img,
-.thumbnail a > img,
-.carousel-inner > .item > img,
-.carousel-inner > .item > a > img {
- display: block;
- max-width: 100%;
- height: auto;
-}
-.img-rounded {
- border-radius: 6px;
-}
-.img-thumbnail {
- display: inline-block;
- max-width: 100%;
- height: auto;
- padding: 4px;
- line-height: 1.42857143;
- background-color: #fff;
- border: 1px solid #ddd;
- border-radius: 4px;
- -webkit-transition: all .2s ease-in-out;
- -o-transition: all .2s ease-in-out;
- transition: all .2s ease-in-out;
-}
-.img-circle {
- border-radius: 50%;
-}
-hr {
- margin-top: 20px;
- margin-bottom: 20px;
- border: 0;
- border-top: 1px solid #eee;
-}
-.sr-only {
- position: absolute;
- width: 1px;
- height: 1px;
- padding: 0;
- margin: -1px;
- overflow: hidden;
- clip: rect(0, 0, 0, 0);
- border: 0;
-}
-.sr-only-focusable:active,
-.sr-only-focusable:focus {
- position: static;
- width: auto;
- height: auto;
- margin: 0;
- overflow: visible;
- clip: auto;
-}
-[role="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 .small,
-.h4 .small,
-.h5 .small,
-.h6 .small {
- font-weight: normal;
- line-height: 1;
- color: #777;
-}
-h1,
-.h1,
-h2,
-.h2,
-h3,
-.h3 {
- margin-top: 20px;
- margin-bottom: 10px;
-}
-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: 10px;
- margin-bottom: 10px;
-}
-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: 36px;
-}
-h2,
-.h2 {
- font-size: 30px;
-}
-h3,
-.h3 {
- font-size: 24px;
-}
-h4,
-.h4 {
- font-size: 18px;
-}
-h5,
-.h5 {
- font-size: 14px;
-}
-h6,
-.h6 {
- font-size: 12px;
-}
-p {
- margin: 0 0 10px;
-}
-.lead {
- margin-bottom: 20px;
- font-size: 16px;
- font-weight: 300;
- line-height: 1.4;
-}
-@media (min-width: 768px) {
- .lead {
- font-size: 21px;
- }
-}
-small,
-.small {
- font-size: 85%;
-}
-mark,
-.mark {
- padding: .2em;
- background-color: #fcf8e3;
-}
-.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: #777;
-}
-.text-primary {
- color: #337ab7;
-}
-a.text-primary:hover,
-a.text-primary:focus {
- color: #286090;
-}
-.text-success {
- color: #3c763d;
-}
-a.text-success:hover,
-a.text-success:focus {
- color: #2b542c;
-}
-.text-info {
- color: #31708f;
-}
-a.text-info:hover,
-a.text-info:focus {
- color: #245269;
-}
-.text-warning {
- color: #8a6d3b;
-}
-a.text-warning:hover,
-a.text-warning:focus {
- color: #66512c;
-}
-.text-danger {
- color: #a94442;
-}
-a.text-danger:hover,
-a.text-danger:focus {
- color: #843534;
-}
-.bg-primary {
- color: #fff;
- background-color: #337ab7;
-}
-a.bg-primary:hover,
-a.bg-primary:focus {
- background-color: #286090;
-}
-.bg-success {
- background-color: #dff0d8;
-}
-a.bg-success:hover,
-a.bg-success:focus {
- background-color: #c1e2b3;
-}
-.bg-info {
- background-color: #d9edf7;
-}
-a.bg-info:hover,
-a.bg-info:focus {
- background-color: #afd9ee;
-}
-.bg-warning {
- background-color: #fcf8e3;
-}
-a.bg-warning:hover,
-a.bg-warning:focus {
- background-color: #f7ecb5;
-}
-.bg-danger {
- background-color: #f2dede;
-}
-a.bg-danger:hover,
-a.bg-danger:focus {
- background-color: #e4b9b9;
-}
-.page-header {
- padding-bottom: 9px;
- margin: 40px 0 20px;
- border-bottom: 1px solid #eee;
-}
-ul,
-ol {
- margin-top: 0;
- margin-bottom: 10px;
-}
-ul ul,
-ol ul,
-ul ol,
-ol ol {
- margin-bottom: 0;
-}
-.list-unstyled {
- padding-left: 0;
- list-style: none;
-}
-.list-inline {
- padding-left: 0;
- margin-left: -5px;
- list-style: none;
-}
-.list-inline > li {
- display: inline-block;
- padding-right: 5px;
- padding-left: 5px;
-}
-dl {
- margin-top: 0;
- margin-bottom: 20px;
-}
-dt,
-dd {
- line-height: 1.42857143;
-}
-dt {
- font-weight: bold;
-}
-dd {
- margin-left: 0;
-}
-@media (min-width: 768px) {
- .dl-horizontal dt {
- float: left;
- width: 160px;
- overflow: hidden;
- clear: left;
- text-align: right;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .dl-horizontal dd {
- margin-left: 180px;
- }
-}
-abbr[title],
-abbr[data-original-title] {
- cursor: help;
- border-bottom: 1px dotted #777;
-}
-.initialism {
- font-size: 90%;
- text-transform: uppercase;
-}
-blockquote {
- padding: 10px 20px;
- margin: 0 0 20px;
- font-size: 17.5px;
- border-left: 5px solid #eee;
-}
-blockquote p:last-child,
-blockquote ul:last-child,
-blockquote ol:last-child {
- margin-bottom: 0;
-}
-blockquote footer,
-blockquote small,
-blockquote .small {
- display: block;
- font-size: 80%;
- line-height: 1.42857143;
- color: #777;
-}
-blockquote footer:before,
-blockquote small:before,
-blockquote .small:before {
- content: '\2014 \00A0';
-}
-.blockquote-reverse,
-blockquote.pull-right {
- padding-right: 15px;
- padding-left: 0;
- text-align: right;
- border-right: 5px solid #eee;
- border-left: 0;
-}
-.blockquote-reverse footer:before,
-blockquote.pull-right footer:before,
-.blockquote-reverse small:before,
-blockquote.pull-right small:before,
-.blockquote-reverse .small:before,
-blockquote.pull-right .small:before {
- content: '';
-}
-.blockquote-reverse footer:after,
-blockquote.pull-right footer:after,
-.blockquote-reverse small:after,
-blockquote.pull-right small:after,
-.blockquote-reverse .small:after,
-blockquote.pull-right .small:after {
- content: '\00A0 \2014';
-}
-address {
- margin-bottom: 20px;
- font-style: normal;
- line-height: 1.42857143;
-}
-code,
-kbd,
-pre,
-samp {
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
-}
-code {
- padding: 2px 4px;
- font-size: 90%;
- color: #c7254e;
- background-color: #f9f2f4;
- border-radius: 4px;
-}
-kbd {
- padding: 2px 4px;
- font-size: 90%;
- color: #fff;
- background-color: #333;
- border-radius: 3px;
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
-}
-kbd kbd {
- padding: 0;
- font-size: 100%;
- font-weight: bold;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-pre {
- display: block;
- padding: 9.5px;
- margin: 0 0 10px;
- font-size: 13px;
- line-height: 1.42857143;
- color: #333;
- word-break: break-all;
- word-wrap: break-word;
- background-color: #f5f5f5;
- border: 1px solid #ccc;
- border-radius: 4px;
-}
-pre code {
- padding: 0;
- font-size: inherit;
- color: inherit;
- white-space: pre-wrap;
- background-color: transparent;
- border-radius: 0;
-}
-.pre-scrollable {
- max-height: 340px;
- overflow-y: scroll;
-}
-.container {
- padding-right: 15px;
- padding-left: 15px;
- margin-right: auto;
- margin-left: auto;
-}
-@media (min-width: 768px) {
- .container {
- width: 750px;
- }
-}
-@media (min-width: 992px) {
- .container {
- width: 970px;
- }
-}
-@media (min-width: 1200px) {
- .container {
- width: 1170px;
- }
-}
-.container-fluid {
- padding-right: 15px;
- padding-left: 15px;
- margin-right: auto;
- margin-left: auto;
-}
-.row {
- margin-right: -15px;
- margin-left: -15px;
-}
-.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
- position: relative;
- min-height: 1px;
- padding-right: 15px;
- padding-left: 15px;
-}
-.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.66666667%;
-}
-.col-xs-10 {
- width: 83.33333333%;
-}
-.col-xs-9 {
- width: 75%;
-}
-.col-xs-8 {
- width: 66.66666667%;
-}
-.col-xs-7 {
- width: 58.33333333%;
-}
-.col-xs-6 {
- width: 50%;
-}
-.col-xs-5 {
- width: 41.66666667%;
-}
-.col-xs-4 {
- width: 33.33333333%;
-}
-.col-xs-3 {
- width: 25%;
-}
-.col-xs-2 {
- width: 16.66666667%;
-}
-.col-xs-1 {
- width: 8.33333333%;
-}
-.col-xs-pull-12 {
- right: 100%;
-}
-.col-xs-pull-11 {
- right: 91.66666667%;
-}
-.col-xs-pull-10 {
- right: 83.33333333%;
-}
-.col-xs-pull-9 {
- right: 75%;
-}
-.col-xs-pull-8 {
- right: 66.66666667%;
-}
-.col-xs-pull-7 {
- right: 58.33333333%;
-}
-.col-xs-pull-6 {
- right: 50%;
-}
-.col-xs-pull-5 {
- right: 41.66666667%;
-}
-.col-xs-pull-4 {
- right: 33.33333333%;
-}
-.col-xs-pull-3 {
- right: 25%;
-}
-.col-xs-pull-2 {
- right: 16.66666667%;
-}
-.col-xs-pull-1 {
- right: 8.33333333%;
-}
-.col-xs-pull-0 {
- right: auto;
-}
-.col-xs-push-12 {
- left: 100%;
-}
-.col-xs-push-11 {
- left: 91.66666667%;
-}
-.col-xs-push-10 {
- left: 83.33333333%;
-}
-.col-xs-push-9 {
- left: 75%;
-}
-.col-xs-push-8 {
- left: 66.66666667%;
-}
-.col-xs-push-7 {
- left: 58.33333333%;
-}
-.col-xs-push-6 {
- left: 50%;
-}
-.col-xs-push-5 {
- left: 41.66666667%;
-}
-.col-xs-push-4 {
- left: 33.33333333%;
-}
-.col-xs-push-3 {
- left: 25%;
-}
-.col-xs-push-2 {
- left: 16.66666667%;
-}
-.col-xs-push-1 {
- left: 8.33333333%;
-}
-.col-xs-push-0 {
- left: auto;
-}
-.col-xs-offset-12 {
- margin-left: 100%;
-}
-.col-xs-offset-11 {
- margin-left: 91.66666667%;
-}
-.col-xs-offset-10 {
- margin-left: 83.33333333%;
-}
-.col-xs-offset-9 {
- margin-left: 75%;
-}
-.col-xs-offset-8 {
- margin-left: 66.66666667%;
-}
-.col-xs-offset-7 {
- margin-left: 58.33333333%;
-}
-.col-xs-offset-6 {
- margin-left: 50%;
-}
-.col-xs-offset-5 {
- margin-left: 41.66666667%;
-}
-.col-xs-offset-4 {
- margin-left: 33.33333333%;
-}
-.col-xs-offset-3 {
- margin-left: 25%;
-}
-.col-xs-offset-2 {
- margin-left: 16.66666667%;
-}
-.col-xs-offset-1 {
- margin-left: 8.33333333%;
-}
-.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.66666667%;
- }
- .col-sm-10 {
- width: 83.33333333%;
- }
- .col-sm-9 {
- width: 75%;
- }
- .col-sm-8 {
- width: 66.66666667%;
- }
- .col-sm-7 {
- width: 58.33333333%;
- }
- .col-sm-6 {
- width: 50%;
- }
- .col-sm-5 {
- width: 41.66666667%;
- }
- .col-sm-4 {
- width: 33.33333333%;
- }
- .col-sm-3 {
- width: 25%;
- }
- .col-sm-2 {
- width: 16.66666667%;
- }
- .col-sm-1 {
- width: 8.33333333%;
- }
- .col-sm-pull-12 {
- right: 100%;
- }
- .col-sm-pull-11 {
- right: 91.66666667%;
- }
- .col-sm-pull-10 {
- right: 83.33333333%;
- }
- .col-sm-pull-9 {
- right: 75%;
- }
- .col-sm-pull-8 {
- right: 66.66666667%;
- }
- .col-sm-pull-7 {
- right: 58.33333333%;
- }
- .col-sm-pull-6 {
- right: 50%;
- }
- .col-sm-pull-5 {
- right: 41.66666667%;
- }
- .col-sm-pull-4 {
- right: 33.33333333%;
- }
- .col-sm-pull-3 {
- right: 25%;
- }
- .col-sm-pull-2 {
- right: 16.66666667%;
- }
- .col-sm-pull-1 {
- right: 8.33333333%;
- }
- .col-sm-pull-0 {
- right: auto;
- }
- .col-sm-push-12 {
- left: 100%;
- }
- .col-sm-push-11 {
- left: 91.66666667%;
- }
- .col-sm-push-10 {
- left: 83.33333333%;
- }
- .col-sm-push-9 {
- left: 75%;
- }
- .col-sm-push-8 {
- left: 66.66666667%;
- }
- .col-sm-push-7 {
- left: 58.33333333%;
- }
- .col-sm-push-6 {
- left: 50%;
- }
- .col-sm-push-5 {
- left: 41.66666667%;
- }
- .col-sm-push-4 {
- left: 33.33333333%;
- }
- .col-sm-push-3 {
- left: 25%;
- }
- .col-sm-push-2 {
- left: 16.66666667%;
- }
- .col-sm-push-1 {
- left: 8.33333333%;
- }
- .col-sm-push-0 {
- left: auto;
- }
- .col-sm-offset-12 {
- margin-left: 100%;
- }
- .col-sm-offset-11 {
- margin-left: 91.66666667%;
- }
- .col-sm-offset-10 {
- margin-left: 83.33333333%;
- }
- .col-sm-offset-9 {
- margin-left: 75%;
- }
- .col-sm-offset-8 {
- margin-left: 66.66666667%;
- }
- .col-sm-offset-7 {
- margin-left: 58.33333333%;
- }
- .col-sm-offset-6 {
- margin-left: 50%;
- }
- .col-sm-offset-5 {
- margin-left: 41.66666667%;
- }
- .col-sm-offset-4 {
- margin-left: 33.33333333%;
- }
- .col-sm-offset-3 {
- margin-left: 25%;
- }
- .col-sm-offset-2 {
- margin-left: 16.66666667%;
- }
- .col-sm-offset-1 {
- margin-left: 8.33333333%;
- }
- .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.66666667%;
- }
- .col-md-10 {
- width: 83.33333333%;
- }
- .col-md-9 {
- width: 75%;
- }
- .col-md-8 {
- width: 66.66666667%;
- }
- .col-md-7 {
- width: 58.33333333%;
- }
- .col-md-6 {
- width: 50%;
- }
- .col-md-5 {
- width: 41.66666667%;
- }
- .col-md-4 {
- width: 33.33333333%;
- }
- .col-md-3 {
- width: 25%;
- }
- .col-md-2 {
- width: 16.66666667%;
- }
- .col-md-1 {
- width: 8.33333333%;
- }
- .col-md-pull-12 {
- right: 100%;
- }
- .col-md-pull-11 {
- right: 91.66666667%;
- }
- .col-md-pull-10 {
- right: 83.33333333%;
- }
- .col-md-pull-9 {
- right: 75%;
- }
- .col-md-pull-8 {
- right: 66.66666667%;
- }
- .col-md-pull-7 {
- right: 58.33333333%;
- }
- .col-md-pull-6 {
- right: 50%;
- }
- .col-md-pull-5 {
- right: 41.66666667%;
- }
- .col-md-pull-4 {
- right: 33.33333333%;
- }
- .col-md-pull-3 {
- right: 25%;
- }
- .col-md-pull-2 {
- right: 16.66666667%;
- }
- .col-md-pull-1 {
- right: 8.33333333%;
- }
- .col-md-pull-0 {
- right: auto;
- }
- .col-md-push-12 {
- left: 100%;
- }
- .col-md-push-11 {
- left: 91.66666667%;
- }
- .col-md-push-10 {
- left: 83.33333333%;
- }
- .col-md-push-9 {
- left: 75%;
- }
- .col-md-push-8 {
- left: 66.66666667%;
- }
- .col-md-push-7 {
- left: 58.33333333%;
- }
- .col-md-push-6 {
- left: 50%;
- }
- .col-md-push-5 {
- left: 41.66666667%;
- }
- .col-md-push-4 {
- left: 33.33333333%;
- }
- .col-md-push-3 {
- left: 25%;
- }
- .col-md-push-2 {
- left: 16.66666667%;
- }
- .col-md-push-1 {
- left: 8.33333333%;
- }
- .col-md-push-0 {
- left: auto;
- }
- .col-md-offset-12 {
- margin-left: 100%;
- }
- .col-md-offset-11 {
- margin-left: 91.66666667%;
- }
- .col-md-offset-10 {
- margin-left: 83.33333333%;
- }
- .col-md-offset-9 {
- margin-left: 75%;
- }
- .col-md-offset-8 {
- margin-left: 66.66666667%;
- }
- .col-md-offset-7 {
- margin-left: 58.33333333%;
- }
- .col-md-offset-6 {
- margin-left: 50%;
- }
- .col-md-offset-5 {
- margin-left: 41.66666667%;
- }
- .col-md-offset-4 {
- margin-left: 33.33333333%;
- }
- .col-md-offset-3 {
- margin-left: 25%;
- }
- .col-md-offset-2 {
- margin-left: 16.66666667%;
- }
- .col-md-offset-1 {
- margin-left: 8.33333333%;
- }
- .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.66666667%;
- }
- .col-lg-10 {
- width: 83.33333333%;
- }
- .col-lg-9 {
- width: 75%;
- }
- .col-lg-8 {
- width: 66.66666667%;
- }
- .col-lg-7 {
- width: 58.33333333%;
- }
- .col-lg-6 {
- width: 50%;
- }
- .col-lg-5 {
- width: 41.66666667%;
- }
- .col-lg-4 {
- width: 33.33333333%;
- }
- .col-lg-3 {
- width: 25%;
- }
- .col-lg-2 {
- width: 16.66666667%;
- }
- .col-lg-1 {
- width: 8.33333333%;
- }
- .col-lg-pull-12 {
- right: 100%;
- }
- .col-lg-pull-11 {
- right: 91.66666667%;
- }
- .col-lg-pull-10 {
- right: 83.33333333%;
- }
- .col-lg-pull-9 {
- right: 75%;
- }
- .col-lg-pull-8 {
- right: 66.66666667%;
- }
- .col-lg-pull-7 {
- right: 58.33333333%;
- }
- .col-lg-pull-6 {
- right: 50%;
- }
- .col-lg-pull-5 {
- right: 41.66666667%;
- }
- .col-lg-pull-4 {
- right: 33.33333333%;
- }
- .col-lg-pull-3 {
- right: 25%;
- }
- .col-lg-pull-2 {
- right: 16.66666667%;
- }
- .col-lg-pull-1 {
- right: 8.33333333%;
- }
- .col-lg-pull-0 {
- right: auto;
- }
- .col-lg-push-12 {
- left: 100%;
- }
- .col-lg-push-11 {
- left: 91.66666667%;
- }
- .col-lg-push-10 {
- left: 83.33333333%;
- }
- .col-lg-push-9 {
- left: 75%;
- }
- .col-lg-push-8 {
- left: 66.66666667%;
- }
- .col-lg-push-7 {
- left: 58.33333333%;
- }
- .col-lg-push-6 {
- left: 50%;
- }
- .col-lg-push-5 {
- left: 41.66666667%;
- }
- .col-lg-push-4 {
- left: 33.33333333%;
- }
- .col-lg-push-3 {
- left: 25%;
- }
- .col-lg-push-2 {
- left: 16.66666667%;
- }
- .col-lg-push-1 {
- left: 8.33333333%;
- }
- .col-lg-push-0 {
- left: auto;
- }
- .col-lg-offset-12 {
- margin-left: 100%;
- }
- .col-lg-offset-11 {
- margin-left: 91.66666667%;
- }
- .col-lg-offset-10 {
- margin-left: 83.33333333%;
- }
- .col-lg-offset-9 {
- margin-left: 75%;
- }
- .col-lg-offset-8 {
- margin-left: 66.66666667%;
- }
- .col-lg-offset-7 {
- margin-left: 58.33333333%;
- }
- .col-lg-offset-6 {
- margin-left: 50%;
- }
- .col-lg-offset-5 {
- margin-left: 41.66666667%;
- }
- .col-lg-offset-4 {
- margin-left: 33.33333333%;
- }
- .col-lg-offset-3 {
- margin-left: 25%;
- }
- .col-lg-offset-2 {
- margin-left: 16.66666667%;
- }
- .col-lg-offset-1 {
- margin-left: 8.33333333%;
- }
- .col-lg-offset-0 {
- margin-left: 0;
- }
-}
-table {
- background-color: transparent;
-}
-caption {
- padding-top: 8px;
- padding-bottom: 8px;
- color: #777;
- text-align: left;
-}
-th {
- text-align: left;
-}
-.table {
- width: 100%;
- max-width: 100%;
- margin-bottom: 20px;
-}
-.table > thead > tr > th,
-.table > tbody > tr > th,
-.table > tfoot > tr > th,
-.table > thead > tr > td,
-.table > tbody > tr > td,
-.table > tfoot > tr > td {
- padding: 8px;
- line-height: 1.42857143;
- vertical-align: top;
- border-top: 1px solid #ddd;
-}
-.table > thead > tr > th {
- vertical-align: bottom;
- border-bottom: 2px solid #ddd;
-}
-.table > caption + thead > tr:first-child > th,
-.table > colgroup + thead > tr:first-child > th,
-.table > thead:first-child > tr:first-child > th,
-.table > caption + thead > tr:first-child > td,
-.table > colgroup + thead > tr:first-child > td,
-.table > thead:first-child > tr:first-child > td {
- border-top: 0;
-}
-.table > tbody + tbody {
- border-top: 2px solid #ddd;
-}
-.table .table {
- background-color: #fff;
-}
-.table-condensed > thead > tr > th,
-.table-condensed > tbody > tr > th,
-.table-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 #ddd;
-}
-.table-bordered > thead > tr > th,
-.table-bordered > tbody > tr > th,
-.table-bordered > tfoot > tr > th,
-.table-bordered > thead > tr > td,
-.table-bordered > tbody > tr > td,
-.table-bordered > tfoot > tr > td {
- border: 1px solid #ddd;
-}
-.table-bordered > thead > tr > th,
-.table-bordered > thead > tr > td {
- border-bottom-width: 2px;
-}
-.table-striped > tbody > tr:nth-of-type(odd) {
- background-color: #f9f9f9;
-}
-.table-hover > tbody > tr:hover {
- background-color: #f5f5f5;
-}
-table col[class*="col-"] {
- position: static;
- display: table-column;
- float: none;
-}
-table td[class*="col-"],
-table th[class*="col-"] {
- position: static;
- display: table-cell;
- float: none;
-}
-.table > thead > tr > td.active,
-.table > tbody > tr > td.active,
-.table > tfoot > tr > td.active,
-.table > thead > tr > th.active,
-.table > tbody > tr > th.active,
-.table > tfoot > tr > th.active,
-.table > thead > tr.active > td,
-.table > tbody > tr.active > td,
-.table > tfoot > tr.active > td,
-.table > thead > tr.active > th,
-.table > tbody > tr.active > th,
-.table > tfoot > tr.active > th {
- background-color: #f5f5f5;
-}
-.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 {
- background-color: #e8e8e8;
-}
-.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.success > 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: #dff0d8;
-}
-.table-hover > tbody > tr > td.success:hover,
-.table-hover > tbody > tr > th.success:hover,
-.table-hover > tbody > tr.success:hover > td,
-.table-hover > tbody > tr:hover > .success,
-.table-hover > tbody > tr.success:hover > th {
- background-color: #d0e9c6;
-}
-.table > thead > tr > td.info,
-.table > tbody > tr > td.info,
-.table > tfoot > tr > td.info,
-.table > thead > tr > th.info,
-.table > tbody > tr > th.info,
-.table > tfoot > tr > th.info,
-.table > thead > tr.info > td,
-.table > tbody > tr.info > td,
-.table > tfoot > tr.info > td,
-.table > thead > tr.info > th,
-.table > tbody > tr.info > th,
-.table > tfoot > tr.info > th {
- background-color: #d9edf7;
-}
-.table-hover > tbody > tr > td.info:hover,
-.table-hover > tbody > tr > th.info:hover,
-.table-hover > tbody > tr.info:hover > td,
-.table-hover > tbody > tr:hover > .info,
-.table-hover > tbody > tr.info:hover > th {
- background-color: #c4e3f3;
-}
-.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.warning > 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: #fcf8e3;
-}
-.table-hover > tbody > tr > td.warning:hover,
-.table-hover > tbody > tr > th.warning:hover,
-.table-hover > tbody > tr.warning:hover > td,
-.table-hover > tbody > tr:hover > .warning,
-.table-hover > tbody > tr.warning:hover > th {
- background-color: #faf2cc;
-}
-.table > thead > tr > td.danger,
-.table > tbody > tr > td.danger,
-.table > tfoot > tr > td.danger,
-.table > thead > tr > th.danger,
-.table > tbody > tr > th.danger,
-.table > tfoot > tr > th.danger,
-.table > thead > tr.danger > td,
-.table > tbody > tr.danger > td,
-.table > tfoot > tr.danger > td,
-.table > thead > tr.danger > th,
-.table > tbody > tr.danger > th,
-.table > tfoot > tr.danger > th {
- background-color: #f2dede;
-}
-.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 {
- background-color: #ebcccc;
-}
-.table-responsive {
- min-height: .01%;
- overflow-x: auto;
-}
-@media screen and (max-width: 767px) {
- .table-responsive {
- width: 100%;
- margin-bottom: 15px;
- overflow-y: hidden;
- -ms-overflow-style: -ms-autohiding-scrollbar;
- border: 1px solid #ddd;
- }
- .table-responsive > .table {
- margin-bottom: 0;
- }
- .table-responsive > .table > thead > tr > th,
- .table-responsive > .table > tbody > tr > th,
- .table-responsive > .table > tfoot > tr > th,
- .table-responsive > .table > thead > tr > td,
- .table-responsive > .table > tbody > tr > td,
- .table-responsive > .table > tfoot > tr > td {
- white-space: nowrap;
- }
- .table-responsive > .table-bordered {
- border: 0;
- }
- .table-responsive > .table-bordered > thead > tr > th:first-child,
- .table-responsive > .table-bordered > tbody > tr > th:first-child,
- .table-responsive > .table-bordered > tfoot > tr > th:first-child,
- .table-responsive > .table-bordered > thead > tr > td:first-child,
- .table-responsive > .table-bordered > tbody > tr > td:first-child,
- .table-responsive > .table-bordered > tfoot > tr > td:first-child {
- border-left: 0;
- }
- .table-responsive > .table-bordered > thead > tr > th:last-child,
- .table-responsive > .table-bordered > tbody > tr > th:last-child,
- .table-responsive > .table-bordered > tfoot > tr > th:last-child,
- .table-responsive > .table-bordered > thead > tr > td:last-child,
- .table-responsive > .table-bordered > tbody > tr > td:last-child,
- .table-responsive > .table-bordered > tfoot > tr > td:last-child {
- border-right: 0;
- }
- .table-responsive > .table-bordered > tbody > tr:last-child > th,
- .table-responsive > .table-bordered > tfoot > tr:last-child > th,
- .table-responsive > .table-bordered > tbody > tr:last-child > td,
- .table-responsive > .table-bordered > tfoot > tr:last-child > td {
- border-bottom: 0;
- }
-}
-fieldset {
- min-width: 0;
- padding: 0;
- margin: 0;
- border: 0;
-}
-legend {
- display: block;
- width: 100%;
- padding: 0;
- margin-bottom: 20px;
- font-size: 21px;
- line-height: inherit;
- color: #333;
- border: 0;
- border-bottom: 1px solid #e5e5e5;
-}
-label {
- display: inline-block;
- max-width: 100%;
- margin-bottom: 5px;
- font-weight: bold;
-}
-input[type="search"] {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
-}
-input[type="radio"],
-input[type="checkbox"] {
- margin: 4px 0 0;
- margin-top: 1px \9;
- line-height: normal;
-}
-input[type="file"] {
- display: block;
-}
-input[type="range"] {
- display: block;
- width: 100%;
-}
-select[multiple],
-select[size] {
- height: auto;
-}
-input[type="file"]:focus,
-input[type="radio"]:focus,
-input[type="checkbox"]:focus {
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
-}
-output {
- display: block;
- padding-top: 7px;
- font-size: 14px;
- line-height: 1.42857143;
- color: #555;
-}
-.form-control {
- display: block;
- width: 100%;
- height: 34px;
- padding: 6px 12px;
- font-size: 14px;
- line-height: 1.42857143;
- color: #555;
- background-color: #fff;
- background-image: none;
- border: 1px solid #ccc;
- border-radius: 4px;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
- -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
- -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
- transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-}
-.form-control:focus {
- border-color: #66afe9;
- outline: 0;
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
-}
-.form-control::-moz-placeholder {
- color: #999;
- opacity: 1;
-}
-.form-control:-ms-input-placeholder {
- color: #999;
-}
-.form-control::-webkit-input-placeholder {
- color: #999;
-}
-.form-control::-ms-expand {
- background-color: transparent;
- border: 0;
-}
-.form-control[disabled],
-.form-control[readonly],
-fieldset[disabled] .form-control {
- background-color: #eee;
- opacity: 1;
-}
-.form-control[disabled],
-fieldset[disabled] .form-control {
- cursor: not-allowed;
-}
-textarea.form-control {
- height: auto;
-}
-input[type="search"] {
- -webkit-appearance: none;
-}
-@media screen and (-webkit-min-device-pixel-ratio: 0) {
- input[type="date"].form-control,
- input[type="time"].form-control,
- input[type="datetime-local"].form-control,
- input[type="month"].form-control {
- line-height: 34px;
- }
- input[type="date"].input-sm,
- input[type="time"].input-sm,
- input[type="datetime-local"].input-sm,
- input[type="month"].input-sm,
- .input-group-sm input[type="date"],
- .input-group-sm input[type="time"],
- .input-group-sm input[type="datetime-local"],
- .input-group-sm input[type="month"] {
- line-height: 30px;
- }
- input[type="date"].input-lg,
- input[type="time"].input-lg,
- input[type="datetime-local"].input-lg,
- input[type="month"].input-lg,
- .input-group-lg input[type="date"],
- .input-group-lg input[type="time"],
- .input-group-lg input[type="datetime-local"],
- .input-group-lg input[type="month"] {
- line-height: 46px;
- }
-}
-.form-group {
- margin-bottom: 15px;
-}
-.radio,
-.checkbox {
- position: relative;
- display: block;
- margin-top: 10px;
- margin-bottom: 10px;
-}
-.radio label,
-.checkbox label {
- min-height: 20px;
- padding-left: 20px;
- margin-bottom: 0;
- font-weight: normal;
- cursor: pointer;
-}
-.radio input[type="radio"],
-.radio-inline input[type="radio"],
-.checkbox input[type="checkbox"],
-.checkbox-inline input[type="checkbox"] {
- position: absolute;
- margin-top: 4px \9;
- margin-left: -20px;
-}
-.radio + .radio,
-.checkbox + .checkbox {
- margin-top: -5px;
-}
-.radio-inline,
-.checkbox-inline {
- position: relative;
- display: inline-block;
- padding-left: 20px;
- margin-bottom: 0;
- font-weight: normal;
- vertical-align: middle;
- cursor: pointer;
-}
-.radio-inline + .radio-inline,
-.checkbox-inline + .checkbox-inline {
- margin-top: 0;
- margin-left: 10px;
-}
-input[type="radio"][disabled],
-input[type="checkbox"][disabled],
-input[type="radio"].disabled,
-input[type="checkbox"].disabled,
-fieldset[disabled] input[type="radio"],
-fieldset[disabled] input[type="checkbox"] {
- cursor: not-allowed;
-}
-.radio-inline.disabled,
-.checkbox-inline.disabled,
-fieldset[disabled] .radio-inline,
-fieldset[disabled] .checkbox-inline {
- cursor: not-allowed;
-}
-.radio.disabled label,
-.checkbox.disabled label,
-fieldset[disabled] .radio label,
-fieldset[disabled] .checkbox label {
- cursor: not-allowed;
-}
-.form-control-static {
- min-height: 34px;
- padding-top: 7px;
- padding-bottom: 7px;
- margin-bottom: 0;
-}
-.form-control-static.input-lg,
-.form-control-static.input-sm {
- padding-right: 0;
- padding-left: 0;
-}
-.input-sm {
- height: 30px;
- padding: 5px 10px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
-}
-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: 3px;
-}
-.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: 32px;
- padding: 6px 10px;
- font-size: 12px;
- line-height: 1.5;
-}
-.input-lg {
- height: 46px;
- padding: 10px 16px;
- font-size: 18px;
- line-height: 1.3333333;
- border-radius: 6px;
-}
-select.input-lg {
- height: 46px;
- line-height: 46px;
-}
-textarea.input-lg,
-select[multiple].input-lg {
- height: auto;
-}
-.form-group-lg .form-control {
- height: 46px;
- padding: 10px 16px;
- font-size: 18px;
- line-height: 1.3333333;
- border-radius: 6px;
-}
-.form-group-lg select.form-control {
- height: 46px;
- line-height: 46px;
-}
-.form-group-lg textarea.form-control,
-.form-group-lg select[multiple].form-control {
- height: auto;
-}
-.form-group-lg .form-control-static {
- height: 46px;
- min-height: 38px;
- padding: 11px 16px;
- font-size: 18px;
- line-height: 1.3333333;
-}
-.has-feedback {
- position: relative;
-}
-.has-feedback .form-control {
- padding-right: 42.5px;
-}
-.form-control-feedback {
- position: absolute;
- top: 0;
- right: 0;
- z-index: 2;
- display: block;
- width: 34px;
- height: 34px;
- line-height: 34px;
- text-align: center;
- pointer-events: none;
-}
-.input-lg + .form-control-feedback,
-.input-group-lg + .form-control-feedback,
-.form-group-lg .form-control + .form-control-feedback {
- width: 46px;
- height: 46px;
- line-height: 46px;
-}
-.input-sm + .form-control-feedback,
-.input-group-sm + .form-control-feedback,
-.form-group-sm .form-control + .form-control-feedback {
- width: 30px;
- height: 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-success.radio-inline label,
-.has-success.checkbox-inline label {
- color: #3c763d;
-}
-.has-success .form-control {
- border-color: #3c763d;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-}
-.has-success .form-control:focus {
- border-color: #2b542c;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
-}
-.has-success .input-group-addon {
- color: #3c763d;
- background-color: #dff0d8;
- border-color: #3c763d;
-}
-.has-success .form-control-feedback {
- color: #3c763d;
-}
-.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-warning.radio-inline label,
-.has-warning.checkbox-inline label {
- color: #8a6d3b;
-}
-.has-warning .form-control {
- border-color: #8a6d3b;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-}
-.has-warning .form-control:focus {
- border-color: #66512c;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
-}
-.has-warning .input-group-addon {
- color: #8a6d3b;
- background-color: #fcf8e3;
- border-color: #8a6d3b;
-}
-.has-warning .form-control-feedback {
- color: #8a6d3b;
-}
-.has-error .help-block,
-.has-error .control-label,
-.has-error .radio,
-.has-error .checkbox,
-.has-error .radio-inline,
-.has-error .checkbox-inline,
-.has-error.radio label,
-.has-error.checkbox label,
-.has-error.radio-inline label,
-.has-error.checkbox-inline label {
- color: #a94442;
-}
-.has-error .form-control {
- border-color: #a94442;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-}
-.has-error .form-control:focus {
- border-color: #843534;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
-}
-.has-error .input-group-addon {
- color: #a94442;
- background-color: #f2dede;
- border-color: #a94442;
-}
-.has-error .form-control-feedback {
- color: #a94442;
-}
-.has-feedback label ~ .form-control-feedback {
- top: 25px;
-}
-.has-feedback label.sr-only ~ .form-control-feedback {
- top: 0;
-}
-.help-block {
- display: block;
- margin-top: 5px;
- margin-bottom: 10px;
- color: #737373;
-}
-@media (min-width: 768px) {
- .form-inline .form-group {
- display: inline-block;
- margin-bottom: 0;
- vertical-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: 0;
- vertical-align: middle;
- }
- .form-inline .radio,
- .form-inline .checkbox {
- display: inline-block;
- margin-top: 0;
- margin-bottom: 0;
- vertical-align: middle;
- }
- .form-inline .radio label,
- .form-inline .checkbox label {
- padding-left: 0;
- }
- .form-inline .radio input[type="radio"],
- .form-inline .checkbox input[type="checkbox"] {
- position: relative;
- margin-left: 0;
- }
- .form-inline .has-feedback .form-control-feedback {
- top: 0;
- }
-}
-.form-horizontal .radio,
-.form-horizontal .checkbox,
-.form-horizontal .radio-inline,
-.form-horizontal .checkbox-inline {
- padding-top: 7px;
- margin-top: 0;
- margin-bottom: 0;
-}
-.form-horizontal .radio,
-.form-horizontal .checkbox {
- min-height: 27px;
-}
-.form-horizontal .form-group {
- margin-right: -15px;
- margin-left: -15px;
-}
-@media (min-width: 768px) {
- .form-horizontal .control-label {
- padding-top: 7px;
- margin-bottom: 0;
- text-align: right;
- }
-}
-.form-horizontal .has-feedback .form-control-feedback {
- right: 15px;
-}
-@media (min-width: 768px) {
- .form-horizontal .form-group-lg .control-label {
- padding-top: 11px;
- font-size: 18px;
- }
-}
-@media (min-width: 768px) {
- .form-horizontal .form-group-sm .control-label {
- padding-top: 6px;
- font-size: 12px;
- }
-}
-.btn {
- display: inline-block;
- padding: 6px 12px;
- margin-bottom: 0;
- font-size: 14px;
- font-weight: normal;
- line-height: 1.42857143;
- text-align: center;
- white-space: nowrap;
- vertical-align: middle;
- -ms-touch-action: manipulation;
- touch-action: manipulation;
- cursor: pointer;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- background-image: none;
- border: 1px solid transparent;
- border-radius: 4px;
-}
-.btn:focus,
-.btn:active:focus,
-.btn.active:focus,
-.btn.focus,
-.btn:active.focus,
-.btn.active.focus {
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
-}
-.btn:hover,
-.btn:focus,
-.btn.focus {
- color: #333;
- text-decoration: none;
-}
-.btn:active,
-.btn.active {
- background-image: none;
- outline: 0;
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
-}
-.btn.disabled,
-.btn[disabled],
-fieldset[disabled] .btn {
- cursor: not-allowed;
- filter: alpha(opacity=65);
- -webkit-box-shadow: none;
- box-shadow: none;
- opacity: .65;
-}
-a.btn.disabled,
-fieldset[disabled] a.btn {
- pointer-events: none;
-}
-.btn-default {
- color: #333;
- background-color: #fff;
- border-color: #ccc;
-}
-.btn-default:focus,
-.btn-default.focus {
- color: #333;
- background-color: #e6e6e6;
- border-color: #8c8c8c;
-}
-.btn-default:hover {
- color: #333;
- background-color: #e6e6e6;
- border-color: #adadad;
-}
-.btn-default:active,
-.btn-default.active,
-.open > .dropdown-toggle.btn-default {
- color: #333;
- background-color: #e6e6e6;
- border-color: #adadad;
-}
-.btn-default:active:hover,
-.btn-default.active:hover,
-.open > .dropdown-toggle.btn-default:hover,
-.btn-default:active:focus,
-.btn-default.active:focus,
-.open > .dropdown-toggle.btn-default:focus,
-.btn-default:active.focus,
-.btn-default.active.focus,
-.open > .dropdown-toggle.btn-default.focus {
- color: #333;
- background-color: #d4d4d4;
- border-color: #8c8c8c;
-}
-.btn-default:active,
-.btn-default.active,
-.open > .dropdown-toggle.btn-default {
- background-image: none;
-}
-.btn-default.disabled:hover,
-.btn-default[disabled]:hover,
-fieldset[disabled] .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 {
- background-color: #fff;
- border-color: #ccc;
-}
-.btn-default .badge {
- color: #fff;
- background-color: #333;
-}
-.btn-primary {
- color: #fff;
- background-color: #337ab7;
- border-color: #2e6da4;
-}
-.btn-primary:focus,
-.btn-primary.focus {
- color: #fff;
- background-color: #286090;
- border-color: #122b40;
-}
-.btn-primary:hover {
- color: #fff;
- background-color: #286090;
- border-color: #204d74;
-}
-.btn-primary:active,
-.btn-primary.active,
-.open > .dropdown-toggle.btn-primary {
- color: #fff;
- background-color: #286090;
- border-color: #204d74;
-}
-.btn-primary:active:hover,
-.btn-primary.active:hover,
-.open > .dropdown-toggle.btn-primary:hover,
-.btn-primary:active:focus,
-.btn-primary.active:focus,
-.open > .dropdown-toggle.btn-primary:focus,
-.btn-primary:active.focus,
-.btn-primary.active.focus,
-.open > .dropdown-toggle.btn-primary.focus {
- color: #fff;
- background-color: #204d74;
- border-color: #122b40;
-}
-.btn-primary:active,
-.btn-primary.active,
-.open > .dropdown-toggle.btn-primary {
- background-image: none;
-}
-.btn-primary.disabled:hover,
-.btn-primary[disabled]:hover,
-fieldset[disabled] .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 {
- background-color: #337ab7;
- border-color: #2e6da4;
-}
-.btn-primary .badge {
- color: #337ab7;
- background-color: #fff;
-}
-.btn-success {
- color: #fff;
- background-color: #5cb85c;
- border-color: #4cae4c;
-}
-.btn-success:focus,
-.btn-success.focus {
- color: #fff;
- background-color: #449d44;
- border-color: #255625;
-}
-.btn-success:hover {
- color: #fff;
- background-color: #449d44;
- border-color: #398439;
-}
-.btn-success:active,
-.btn-success.active,
-.open > .dropdown-toggle.btn-success {
- color: #fff;
- background-color: #449d44;
- border-color: #398439;
-}
-.btn-success:active:hover,
-.btn-success.active:hover,
-.open > .dropdown-toggle.btn-success:hover,
-.btn-success:active:focus,
-.btn-success.active:focus,
-.open > .dropdown-toggle.btn-success:focus,
-.btn-success:active.focus,
-.btn-success.active.focus,
-.open > .dropdown-toggle.btn-success.focus {
- color: #fff;
- background-color: #398439;
- border-color: #255625;
-}
-.btn-success:active,
-.btn-success.active,
-.open > .dropdown-toggle.btn-success {
- background-image: none;
-}
-.btn-success.disabled:hover,
-.btn-success[disabled]:hover,
-fieldset[disabled] .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 {
- background-color: #5cb85c;
- border-color: #4cae4c;
-}
-.btn-success .badge {
- color: #5cb85c;
- background-color: #fff;
-}
-.btn-info {
- color: #fff;
- background-color: #5bc0de;
- border-color: #46b8da;
-}
-.btn-info:focus,
-.btn-info.focus {
- color: #fff;
- background-color: #31b0d5;
- border-color: #1b6d85;
-}
-.btn-info:hover {
- color: #fff;
- background-color: #31b0d5;
- border-color: #269abc;
-}
-.btn-info:active,
-.btn-info.active,
-.open > .dropdown-toggle.btn-info {
- color: #fff;
- background-color: #31b0d5;
- border-color: #269abc;
-}
-.btn-info:active:hover,
-.btn-info.active:hover,
-.open > .dropdown-toggle.btn-info:hover,
-.btn-info:active:focus,
-.btn-info.active:focus,
-.open > .dropdown-toggle.btn-info:focus,
-.btn-info:active.focus,
-.btn-info.active.focus,
-.open > .dropdown-toggle.btn-info.focus {
- color: #fff;
- background-color: #269abc;
- border-color: #1b6d85;
-}
-.btn-info:active,
-.btn-info.active,
-.open > .dropdown-toggle.btn-info {
- background-image: none;
-}
-.btn-info.disabled:hover,
-.btn-info[disabled]:hover,
-fieldset[disabled] .btn-info:hover,
-.btn-info.disabled:focus,
-.btn-info[disabled]:focus,
-fieldset[disabled] .btn-info:focus,
-.btn-info.disabled.focus,
-.btn-info[disabled].focus,
-fieldset[disabled] .btn-info.focus {
- background-color: #5bc0de;
- border-color: #46b8da;
-}
-.btn-info .badge {
- color: #5bc0de;
- background-color: #fff;
-}
-.btn-warning {
- color: #fff;
- background-color: #f0ad4e;
- border-color: #eea236;
-}
-.btn-warning:focus,
-.btn-warning.focus {
- color: #fff;
- background-color: #ec971f;
- border-color: #985f0d;
-}
-.btn-warning:hover {
- color: #fff;
- background-color: #ec971f;
- border-color: #d58512;
-}
-.btn-warning:active,
-.btn-warning.active,
-.open > .dropdown-toggle.btn-warning {
- color: #fff;
- background-color: #ec971f;
- border-color: #d58512;
-}
-.btn-warning:active:hover,
-.btn-warning.active:hover,
-.open > .dropdown-toggle.btn-warning:hover,
-.btn-warning:active:focus,
-.btn-warning.active:focus,
-.open > .dropdown-toggle.btn-warning:focus,
-.btn-warning:active.focus,
-.btn-warning.active.focus,
-.open > .dropdown-toggle.btn-warning.focus {
- color: #fff;
- background-color: #d58512;
- border-color: #985f0d;
-}
-.btn-warning:active,
-.btn-warning.active,
-.open > .dropdown-toggle.btn-warning {
- background-image: none;
-}
-.btn-warning.disabled:hover,
-.btn-warning[disabled]:hover,
-fieldset[disabled] .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 {
- background-color: #f0ad4e;
- border-color: #eea236;
-}
-.btn-warning .badge {
- color: #f0ad4e;
- background-color: #fff;
-}
-.btn-danger {
- color: #fff;
- background-color: #d9534f;
- border-color: #d43f3a;
-}
-.btn-danger:focus,
-.btn-danger.focus {
- color: #fff;
- background-color: #c9302c;
- border-color: #761c19;
-}
-.btn-danger:hover {
- color: #fff;
- background-color: #c9302c;
- border-color: #ac2925;
-}
-.btn-danger:active,
-.btn-danger.active,
-.open > .dropdown-toggle.btn-danger {
- color: #fff;
- background-color: #c9302c;
- border-color: #ac2925;
-}
-.btn-danger:active:hover,
-.btn-danger.active:hover,
-.open > .dropdown-toggle.btn-danger:hover,
-.btn-danger:active:focus,
-.btn-danger.active:focus,
-.open > .dropdown-toggle.btn-danger:focus,
-.btn-danger:active.focus,
-.btn-danger.active.focus,
-.open > .dropdown-toggle.btn-danger.focus {
- color: #fff;
- background-color: #ac2925;
- border-color: #761c19;
-}
-.btn-danger:active,
-.btn-danger.active,
-.open > .dropdown-toggle.btn-danger {
- background-image: none;
-}
-.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-danger[disabled].focus,
-fieldset[disabled] .btn-danger.focus {
- background-color: #d9534f;
- border-color: #d43f3a;
-}
-.btn-danger .badge {
- color: #d9534f;
- background-color: #fff;
-}
-.btn-link {
- font-weight: normal;
- color: #337ab7;
- border-radius: 0;
-}
-.btn-link,
-.btn-link:active,
-.btn-link.active,
-.btn-link[disabled],
-fieldset[disabled] .btn-link {
- background-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-.btn-link,
-.btn-link:hover,
-.btn-link:focus,
-.btn-link:active {
- border-color: transparent;
-}
-.btn-link:hover,
-.btn-link:focus {
- color: #23527c;
- text-decoration: underline;
- background-color: transparent;
-}
-.btn-link[disabled]:hover,
-fieldset[disabled] .btn-link:hover,
-.btn-link[disabled]:focus,
-fieldset[disabled] .btn-link:focus {
- color: #777;
- text-decoration: none;
-}
-.btn-lg,
-.btn-group-lg > .btn {
- padding: 10px 16px;
- font-size: 18px;
- line-height: 1.3333333;
- border-radius: 6px;
-}
-.btn-sm,
-.btn-group-sm > .btn {
- padding: 5px 10px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
-}
-.btn-xs,
-.btn-group-xs > .btn {
- padding: 1px 5px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
-}
-.btn-block {
- display: block;
- width: 100%;
-}
-.btn-block + .btn-block {
- margin-top: 5px;
-}
-input[type="submit"].btn-block,
-input[type="reset"].btn-block,
-input[type="button"].btn-block {
- width: 100%;
-}
-.fade {
- opacity: 0;
- -webkit-transition: opacity .15s linear;
- -o-transition: opacity .15s linear;
- transition: opacity .15s linear;
-}
-.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: 0;
- overflow: hidden;
- -webkit-transition-timing-function: ease;
- -o-transition-timing-function: ease;
- transition-timing-function: ease;
- -webkit-transition-duration: .35s;
- -o-transition-duration: .35s;
- transition-duration: .35s;
- -webkit-transition-property: height, visibility;
- -o-transition-property: height, visibility;
- transition-property: height, visibility;
-}
-.caret {
- display: inline-block;
- width: 0;
- height: 0;
- margin-left: 2px;
- vertical-align: middle;
- border-top: 4px dashed;
- border-top: 4px solid \9;
- border-right: 4px solid transparent;
- border-left: 4px solid transparent;
-}
-.dropup,
-.dropdown {
- position: relative;
-}
-.dropdown-toggle:focus {
- outline: 0;
-}
-.dropdown-menu {
- position: absolute;
- top: 100%;
- left: 0;
- z-index: 1000;
- display: none;
- float: left;
- min-width: 160px;
- padding: 5px 0;
- margin: 2px 0 0;
- font-size: 14px;
- text-align: left;
- list-style: none;
- background-color: #fff;
- -webkit-background-clip: padding-box;
- background-clip: padding-box;
- border: 1px solid #ccc;
- border: 1px solid rgba(0, 0, 0, .15);
- border-radius: 4px;
- -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
- box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
-}
-.dropdown-menu.pull-right {
- right: 0;
- left: auto;
-}
-.dropdown-menu .divider {
- height: 1px;
- margin: 9px 0;
- overflow: hidden;
- background-color: #e5e5e5;
-}
-.dropdown-menu > li > a {
- display: block;
- padding: 3px 20px;
- clear: both;
- font-weight: normal;
- line-height: 1.42857143;
- color: #333;
- white-space: nowrap;
-}
-.dropdown-menu > li > a:hover,
-.dropdown-menu > li > a:focus {
- color: #262626;
- text-decoration: none;
- background-color: #f5f5f5;
-}
-.dropdown-menu > .active > a,
-.dropdown-menu > .active > a:hover,
-.dropdown-menu > .active > a:focus {
- color: #fff;
- text-decoration: none;
- background-color: #337ab7;
- outline: 0;
-}
-.dropdown-menu > .disabled > a,
-.dropdown-menu > .disabled > a:hover,
-.dropdown-menu > .disabled > a:focus {
- color: #777;
-}
-.dropdown-menu > .disabled > a:hover,
-.dropdown-menu > .disabled > a:focus {
- text-decoration: none;
- cursor: not-allowed;
- background-color: transparent;
- background-image: none;
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
-}
-.open > .dropdown-menu {
- display: block;
-}
-.open > a {
- outline: 0;
-}
-.dropdown-menu-right {
- right: 0;
- left: auto;
-}
-.dropdown-menu-left {
- right: auto;
- left: 0;
-}
-.dropdown-header {
- display: block;
- padding: 3px 20px;
- font-size: 12px;
- line-height: 1.42857143;
- color: #777;
- white-space: nowrap;
-}
-.dropdown-backdrop {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 990;
-}
-.pull-right > .dropdown-menu {
- right: 0;
- left: auto;
-}
-.dropup .caret,
-.navbar-fixed-bottom .dropdown .caret {
- content: "";
- border-top: 0;
- border-bottom: 4px dashed;
- border-bottom: 4px solid \9;
-}
-.dropup .dropdown-menu,
-.navbar-fixed-bottom .dropdown .dropdown-menu {
- top: auto;
- bottom: 100%;
- margin-bottom: 2px;
-}
-@media (min-width: 768px) {
- .navbar-right .dropdown-menu {
- right: 0;
- left: auto;
- }
- .navbar-right .dropdown-menu-left {
- right: auto;
- left: 0;
- }
-}
-.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 > .btn:focus,
-.btn-group-vertical > .btn:focus,
-.btn-group > .btn:active,
-.btn-group-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 {
- float: 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: 0;
-}
-.btn-group > .btn:first-child {
- margin-left: 0;
-}
-.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
-}
-.btn-group > .btn:last-child:not(:first-child),
-.btn-group > .dropdown-toggle:not(:first-child) {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
-}
-.btn-group > .btn-group {
- float: left;
-}
-.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
- border-radius: 0;
-}
-.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
-.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
-}
-.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
-}
-.btn-group .dropdown-toggle:active,
-.btn-group.open .dropdown-toggle {
- outline: 0;
-}
-.btn-group > .btn + .dropdown-toggle {
- padding-right: 8px;
- padding-left: 8px;
-}
-.btn-group > .btn-lg + .dropdown-toggle {
- padding-right: 12px;
- padding-left: 12px;
-}
-.btn-group.open .dropdown-toggle {
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
-}
-.btn-group.open .dropdown-toggle.btn-link {
- -webkit-box-shadow: none;
- box-shadow: none;
-}
-.btn .caret {
- margin-left: 0;
-}
-.btn-lg .caret {
- border-width: 5px 5px 0;
- border-bottom-width: 0;
-}
-.dropup .btn-lg .caret {
- border-width: 0 5px 5px;
-}
-.btn-group-vertical > .btn,
-.btn-group-vertical > .btn-group,
-.btn-group-vertical > .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: 0;
-}
-.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
- border-radius: 0;
-}
-.btn-group-vertical > .btn:first-child:not(:last-child) {
- border-top-left-radius: 4px;
- border-top-right-radius: 4px;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
-}
-.btn-group-vertical > .btn:last-child:not(:first-child) {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- border-bottom-right-radius: 4px;
- border-bottom-left-radius: 4px;
-}
-.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
- border-radius: 0;
-}
-.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
-.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
-}
-.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
-}
-.btn-group-justified {
- display: table;
- width: 100%;
- table-layout: fixed;
- border-collapse: separate;
-}
-.btn-group-justified > .btn,
-.btn-group-justified > .btn-group {
- display: table-cell;
- float: none;
- width: 1%;
-}
-.btn-group-justified > .btn-group .btn {
- width: 100%;
-}
-.btn-group-justified > .btn-group .dropdown-menu {
- left: auto;
-}
-[data-toggle="buttons"] > .btn input[type="radio"],
-[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
-[data-toggle="buttons"] > .btn input[type="checkbox"],
-[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
- position: absolute;
- clip: rect(0, 0, 0, 0);
- pointer-events: none;
-}
-.input-group {
- position: relative;
- display: table;
- border-collapse: separate;
-}
-.input-group[class*="col-"] {
- float: none;
- padding-right: 0;
- padding-left: 0;
-}
-.input-group .form-control {
- position: relative;
- z-index: 2;
- float: left;
- width: 100%;
- margin-bottom: 0;
-}
-.input-group .form-control:focus {
- z-index: 3;
-}
-.input-group-lg > .form-control,
-.input-group-lg > .input-group-addon,
-.input-group-lg > .input-group-btn > .btn {
- height: 46px;
- padding: 10px 16px;
- font-size: 18px;
- line-height: 1.3333333;
- border-radius: 6px;
-}
-select.input-group-lg > .form-control,
-select.input-group-lg > .input-group-addon,
-select.input-group-lg > .input-group-btn > .btn {
- height: 46px;
- line-height: 46px;
-}
-textarea.input-group-lg > .form-control,
-textarea.input-group-lg > .input-group-addon,
-textarea.input-group-lg > .input-group-btn > .btn,
-select[multiple].input-group-lg > .form-control,
-select[multiple].input-group-lg > .input-group-addon,
-select[multiple].input-group-lg > .input-group-btn > .btn {
- height: auto;
-}
-.input-group-sm > .form-control,
-.input-group-sm > .input-group-addon,
-.input-group-sm > .input-group-btn > .btn {
- height: 30px;
- padding: 5px 10px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
-}
-select.input-group-sm > .form-control,
-select.input-group-sm > .input-group-addon,
-select.input-group-sm > .input-group-btn > .btn {
- height: 30px;
- line-height: 30px;
-}
-textarea.input-group-sm > .form-control,
-textarea.input-group-sm > .input-group-addon,
-textarea.input-group-sm > .input-group-btn > .btn,
-select[multiple].input-group-sm > .form-control,
-select[multiple].input-group-sm > .input-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-child):not(:last-child) {
- border-radius: 0;
-}
-.input-group-addon,
-.input-group-btn {
- width: 1%;
- white-space: nowrap;
- vertical-align: middle;
-}
-.input-group-addon {
- padding: 6px 12px;
- font-size: 14px;
- font-weight: normal;
- line-height: 1;
- color: #555;
- text-align: center;
- background-color: #eee;
- border: 1px solid #ccc;
- border-radius: 4px;
-}
-.input-group-addon.input-sm {
- padding: 5px 10px;
- font-size: 12px;
- border-radius: 3px;
-}
-.input-group-addon.input-lg {
- padding: 10px 16px;
- font-size: 18px;
- border-radius: 6px;
-}
-.input-group-addon input[type="radio"],
-.input-group-addon input[type="checkbox"] {
- margin-top: 0;
-}
-.input-group .form-control:first-child,
-.input-group-addon:first-child,
-.input-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: 0;
- border-bottom-right-radius: 0;
-}
-.input-group-addon:first-child {
- border-right: 0;
-}
-.input-group .form-control:last-child,
-.input-group-addon:last-child,
-.input-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: 0;
- border-bottom-left-radius: 0;
-}
-.input-group-addon:last-child {
- border-left: 0;
-}
-.input-group-btn {
- position: relative;
- font-size: 0;
- 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-group {
- margin-right: -1px;
-}
-.input-group-btn:last-child > .btn,
-.input-group-btn:last-child > .btn-group {
- z-index: 2;
- margin-left: -1px;
-}
-.nav {
- padding-left: 0;
- margin-bottom: 0;
- 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;
- background-color: #eee;
-}
-.nav > li.disabled > a {
- color: #777;
-}
-.nav > li.disabled > a:hover,
-.nav > li.disabled > a:focus {
- color: #777;
- text-decoration: none;
- cursor: not-allowed;
- background-color: transparent;
-}
-.nav .open > a,
-.nav .open > a:hover,
-.nav .open > a:focus {
- background-color: #eee;
- border-color: #337ab7;
-}
-.nav .nav-divider {
- height: 1px;
- margin: 9px 0;
- overflow: hidden;
- background-color: #e5e5e5;
-}
-.nav > li > a > img {
- max-width: none;
-}
-.nav-tabs {
- border-bottom: 1px solid #ddd;
-}
-.nav-tabs > li {
- float: left;
- margin-bottom: -1px;
-}
-.nav-tabs > li > a {
- margin-right: 2px;
- line-height: 1.42857143;
- border: 1px solid transparent;
- border-radius: 4px 4px 0 0;
-}
-.nav-tabs > li > a:hover {
- border-color: #eee #eee #ddd;
-}
-.nav-tabs > li.active > a,
-.nav-tabs > li.active > a:hover,
-.nav-tabs > li.active > a:focus {
- color: #555;
- cursor: default;
- background-color: #fff;
- border: 1px solid #ddd;
- border-bottom-color: transparent;
-}
-.nav-tabs.nav-justified {
- width: 100%;
- border-bottom: 0;
-}
-.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: 0;
- }
-}
-.nav-tabs.nav-justified > li > a {
- margin-right: 0;
- border-radius: 4px;
-}
-.nav-tabs.nav-justified > .active > a,
-.nav-tabs.nav-justified > .active > a:hover,
-.nav-tabs.nav-justified > .active > a:focus {
- border: 1px solid #ddd;
-}
-@media (min-width: 768px) {
- .nav-tabs.nav-justified > li > a {
- border-bottom: 1px solid #ddd;
- border-radius: 4px 4px 0 0;
- }
- .nav-tabs.nav-justified > .active > a,
- .nav-tabs.nav-justified > .active > a:hover,
- .nav-tabs.nav-justified > .active > a:focus {
- border-bottom-color: #fff;
- }
-}
-.nav-pills > li {
- float: left;
-}
-.nav-pills > li > a {
- border-radius: 4px;
-}
-.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: #fff;
- background-color: #337ab7;
-}
-.nav-stacked > li {
- float: none;
-}
-.nav-stacked > li + li {
- margin-top: 2px;
- margin-left: 0;
-}
-.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: 0;
- }
-}
-.nav-tabs-justified {
- border-bottom: 0;
-}
-.nav-tabs-justified > li > a {
- margin-right: 0;
- border-radius: 4px;
-}
-.nav-tabs-justified > .active > a,
-.nav-tabs-justified > .active > a:hover,
-.nav-tabs-justified > .active > a:focus {
- border: 1px solid #ddd;
-}
-@media (min-width: 768px) {
- .nav-tabs-justified > li > a {
- border-bottom: 1px solid #ddd;
- border-radius: 4px 4px 0 0;
- }
- .nav-tabs-justified > .active > a,
- .nav-tabs-justified > .active > a:hover,
- .nav-tabs-justified > .active > a:focus {
- border-bottom-color: #fff;
- }
-}
-.tab-content > .tab-pane {
- display: none;
-}
-.tab-content > .active {
- display: block;
-}
-.nav-tabs .dropdown-menu {
- margin-top: -1px;
- border-top-left-radius: 0;
- border-top-right-radius: 0;
-}
-.navbar {
- position: relative;
- min-height: 50px;
- margin-bottom: 20px;
- border: 1px solid transparent;
-}
-@media (min-width: 768px) {
- .navbar {
- border-radius: 4px;
- }
-}
-@media (min-width: 768px) {
- .navbar-header {
- float: left;
- }
-}
-.navbar-collapse {
- padding-right: 15px;
- padding-left: 15px;
- overflow-x: visible;
- -webkit-overflow-scrolling: touch;
- border-top: 1px solid transparent;
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
-}
-.navbar-collapse.in {
- overflow-y: auto;
-}
-@media (min-width: 768px) {
- .navbar-collapse {
- width: auto;
- border-top: 0;
- -webkit-box-shadow: none;
- box-shadow: none;
- }
- .navbar-collapse.collapse {
- display: block !important;
- height: auto !important;
- padding-bottom: 0;
- 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: 0;
- padding-left: 0;
- }
-}
-.navbar-fixed-top .navbar-collapse,
-.navbar-fixed-bottom .navbar-collapse {
- max-height: 340px;
-}
-@media (max-device-width: 480px) and (orientation: landscape) {
- .navbar-fixed-top .navbar-collapse,
- .navbar-fixed-bottom .navbar-collapse {
- max-height: 200px;
- }
-}
-.container > .navbar-header,
-.container-fluid > .navbar-header,
-.container > .navbar-collapse,
-.container-fluid > .navbar-collapse {
- margin-right: -15px;
- margin-left: -15px;
-}
-@media (min-width: 768px) {
- .container > .navbar-header,
- .container-fluid > .navbar-header,
- .container > .navbar-collapse,
- .container-fluid > .navbar-collapse {
- margin-right: 0;
- margin-left: 0;
- }
-}
-.navbar-static-top {
- z-index: 1000;
- border-width: 0 0 1px;
-}
-@media (min-width: 768px) {
- .navbar-static-top {
- border-radius: 0;
- }
-}
-.navbar-fixed-top,
-.navbar-fixed-bottom {
- position: fixed;
- right: 0;
- left: 0;
- z-index: 1030;
-}
-@media (min-width: 768px) {
- .navbar-fixed-top,
- .navbar-fixed-bottom {
- border-radius: 0;
- }
-}
-.navbar-fixed-top {
- top: 0;
- border-width: 0 0 1px;
-}
-.navbar-fixed-bottom {
- bottom: 0;
- margin-bottom: 0;
- border-width: 1px 0 0;
-}
-.navbar-brand {
- float: left;
- height: 50px;
- padding: 15px 15px;
- font-size: 18px;
- line-height: 20px;
-}
-.navbar-brand:hover,
-.navbar-brand:focus {
- text-decoration: none;
-}
-.navbar-brand > img {
- display: block;
-}
-@media (min-width: 768px) {
- .navbar > .container .navbar-brand,
- .navbar > .container-fluid .navbar-brand {
- margin-left: -15px;
- }
-}
-.navbar-toggle {
- position: relative;
- float: right;
- padding: 9px 10px;
- margin-top: 8px;
- margin-right: 15px;
- margin-bottom: 8px;
- background-color: transparent;
- background-image: none;
- border: 1px solid transparent;
- border-radius: 4px;
-}
-.navbar-toggle:focus {
- outline: 0;
-}
-.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: 768px) {
- .navbar-toggle {
- display: none;
- }
-}
-.navbar-nav {
- margin: 7.5px -15px;
-}
-.navbar-nav > li > a {
- padding-top: 10px;
- padding-bottom: 10px;
- line-height: 20px;
-}
-@media (max-width: 767px) {
- .navbar-nav .open .dropdown-menu {
- position: static;
- float: none;
- width: auto;
- margin-top: 0;
- background-color: transparent;
- border: 0;
- -webkit-box-shadow: none;
- box-shadow: none;
- }
- .navbar-nav .open .dropdown-menu > li > a,
- .navbar-nav .open .dropdown-menu .dropdown-header {
- padding: 5px 15px 5px 25px;
- }
- .navbar-nav .open .dropdown-menu > li > a {
- line-height: 20px;
- }
- .navbar-nav .open .dropdown-menu > li > a:hover,
- .navbar-nav .open .dropdown-menu > li > a:focus {
- background-image: none;
- }
-}
-@media (min-width: 768px) {
- .navbar-nav {
- float: left;
- margin: 0;
- }
- .navbar-nav > li {
- float: left;
- }
- .navbar-nav > li > a {
- padding-top: 15px;
- padding-bottom: 15px;
- }
-}
-.navbar-form {
- padding: 10px 15px;
- margin-top: 8px;
- margin-right: -15px;
- margin-bottom: 8px;
- margin-left: -15px;
- border-top: 1px solid transparent;
- border-bottom: 1px solid transparent;
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
-}
-@media (min-width: 768px) {
- .navbar-form .form-group {
- display: inline-block;
- margin-bottom: 0;
- vertical-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: 0;
- vertical-align: middle;
- }
- .navbar-form .radio,
- .navbar-form .checkbox {
- display: inline-block;
- margin-top: 0;
- margin-bottom: 0;
- vertical-align: middle;
- }
- .navbar-form .radio label,
- .navbar-form .checkbox label {
- padding-left: 0;
- }
- .navbar-form .radio input[type="radio"],
- .navbar-form .checkbox input[type="checkbox"] {
- position: relative;
- margin-left: 0;
- }
- .navbar-form .has-feedback .form-control-feedback {
- top: 0;
- }
-}
-@media (max-width: 767px) {
- .navbar-form .form-group {
- margin-bottom: 5px;
- }
- .navbar-form .form-group:last-child {
- margin-bottom: 0;
- }
-}
-@media (min-width: 768px) {
- .navbar-form {
- width: auto;
- padding-top: 0;
- padding-bottom: 0;
- margin-right: 0;
- margin-left: 0;
- border: 0;
- -webkit-box-shadow: none;
- box-shadow: none;
- }
-}
-.navbar-nav > li > .dropdown-menu {
- margin-top: 0;
- border-top-left-radius: 0;
- border-top-right-radius: 0;
-}
-.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
- margin-bottom: 0;
- border-top-left-radius: 4px;
- border-top-right-radius: 4px;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
-}
-.navbar-btn {
- margin-top: 8px;
- margin-bottom: 8px;
-}
-.navbar-btn.btn-sm {
- margin-top: 10px;
- margin-bottom: 10px;
-}
-.navbar-btn.btn-xs {
- margin-top: 14px;
- margin-bottom: 14px;
-}
-.navbar-text {
- margin-top: 15px;
- margin-bottom: 15px;
-}
-@media (min-width: 768px) {
- .navbar-text {
- float: left;
- margin-right: 15px;
- margin-left: 15px;
- }
-}
-@media (min-width: 768px) {
- .navbar-left {
- float: left !important;
- }
- .navbar-right {
- float: right !important;
- margin-right: -15px;
- }
- .navbar-right ~ .navbar-right {
- margin-right: 0;
- }
-}
-.navbar-default {
- background-color: #f8f8f8;
- border-color: #e7e7e7;
-}
-.navbar-default .navbar-brand {
- color: #777;
-}
-.navbar-default .navbar-brand:hover,
-.navbar-default .navbar-brand:focus {
- color: #5e5e5e;
- background-color: transparent;
-}
-.navbar-default .navbar-text {
- color: #777;
-}
-.navbar-default .navbar-nav > li > a {
- color: #777;
-}
-.navbar-default .navbar-nav > li > a:hover,
-.navbar-default .navbar-nav > li > a:focus {
- color: #333;
- background-color: transparent;
-}
-.navbar-default .navbar-nav > .active > a,
-.navbar-default .navbar-nav > .active > a:hover,
-.navbar-default .navbar-nav > .active > a:focus {
- color: #555;
- background-color: #e7e7e7;
-}
-.navbar-default .navbar-nav > .disabled > a,
-.navbar-default .navbar-nav > .disabled > a:hover,
-.navbar-default .navbar-nav > .disabled > a:focus {
- color: #ccc;
- background-color: transparent;
-}
-.navbar-default .navbar-toggle {
- border-color: #ddd;
-}
-.navbar-default .navbar-toggle:hover,
-.navbar-default .navbar-toggle:focus {
- background-color: #ddd;
-}
-.navbar-default .navbar-toggle .icon-bar {
- background-color: #888;
-}
-.navbar-default .navbar-collapse,
-.navbar-default .navbar-form {
- border-color: #e7e7e7;
-}
-.navbar-default .navbar-nav > .open > a,
-.navbar-default .navbar-nav > .open > a:hover,
-.navbar-default .navbar-nav > .open > a:focus {
- color: #555;
- background-color: #e7e7e7;
-}
-@media (max-width: 767px) {
- .navbar-default .navbar-nav .open .dropdown-menu > li > a {
- color: #777;
- }
- .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
- .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
- color: #333;
- background-color: transparent;
- }
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
- color: #555;
- background-color: #e7e7e7;
- }
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
- color: #ccc;
- background-color: transparent;
- }
-}
-.navbar-default .navbar-link {
- color: #777;
-}
-.navbar-default .navbar-link:hover {
- color: #333;
-}
-.navbar-default .btn-link {
- color: #777;
-}
-.navbar-default .btn-link:hover,
-.navbar-default .btn-link:focus {
- color: #333;
-}
-.navbar-default .btn-link[disabled]:hover,
-fieldset[disabled] .navbar-default .btn-link:hover,
-.navbar-default .btn-link[disabled]:focus,
-fieldset[disabled] .navbar-default .btn-link:focus {
- color: #ccc;
-}
-.navbar-inverse {
- background-color: #222;
- border-color: #080808;
-}
-.navbar-inverse .navbar-brand {
- color: #9d9d9d;
-}
-.navbar-inverse .navbar-brand:hover,
-.navbar-inverse .navbar-brand:focus {
- color: #fff;
- background-color: transparent;
-}
-.navbar-inverse .navbar-text {
- color: #9d9d9d;
-}
-.navbar-inverse .navbar-nav > li > a {
- color: #9d9d9d;
-}
-.navbar-inverse .navbar-nav > li > a:hover,
-.navbar-inverse .navbar-nav > li > a:focus {
- color: #fff;
- background-color: transparent;
-}
-.navbar-inverse .navbar-nav > .active > a,
-.navbar-inverse .navbar-nav > .active > a:hover,
-.navbar-inverse .navbar-nav > .active > a:focus {
- color: #fff;
- background-color: #080808;
-}
-.navbar-inverse .navbar-nav > .disabled > a,
-.navbar-inverse .navbar-nav > .disabled > a:hover,
-.navbar-inverse .navbar-nav > .disabled > a:focus {
- color: #444;
- background-color: transparent;
-}
-.navbar-inverse .navbar-toggle {
- border-color: #333;
-}
-.navbar-inverse .navbar-toggle:hover,
-.navbar-inverse .navbar-toggle:focus {
- background-color: #333;
-}
-.navbar-inverse .navbar-toggle .icon-bar {
- background-color: #fff;
-}
-.navbar-inverse .navbar-collapse,
-.navbar-inverse .navbar-form {
- border-color: #101010;
-}
-.navbar-inverse .navbar-nav > .open > a,
-.navbar-inverse .navbar-nav > .open > a:hover,
-.navbar-inverse .navbar-nav > .open > a:focus {
- color: #fff;
- background-color: #080808;
-}
-@media (max-width: 767px) {
- .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
- border-color: #080808;
- }
- .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
- background-color: #080808;
- }
- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
- color: #9d9d9d;
- }
- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
- color: #fff;
- background-color: transparent;
- }
- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
- color: #fff;
- background-color: #080808;
- }
- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
- color: #444;
- background-color: transparent;
- }
-}
-.navbar-inverse .navbar-link {
- color: #9d9d9d;
-}
-.navbar-inverse .navbar-link:hover {
- color: #fff;
-}
-.navbar-inverse .btn-link {
- color: #9d9d9d;
-}
-.navbar-inverse .btn-link:hover,
-.navbar-inverse .btn-link:focus {
- color: #fff;
-}
-.navbar-inverse .btn-link[disabled]:hover,
-fieldset[disabled] .navbar-inverse .btn-link:hover,
-.navbar-inverse .btn-link[disabled]:focus,
-fieldset[disabled] .navbar-inverse .btn-link:focus {
- color: #444;
-}
-.breadcrumb {
- padding: 8px 15px;
- margin-bottom: 20px;
- list-style: none;
- background-color: #f5f5f5;
- border-radius: 4px;
-}
-.breadcrumb > li {
- display: inline-block;
-}
-.breadcrumb > li + li:before {
- padding: 0 5px;
- color: #ccc;
- content: "/\00a0";
-}
-.breadcrumb > .active {
- color: #777;
-}
-.pagination {
- display: inline-block;
- padding-left: 0;
- margin: 20px 0;
- border-radius: 4px;
-}
-.pagination > li {
- display: inline;
-}
-.pagination > li > a,
-.pagination > li > span {
- position: relative;
- float: left;
- padding: 6px 12px;
- margin-left: -1px;
- line-height: 1.42857143;
- color: #337ab7;
- text-decoration: none;
- background-color: #fff;
- border: 1px solid #ddd;
-}
-.pagination > li:first-child > a,
-.pagination > li:first-child > span {
- margin-left: 0;
- border-top-left-radius: 4px;
- border-bottom-left-radius: 4px;
-}
-.pagination > li:last-child > a,
-.pagination > li:last-child > span {
- border-top-right-radius: 4px;
- border-bottom-right-radius: 4px;
-}
-.pagination > li > a:hover,
-.pagination > li > span:hover,
-.pagination > li > a:focus,
-.pagination > li > span:focus {
- z-index: 2;
- color: #23527c;
- background-color: #eee;
- border-color: #ddd;
-}
-.pagination > .active > a,
-.pagination > .active > span,
-.pagination > .active > a:hover,
-.pagination > .active > span:hover,
-.pagination > .active > a:focus,
-.pagination > .active > span:focus {
- z-index: 3;
- color: #fff;
- cursor: default;
- background-color: #337ab7;
- border-color: #337ab7;
-}
-.pagination > .disabled > span,
-.pagination > .disabled > span:hover,
-.pagination > .disabled > span:focus,
-.pagination > .disabled > a,
-.pagination > .disabled > a:hover,
-.pagination > .disabled > a:focus {
- color: #777;
- cursor: not-allowed;
- background-color: #fff;
- border-color: #ddd;
-}
-.pagination-lg > li > a,
-.pagination-lg > li > span {
- padding: 10px 16px;
- font-size: 18px;
- line-height: 1.3333333;
-}
-.pagination-lg > li:first-child > a,
-.pagination-lg > li:first-child > span {
- border-top-left-radius: 6px;
- border-bottom-left-radius: 6px;
-}
-.pagination-lg > li:last-child > a,
-.pagination-lg > li:last-child > span {
- border-top-right-radius: 6px;
- border-bottom-right-radius: 6px;
-}
-.pagination-sm > li > a,
-.pagination-sm > li > span {
- padding: 5px 10px;
- font-size: 12px;
- line-height: 1.5;
-}
-.pagination-sm > li:first-child > a,
-.pagination-sm > li:first-child > span {
- border-top-left-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-.pagination-sm > li:last-child > a,
-.pagination-sm > li:last-child > span {
- border-top-right-radius: 3px;
- border-bottom-right-radius: 3px;
-}
-.pager {
- padding-left: 0;
- margin: 20px 0;
- text-align: center;
- list-style: none;
-}
-.pager li {
- display: inline;
-}
-.pager li > a,
-.pager li > span {
- display: inline-block;
- padding: 5px 14px;
- background-color: #fff;
- border: 1px solid #ddd;
- border-radius: 15px;
-}
-.pager li > a:hover,
-.pager li > a:focus {
- text-decoration: none;
- background-color: #eee;
-}
-.pager .next > a,
-.pager .next > span {
- float: right;
-}
-.pager .previous > a,
-.pager .previous > span {
- float: left;
-}
-.pager .disabled > a,
-.pager .disabled > a:hover,
-.pager .disabled > a:focus,
-.pager .disabled > span {
- color: #777;
- cursor: not-allowed;
- background-color: #fff;
-}
-.label {
- display: inline;
- padding: .2em .6em .3em;
- font-size: 75%;
- font-weight: bold;
- line-height: 1;
- color: #fff;
- text-align: center;
- white-space: nowrap;
- vertical-align: baseline;
- border-radius: .25em;
-}
-a.label:hover,
-a.label:focus {
- color: #fff;
- text-decoration: none;
- cursor: pointer;
-}
-.label:empty {
- display: none;
-}
-.btn .label {
- position: relative;
- top: -1px;
-}
-.label-default {
- background-color: #777;
-}
-.label-default[href]:hover,
-.label-default[href]:focus {
- background-color: #5e5e5e;
-}
-.label-primary {
- background-color: #337ab7;
-}
-.label-primary[href]:hover,
-.label-primary[href]:focus {
- background-color: #286090;
-}
-.label-success {
- background-color: #5cb85c;
-}
-.label-success[href]:hover,
-.label-success[href]:focus {
- background-color: #449d44;
-}
-.label-info {
- background-color: #5bc0de;
-}
-.label-info[href]:hover,
-.label-info[href]:focus {
- background-color: #31b0d5;
-}
-.label-warning {
- background-color: #f0ad4e;
-}
-.label-warning[href]:hover,
-.label-warning[href]:focus {
- background-color: #ec971f;
-}
-.label-danger {
- background-color: #d9534f;
-}
-.label-danger[href]:hover,
-.label-danger[href]:focus {
- background-color: #c9302c;
-}
-.badge {
- display: inline-block;
- min-width: 10px;
- padding: 3px 7px;
- font-size: 12px;
- font-weight: bold;
- line-height: 1;
- color: #fff;
- text-align: center;
- white-space: nowrap;
- vertical-align: middle;
- background-color: #777;
- border-radius: 10px;
-}
-.badge:empty {
- display: none;
-}
-.btn .badge {
- position: relative;
- top: -1px;
-}
-.btn-xs .badge,
-.btn-group-xs > .btn .badge {
- top: 0;
- padding: 1px 5px;
-}
-a.badge:hover,
-a.badge:focus {
- color: #fff;
- text-decoration: none;
- cursor: pointer;
-}
-.list-group-item.active > .badge,
-.nav-pills > .active > a > .badge {
- color: #337ab7;
- background-color: #fff;
-}
-.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: #eee;
-}
-.jumbotron h1,
-.jumbotron .h1 {
- color: inherit;
-}
-.jumbotron p {
- margin-bottom: 15px;
- font-size: 21px;
- font-weight: 200;
-}
-.jumbotron > hr {
- border-top-color: #d5d5d5;
-}
-.container .jumbotron,
-.container-fluid .jumbotron {
- padding-right: 15px;
- padding-left: 15px;
- border-radius: 6px;
-}
-.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: 63px;
- }
-}
-.thumbnail {
- display: block;
- padding: 4px;
- margin-bottom: 20px;
- line-height: 1.42857143;
- background-color: #fff;
- border: 1px solid #ddd;
- border-radius: 4px;
- -webkit-transition: border .2s ease-in-out;
- -o-transition: border .2s ease-in-out;
- transition: border .2s ease-in-out;
-}
-.thumbnail > img,
-.thumbnail a > img {
- margin-right: auto;
- margin-left: auto;
-}
-a.thumbnail:hover,
-a.thumbnail:focus,
-a.thumbnail.active {
- border-color: #337ab7;
-}
-.thumbnail .caption {
- padding: 9px;
- color: #333;
-}
-.alert {
- padding: 15px;
- margin-bottom: 20px;
- border: 1px solid transparent;
- border-radius: 4px;
-}
-.alert h4 {
- margin-top: 0;
- color: inherit;
-}
-.alert .alert-link {
- font-weight: bold;
-}
-.alert > p,
-.alert > ul {
- margin-bottom: 0;
-}
-.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: #3c763d;
- background-color: #dff0d8;
- border-color: #d6e9c6;
-}
-.alert-success hr {
- border-top-color: #c9e2b3;
-}
-.alert-success .alert-link {
- color: #2b542c;
-}
-.alert-info {
- color: #31708f;
- background-color: #d9edf7;
- border-color: #bce8f1;
-}
-.alert-info hr {
- border-top-color: #a6e1ec;
-}
-.alert-info .alert-link {
- color: #245269;
-}
-.alert-warning {
- color: #8a6d3b;
- background-color: #fcf8e3;
- border-color: #faebcc;
-}
-.alert-warning hr {
- border-top-color: #f7e1b5;
-}
-.alert-warning .alert-link {
- color: #66512c;
-}
-.alert-danger {
- color: #a94442;
- background-color: #f2dede;
- border-color: #ebccd1;
-}
-.alert-danger hr {
- border-top-color: #e4b9c0;
-}
-.alert-danger .alert-link {
- color: #843534;
-}
-@-webkit-keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-@-o-keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-@keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-.progress {
- height: 20px;
- margin-bottom: 20px;
- overflow: hidden;
- background-color: #f5f5f5;
- border-radius: 4px;
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
-}
-.progress-bar {
- float: left;
- width: 0;
- height: 100%;
- font-size: 12px;
- line-height: 20px;
- color: #fff;
- text-align: center;
- background-color: #337ab7;
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
- -webkit-transition: width .6s ease;
- -o-transition: width .6s ease;
- transition: width .6s ease;
-}
-.progress-striped .progress-bar,
-.progress-bar-striped {
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
- -webkit-background-size: 40px 40px;
- background-size: 40px 40px;
-}
-.progress.active .progress-bar,
-.progress-bar.active {
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- -o-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-.progress-bar-success {
- background-color: #5cb85c;
-}
-.progress-striped .progress-bar-success {
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-}
-.progress-bar-info {
- background-color: #5bc0de;
-}
-.progress-striped .progress-bar-info {
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-}
-.progress-bar-warning {
- background-color: #f0ad4e;
-}
-.progress-striped .progress-bar-warning {
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-}
-.progress-bar-danger {
- background-color: #d9534f;
-}
-.progress-striped .progress-bar-danger {
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
-}
-.media {
- margin-top: 15px;
-}
-.media:first-child {
- margin-top: 0;
-}
-.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-align: top;
-}
-.media-middle {
- vertical-align: middle;
-}
-.media-bottom {
- vertical-align: bottom;
-}
-.media-heading {
- margin-top: 0;
- margin-bottom: 5px;
-}
-.media-list {
- padding-left: 0;
- list-style: none;
-}
-.list-group {
- padding-left: 0;
- margin-bottom: 20px;
-}
-.list-group-item {
- position: relative;
- display: block;
- padding: 10px 15px;
- margin-bottom: -1px;
- background-color: #fff;
- border: 1px solid #ddd;
-}
-.list-group-item:first-child {
- border-top-left-radius: 4px;
- border-top-right-radius: 4px;
-}
-.list-group-item:last-child {
- margin-bottom: 0;
- border-bottom-right-radius: 4px;
- border-bottom-left-radius: 4px;
-}
-a.list-group-item,
-button.list-group-item {
- color: #555;
-}
-a.list-group-item .list-group-item-heading,
-button.list-group-item .list-group-item-heading {
- color: #333;
-}
-a.list-group-item:hover,
-button.list-group-item:hover,
-a.list-group-item:focus,
-button.list-group-item:focus {
- color: #555;
- text-decoration: none;
- background-color: #f5f5f5;
-}
-button.list-group-item {
- width: 100%;
- text-align: left;
-}
-.list-group-item.disabled,
-.list-group-item.disabled:hover,
-.list-group-item.disabled:focus {
- color: #777;
- cursor: not-allowed;
- background-color: #eee;
-}
-.list-group-item.disabled .list-group-item-heading,
-.list-group-item.disabled:hover .list-group-item-heading,
-.list-group-item.disabled:focus .list-group-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-item-text {
- color: #777;
-}
-.list-group-item.active,
-.list-group-item.active:hover,
-.list-group-item.active:focus {
- z-index: 2;
- color: #fff;
- background-color: #337ab7;
- border-color: #337ab7;
-}
-.list-group-item.active .list-group-item-heading,
-.list-group-item.active:hover .list-group-item-heading,
-.list-group-item.active:focus .list-group-item-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 .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 {
- color: inherit;
-}
-.list-group-item.active .list-group-item-text,
-.list-group-item.active:hover .list-group-item-text,
-.list-group-item.active:focus .list-group-item-text {
- color: #c7ddef;
-}
-.list-group-item-success {
- color: #3c763d;
- background-color: #dff0d8;
-}
-a.list-group-item-success,
-button.list-group-item-success {
- color: #3c763d;
-}
-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.list-group-item-success:focus,
-button.list-group-item-success:focus {
- color: #3c763d;
- background-color: #d0e9c6;
-}
-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-success.active:focus {
- color: #fff;
- background-color: #3c763d;
- border-color: #3c763d;
-}
-.list-group-item-info {
- color: #31708f;
- background-color: #d9edf7;
-}
-a.list-group-item-info,
-button.list-group-item-info {
- color: #31708f;
-}
-a.list-group-item-info .list-group-item-heading,
-button.list-group-item-info .list-group-item-heading {
- color: inherit;
-}
-a.list-group-item-info:hover,
-button.list-group-item-info:hover,
-a.list-group-item-info:focus,
-button.list-group-item-info:focus {
- color: #31708f;
- background-color: #c4e3f3;
-}
-a.list-group-item-info.active,
-button.list-group-item-info.active,
-a.list-group-item-info.active:hover,
-button.list-group-item-info.active:hover,
-a.list-group-item-info.active:focus,
-button.list-group-item-info.active:focus {
- color: #fff;
- background-color: #31708f;
- border-color: #31708f;
-}
-.list-group-item-warning {
- color: #8a6d3b;
- background-color: #fcf8e3;
-}
-a.list-group-item-warning,
-button.list-group-item-warning {
- color: #8a6d3b;
-}
-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.list-group-item-warning:focus,
-button.list-group-item-warning:focus {
- color: #8a6d3b;
- background-color: #faf2cc;
-}
-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-warning.active:focus {
- color: #fff;
- background-color: #8a6d3b;
- border-color: #8a6d3b;
-}
-.list-group-item-danger {
- color: #a94442;
- background-color: #f2dede;
-}
-a.list-group-item-danger,
-button.list-group-item-danger {
- color: #a94442;
-}
-a.list-group-item-danger .list-group-item-heading,
-button.list-group-item-danger .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: #a94442;
- background-color: #ebcccc;
-}
-a.list-group-item-danger.active,
-button.list-group-item-danger.active,
-a.list-group-item-danger.active:hover,
-button.list-group-item-danger.active:hover,
-a.list-group-item-danger.active:focus,
-button.list-group-item-danger.active:focus {
- color: #fff;
- background-color: #a94442;
- border-color: #a94442;
-}
-.list-group-item-heading {
- margin-top: 0;
- margin-bottom: 5px;
-}
-.list-group-item-text {
- margin-bottom: 0;
- line-height: 1.3;
-}
-.panel {
- margin-bottom: 20px;
- background-color: #fff;
- border: 1px solid transparent;
- border-radius: 4px;
- -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
- box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
-}
-.panel-body {
- padding: 15px;
-}
-.panel-heading {
- padding: 10px 15px;
- border-bottom: 1px solid transparent;
- border-top-left-radius: 3px;
- border-top-right-radius: 3px;
-}
-.panel-heading > .dropdown .dropdown-toggle {
- color: inherit;
-}
-.panel-title {
- margin-top: 0;
- margin-bottom: 0;
- font-size: 16px;
- 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: #f5f5f5;
- border-top: 1px solid #ddd;
- border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-.panel > .list-group,
-.panel > .panel-collapse > .list-group {
- margin-bottom: 0;
-}
-.panel > .list-group .list-group-item,
-.panel > .panel-collapse > .list-group .list-group-item {
- border-width: 1px 0;
- border-radius: 0;
-}
-.panel > .list-group:first-child .list-group-item:first-child,
-.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
- border-top: 0;
- border-top-left-radius: 3px;
- border-top-right-radius: 3px;
-}
-.panel > .list-group:last-child .list-group-item:last-child,
-.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
- border-bottom: 0;
- border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
-}
-.panel-heading + .list-group .list-group-item:first-child {
- border-top-width: 0;
-}
-.list-group + .panel-footer {
- border-top-width: 0;
-}
-.panel > .table,
-.panel > .table-responsive > .table,
-.panel > .panel-collapse > .table {
- margin-bottom: 0;
-}
-.panel > .table caption,
-.panel > .table-responsive > .table caption,
-.panel > .panel-collapse > .table caption {
- padding-right: 15px;
- padding-left: 15px;
-}
-.panel > .table:first-child,
-.panel > .table-responsive:first-child > .table:first-child {
- border-top-left-radius: 3px;
- border-top-right-radius: 3px;
-}
-.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-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
- border-top-left-radius: 3px;
- border-top-right-radius: 3px;
-}
-.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
-.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
-.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
-.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
- border-top-left-radius: 3px;
-}
-.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
-.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
-.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
-.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
- border-top-right-radius: 3px;
-}
-.panel > .table:last-child,
-.panel > .table-responsive:last-child > .table:last-child {
- border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-.panel > .table:last-child > tbody:last-child > tr:last-child,
-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
-.panel > .table:last-child > tfoot:last-child > tr:last-child,
-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
- border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
-.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
-.panel > .table-responsive:last-child > .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-child > tr:last-child th:first-child,
-.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
- border-bottom-left-radius: 3px;
-}
-.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > 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,
-.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
-.panel > .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 > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
- border-bottom-right-radius: 3px;
-}
-.panel > .panel-body + .table,
-.panel > .panel-body + .table-responsive,
-.panel > .table + .panel-body,
-.panel > .table-responsive + .panel-body {
- border-top: 1px solid #ddd;
-}
-.panel > .table > tbody:first-child > tr:first-child th,
-.panel > .table > tbody:first-child > tr:first-child td {
- border-top: 0;
-}
-.panel > .table-bordered,
-.panel > .table-responsive > .table-bordered {
- border: 0;
-}
-.panel > .table-bordered > thead > tr > th:first-child,
-.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
-.panel > .table-bordered > tbody > tr > th:first-child,
-.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
-.panel > .table-bordered > tfoot > tr > 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-child,
-.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 > .table-bordered > tfoot > tr > td:first-child {
- border-left: 0;
-}
-.panel > .table-bordered > thead > tr > th:last-child,
-.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
-.panel > .table-bordered > tbody > tr > th:last-child,
-.panel > .table-responsive > .table-bordered > 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,
-.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
-.panel > .table-bordered > tbody > tr > td:last-child,
-.panel > .table-responsive > .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: 0;
-}
-.panel > .table-bordered > thead > tr:first-child > td,
-.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
-.panel > .table-bordered > tbody > tr:first-child > td,
-.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
-.panel > .table-bordered > thead > tr: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 > th {
- border-bottom: 0;
-}
-.panel > .table-bordered > tbody > tr:last-child > td,
-.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
-.panel > .table-bordered > tfoot > tr:last-child > td,
-.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
-.panel > .table-bordered > tbody > tr:last-child > th,
-.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
-.panel > .table-bordered > tfoot > tr:last-child > th,
-.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
- border-bottom: 0;
-}
-.panel > .table-responsive {
- margin-bottom: 0;
- border: 0;
-}
-.panel-group {
- margin-bottom: 20px;
-}
-.panel-group .panel {
- margin-bottom: 0;
- border-radius: 4px;
-}
-.panel-group .panel + .panel {
- margin-top: 5px;
-}
-.panel-group .panel-heading {
- border-bottom: 0;
-}
-.panel-group .panel-heading + .panel-collapse > .panel-body,
-.panel-group .panel-heading + .panel-collapse > .list-group {
- border-top: 1px solid #ddd;
-}
-.panel-group .panel-footer {
- border-top: 0;
-}
-.panel-group .panel-footer + .panel-collapse .panel-body {
- border-bottom: 1px solid #ddd;
-}
-.panel-default {
- border-color: #ddd;
-}
-.panel-default > .panel-heading {
- color: #333;
- background-color: #f5f5f5;
- border-color: #ddd;
-}
-.panel-default > .panel-heading + .panel-collapse > .panel-body {
- border-top-color: #ddd;
-}
-.panel-default > .panel-heading .badge {
- color: #f5f5f5;
- background-color: #333;
-}
-.panel-default > .panel-footer + .panel-collapse > .panel-body {
- border-bottom-color: #ddd;
-}
-.panel-primary {
- border-color: #337ab7;
-}
-.panel-primary > .panel-heading {
- color: #fff;
- background-color: #337ab7;
- border-color: #337ab7;
-}
-.panel-primary > .panel-heading + .panel-collapse > .panel-body {
- border-top-color: #337ab7;
-}
-.panel-primary > .panel-heading .badge {
- color: #337ab7;
- background-color: #fff;
-}
-.panel-primary > .panel-footer + .panel-collapse > .panel-body {
- border-bottom-color: #337ab7;
-}
-.panel-success {
- border-color: #d6e9c6;
-}
-.panel-success > .panel-heading {
- color: #3c763d;
- background-color: #dff0d8;
- border-color: #d6e9c6;
-}
-.panel-success > .panel-heading + .panel-collapse > .panel-body {
- border-top-color: #d6e9c6;
-}
-.panel-success > .panel-heading .badge {
- color: #dff0d8;
- background-color: #3c763d;
-}
-.panel-success > .panel-footer + .panel-collapse > .panel-body {
- border-bottom-color: #d6e9c6;
-}
-.panel-info {
- border-color: #bce8f1;
-}
-.panel-info > .panel-heading {
- color: #31708f;
- background-color: #d9edf7;
- border-color: #bce8f1;
-}
-.panel-info > .panel-heading + .panel-collapse > .panel-body {
- border-top-color: #bce8f1;
-}
-.panel-info > .panel-heading .badge {
- color: #d9edf7;
- background-color: #31708f;
-}
-.panel-info > .panel-footer + .panel-collapse > .panel-body {
- border-bottom-color: #bce8f1;
-}
-.panel-warning {
- border-color: #faebcc;
-}
-.panel-warning > .panel-heading {
- color: #8a6d3b;
- background-color: #fcf8e3;
- border-color: #faebcc;
-}
-.panel-warning > .panel-heading + .panel-collapse > .panel-body {
- border-top-color: #faebcc;
-}
-.panel-warning > .panel-heading .badge {
- color: #fcf8e3;
- background-color: #8a6d3b;
-}
-.panel-warning > .panel-footer + .panel-collapse > .panel-body {
- border-bottom-color: #faebcc;
-}
-.panel-danger {
- border-color: #ebccd1;
-}
-.panel-danger > .panel-heading {
- color: #a94442;
- background-color: #f2dede;
- border-color: #ebccd1;
-}
-.panel-danger > .panel-heading + .panel-collapse > .panel-body {
- border-top-color: #ebccd1;
-}
-.panel-danger > .panel-heading .badge {
- color: #f2dede;
- background-color: #a94442;
-}
-.panel-danger > .panel-footer + .panel-collapse > .panel-body {
- border-bottom-color: #ebccd1;
-}
-.embed-responsive {
- position: relative;
- display: block;
- height: 0;
- padding: 0;
- overflow: hidden;
-}
-.embed-responsive .embed-responsive-item,
-.embed-responsive iframe,
-.embed-responsive embed,
-.embed-responsive object,
-.embed-responsive video {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 100%;
- border: 0;
-}
-.embed-responsive-16by9 {
- padding-bottom: 56.25%;
-}
-.embed-responsive-4by3 {
- padding-bottom: 75%;
-}
-.well {
- min-height: 20px;
- padding: 19px;
- margin-bottom: 20px;
- background-color: #f5f5f5;
- border: 1px solid #e3e3e3;
- border-radius: 4px;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
-}
-.well blockquote {
- border-color: #ddd;
- border-color: rgba(0, 0, 0, .15);
-}
-.well-lg {
- padding: 24px;
- border-radius: 6px;
-}
-.well-sm {
- padding: 9px;
- border-radius: 3px;
-}
-.close {
- float: right;
- font-size: 21px;
- font-weight: bold;
- line-height: 1;
- color: #000;
- text-shadow: 0 1px 0 #fff;
- filter: alpha(opacity=20);
- opacity: .2;
-}
-.close:hover,
-.close:focus {
- color: #000;
- text-decoration: none;
- cursor: pointer;
- filter: alpha(opacity=50);
- opacity: .5;
-}
-button.close {
- -webkit-appearance: none;
- padding: 0;
- cursor: pointer;
- background: transparent;
- border: 0;
-}
-.modal-open {
- overflow: hidden;
-}
-.modal {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1050;
- display: none;
- overflow: hidden;
- -webkit-overflow-scrolling: touch;
- outline: 0;
-}
-.modal.fade .modal-dialog {
- -webkit-transition: -webkit-transform .3s ease-out;
- -o-transition: -o-transform .3s ease-out;
- transition: transform .3s ease-out;
- -webkit-transform: translate(0, -25%);
- -ms-transform: translate(0, -25%);
- -o-transform: translate(0, -25%);
- transform: translate(0, -25%);
-}
-.modal.in .modal-dialog {
- -webkit-transform: translate(0, 0);
- -ms-transform: translate(0, 0);
- -o-transform: translate(0, 0);
- transform: translate(0, 0);
-}
-.modal-open .modal {
- overflow-x: hidden;
- overflow-y: auto;
-}
-.modal-dialog {
- position: relative;
- width: auto;
- margin: 10px;
-}
-.modal-content {
- position: relative;
- background-color: #fff;
- -webkit-background-clip: padding-box;
- background-clip: padding-box;
- border: 1px solid #999;
- border: 1px solid rgba(0, 0, 0, .2);
- border-radius: 6px;
- outline: 0;
- -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
- box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
-}
-.modal-backdrop {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1040;
- background-color: #000;
-}
-.modal-backdrop.fade {
- filter: alpha(opacity=0);
- opacity: 0;
-}
-.modal-backdrop.in {
- filter: alpha(opacity=50);
- opacity: .5;
-}
-.modal-header {
- padding: 15px;
- border-bottom: 1px solid #e5e5e5;
-}
-.modal-header .close {
- margin-top: -2px;
-}
-.modal-title {
- margin: 0;
- line-height: 1.42857143;
-}
-.modal-body {
- position: relative;
- padding: 15px;
-}
-.modal-footer {
- padding: 15px;
- text-align: right;
- border-top: 1px solid #e5e5e5;
-}
-.modal-footer .btn + .btn {
- margin-bottom: 0;
- margin-left: 5px;
-}
-.modal-footer .btn-group .btn + .btn {
- margin-left: -1px;
-}
-.modal-footer .btn-block + .btn-block {
- margin-left: 0;
-}
-.modal-scrollbar-measure {
- position: absolute;
- top: -9999px;
- width: 50px;
- height: 50px;
- overflow: scroll;
-}
-@media (min-width: 768px) {
- .modal-dialog {
- width: 600px;
- margin: 30px auto;
- }
- .modal-content {
- -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
- box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
- }
- .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-size: 12px;
- font-style: normal;
- font-weight: normal;
- line-height: 1.42857143;
- text-align: left;
- text-align: start;
- text-decoration: none;
- text-shadow: none;
- text-transform: none;
- letter-spacing: normal;
- word-break: normal;
- word-spacing: normal;
- word-wrap: normal;
- white-space: normal;
- filter: alpha(opacity=0);
- opacity: 0;
-
- line-break: auto;
-}
-.tooltip.in {
- filter: alpha(opacity=90);
- opacity: .9;
-}
-.tooltip.top {
- padding: 5px 0;
- margin-top: -3px;
-}
-.tooltip.right {
- padding: 0 5px;
- margin-left: 3px;
-}
-.tooltip.bottom {
- padding: 5px 0;
- margin-top: 3px;
-}
-.tooltip.left {
- padding: 0 5px;
- margin-left: -3px;
-}
-.tooltip-inner {
- max-width: 200px;
- padding: 3px 8px;
- color: #fff;
- text-align: center;
- background-color: #000;
- border-radius: 4px;
-}
-.tooltip-arrow {
- position: absolute;
- width: 0;
- height: 0;
- border-color: transparent;
- border-style: solid;
-}
-.tooltip.top .tooltip-arrow {
- bottom: 0;
- left: 50%;
- margin-left: -5px;
- border-width: 5px 5px 0;
- border-top-color: #000;
-}
-.tooltip.top-left .tooltip-arrow {
- right: 5px;
- bottom: 0;
- margin-bottom: -5px;
- border-width: 5px 5px 0;
- border-top-color: #000;
-}
-.tooltip.top-right .tooltip-arrow {
- bottom: 0;
- left: 5px;
- margin-bottom: -5px;
- border-width: 5px 5px 0;
- border-top-color: #000;
-}
-.tooltip.right .tooltip-arrow {
- top: 50%;
- left: 0;
- margin-top: -5px;
- border-width: 5px 5px 5px 0;
- border-right-color: #000;
-}
-.tooltip.left .tooltip-arrow {
- top: 50%;
- right: 0;
- margin-top: -5px;
- border-width: 5px 0 5px 5px;
- border-left-color: #000;
-}
-.tooltip.bottom .tooltip-arrow {
- top: 0;
- left: 50%;
- margin-left: -5px;
- border-width: 0 5px 5px;
- border-bottom-color: #000;
-}
-.tooltip.bottom-left .tooltip-arrow {
- top: 0;
- right: 5px;
- margin-top: -5px;
- border-width: 0 5px 5px;
- border-bottom-color: #000;
-}
-.tooltip.bottom-right .tooltip-arrow {
- top: 0;
- left: 5px;
- margin-top: -5px;
- border-width: 0 5px 5px;
- border-bottom-color: #000;
-}
-.popover {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1060;
- display: none;
- max-width: 276px;
- padding: 1px;
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 14px;
- font-style: normal;
- font-weight: normal;
- line-height: 1.42857143;
- text-align: left;
- text-align: start;
- text-decoration: none;
- text-shadow: none;
- text-transform: none;
- letter-spacing: normal;
- word-break: normal;
- word-spacing: normal;
- word-wrap: normal;
- white-space: normal;
- background-color: #fff;
- -webkit-background-clip: padding-box;
- background-clip: padding-box;
- border: 1px solid #ccc;
- border: 1px solid rgba(0, 0, 0, .2);
- border-radius: 6px;
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
- box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
-
- line-break: auto;
-}
-.popover.top {
- margin-top: -10px;
-}
-.popover.right {
- margin-left: 10px;
-}
-.popover.bottom {
- margin-top: 10px;
-}
-.popover.left {
- margin-left: -10px;
-}
-.popover-title {
- padding: 8px 14px;
- margin: 0;
- font-size: 14px;
- background-color: #f7f7f7;
- border-bottom: 1px solid #ebebeb;
- border-radius: 5px 5px 0 0;
-}
-.popover-content {
- padding: 9px 14px;
-}
-.popover > .arrow,
-.popover > .arrow:after {
- position: absolute;
- display: block;
- width: 0;
- height: 0;
- border-color: transparent;
- border-style: solid;
-}
-.popover > .arrow {
- border-width: 11px;
-}
-.popover > .arrow:after {
- content: "";
- border-width: 10px;
-}
-.popover.top > .arrow {
- bottom: -11px;
- left: 50%;
- margin-left: -11px;
- border-top-color: #999;
- border-top-color: rgba(0, 0, 0, .25);
- border-bottom-width: 0;
-}
-.popover.top > .arrow:after {
- bottom: 1px;
- margin-left: -10px;
- content: " ";
- border-top-color: #fff;
- border-bottom-width: 0;
-}
-.popover.right > .arrow {
- top: 50%;
- left: -11px;
- margin-top: -11px;
- border-right-color: #999;
- border-right-color: rgba(0, 0, 0, .25);
- border-left-width: 0;
-}
-.popover.right > .arrow:after {
- bottom: -10px;
- left: 1px;
- content: " ";
- border-right-color: #fff;
- border-left-width: 0;
-}
-.popover.bottom > .arrow {
- top: -11px;
- left: 50%;
- margin-left: -11px;
- border-top-width: 0;
- border-bottom-color: #999;
- border-bottom-color: rgba(0, 0, 0, .25);
-}
-.popover.bottom > .arrow:after {
- top: 1px;
- margin-left: -10px;
- content: " ";
- border-top-width: 0;
- border-bottom-color: #fff;
-}
-.popover.left > .arrow {
- top: 50%;
- right: -11px;
- margin-top: -11px;
- border-right-width: 0;
- border-left-color: #999;
- border-left-color: rgba(0, 0, 0, .25);
-}
-.popover.left > .arrow:after {
- right: 1px;
- bottom: -10px;
- content: " ";
- border-right-width: 0;
- border-left-color: #fff;
-}
-.carousel {
- position: relative;
-}
-.carousel-inner {
- position: relative;
- width: 100%;
- overflow: hidden;
-}
-.carousel-inner > .item {
- position: relative;
- display: none;
- -webkit-transition: .6s ease-in-out left;
- -o-transition: .6s ease-in-out left;
- transition: .6s ease-in-out left;
-}
-.carousel-inner > .item > img,
-.carousel-inner > .item > a > img {
- line-height: 1;
-}
-@media all and (transform-3d), (-webkit-transform-3d) {
- .carousel-inner > .item {
- -webkit-transition: -webkit-transform .6s ease-in-out;
- -o-transition: -o-transform .6s ease-in-out;
- transition: transform .6s ease-in-out;
-
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- -webkit-perspective: 1000px;
- perspective: 1000px;
- }
- .carousel-inner > .item.next,
- .carousel-inner > .item.active.right {
- left: 0;
- -webkit-transform: translate3d(100%, 0, 0);
- transform: translate3d(100%, 0, 0);
- }
- .carousel-inner > .item.prev,
- .carousel-inner > .item.active.left {
- left: 0;
- -webkit-transform: translate3d(-100%, 0, 0);
- transform: translate3d(-100%, 0, 0);
- }
- .carousel-inner > .item.next.left,
- .carousel-inner > .item.prev.right,
- .carousel-inner > .item.active {
- left: 0;
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- }
-}
-.carousel-inner > .active,
-.carousel-inner > .next,
-.carousel-inner > .prev {
- display: block;
-}
-.carousel-inner > .active {
- left: 0;
-}
-.carousel-inner > .next,
-.carousel-inner > .prev {
- position: absolute;
- top: 0;
- width: 100%;
-}
-.carousel-inner > .next {
- left: 100%;
-}
-.carousel-inner > .prev {
- left: -100%;
-}
-.carousel-inner > .next.left,
-.carousel-inner > .prev.right {
- left: 0;
-}
-.carousel-inner > .active.left {
- left: -100%;
-}
-.carousel-inner > .active.right {
- left: 100%;
-}
-.carousel-control {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- width: 15%;
- font-size: 20px;
- color: #fff;
- text-align: center;
- text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
- background-color: rgba(0, 0, 0, 0);
- filter: alpha(opacity=50);
- opacity: .5;
-}
-.carousel-control.left {
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
- background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
- background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
- background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
- background-repeat: repeat-x;
-}
-.carousel-control.right {
- right: 0;
- left: auto;
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
- background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
- background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
- background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
- background-repeat: repeat-x;
-}
-.carousel-control:hover,
-.carousel-control:focus {
- color: #fff;
- text-decoration: none;
- filter: alpha(opacity=90);
- outline: 0;
- opacity: .9;
-}
-.carousel-control .icon-prev,
-.carousel-control .icon-next,
-.carousel-control .glyphicon-chevron-left,
-.carousel-control .glyphicon-chevron-right {
- position: absolute;
- top: 50%;
- z-index: 5;
- display: inline-block;
- margin-top: -10px;
-}
-.carousel-control .icon-prev,
-.carousel-control .glyphicon-chevron-left {
- left: 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;
- height: 20px;
- font-family: serif;
- line-height: 1;
-}
-.carousel-control .icon-prev:before {
- content: '\2039';
-}
-.carousel-control .icon-next:before {
- content: '\203a';
-}
-.carousel-indicators {
- position: absolute;
- bottom: 10px;
- left: 50%;
- z-index: 15;
- width: 60%;
- padding-left: 0;
- 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: #000 \9;
- background-color: rgba(0, 0, 0, 0);
- border: 1px solid #fff;
- border-radius: 10px;
-}
-.carousel-indicators .active {
- width: 12px;
- height: 12px;
- margin: 0;
- background-color: #fff;
-}
-.carousel-caption {
- position: absolute;
- right: 15%;
- bottom: 20px;
- left: 15%;
- z-index: 10;
- padding-top: 20px;
- padding-bottom: 20px;
- color: #fff;
- text-align: center;
- text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
-}
-.carousel-caption .btn {
- text-shadow: none;
-}
-@media screen and (min-width: 768px) {
- .carousel-control .glyphicon-chevron-left,
- .carousel-control .glyphicon-chevron-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-horizontal dd:after,
-.container:before,
-.container:after,
-.container-fluid:before,
-.container-fluid:after,
-.row:before,
-.row:after,
-.form-horizontal .form-group:before,
-.form-horizontal .form-group:after,
-.btn-toolbar:before,
-.btn-toolbar:after,
-.btn-group-vertical > .btn-group:before,
-.btn-group-vertical > .btn-group:after,
-.nav:before,
-.nav:after,
-.navbar:before,
-.navbar:after,
-.navbar-header:before,
-.navbar-header:after,
-.navbar-collapse:before,
-.navbar-collapse:after,
-.pager:before,
-.pager:after,
-.panel-body:before,
-.panel-body:after,
-.modal-header:before,
-.modal-header:after,
-.modal-footer:before,
-.modal-footer:after {
- display: table;
- content: " ";
-}
-.clearfix:after,
-.dl-horizontal dd:after,
-.container:after,
-.container-fluid:after,
-.row:after,
-.form-horizontal .form-group:after,
-.btn-toolbar:after,
-.btn-group-vertical > .btn-group:after,
-.nav:after,
-.navbar:after,
-.navbar-header:after,
-.navbar-collapse:after,
-.pager:after,
-.panel-body:after,
-.modal-header:after,
-.modal-footer:after {
- 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: 0/0 a;
- color: transparent;
- text-shadow: none;
- background-color: transparent;
- border: 0;
-}
-.hidden {
- display: none !important;
-}
-.affix {
- position: fixed;
-}
-@-ms-viewport {
- width: device-width;
-}
-.visible-xs,
-.visible-sm,
-.visible-md,
-.visible-lg {
- display: none !important;
-}
-.visible-xs-block,
-.visible-xs-inline,
-.visible-xs-inline-block,
-.visible-sm-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 (min-width: 768px) and (max-width: 991px) {
- .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 (min-width: 768px) and (max-width: 991px) {
- .visible-sm-block {
- display: block !important;
- }
-}
-@media (min-width: 768px) and (max-width: 991px) {
- .visible-sm-inline {
- display: inline !important;
- }
-}
-@media (min-width: 768px) and (max-width: 991px) {
- .visible-sm-inline-block {
- display: inline-block !important;
- }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
- .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 (min-width: 992px) and (max-width: 1199px) {
- .visible-md-block {
- display: block !important;
- }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
- .visible-md-inline {
- display: inline !important;
- }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
- .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 (min-width: 768px) and (max-width: 991px) {
- .hidden-sm {
- display: none !important;
- }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
- .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;
- }
-}
-/*# sourceMappingURL=bootstrap.css.map */
\ No newline at end of file
diff --git a/src/toolkit-inverse.css b/src/toolkit-inverse.css
deleted file mode 100644
index 241ca9b..0000000
--- a/src/toolkit-inverse.css
+++ /dev/null
@@ -1,9765 +0,0 @@
-/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
-html {
- font-family: sans-serif;
- -ms-text-size-adjust: 100%;
- -webkit-text-size-adjust: 100%;
-}
-body {
- margin: 0;
-}
-article,
-aside,
-details,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-main,
-menu,
-nav,
-section,
-summary {
- display: block;
-}
-audio,
-canvas,
-progress,
-video {
- display: inline-block;
- vertical-align: baseline;
-}
-audio:not([controls]) {
- display: none;
- height: 0;
-}
-[hidden],
-template {
- display: none;
-}
-a {
- background-color: transparent;
-}
-a:active,
-a:hover {
- outline: 0;
-}
-abbr[title] {
- border-bottom: 1px dotted;
-}
-b,
-strong {
- font-weight: bold;
-}
-dfn {
- font-style: italic;
-}
-h1 {
- font-size: 2em;
- margin: 0.67em 0;
-}
-mark {
- background: #ff0;
- color: #000;
-}
-small {
- font-size: 80%;
-}
-sub,
-sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
-}
-sup {
- top: -0.5em;
-}
-sub {
- bottom: -0.25em;
-}
-img {
- border: 0;
-}
-svg:not(:root) {
- overflow: hidden;
-}
-figure {
- margin: 1em 40px;
-}
-hr {
- box-sizing: content-box;
- height: 0;
-}
-pre {
- overflow: auto;
-}
-code,
-kbd,
-pre,
-samp {
- font-family: monospace, monospace;
- font-size: 1em;
-}
-button,
-input,
-optgroup,
-select,
-textarea {
- color: inherit;
- font: inherit;
- margin: 0;
-}
-button {
- overflow: visible;
-}
-button,
-select {
- text-transform: none;
-}
-button,
-html input[type="button"],
-input[type="reset"],
-input[type="submit"] {
- -webkit-appearance: button;
- cursor: pointer;
-}
-button[disabled],
-html input[disabled] {
- cursor: default;
-}
-button::-moz-focus-inner,
-input::-moz-focus-inner {
- border: 0;
- padding: 0;
-}
-input {
- line-height: normal;
-}
-input[type="checkbox"],
-input[type="radio"] {
- box-sizing: border-box;
- padding: 0;
-}
-input[type="number"]::-webkit-inner-spin-button,
-input[type="number"]::-webkit-outer-spin-button {
- height: auto;
-}
-input[type="search"] {
- -webkit-appearance: textfield;
- box-sizing: content-box;
-}
-input[type="search"]::-webkit-search-cancel-button,
-input[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
-}
-fieldset {
- border: 1px solid #c0c0c0;
- margin: 0 2px;
- padding: 0.35em 0.625em 0.75em;
-}
-legend {
- border: 0;
- padding: 0;
-}
-textarea {
- overflow: auto;
-}
-optgroup {
- font-weight: bold;
-}
-table {
- border-collapse: collapse;
- border-spacing: 0;
-}
-td,
-th {
- padding: 0;
-}
-/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
-@media print {
- *,
- *:before,
- *:after {
- background: transparent !important;
- color: #000 !important;
- box-shadow: none !important;
- text-shadow: none !important;
- }
- a,
- a:visited {
- text-decoration: underline;
- }
- a[href]:after {
- content: " (" attr(href) ")";
- }
- abbr[title]:after {
- content: " (" attr(title) ")";
- }
- a[href^="#"]:after,
- a[href^="javascript:"]:after {
- content: "";
- }
- pre,
- blockquote {
- border: 1px solid #999;
- page-break-inside: avoid;
- }
- thead {
- display: table-header-group;
- }
- tr,
- img {
- page-break-inside: avoid;
- }
- img {
- max-width: 100% !important;
- }
- p,
- h2,
- h3 {
- orphans: 3;
- widows: 3;
- }
- h2,
- h3 {
- page-break-after: avoid;
- }
- .navbar {
- display: none;
- }
- .btn > .caret,
- .dropup > .btn > .caret {
- border-top-color: #000 !important;
- }
- .label {
- border: 1px solid #000;
- }
- .table {
- border-collapse: collapse !important;
- }
- .table td,
- .table th {
- background-color: #fff !important;
- }
- .table-bordered th,
- .table-bordered td {
- border: 1px solid #ddd !important;
- }
-}
-* {
- 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: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 14px;
- line-height: 1.5;
- color: #cfd2da;
- background-color: #252830;
-}
-input,
-button,
-select,
-textarea {
- font-family: inherit;
- font-size: inherit;
- line-height: inherit;
-}
-a {
- color: #1CA8DD;
- text-decoration: none;
-}
-a:hover,
-a:focus {
- color: #137499;
- text-decoration: underline;
-}
-a:focus {
- outline: thin dotted;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
-}
-figure {
- margin: 0;
-}
-img {
- vertical-align: middle;
-}
-.img-responsive,
-.thumbnail > img,
-.thumbnail a > img,
-.carousel-inner > .item > img,
-.carousel-inner > .item > a > img {
- display: block;
- max-width: 100%;
- height: auto;
-}
-.img-rounded {
- border-radius: 6px;
-}
-.img-thumbnail {
- padding: 4px;
- line-height: 1.5;
- background-color: transparent;
- border: 1px solid #30343e;
- border-radius: 4px;
- -webkit-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
- display: inline-block;
- max-width: 100%;
- height: auto;
-}
-.img-circle {
- border-radius: 50%;
-}
-hr {
- margin-top: 21px;
- margin-bottom: 21px;
- border: 0;
- border-top: 1px solid #434857;
-}
-.sr-only {
- position: absolute;
- width: 1px;
- height: 1px;
- margin: -1px;
- padding: 0;
- overflow: hidden;
- clip: rect(0, 0, 0, 0);
- border: 0;
-}
-.sr-only-focusable:active,
-.sr-only-focusable:focus {
- position: static;
- width: auto;
- height: auto;
- margin: 0;
- overflow: visible;
- clip: auto;
-}
-[role="button"] {
- cursor: pointer;
-}
-h1,
-h2,
-h3,
-h4,
-h5,
-h6,
-.h1,
-.h2,
-.h3,
-.h4,
-.h5,
-.h6 {
- font-family: inherit;
- font-weight: 300;
- line-height: 1.1;
- color: #ffffff;
-}
-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 .small,
-.h4 .small,
-.h5 .small,
-.h6 .small {
- font-weight: normal;
- line-height: 1;
- color: #cfd2da;
-}
-h1,
-.h1,
-h2,
-.h2,
-h3,
-.h3 {
- margin-top: 21px;
- margin-bottom: 10.5px;
-}
-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: 10.5px;
- margin-bottom: 10.5px;
-}
-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: 36px;
-}
-h2,
-.h2 {
- font-size: 30px;
-}
-h3,
-.h3 {
- font-size: 24px;
-}
-h4,
-.h4 {
- font-size: 18px;
-}
-h5,
-.h5 {
- font-size: 14px;
-}
-h6,
-.h6 {
- font-size: 12px;
-}
-p {
- margin: 0 0 10.5px;
-}
-.lead {
- margin-bottom: 21px;
- font-size: 16px;
- font-weight: 300;
- line-height: 1.4;
-}
-@media (min-width: 768px) {
- .lead {
- font-size: 21px;
- }
-}
-small,
-.small {
- font-size: 85%;
-}
-mark,
-.mark {
- background-color: #fcf8e3;
- padding: .2em;
-}
-.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: #999;
-}
-.text-primary {
- color: #1CA8DD;
-}
-a.text-primary:hover,
-a.text-primary:focus {
- color: #1686b0;
-}
-.text-success {
- color: #1BC98E;
-}
-a.text-success:hover,
-a.text-success:focus {
- color: #159c6e;
-}
-.text-info {
- color: #9F86FF;
-}
-a.text-info:hover,
-a.text-info:focus {
- color: #7753ff;
-}
-.text-warning {
- color: #E4D836;
-}
-a.text-warning:hover,
-a.text-warning:focus {
- color: #ccbf1b;
-}
-.text-danger {
- color: #E64759;
-}
-a.text-danger:hover,
-a.text-danger:focus {
- color: #dc1e33;
-}
-.bg-primary {
- color: #fff;
- background-color: #1CA8DD;
-}
-a.bg-primary:hover,
-a.bg-primary:focus {
- background-color: #1686b0;
-}
-.bg-success {
- background-color: #dff0d8;
-}
-a.bg-success:hover,
-a.bg-success:focus {
- background-color: #c1e2b3;
-}
-.bg-info {
- background-color: #d9edf7;
-}
-a.bg-info:hover,
-a.bg-info:focus {
- background-color: #afd9ee;
-}
-.bg-warning {
- background-color: #fcf8e3;
-}
-a.bg-warning:hover,
-a.bg-warning:focus {
- background-color: #f7ecb5;
-}
-.bg-danger {
- background-color: #f2dede;
-}
-a.bg-danger:hover,
-a.bg-danger:focus {
- background-color: #e4b9b9;
-}
-.page-header {
- padding-bottom: 9.5px;
- margin: 42px 0 21px;
- border-bottom: 1px solid #434857;
-}
-ul,
-ol {
- margin-top: 0;
- margin-bottom: 10.5px;
-}
-ul ul,
-ol ul,
-ul ol,
-ol ol {
- margin-bottom: 0;
-}
-.list-unstyled {
- padding-left: 0;
- list-style: none;
-}
-.list-inline {
- padding-left: 0;
- list-style: none;
- margin-left: -5px;
-}
-.list-inline > li {
- display: inline-block;
- padding-left: 5px;
- padding-right: 5px;
-}
-dl {
- margin-top: 0;
- margin-bottom: 21px;
-}
-dt,
-dd {
- line-height: 1.5;
-}
-dt {
- font-weight: bold;
-}
-dd {
- margin-left: 0;
-}
-@media (min-width: 992px) {
- .dl-horizontal dt {
- float: left;
- width: 160px;
- clear: left;
- text-align: right;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .dl-horizontal dd {
- margin-left: 180px;
- }
-}
-abbr[title],
-abbr[data-original-title] {
- cursor: help;
- border-bottom: 1px dotted #cfd2da;
-}
-.initialism {
- font-size: 90%;
- text-transform: uppercase;
-}
-blockquote {
- padding: 10.5px 21px;
- margin: 0 0 21px;
- font-size: 17.5px;
- border-left: 5px solid #434857;
-}
-blockquote p:last-child,
-blockquote ul:last-child,
-blockquote ol:last-child {
- margin-bottom: 0;
-}
-blockquote footer,
-blockquote small,
-blockquote .small {
- display: block;
- font-size: 80%;
- line-height: 1.5;
- color: #cfd2da;
-}
-blockquote footer:before,
-blockquote small:before,
-blockquote .small:before {
- content: '\2014 \00A0';
-}
-.blockquote-reverse,
-blockquote.pull-right {
- padding-right: 15px;
- padding-left: 0;
- border-right: 5px solid #434857;
- border-left: 0;
- text-align: right;
-}
-.blockquote-reverse footer:before,
-blockquote.pull-right footer:before,
-.blockquote-reverse small:before,
-blockquote.pull-right small:before,
-.blockquote-reverse .small:before,
-blockquote.pull-right .small:before {
- content: '';
-}
-.blockquote-reverse footer:after,
-blockquote.pull-right footer:after,
-.blockquote-reverse small:after,
-blockquote.pull-right small:after,
-.blockquote-reverse .small:after,
-blockquote.pull-right .small:after {
- content: '\00A0 \2014';
-}
-address {
- margin-bottom: 21px;
- font-style: normal;
- line-height: 1.5;
-}
-code,
-kbd,
-pre,
-samp {
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
-}
-code {
- padding: 2px 4px;
- font-size: 90%;
- color: #c7254e;
- background-color: #1a1c22;
- border-radius: 4px;
-}
-kbd {
- padding: 2px 4px;
- font-size: 90%;
- color: #fff;
- background-color: #333;
- border-radius: 3px;
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
-}
-kbd kbd {
- padding: 0;
- font-size: 100%;
- font-weight: bold;
- box-shadow: none;
-}
-pre {
- display: block;
- padding: 10px;
- margin: 0 0 10.5px;
- font-size: 13px;
- line-height: 1.5;
- word-break: break-all;
- word-wrap: break-word;
- color: #51586a;
- background-color: #f5f5f5;
- border: 1px solid #ccc;
- border-radius: 4px;
-}
-pre code {
- padding: 0;
- font-size: inherit;
- color: inherit;
- white-space: pre-wrap;
- background-color: transparent;
- border-radius: 0;
-}
-.pre-scrollable {
- max-height: 340px;
- overflow-y: scroll;
-}
-table {
- background-color: transparent;
-}
-caption {
- padding-top: 8px;
- padding-bottom: 8px;
- color: #999;
- text-align: left;
-}
-th {
- text-align: left;
-}
-.table {
- width: 100%;
- max-width: 100%;
- margin-bottom: 21px;
-}
-.table > thead > tr > th,
-.table > tbody > tr > th,
-.table > tfoot > tr > th,
-.table > thead > tr > td,
-.table > tbody > tr > td,
-.table > tfoot > tr > td {
- padding: 8px;
- line-height: 1.5;
- vertical-align: top;
- border-top: 1px solid #434857;
-}
-.table > thead > tr > th {
- vertical-align: bottom;
- border-bottom: 2px solid #434857;
-}
-.table > caption + thead > tr:first-child > th,
-.table > colgroup + thead > tr:first-child > th,
-.table > thead:first-child > tr:first-child > th,
-.table > caption + thead > tr:first-child > td,
-.table > colgroup + thead > tr:first-child > td,
-.table > thead:first-child > tr:first-child > td {
- border-top: 0;
-}
-.table > tbody + tbody {
- border-top: 2px solid #434857;
-}
-.table .table {
- background-color: #252830;
-}
-.table-condensed > thead > tr > th,
-.table-condensed > tbody > tr > th,
-.table-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 #434857;
-}
-.table-bordered > thead > tr > th,
-.table-bordered > tbody > tr > th,
-.table-bordered > tfoot > tr > th,
-.table-bordered > thead > tr > td,
-.table-bordered > tbody > tr > td,
-.table-bordered > tfoot > tr > td {
- border: 1px solid #434857;
-}
-.table-bordered > thead > tr > th,
-.table-bordered > thead > tr > td {
- border-bottom-width: 2px;
-}
-.table-striped > tbody > tr:nth-of-type(odd) {
- background-color: #434857;
-}
-.table-hover > tbody > tr:hover {
- background-color: #434857;
-}
-table col[class*="col-"] {
- position: static;
- float: none;
- display: table-column;
-}
-table td[class*="col-"],
-table th[class*="col-"] {
- position: static;
- float: none;
- display: table-cell;
-}
-.table > thead > tr > td.active,
-.table > tbody > tr > td.active,
-.table > tfoot > tr > td.active,
-.table > thead > tr > th.active,
-.table > tbody > tr > th.active,
-.table > tfoot > tr > th.active,
-.table > thead > tr.active > td,
-.table > tbody > tr.active > td,
-.table > tfoot > tr.active > td,
-.table > thead > tr.active > th,
-.table > tbody > tr.active > th,
-.table > tfoot > tr.active > th {
- background-color: #434857;
-}
-.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 {
- background-color: #383c48;
-}
-.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.success > 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: #dff0d8;
-}
-.table-hover > tbody > tr > td.success:hover,
-.table-hover > tbody > tr > th.success:hover,
-.table-hover > tbody > tr.success:hover > td,
-.table-hover > tbody > tr:hover > .success,
-.table-hover > tbody > tr.success:hover > th {
- background-color: #d0e9c6;
-}
-.table > thead > tr > td.info,
-.table > tbody > tr > td.info,
-.table > tfoot > tr > td.info,
-.table > thead > tr > th.info,
-.table > tbody > tr > th.info,
-.table > tfoot > tr > th.info,
-.table > thead > tr.info > td,
-.table > tbody > tr.info > td,
-.table > tfoot > tr.info > td,
-.table > thead > tr.info > th,
-.table > tbody > tr.info > th,
-.table > tfoot > tr.info > th {
- background-color: #d9edf7;
-}
-.table-hover > tbody > tr > td.info:hover,
-.table-hover > tbody > tr > th.info:hover,
-.table-hover > tbody > tr.info:hover > td,
-.table-hover > tbody > tr:hover > .info,
-.table-hover > tbody > tr.info:hover > th {
- background-color: #c4e3f3;
-}
-.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.warning > 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: #fcf8e3;
-}
-.table-hover > tbody > tr > td.warning:hover,
-.table-hover > tbody > tr > th.warning:hover,
-.table-hover > tbody > tr.warning:hover > td,
-.table-hover > tbody > tr:hover > .warning,
-.table-hover > tbody > tr.warning:hover > th {
- background-color: #faf2cc;
-}
-.table > thead > tr > td.danger,
-.table > tbody > tr > td.danger,
-.table > tfoot > tr > td.danger,
-.table > thead > tr > th.danger,
-.table > tbody > tr > th.danger,
-.table > tfoot > tr > th.danger,
-.table > thead > tr.danger > td,
-.table > tbody > tr.danger > td,
-.table > tfoot > tr.danger > td,
-.table > thead > tr.danger > th,
-.table > tbody > tr.danger > th,
-.table > tfoot > tr.danger > th {
- background-color: #f2dede;
-}
-.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 {
- background-color: #ebcccc;
-}
-.table-responsive {
- overflow-x: auto;
- min-height: 0.01%;
-}
-@media screen and (max-width: 767px) {
- .table-responsive {
- width: 100%;
- margin-bottom: 15.75px;
- overflow-y: hidden;
- -ms-overflow-style: -ms-autohiding-scrollbar;
- border: 1px solid #434857;
- }
- .table-responsive > .table {
- margin-bottom: 0;
- }
- .table-responsive > .table > thead > tr > th,
- .table-responsive > .table > tbody > tr > th,
- .table-responsive > .table > tfoot > tr > th,
- .table-responsive > .table > thead > tr > td,
- .table-responsive > .table > tbody > tr > td,
- .table-responsive > .table > tfoot > tr > td {
- white-space: nowrap;
- }
- .table-responsive > .table-bordered {
- border: 0;
- }
- .table-responsive > .table-bordered > thead > tr > th:first-child,
- .table-responsive > .table-bordered > tbody > tr > th:first-child,
- .table-responsive > .table-bordered > tfoot > tr > th:first-child,
- .table-responsive > .table-bordered > thead > tr > td:first-child,
- .table-responsive > .table-bordered > tbody > tr > td:first-child,
- .table-responsive > .table-bordered > tfoot > tr > td:first-child {
- border-left: 0;
- }
- .table-responsive > .table-bordered > thead > tr > th:last-child,
- .table-responsive > .table-bordered > tbody > tr > th:last-child,
- .table-responsive > .table-bordered > tfoot > tr > th:last-child,
- .table-responsive > .table-bordered > thead > tr > td:last-child,
- .table-responsive > .table-bordered > tbody > tr > td:last-child,
- .table-responsive > .table-bordered > tfoot > tr > td:last-child {
- border-right: 0;
- }
- .table-responsive > .table-bordered > tbody > tr:last-child > th,
- .table-responsive > .table-bordered > tfoot > tr:last-child > th,
- .table-responsive > .table-bordered > tbody > tr:last-child > td,
- .table-responsive > .table-bordered > tfoot > tr:last-child > td {
- border-bottom: 0;
- }
-}
-fieldset {
- padding: 0;
- margin: 0;
- border: 0;
- min-width: 0;
-}
-legend {
- display: block;
- width: 100%;
- padding: 0;
- margin-bottom: 21px;
- font-size: 21px;
- line-height: inherit;
- color: #51586a;
- border: 0;
- border-bottom: 1px solid #e5e5e5;
-}
-label {
- display: inline-block;
- max-width: 100%;
- margin-bottom: 5px;
- font-weight: bold;
-}
-input[type="search"] {
- box-sizing: border-box;
-}
-input[type="radio"],
-input[type="checkbox"] {
- margin: 4px 0 0;
- margin-top: 1px \9;
- line-height: normal;
-}
-input[type="file"] {
- display: block;
-}
-input[type="range"] {
- display: block;
- width: 100%;
-}
-select[multiple],
-select[size] {
- height: auto;
-}
-input[type="file"]:focus,
-input[type="radio"]:focus,
-input[type="checkbox"]:focus {
- outline: thin dotted;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
-}
-output {
- display: block;
- padding-top: 7px;
- font-size: 14px;
- line-height: 1.5;
- color: #fff;
-}
-.form-control {
- display: block;
- width: 100%;
- height: 35px;
- padding: 6px 12px;
- font-size: 14px;
- line-height: 1.5;
- color: #fff;
- background-color: #434857;
- background-image: none;
- border: 1px solid #434857;
- border-radius: 4px;
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
- transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-}
-.form-control:focus {
- border-color: #fff;
- outline: 0;
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 255, 255, 0.6);
-}
-.form-control::-moz-placeholder {
- color: #cfd2da;
- opacity: 1;
-}
-.form-control:-ms-input-placeholder {
- color: #cfd2da;
-}
-.form-control::-webkit-input-placeholder {
- color: #cfd2da;
-}
-.form-control::-ms-expand {
- border: 0;
- background-color: transparent;
-}
-.form-control[disabled],
-.form-control[readonly],
-fieldset[disabled] .form-control {
- background-color: #30343e;
- opacity: 1;
-}
-.form-control[disabled],
-fieldset[disabled] .form-control {
- cursor: not-allowed;
-}
-textarea.form-control {
- height: auto;
-}
-input[type="search"] {
- -webkit-appearance: none;
-}
-@media screen and (-webkit-min-device-pixel-ratio: 0) {
- input[type="date"].form-control,
- input[type="time"].form-control,
- input[type="datetime-local"].form-control,
- input[type="month"].form-control {
- line-height: 35px;
- }
- input[type="date"].input-sm,
- input[type="time"].input-sm,
- input[type="datetime-local"].input-sm,
- input[type="month"].input-sm,
- .input-group-sm input[type="date"],
- .input-group-sm input[type="time"],
- .input-group-sm input[type="datetime-local"],
- .input-group-sm input[type="month"] {
- line-height: 30px;
- }
- input[type="date"].input-lg,
- input[type="time"].input-lg,
- input[type="datetime-local"].input-lg,
- input[type="month"].input-lg,
- .input-group-lg input[type="date"],
- .input-group-lg input[type="time"],
- .input-group-lg input[type="datetime-local"],
- .input-group-lg input[type="month"] {
- line-height: 46px;
- }
-}
-.form-group {
- margin-bottom: 15px;
-}
-.radio,
-.checkbox {
- position: relative;
- display: block;
- margin-top: 10px;
- margin-bottom: 10px;
-}
-.radio label,
-.checkbox label {
- min-height: 21px;
- padding-left: 20px;
- margin-bottom: 0;
- font-weight: normal;
- cursor: pointer;
-}
-.radio input[type="radio"],
-.radio-inline input[type="radio"],
-.checkbox input[type="checkbox"],
-.checkbox-inline input[type="checkbox"] {
- position: absolute;
- margin-left: -20px;
- margin-top: 4px \9;
-}
-.radio + .radio,
-.checkbox + .checkbox {
- margin-top: -5px;
-}
-.radio-inline,
-.checkbox-inline {
- position: relative;
- display: inline-block;
- padding-left: 20px;
- margin-bottom: 0;
- vertical-align: middle;
- font-weight: normal;
- cursor: pointer;
-}
-.radio-inline + .radio-inline,
-.checkbox-inline + .checkbox-inline {
- margin-top: 0;
- margin-left: 10px;
-}
-input[type="radio"][disabled],
-input[type="checkbox"][disabled],
-input[type="radio"].disabled,
-input[type="checkbox"].disabled,
-fieldset[disabled] input[type="radio"],
-fieldset[disabled] input[type="checkbox"] {
- cursor: not-allowed;
-}
-.radio-inline.disabled,
-.checkbox-inline.disabled,
-fieldset[disabled] .radio-inline,
-fieldset[disabled] .checkbox-inline {
- cursor: not-allowed;
-}
-.radio.disabled label,
-.checkbox.disabled label,
-fieldset[disabled] .radio label,
-fieldset[disabled] .checkbox label {
- cursor: not-allowed;
-}
-.form-control-static {
- padding-top: 7px;
- padding-bottom: 7px;
- margin-bottom: 0;
- min-height: 35px;
-}
-.form-control-static.input-lg,
-.form-control-static.input-sm {
- padding-left: 0;
- padding-right: 0;
-}
-.input-sm {
- height: 30px;
- padding: 5px 10px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
-}
-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: 3px;
-}
-.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: 33px;
- padding: 6px 10px;
- font-size: 12px;
- line-height: 1.5;
-}
-.input-lg {
- height: 46px;
- padding: 10px 16px;
- font-size: 18px;
- line-height: 1.3333333;
- border-radius: 6px;
-}
-select.input-lg {
- height: 46px;
- line-height: 46px;
-}
-textarea.input-lg,
-select[multiple].input-lg {
- height: auto;
-}
-.form-group-lg .form-control {
- height: 46px;
- padding: 10px 16px;
- font-size: 18px;
- line-height: 1.3333333;
- border-radius: 6px;
-}
-.form-group-lg select.form-control {
- height: 46px;
- line-height: 46px;
-}
-.form-group-lg textarea.form-control,
-.form-group-lg select[multiple].form-control {
- height: auto;
-}
-.form-group-lg .form-control-static {
- height: 46px;
- min-height: 39px;
- padding: 11px 16px;
- font-size: 18px;
- line-height: 1.3333333;
-}
-.has-feedback {
- position: relative;
-}
-.has-feedback .form-control {
- padding-right: 43.75px;
-}
-.form-control-feedback {
- position: absolute;
- top: 0;
- right: 0;
- z-index: 2;
- display: block;
- width: 35px;
- height: 35px;
- line-height: 35px;
- text-align: center;
- pointer-events: none;
-}
-.input-lg + .form-control-feedback,
-.input-group-lg + .form-control-feedback,
-.form-group-lg .form-control + .form-control-feedback {
- width: 46px;
- height: 46px;
- line-height: 46px;
-}
-.input-sm + .form-control-feedback,
-.input-group-sm + .form-control-feedback,
-.form-group-sm .form-control + .form-control-feedback {
- width: 30px;
- height: 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-success.radio-inline label,
-.has-success.checkbox-inline label {
- color: #1BC98E;
-}
-.has-success .form-control {
- border-color: #1BC98E;
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-}
-.has-success .form-control:focus {
- border-color: #159c6e;
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #60eabb;
-}
-.has-success .input-group-addon {
- color: #1BC98E;
- border-color: #1BC98E;
- background-color: #dff0d8;
-}
-.has-success .form-control-feedback {
- color: #1BC98E;
-}
-.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-warning.radio-inline label,
-.has-warning.checkbox-inline label {
- color: #E4D836;
-}
-.has-warning .form-control {
- border-color: #E4D836;
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-}
-.has-warning .form-control:focus {
- border-color: #ccbf1b;
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f0e990;
-}
-.has-warning .input-group-addon {
- color: #E4D836;
- border-color: #E4D836;
- background-color: #fcf8e3;
-}
-.has-warning .form-control-feedback {
- color: #E4D836;
-}
-.has-error .help-block,
-.has-error .control-label,
-.has-error .radio,
-.has-error .checkbox,
-.has-error .radio-inline,
-.has-error .checkbox-inline,
-.has-error.radio label,
-.has-error.checkbox label,
-.has-error.radio-inline label,
-.has-error.checkbox-inline label {
- color: #E64759;
-}
-.has-error .form-control {
- border-color: #E64759;
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-}
-.has-error .form-control:focus {
- border-color: #dc1e33;
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f2a1aa;
-}
-.has-error .input-group-addon {
- color: #E64759;
- border-color: #E64759;
- background-color: #f2dede;
-}
-.has-error .form-control-feedback {
- color: #E64759;
-}
-.has-feedback label ~ .form-control-feedback {
- top: 26px;
-}
-.has-feedback label.sr-only ~ .form-control-feedback {
- top: 0;
-}
-.help-block {
- display: block;
- margin-top: 5px;
- margin-bottom: 10px;
- color: #ffffff;
-}
-@media (min-width: 768px) {
- .form-inline .form-group {
- display: inline-block;
- margin-bottom: 0;
- vertical-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: 0;
- vertical-align: middle;
- }
- .form-inline .radio,
- .form-inline .checkbox {
- display: inline-block;
- margin-top: 0;
- margin-bottom: 0;
- vertical-align: middle;
- }
- .form-inline .radio label,
- .form-inline .checkbox label {
- padding-left: 0;
- }
- .form-inline .radio input[type="radio"],
- .form-inline .checkbox input[type="checkbox"] {
- position: relative;
- margin-left: 0;
- }
- .form-inline .has-feedback .form-control-feedback {
- top: 0;
- }
-}
-.form-horizontal .radio,
-.form-horizontal .checkbox,
-.form-horizontal .radio-inline,
-.form-horizontal .checkbox-inline {
- margin-top: 0;
- margin-bottom: 0;
- padding-top: 7px;
-}
-.form-horizontal .radio,
-.form-horizontal .checkbox {
- min-height: 28px;
-}
-.form-horizontal .form-group {
- margin-left: -15px;
- margin-right: -15px;
-}
-@media (min-width: 768px) {
- .form-horizontal .control-label {
- text-align: right;
- margin-bottom: 0;
- padding-top: 7px;
- }
-}
-.form-horizontal .has-feedback .form-control-feedback {
- right: 15px;
-}
-@media (min-width: 768px) {
- .form-horizontal .form-group-lg .control-label {
- padding-top: 11px;
- font-size: 18px;
- }
-}
-@media (min-width: 768px) {
- .form-horizontal .form-group-sm .control-label {
- padding-top: 6px;
- font-size: 12px;
- }
-}
-.btn {
- display: inline-block;
- margin-bottom: 0;
- font-weight: normal;
- text-align: center;
- vertical-align: middle;
- -ms-touch-action: manipulation;
- touch-action: manipulation;
- cursor: pointer;
- background-image: none;
- border: 1px solid transparent;
- white-space: nowrap;
- padding: 6px 12px;
- font-size: 14px;
- line-height: 1.5;
- border-radius: 4px;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
-}
-.btn:focus,
-.btn:active:focus,
-.btn.active:focus,
-.btn.focus,
-.btn:active.focus,
-.btn.active.focus {
- outline: thin dotted;
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
-}
-.btn:hover,
-.btn:focus,
-.btn.focus {
- color: #51586a;
- text-decoration: none;
-}
-.btn:active,
-.btn.active {
- outline: 0;
- background-image: none;
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
-}
-.btn.disabled,
-.btn[disabled],
-fieldset[disabled] .btn {
- cursor: not-allowed;
- opacity: 0.65;
- filter: alpha(opacity=65);
- box-shadow: none;
-}
-a.btn.disabled,
-fieldset[disabled] a.btn {
- pointer-events: none;
-}
-.btn-default {
- color: #51586a;
- background-color: #ffffff;
- border-color: #e6e6e6;
-}
-.btn-default:focus,
-.btn-default.focus {
- color: #51586a;
- background-color: #e6e6e6;
- border-color: #a6a6a6;
-}
-.btn-default:hover {
- color: #51586a;
- background-color: #e6e6e6;
- border-color: #c7c7c7;
-}
-.btn-default:active,
-.btn-default.active,
-.open > .dropdown-toggle.btn-default {
- color: #51586a;
- background-color: #e6e6e6;
- border-color: #c7c7c7;
-}
-.btn-default:active:hover,
-.btn-default.active:hover,
-.open > .dropdown-toggle.btn-default:hover,
-.btn-default:active:focus,
-.btn-default.active:focus,
-.open > .dropdown-toggle.btn-default:focus,
-.btn-default:active.focus,
-.btn-default.active.focus,
-.open > .dropdown-toggle.btn-default.focus {
- color: #51586a;
- background-color: #d4d4d4;
- border-color: #a6a6a6;
-}
-.btn-default:active,
-.btn-default.active,
-.open > .dropdown-toggle.btn-default {
- background-image: none;
-}
-.btn-default.disabled:hover,
-.btn-default[disabled]:hover,
-fieldset[disabled] .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 {
- background-color: #ffffff;
- border-color: #e6e6e6;
-}
-.btn-default .badge {
- color: #ffffff;
- background-color: #51586a;
-}
-.btn-primary {
- color: #fff;
- background-color: #1CA8DD;
- border-color: #1997c6;
-}
-.btn-primary:focus,
-.btn-primary.focus {
- color: #fff;
- background-color: #1686b0;
- border-color: #0b4155;
-}
-.btn-primary:hover {
- color: #fff;
- background-color: #1686b0;
- border-color: #126e90;
-}
-.btn-primary:active,
-.btn-primary.active,
-.open > .dropdown-toggle.btn-primary {
- color: #fff;
- background-color: #1686b0;
- border-color: #126e90;
-}
-.btn-primary:active:hover,
-.btn-primary.active:hover,
-.open > .dropdown-toggle.btn-primary:hover,
-.btn-primary:active:focus,
-.btn-primary.active:focus,
-.open > .dropdown-toggle.btn-primary:focus,
-.btn-primary:active.focus,
-.btn-primary.active.focus,
-.open > .dropdown-toggle.btn-primary.focus {
- color: #fff;
- background-color: #126e90;
- border-color: #0b4155;
-}
-.btn-primary:active,
-.btn-primary.active,
-.open > .dropdown-toggle.btn-primary {
- background-image: none;
-}
-.btn-primary.disabled:hover,
-.btn-primary[disabled]:hover,
-fieldset[disabled] .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 {
- background-color: #1CA8DD;
- border-color: #1997c6;
-}
-.btn-primary .badge {
- color: #1CA8DD;
- background-color: #fff;
-}
-.btn-success {
- color: #fff;
- background-color: #1BC98E;
- border-color: #18b37e;
-}
-.btn-success:focus,
-.btn-success.focus {
- color: #fff;
- background-color: #159c6e;
- border-color: #09422f;
-}
-.btn-success:hover {
- color: #fff;
- background-color: #159c6e;
- border-color: #117d58;
-}
-.btn-success:active,
-.btn-success.active,
-.open > .dropdown-toggle.btn-success {
- color: #fff;
- background-color: #159c6e;
- border-color: #117d58;
-}
-.btn-success:active:hover,
-.btn-success.active:hover,
-.open > .dropdown-toggle.btn-success:hover,
-.btn-success:active:focus,
-.btn-success.active:focus,
-.open > .dropdown-toggle.btn-success:focus,
-.btn-success:active.focus,
-.btn-success.active.focus,
-.open > .dropdown-toggle.btn-success.focus {
- color: #fff;
- background-color: #117d58;
- border-color: #09422f;
-}
-.btn-success:active,
-.btn-success.active,
-.open > .dropdown-toggle.btn-success {
- background-image: none;
-}
-.btn-success.disabled:hover,
-.btn-success[disabled]:hover,
-fieldset[disabled] .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 {
- background-color: #1BC98E;
- border-color: #18b37e;
-}
-.btn-success .badge {
- color: #1BC98E;
- background-color: #fff;
-}
-.btn-info {
- color: #fff;
- background-color: #9F86FF;
- border-color: #8b6cff;
-}
-.btn-info:focus,
-.btn-info.focus {
- color: #fff;
- background-color: #7753ff;
- border-color: #3100ec;
-}
-.btn-info:hover {
- color: #fff;
- background-color: #7753ff;
- border-color: #5a2fff;
-}
-.btn-info:active,
-.btn-info.active,
-.open > .dropdown-toggle.btn-info {
- color: #fff;
- background-color: #7753ff;
- border-color: #5a2fff;
-}
-.btn-info:active:hover,
-.btn-info.active:hover,
-.open > .dropdown-toggle.btn-info:hover,
-.btn-info:active:focus,
-.btn-info.active:focus,
-.open > .dropdown-toggle.btn-info:focus,
-.btn-info:active.focus,
-.btn-info.active.focus,
-.open > .dropdown-toggle.btn-info.focus {
- color: #fff;
- background-color: #5a2fff;
- border-color: #3100ec;
-}
-.btn-info:active,
-.btn-info.active,
-.open > .dropdown-toggle.btn-info {
- background-image: none;
-}
-.btn-info.disabled:hover,
-.btn-info[disabled]:hover,
-fieldset[disabled] .btn-info:hover,
-.btn-info.disabled:focus,
-.btn-info[disabled]:focus,
-fieldset[disabled] .btn-info:focus,
-.btn-info.disabled.focus,
-.btn-info[disabled].focus,
-fieldset[disabled] .btn-info.focus {
- background-color: #9F86FF;
- border-color: #8b6cff;
-}
-.btn-info .badge {
- color: #9F86FF;
- background-color: #fff;
-}
-.btn-warning {
- color: #fff;
- background-color: #E4D836;
- border-color: #e1d420;
-}
-.btn-warning:focus,
-.btn-warning.focus {
- color: #fff;
- background-color: #ccbf1b;
- border-color: #726b0f;
-}
-.btn-warning:hover {
- color: #fff;
- background-color: #ccbf1b;
- border-color: #aca217;
-}
-.btn-warning:active,
-.btn-warning.active,
-.open > .dropdown-toggle.btn-warning {
- color: #fff;
- background-color: #ccbf1b;
- border-color: #aca217;
-}
-.btn-warning:active:hover,
-.btn-warning.active:hover,
-.open > .dropdown-toggle.btn-warning:hover,
-.btn-warning:active:focus,
-.btn-warning.active:focus,
-.open > .dropdown-toggle.btn-warning:focus,
-.btn-warning:active.focus,
-.btn-warning.active.focus,
-.open > .dropdown-toggle.btn-warning.focus {
- color: #fff;
- background-color: #aca217;
- border-color: #726b0f;
-}
-.btn-warning:active,
-.btn-warning.active,
-.open > .dropdown-toggle.btn-warning {
- background-image: none;
-}
-.btn-warning.disabled:hover,
-.btn-warning[disabled]:hover,
-fieldset[disabled] .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 {
- background-color: #E4D836;
- border-color: #e1d420;
-}
-.btn-warning .badge {
- color: #E4D836;
- background-color: #fff;
-}
-.btn-danger {
- color: #fff;
- background-color: #E64759;
- border-color: #e33145;
-}
-.btn-danger:focus,
-.btn-danger.focus {
- color: #fff;
- background-color: #dc1e33;
- border-color: #82121e;
-}
-.btn-danger:hover {
- color: #fff;
- background-color: #dc1e33;
- border-color: #bd1a2c;
-}
-.btn-danger:active,
-.btn-danger.active,
-.open > .dropdown-toggle.btn-danger {
- color: #fff;
- background-color: #dc1e33;
- border-color: #bd1a2c;
-}
-.btn-danger:active:hover,
-.btn-danger.active:hover,
-.open > .dropdown-toggle.btn-danger:hover,
-.btn-danger:active:focus,
-.btn-danger.active:focus,
-.open > .dropdown-toggle.btn-danger:focus,
-.btn-danger:active.focus,
-.btn-danger.active.focus,
-.open > .dropdown-toggle.btn-danger.focus {
- color: #fff;
- background-color: #bd1a2c;
- border-color: #82121e;
-}
-.btn-danger:active,
-.btn-danger.active,
-.open > .dropdown-toggle.btn-danger {
- background-image: none;
-}
-.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-danger[disabled].focus,
-fieldset[disabled] .btn-danger.focus {
- background-color: #E64759;
- border-color: #e33145;
-}
-.btn-danger .badge {
- color: #E64759;
- background-color: #fff;
-}
-.btn-link {
- color: #1CA8DD;
- font-weight: normal;
- border-radius: 0;
-}
-.btn-link,
-.btn-link:active,
-.btn-link.active,
-.btn-link[disabled],
-fieldset[disabled] .btn-link {
- background-color: transparent;
- box-shadow: none;
-}
-.btn-link,
-.btn-link:hover,
-.btn-link:focus,
-.btn-link:active {
- border-color: transparent;
-}
-.btn-link:hover,
-.btn-link:focus {
- color: #137499;
- text-decoration: underline;
- background-color: transparent;
-}
-.btn-link[disabled]:hover,
-fieldset[disabled] .btn-link:hover,
-.btn-link[disabled]:focus,
-fieldset[disabled] .btn-link:focus {
- color: #cfd2da;
- text-decoration: none;
-}
-.btn-lg,
-.btn-group-lg > .btn {
- padding: 10px 16px;
- font-size: 18px;
- line-height: 1.3333333;
- border-radius: 6px;
-}
-.btn-sm,
-.btn-group-sm > .btn {
- padding: 5px 10px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
-}
-.btn-xs,
-.btn-group-xs > .btn {
- padding: 1px 5px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
-}
-.btn-block {
- display: block;
- width: 100%;
-}
-.btn-block + .btn-block {
- margin-top: 5px;
-}
-input[type="submit"].btn-block,
-input[type="reset"].btn-block,
-input[type="button"].btn-block {
- width: 100%;
-}
-.container {
- margin-right: auto;
- margin-left: auto;
- padding-left: 15px;
- padding-right: 15px;
-}
-@media (min-width: 768px) {
- .container {
- width: 750px;
- }
-}
-@media (min-width: 992px) {
- .container {
- width: 970px;
- }
-}
-@media (min-width: 1200px) {
- .container {
- width: 1170px;
- }
-}
-.container-fluid {
- margin-right: auto;
- margin-left: auto;
- padding-left: 15px;
- padding-right: 15px;
-}
-.row {
- margin-left: -15px;
- margin-right: -15px;
-}
-.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
- position: relative;
- min-height: 1px;
- padding-left: 15px;
- padding-right: 15px;
-}
-.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.66666667%;
-}
-.col-xs-10 {
- width: 83.33333333%;
-}
-.col-xs-9 {
- width: 75%;
-}
-.col-xs-8 {
- width: 66.66666667%;
-}
-.col-xs-7 {
- width: 58.33333333%;
-}
-.col-xs-6 {
- width: 50%;
-}
-.col-xs-5 {
- width: 41.66666667%;
-}
-.col-xs-4 {
- width: 33.33333333%;
-}
-.col-xs-3 {
- width: 25%;
-}
-.col-xs-2 {
- width: 16.66666667%;
-}
-.col-xs-1 {
- width: 8.33333333%;
-}
-.col-xs-pull-12 {
- right: 100%;
-}
-.col-xs-pull-11 {
- right: 91.66666667%;
-}
-.col-xs-pull-10 {
- right: 83.33333333%;
-}
-.col-xs-pull-9 {
- right: 75%;
-}
-.col-xs-pull-8 {
- right: 66.66666667%;
-}
-.col-xs-pull-7 {
- right: 58.33333333%;
-}
-.col-xs-pull-6 {
- right: 50%;
-}
-.col-xs-pull-5 {
- right: 41.66666667%;
-}
-.col-xs-pull-4 {
- right: 33.33333333%;
-}
-.col-xs-pull-3 {
- right: 25%;
-}
-.col-xs-pull-2 {
- right: 16.66666667%;
-}
-.col-xs-pull-1 {
- right: 8.33333333%;
-}
-.col-xs-pull-0 {
- right: auto;
-}
-.col-xs-push-12 {
- left: 100%;
-}
-.col-xs-push-11 {
- left: 91.66666667%;
-}
-.col-xs-push-10 {
- left: 83.33333333%;
-}
-.col-xs-push-9 {
- left: 75%;
-}
-.col-xs-push-8 {
- left: 66.66666667%;
-}
-.col-xs-push-7 {
- left: 58.33333333%;
-}
-.col-xs-push-6 {
- left: 50%;
-}
-.col-xs-push-5 {
- left: 41.66666667%;
-}
-.col-xs-push-4 {
- left: 33.33333333%;
-}
-.col-xs-push-3 {
- left: 25%;
-}
-.col-xs-push-2 {
- left: 16.66666667%;
-}
-.col-xs-push-1 {
- left: 8.33333333%;
-}
-.col-xs-push-0 {
- left: auto;
-}
-.col-xs-offset-12 {
- margin-left: 100%;
-}
-.col-xs-offset-11 {
- margin-left: 91.66666667%;
-}
-.col-xs-offset-10 {
- margin-left: 83.33333333%;
-}
-.col-xs-offset-9 {
- margin-left: 75%;
-}
-.col-xs-offset-8 {
- margin-left: 66.66666667%;
-}
-.col-xs-offset-7 {
- margin-left: 58.33333333%;
-}
-.col-xs-offset-6 {
- margin-left: 50%;
-}
-.col-xs-offset-5 {
- margin-left: 41.66666667%;
-}
-.col-xs-offset-4 {
- margin-left: 33.33333333%;
-}
-.col-xs-offset-3 {
- margin-left: 25%;
-}
-.col-xs-offset-2 {
- margin-left: 16.66666667%;
-}
-.col-xs-offset-1 {
- margin-left: 8.33333333%;
-}
-.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.66666667%;
- }
- .col-sm-10 {
- width: 83.33333333%;
- }
- .col-sm-9 {
- width: 75%;
- }
- .col-sm-8 {
- width: 66.66666667%;
- }
- .col-sm-7 {
- width: 58.33333333%;
- }
- .col-sm-6 {
- width: 50%;
- }
- .col-sm-5 {
- width: 41.66666667%;
- }
- .col-sm-4 {
- width: 33.33333333%;
- }
- .col-sm-3 {
- width: 25%;
- }
- .col-sm-2 {
- width: 16.66666667%;
- }
- .col-sm-1 {
- width: 8.33333333%;
- }
- .col-sm-pull-12 {
- right: 100%;
- }
- .col-sm-pull-11 {
- right: 91.66666667%;
- }
- .col-sm-pull-10 {
- right: 83.33333333%;
- }
- .col-sm-pull-9 {
- right: 75%;
- }
- .col-sm-pull-8 {
- right: 66.66666667%;
- }
- .col-sm-pull-7 {
- right: 58.33333333%;
- }
- .col-sm-pull-6 {
- right: 50%;
- }
- .col-sm-pull-5 {
- right: 41.66666667%;
- }
- .col-sm-pull-4 {
- right: 33.33333333%;
- }
- .col-sm-pull-3 {
- right: 25%;
- }
- .col-sm-pull-2 {
- right: 16.66666667%;
- }
- .col-sm-pull-1 {
- right: 8.33333333%;
- }
- .col-sm-pull-0 {
- right: auto;
- }
- .col-sm-push-12 {
- left: 100%;
- }
- .col-sm-push-11 {
- left: 91.66666667%;
- }
- .col-sm-push-10 {
- left: 83.33333333%;
- }
- .col-sm-push-9 {
- left: 75%;
- }
- .col-sm-push-8 {
- left: 66.66666667%;
- }
- .col-sm-push-7 {
- left: 58.33333333%;
- }
- .col-sm-push-6 {
- left: 50%;
- }
- .col-sm-push-5 {
- left: 41.66666667%;
- }
- .col-sm-push-4 {
- left: 33.33333333%;
- }
- .col-sm-push-3 {
- left: 25%;
- }
- .col-sm-push-2 {
- left: 16.66666667%;
- }
- .col-sm-push-1 {
- left: 8.33333333%;
- }
- .col-sm-push-0 {
- left: auto;
- }
- .col-sm-offset-12 {
- margin-left: 100%;
- }
- .col-sm-offset-11 {
- margin-left: 91.66666667%;
- }
- .col-sm-offset-10 {
- margin-left: 83.33333333%;
- }
- .col-sm-offset-9 {
- margin-left: 75%;
- }
- .col-sm-offset-8 {
- margin-left: 66.66666667%;
- }
- .col-sm-offset-7 {
- margin-left: 58.33333333%;
- }
- .col-sm-offset-6 {
- margin-left: 50%;
- }
- .col-sm-offset-5 {
- margin-left: 41.66666667%;
- }
- .col-sm-offset-4 {
- margin-left: 33.33333333%;
- }
- .col-sm-offset-3 {
- margin-left: 25%;
- }
- .col-sm-offset-2 {
- margin-left: 16.66666667%;
- }
- .col-sm-offset-1 {
- margin-left: 8.33333333%;
- }
- .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.66666667%;
- }
- .col-md-10 {
- width: 83.33333333%;
- }
- .col-md-9 {
- width: 75%;
- }
- .col-md-8 {
- width: 66.66666667%;
- }
- .col-md-7 {
- width: 58.33333333%;
- }
- .col-md-6 {
- width: 50%;
- }
- .col-md-5 {
- width: 41.66666667%;
- }
- .col-md-4 {
- width: 33.33333333%;
- }
- .col-md-3 {
- width: 25%;
- }
- .col-md-2 {
- width: 16.66666667%;
- }
- .col-md-1 {
- width: 8.33333333%;
- }
- .col-md-pull-12 {
- right: 100%;
- }
- .col-md-pull-11 {
- right: 91.66666667%;
- }
- .col-md-pull-10 {
- right: 83.33333333%;
- }
- .col-md-pull-9 {
- right: 75%;
- }
- .col-md-pull-8 {
- right: 66.66666667%;
- }
- .col-md-pull-7 {
- right: 58.33333333%;
- }
- .col-md-pull-6 {
- right: 50%;
- }
- .col-md-pull-5 {
- right: 41.66666667%;
- }
- .col-md-pull-4 {
- right: 33.33333333%;
- }
- .col-md-pull-3 {
- right: 25%;
- }
- .col-md-pull-2 {
- right: 16.66666667%;
- }
- .col-md-pull-1 {
- right: 8.33333333%;
- }
- .col-md-pull-0 {
- right: auto;
- }
- .col-md-push-12 {
- left: 100%;
- }
- .col-md-push-11 {
- left: 91.66666667%;
- }
- .col-md-push-10 {
- left: 83.33333333%;
- }
- .col-md-push-9 {
- left: 75%;
- }
- .col-md-push-8 {
- left: 66.66666667%;
- }
- .col-md-push-7 {
- left: 58.33333333%;
- }
- .col-md-push-6 {
- left: 50%;
- }
- .col-md-push-5 {
- left: 41.66666667%;
- }
- .col-md-push-4 {
- left: 33.33333333%;
- }
- .col-md-push-3 {
- left: 25%;
- }
- .col-md-push-2 {
- left: 16.66666667%;
- }
- .col-md-push-1 {
- left: 8.33333333%;
- }
- .col-md-push-0 {
- left: auto;
- }
- .col-md-offset-12 {
- margin-left: 100%;
- }
- .col-md-offset-11 {
- margin-left: 91.66666667%;
- }
- .col-md-offset-10 {
- margin-left: 83.33333333%;
- }
- .col-md-offset-9 {
- margin-left: 75%;
- }
- .col-md-offset-8 {
- margin-left: 66.66666667%;
- }
- .col-md-offset-7 {
- margin-left: 58.33333333%;
- }
- .col-md-offset-6 {
- margin-left: 50%;
- }
- .col-md-offset-5 {
- margin-left: 41.66666667%;
- }
- .col-md-offset-4 {
- margin-left: 33.33333333%;
- }
- .col-md-offset-3 {
- margin-left: 25%;
- }
- .col-md-offset-2 {
- margin-left: 16.66666667%;
- }
- .col-md-offset-1 {
- margin-left: 8.33333333%;
- }
- .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.66666667%;
- }
- .col-lg-10 {
- width: 83.33333333%;
- }
- .col-lg-9 {
- width: 75%;
- }
- .col-lg-8 {
- width: 66.66666667%;
- }
- .col-lg-7 {
- width: 58.33333333%;
- }
- .col-lg-6 {
- width: 50%;
- }
- .col-lg-5 {
- width: 41.66666667%;
- }
- .col-lg-4 {
- width: 33.33333333%;
- }
- .col-lg-3 {
- width: 25%;
- }
- .col-lg-2 {
- width: 16.66666667%;
- }
- .col-lg-1 {
- width: 8.33333333%;
- }
- .col-lg-pull-12 {
- right: 100%;
- }
- .col-lg-pull-11 {
- right: 91.66666667%;
- }
- .col-lg-pull-10 {
- right: 83.33333333%;
- }
- .col-lg-pull-9 {
- right: 75%;
- }
- .col-lg-pull-8 {
- right: 66.66666667%;
- }
- .col-lg-pull-7 {
- right: 58.33333333%;
- }
- .col-lg-pull-6 {
- right: 50%;
- }
- .col-lg-pull-5 {
- right: 41.66666667%;
- }
- .col-lg-pull-4 {
- right: 33.33333333%;
- }
- .col-lg-pull-3 {
- right: 25%;
- }
- .col-lg-pull-2 {
- right: 16.66666667%;
- }
- .col-lg-pull-1 {
- right: 8.33333333%;
- }
- .col-lg-pull-0 {
- right: auto;
- }
- .col-lg-push-12 {
- left: 100%;
- }
- .col-lg-push-11 {
- left: 91.66666667%;
- }
- .col-lg-push-10 {
- left: 83.33333333%;
- }
- .col-lg-push-9 {
- left: 75%;
- }
- .col-lg-push-8 {
- left: 66.66666667%;
- }
- .col-lg-push-7 {
- left: 58.33333333%;
- }
- .col-lg-push-6 {
- left: 50%;
- }
- .col-lg-push-5 {
- left: 41.66666667%;
- }
- .col-lg-push-4 {
- left: 33.33333333%;
- }
- .col-lg-push-3 {
- left: 25%;
- }
- .col-lg-push-2 {
- left: 16.66666667%;
- }
- .col-lg-push-1 {
- left: 8.33333333%;
- }
- .col-lg-push-0 {
- left: auto;
- }
- .col-lg-offset-12 {
- margin-left: 100%;
- }
- .col-lg-offset-11 {
- margin-left: 91.66666667%;
- }
- .col-lg-offset-10 {
- margin-left: 83.33333333%;
- }
- .col-lg-offset-9 {
- margin-left: 75%;
- }
- .col-lg-offset-8 {
- margin-left: 66.66666667%;
- }
- .col-lg-offset-7 {
- margin-left: 58.33333333%;
- }
- .col-lg-offset-6 {
- margin-left: 50%;
- }
- .col-lg-offset-5 {
- margin-left: 41.66666667%;
- }
- .col-lg-offset-4 {
- margin-left: 33.33333333%;
- }
- .col-lg-offset-3 {
- margin-left: 25%;
- }
- .col-lg-offset-2 {
- margin-left: 16.66666667%;
- }
- .col-lg-offset-1 {
- margin-left: 8.33333333%;
- }
- .col-lg-offset-0 {
- margin-left: 0%;
- }
-}
-.fade {
- opacity: 0;
- -webkit-transition: opacity 0.15s linear;
- transition: opacity 0.15s linear;
-}
-.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: 0;
- overflow: hidden;
- -webkit-transition-property: height, visibility;
- transition-property: height, visibility;
- -webkit-transition-duration: 0.35s;
- transition-duration: 0.35s;
- -webkit-transition-timing-function: ease;
- transition-timing-function: ease;
-}
-.caret {
- display: inline-block;
- width: 0;
- height: 0;
- margin-left: 2px;
- vertical-align: middle;
- border-top: 4px dashed;
- border-top: 4px solid \9;
- border-right: 4px solid transparent;
- border-left: 4px solid transparent;
-}
-.dropup,
-.dropdown {
- position: relative;
-}
-.dropdown-toggle:focus {
- outline: 0;
-}
-.dropdown-menu {
- position: absolute;
- top: 100%;
- left: 0;
- z-index: 1000;
- display: none;
- float: left;
- min-width: 160px;
- padding: 5px 0;
- margin: 2px 0 0;
- list-style: none;
- font-size: 14px;
- text-align: left;
- background-color: #fff;
- border: 1px solid #ccc;
- border: 1px solid rgba(0, 0, 0, 0.15);
- border-radius: 4px;
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
- background-clip: padding-box;
-}
-.dropdown-menu.pull-right {
- right: 0;
- left: auto;
-}
-.dropdown-menu .divider {
- height: 1px;
- margin: 9.5px 0;
- overflow: hidden;
- background-color: #e5e5e5;
-}
-.dropdown-menu > li > a {
- display: block;
- padding: 3px 20px;
- clear: both;
- font-weight: normal;
- line-height: 1.5;
- color: #51586a;
- white-space: nowrap;
-}
-.dropdown-menu > li > a:hover,
-.dropdown-menu > li > a:focus {
- text-decoration: none;
- color: #464c5b;
- background-color: #f5f5f5;
-}
-.dropdown-menu > .active > a,
-.dropdown-menu > .active > a:hover,
-.dropdown-menu > .active > a:focus {
- color: #fff;
- text-decoration: none;
- outline: 0;
- background-color: #1CA8DD;
-}
-.dropdown-menu > .disabled > a,
-.dropdown-menu > .disabled > a:hover,
-.dropdown-menu > .disabled > a:focus {
- color: #cfd2da;
-}
-.dropdown-menu > .disabled > a:hover,
-.dropdown-menu > .disabled > a:focus {
- text-decoration: none;
- background-color: transparent;
- background-image: none;
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
- cursor: not-allowed;
-}
-.open > .dropdown-menu {
- display: block;
-}
-.open > a {
- outline: 0;
-}
-.dropdown-menu-right {
- left: auto;
- right: 0;
-}
-.dropdown-menu-left {
- left: 0;
- right: auto;
-}
-.dropdown-header {
- display: block;
- padding: 3px 20px;
- font-size: 12px;
- line-height: 1.5;
- color: #cfd2da;
- white-space: nowrap;
-}
-.dropdown-backdrop {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- top: 0;
- z-index: 990;
-}
-.pull-right > .dropdown-menu {
- right: 0;
- left: auto;
-}
-.dropup .caret,
-.navbar-fixed-bottom .dropdown .caret {
- border-top: 0;
- border-bottom: 4px dashed;
- border-bottom: 4px solid \9;
- content: "";
-}
-.dropup .dropdown-menu,
-.navbar-fixed-bottom .dropdown .dropdown-menu {
- top: auto;
- bottom: 100%;
- margin-bottom: 2px;
-}
-@media (min-width: 992px) {
- .navbar-right .dropdown-menu {
- left: auto;
- right: 0;
- }
- .navbar-right .dropdown-menu-left {
- left: 0;
- right: auto;
- }
-}
-.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 > .btn:focus,
-.btn-group-vertical > .btn:focus,
-.btn-group > .btn:active,
-.btn-group-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 {
- float: 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: 0;
-}
-.btn-group > .btn:first-child {
- margin-left: 0;
-}
-.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
- border-bottom-right-radius: 0;
- border-top-right-radius: 0;
-}
-.btn-group > .btn:last-child:not(:first-child),
-.btn-group > .dropdown-toggle:not(:first-child) {
- border-bottom-left-radius: 0;
- border-top-left-radius: 0;
-}
-.btn-group > .btn-group {
- float: left;
-}
-.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
- border-radius: 0;
-}
-.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
-.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
- border-bottom-right-radius: 0;
- border-top-right-radius: 0;
-}
-.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
- border-bottom-left-radius: 0;
- border-top-left-radius: 0;
-}
-.btn-group .dropdown-toggle:active,
-.btn-group.open .dropdown-toggle {
- outline: 0;
-}
-.btn-group > .btn + .dropdown-toggle {
- padding-left: 8px;
- padding-right: 8px;
-}
-.btn-group > .btn-lg + .dropdown-toggle {
- padding-left: 12px;
- padding-right: 12px;
-}
-.btn-group.open .dropdown-toggle {
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
-}
-.btn-group.open .dropdown-toggle.btn-link {
- box-shadow: none;
-}
-.btn .caret {
- margin-left: 0;
-}
-.btn-lg .caret {
- border-width: 5px 5px 0;
- border-bottom-width: 0;
-}
-.dropup .btn-lg .caret {
- border-width: 0 5px 5px;
-}
-.btn-group-vertical > .btn,
-.btn-group-vertical > .btn-group,
-.btn-group-vertical > .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: 0;
-}
-.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
- border-radius: 0;
-}
-.btn-group-vertical > .btn:first-child:not(:last-child) {
- border-top-right-radius: 4px;
- border-top-left-radius: 4px;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
-}
-.btn-group-vertical > .btn:last-child:not(:first-child) {
- border-top-right-radius: 0;
- border-top-left-radius: 0;
- border-bottom-right-radius: 4px;
- border-bottom-left-radius: 4px;
-}
-.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
- border-radius: 0;
-}
-.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
-.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
-}
-.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
- border-top-right-radius: 0;
- border-top-left-radius: 0;
-}
-.btn-group-justified {
- display: table;
- width: 100%;
- table-layout: fixed;
- border-collapse: separate;
-}
-.btn-group-justified > .btn,
-.btn-group-justified > .btn-group {
- float: none;
- display: table-cell;
- width: 1%;
-}
-.btn-group-justified > .btn-group .btn {
- width: 100%;
-}
-.btn-group-justified > .btn-group .dropdown-menu {
- left: auto;
-}
-[data-toggle="buttons"] > .btn input[type="radio"],
-[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
-[data-toggle="buttons"] > .btn input[type="checkbox"],
-[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
- position: absolute;
- clip: rect(0, 0, 0, 0);
- pointer-events: none;
-}
-.input-group {
- position: relative;
- display: table;
- border-collapse: separate;
-}
-.input-group[class*="col-"] {
- float: none;
- padding-left: 0;
- padding-right: 0;
-}
-.input-group .form-control {
- position: relative;
- z-index: 2;
- float: left;
- width: 100%;
- margin-bottom: 0;
-}
-.input-group .form-control:focus {
- z-index: 3;
-}
-.input-group-lg > .form-control,
-.input-group-lg > .input-group-addon,
-.input-group-lg > .input-group-btn > .btn {
- height: 46px;
- padding: 10px 16px;
- font-size: 18px;
- line-height: 1.3333333;
- border-radius: 6px;
-}
-select.input-group-lg > .form-control,
-select.input-group-lg > .input-group-addon,
-select.input-group-lg > .input-group-btn > .btn {
- height: 46px;
- line-height: 46px;
-}
-textarea.input-group-lg > .form-control,
-textarea.input-group-lg > .input-group-addon,
-textarea.input-group-lg > .input-group-btn > .btn,
-select[multiple].input-group-lg > .form-control,
-select[multiple].input-group-lg > .input-group-addon,
-select[multiple].input-group-lg > .input-group-btn > .btn {
- height: auto;
-}
-.input-group-sm > .form-control,
-.input-group-sm > .input-group-addon,
-.input-group-sm > .input-group-btn > .btn {
- height: 30px;
- padding: 5px 10px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
-}
-select.input-group-sm > .form-control,
-select.input-group-sm > .input-group-addon,
-select.input-group-sm > .input-group-btn > .btn {
- height: 30px;
- line-height: 30px;
-}
-textarea.input-group-sm > .form-control,
-textarea.input-group-sm > .input-group-addon,
-textarea.input-group-sm > .input-group-btn > .btn,
-select[multiple].input-group-sm > .form-control,
-select[multiple].input-group-sm > .input-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-child):not(:last-child) {
- border-radius: 0;
-}
-.input-group-addon,
-.input-group-btn {
- width: 1%;
- white-space: nowrap;
- vertical-align: middle;
-}
-.input-group-addon {
- padding: 6px 12px;
- font-size: 14px;
- font-weight: normal;
- line-height: 1;
- color: #fff;
- text-align: center;
- background-color: #4d5364;
- border: 1px solid transparent;
- border-radius: 4px;
-}
-.input-group-addon.input-sm {
- padding: 5px 10px;
- font-size: 12px;
- border-radius: 3px;
-}
-.input-group-addon.input-lg {
- padding: 10px 16px;
- font-size: 18px;
- border-radius: 6px;
-}
-.input-group-addon input[type="radio"],
-.input-group-addon input[type="checkbox"] {
- margin-top: 0;
-}
-.input-group .form-control:first-child,
-.input-group-addon:first-child,
-.input-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-bottom-right-radius: 0;
- border-top-right-radius: 0;
-}
-.input-group-addon:first-child {
- border-right: 0;
-}
-.input-group .form-control:last-child,
-.input-group-addon:last-child,
-.input-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-bottom-left-radius: 0;
- border-top-left-radius: 0;
-}
-.input-group-addon:last-child {
- border-left: 0;
-}
-.input-group-btn {
- position: relative;
- font-size: 0;
- 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-group {
- margin-right: -1px;
-}
-.input-group-btn:last-child > .btn,
-.input-group-btn:last-child > .btn-group {
- z-index: 2;
- margin-left: -1px;
-}
-.nav {
- margin-bottom: 0;
- padding-left: 0;
- list-style: none;
-}
-.nav > li {
- position: relative;
- display: block;
-}
-.nav > li > a {
- position: relative;
- display: block;
- padding: 7px 15px;
-}
-.nav > li > a:hover,
-.nav > li > a:focus {
- text-decoration: none;
- background-color: #434857;
-}
-.nav > li.disabled > a {
- color: #cfd2da;
-}
-.nav > li.disabled > a:hover,
-.nav > li.disabled > a:focus {
- color: #cfd2da;
- text-decoration: none;
- background-color: transparent;
- cursor: not-allowed;
-}
-.nav .open > a,
-.nav .open > a:hover,
-.nav .open > a:focus {
- background-color: #434857;
- border-color: #1CA8DD;
-}
-.nav .nav-divider {
- height: 1px;
- margin: 9.5px 0;
- overflow: hidden;
- background-color: #e5e5e5;
-}
-.nav > li > a > img {
- max-width: none;
-}
-.nav-tabs {
- border-bottom: 1px solid #252830;
-}
-.nav-tabs > li {
- float: left;
- margin-bottom: -1px;
-}
-.nav-tabs > li > a {
- margin-right: 2px;
- line-height: 1.5;
- border: 1px solid transparent;
- border-radius: 4px 4px 0 0;
-}
-.nav-tabs > li > a:hover {
- border-color: #ffffff #ffffff #252830;
-}
-.nav-tabs > li.active > a,
-.nav-tabs > li.active > a:hover,
-.nav-tabs > li.active > a:focus {
- color: #fff;
- background-color: transparent;
- border: 1px solid #252830;
- border-bottom-color: transparent;
- cursor: default;
-}
-.nav-tabs.nav-justified {
- width: 100%;
- border-bottom: 0;
-}
-.nav-tabs.nav-justified > li {
- float: none;
-}
-.nav-tabs.nav-justified > li > a {
- text-align: center;
- margin-bottom: 5px;
-}
-.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: 0;
- }
-}
-.nav-tabs.nav-justified > li > a {
- margin-right: 0;
- border-radius: 4px;
-}
-.nav-tabs.nav-justified > .active > a,
-.nav-tabs.nav-justified > .active > a:hover,
-.nav-tabs.nav-justified > .active > a:focus {
- border: 1px solid #ddd;
-}
-@media (min-width: 768px) {
- .nav-tabs.nav-justified > li > a {
- border-bottom: 1px solid #ddd;
- border-radius: 4px 4px 0 0;
- }
- .nav-tabs.nav-justified > .active > a,
- .nav-tabs.nav-justified > .active > a:hover,
- .nav-tabs.nav-justified > .active > a:focus {
- border-bottom-color: #252830;
- }
-}
-.nav-pills > li {
- float: left;
-}
-.nav-pills > li > a {
- border-radius: 4px;
-}
-.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: #252830;
- background-color: #1CA8DD;
-}
-.nav-stacked > li {
- float: none;
-}
-.nav-stacked > li + li {
- margin-top: 2px;
- margin-left: 0;
-}
-.nav-justified {
- width: 100%;
-}
-.nav-justified > li {
- float: none;
-}
-.nav-justified > li > a {
- text-align: center;
- margin-bottom: 5px;
-}
-.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: 0;
- }
-}
-.nav-tabs-justified {
- border-bottom: 0;
-}
-.nav-tabs-justified > li > a {
- margin-right: 0;
- border-radius: 4px;
-}
-.nav-tabs-justified > .active > a,
-.nav-tabs-justified > .active > a:hover,
-.nav-tabs-justified > .active > a:focus {
- border: 1px solid #ddd;
-}
-@media (min-width: 768px) {
- .nav-tabs-justified > li > a {
- border-bottom: 1px solid #ddd;
- border-radius: 4px 4px 0 0;
- }
- .nav-tabs-justified > .active > a,
- .nav-tabs-justified > .active > a:hover,
- .nav-tabs-justified > .active > a:focus {
- border-bottom-color: #252830;
- }
-}
-.tab-content > .tab-pane {
- display: none;
-}
-.tab-content > .active {
- display: block;
-}
-.nav-tabs .dropdown-menu {
- margin-top: -1px;
- border-top-right-radius: 0;
- border-top-left-radius: 0;
-}
-.navbar {
- position: relative;
- min-height: 50px;
- margin-bottom: 21px;
- border: 1px solid transparent;
-}
-@media (min-width: 992px) {
- .navbar {
- border-radius: 4px;
- }
-}
-@media (min-width: 992px) {
- .navbar-header {
- float: left;
- }
-}
-.navbar-collapse {
- overflow-x: visible;
- padding-right: 15px;
- padding-left: 15px;
- border-top: 1px solid transparent;
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
- -webkit-overflow-scrolling: touch;
-}
-.navbar-collapse.in {
- overflow-y: auto;
-}
-@media (min-width: 992px) {
- .navbar-collapse {
- width: auto;
- border-top: 0;
- box-shadow: none;
- }
- .navbar-collapse.collapse {
- display: block !important;
- height: auto !important;
- padding-bottom: 0;
- 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-left: 0;
- padding-right: 0;
- }
-}
-.navbar-fixed-top .navbar-collapse,
-.navbar-fixed-bottom .navbar-collapse {
- max-height: 340px;
-}
-@media (max-device-width: 480px) and (orientation: landscape) {
- .navbar-fixed-top .navbar-collapse,
- .navbar-fixed-bottom .navbar-collapse {
- max-height: 200px;
- }
-}
-.container > .navbar-header,
-.container-fluid > .navbar-header,
-.container > .navbar-collapse,
-.container-fluid > .navbar-collapse {
- margin-right: -15px;
- margin-left: -15px;
-}
-@media (min-width: 992px) {
- .container > .navbar-header,
- .container-fluid > .navbar-header,
- .container > .navbar-collapse,
- .container-fluid > .navbar-collapse {
- margin-right: 0;
- margin-left: 0;
- }
-}
-.navbar-static-top {
- z-index: 1000;
- border-width: 0 0 1px;
-}
-@media (min-width: 992px) {
- .navbar-static-top {
- border-radius: 0;
- }
-}
-.navbar-fixed-top,
-.navbar-fixed-bottom {
- position: fixed;
- right: 0;
- left: 0;
- z-index: 1030;
-}
-@media (min-width: 992px) {
- .navbar-fixed-top,
- .navbar-fixed-bottom {
- border-radius: 0;
- }
-}
-.navbar-fixed-top {
- top: 0;
- border-width: 0 0 1px;
-}
-.navbar-fixed-bottom {
- bottom: 0;
- margin-bottom: 0;
- border-width: 1px 0 0;
-}
-.navbar-brand {
- float: left;
- padding: 14.5px 15px;
- font-size: 18px;
- line-height: 21px;
- height: 50px;
-}
-.navbar-brand:hover,
-.navbar-brand:focus {
- text-decoration: none;
-}
-.navbar-brand > img {
- display: block;
-}
-@media (min-width: 992px) {
- .navbar > .container .navbar-brand,
- .navbar > .container-fluid .navbar-brand {
- margin-left: -15px;
- }
-}
-.navbar-toggle {
- position: relative;
- float: right;
- margin-right: 15px;
- padding: 9px 10px;
- margin-top: 8px;
- margin-bottom: 8px;
- background-color: transparent;
- background-image: none;
- border: 1px solid transparent;
- border-radius: 4px;
-}
-.navbar-toggle:focus {
- outline: 0;
-}
-.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: 992px) {
- .navbar-toggle {
- display: none;
- }
-}
-.navbar-nav {
- margin: 7.25px -15px;
-}
-.navbar-nav > li > a {
- padding-top: 10px;
- padding-bottom: 10px;
- line-height: 21px;
-}
-@media (max-width: 991px) {
- .navbar-nav .open .dropdown-menu {
- position: static;
- float: none;
- width: auto;
- margin-top: 0;
- background-color: transparent;
- border: 0;
- box-shadow: none;
- }
- .navbar-nav .open .dropdown-menu > li > a,
- .navbar-nav .open .dropdown-menu .dropdown-header {
- padding: 5px 15px 5px 25px;
- }
- .navbar-nav .open .dropdown-menu > li > a {
- line-height: 21px;
- }
- .navbar-nav .open .dropdown-menu > li > a:hover,
- .navbar-nav .open .dropdown-menu > li > a:focus {
- background-image: none;
- }
-}
-@media (min-width: 992px) {
- .navbar-nav {
- float: left;
- margin: 0;
- }
- .navbar-nav > li {
- float: left;
- }
- .navbar-nav > li > a {
- padding-top: 14.5px;
- padding-bottom: 14.5px;
- }
-}
-.navbar-form {
- margin-left: -15px;
- margin-right: -15px;
- padding: 10px 15px;
- border-top: 1px solid transparent;
- border-bottom: 1px solid transparent;
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
- margin-top: 7.5px;
- margin-bottom: 7.5px;
-}
-@media (min-width: 768px) {
- .navbar-form .form-group {
- display: inline-block;
- margin-bottom: 0;
- vertical-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: 0;
- vertical-align: middle;
- }
- .navbar-form .radio,
- .navbar-form .checkbox {
- display: inline-block;
- margin-top: 0;
- margin-bottom: 0;
- vertical-align: middle;
- }
- .navbar-form .radio label,
- .navbar-form .checkbox label {
- padding-left: 0;
- }
- .navbar-form .radio input[type="radio"],
- .navbar-form .checkbox input[type="checkbox"] {
- position: relative;
- margin-left: 0;
- }
- .navbar-form .has-feedback .form-control-feedback {
- top: 0;
- }
-}
-@media (max-width: 991px) {
- .navbar-form .form-group {
- margin-bottom: 5px;
- }
- .navbar-form .form-group:last-child {
- margin-bottom: 0;
- }
-}
-@media (min-width: 992px) {
- .navbar-form {
- width: auto;
- border: 0;
- margin-left: 0;
- margin-right: 0;
- padding-top: 0;
- padding-bottom: 0;
- box-shadow: none;
- }
-}
-.navbar-nav > li > .dropdown-menu {
- margin-top: 0;
- border-top-right-radius: 0;
- border-top-left-radius: 0;
-}
-.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
- margin-bottom: 0;
- border-top-right-radius: 4px;
- border-top-left-radius: 4px;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
-}
-.navbar-btn {
- margin-top: 7.5px;
- margin-bottom: 7.5px;
-}
-.navbar-btn.btn-sm {
- margin-top: 10px;
- margin-bottom: 10px;
-}
-.navbar-btn.btn-xs {
- margin-top: 14px;
- margin-bottom: 14px;
-}
-.navbar-text {
- margin-top: 14.5px;
- margin-bottom: 14.5px;
-}
-@media (min-width: 992px) {
- .navbar-text {
- float: left;
- margin-left: 15px;
- margin-right: 15px;
- }
-}
-@media (min-width: 992px) {
- .navbar-left {
- float: left !important;
- }
- .navbar-right {
- float: right !important;
- margin-right: -15px;
- }
- .navbar-right ~ .navbar-right {
- margin-right: 0;
- }
-}
-.navbar-default {
- background-color: #f8f8f8;
- border-color: #e7e7e7;
-}
-.navbar-default .navbar-brand {
- color: #777;
-}
-.navbar-default .navbar-brand:hover,
-.navbar-default .navbar-brand:focus {
- color: #5e5e5e;
- background-color: transparent;
-}
-.navbar-default .navbar-text {
- color: #777;
-}
-.navbar-default .navbar-nav > li > a {
- color: #777;
-}
-.navbar-default .navbar-nav > li > a:hover,
-.navbar-default .navbar-nav > li > a:focus {
- color: #333;
- background-color: transparent;
-}
-.navbar-default .navbar-nav > .active > a,
-.navbar-default .navbar-nav > .active > a:hover,
-.navbar-default .navbar-nav > .active > a:focus {
- color: #555;
- background-color: #e7e7e7;
-}
-.navbar-default .navbar-nav > .disabled > a,
-.navbar-default .navbar-nav > .disabled > a:hover,
-.navbar-default .navbar-nav > .disabled > a:focus {
- color: #ccc;
- background-color: transparent;
-}
-.navbar-default .navbar-toggle {
- border-color: #ddd;
-}
-.navbar-default .navbar-toggle:hover,
-.navbar-default .navbar-toggle:focus {
- background-color: #ddd;
-}
-.navbar-default .navbar-toggle .icon-bar {
- background-color: #888;
-}
-.navbar-default .navbar-collapse,
-.navbar-default .navbar-form {
- border-color: #e7e7e7;
-}
-.navbar-default .navbar-nav > .open > a,
-.navbar-default .navbar-nav > .open > a:hover,
-.navbar-default .navbar-nav > .open > a:focus {
- background-color: #e7e7e7;
- color: #555;
-}
-@media (max-width: 991px) {
- .navbar-default .navbar-nav .open .dropdown-menu > li > a {
- color: #777;
- }
- .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
- .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
- color: #333;
- background-color: transparent;
- }
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
- color: #555;
- background-color: #e7e7e7;
- }
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
- color: #ccc;
- background-color: transparent;
- }
-}
-.navbar-default .navbar-link {
- color: #777;
-}
-.navbar-default .navbar-link:hover {
- color: #333;
-}
-.navbar-default .btn-link {
- color: #777;
-}
-.navbar-default .btn-link:hover,
-.navbar-default .btn-link:focus {
- color: #333;
-}
-.navbar-default .btn-link[disabled]:hover,
-fieldset[disabled] .navbar-default .btn-link:hover,
-.navbar-default .btn-link[disabled]:focus,
-fieldset[disabled] .navbar-default .btn-link:focus {
- color: #ccc;
-}
-.navbar-inverse {
- background-color: #1a1c22;
- border-color: #1a1c22;
-}
-.navbar-inverse .navbar-brand {
- color: #cfd2da;
-}
-.navbar-inverse .navbar-brand:hover,
-.navbar-inverse .navbar-brand:focus {
- color: #fff;
- background-color: transparent;
-}
-.navbar-inverse .navbar-text {
- color: #cfd2da;
-}
-.navbar-inverse .navbar-nav > li > a {
- color: #cfd2da;
-}
-.navbar-inverse .navbar-nav > li > a:hover,
-.navbar-inverse .navbar-nav > li > a:focus {
- color: #fff;
- background-color: transparent;
-}
-.navbar-inverse .navbar-nav > .active > a,
-.navbar-inverse .navbar-nav > .active > a:hover,
-.navbar-inverse .navbar-nav > .active > a:focus {
- color: #fff;
- background-color: transparent;
-}
-.navbar-inverse .navbar-nav > .disabled > a,
-.navbar-inverse .navbar-nav > .disabled > a:hover,
-.navbar-inverse .navbar-nav > .disabled > a:focus {
- color: #51586a;
- background-color: transparent;
-}
-.navbar-inverse .navbar-toggle {
- border-color: transparent;
-}
-.navbar-inverse .navbar-toggle:hover,
-.navbar-inverse .navbar-toggle:focus {
- background-color: #252830;
-}
-.navbar-inverse .navbar-toggle .icon-bar {
- background-color: #fff;
-}
-.navbar-inverse .navbar-collapse,
-.navbar-inverse .navbar-form {
- border-color: #0a0b0d;
-}
-.navbar-inverse .navbar-nav > .open > a,
-.navbar-inverse .navbar-nav > .open > a:hover,
-.navbar-inverse .navbar-nav > .open > a:focus {
- background-color: transparent;
- color: #fff;
-}
-@media (max-width: 991px) {
- .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
- border-color: #1a1c22;
- }
- .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
- background-color: #1a1c22;
- }
- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
- color: #cfd2da;
- }
- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
- color: #fff;
- background-color: transparent;
- }
- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
- color: #fff;
- background-color: transparent;
- }
- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
- color: #51586a;
- background-color: transparent;
- }
-}
-.navbar-inverse .navbar-link {
- color: #cfd2da;
-}
-.navbar-inverse .navbar-link:hover {
- color: #fff;
-}
-.navbar-inverse .btn-link {
- color: #cfd2da;
-}
-.navbar-inverse .btn-link:hover,
-.navbar-inverse .btn-link:focus {
- color: #fff;
-}
-.navbar-inverse .btn-link[disabled]:hover,
-fieldset[disabled] .navbar-inverse .btn-link:hover,
-.navbar-inverse .btn-link[disabled]:focus,
-fieldset[disabled] .navbar-inverse .btn-link:focus {
- color: #51586a;
-}
-.breadcrumb {
- padding: 8px 15px;
- margin-bottom: 21px;
- list-style: none;
- background-color: #30343e;
- border-radius: 4px;
-}
-.breadcrumb > li {
- display: inline-block;
-}
-.breadcrumb > li + li:before {
- content: "/\00a0";
- padding: 0 5px;
- color: #51586a;
-}
-.breadcrumb > .active {
- color: #fff;
-}
-.pagination {
- display: inline-block;
- padding-left: 0;
- margin: 21px 0;
- border-radius: 4px;
-}
-.pagination > li {
- display: inline;
-}
-.pagination > li > a,
-.pagination > li > span {
- position: relative;
- float: left;
- padding: 6px 12px;
- line-height: 1.5;
- text-decoration: none;
- color: #51586a;
- background-color: #252830;
- border: 1px solid #434857;
- margin-left: -1px;
-}
-.pagination > li:first-child > a,
-.pagination > li:first-child > span {
- margin-left: 0;
- border-bottom-left-radius: 4px;
- border-top-left-radius: 4px;
-}
-.pagination > li:last-child > a,
-.pagination > li:last-child > span {
- border-bottom-right-radius: 4px;
- border-top-right-radius: 4px;
-}
-.pagination > li > a:hover,
-.pagination > li > span:hover,
-.pagination > li > a:focus,
-.pagination > li > span:focus {
- z-index: 2;
- color: #fff;
- background-color: #434857;
- border-color: #434857;
-}
-.pagination > .active > a,
-.pagination > .active > span,
-.pagination > .active > a:hover,
-.pagination > .active > span:hover,
-.pagination > .active > a:focus,
-.pagination > .active > span:focus {
- z-index: 3;
- color: #fff;
- background-color: #51586a;
- border-color: #51586a;
- cursor: default;
-}
-.pagination > .disabled > span,
-.pagination > .disabled > span:hover,
-.pagination > .disabled > span:focus,
-.pagination > .disabled > a,
-.pagination > .disabled > a:hover,
-.pagination > .disabled > a:focus {
- color: #51586a;
- background-color: transparent;
- border-color: #434857;
- cursor: not-allowed;
- pointer-events: none;
-}
-.pagination-lg > li > a,
-.pagination-lg > li > span {
- padding: 10px 16px;
- font-size: 18px;
- line-height: 1.3333333;
-}
-.pagination-lg > li:first-child > a,
-.pagination-lg > li:first-child > span {
- border-bottom-left-radius: 6px;
- border-top-left-radius: 6px;
-}
-.pagination-lg > li:last-child > a,
-.pagination-lg > li:last-child > span {
- border-bottom-right-radius: 6px;
- border-top-right-radius: 6px;
-}
-.pagination-sm > li > a,
-.pagination-sm > li > span {
- padding: 5px 10px;
- font-size: 12px;
- line-height: 1.5;
-}
-.pagination-sm > li:first-child > a,
-.pagination-sm > li:first-child > span {
- border-bottom-left-radius: 3px;
- border-top-left-radius: 3px;
-}
-.pagination-sm > li:last-child > a,
-.pagination-sm > li:last-child > span {
- border-bottom-right-radius: 3px;
- border-top-right-radius: 3px;
-}
-.pager {
- padding-left: 0;
- margin: 21px 0;
- list-style: none;
- text-align: center;
-}
-.pager li {
- display: inline;
-}
-.pager li > a,
-.pager li > span {
- display: inline-block;
- padding: 5px 14px;
- background-color: #252830;
- border: 1px solid #434857;
- border-radius: 15px;
-}
-.pager li > a:hover,
-.pager li > a:focus {
- text-decoration: none;
- background-color: #434857;
-}
-.pager .next > a,
-.pager .next > span {
- float: right;
-}
-.pager .previous > a,
-.pager .previous > span {
- float: left;
-}
-.pager .disabled > a,
-.pager .disabled > a:hover,
-.pager .disabled > a:focus,
-.pager .disabled > span {
- color: #51586a;
- background-color: #252830;
- cursor: not-allowed;
- pointer-events: none;
-}
-.label {
- display: inline;
- padding: .2em .6em .3em;
- font-size: 75%;
- font-weight: bold;
- line-height: 1;
- color: #252830;
- text-align: center;
- white-space: nowrap;
- vertical-align: baseline;
- border-radius: .25em;
-}
-a.label:hover,
-a.label:focus {
- color: #fff;
- text-decoration: none;
- cursor: pointer;
-}
-.label:empty {
- display: none;
-}
-.btn .label {
- position: relative;
- top: -1px;
-}
-.label-default {
- background-color: #cfd2da;
-}
-.label-default[href]:hover,
-.label-default[href]:focus {
- background-color: #b2b7c4;
-}
-.label-primary {
- background-color: #1CA8DD;
-}
-.label-primary[href]:hover,
-.label-primary[href]:focus {
- background-color: #1686b0;
-}
-.label-success {
- background-color: #1BC98E;
-}
-.label-success[href]:hover,
-.label-success[href]:focus {
- background-color: #159c6e;
-}
-.label-info {
- background-color: #9F86FF;
-}
-.label-info[href]:hover,
-.label-info[href]:focus {
- background-color: #7753ff;
-}
-.label-warning {
- background-color: #E4D836;
-}
-.label-warning[href]:hover,
-.label-warning[href]:focus {
- background-color: #ccbf1b;
-}
-.label-danger {
- background-color: #E64759;
-}
-.label-danger[href]:hover,
-.label-danger[href]:focus {
- background-color: #dc1e33;
-}
-.badge {
- display: inline-block;
- min-width: 10px;
- padding: 3px 7px;
- font-size: 12px;
- font-weight: bold;
- color: #252830;
- line-height: 1;
- vertical-align: middle;
- white-space: nowrap;
- text-align: center;
- background-color: #fff;
- border-radius: 10px;
-}
-.badge:empty {
- display: none;
-}
-.btn .badge {
- position: relative;
- top: -1px;
-}
-.btn-xs .badge,
-.btn-group-xs > .btn .badge {
- top: 0;
- padding: 1px 5px;
-}
-a.badge:hover,
-a.badge:focus {
- color: #fff;
- text-decoration: none;
- cursor: pointer;
-}
-.list-group-item.active > .badge,
-.nav-pills > .active > a > .badge {
- color: #1CA8DD;
- background-color: #fff;
-}
-.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: #1a1c22;
-}
-.jumbotron h1,
-.jumbotron .h1 {
- color: #fff;
-}
-.jumbotron p {
- margin-bottom: 15px;
- font-size: 21px;
- font-weight: 200;
-}
-.jumbotron > hr {
- border-top-color: #040405;
-}
-.container .jumbotron,
-.container-fluid .jumbotron {
- border-radius: 6px;
- padding-left: 15px;
- padding-right: 15px;
-}
-.jumbotron .container {
- max-width: 100%;
-}
-@media screen and (min-width: 768px) {
- .jumbotron {
- padding-top: 48px;
- padding-bottom: 48px;
- }
- .container .jumbotron,
- .container-fluid .jumbotron {
- padding-left: 60px;
- padding-right: 60px;
- }
- .jumbotron h1,
- .jumbotron .h1 {
- font-size: 63px;
- }
-}
-.thumbnail {
- display: block;
- padding: 4px;
- margin-bottom: 21px;
- line-height: 1.5;
- background-color: transparent;
- border: 1px solid #30343e;
- border-radius: 4px;
- -webkit-transition: border 0.2s ease-in-out;
- transition: border 0.2s ease-in-out;
-}
-.thumbnail > img,
-.thumbnail a > img {
- margin-left: auto;
- margin-right: auto;
-}
-a.thumbnail:hover,
-a.thumbnail:focus,
-a.thumbnail.active {
- border-color: #1CA8DD;
-}
-.thumbnail .caption {
- padding: 15px 11px;
- color: inherit;
-}
-.alert {
- padding: 15px;
- margin-bottom: 21px;
- border: 1px solid transparent;
- border-radius: 4px;
-}
-.alert h4 {
- margin-top: 0;
- color: inherit;
-}
-.alert .alert-link {
- font-weight: bold;
-}
-.alert > p,
-.alert > ul {
- margin-bottom: 0;
-}
-.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 {
- background-color: #1BC98E;
- border-color: #1BC98E;
- color: #e7fcf5;
-}
-.alert-success hr {
- border-top-color: #18b37e;
-}
-.alert-success .alert-link {
- color: #baf6e2;
-}
-.alert-info {
- background-color: #9F86FF;
- border-color: #9F86FF;
- color: #ffffff;
-}
-.alert-info hr {
- border-top-color: #8b6cff;
-}
-.alert-info .alert-link {
- color: #e6e6e6;
-}
-.alert-warning {
- background-color: #E4D836;
- border-color: #E4D836;
- color: #ffffff;
-}
-.alert-warning hr {
- border-top-color: #e1d420;
-}
-.alert-warning .alert-link {
- color: #e6e6e6;
-}
-.alert-danger {
- background-color: #E64759;
- border-color: #E64759;
- color: #ffffff;
-}
-.alert-danger hr {
- border-top-color: #e33145;
-}
-.alert-danger .alert-link {
- color: #ccffff;
-}
-@-webkit-keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-@keyframes progress-bar-stripes {
- from {
- background-position: 40px 0;
- }
- to {
- background-position: 0 0;
- }
-}
-.progress {
- overflow: hidden;
- height: 21px;
- margin-bottom: 21px;
- background-color: #434857;
- border-radius: 4px;
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
-}
-.progress-bar {
- float: left;
- width: 0%;
- height: 100%;
- font-size: 12px;
- line-height: 21px;
- color: #fff;
- text-align: center;
- background-color: #1CA8DD;
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
- -webkit-transition: width 0.6s ease;
- transition: width 0.6s ease;
-}
-.progress-striped .progress-bar,
-.progress-bar-striped {
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-size: 40px 40px;
-}
-.progress.active .progress-bar,
-.progress-bar.active {
- -webkit-animation: progress-bar-stripes 2s linear infinite;
- animation: progress-bar-stripes 2s linear infinite;
-}
-.progress-bar-success {
- background-color: #1BC98E;
-}
-.progress-striped .progress-bar-success {
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.progress-bar-info {
- background-color: #9F86FF;
-}
-.progress-striped .progress-bar-info {
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.progress-bar-warning {
- background-color: #E4D836;
-}
-.progress-striped .progress-bar-warning {
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.progress-bar-danger {
- background-color: #E64759;
-}
-.progress-striped .progress-bar-danger {
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.media {
- margin-top: 15px;
-}
-.media:first-child {
- margin-top: 0;
-}
-.media,
-.media-body {
- zoom: 1;
- overflow: hidden;
-}
-.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-align: top;
-}
-.media-middle {
- vertical-align: middle;
-}
-.media-bottom {
- vertical-align: bottom;
-}
-.media-heading {
- margin-top: 0;
- margin-bottom: 5px;
-}
-.media-list {
- padding-left: 0;
- list-style: none;
-}
-.list-group {
- margin-bottom: 20px;
- padding-left: 0;
-}
-.list-group-item {
- position: relative;
- display: block;
- padding: 10px 15px;
- margin-bottom: -1px;
- background-color: transparent;
- border: 1px solid #434857;
-}
-.list-group-item:first-child {
- border-top-right-radius: 4px;
- border-top-left-radius: 4px;
-}
-.list-group-item:last-child {
- margin-bottom: 0;
- border-bottom-right-radius: 4px;
- border-bottom-left-radius: 4px;
-}
-a.list-group-item,
-button.list-group-item {
- color: #cfd2da;
-}
-a.list-group-item .list-group-item-heading,
-button.list-group-item .list-group-item-heading {
- color: #cfd2da;
-}
-a.list-group-item:hover,
-button.list-group-item:hover,
-a.list-group-item:focus,
-button.list-group-item:focus {
- text-decoration: none;
- color: #cfd2da;
- background-color: #434857;
-}
-button.list-group-item {
- width: 100%;
- text-align: left;
-}
-.list-group-item.disabled,
-.list-group-item.disabled:hover,
-.list-group-item.disabled:focus {
- background-color: transparent;
- color: #51586a;
- cursor: not-allowed;
-}
-.list-group-item.disabled .list-group-item-heading,
-.list-group-item.disabled:hover .list-group-item-heading,
-.list-group-item.disabled:focus .list-group-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-item-text {
- color: inherit;
-}
-.list-group-item.active,
-.list-group-item.active:hover,
-.list-group-item.active:focus {
- z-index: 2;
- color: #fff;
- background-color: #51586a;
- border-color: #51586a;
-}
-.list-group-item.active .list-group-item-heading,
-.list-group-item.active:hover .list-group-item-heading,
-.list-group-item.active:focus .list-group-item-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 .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 {
- color: inherit;
-}
-.list-group-item.active .list-group-item-text,
-.list-group-item.active:hover .list-group-item-text,
-.list-group-item.active:focus .list-group-item-text {
- color: #bcc0cb;
-}
-.list-group-item-success {
- color: #1BC98E;
- background-color: #dff0d8;
-}
-a.list-group-item-success,
-button.list-group-item-success {
- color: #1BC98E;
-}
-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.list-group-item-success:focus,
-button.list-group-item-success:focus {
- color: #1BC98E;
- background-color: #d0e9c6;
-}
-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-success.active:focus {
- color: #fff;
- background-color: #1BC98E;
- border-color: #1BC98E;
-}
-.list-group-item-info {
- color: #9F86FF;
- background-color: #d9edf7;
-}
-a.list-group-item-info,
-button.list-group-item-info {
- color: #9F86FF;
-}
-a.list-group-item-info .list-group-item-heading,
-button.list-group-item-info .list-group-item-heading {
- color: inherit;
-}
-a.list-group-item-info:hover,
-button.list-group-item-info:hover,
-a.list-group-item-info:focus,
-button.list-group-item-info:focus {
- color: #9F86FF;
- background-color: #c4e3f3;
-}
-a.list-group-item-info.active,
-button.list-group-item-info.active,
-a.list-group-item-info.active:hover,
-button.list-group-item-info.active:hover,
-a.list-group-item-info.active:focus,
-button.list-group-item-info.active:focus {
- color: #fff;
- background-color: #9F86FF;
- border-color: #9F86FF;
-}
-.list-group-item-warning {
- color: #E4D836;
- background-color: #fcf8e3;
-}
-a.list-group-item-warning,
-button.list-group-item-warning {
- color: #E4D836;
-}
-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.list-group-item-warning:focus,
-button.list-group-item-warning:focus {
- color: #E4D836;
- background-color: #faf2cc;
-}
-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-warning.active:focus {
- color: #fff;
- background-color: #E4D836;
- border-color: #E4D836;
-}
-.list-group-item-danger {
- color: #E64759;
- background-color: #f2dede;
-}
-a.list-group-item-danger,
-button.list-group-item-danger {
- color: #E64759;
-}
-a.list-group-item-danger .list-group-item-heading,
-button.list-group-item-danger .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: #E64759;
- background-color: #ebcccc;
-}
-a.list-group-item-danger.active,
-button.list-group-item-danger.active,
-a.list-group-item-danger.active:hover,
-button.list-group-item-danger.active:hover,
-a.list-group-item-danger.active:focus,
-button.list-group-item-danger.active:focus {
- color: #fff;
- background-color: #E64759;
- border-color: #E64759;
-}
-.list-group-item-heading {
- margin-top: 0;
- margin-bottom: 5px;
-}
-.list-group-item-text {
- margin-bottom: 0;
- line-height: 1.3;
-}
-.panel {
- margin-bottom: 21px;
- background-color: transparent;
- border: 1px solid transparent;
- border-radius: 4px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
-}
-.panel-body {
- padding: 15px;
-}
-.panel-heading {
- padding: 10px 15px;
- border-bottom: 1px solid transparent;
- border-top-right-radius: 3px;
- border-top-left-radius: 3px;
-}
-.panel-heading > .dropdown .dropdown-toggle {
- color: inherit;
-}
-.panel-title {
- margin-top: 0;
- margin-bottom: 0;
- font-size: 16px;
- 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: #f5f5f5;
- border-top: 1px solid #ddd;
- border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-.panel > .list-group,
-.panel > .panel-collapse > .list-group {
- margin-bottom: 0;
-}
-.panel > .list-group .list-group-item,
-.panel > .panel-collapse > .list-group .list-group-item {
- border-width: 1px 0;
- border-radius: 0;
-}
-.panel > .list-group:first-child .list-group-item:first-child,
-.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
- border-top: 0;
- border-top-right-radius: 3px;
- border-top-left-radius: 3px;
-}
-.panel > .list-group:last-child .list-group-item:last-child,
-.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
- border-bottom: 0;
- border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
- border-top-right-radius: 0;
- border-top-left-radius: 0;
-}
-.panel-heading + .list-group .list-group-item:first-child {
- border-top-width: 0;
-}
-.list-group + .panel-footer {
- border-top-width: 0;
-}
-.panel > .table,
-.panel > .table-responsive > .table,
-.panel > .panel-collapse > .table {
- margin-bottom: 0;
-}
-.panel > .table caption,
-.panel > .table-responsive > .table caption,
-.panel > .panel-collapse > .table caption {
- padding-left: 15px;
- padding-right: 15px;
-}
-.panel > .table:first-child,
-.panel > .table-responsive:first-child > .table:first-child {
- border-top-right-radius: 3px;
- border-top-left-radius: 3px;
-}
-.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-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
- border-top-left-radius: 3px;
- border-top-right-radius: 3px;
-}
-.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
-.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
-.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
-.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
- border-top-left-radius: 3px;
-}
-.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
-.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
-.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
-.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
-.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
-.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
- border-top-right-radius: 3px;
-}
-.panel > .table:last-child,
-.panel > .table-responsive:last-child > .table:last-child {
- border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-.panel > .table:last-child > tbody:last-child > tr:last-child,
-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
-.panel > .table:last-child > tfoot:last-child > tr:last-child,
-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
- border-bottom-left-radius: 3px;
- border-bottom-right-radius: 3px;
-}
-.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
-.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
-.panel > .table-responsive:last-child > .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-child > tr:last-child th:first-child,
-.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
-.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
- border-bottom-left-radius: 3px;
-}
-.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
-.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > 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,
-.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
-.panel > .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 > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
- border-bottom-right-radius: 3px;
-}
-.panel > .panel-body + .table,
-.panel > .panel-body + .table-responsive,
-.panel > .table + .panel-body,
-.panel > .table-responsive + .panel-body {
- border-top: 1px solid #434857;
-}
-.panel > .table > tbody:first-child > tr:first-child th,
-.panel > .table > tbody:first-child > tr:first-child td {
- border-top: 0;
-}
-.panel > .table-bordered,
-.panel > .table-responsive > .table-bordered {
- border: 0;
-}
-.panel > .table-bordered > thead > tr > th:first-child,
-.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
-.panel > .table-bordered > tbody > tr > th:first-child,
-.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
-.panel > .table-bordered > tfoot > tr > 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-child,
-.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 > .table-bordered > tfoot > tr > td:first-child {
- border-left: 0;
-}
-.panel > .table-bordered > thead > tr > th:last-child,
-.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
-.panel > .table-bordered > tbody > tr > th:last-child,
-.panel > .table-responsive > .table-bordered > 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,
-.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
-.panel > .table-bordered > tbody > tr > td:last-child,
-.panel > .table-responsive > .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: 0;
-}
-.panel > .table-bordered > thead > tr:first-child > td,
-.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
-.panel > .table-bordered > tbody > tr:first-child > td,
-.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
-.panel > .table-bordered > thead > tr: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 > th {
- border-bottom: 0;
-}
-.panel > .table-bordered > tbody > tr:last-child > td,
-.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
-.panel > .table-bordered > tfoot > tr:last-child > td,
-.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
-.panel > .table-bordered > tbody > tr:last-child > th,
-.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
-.panel > .table-bordered > tfoot > tr:last-child > th,
-.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
- border-bottom: 0;
-}
-.panel > .table-responsive {
- border: 0;
- margin-bottom: 0;
-}
-.panel-group {
- margin-bottom: 21px;
-}
-.panel-group .panel {
- margin-bottom: 0;
- border-radius: 4px;
-}
-.panel-group .panel + .panel {
- margin-top: 5px;
-}
-.panel-group .panel-heading {
- border-bottom: 0;
-}
-.panel-group .panel-heading + .panel-collapse > .panel-body,
-.panel-group .panel-heading + .panel-collapse > .list-group {
- border-top: 1px solid #ddd;
-}
-.panel-group .panel-footer {
- border-top: 0;
-}
-.panel-group .panel-footer + .panel-collapse .panel-body {
- border-bottom: 1px solid #ddd;
-}
-.panel-default {
- border-color: #ddd;
-}
-.panel-default > .panel-heading {
- color: #51586a;
- background-color: #f5f5f5;
- border-color: #ddd;
-}
-.panel-default > .panel-heading + .panel-collapse > .panel-body {
- border-top-color: #ddd;
-}
-.panel-default > .panel-heading .badge {
- color: #f5f5f5;
- background-color: #51586a;
-}
-.panel-default > .panel-footer + .panel-collapse > .panel-body {
- border-bottom-color: #ddd;
-}
-.panel-primary {
- border-color: #1CA8DD;
-}
-.panel-primary > .panel-heading {
- color: #fff;
- background-color: #1CA8DD;
- border-color: #1CA8DD;
-}
-.panel-primary > .panel-heading + .panel-collapse > .panel-body {
- border-top-color: #1CA8DD;
-}
-.panel-primary > .panel-heading .badge {
- color: #1CA8DD;
- background-color: #fff;
-}
-.panel-primary > .panel-footer + .panel-collapse > .panel-body {
- border-bottom-color: #1CA8DD;
-}
-.panel-success {
- border-color: #1BC98E;
-}
-.panel-success > .panel-heading {
- color: #fff;
- background-color: #1BC98E;
- border-color: #1BC98E;
-}
-.panel-success > .panel-heading + .panel-collapse > .panel-body {
- border-top-color: #1BC98E;
-}
-.panel-success > .panel-heading .badge {
- color: #1BC98E;
- background-color: #fff;
-}
-.panel-success > .panel-footer + .panel-collapse > .panel-body {
- border-bottom-color: #1BC98E;
-}
-.panel-info {
- border-color: #9F86FF;
-}
-.panel-info > .panel-heading {
- color: #fff;
- background-color: #9F86FF;
- border-color: #9F86FF;
-}
-.panel-info > .panel-heading + .panel-collapse > .panel-body {
- border-top-color: #9F86FF;
-}
-.panel-info > .panel-heading .badge {
- color: #9F86FF;
- background-color: #fff;
-}
-.panel-info > .panel-footer + .panel-collapse > .panel-body {
- border-bottom-color: #9F86FF;
-}
-.panel-warning {
- border-color: #E4D836;
-}
-.panel-warning > .panel-heading {
- color: #fff;
- background-color: #E4D836;
- border-color: #E4D836;
-}
-.panel-warning > .panel-heading + .panel-collapse > .panel-body {
- border-top-color: #E4D836;
-}
-.panel-warning > .panel-heading .badge {
- color: #E4D836;
- background-color: #fff;
-}
-.panel-warning > .panel-footer + .panel-collapse > .panel-body {
- border-bottom-color: #E4D836;
-}
-.panel-danger {
- border-color: #E64759;
-}
-.panel-danger > .panel-heading {
- color: #fff;
- background-color: #E64759;
- border-color: #E64759;
-}
-.panel-danger > .panel-heading + .panel-collapse > .panel-body {
- border-top-color: #E64759;
-}
-.panel-danger > .panel-heading .badge {
- color: #E64759;
- background-color: #fff;
-}
-.panel-danger > .panel-footer + .panel-collapse > .panel-body {
- border-bottom-color: #E64759;
-}
-.embed-responsive {
- position: relative;
- display: block;
- height: 0;
- padding: 0;
- overflow: hidden;
-}
-.embed-responsive .embed-responsive-item,
-.embed-responsive iframe,
-.embed-responsive embed,
-.embed-responsive object,
-.embed-responsive video {
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- height: 100%;
- width: 100%;
- border: 0;
-}
-.embed-responsive-16by9 {
- padding-bottom: 56.25%;
-}
-.embed-responsive-4by3 {
- padding-bottom: 75%;
-}
-.well {
- min-height: 20px;
- padding: 19px;
- margin-bottom: 20px;
- background-color: #30343e;
- border: 1px solid #434857;
- border-radius: 4px;
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
-}
-.well blockquote {
- border-color: #ddd;
- border-color: rgba(0, 0, 0, 0.15);
-}
-.well-lg {
- padding: 24px;
- border-radius: 6px;
-}
-.well-sm {
- padding: 9px;
- border-radius: 3px;
-}
-.close {
- float: right;
- font-size: 21px;
- font-weight: bold;
- line-height: 1;
- color: #000;
- text-shadow: 0 1px 0 #fff;
- opacity: 0.2;
- filter: alpha(opacity=20);
-}
-.close:hover,
-.close:focus {
- color: #000;
- text-decoration: none;
- cursor: pointer;
- opacity: 0.5;
- filter: alpha(opacity=50);
-}
-button.close {
- padding: 0;
- cursor: pointer;
- background: transparent;
- border: 0;
- -webkit-appearance: none;
-}
-.modal-open {
- overflow: hidden;
-}
-.modal {
- display: none;
- overflow: hidden;
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1050;
- -webkit-overflow-scrolling: touch;
- outline: 0;
-}
-.modal.fade .modal-dialog {
- -webkit-transform: translate(0, -25%);
- transform: translate(0, -25%);
- -webkit-transition: -webkit-transform 0.3s ease-out;
- transition: transform 0.3s ease-out;
-}
-.modal.in .modal-dialog {
- -webkit-transform: translate(0, 0);
- transform: translate(0, 0);
-}
-.modal-open .modal {
- overflow-x: hidden;
- overflow-y: auto;
-}
-.modal-dialog {
- position: relative;
- width: auto;
- margin: 10px;
-}
-.modal-content {
- position: relative;
- background-color: #fff;
- border: 1px solid #999;
- border: 1px solid rgba(0, 0, 0, 0.2);
- border-radius: 6px;
- box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
- background-clip: padding-box;
- outline: 0;
-}
-.modal-backdrop {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1040;
- background-color: #000;
-}
-.modal-backdrop.fade {
- opacity: 0;
- filter: alpha(opacity=0);
-}
-.modal-backdrop.in {
- opacity: 0.5;
- filter: alpha(opacity=50);
-}
-.modal-header {
- padding: 15px;
- border-bottom: 1px solid #e5e5e5;
-}
-.modal-header .close {
- margin-top: -2px;
-}
-.modal-title {
- margin: 0;
- line-height: 1.5;
-}
-.modal-body {
- position: relative;
- padding: 15px;
-}
-.modal-footer {
- padding: 15px;
- text-align: right;
- border-top: 1px solid #e5e5e5;
-}
-.modal-footer .btn + .btn {
- margin-left: 5px;
- margin-bottom: 0;
-}
-.modal-footer .btn-group .btn + .btn {
- margin-left: -1px;
-}
-.modal-footer .btn-block + .btn-block {
- margin-left: 0;
-}
-.modal-scrollbar-measure {
- position: absolute;
- top: -9999px;
- width: 50px;
- height: 50px;
- overflow: scroll;
-}
-@media (min-width: 768px) {
- .modal-dialog {
- width: 600px;
- margin: 30px auto;
- }
- .modal-content {
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
- }
- .modal-sm {
- width: 300px;
- }
-}
-@media (min-width: 992px) {
- .modal-lg {
- width: 900px;
- }
-}
-.tooltip {
- position: absolute;
- z-index: 1070;
- display: block;
- font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-style: normal;
- font-weight: normal;
- letter-spacing: normal;
- line-break: auto;
- line-height: 1.5;
- text-align: left;
- text-align: start;
- text-decoration: none;
- text-shadow: none;
- text-transform: none;
- white-space: normal;
- word-break: normal;
- word-spacing: normal;
- word-wrap: normal;
- font-size: 12px;
- opacity: 0;
- filter: alpha(opacity=0);
-}
-.tooltip.in {
- opacity: 0.9;
- filter: alpha(opacity=90);
-}
-.tooltip.top {
- margin-top: -3px;
- padding: 5px 0;
-}
-.tooltip.right {
- margin-left: 3px;
- padding: 0 5px;
-}
-.tooltip.bottom {
- margin-top: 3px;
- padding: 5px 0;
-}
-.tooltip.left {
- margin-left: -3px;
- padding: 0 5px;
-}
-.tooltip-inner {
- max-width: 200px;
- padding: 3px 8px;
- color: #252830;
- text-align: center;
- background-color: #fff;
- border-radius: 4px;
-}
-.tooltip-arrow {
- position: absolute;
- width: 0;
- height: 0;
- border-color: transparent;
- border-style: solid;
-}
-.tooltip.top .tooltip-arrow {
- bottom: 0;
- left: 50%;
- margin-left: -5px;
- border-width: 5px 5px 0;
- border-top-color: #fff;
-}
-.tooltip.top-left .tooltip-arrow {
- bottom: 0;
- right: 5px;
- margin-bottom: -5px;
- border-width: 5px 5px 0;
- border-top-color: #fff;
-}
-.tooltip.top-right .tooltip-arrow {
- bottom: 0;
- left: 5px;
- margin-bottom: -5px;
- border-width: 5px 5px 0;
- border-top-color: #fff;
-}
-.tooltip.right .tooltip-arrow {
- top: 50%;
- left: 0;
- margin-top: -5px;
- border-width: 5px 5px 5px 0;
- border-right-color: #fff;
-}
-.tooltip.left .tooltip-arrow {
- top: 50%;
- right: 0;
- margin-top: -5px;
- border-width: 5px 0 5px 5px;
- border-left-color: #fff;
-}
-.tooltip.bottom .tooltip-arrow {
- top: 0;
- left: 50%;
- margin-left: -5px;
- border-width: 0 5px 5px;
- border-bottom-color: #fff;
-}
-.tooltip.bottom-left .tooltip-arrow {
- top: 0;
- right: 5px;
- margin-top: -5px;
- border-width: 0 5px 5px;
- border-bottom-color: #fff;
-}
-.tooltip.bottom-right .tooltip-arrow {
- top: 0;
- left: 5px;
- margin-top: -5px;
- border-width: 0 5px 5px;
- border-bottom-color: #fff;
-}
-.popover {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1060;
- display: none;
- max-width: 276px;
- padding: 1px;
- font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-style: normal;
- font-weight: normal;
- letter-spacing: normal;
- line-break: auto;
- line-height: 1.5;
- text-align: left;
- text-align: start;
- text-decoration: none;
- text-shadow: none;
- text-transform: none;
- white-space: normal;
- word-break: normal;
- word-spacing: normal;
- word-wrap: normal;
- font-size: 14px;
- background-color: #fff;
- background-clip: padding-box;
- border: 1px solid #ccc;
- border: 1px solid rgba(0, 0, 0, 0.2);
- border-radius: 6px;
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-}
-.popover.top {
- margin-top: -10px;
-}
-.popover.right {
- margin-left: 10px;
-}
-.popover.bottom {
- margin-top: 10px;
-}
-.popover.left {
- margin-left: -10px;
-}
-.popover-title {
- margin: 0;
- padding: 8px 14px;
- font-size: 14px;
- background-color: #f7f7f7;
- border-bottom: 1px solid #ebebeb;
- border-radius: 5px 5px 0 0;
-}
-.popover-content {
- padding: 9px 14px;
-}
-.popover > .arrow,
-.popover > .arrow:after {
- position: absolute;
- display: block;
- width: 0;
- height: 0;
- border-color: transparent;
- border-style: solid;
-}
-.popover > .arrow {
- border-width: 11px;
-}
-.popover > .arrow:after {
- border-width: 10px;
- content: "";
-}
-.popover.top > .arrow {
- left: 50%;
- margin-left: -11px;
- border-bottom-width: 0;
- border-top-color: #999999;
- border-top-color: rgba(0, 0, 0, 0.25);
- bottom: -11px;
-}
-.popover.top > .arrow:after {
- content: " ";
- bottom: 1px;
- margin-left: -10px;
- border-bottom-width: 0;
- border-top-color: #fff;
-}
-.popover.right > .arrow {
- top: 50%;
- left: -11px;
- margin-top: -11px;
- border-left-width: 0;
- border-right-color: #999999;
- border-right-color: rgba(0, 0, 0, 0.25);
-}
-.popover.right > .arrow:after {
- content: " ";
- left: 1px;
- bottom: -10px;
- border-left-width: 0;
- border-right-color: #fff;
-}
-.popover.bottom > .arrow {
- left: 50%;
- margin-left: -11px;
- border-top-width: 0;
- border-bottom-color: #999999;
- border-bottom-color: rgba(0, 0, 0, 0.25);
- top: -11px;
-}
-.popover.bottom > .arrow:after {
- content: " ";
- top: 1px;
- margin-left: -10px;
- border-top-width: 0;
- border-bottom-color: #fff;
-}
-.popover.left > .arrow {
- top: 50%;
- right: -11px;
- margin-top: -11px;
- border-right-width: 0;
- border-left-color: #999999;
- border-left-color: rgba(0, 0, 0, 0.25);
-}
-.popover.left > .arrow:after {
- content: " ";
- right: 1px;
- border-right-width: 0;
- border-left-color: #fff;
- bottom: -10px;
-}
-.carousel {
- position: relative;
-}
-.carousel-inner {
- position: relative;
- overflow: hidden;
- width: 100%;
-}
-.carousel-inner > .item {
- display: none;
- position: relative;
- -webkit-transition: 0.6s ease-in-out left;
- transition: 0.6s ease-in-out left;
-}
-.carousel-inner > .item > img,
-.carousel-inner > .item > a > img {
- line-height: 1;
-}
-@media all and (transform-3d), (-webkit-transform-3d) {
- .carousel-inner > .item {
- -webkit-transition: -webkit-transform 0.6s ease-in-out;
- transition: transform 0.6s ease-in-out;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- -webkit-perspective: 1000px;
- perspective: 1000px;
- }
- .carousel-inner > .item.next,
- .carousel-inner > .item.active.right {
- -webkit-transform: translate3d(100%, 0, 0);
- transform: translate3d(100%, 0, 0);
- left: 0;
- }
- .carousel-inner > .item.prev,
- .carousel-inner > .item.active.left {
- -webkit-transform: translate3d(-100%, 0, 0);
- transform: translate3d(-100%, 0, 0);
- left: 0;
- }
- .carousel-inner > .item.next.left,
- .carousel-inner > .item.prev.right,
- .carousel-inner > .item.active {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- left: 0;
- }
-}
-.carousel-inner > .active,
-.carousel-inner > .next,
-.carousel-inner > .prev {
- display: block;
-}
-.carousel-inner > .active {
- left: 0;
-}
-.carousel-inner > .next,
-.carousel-inner > .prev {
- position: absolute;
- top: 0;
- width: 100%;
-}
-.carousel-inner > .next {
- left: 100%;
-}
-.carousel-inner > .prev {
- left: -100%;
-}
-.carousel-inner > .next.left,
-.carousel-inner > .prev.right {
- left: 0;
-}
-.carousel-inner > .active.left {
- left: -100%;
-}
-.carousel-inner > .active.right {
- left: 100%;
-}
-.carousel-control {
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- width: 15%;
- opacity: 0.5;
- filter: alpha(opacity=50);
- font-size: 20px;
- color: #fff;
- text-align: center;
- text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
- background-color: rgba(0, 0, 0, 0);
-}
-.carousel-control.left {
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
- background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
-}
-.carousel-control.right {
- left: auto;
- right: 0;
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
- background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
- background-repeat: repeat-x;
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
-}
-.carousel-control:hover,
-.carousel-control:focus {
- outline: 0;
- color: #fff;
- text-decoration: none;
- opacity: 0.9;
- filter: alpha(opacity=90);
-}
-.carousel-control .icon-prev,
-.carousel-control .icon-next,
-.carousel-control .glyphicon-chevron-left,
-.carousel-control .glyphicon-chevron-right {
- position: absolute;
- top: 50%;
- margin-top: -10px;
- z-index: 5;
- display: inline-block;
-}
-.carousel-control .icon-prev,
-.carousel-control .glyphicon-chevron-left {
- left: 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;
- height: 20px;
- line-height: 1;
- font-family: serif;
-}
-.carousel-control .icon-prev:before {
- content: '\2039';
-}
-.carousel-control .icon-next:before {
- content: '\203a';
-}
-.carousel-indicators {
- position: absolute;
- bottom: 10px;
- left: 50%;
- z-index: 15;
- width: 60%;
- margin-left: -30%;
- padding-left: 0;
- list-style: none;
- text-align: center;
-}
-.carousel-indicators li {
- display: inline-block;
- width: 10px;
- height: 10px;
- margin: 1px;
- text-indent: -999px;
- border: 1px solid #fff;
- border-radius: 10px;
- cursor: pointer;
- background-color: #000 \9;
- background-color: rgba(0, 0, 0, 0);
-}
-.carousel-indicators .active {
- margin: 0;
- width: 12px;
- height: 12px;
- background-color: #fff;
-}
-.carousel-caption {
- position: absolute;
- left: 15%;
- right: 15%;
- bottom: 20px;
- z-index: 10;
- padding-top: 20px;
- padding-bottom: 20px;
- color: #fff;
- text-align: center;
- text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
-}
-.carousel-caption .btn {
- text-shadow: none;
-}
-@media screen and (min-width: 768px) {
- .carousel-control .glyphicon-chevron-left,
- .carousel-control .glyphicon-chevron-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 {
- left: 20%;
- right: 20%;
- padding-bottom: 30px;
- }
- .carousel-indicators {
- bottom: 20px;
- }
-}
-.clearfix:before,
-.clearfix:after,
-.dl-horizontal dd:before,
-.dl-horizontal dd:after,
-.form-horizontal .form-group:before,
-.form-horizontal .form-group:after,
-.container:before,
-.container:after,
-.container-fluid:before,
-.container-fluid:after,
-.row:before,
-.row:after,
-.btn-toolbar:before,
-.btn-toolbar:after,
-.btn-group-vertical > .btn-group:before,
-.btn-group-vertical > .btn-group:after,
-.nav:before,
-.nav:after,
-.navbar:before,
-.navbar:after,
-.navbar-header:before,
-.navbar-header:after,
-.navbar-collapse:before,
-.navbar-collapse:after,
-.pager:before,
-.pager:after,
-.panel-body:before,
-.panel-body:after,
-.modal-header:before,
-.modal-header:after,
-.modal-footer:before,
-.modal-footer:after {
- content: " ";
- display: table;
-}
-.clearfix:after,
-.dl-horizontal dd:after,
-.form-horizontal .form-group:after,
-.container:after,
-.container-fluid:after,
-.row:after,
-.btn-toolbar:after,
-.btn-group-vertical > .btn-group:after,
-.nav:after,
-.navbar:after,
-.navbar-header:after,
-.navbar-collapse:after,
-.pager:after,
-.panel-body:after,
-.modal-header:after,
-.modal-footer:after {
- clear: both;
-}
-.center-block {
- display: block;
- margin-left: auto;
- margin-right: 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: 0/0 a;
- color: transparent;
- text-shadow: none;
- background-color: transparent;
- border: 0;
-}
-.hidden {
- display: none !important;
-}
-.affix {
- position: fixed;
-}
-@-ms-viewport {
- width: device-width;
-}
-.visible-xs,
-.visible-sm,
-.visible-md,
-.visible-lg {
- display: none !important;
-}
-.visible-xs-block,
-.visible-xs-inline,
-.visible-xs-inline-block,
-.visible-sm-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 (min-width: 768px) and (max-width: 991px) {
- .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 (min-width: 768px) and (max-width: 991px) {
- .visible-sm-block {
- display: block !important;
- }
-}
-@media (min-width: 768px) and (max-width: 991px) {
- .visible-sm-inline {
- display: inline !important;
- }
-}
-@media (min-width: 768px) and (max-width: 991px) {
- .visible-sm-inline-block {
- display: inline-block !important;
- }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
- .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 (min-width: 992px) and (max-width: 1199px) {
- .visible-md-block {
- display: block !important;
- }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
- .visible-md-inline {
- display: inline !important;
- }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
- .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 (min-width: 768px) and (max-width: 991px) {
- .hidden-sm {
- display: none !important;
- }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
- .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;
- }
-}
-body {
- font-weight: 300;
- letter-spacing: 0;
-}
-.lead {
- font-size: 16px;
- font-weight: inherit;
- line-height: 1.4;
- letter-spacing: 0;
-}
-@media (min-width: 768px) {
- .lead {
- font-size: 21px;
- }
-}
-.list-spaced li {
- margin-bottom: 3px;
-}
-.list-bordered li {
- border-top: 1px solid #cfd2da;
-}
-.list-bordered li:last-child {
- border-bottom: 1px solid #cfd2da;
-}
-.text-serif {
- font-family: Georgia, "Times New Roman", Times, serif;
-}
-.text-xs-left {
- text-align: left;
-}
-.text-xs-right {
- text-align: right;
-}
-.text-xs-center {
- text-align: center;
-}
-@media (min-width: 768px) {
- .text-sm-left {
- text-align: left;
- }
- .text-sm-right {
- text-align: right;
- }
- .text-sm-center {
- text-align: center;
- }
-}
-@media (min-width: 992px) {
- .text-md-left {
- text-align: left;
- }
- .text-md-right {
- text-align: right;
- }
- .text-md-center {
- text-align: center;
- }
-}
-@media (min-width: 1200px) {
- .text-lg-left {
- text-align: left;
- }
- .text-lg-right {
- text-align: right;
- }
- .text-lg-center {
- text-align: center;
- }
-}
-.alert-dark {
- background-color: rgba(0, 0, 0, 0.9);
- border-color: rgba(0, 0, 0, 0.8);
- color: #fff;
-}
-.alert-dark hr {
- border-top-color: rgba(0, 0, 0, 0.8);
-}
-.alert-dark .alert-link {
- color: #e6e6e6;
-}
-.alert-dark .close {
- text-shadow: 0 1px 0 #000;
-}
-.alert-dark .close:hover,
-.alert-dark .close:focus {
- color: #fff;
-}
-.alert-full {
- border-radius: 0;
-}
-.btn {
- font-size: 14px;
- text-transform: none;
- letter-spacing: normal;
-}
-.btn-borderless {
- border: 0;
-}
-.btn-lg,
-.btn-group-lg > .btn {
- padding: 10px 16px;
- font-size: 18px;
- line-height: 1.3333333;
- border-radius: 6px;
-}
-.btn-sm,
-.btn-group-sm > .btn {
- padding: 5px 10px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
-}
-.btn-xs,
-.btn-group-xs > .btn {
- padding: 1px 5px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
-}
-.btn-more:after {
- position: relative;
- top: 1px;
- content: '〉';
- display: inline-block;
- padding-left: .3em;
- color: inherit;
-}
-.btn-toolbar .btn-toolbar-item {
- float: left;
-}
-.btn-toolbar > .btn-toolbar-item {
- margin-left: 5px;
-}
-.btn-toolbar-divider {
- float: left;
- width: 1px;
- height: 34px;
- margin-left: 10px;
- margin-right: 5px;
- background-color: #434857;
-}
-.btn-group-justified.btn-group-justified-spaced {
- width: calc(110%);
- margin-left: -5px;
- border-spacing: 5px;
-}
-.nav > .nav-header {
- padding-left: 0px;
- padding-right: 15px;
- margin-bottom: 5px;
- font-size: 85%;
- font-weight: normal;
- letter-spacing: 1px;
- color: #51586a;
- text-transform: uppercase;
-}
-.nav > li + .nav-header {
- margin-top: 20px;
-}
-.nav-bordered > li {
- float: left;
-}
-.nav-bordered > li > a {
- display: inline-block;
- padding: 10px 0;
- font-weight: 300;
- color: #777;
- border-bottom: 4px solid transparent;
-}
-.nav-bordered > li > a:hover,
-.nav-bordered > li > a:focus {
- color: #1CA8DD;
- background-color: transparent;
-}
-.nav-bordered > li + li {
- margin-left: 30px;
-}
-.nav-bordered > li.active > a,
-.nav-bordered > li.active > a:hover,
-.nav-bordered > li.active > a:focus {
- font-weight: 500;
- color: #1CA8DD;
- border-bottom-color: #1CA8DD;
-}
-.nav-bordered.nav-justified > li + li {
- margin-left: 0;
-}
-.nav-bordered.nav-justified > li > a {
- margin-bottom: 0;
-}
-.nav-bordered.nav-stacked > li {
- float: none;
- margin-left: 0;
-}
-.nav-bordered.nav-stacked > li + li {
- margin-top: 0;
-}
-.nav-bordered.nav-stacked > li.active > a,
-.nav-bordered.nav-stacked > li.active > a:hover,
-.nav-bordered.nav-stacked > li.active > a:focus {
- border-left-color: #1CA8DD;
-}
-.nav-bordered.nav-stacked > li > a {
- display: block;
- padding: 5px 10px 5px 30px;
- border-bottom: 0;
- border-left: 4px solid transparent;
-}
-.nav-bordered.nav-stacked > li > a:hover,
-.nav-bordered.nav-stacked > li > a:focus {
- border-left: 4px solid;
-}
-.nav-bordered.nav-stacked .nav-header {
- padding-left: 34px;
-}
-.nav-bordered.nav-stacked .nav-divider {
- height: 1px;
- margin: 9.5px 0;
- overflow: hidden;
- background-color: rgba(255, 255, 255, 0.2);
- margin-left: 34px;
- margin-top: 20px;
- margin-bottom: 25px;
-}
-.with-top-navbar {
- padding-top: 50px;
-}
-.navbar-nav > li > a > .badge {
- margin-left: 5px;
-}
-.navbar-brand-icon {
- float: left;
- margin-right: 5px;
-}
-.navbar-default .navbar-brand-emphasized,
-.navbar-default .navbar-brand-emphasized:hover,
-.navbar-default .navbar-brand-emphasized:focus {
- background-color: #e7e7e7;
-}
-.navbar-inverse .navbar-brand-emphasized,
-.navbar-inverse .navbar-brand-emphasized:hover,
-.navbar-inverse .navbar-brand-emphasized:focus {
- color: #fff;
- background-color: #1a1c22;
-}
-.navbar-padded .navbar-header {
- padding-left: 5px;
- padding-right: 5px;
-}
-@media (min-width: 768px) {
- .navbar-padded {
- padding-top: 20px;
- padding-bottom: 20px;
- }
-}
-.navbar-form-control {
- border: 0;
- box-shadow: none;
-}
-.navbar-inverse .navbar-form-control {
- background-color: #292d36;
-}
-.navbar-inverse .navbar-form-control:focus {
- color: #1a1c22;
- background-color: #fff;
- box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
-}
-.navbar-nav > .active > a,
-.navbar-nav > .active > a:hover,
-.navbar-nav > .active > a:focus {
- font-weight: 500;
-}
-.navbar-btn-avitar,
-.navbar-btn-avitar:active,
-.navbar-btn-avitar:hover,
-.navbar-btn-avitar:focus,
-.navbar-btn-avitar:hover:active,
-.navbar-btn-avitar:active:focus {
- padding: 0;
- border: 0;
- background: transparent;
- outline: none !important;
- box-shadow: none !important;
-}
-.navbar-btn-avitar img {
- height: 35px;
- width: 35px;
-}
-.nav-pills > li.active > a,
-.nav-pills > li.active > a:hover,
-.nav-pills > li.active > a:focus {
- font-weight: 500;
-}
-.list-group-header {
- display: block;
- padding: 10px 15px;
- margin-bottom: -1px;
- font-weight: 400;
- color: #fff;
- background-color: transparent;
- border: 1px solid #434857;
-}
-.list-group-header:first-child {
- border-top-right-radius: 4px;
- border-top-left-radius: 4px;
-}
-.list-group-header:last-child {
- margin-bottom: 0;
- border-bottom-right-radius: 4px;
- border-bottom-left-radius: 4px;
-}
-.list-group-progress {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- z-index: -1;
- display: block;
- background-color: #1e2127;
-}
-.modal-body-scroller {
- max-height: 500px;
- overflow: auto;
- border-radius: 6px;
-}
-.modal-body + .modal-body {
- border-top: 1px solid #e5e5e5;
-}
-.modal-actions:before,
-.modal-actions:after {
- content: " ";
- display: table;
-}
-.modal-actions:after {
- clear: both;
-}
-.modal-actions:before,
-.modal-actions:after {
- content: " ";
- display: table;
-}
-.modal-actions:after {
- clear: both;
-}
-.modal-action {
- float: left;
- width: 50%;
- padding: 15px;
- border: solid #e5e5e5;
- border-width: 1px 0 0;
-}
-.modal-action + .modal-action {
- border-left-width: 1px;
-}
-.modal-action:first-child {
- border-bottom-left-radius: 5px;
-}
-.modal-action:last-child {
- border-bottom-right-radius: 5px;
-}
-.modal-action:hover,
-.modal-action:focus,
-.modal-action:active {
- text-decoration: none;
- background-color: #f5f5f5;
- border-color: #e5e5e5;
-}
-@media (max-width: 768px) {
- .table-full {
- margin-right: -16px;
- margin-left: -16px;
- }
-}
-.table-actions {
- padding-bottom: 15px;
-}
-.container-fill-height {
- display: table;
- width: 100%;
- height: 100vh;
-}
-.container-fill-height .container-content-bottom,
-.container-fill-height .container-content-middle {
- display: table-cell;
- vertical-align: middle;
-}
-.container-fill-height .container-content-bottom {
- vertical-align: bottom;
-}
-@media (min-width: 768px) {
- .container-fluid-spacious {
- padding-right: 40px;
- padding-left: 40px;
- }
-}
-@font-face {
- font-family: "toolkit-entypo";
- src: url('../fonts/toolkit-entypo.eot');
- src: url('../fonts/toolkit-entypo.eot?#iefix') format('eot'), url('../fonts/toolkit-entypo.woff2') format('woff2'), url('../fonts/toolkit-entypo.woff') format('woff'), url('../fonts/toolkit-entypo.ttf') format('truetype');
- font-weight: normal;
- font-style: normal;
-}
-.icon:before {
- position: relative;
- top: 2px;
- display: inline-block;
- font-family: "toolkit-entypo";
- speak: none;
- font-size: 100%;
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- text-transform: none;
- line-height: 1;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
-}
-.carousel .icon-chevron-thin-left,
-.carousel .icon-chevron-thin-right {
- position: absolute;
- top: 50%;
- margin-top: -10px;
- z-index: 5;
- display: inline-block;
-}
-.carousel .icon-chevron-thin-left {
- left: 50%;
- margin-left: -10px;
-}
-.carousel .icon-chevron-thin-right {
- right: 50%;
- margin-right: -10px;
-}
-.icon-500px-with-circle:before {
- content: "\EA01";
-}
-.icon-500px:before {
- content: "\EA02";
-}
-.icon-add-to-list:before {
- content: "\EA03";
-}
-.icon-add-user:before {
- content: "\EA04";
-}
-.icon-address:before {
- content: "\EA05";
-}
-.icon-adjust:before {
- content: "\EA06";
-}
-.icon-air:before {
- content: "\EA07";
-}
-.icon-aircraft-landing:before {
- content: "\EA08";
-}
-.icon-aircraft-take-off:before {
- content: "\EA09";
-}
-.icon-aircraft:before {
- content: "\EA0A";
-}
-.icon-align-bottom:before {
- content: "\EA0B";
-}
-.icon-align-horizontal-middle:before {
- content: "\EA0C";
-}
-.icon-align-left:before {
- content: "\EA0D";
-}
-.icon-align-right:before {
- content: "\EA0E";
-}
-.icon-align-top:before {
- content: "\EA0F";
-}
-.icon-align-vertical-middle:before {
- content: "\EA10";
-}
-.icon-app-store:before {
- content: "\EA11";
-}
-.icon-archive:before {
- content: "\EA12";
-}
-.icon-area-graph:before {
- content: "\EA13";
-}
-.icon-arrow-bold-down:before {
- content: "\EA14";
-}
-.icon-arrow-bold-left:before {
- content: "\EA15";
-}
-.icon-arrow-bold-right:before {
- content: "\EA16";
-}
-.icon-arrow-bold-up:before {
- content: "\EA17";
-}
-.icon-arrow-down:before {
- content: "\EA18";
-}
-.icon-arrow-left:before {
- content: "\EA19";
-}
-.icon-arrow-long-down:before {
- content: "\EA1A";
-}
-.icon-arrow-long-left:before {
- content: "\EA1B";
-}
-.icon-arrow-long-right:before {
- content: "\EA1C";
-}
-.icon-arrow-long-up:before {
- content: "\EA1D";
-}
-.icon-arrow-right:before {
- content: "\EA1E";
-}
-.icon-arrow-up:before {
- content: "\EA1F";
-}
-.icon-arrow-with-circle-down:before {
- content: "\EA20";
-}
-.icon-arrow-with-circle-left:before {
- content: "\EA21";
-}
-.icon-arrow-with-circle-right:before {
- content: "\EA22";
-}
-.icon-arrow-with-circle-up:before {
- content: "\EA23";
-}
-.icon-attachment:before {
- content: "\EA24";
-}
-.icon-awareness-ribbon:before {
- content: "\EA25";
-}
-.icon-back-in-time:before {
- content: "\EA26";
-}
-.icon-back:before {
- content: "\EA27";
-}
-.icon-baidu:before {
- content: "\EA28";
-}
-.icon-bar-graph:before {
- content: "\EA29";
-}
-.icon-basecamp:before {
- content: "\EA2A";
-}
-.icon-battery:before {
- content: "\EA2B";
-}
-.icon-beamed-note:before {
- content: "\EA2C";
-}
-.icon-behance:before {
- content: "\EA2D";
-}
-.icon-bell:before {
- content: "\EA2E";
-}
-.icon-blackboard:before {
- content: "\EA2F";
-}
-.icon-block:before {
- content: "\EA30";
-}
-.icon-book:before {
- content: "\EA31";
-}
-.icon-bookmark:before {
- content: "\EA32";
-}
-.icon-bookmarks:before {
- content: "\EA33";
-}
-.icon-bowl:before {
- content: "\EA34";
-}
-.icon-box:before {
- content: "\EA35";
-}
-.icon-briefcase:before {
- content: "\EA36";
-}
-.icon-browser:before {
- content: "\EA37";
-}
-.icon-brush:before {
- content: "\EA38";
-}
-.icon-bucket:before {
- content: "\EA39";
-}
-.icon-bug:before {
- content: "\EA3A";
-}
-.icon-cake:before {
- content: "\EA3B";
-}
-.icon-calculator:before {
- content: "\EA3C";
-}
-.icon-calendar:before {
- content: "\EA3D";
-}
-.icon-camera:before {
- content: "\EA3E";
-}
-.icon-ccw:before {
- content: "\EA3F";
-}
-.icon-chat:before {
- content: "\EA40";
-}
-.icon-check:before {
- content: "\EA41";
-}
-.icon-chevron-down:before {
- content: "\EA42";
-}
-.icon-chevron-left:before {
- content: "\EA43";
-}
-.icon-chevron-right:before {
- content: "\EA44";
-}
-.icon-chevron-small-down:before {
- content: "\EA45";
-}
-.icon-chevron-small-left:before {
- content: "\EA46";
-}
-.icon-chevron-small-right:before {
- content: "\EA47";
-}
-.icon-chevron-small-up:before {
- content: "\EA48";
-}
-.icon-chevron-thin-down:before {
- content: "\EA49";
-}
-.icon-chevron-thin-left:before {
- content: "\EA4A";
-}
-.icon-chevron-thin-right:before {
- content: "\EA4B";
-}
-.icon-chevron-thin-up:before {
- content: "\EA4C";
-}
-.icon-chevron-up:before {
- content: "\EA4D";
-}
-.icon-chevron-with-circle-down:before {
- content: "\EA4E";
-}
-.icon-chevron-with-circle-left:before {
- content: "\EA4F";
-}
-.icon-chevron-with-circle-right:before {
- content: "\EA50";
-}
-.icon-chevron-with-circle-up:before {
- content: "\EA51";
-}
-.icon-circle-with-cross:before {
- content: "\EA52";
-}
-.icon-circle-with-minus:before {
- content: "\EA53";
-}
-.icon-circle-with-plus:before {
- content: "\EA54";
-}
-.icon-circle:before {
- content: "\EA55";
-}
-.icon-circular-graph:before {
- content: "\EA56";
-}
-.icon-clapperboard:before {
- content: "\EA57";
-}
-.icon-classic-computer:before {
- content: "\EA58";
-}
-.icon-clipboard:before {
- content: "\EA59";
-}
-.icon-clock:before {
- content: "\EA5A";
-}
-.icon-cloud:before {
- content: "\EA5B";
-}
-.icon-code:before {
- content: "\EA5C";
-}
-.icon-cog:before {
- content: "\EA5D";
-}
-.icon-colours:before {
- content: "\EA5E";
-}
-.icon-compass:before {
- content: "\EA5F";
-}
-.icon-controller-fast-backward:before {
- content: "\EA60";
-}
-.icon-controller-fast-forward:before {
- content: "\EA61";
-}
-.icon-controller-jump-to-start:before {
- content: "\EA62";
-}
-.icon-controller-next:before {
- content: "\EA63";
-}
-.icon-controller-paus:before {
- content: "\EA64";
-}
-.icon-controller-play:before {
- content: "\EA65";
-}
-.icon-controller-record:before {
- content: "\EA66";
-}
-.icon-controller-stop:before {
- content: "\EA67";
-}
-.icon-controller-volume:before {
- content: "\EA68";
-}
-.icon-copy:before {
- content: "\EA69";
-}
-.icon-creative-cloud:before {
- content: "\EA6A";
-}
-.icon-creative-commons-attribution:before {
- content: "\EA6B";
-}
-.icon-creative-commons-noderivs:before {
- content: "\EA6C";
-}
-.icon-creative-commons-noncommercial-eu:before {
- content: "\EA6D";
-}
-.icon-creative-commons-noncommercial-us:before {
- content: "\EA6E";
-}
-.icon-creative-commons-public-domain:before {
- content: "\EA6F";
-}
-.icon-creative-commons-remix:before {
- content: "\EA70";
-}
-.icon-creative-commons-share:before {
- content: "\EA71";
-}
-.icon-creative-commons-sharealike:before {
- content: "\EA72";
-}
-.icon-creative-commons:before {
- content: "\EA73";
-}
-.icon-credit-card:before {
- content: "\EA74";
-}
-.icon-credit:before {
- content: "\EA75";
-}
-.icon-crop:before {
- content: "\EA76";
-}
-.icon-cross:before {
- content: "\EA77";
-}
-.icon-cup:before {
- content: "\EA78";
-}
-.icon-cw:before {
- content: "\EA79";
-}
-.icon-cycle:before {
- content: "\EA7A";
-}
-.icon-database:before {
- content: "\EA7B";
-}
-.icon-dial-pad:before {
- content: "\EA7C";
-}
-.icon-direction:before {
- content: "\EA7D";
-}
-.icon-document-landscape:before {
- content: "\EA7E";
-}
-.icon-document:before {
- content: "\EA7F";
-}
-.icon-documents:before {
- content: "\EA80";
-}
-.icon-dot-single:before {
- content: "\EA81";
-}
-.icon-dots-three-horizontal:before {
- content: "\EA82";
-}
-.icon-dots-three-vertical:before {
- content: "\EA83";
-}
-.icon-dots-two-horizontal:before {
- content: "\EA84";
-}
-.icon-dots-two-vertical:before {
- content: "\EA85";
-}
-.icon-download:before {
- content: "\EA86";
-}
-.icon-dribbble-with-circle:before {
- content: "\EA87";
-}
-.icon-dribbble:before {
- content: "\EA88";
-}
-.icon-drink:before {
- content: "\EA89";
-}
-.icon-drive:before {
- content: "\EA8A";
-}
-.icon-drop:before {
- content: "\EA8B";
-}
-.icon-dropbox:before {
- content: "\EA8C";
-}
-.icon-edit:before {
- content: "\EA8D";
-}
-.icon-email:before {
- content: "\EA8E";
-}
-.icon-emoji-flirt:before {
- content: "\EA8F";
-}
-.icon-emoji-happy:before {
- content: "\EA90";
-}
-.icon-emoji-neutral:before {
- content: "\EA91";
-}
-.icon-emoji-sad:before {
- content: "\EA92";
-}
-.icon-erase:before {
- content: "\EA93";
-}
-.icon-eraser:before {
- content: "\EA94";
-}
-.icon-evernote:before {
- content: "\EA95";
-}
-.icon-export:before {
- content: "\EA96";
-}
-.icon-eye-with-line:before {
- content: "\EA97";
-}
-.icon-eye:before {
- content: "\EA98";
-}
-.icon-facebook-with-circle:before {
- content: "\EA99";
-}
-.icon-facebook:before {
- content: "\EA9A";
-}
-.icon-feather:before {
- content: "\EA9B";
-}
-.icon-fingerprint:before {
- content: "\EA9C";
-}
-.icon-flag:before {
- content: "\EA9D";
-}
-.icon-flash:before {
- content: "\EA9E";
-}
-.icon-flashlight:before {
- content: "\EA9F";
-}
-.icon-flat-brush:before {
- content: "\EAA0";
-}
-.icon-flattr:before {
- content: "\EAA1";
-}
-.icon-flickr-with-circle:before {
- content: "\EAA2";
-}
-.icon-flickr:before {
- content: "\EAA3";
-}
-.icon-flow-branch:before {
- content: "\EAA4";
-}
-.icon-flow-cascade:before {
- content: "\EAA5";
-}
-.icon-flow-line:before {
- content: "\EAA6";
-}
-.icon-flow-parallel:before {
- content: "\EAA7";
-}
-.icon-flow-tree:before {
- content: "\EAA8";
-}
-.icon-flower:before {
- content: "\EAA9";
-}
-.icon-folder-images:before {
- content: "\EAAA";
-}
-.icon-folder-music:before {
- content: "\EAAB";
-}
-.icon-folder-video:before {
- content: "\EAAC";
-}
-.icon-folder:before {
- content: "\EAAD";
-}
-.icon-forward:before {
- content: "\EAAE";
-}
-.icon-foursquare:before {
- content: "\EAAF";
-}
-.icon-funnel:before {
- content: "\EAB0";
-}
-.icon-game-controller:before {
- content: "\EAB1";
-}
-.icon-gauge:before {
- content: "\EAB2";
-}
-.icon-github-with-circle:before {
- content: "\EAB3";
-}
-.icon-github:before {
- content: "\EAB4";
-}
-.icon-globe:before {
- content: "\EAB5";
-}
-.icon-google-plus-with-circle:before {
- content: "\EAB6";
-}
-.icon-google-plus:before {
- content: "\EAB7";
-}
-.icon-google-drive:before {
- content: "\EAB8";
-}
-.icon-google-hangouts:before {
- content: "\EAB9";
-}
-.icon-google-play:before {
- content: "\EABA";
-}
-.icon-graduation-cap:before {
- content: "\EABB";
-}
-.icon-grid:before {
- content: "\EABC";
-}
-.icon-grooveshark:before {
- content: "\EABD";
-}
-.icon-hair-cross:before {
- content: "\EABE";
-}
-.icon-hand:before {
- content: "\EABF";
-}
-.icon-heart-outlined:before {
- content: "\EAC0";
-}
-.icon-heart:before {
- content: "\EAC1";
-}
-.icon-help-with-circle:before {
- content: "\EAC2";
-}
-.icon-help:before {
- content: "\EAC3";
-}
-.icon-home:before {
- content: "\EAC4";
-}
-.icon-hour-glass:before {
- content: "\EAC5";
-}
-.icon-houzz:before {
- content: "\EAC6";
-}
-.icon-icloud:before {
- content: "\EAC7";
-}
-.icon-image-inverted:before {
- content: "\EAC8";
-}
-.icon-image:before {
- content: "\EAC9";
-}
-.icon-images:before {
- content: "\EACA";
-}
-.icon-inbox:before {
- content: "\EACB";
-}
-.icon-infinity:before {
- content: "\EACC";
-}
-.icon-info-with-circle:before {
- content: "\EACD";
-}
-.icon-info:before {
- content: "\EACE";
-}
-.icon-instagram-with-circle:before {
- content: "\EACF";
-}
-.icon-instagram:before {
- content: "\EAD0";
-}
-.icon-install:before {
- content: "\EAD1";
-}
-.icon-key:before {
- content: "\EAD2";
-}
-.icon-keyboard:before {
- content: "\EAD3";
-}
-.icon-lab-flask:before {
- content: "\EAD4";
-}
-.icon-landline:before {
- content: "\EAD5";
-}
-.icon-language:before {
- content: "\EAD6";
-}
-.icon-laptop:before {
- content: "\EAD7";
-}
-.icon-lastfm-with-circle:before {
- content: "\EAD8";
-}
-.icon-lastfm:before {
- content: "\EAD9";
-}
-.icon-layers:before {
- content: "\EADA";
-}
-.icon-leaf:before {
- content: "\EADB";
-}
-.icon-level-down:before {
- content: "\EADC";
-}
-.icon-level-up:before {
- content: "\EADD";
-}
-.icon-lifebuoy:before {
- content: "\EADE";
-}
-.icon-light-bulb:before {
- content: "\EADF";
-}
-.icon-light-down:before {
- content: "\EAE0";
-}
-.icon-light-up:before {
- content: "\EAE1";
-}
-.icon-line-graph:before {
- content: "\EAE2";
-}
-.icon-link:before {
- content: "\EAE3";
-}
-.icon-linkedin-with-circle:before {
- content: "\EAE4";
-}
-.icon-linkedin:before {
- content: "\EAE5";
-}
-.icon-list:before {
- content: "\EAE6";
-}
-.icon-location-pin:before {
- content: "\EAE7";
-}
-.icon-location:before {
- content: "\EAE8";
-}
-.icon-lock-open:before {
- content: "\EAE9";
-}
-.icon-lock:before {
- content: "\EAEA";
-}
-.icon-log-out:before {
- content: "\EAEB";
-}
-.icon-login:before {
- content: "\EAEC";
-}
-.icon-loop:before {
- content: "\EAED";
-}
-.icon-magnet:before {
- content: "\EAEE";
-}
-.icon-magnifying-glass:before {
- content: "\EAEF";
-}
-.icon-mail-with-circle:before {
- content: "\EAF0";
-}
-.icon-mail:before {
- content: "\EAF1";
-}
-.icon-man:before {
- content: "\EAF2";
-}
-.icon-map:before {
- content: "\EAF3";
-}
-.icon-mask:before {
- content: "\EAF4";
-}
-.icon-medal:before {
- content: "\EAF5";
-}
-.icon-medium-with-circle:before {
- content: "\EAF6";
-}
-.icon-medium:before {
- content: "\EAF7";
-}
-.icon-megaphone:before {
- content: "\EAF8";
-}
-.icon-menu-white:before {
- content: "\EAF9";
-}
-.icon-menu:before {
- content: "\EAFA";
-}
-.icon-merge:before {
- content: "\EAFB";
-}
-.icon-message:before {
- content: "\EAFC";
-}
-.icon-mic:before {
- content: "\EAFD";
-}
-.icon-minus:before {
- content: "\EAFE";
-}
-.icon-mixi:before {
- content: "\EAFF";
-}
-.icon-mobile:before {
- content: "\EB00";
-}
-.icon-modern-mic:before {
- content: "\EB01";
-}
-.icon-moon:before {
- content: "\EB02";
-}
-.icon-mouse-pointer:before {
- content: "\EB03";
-}
-.icon-mouse:before {
- content: "\EB04";
-}
-.icon-music:before {
- content: "\EB05";
-}
-.icon-network:before {
- content: "\EB06";
-}
-.icon-new-message:before {
- content: "\EB07";
-}
-.icon-new:before {
- content: "\EB08";
-}
-.icon-news:before {
- content: "\EB09";
-}
-.icon-newsletter:before {
- content: "\EB0A";
-}
-.icon-note:before {
- content: "\EB0B";
-}
-.icon-notification:before {
- content: "\EB0C";
-}
-.icon-notifications-off:before {
- content: "\EB0D";
-}
-.icon-old-mobile:before {
- content: "\EB0E";
-}
-.icon-old-phone:before {
- content: "\EB0F";
-}
-.icon-onedrive:before {
- content: "\EB10";
-}
-.icon-open-book:before {
- content: "\EB11";
-}
-.icon-palette:before {
- content: "\EB12";
-}
-.icon-paper-plane:before {
- content: "\EB13";
-}
-.icon-paypal:before {
- content: "\EB14";
-}
-.icon-pencil:before {
- content: "\EB15";
-}
-.icon-phone:before {
- content: "\EB16";
-}
-.icon-picasa:before {
- content: "\EB17";
-}
-.icon-pie-chart:before {
- content: "\EB18";
-}
-.icon-pin:before {
- content: "\EB19";
-}
-.icon-pinterest-with-circle:before {
- content: "\EB1A";
-}
-.icon-pinterest:before {
- content: "\EB1B";
-}
-.icon-plus:before {
- content: "\EB1C";
-}
-.icon-popup:before {
- content: "\EB1D";
-}
-.icon-power-plug:before {
- content: "\EB1E";
-}
-.icon-price-ribbon:before {
- content: "\EB1F";
-}
-.icon-price-tag:before {
- content: "\EB20";
-}
-.icon-print:before {
- content: "\EB21";
-}
-.icon-progress-empty:before {
- content: "\EB22";
-}
-.icon-progress-full:before {
- content: "\EB23";
-}
-.icon-progress-one:before {
- content: "\EB24";
-}
-.icon-progress-two:before {
- content: "\EB25";
-}
-.icon-publish:before {
- content: "\EB26";
-}
-.icon-qq-with-circle:before {
- content: "\EB27";
-}
-.icon-qq:before {
- content: "\EB28";
-}
-.icon-quote:before {
- content: "\EB29";
-}
-.icon-radio:before {
- content: "\EB2A";
-}
-.icon-raft-with-circle:before {
- content: "\EB2B";
-}
-.icon-raft:before {
- content: "\EB2C";
-}
-.icon-rainbow:before {
- content: "\EB2D";
-}
-.icon-rdio-with-circle:before {
- content: "\EB2E";
-}
-.icon-rdio:before {
- content: "\EB2F";
-}
-.icon-remove-user:before {
- content: "\EB30";
-}
-.icon-renren:before {
- content: "\EB31";
-}
-.icon-reply-all:before {
- content: "\EB32";
-}
-.icon-reply:before {
- content: "\EB33";
-}
-.icon-resize-100:before {
- content: "\EB34";
-}
-.icon-resize-full-screen:before {
- content: "\EB35";
-}
-.icon-retweet:before {
- content: "\EB36";
-}
-.icon-rocket:before {
- content: "\EB37";
-}
-.icon-round-brush:before {
- content: "\EB38";
-}
-.icon-rss:before {
- content: "\EB39";
-}
-.icon-ruler:before {
- content: "\EB3A";
-}
-.icon-save:before {
- content: "\EB3B";
-}
-.icon-scissors:before {
- content: "\EB3C";
-}
-.icon-scribd:before {
- content: "\EB3D";
-}
-.icon-select-arrows:before {
- content: "\EB3E";
-}
-.icon-share-alternative:before {
- content: "\EB3F";
-}
-.icon-share-alternitive:before {
- content: "\EB40";
-}
-.icon-share:before {
- content: "\EB41";
-}
-.icon-shareable:before {
- content: "\EB42";
-}
-.icon-shield:before {
- content: "\EB43";
-}
-.icon-shop:before {
- content: "\EB44";
-}
-.icon-shopping-bag:before {
- content: "\EB45";
-}
-.icon-shopping-basket:before {
- content: "\EB46";
-}
-.icon-shopping-cart:before {
- content: "\EB47";
-}
-.icon-shuffle:before {
- content: "\EB48";
-}
-.icon-signal:before {
- content: "\EB49";
-}
-.icon-sina-weibo:before {
- content: "\EB4A";
-}
-.icon-skype-with-circle:before {
- content: "\EB4B";
-}
-.icon-skype:before {
- content: "\EB4C";
-}
-.icon-slideshare:before {
- content: "\EB4D";
-}
-.icon-smashing:before {
- content: "\EB4E";
-}
-.icon-sound-mix:before {
- content: "\EB4F";
-}
-.icon-sound-mute:before {
- content: "\EB50";
-}
-.icon-sound:before {
- content: "\EB51";
-}
-.icon-soundcloud:before {
- content: "\EB52";
-}
-.icon-sports-club:before {
- content: "\EB53";
-}
-.icon-spotify-with-circle:before {
- content: "\EB54";
-}
-.icon-spotify:before {
- content: "\EB55";
-}
-.icon-spreadsheet:before {
- content: "\EB56";
-}
-.icon-squared-cross:before {
- content: "\EB57";
-}
-.icon-squared-minus:before {
- content: "\EB58";
-}
-.icon-squared-plus:before {
- content: "\EB59";
-}
-.icon-star-outlined:before {
- content: "\EB5A";
-}
-.icon-star:before {
- content: "\EB5B";
-}
-.icon-stopwatch:before {
- content: "\EB5C";
-}
-.icon-stumbleupon-with-circle:before {
- content: "\EB5D";
-}
-.icon-stumbleupon:before {
- content: "\EB5E";
-}
-.icon-suitcase:before {
- content: "\EB5F";
-}
-.icon-swap:before {
- content: "\EB60";
-}
-.icon-swarm:before {
- content: "\EB61";
-}
-.icon-sweden:before {
- content: "\EB62";
-}
-.icon-switch:before {
- content: "\EB63";
-}
-.icon-tablet-mobile-combo:before {
- content: "\EB64";
-}
-.icon-tablet:before {
- content: "\EB65";
-}
-.icon-tag:before {
- content: "\EB66";
-}
-.icon-text-document-inverted:before {
- content: "\EB67";
-}
-.icon-text-document:before {
- content: "\EB68";
-}
-.icon-text:before {
- content: "\EB69";
-}
-.icon-thermometer:before {
- content: "\EB6A";
-}
-.icon-thumbs-down:before {
- content: "\EB6B";
-}
-.icon-thumbs-up:before {
- content: "\EB6C";
-}
-.icon-thunder-cloud:before {
- content: "\EB6D";
-}
-.icon-ticket:before {
- content: "\EB6E";
-}
-.icon-time-slot:before {
- content: "\EB6F";
-}
-.icon-tools:before {
- content: "\EB70";
-}
-.icon-traffic-cone:before {
- content: "\EB71";
-}
-.icon-trash:before {
- content: "\EB72";
-}
-.icon-tree:before {
- content: "\EB73";
-}
-.icon-triangle-down:before {
- content: "\EB74";
-}
-.icon-triangle-left:before {
- content: "\EB75";
-}
-.icon-triangle-right:before {
- content: "\EB76";
-}
-.icon-triangle-up:before {
- content: "\EB77";
-}
-.icon-tripadvisor:before {
- content: "\EB78";
-}
-.icon-trophy:before {
- content: "\EB79";
-}
-.icon-tumblr-with-circle:before {
- content: "\EB7A";
-}
-.icon-tumblr:before {
- content: "\EB7B";
-}
-.icon-tv:before {
- content: "\EB7C";
-}
-.icon-twitter-with-circle:before {
- content: "\EB7D";
-}
-.icon-twitter:before {
- content: "\EB7E";
-}
-.icon-typing:before {
- content: "\EB7F";
-}
-.icon-uninstall:before {
- content: "\EB80";
-}
-.icon-unread:before {
- content: "\EB81";
-}
-.icon-untag:before {
- content: "\EB82";
-}
-.icon-upload-to-cloud:before {
- content: "\EB83";
-}
-.icon-upload:before {
- content: "\EB84";
-}
-.icon-user:before {
- content: "\EB85";
-}
-.icon-users:before {
- content: "\EB86";
-}
-.icon-v-card:before {
- content: "\EB87";
-}
-.icon-video-camera:before {
- content: "\EB88";
-}
-.icon-video:before {
- content: "\EB89";
-}
-.icon-vimeo-with-circle:before {
- content: "\EB8A";
-}
-.icon-vimeo:before {
- content: "\EB8B";
-}
-.icon-vine-with-circle:before {
- content: "\EB8C";
-}
-.icon-vine:before {
- content: "\EB8D";
-}
-.icon-vinyl:before {
- content: "\EB8E";
-}
-.icon-vk-alternitive:before {
- content: "\EB8F";
-}
-.icon-vk-with-circle:before {
- content: "\EB90";
-}
-.icon-vk:before {
- content: "\EB91";
-}
-.icon-voicemail:before {
- content: "\EB92";
-}
-.icon-wallet:before {
- content: "\EB93";
-}
-.icon-warning:before {
- content: "\EB94";
-}
-.icon-water:before {
- content: "\EB95";
-}
-.icon-windows-store:before {
- content: "\EB96";
-}
-.icon-xing-with-circle:before {
- content: "\EB97";
-}
-.icon-xing:before {
- content: "\EB98";
-}
-.icon-yelp:before {
- content: "\EB99";
-}
-.icon-youko-with-circle:before {
- content: "\EB9A";
-}
-.icon-youko:before {
- content: "\EB9B";
-}
-.icon-youtube-with-circle:before {
- content: "\EB9C";
-}
-.icon-youtube:before {
- content: "\EB9D";
-}
-.flextable {
- dislay: table;
- width: 100%;
-}
-.flextable-item {
- display: table-cell;
- width: 1%;
- white-space: nowrap;
- vertical-align: middle;
-}
-.flextable-item .btn-group {
- margin-left: 10px;
-}
-.flextable-item .btn-group > .btn {
- float: none;
-}
-.flextable-item .btn-group > .btn + .btn {
- margin-left: -4px;
-}
-.flextable-primary {
- width: 99%;
-}
-.pos-r {
- position: relative !important;
-}
-.pos-a {
- position: absolute !important;
-}
-.pos-f {
- position: fixed !important;
-}
-.w-sm {
- width: 25% !important;
-}
-.w-md {
- width: 50% !important;
-}
-.w-lg {
- width: 75% !important;
-}
-.w-full {
- width: 100% !important;
-}
-.m-a-0 {
- margin: 0 !important;
-}
-.m-t-0 {
- margin-top: 0 !important;
-}
-.m-r-0 {
- margin-right: 0 !important;
-}
-.m-b-0 {
- margin-bottom: 0 !important;
-}
-.m-l-0 {
- margin-left: 0 !important;
-}
-.m-x-0 {
- margin-right: 0 !important;
- margin-left: 0 !important;
-}
-.m-y-0 {
- margin-top: 0 !important;
- margin-bottom: 0 !important;
-}
-.m-a {
- margin: 20px !important;
-}
-.m-t {
- margin-top: 20px !important;
-}
-.m-r {
- margin-right: 20px !important;
-}
-.m-b {
- margin-bottom: 20px !important;
-}
-.m-l {
- margin-left: 20px !important;
-}
-.m-x {
- margin-right: 20px !important;
- margin-left: 20px !important;
-}
-.m-y {
- margin-top: 20px !important;
- margin-bottom: 20px !important;
-}
-.m-x-auto {
- margin-right: auto !important;
- margin-left: auto !important;
-}
-.m-a-md {
- margin: 30px !important;
-}
-.m-t-md {
- margin-top: 30px !important;
-}
-.m-r-md {
- margin-right: 30px !important;
-}
-.m-b-md {
- margin-bottom: 30px !important;
-}
-.m-l-md {
- margin-left: 30px !important;
-}
-.m-x-md {
- margin-right: 30px !important;
- margin-left: 30px !important;
-}
-.m-y-md {
- margin-top: 30px !important;
- margin-bottom: 30px !important;
-}
-.m-a-lg {
- margin: 60px !important;
-}
-.m-t-lg {
- margin-top: 60px !important;
-}
-.m-r-lg {
- margin-right: 60px !important;
-}
-.m-b-lg {
- margin-bottom: 60px !important;
-}
-.m-l-lg {
- margin-left: 60px !important;
-}
-.m-x-lg {
- margin-right: 60px !important;
- margin-left: 60px !important;
-}
-.m-y-lg {
- margin-top: 60px !important;
- margin-bottom: 60px !important;
-}
-.p-a-0 {
- padding: 0 !important;
-}
-.p-t-0 {
- padding-top: 0 !important;
-}
-.p-r-0 {
- padding-right: 0 !important;
-}
-.p-b-0 {
- padding-bottom: 0 !important;
-}
-.p-l-0 {
- padding-left: 0 !important;
-}
-.p-x-0 {
- padding-left: 0 !important;
- padding-right: 0 !important;
-}
-.p-y-0 {
- padding-top: 0 !important;
- padding-bottom: 0 !important;
-}
-.p-a {
- padding: 20px !important;
-}
-.p-t {
- padding-top: 20px !important;
-}
-.p-r {
- padding-right: 20px !important;
-}
-.p-b {
- padding-bottom: 20px !important;
-}
-.p-l {
- padding-left: 20px !important;
-}
-.p-x {
- padding-right: 20px !important;
- padding-left: 20px !important;
-}
-.p-y {
- padding-top: 20px !important;
- padding-bottom: 20px !important;
-}
-.p-a-md {
- padding: 30px !important;
-}
-.p-t-md {
- padding-top: 30px !important;
-}
-.p-r-md {
- padding-right: 30px !important;
-}
-.p-b-md {
- padding-bottom: 30px !important;
-}
-.p-l-md {
- padding-left: 30px !important;
-}
-.p-x-md {
- padding-right: 30px !important;
- padding-left: 30px !important;
-}
-.p-y-md {
- padding-top: 30px !important;
- padding-bottom: 30px !important;
-}
-.p-a-lg {
- padding: 60px !important;
-}
-.p-t-lg {
- padding-top: 60px !important;
-}
-.p-r-lg {
- padding-right: 60px !important;
-}
-.p-b-lg {
- padding-bottom: 60px !important;
-}
-.p-l-lg {
- padding-left: 60px !important;
-}
-.p-x-lg {
- padding-right: 60px !important;
- padding-left: 60px !important;
-}
-.p-y-lg {
- padding-top: 60px !important;
- padding-bottom: 60px !important;
-}
-.text-inherit,
-.text-inherit:hover,
-.text-inherit:focus {
- color: inherit;
- text-decoration: inherit;
-}
-.datepicker {
- padding: 4px;
- border-radius: 4px;
- color: #51586a;
- direction: ltr;
-}
-.datepicker-inline {
- width: 220px;
-}
-.datepicker.datepicker-rtl {
- direction: rtl;
-}
-.datepicker.datepicker-rtl table tr td span {
- float: right;
-}
-.datepicker-dropdown {
- top: 0;
- left: 0;
-}
-.datepicker-dropdown:before {
- content: '';
- display: inline-block;
- border-left: 7px solid transparent;
- border-right: 7px solid transparent;
- border-bottom: 7px solid #ccc;
- border-top: 0;
- border-bottom-color: rgba(0, 0, 0, 0.2);
- position: absolute;
-}
-.datepicker-dropdown:after {
- content: '';
- display: inline-block;
- border-left: 6px solid transparent;
- border-right: 6px solid transparent;
- border-bottom: 6px solid #fff;
- border-top: 0;
- position: absolute;
-}
-.datepicker-dropdown.datepicker-orient-left:before {
- left: 6px;
-}
-.datepicker-dropdown.datepicker-orient-left:after {
- left: 7px;
-}
-.datepicker-dropdown.datepicker-orient-right:before {
- right: 6px;
-}
-.datepicker-dropdown.datepicker-orient-right:after {
- right: 7px;
-}
-.datepicker-dropdown.datepicker-orient-top:before {
- top: -7px;
-}
-.datepicker-dropdown.datepicker-orient-top:after {
- top: -6px;
-}
-.datepicker-dropdown.datepicker-orient-bottom:before {
- bottom: -7px;
- border-bottom: 0;
- border-top: 7px solid #999;
-}
-.datepicker-dropdown.datepicker-orient-bottom:after {
- bottom: -6px;
- border-bottom: 0;
- border-top: 6px solid #fff;
-}
-.datepicker > div {
- display: none;
-}
-.datepicker.days .datepicker-days,
-.datepicker.months .datepicker-months,
-.datepicker.years .datepicker-years {
- display: block;
-}
-.datepicker table {
- margin: 5px 10px;
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
-}
-.datepicker table > tbody > tr > td,
-.datepicker table > thead > tr > td,
-.datepicker table > tbody > tr > th,
-.datepicker table > thead > tr > th {
- text-align: center;
- width: 30px;
- height: 30px;
- border-radius: 4px;
- border: none;
-}
-.table-striped .datepicker table tr td,
-.table-striped .datepicker table tr th {
- background-color: transparent;
-}
-.datepicker table tr td.day:hover,
-.datepicker table tr td.day.focused {
- background: #ffffff;
- cursor: pointer;
-}
-.datepicker table tr td.old,
-.datepicker table tr td.new {
- color: #cfd2da;
-}
-.datepicker table tr td.disabled,
-.datepicker table tr td.disabled:hover {
- background: none;
- color: #cfd2da;
- cursor: default;
-}
-.datepicker table tr td.today,
-.datepicker table tr td.today:hover,
-.datepicker table tr td.today.disabled,
-.datepicker table tr td.today.disabled:hover {
- color: #000;
- background-color: #ffdb99;
- border-color: #ffb733;
-}
-.datepicker table tr td.today:focus,
-.datepicker table tr td.today:hover:focus,
-.datepicker table tr td.today.disabled:focus,
-.datepicker table tr td.today.disabled:hover:focus,
-.datepicker table tr td.today.focus,
-.datepicker table tr td.today:hover.focus,
-.datepicker table tr td.today.disabled.focus,
-.datepicker table tr td.today.disabled:hover.focus {
- color: #000;
- background-color: #ffc966;
- border-color: #b37400;
-}
-.datepicker table tr td.today:hover,
-.datepicker table tr td.today:hover:hover,
-.datepicker table tr td.today.disabled:hover,
-.datepicker table tr td.today.disabled:hover:hover {
- color: #000;
- background-color: #ffc966;
- border-color: #f59e00;
-}
-.datepicker table tr td.today:active,
-.datepicker table tr td.today:hover:active,
-.datepicker table tr td.today.disabled:active,
-.datepicker table tr td.today.disabled:hover:active,
-.datepicker table tr td.today.active,
-.datepicker table tr td.today:hover.active,
-.datepicker table tr td.today.disabled.active,
-.datepicker table tr td.today.disabled:hover.active,
-.open > .dropdown-toggle.datepicker table tr td.today,
-.open > .dropdown-toggle.datepicker table tr td.today:hover,
-.open > .dropdown-toggle.datepicker table tr td.today.disabled,
-.open > .dropdown-toggle.datepicker table tr td.today.disabled:hover {
- color: #000;
- background-color: #ffc966;
- border-color: #f59e00;
-}
-.datepicker table tr td.today:active:hover,
-.datepicker table tr td.today:hover:active:hover,
-.datepicker table tr td.today.disabled:active:hover,
-.datepicker table tr td.today.disabled:hover:active:hover,
-.datepicker table tr td.today.active:hover,
-.datepicker table tr td.today:hover.active:hover,
-.datepicker table tr td.today.disabled.active:hover,
-.datepicker table tr td.today.disabled:hover.active:hover,
-.open > .dropdown-toggle.datepicker table tr td.today:hover,
-.open > .dropdown-toggle.datepicker table tr td.today:hover:hover,
-.open > .dropdown-toggle.datepicker table tr td.today.disabled:hover,
-.open > .dropdown-toggle.datepicker table tr td.today.disabled:hover:hover,
-.datepicker table tr td.today:active:focus,
-.datepicker table tr td.today:hover:active:focus,
-.datepicker table tr td.today.disabled:active:focus,
-.datepicker table tr td.today.disabled:hover:active:focus,
-.datepicker table tr td.today.active:focus,
-.datepicker table tr td.today:hover.active:focus,
-.datepicker table tr td.today.disabled.active:focus,
-.datepicker table tr td.today.disabled:hover.active:focus,
-.open > .dropdown-toggle.datepicker table tr td.today:focus,
-.open > .dropdown-toggle.datepicker table tr td.today:hover:focus,
-.open > .dropdown-toggle.datepicker table tr td.today.disabled:focus,
-.open > .dropdown-toggle.datepicker table tr td.today.disabled:hover:focus,
-.datepicker table tr td.today:active.focus,
-.datepicker table tr td.today:hover:active.focus,
-.datepicker table tr td.today.disabled:active.focus,
-.datepicker table tr td.today.disabled:hover:active.focus,
-.datepicker table tr td.today.active.focus,
-.datepicker table tr td.today:hover.active.focus,
-.datepicker table tr td.today.disabled.active.focus,
-.datepicker table tr td.today.disabled:hover.active.focus,
-.open > .dropdown-toggle.datepicker table tr td.today.focus,
-.open > .dropdown-toggle.datepicker table tr td.today:hover.focus,
-.open > .dropdown-toggle.datepicker table tr td.today.disabled.focus,
-.open > .dropdown-toggle.datepicker table tr td.today.disabled:hover.focus {
- color: #000;
- background-color: #ffbc42;
- border-color: #b37400;
-}
-.datepicker table tr td.today:active,
-.datepicker table tr td.today:hover:active,
-.datepicker table tr td.today.disabled:active,
-.datepicker table tr td.today.disabled:hover:active,
-.datepicker table tr td.today.active,
-.datepicker table tr td.today:hover.active,
-.datepicker table tr td.today.disabled.active,
-.datepicker table tr td.today.disabled:hover.active,
-.open > .dropdown-toggle.datepicker table tr td.today,
-.open > .dropdown-toggle.datepicker table tr td.today:hover,
-.open > .dropdown-toggle.datepicker table tr td.today.disabled,
-.open > .dropdown-toggle.datepicker table tr td.today.disabled:hover {
- background-image: none;
-}
-.datepicker table tr td.today.disabled:hover,
-.datepicker table tr td.today:hover.disabled:hover,
-.datepicker table tr td.today.disabled.disabled:hover,
-.datepicker table tr td.today.disabled:hover.disabled:hover,
-.datepicker table tr td.today[disabled]:hover,
-.datepicker table tr td.today:hover[disabled]:hover,
-.datepicker table tr td.today.disabled[disabled]:hover,
-.datepicker table tr td.today.disabled:hover[disabled]:hover,
-fieldset[disabled] .datepicker table tr td.today:hover,
-fieldset[disabled] .datepicker table tr td.today:hover:hover,
-fieldset[disabled] .datepicker table tr td.today.disabled:hover,
-fieldset[disabled] .datepicker table tr td.today.disabled:hover:hover,
-.datepicker table tr td.today.disabled:focus,
-.datepicker table tr td.today:hover.disabled:focus,
-.datepicker table tr td.today.disabled.disabled:focus,
-.datepicker table tr td.today.disabled:hover.disabled:focus,
-.datepicker table tr td.today[disabled]:focus,
-.datepicker table tr td.today:hover[disabled]:focus,
-.datepicker table tr td.today.disabled[disabled]:focus,
-.datepicker table tr td.today.disabled:hover[disabled]:focus,
-fieldset[disabled] .datepicker table tr td.today:focus,
-fieldset[disabled] .datepicker table tr td.today:hover:focus,
-fieldset[disabled] .datepicker table tr td.today.disabled:focus,
-fieldset[disabled] .datepicker table tr td.today.disabled:hover:focus,
-.datepicker table tr td.today.disabled.focus,
-.datepicker table tr td.today:hover.disabled.focus,
-.datepicker table tr td.today.disabled.disabled.focus,
-.datepicker table tr td.today.disabled:hover.disabled.focus,
-.datepicker table tr td.today[disabled].focus,
-.datepicker table tr td.today:hover[disabled].focus,
-.datepicker table tr td.today.disabled[disabled].focus,
-.datepicker table tr td.today.disabled:hover[disabled].focus,
-fieldset[disabled] .datepicker table tr td.today.focus,
-fieldset[disabled] .datepicker table tr td.today:hover.focus,
-fieldset[disabled] .datepicker table tr td.today.disabled.focus,
-fieldset[disabled] .datepicker table tr td.today.disabled:hover.focus {
- background-color: #ffdb99;
- border-color: #ffb733;
-}
-.datepicker table tr td.today .badge,
-.datepicker table tr td.today:hover .badge,
-.datepicker table tr td.today.disabled .badge,
-.datepicker table tr td.today.disabled:hover .badge {
- color: #ffdb99;
- background-color: #000;
-}
-.datepicker table tr td.today:hover:hover {
- color: #000;
-}
-.datepicker table tr td.today.active:hover {
- color: #fff;
-}
-.datepicker table tr td.range,
-.datepicker table tr td.range:hover,
-.datepicker table tr td.range.disabled,
-.datepicker table tr td.range.disabled:hover {
- background: #ffffff;
- border-radius: 0;
-}
-.datepicker table tr td.range.today,
-.datepicker table tr td.range.today:hover,
-.datepicker table tr td.range.today.disabled,
-.datepicker table tr td.range.today.disabled:hover {
- color: #000;
- background-color: #ffd280;
- border-color: #ffae1a;
- border-radius: 0;
-}
-.datepicker table tr td.range.today:focus,
-.datepicker table tr td.range.today:hover:focus,
-.datepicker table tr td.range.today.disabled:focus,
-.datepicker table tr td.range.today.disabled:hover:focus,
-.datepicker table tr td.range.today.focus,
-.datepicker table tr td.range.today:hover.focus,
-.datepicker table tr td.range.today.disabled.focus,
-.datepicker table tr td.range.today.disabled:hover.focus {
- color: #000;
- background-color: #ffc04d;
- border-color: #996300;
-}
-.datepicker table tr td.range.today:hover,
-.datepicker table tr td.range.today:hover:hover,
-.datepicker table tr td.range.today.disabled:hover,
-.datepicker table tr td.range.today.disabled:hover:hover {
- color: #000;
- background-color: #ffc04d;
- border-color: #db8e00;
-}
-.datepicker table tr td.range.today:active,
-.datepicker table tr td.range.today:hover:active,
-.datepicker table tr td.range.today.disabled:active,
-.datepicker table tr td.range.today.disabled:hover:active,
-.datepicker table tr td.range.today.active,
-.datepicker table tr td.range.today:hover.active,
-.datepicker table tr td.range.today.disabled.active,
-.datepicker table tr td.range.today.disabled:hover.active,
-.open > .dropdown-toggle.datepicker table tr td.range.today,
-.open > .dropdown-toggle.datepicker table tr td.range.today:hover,
-.open > .dropdown-toggle.datepicker table tr td.range.today.disabled,
-.open > .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
- color: #000;
- background-color: #ffc04d;
- border-color: #db8e00;
-}
-.datepicker table tr td.range.today:active:hover,
-.datepicker table tr td.range.today:hover:active:hover,
-.datepicker table tr td.range.today.disabled:active:hover,
-.datepicker table tr td.range.today.disabled:hover:active:hover,
-.datepicker table tr td.range.today.active:hover,
-.datepicker table tr td.range.today:hover.active:hover,
-.datepicker table tr td.range.today.disabled.active:hover,
-.datepicker table tr td.range.today.disabled:hover.active:hover,
-.open > .dropdown-toggle.datepicker table tr td.range.today:hover,
-.open > .dropdown-toggle.datepicker table tr td.range.today:hover:hover,
-.open > .dropdown-toggle.datepicker table tr td.range.today.disabled:hover,
-.open > .dropdown-toggle.datepicker table tr td.range.today.disabled:hover:hover,
-.datepicker table tr td.range.today:active:focus,
-.datepicker table tr td.range.today:hover:active:focus,
-.datepicker table tr td.range.today.disabled:active:focus,
-.datepicker table tr td.range.today.disabled:hover:active:focus,
-.datepicker table tr td.range.today.active:focus,
-.datepicker table tr td.range.today:hover.active:focus,
-.datepicker table tr td.range.today.disabled.active:focus,
-.datepicker table tr td.range.today.disabled:hover.active:focus,
-.open > .dropdown-toggle.datepicker table tr td.range.today:focus,
-.open > .dropdown-toggle.datepicker table tr td.range.today:hover:focus,
-.open > .dropdown-toggle.datepicker table tr td.range.today.disabled:focus,
-.open > .dropdown-toggle.datepicker table tr td.range.today.disabled:hover:focus,
-.datepicker table tr td.range.today:active.focus,
-.datepicker table tr td.range.today:hover:active.focus,
-.datepicker table tr td.range.today.disabled:active.focus,
-.datepicker table tr td.range.today.disabled:hover:active.focus,
-.datepicker table tr td.range.today.active.focus,
-.datepicker table tr td.range.today:hover.active.focus,
-.datepicker table tr td.range.today.disabled.active.focus,
-.datepicker table tr td.range.today.disabled:hover.active.focus,
-.open > .dropdown-toggle.datepicker table tr td.range.today.focus,
-.open > .dropdown-toggle.datepicker table tr td.range.today:hover.focus,
-.open > .dropdown-toggle.datepicker table tr td.range.today.disabled.focus,
-.open > .dropdown-toggle.datepicker table tr td.range.today.disabled:hover.focus {
- color: #000;
- background-color: #ffb329;
- border-color: #996300;
-}
-.datepicker table tr td.range.today:active,
-.datepicker table tr td.range.today:hover:active,
-.datepicker table tr td.range.today.disabled:active,
-.datepicker table tr td.range.today.disabled:hover:active,
-.datepicker table tr td.range.today.active,
-.datepicker table tr td.range.today:hover.active,
-.datepicker table tr td.range.today.disabled.active,
-.datepicker table tr td.range.today.disabled:hover.active,
-.open > .dropdown-toggle.datepicker table tr td.range.today,
-.open > .dropdown-toggle.datepicker table tr td.range.today:hover,
-.open > .dropdown-toggle.datepicker table tr td.range.today.disabled,
-.open > .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
- background-image: none;
-}
-.datepicker table tr td.range.today.disabled:hover,
-.datepicker table tr td.range.today:hover.disabled:hover,
-.datepicker table tr td.range.today.disabled.disabled:hover,
-.datepicker table tr td.range.today.disabled:hover.disabled:hover,
-.datepicker table tr td.range.today[disabled]:hover,
-.datepicker table tr td.range.today:hover[disabled]:hover,
-.datepicker table tr td.range.today.disabled[disabled]:hover,
-.datepicker table tr td.range.today.disabled:hover[disabled]:hover,
-fieldset[disabled] .datepicker table tr td.range.today:hover,
-fieldset[disabled] .datepicker table tr td.range.today:hover:hover,
-fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
-fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:hover,
-.datepicker table tr td.range.today.disabled:focus,
-.datepicker table tr td.range.today:hover.disabled:focus,
-.datepicker table tr td.range.today.disabled.disabled:focus,
-.datepicker table tr td.range.today.disabled:hover.disabled:focus,
-.datepicker table tr td.range.today[disabled]:focus,
-.datepicker table tr td.range.today:hover[disabled]:focus,
-.datepicker table tr td.range.today.disabled[disabled]:focus,
-.datepicker table tr td.range.today.disabled:hover[disabled]:focus,
-fieldset[disabled] .datepicker table tr td.range.today:focus,
-fieldset[disabled] .datepicker table tr td.range.today:hover:focus,
-fieldset[disabled] .datepicker table tr td.range.today.disabled:focus,
-fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:focus,
-.datepicker table tr td.range.today.disabled.focus,
-.datepicker table tr td.range.today:hover.disabled.focus,
-.datepicker table tr td.range.today.disabled.disabled.focus,
-.datepicker table tr td.range.today.disabled:hover.disabled.focus,
-.datepicker table tr td.range.today[disabled].focus,
-.datepicker table tr td.range.today:hover[disabled].focus,
-.datepicker table tr td.range.today.disabled[disabled].focus,
-.datepicker table tr td.range.today.disabled:hover[disabled].focus,
-fieldset[disabled] .datepicker table tr td.range.today.focus,
-fieldset[disabled] .datepicker table tr td.range.today:hover.focus,
-fieldset[disabled] .datepicker table tr td.range.today.disabled.focus,
-fieldset[disabled] .datepicker table tr td.range.today.disabled:hover.focus {
- background-color: #ffd280;
- border-color: #ffae1a;
-}
-.datepicker table tr td.range.today .badge,
-.datepicker table tr td.range.today:hover .badge,
-.datepicker table tr td.range.today.disabled .badge,
-.datepicker table tr td.range.today.disabled:hover .badge {
- color: #ffd280;
- background-color: #000;
-}
-.datepicker table tr td.selected,
-.datepicker table tr td.selected:hover,
-.datepicker table tr td.selected.disabled,
-.datepicker table tr td.selected.disabled:hover {
- color: #fff;
- background-color: #cfd2da;
- border-color: #6f7890;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
-}
-.datepicker table tr td.selected:focus,
-.datepicker table tr td.selected:hover:focus,
-.datepicker table tr td.selected.disabled:focus,
-.datepicker table tr td.selected.disabled:hover:focus,
-.datepicker table tr td.selected.focus,
-.datepicker table tr td.selected:hover.focus,
-.datepicker table tr td.selected.disabled.focus,
-.datepicker table tr td.selected.disabled:hover.focus {
- color: #fff;
- background-color: #b2b7c4;
- border-color: #383c48;
-}
-.datepicker table tr td.selected:hover,
-.datepicker table tr td.selected:hover:hover,
-.datepicker table tr td.selected.disabled:hover,
-.datepicker table tr td.selected.disabled:hover:hover {
- color: #fff;
- background-color: #b2b7c4;
- border-color: #555c6e;
-}
-.datepicker table tr td.selected:active,
-.datepicker table tr td.selected:hover:active,
-.datepicker table tr td.selected.disabled:active,
-.datepicker table tr td.selected.disabled:hover:active,
-.datepicker table tr td.selected.active,
-.datepicker table tr td.selected:hover.active,
-.datepicker table tr td.selected.disabled.active,
-.datepicker table tr td.selected.disabled:hover.active,
-.open > .dropdown-toggle.datepicker table tr td.selected,
-.open > .dropdown-toggle.datepicker table tr td.selected:hover,
-.open > .dropdown-toggle.datepicker table tr td.selected.disabled,
-.open > .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
- color: #fff;
- background-color: #b2b7c4;
- border-color: #555c6e;
-}
-.datepicker table tr td.selected:active:hover,
-.datepicker table tr td.selected:hover:active:hover,
-.datepicker table tr td.selected.disabled:active:hover,
-.datepicker table tr td.selected.disabled:hover:active:hover,
-.datepicker table tr td.selected.active:hover,
-.datepicker table tr td.selected:hover.active:hover,
-.datepicker table tr td.selected.disabled.active:hover,
-.datepicker table tr td.selected.disabled:hover.active:hover,
-.open > .dropdown-toggle.datepicker table tr td.selected:hover,
-.open > .dropdown-toggle.datepicker table tr td.selected:hover:hover,
-.open > .dropdown-toggle.datepicker table tr td.selected.disabled:hover,
-.open > .dropdown-toggle.datepicker table tr td.selected.disabled:hover:hover,
-.datepicker table tr td.selected:active:focus,
-.datepicker table tr td.selected:hover:active:focus,
-.datepicker table tr td.selected.disabled:active:focus,
-.datepicker table tr td.selected.disabled:hover:active:focus,
-.datepicker table tr td.selected.active:focus,
-.datepicker table tr td.selected:hover.active:focus,
-.datepicker table tr td.selected.disabled.active:focus,
-.datepicker table tr td.selected.disabled:hover.active:focus,
-.open > .dropdown-toggle.datepicker table tr td.selected:focus,
-.open > .dropdown-toggle.datepicker table tr td.selected:hover:focus,
-.open > .dropdown-toggle.datepicker table tr td.selected.disabled:focus,
-.open > .dropdown-toggle.datepicker table tr td.selected.disabled:hover:focus,
-.datepicker table tr td.selected:active.focus,
-.datepicker table tr td.selected:hover:active.focus,
-.datepicker table tr td.selected.disabled:active.focus,
-.datepicker table tr td.selected.disabled:hover:active.focus,
-.datepicker table tr td.selected.active.focus,
-.datepicker table tr td.selected:hover.active.focus,
-.datepicker table tr td.selected.disabled.active.focus,
-.datepicker table tr td.selected.disabled:hover.active.focus,
-.open > .dropdown-toggle.datepicker table tr td.selected.focus,
-.open > .dropdown-toggle.datepicker table tr td.selected:hover.focus,
-.open > .dropdown-toggle.datepicker table tr td.selected.disabled.focus,
-.open > .dropdown-toggle.datepicker table tr td.selected.disabled:hover.focus {
- color: #fff;
- background-color: #9ea4b4;
- border-color: #383c48;
-}
-.datepicker table tr td.selected:active,
-.datepicker table tr td.selected:hover:active,
-.datepicker table tr td.selected.disabled:active,
-.datepicker table tr td.selected.disabled:hover:active,
-.datepicker table tr td.selected.active,
-.datepicker table tr td.selected:hover.active,
-.datepicker table tr td.selected.disabled.active,
-.datepicker table tr td.selected.disabled:hover.active,
-.open > .dropdown-toggle.datepicker table tr td.selected,
-.open > .dropdown-toggle.datepicker table tr td.selected:hover,
-.open > .dropdown-toggle.datepicker table tr td.selected.disabled,
-.open > .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
- background-image: none;
-}
-.datepicker table tr td.selected.disabled:hover,
-.datepicker table tr td.selected:hover.disabled:hover,
-.datepicker table tr td.selected.disabled.disabled:hover,
-.datepicker table tr td.selected.disabled:hover.disabled:hover,
-.datepicker table tr td.selected[disabled]:hover,
-.datepicker table tr td.selected:hover[disabled]:hover,
-.datepicker table tr td.selected.disabled[disabled]:hover,
-.datepicker table tr td.selected.disabled:hover[disabled]:hover,
-fieldset[disabled] .datepicker table tr td.selected:hover,
-fieldset[disabled] .datepicker table tr td.selected:hover:hover,
-fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
-fieldset[disabled] .datepicker table tr td.selected.disabled:hover:hover,
-.datepicker table tr td.selected.disabled:focus,
-.datepicker table tr td.selected:hover.disabled:focus,
-.datepicker table tr td.selected.disabled.disabled:focus,
-.datepicker table tr td.selected.disabled:hover.disabled:focus,
-.datepicker table tr td.selected[disabled]:focus,
-.datepicker table tr td.selected:hover[disabled]:focus,
-.datepicker table tr td.selected.disabled[disabled]:focus,
-.datepicker table tr td.selected.disabled:hover[disabled]:focus,
-fieldset[disabled] .datepicker table tr td.selected:focus,
-fieldset[disabled] .datepicker table tr td.selected:hover:focus,
-fieldset[disabled] .datepicker table tr td.selected.disabled:focus,
-fieldset[disabled] .datepicker table tr td.selected.disabled:hover:focus,
-.datepicker table tr td.selected.disabled.focus,
-.datepicker table tr td.selected:hover.disabled.focus,
-.datepicker table tr td.selected.disabled.disabled.focus,
-.datepicker table tr td.selected.disabled:hover.disabled.focus,
-.datepicker table tr td.selected[disabled].focus,
-.datepicker table tr td.selected:hover[disabled].focus,
-.datepicker table tr td.selected.disabled[disabled].focus,
-.datepicker table tr td.selected.disabled:hover[disabled].focus,
-fieldset[disabled] .datepicker table tr td.selected.focus,
-fieldset[disabled] .datepicker table tr td.selected:hover.focus,
-fieldset[disabled] .datepicker table tr td.selected.disabled.focus,
-fieldset[disabled] .datepicker table tr td.selected.disabled:hover.focus {
- background-color: #cfd2da;
- border-color: #6f7890;
-}
-.datepicker table tr td.selected .badge,
-.datepicker table tr td.selected:hover .badge,
-.datepicker table tr td.selected.disabled .badge,
-.datepicker table tr td.selected.disabled:hover .badge {
- color: #cfd2da;
- background-color: #fff;
-}
-.datepicker table tr td.active,
-.datepicker table tr td.active:hover,
-.datepicker table tr td.active.disabled,
-.datepicker table tr td.active.disabled:hover {
- color: #fff;
- background-color: #1CA8DD;
- border-color: #1997c6;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
-}
-.datepicker table tr td.active:focus,
-.datepicker table tr td.active:hover:focus,
-.datepicker table tr td.active.disabled:focus,
-.datepicker table tr td.active.disabled:hover:focus,
-.datepicker table tr td.active.focus,
-.datepicker table tr td.active:hover.focus,
-.datepicker table tr td.active.disabled.focus,
-.datepicker table tr td.active.disabled:hover.focus {
- color: #fff;
- background-color: #1686b0;
- border-color: #0b4155;
-}
-.datepicker table tr td.active:hover,
-.datepicker table tr td.active:hover:hover,
-.datepicker table tr td.active.disabled:hover,
-.datepicker table tr td.active.disabled:hover:hover {
- color: #fff;
- background-color: #1686b0;
- border-color: #126e90;
-}
-.datepicker table tr td.active:active,
-.datepicker table tr td.active:hover:active,
-.datepicker table tr td.active.disabled:active,
-.datepicker table tr td.active.disabled:hover:active,
-.datepicker table tr td.active.active,
-.datepicker table tr td.active:hover.active,
-.datepicker table tr td.active.disabled.active,
-.datepicker table tr td.active.disabled:hover.active,
-.open > .dropdown-toggle.datepicker table tr td.active,
-.open > .dropdown-toggle.datepicker table tr td.active:hover,
-.open > .dropdown-toggle.datepicker table tr td.active.disabled,
-.open > .dropdown-toggle.datepicker table tr td.active.disabled:hover {
- color: #fff;
- background-color: #1686b0;
- border-color: #126e90;
-}
-.datepicker table tr td.active:active:hover,
-.datepicker table tr td.active:hover:active:hover,
-.datepicker table tr td.active.disabled:active:hover,
-.datepicker table tr td.active.disabled:hover:active:hover,
-.datepicker table tr td.active.active:hover,
-.datepicker table tr td.active:hover.active:hover,
-.datepicker table tr td.active.disabled.active:hover,
-.datepicker table tr td.active.disabled:hover.active:hover,
-.open > .dropdown-toggle.datepicker table tr td.active:hover,
-.open > .dropdown-toggle.datepicker table tr td.active:hover:hover,
-.open > .dropdown-toggle.datepicker table tr td.active.disabled:hover,
-.open > .dropdown-toggle.datepicker table tr td.active.disabled:hover:hover,
-.datepicker table tr td.active:active:focus,
-.datepicker table tr td.active:hover:active:focus,
-.datepicker table tr td.active.disabled:active:focus,
-.datepicker table tr td.active.disabled:hover:active:focus,
-.datepicker table tr td.active.active:focus,
-.datepicker table tr td.active:hover.active:focus,
-.datepicker table tr td.active.disabled.active:focus,
-.datepicker table tr td.active.disabled:hover.active:focus,
-.open > .dropdown-toggle.datepicker table tr td.active:focus,
-.open > .dropdown-toggle.datepicker table tr td.active:hover:focus,
-.open > .dropdown-toggle.datepicker table tr td.active.disabled:focus,
-.open > .dropdown-toggle.datepicker table tr td.active.disabled:hover:focus,
-.datepicker table tr td.active:active.focus,
-.datepicker table tr td.active:hover:active.focus,
-.datepicker table tr td.active.disabled:active.focus,
-.datepicker table tr td.active.disabled:hover:active.focus,
-.datepicker table tr td.active.active.focus,
-.datepicker table tr td.active:hover.active.focus,
-.datepicker table tr td.active.disabled.active.focus,
-.datepicker table tr td.active.disabled:hover.active.focus,
-.open > .dropdown-toggle.datepicker table tr td.active.focus,
-.open > .dropdown-toggle.datepicker table tr td.active:hover.focus,
-.open > .dropdown-toggle.datepicker table tr td.active.disabled.focus,
-.open > .dropdown-toggle.datepicker table tr td.active.disabled:hover.focus {
- color: #fff;
- background-color: #126e90;
- border-color: #0b4155;
-}
-.datepicker table tr td.active:active,
-.datepicker table tr td.active:hover:active,
-.datepicker table tr td.active.disabled:active,
-.datepicker table tr td.active.disabled:hover:active,
-.datepicker table tr td.active.active,
-.datepicker table tr td.active:hover.active,
-.datepicker table tr td.active.disabled.active,
-.datepicker table tr td.active.disabled:hover.active,
-.open > .dropdown-toggle.datepicker table tr td.active,
-.open > .dropdown-toggle.datepicker table tr td.active:hover,
-.open > .dropdown-toggle.datepicker table tr td.active.disabled,
-.open > .dropdown-toggle.datepicker table tr td.active.disabled:hover {
- background-image: none;
-}
-.datepicker table tr td.active.disabled:hover,
-.datepicker table tr td.active:hover.disabled:hover,
-.datepicker table tr td.active.disabled.disabled:hover,
-.datepicker table tr td.active.disabled:hover.disabled:hover,
-.datepicker table tr td.active[disabled]:hover,
-.datepicker table tr td.active:hover[disabled]:hover,
-.datepicker table tr td.active.disabled[disabled]:hover,
-.datepicker table tr td.active.disabled:hover[disabled]:hover,
-fieldset[disabled] .datepicker table tr td.active:hover,
-fieldset[disabled] .datepicker table tr td.active:hover:hover,
-fieldset[disabled] .datepicker table tr td.active.disabled:hover,
-fieldset[disabled] .datepicker table tr td.active.disabled:hover:hover,
-.datepicker table tr td.active.disabled:focus,
-.datepicker table tr td.active:hover.disabled:focus,
-.datepicker table tr td.active.disabled.disabled:focus,
-.datepicker table tr td.active.disabled:hover.disabled:focus,
-.datepicker table tr td.active[disabled]:focus,
-.datepicker table tr td.active:hover[disabled]:focus,
-.datepicker table tr td.active.disabled[disabled]:focus,
-.datepicker table tr td.active.disabled:hover[disabled]:focus,
-fieldset[disabled] .datepicker table tr td.active:focus,
-fieldset[disabled] .datepicker table tr td.active:hover:focus,
-fieldset[disabled] .datepicker table tr td.active.disabled:focus,
-fieldset[disabled] .datepicker table tr td.active.disabled:hover:focus,
-.datepicker table tr td.active.disabled.focus,
-.datepicker table tr td.active:hover.disabled.focus,
-.datepicker table tr td.active.disabled.disabled.focus,
-.datepicker table tr td.active.disabled:hover.disabled.focus,
-.datepicker table tr td.active[disabled].focus,
-.datepicker table tr td.active:hover[disabled].focus,
-.datepicker table tr td.active.disabled[disabled].focus,
-.datepicker table tr td.active.disabled:hover[disabled].focus,
-fieldset[disabled] .datepicker table tr td.active.focus,
-fieldset[disabled] .datepicker table tr td.active:hover.focus,
-fieldset[disabled] .datepicker table tr td.active.disabled.focus,
-fieldset[disabled] .datepicker table tr td.active.disabled:hover.focus {
- background-color: #1CA8DD;
- border-color: #1997c6;
-}
-.datepicker table tr td.active .badge,
-.datepicker table tr td.active:hover .badge,
-.datepicker table tr td.active.disabled .badge,
-.datepicker table tr td.active.disabled:hover .badge {
- color: #1CA8DD;
- background-color: #fff;
-}
-.datepicker table tr td span {
- display: block;
- width: 23%;
- height: 54px;
- line-height: 54px;
- float: left;
- margin: 1%;
- cursor: pointer;
- border-radius: 4px;
-}
-.datepicker table tr td span:hover {
- background: #ffffff;
-}
-.datepicker table tr td span.disabled,
-.datepicker table tr td span.disabled:hover {
- background: none;
- color: #cfd2da;
- cursor: default;
-}
-.datepicker table tr td span.active,
-.datepicker table tr td span.active:hover,
-.datepicker table tr td span.active.disabled,
-.datepicker table tr td span.active.disabled:hover {
- color: #fff;
- background-color: #1CA8DD;
- border-color: #1997c6;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
-}
-.datepicker table tr td span.active:focus,
-.datepicker table tr td span.active:hover:focus,
-.datepicker table tr td span.active.disabled:focus,
-.datepicker table tr td span.active.disabled:hover:focus,
-.datepicker table tr td span.active.focus,
-.datepicker table tr td span.active:hover.focus,
-.datepicker table tr td span.active.disabled.focus,
-.datepicker table tr td span.active.disabled:hover.focus {
- color: #fff;
- background-color: #1686b0;
- border-color: #0b4155;
-}
-.datepicker table tr td span.active:hover,
-.datepicker table tr td span.active:hover:hover,
-.datepicker table tr td span.active.disabled:hover,
-.datepicker table tr td span.active.disabled:hover:hover {
- color: #fff;
- background-color: #1686b0;
- border-color: #126e90;
-}
-.datepicker table tr td span.active:active,
-.datepicker table tr td span.active:hover:active,
-.datepicker table tr td span.active.disabled:active,
-.datepicker table tr td span.active.disabled:hover:active,
-.datepicker table tr td span.active.active,
-.datepicker table tr td span.active:hover.active,
-.datepicker table tr td span.active.disabled.active,
-.datepicker table tr td span.active.disabled:hover.active,
-.open > .dropdown-toggle.datepicker table tr td span.active,
-.open > .dropdown-toggle.datepicker table tr td span.active:hover,
-.open > .dropdown-toggle.datepicker table tr td span.active.disabled,
-.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
- color: #fff;
- background-color: #1686b0;
- border-color: #126e90;
-}
-.datepicker table tr td span.active:active:hover,
-.datepicker table tr td span.active:hover:active:hover,
-.datepicker table tr td span.active.disabled:active:hover,
-.datepicker table tr td span.active.disabled:hover:active:hover,
-.datepicker table tr td span.active.active:hover,
-.datepicker table tr td span.active:hover.active:hover,
-.datepicker table tr td span.active.disabled.active:hover,
-.datepicker table tr td span.active.disabled:hover.active:hover,
-.open > .dropdown-toggle.datepicker table tr td span.active:hover,
-.open > .dropdown-toggle.datepicker table tr td span.active:hover:hover,
-.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover,
-.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover:hover,
-.datepicker table tr td span.active:active:focus,
-.datepicker table tr td span.active:hover:active:focus,
-.datepicker table tr td span.active.disabled:active:focus,
-.datepicker table tr td span.active.disabled:hover:active:focus,
-.datepicker table tr td span.active.active:focus,
-.datepicker table tr td span.active:hover.active:focus,
-.datepicker table tr td span.active.disabled.active:focus,
-.datepicker table tr td span.active.disabled:hover.active:focus,
-.open > .dropdown-toggle.datepicker table tr td span.active:focus,
-.open > .dropdown-toggle.datepicker table tr td span.active:hover:focus,
-.open > .dropdown-toggle.datepicker table tr td span.active.disabled:focus,
-.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover:focus,
-.datepicker table tr td span.active:active.focus,
-.datepicker table tr td span.active:hover:active.focus,
-.datepicker table tr td span.active.disabled:active.focus,
-.datepicker table tr td span.active.disabled:hover:active.focus,
-.datepicker table tr td span.active.active.focus,
-.datepicker table tr td span.active:hover.active.focus,
-.datepicker table tr td span.active.disabled.active.focus,
-.datepicker table tr td span.active.disabled:hover.active.focus,
-.open > .dropdown-toggle.datepicker table tr td span.active.focus,
-.open > .dropdown-toggle.datepicker table tr td span.active:hover.focus,
-.open > .dropdown-toggle.datepicker table tr td span.active.disabled.focus,
-.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover.focus {
- color: #fff;
- background-color: #126e90;
- border-color: #0b4155;
-}
-.datepicker table tr td span.active:active,
-.datepicker table tr td span.active:hover:active,
-.datepicker table tr td span.active.disabled:active,
-.datepicker table tr td span.active.disabled:hover:active,
-.datepicker table tr td span.active.active,
-.datepicker table tr td span.active:hover.active,
-.datepicker table tr td span.active.disabled.active,
-.datepicker table tr td span.active.disabled:hover.active,
-.open > .dropdown-toggle.datepicker table tr td span.active,
-.open > .dropdown-toggle.datepicker table tr td span.active:hover,
-.open > .dropdown-toggle.datepicker table tr td span.active.disabled,
-.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
- background-image: none;
-}
-.datepicker table tr td span.active.disabled:hover,
-.datepicker table tr td span.active:hover.disabled:hover,
-.datepicker table tr td span.active.disabled.disabled:hover,
-.datepicker table tr td span.active.disabled:hover.disabled:hover,
-.datepicker table tr td span.active[disabled]:hover,
-.datepicker table tr td span.active:hover[disabled]:hover,
-.datepicker table tr td span.active.disabled[disabled]:hover,
-.datepicker table tr td span.active.disabled:hover[disabled]:hover,
-fieldset[disabled] .datepicker table tr td span.active:hover,
-fieldset[disabled] .datepicker table tr td span.active:hover:hover,
-fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
-fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,
-.datepicker table tr td span.active.disabled:focus,
-.datepicker table tr td span.active:hover.disabled:focus,
-.datepicker table tr td span.active.disabled.disabled:focus,
-.datepicker table tr td span.active.disabled:hover.disabled:focus,
-.datepicker table tr td span.active[disabled]:focus,
-.datepicker table tr td span.active:hover[disabled]:focus,
-.datepicker table tr td span.active.disabled[disabled]:focus,
-.datepicker table tr td span.active.disabled:hover[disabled]:focus,
-fieldset[disabled] .datepicker table tr td span.active:focus,
-fieldset[disabled] .datepicker table tr td span.active:hover:focus,
-fieldset[disabled] .datepicker table tr td span.active.disabled:focus,
-fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,
-.datepicker table tr td span.active.disabled.focus,
-.datepicker table tr td span.active:hover.disabled.focus,
-.datepicker table tr td span.active.disabled.disabled.focus,
-.datepicker table tr td span.active.disabled:hover.disabled.focus,
-.datepicker table tr td span.active[disabled].focus,
-.datepicker table tr td span.active:hover[disabled].focus,
-.datepicker table tr td span.active.disabled[disabled].focus,
-.datepicker table tr td span.active.disabled:hover[disabled].focus,
-fieldset[disabled] .datepicker table tr td span.active.focus,
-fieldset[disabled] .datepicker table tr td span.active:hover.focus,
-fieldset[disabled] .datepicker table tr td span.active.disabled.focus,
-fieldset[disabled] .datepicker table tr td span.active.disabled:hover.focus {
- background-color: #1CA8DD;
- border-color: #1997c6;
-}
-.datepicker table tr td span.active .badge,
-.datepicker table tr td span.active:hover .badge,
-.datepicker table tr td span.active.disabled .badge,
-.datepicker table tr td span.active.disabled:hover .badge {
- color: #1CA8DD;
- background-color: #fff;
-}
-.datepicker table tr td span.old,
-.datepicker table tr td span.new {
- color: #cfd2da;
-}
-.datepicker .datepicker-switch {
- width: 145px;
-}
-.datepicker thead tr:first-child th,
-.datepicker tfoot tr th {
- cursor: pointer;
-}
-.datepicker thead tr:first-child th:hover,
-.datepicker tfoot tr th:hover {
- background: #ffffff;
-}
-.datepicker .cw {
- font-size: 10px;
- width: 12px;
- padding: 0 2px 0 5px;
- vertical-align: middle;
-}
-.datepicker thead tr:first-child .cw {
- cursor: default;
- background-color: transparent;
-}
-.input-group.date .input-group-addon {
- cursor: pointer;
-}
-.input-daterange {
- width: 100%;
-}
-.input-daterange input {
- text-align: center;
-}
-.input-daterange input:first-child {
- border-radius: 3px 0 0 3px;
-}
-.input-daterange input:last-child {
- border-radius: 0 3px 3px 0;
-}
-.input-daterange .input-group-addon {
- width: auto;
- min-width: 16px;
- padding: 4px 5px;
- font-weight: normal;
- line-height: 1.5;
- text-align: center;
- text-shadow: 0 1px 0 #fff;
- vertical-align: middle;
- background-color: #4d5364;
- border: solid transparent;
- border-width: 1px 0;
- margin-left: -5px;
- margin-right: -5px;
-}
-.table .header {
- padding-right: 20px;
- font-weight: 300;
-}
-.table .header:hover {
- cursor: pointer;
-}
-.headerSortUp,
-.headerSortDown {
- white-space: nowrap;
- cursor: pointer;
- font-weight: 700 !important;
- color: #1CA8DD !important;
- border-bottom-color: #1CA8DD !important;
-}
-.headerSortUp:after,
-.headerSortDown:after {
- display: inline-block;
- width: 0;
- height: 0;
- content: "";
- margin-right: -10px;
- margin-bottom: 2px;
- margin-left: 5px;
- border-right: 4px solid transparent;
- border-left: 4px solid transparent;
-}
-.headerSortUp:after {
- border-top: 4px solid;
-}
-.headerSortDown:after {
- border-bottom: 4px solid;
-}
-.nav-toggler {
- display: block;
- width: 40px;
- padding: 10px;
- font-size: 16px;
- color: #6f7890;
- background: transparent;
- border: 1px solid #e5e5e5;
- border-radius: 4px;
-}
-.nav-toggler:before {
- display: block;
- content: "";
- width: 100%;
- padding-bottom: .125em;
- border-top: .375em double;
- border-bottom: .125em solid;
-}
-.nav-toggler:hover,
-.nav-toggler:focus {
- color: #fff;
- background-color: #6f7890;
-}
-@media (min-width: 768px) {
- .nav-toggler-sm {
- display: none;
- }
-}
-@media (min-width: 992px) {
- .nav-toggler-md {
- display: none;
- }
-}
-@media (min-width: 1200px) {
- .nav-toggler-lg {
- display: none;
- }
-}
-@media (min-width: 480px) {
- .nav-toggleable-xs {
- display: block !important;
- height: auto !important;
- }
-}
-@media (min-width: 768px) {
- .nav-toggleable-sm {
- display: block !important;
- height: auto !important;
- }
-}
-@media (min-width: 992px) {
- .nav-toggleable-md {
- display: block !important;
- height: auto !important;
- }
-}
-.statlist {
- margin-bottom: 20px;
- padding-left: 0;
- list-style: none;
- border-bottom: 1px solid #434857;
-}
-.statlist-link {
- position: relative;
- display: block;
- padding: 10px;
- color: #fff;
- border-top: 1px solid #434857;
-}
-.statlist-progress {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- z-index: -1;
- display: block;
- background-color: #30343e;
-}
-.statcard-number {
- margin-top: 0;
- margin-bottom: 0;
-}
-.statcard-number .label {
- padding: .125em .5em;
- font-size: 50%;
- vertical-align: middle;
-}
-.statcard-desc {
- font-size: 85%;
- letter-spacing: .15em;
- color: #a9aebd;
- text-transform: uppercase;
-}
-.delta-indicator {
- display: inline-block;
- padding: .4em;
- font-size: 12px;
- vertical-align: middle;
-}
-.delta-positive {
- color: #1BC98E;
-}
-.delta-positive:after {
- display: inline-block;
- width: 0;
- height: 0;
- margin-left: 2px;
- vertical-align: middle;
- border-top: 4px dashed;
- border-top: 4px solid \9;
- border-right: 4px solid transparent;
- border-left: 4px solid transparent;
- content: "";
- border-top: 0;
- border-bottom: 4px solid;
-}
-.delta-negative {
- color: #E64759;
-}
-.delta-negative:after {
- display: inline-block;
- width: 0;
- height: 0;
- margin-left: 2px;
- vertical-align: middle;
- border-top: 4px dashed;
- border-top: 4px solid \9;
- border-right: 4px solid transparent;
- border-left: 4px solid transparent;
- content: "";
-}
-.statcard-primary,
-.statcard-success,
-.statcard-info,
-.statcard-warning,
-.statcard-danger {
- color: #fff;
- border-radius: 3px;
-}
-.statcard-primary .delta-negative,
-.statcard-success .delta-negative,
-.statcard-info .delta-negative,
-.statcard-warning .delta-negative,
-.statcard-danger .delta-negative,
-.statcard-primary .delta-positive,
-.statcard-success .delta-positive,
-.statcard-info .delta-positive,
-.statcard-warning .delta-positive,
-.statcard-danger .delta-positive,
-.statcard-primary .statcard-number,
-.statcard-success .statcard-number,
-.statcard-info .statcard-number,
-.statcard-warning .statcard-number,
-.statcard-danger .statcard-number {
- font-weight: normal;
- color: inherit;
-}
-.statcard-primary .statcard-desc,
-.statcard-success .statcard-desc,
-.statcard-info .statcard-desc,
-.statcard-warning .statcard-desc,
-.statcard-danger .statcard-desc {
- font-weight: normal;
- color: rgba(255, 255, 255, 0.65);
-}
-.statcard-primary .statcard-hr,
-.statcard-success .statcard-hr,
-.statcard-info .statcard-hr,
-.statcard-warning .statcard-hr,
-.statcard-danger .statcard-hr {
- margin-left: -20px;
- margin-right: -20px;
- border-top-color: rgba(255, 255, 255, 0.2);
-}
-.statcard-primary {
- background-color: #1CA8DD;
-}
-.statcard-success {
- background-color: #1BC98E;
-}
-.statcard-info {
- background-color: #9F86FF;
-}
-.statcard-warning {
- background-color: #E4D836;
-}
-.statcard-danger {
- background-color: #E64759;
-}
-canvas {
- display: block;
-}
-.ex-graph {
- display: block;
- margin: 0 auto 15px;
-}
-.ex-line-graph {
- width: 100%;
- height: 273px;
-}
-.hr-divider {
- position: relative;
- font-size: 12px;
- line-height: 20px;
- text-align: center;
- text-transform: uppercase;
-}
-.hr-divider:before {
- position: absolute;
- top: 50%;
- display: block;
- content: "";
- width: 100%;
- height: 1px;
- background-color: #434857;
-}
-.hr-divider-content {
- position: relative;
- z-index: 2;
- display: inline-block;
- padding-left: 1em;
- padding-right: 1em;
- color: #6f7890;
- vertical-align: middle;
- background-color: #252830;
-}
-.hr-divider-heading {
- margin-top: 0;
- margin-bottom: 0;
- font-size: 100%;
- color: inherit;
-}
-.hr-divider-nav > li > a {
- padding-top: 4px;
- padding-bottom: 4px;
- font-size: 100%;
-}
-.hr-divider-nav > .active > a {
- font-weight: 300;
- background: transparent;
-}
-.custom-select {
- display: inline-block;
- padding: 6px 36px 6px 12px;
- font-size: 14px;
- line-height: 1.5;
- color: #cfd2da;
- vertical-align: middle;
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right 12px center;
- background-color: #434857;
- background-clip: padding-box;
- background-size: 8px 10px;
- border: 1px solid rgba(0, 0, 0, 0.15);
- border-radius: 4px;
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- background-image: none \9;
- padding-right: 12px \9;
-}
-.custom-select:focus {
- border-color: #fff;
- outline: 0;
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 255, 255, 0.6);
-}
-.custom-select:disabled {
- background-color: #2d303a;
- cursor: not-allowed;
-}
-.custom-select-sm {
- padding-top: 3px;
- padding-bottom: 3px;
-}
-.custom-control > label {
- padding-left: 25px;
- font-weight: normal;
-}
-.custom-control.radio-inline,
-.custom-control.checkbox-inline {
- padding-left: 25px;
-}
-.custom-control.radio-inline > label,
-.custom-control.checkbox-inline > label {
- padding-left: 0;
-}
-.custom-control input {
- position: absolute;
- opacity: 0;
- z-index: -1;
- /* Put the input behind the label so it doesn't overlay text */
-}
-.custom-control-indicator {
- position: absolute;
- top: 1px;
- left: 0;
- display: block;
- width: 18px;
- height: 18px;
- text-align: center;
- background-color: #434857;
- background-clip: padding-box;
- background-size: 75% 75%;
- background-position: center;
- background-repeat: no-repeat;
- border: 1px solid rgba(0, 0, 0, 0.15);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
-}
-/* Hover state */
-/* Uncomment if you need it, but be aware of the sticky iOS states.
-.control:hover .control-indicator {
- background-color: #ccc;
-}
-*/
-/* Focus */
-.custom-control input:focus ~ .custom-control-indicator {
- box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9;
-}
-/* Checked state */
-.custom-control input:checked ~ .custom-control-indicator {
- background-color: #1CA8DD;
- border-color: #1CA8DD;
- box-shadow: none;
-}
-/* Active */
-.custom-control input:active ~ .custom-control-indicator {
- background-color: #5bc3ea;
- border-color: #5bc3ea;
- box-shadow: none;
-}
-.custom-control input:disabled ~ .custom-control-indicator {
- background-color: #2d303a;
- border-color: #2d303a;
- box-shadow: none;
- cursor: not-allowed;
-}
-/* Checkbox modifiers */
-.form-horizontal .custom-control-indicator {
- margin-top: 6px;
-}
-.custom-checkbox .custom-control-indicator {
- border-radius: .33rem;
-}
-.custom-checkbox input:checked ~ .custom-control-indicator {
- background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTYuNCwxTDUuNywxLjdMMi45LDQuNUwyLjEsMy43TDEuNCwzTDAsNC40bDAuNywwLjdsMS41LDEuNWwwLjcsMC43bDAuNy0wLjdsMy41LTMuNWwwLjctMC43TDYuNCwxTDYuNCwxeiINCgkvPg0KPC9zdmc+DQo=);
-}
-/* Radio modifiers */
-.custom-radio .custom-control-indicator {
- border-radius: 50%;
-}
-.custom-radio input:checked ~ .custom-control-indicator {
- background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTQsMUMyLjMsMSwxLDIuMywxLDRzMS4zLDMsMywzczMtMS4zLDMtM1M1LjcsMSw0LDF6Ii8+DQo8L3N2Zz4NCg==);
-}
-/* Alternately, use another character */
-.custom-control-x input:checked ~ .custom-control-indicator {
- background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iOHB4IiBoZWlnaHQ9IjhweCIgdmlld0JveD0iMCAwIDggOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgOCA4IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0xLjQsMEwwLDEuNGwwLjcsMC43bDEuOCwxLjhMMC43LDUuN0wwLDYuNGwxLjQsMS40bDAuNy0wLjdsMS44LTEuOGwxLjgsMS44bDAuNywwLjdsMS40LTEuNEw3LjEsNS43DQoJTDUuMywzLjlsMS44LTEuOGwwLjctMC43TDYuNCwwTDUuNywwLjdMMy45LDIuNUwyLjEsMC43QzIuMSwwLjcsMS40LDAsMS40LDB6Ii8+DQo8L3N2Zz4NCg==);
-}
-.custom-control-dash input:checked ~ .custom-control-indicator {
- background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iOHB4IiBoZWlnaHQ9IjhweCIgdmlld0JveD0iMCAwIDggOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgOCA4IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0wLDN2Mmg4VjNIMHoiLz4NCjwvc3ZnPg0K);
-}
-.custom-controls-inline .custom-control + .custom-control {
- margin-left: 20px;
-}
-.custom-control-stacked .custom-control:after {
- display: block;
- content: "";
-}
-.radio-inline,
-.checkbox-inline {
- position: relative;
-}
-.radio-inline label,
-.checkbox-inline label {
- margin-bottom: 0;
- cursor: pointer;
-}
-.form-control {
- -webkit-transition: none;
- transition: none;
-}
-.form-control:focus {
- color: #252830;
- background-color: #fff;
- box-shadow: none;
-}
-.input-with-icon {
- position: relative;
- display: inline-block;
- vertical-align: middle;
-}
-.input-with-icon > .form-control {
- padding-left: 30px;
-}
-.input-with-icon > .icon {
- position: absolute;
- top: 7px;
- left: 10px;
- color: #ccc;
-}
-.sidebar .nav-toggleable-sm.in,
-.sidebar .nav-toggleable-md.in {
- padding-bottom: 20px;
-}
-.sidebar-header {
- position: relative;
- padding-bottom: 20px;
-}
-.sidebar-header:before,
-.sidebar-header:after {
- content: " ";
- display: table;
-}
-.sidebar-header:after {
- clear: both;
-}
-.sidebar-header:before,
-.sidebar-header:after {
- content: " ";
- display: table;
-}
-.sidebar-header:after {
- clear: both;
-}
-.sidebar-toggler {
- position: absolute;
- top: 2px;
- right: 0;
- color: #434857;
- border-color: #434857;
-}
-.sidebar-toggler:hover,
-.sidebar-toggler:focus {
- color: #fff;
- background-color: #434857;
-}
-.sidebar-brand {
- float: left;
- font-size: 18px;
- line-height: 1;
- color: #51586a;
-}
-.sidebar-brand > img {
- height: 40px;
-}
-@media (min-width: 768px) {
- .sidebar-brand > img {
- height: 60px;
- }
-}
-.sidebar-brand:hover {
- color: #6f7890;
- text-decoration: none;
-}
-.sidebar-brand-icon {
- font-size: 40px;
-}
-.sidebar-form {
- position: relative;
- margin-bottom: 30px;
-}
-.sidebar-form .form-control {
- padding-left: 15px;
- padding-right: 15px;
-}
-.sidebar-form .btn-link {
- position: absolute;
- top: 0;
- right: 0;
- padding: 9px 10px;
- color: #b7bcc8;
- border: 0;
- line-height: 0;
-}
-.sidebar-form .btn-link .glyphicon {
- vertical-align: text-top;
-}
-@media (min-width: 768px) {
- .sidebar-nav {
- margin-right: 40px;
- }
-}
-.iconav {
- margin-top: -20px;
- margin-bottom: 30px;
-}
-@media (min-width: 768px) {
- .iconav {
- position: fixed;
- top: 0;
- bottom: 0;
- left: 0;
- width: 70px;
- margin-top: 0;
- margin-bottom: 0;
- background-color: #30343e;
- overflow-y: auto;
- -webkit-transform: translate3d(0, 0, 0);
- }
-}
-.iconav .tooltip {
- white-space: nowrap;
-}
-@media (min-width: 768px) {
- .with-iconav > .container,
- .with-iconav > .container-fluid {
- padding-left: 85px;
- }
-}
-.iconav-brand {
- display: block;
- padding-top: 10px;
- padding-bottom: 10px;
- font-size: 18px;
- line-height: 1;
- color: #6f7890;
- text-align: center;
- border-bottom: 0;
- background-color: #0f1013;
-}
-@media (min-width: 768px) {
- .iconav-brand {
- padding-top: 20px;
- padding-bottom: 20px;
- }
-}
-.iconav-brand:hover {
- color: #cfd2da;
- text-decoration: none;
-}
-.iconav-brand-icon {
- font-size: 30px;
-}
-.iconav-nav .label {
- position: absolute;
- top: 8px;
- right: 12px;
- z-index: 5;
- padding: .2em .4em;
- font-size: 11px;
- line-height: 1;
- border-radius: 10px;
- border: 2px solid #30343e;
-}
-.iconav-nav > li {
- float: none;
- display: inline-block;
-}
-@media (min-width: 768px) {
- .iconav-nav > li {
- display: block;
- }
-}
-.iconav-nav > li > a {
- position: relative;
- padding: 10px 12px;
- font-size: 18px;
- color: #51586a;
- text-align: center;
- border-radius: 0;
-}
-@media (min-width: 768px) {
- .iconav-nav > li > a {
- padding: 15px;
- }
-}
-.iconav-nav > li + li {
- margin-left: -3px;
-}
-.iconav-nav > li + li > a {
- border-left: 1px solid #252830;
-}
-@media (min-width: 768px) {
- .iconav-nav > li + li {
- margin-left: 0;
- }
- .iconav-nav > li + li > a {
- border-top: 1px solid #252830;
- border-right: 0;
- }
-}
-.iconav-nav > li.active > a,
-.iconav-nav > li.active > a:focus,
-.iconav-nav > li.active > a:hover,
-.iconav-nav > li.active > a:active {
- color: #6f7890;
- background-color: #252830;
-}
-.iconav-nav > li.active > a .label,
-.iconav-nav > li.active > a:focus .label,
-.iconav-nav > li.active > a:hover .label,
-.iconav-nav > li.active > a:active .label {
- border-color: #252830;
-}
-.iconav-nav > li > a > img {
- width: 26px;
- margin: 0 auto;
-}
-.iconav-nav-label {
- font-size: 11px;
-}
-@media (max-width: 768px) {
- .iconav-slider {
- overflow: auto;
- -webkit-overflow-scrolling: touch;
- white-space: nowrap;
- }
-}
-.dashhead:before,
-.dashhead:after {
- content: " ";
- display: table;
-}
-.dashhead:after {
- clear: both;
-}
-.dashhead:before,
-.dashhead:after {
- content: " ";
- display: table;
-}
-.dashhead:after {
- clear: both;
-}
-@media (min-width: 768px) {
- .dashhead-titles {
- float: left;
- }
-}
-.dashhead-title {
- margin-top: 0;
-}
-.dashhead-subtitle {
- margin-top: 0;
- margin-bottom: 5px;
- font-weight: normal;
- font-size: 85%;
- color: #434857;
- letter-spacing: 1px;
- text-transform: uppercase;
-}
-.dashhead-toolbar {
- margin-left: 0;
-}
-.dashhead-toolbar .input-with-icon {
- width: 100%;
- margin-bottom: 10px;
- margin-left: 0;
-}
-@media (min-width: 768px) {
- .dashhead-toolbar {
- float: right;
- margin-top: 12px;
- }
- .dashhead-toolbar .input-with-icon {
- width: 180px;
- margin-bottom: 0;
- }
-}
-.dashhead-toolbar-divider {
- float: left;
- width: 1px;
- height: 34px;
- margin-left: 10px;
- margin-right: 10px;
- background-color: #434857;
-}
-.dashhead-toolbar-item {
- float: left;
-}
-@media (max-width: 768px) {
- .dashhead-toolbar-item.btn-group-halves {
- width: 100%;
- }
- .dashhead-toolbar-item.btn-group-halves .btn {
- width: 50%;
- margin-left: 0;
- }
- .dashhead-toolbar-item.btn-group-thirds {
- width: 100%;
- }
- .dashhead-toolbar-item.btn-group-thirds .btn {
- width: 33%;
- margin-left: 0;
- }
- .dashhead-toolbar-item.btn-group-thirds .btn:last-child {
- width: 34%;
- }
- .dashhead-toolbar-item.btn-group-fourths {
- width: 100%;
- }
- .dashhead-toolbar-item.btn-group-fourths .btn {
- width: 25%;
- margin-left: 0;
- }
-}
-.btn-pill {
- padding-left: 1.25em;
- padding-right: 1.25em;
- border-radius: 1000em;
-}
-.btn-square {
- border-radius: 0;
-}
-.btn-default-outline {
- color: #51586a;
- background-color: transparent;
- border-color: #51586a;
-}
-.btn-default-outline:focus,
-.btn-default-outline.focus,
-.btn-default-outline:hover,
-.btn-default-outline:active,
-.btn-default-outline.active,
-.open > .dropdown-toggle.btn-default-outline {
- color: #fff;
- background-color: #51586a;
- box-shadow: none;
-}
-.btn-default-outline.disabled,
-.btn-default-outline[disabled],
-fieldset[disabled] .btn-default-outline,
-.btn-default-outline.disabled:hover,
-.btn-default-outline[disabled]:hover,
-fieldset[disabled] .btn-default-outline:hover,
-.btn-default-outline.disabled:focus,
-.btn-default-outline[disabled]:focus,
-fieldset[disabled] .btn-default-outline:focus,
-.btn-default-outline.disabled.focus,
-.btn-default-outline[disabled].focus,
-fieldset[disabled] .btn-default-outline.focus,
-.btn-default-outline.disabled:active,
-.btn-default-outline[disabled]:active,
-fieldset[disabled] .btn-default-outline:active,
-.btn-default-outline.disabled.active,
-.btn-default-outline[disabled].active,
-fieldset[disabled] .btn-default-outline.active {
- border-color: #51586a;
-}
-.btn-default-outline .badge {
- color: #fff;
- background-color: #51586a;
-}
-.btn-primary-outline {
- color: #1997c6;
- background-color: transparent;
- border-color: #1997c6;
-}
-.btn-primary-outline:focus,
-.btn-primary-outline.focus,
-.btn-primary-outline:hover,
-.btn-primary-outline:active,
-.btn-primary-outline.active,
-.open > .dropdown-toggle.btn-primary-outline {
- color: #fff;
- background-color: #1997c6;
- box-shadow: none;
-}
-.btn-primary-outline.disabled,
-.btn-primary-outline[disabled],
-fieldset[disabled] .btn-primary-outline,
-.btn-primary-outline.disabled:hover,
-.btn-primary-outline[disabled]:hover,
-fieldset[disabled] .btn-primary-outline:hover,
-.btn-primary-outline.disabled:focus,
-.btn-primary-outline[disabled]:focus,
-fieldset[disabled] .btn-primary-outline:focus,
-.btn-primary-outline.disabled.focus,
-.btn-primary-outline[disabled].focus,
-fieldset[disabled] .btn-primary-outline.focus,
-.btn-primary-outline.disabled:active,
-.btn-primary-outline[disabled]:active,
-fieldset[disabled] .btn-primary-outline:active,
-.btn-primary-outline.disabled.active,
-.btn-primary-outline[disabled].active,
-fieldset[disabled] .btn-primary-outline.active {
- border-color: #1997c6;
-}
-.btn-primary-outline .badge {
- color: #fff;
- background-color: #1997c6;
-}
-.btn-success-outline {
- color: #18b37e;
- background-color: transparent;
- border-color: #18b37e;
-}
-.btn-success-outline:focus,
-.btn-success-outline.focus,
-.btn-success-outline:hover,
-.btn-success-outline:active,
-.btn-success-outline.active,
-.open > .dropdown-toggle.btn-success-outline {
- color: #fff;
- background-color: #18b37e;
- box-shadow: none;
-}
-.btn-success-outline.disabled,
-.btn-success-outline[disabled],
-fieldset[disabled] .btn-success-outline,
-.btn-success-outline.disabled:hover,
-.btn-success-outline[disabled]:hover,
-fieldset[disabled] .btn-success-outline:hover,
-.btn-success-outline.disabled:focus,
-.btn-success-outline[disabled]:focus,
-fieldset[disabled] .btn-success-outline:focus,
-.btn-success-outline.disabled.focus,
-.btn-success-outline[disabled].focus,
-fieldset[disabled] .btn-success-outline.focus,
-.btn-success-outline.disabled:active,
-.btn-success-outline[disabled]:active,
-fieldset[disabled] .btn-success-outline:active,
-.btn-success-outline.disabled.active,
-.btn-success-outline[disabled].active,
-fieldset[disabled] .btn-success-outline.active {
- border-color: #18b37e;
-}
-.btn-success-outline .badge {
- color: #fff;
- background-color: #18b37e;
-}
-.btn-info-outline {
- color: #8b6cff;
- background-color: transparent;
- border-color: #8b6cff;
-}
-.btn-info-outline:focus,
-.btn-info-outline.focus,
-.btn-info-outline:hover,
-.btn-info-outline:active,
-.btn-info-outline.active,
-.open > .dropdown-toggle.btn-info-outline {
- color: #fff;
- background-color: #8b6cff;
- box-shadow: none;
-}
-.btn-info-outline.disabled,
-.btn-info-outline[disabled],
-fieldset[disabled] .btn-info-outline,
-.btn-info-outline.disabled:hover,
-.btn-info-outline[disabled]:hover,
-fieldset[disabled] .btn-info-outline:hover,
-.btn-info-outline.disabled:focus,
-.btn-info-outline[disabled]:focus,
-fieldset[disabled] .btn-info-outline:focus,
-.btn-info-outline.disabled.focus,
-.btn-info-outline[disabled].focus,
-fieldset[disabled] .btn-info-outline.focus,
-.btn-info-outline.disabled:active,
-.btn-info-outline[disabled]:active,
-fieldset[disabled] .btn-info-outline:active,
-.btn-info-outline.disabled.active,
-.btn-info-outline[disabled].active,
-fieldset[disabled] .btn-info-outline.active {
- border-color: #8b6cff;
-}
-.btn-info-outline .badge {
- color: #fff;
- background-color: #8b6cff;
-}
-.btn-warning-outline {
- color: #e1d420;
- background-color: transparent;
- border-color: #e1d420;
-}
-.btn-warning-outline:focus,
-.btn-warning-outline.focus,
-.btn-warning-outline:hover,
-.btn-warning-outline:active,
-.btn-warning-outline.active,
-.open > .dropdown-toggle.btn-warning-outline {
- color: #fff;
- background-color: #e1d420;
- box-shadow: none;
-}
-.btn-warning-outline.disabled,
-.btn-warning-outline[disabled],
-fieldset[disabled] .btn-warning-outline,
-.btn-warning-outline.disabled:hover,
-.btn-warning-outline[disabled]:hover,
-fieldset[disabled] .btn-warning-outline:hover,
-.btn-warning-outline.disabled:focus,
-.btn-warning-outline[disabled]:focus,
-fieldset[disabled] .btn-warning-outline:focus,
-.btn-warning-outline.disabled.focus,
-.btn-warning-outline[disabled].focus,
-fieldset[disabled] .btn-warning-outline.focus,
-.btn-warning-outline.disabled:active,
-.btn-warning-outline[disabled]:active,
-fieldset[disabled] .btn-warning-outline:active,
-.btn-warning-outline.disabled.active,
-.btn-warning-outline[disabled].active,
-fieldset[disabled] .btn-warning-outline.active {
- border-color: #e1d420;
-}
-.btn-warning-outline .badge {
- color: #fff;
- background-color: #e1d420;
-}
-.btn-danger-outline {
- color: #e33145;
- background-color: transparent;
- border-color: #e33145;
-}
-.btn-danger-outline:focus,
-.btn-danger-outline.focus,
-.btn-danger-outline:hover,
-.btn-danger-outline:active,
-.btn-danger-outline.active,
-.open > .dropdown-toggle.btn-danger-outline {
- color: #fff;
- background-color: #e33145;
- box-shadow: none;
-}
-.btn-danger-outline.disabled,
-.btn-danger-outline[disabled],
-fieldset[disabled] .btn-danger-outline,
-.btn-danger-outline.disabled:hover,
-.btn-danger-outline[disabled]:hover,
-fieldset[disabled] .btn-danger-outline:hover,
-.btn-danger-outline.disabled:focus,
-.btn-danger-outline[disabled]:focus,
-fieldset[disabled] .btn-danger-outline:focus,
-.btn-danger-outline.disabled.focus,
-.btn-danger-outline[disabled].focus,
-fieldset[disabled] .btn-danger-outline.focus,
-.btn-danger-outline.disabled:active,
-.btn-danger-outline[disabled]:active,
-fieldset[disabled] .btn-danger-outline:active,
-.btn-danger-outline.disabled.active,
-.btn-danger-outline[disabled].active,
-fieldset[disabled] .btn-danger-outline.active {
- border-color: #e33145;
-}
-.btn-danger-outline .badge {
- color: #fff;
- background-color: #e33145;
-}
-.custom-select {
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEX////////////////1pQ5zAAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC);
-}
-.custom-select:focus {
- color: #252830;
- background-color: #fff;
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC);
- box-shadow: none;
-}
-.custom-checkbox input:checked ~ .custom-control-indicator {
- background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSItMzAxIDM5MyA4IDgiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgLTMwMSAzOTMgOCA4IiB4bWw6c3BhY2U9InByZXNlcnZlIj48cGF0aCBmaWxsPSIjMjUyODMwIiBkPSJNLTI5NC42LDM5NGwtMC43LDAuN2wtMi44LDIuOGwtMC44LTAuOGwtMC43LTAuN2wtMS40LDEuNGwwLjcsMC43bDEuNSwxLjVsMC43LDAuN2wwLjctMC43bDMuNS0zLjVsMC43LTAuN0MtMjkzLjEsMzk1LjQtMjk0LjYsMzk0LTI5NC42LDM5NHoiLz48L3N2Zz4=);
-}
-.custom-radio input:checked ~ .custom-control-indicator {
- background-clip: border-box;
- background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSItMzAxIDM5MyA4IDgiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgLTMwMSAzOTMgOCA4IiB4bWw6c3BhY2U9InByZXNlcnZlIj48cGF0aCBmaWxsPSIjMjUyODMwIiBkPSJNLTI5NywzOTRjLTEuNywwLTMsMS4zLTMsM3MxLjMsMywzLDNzMy0xLjMsMy0zUy0yOTUuMywzOTQtMjk3LDM5NHoiLz48L3N2Zz4=);
-}
-.popover,
-.popover-title,
-.popover h1,
-.popover h2,
-.popover h3,
-.popover h4,
-.popover h5,
-.popover h6,
-.popover .h1,
-.popover .h2,
-.popover .h3,
-.popover .h4,
-.popover .h5,
-.popover .h6,
-.popover small,
-.popover .small,
-.modal,
-.modal-title,
-.modal h1,
-.modal h2,
-.modal h3,
-.modal h4,
-.modal h5,
-.modal h6,
-.modal .h1,
-.modal .h2,
-.modal .h3,
-.modal .h4,
-.modal .h5,
-.modal .h6,
-.modal small,
-.modal .small {
- color: #51586a;
-}
-.popover .form-control,
-.modal .form-control {
- color: #51586a;
- border-color: rgba(0, 0, 0, 0.2);
- background: #fff;
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-}
-.popover .form-control:focus,
-.modal .form-control:focus {
- border-color: #1CA8DD;
- outline: 0;
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(28, 168, 221, 0.6);
-}
-/* simple contextual color overrides */
-.nav > li > a {
- color: #cfd2da;
-}
-.nav > li > a:hover,
-.nav > li > a:focus {
- color: #fff;
-}
-.form-control {
- box-shadow: none;
-}
-.has-success .form-control,
-.has-warning .form-control,
-.has-error .form-control,
-.has-success .form-control:focus,
-.has-warning .form-control:focus,
-.has-error .form-control:focus {
- border-color: #434857;
- box-shadow: none;
-}
-.has-success .input-group-addon,
-.has-warning .input-group-addon,
-.has-error .input-group-addon {
- color: #fff;
- background-color: #4d5364;
- border-color: transparent;
-}
-
-/*# sourceMappingURL=toolkit-inverse.css.map */
diff --git a/src/toolkit-inverse.css.map b/src/toolkit-inverse.css.map
deleted file mode 100644
index 02b512b..0000000
--- a/src/toolkit-inverse.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["toolkit-inverse.css","bootstrap/normalize.less","bootstrap/print.less","bootstrap/scaffolding.less","bootstrap/mixins/vendor-prefixes.less","bootstrap/mixins/tab-focus.less","bootstrap/mixins/image.less","bootstrap/type.less","bootstrap/mixins/text-emphasis.less","bootstrap/mixins/background-variant.less","bootstrap/mixins/text-overflow.less","bootstrap/code.less","bootstrap/tables.less","bootstrap/mixins/table-row.less","bootstrap/forms.less","bootstrap/mixins/forms.less","bootstrap/mixins/grid.less","bootstrap/buttons.less","bootstrap/mixins/buttons.less","bootstrap/mixins/opacity.less","bootstrap/grid.less","bootstrap/mixins/grid-framework.less","bootstrap/component-animations.less","bootstrap/dropdowns.less","bootstrap/mixins/nav-divider.less","bootstrap/mixins/reset-filter.less","bootstrap/button-groups.less","bootstrap/mixins/border-radius.less","bootstrap/input-groups.less","bootstrap/navs.less","bootstrap/navbar.less","bootstrap/mixins/nav-vertical-align.less","bootstrap/utilities.less","bootstrap/breadcrumbs.less","bootstrap/pagination.less","bootstrap/mixins/pagination.less","bootstrap/pager.less","bootstrap/labels.less","bootstrap/mixins/labels.less","bootstrap/badges.less","bootstrap/jumbotron.less","bootstrap/thumbnails.less","bootstrap/alerts.less","bootstrap/mixins/alerts.less","bootstrap/progress-bars.less","bootstrap/mixins/gradients.less","bootstrap/mixins/progress-bar.less","bootstrap/media.less","bootstrap/list-group.less","bootstrap/mixins/list-group.less","bootstrap/panels.less","bootstrap/mixins/panels.less","bootstrap/responsive-embed.less","bootstrap/wells.less","bootstrap/close.less","bootstrap/modals.less","bootstrap/tooltip.less","bootstrap/mixins/reset-text.less","bootstrap/popovers.less","bootstrap/carousel.less","bootstrap/mixins/clearfix.less","bootstrap/mixins/center-block.less","bootstrap/mixins/hide-text.less","bootstrap/responsive-utilities.less","bootstrap/mixins/responsive-visibility.less","custom/type-custom.less","custom/alerts-custom.less","custom/buttons-custom.less","custom/nav-heading.less","custom/nav-bordered.less","custom/navbar-utilities.less","custom/navs-custom.less","custom/list-group-custom.less","custom/modals-custom.less","custom/tables-custom.less","custom/container-custom.less","custom/icons.less","custom/flex-table.less","custom/utilities-spacer.less","custom/text-inherit.less","custom/datepicker.less","custom/tablesorter.less","custom/nav-toggler.less","custom/statlist.less","custom/statcard.less","custom/graphs.less","custom/divider.less","custom/forms-custom.less","custom/input-icon.less","custom/sidebar.less","custom/iconav.less","custom/dashhead.less","custom/buttons-radius.less","custom/buttons-outline.less","custom/mixins/buttons-outline.less","toolkit-inverse.less"],"names":[],"mappings":"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;EACE,UAAA;CrBsgEH;AqBvgEC;EACE,mBAAA;CrBygEH;AqB1gEC;EACE,mBAAA;CrB4gEH;AqB7gEC;EACE,UAAA;CrB+gEH;AqBhhEC;EACE,mBAAA;CrBkhEH;AqBnhEC;EACE,mBAAA;CrBqhEH;AqBthEC;EACE,UAAA;CrBwhEH;AqBzhEC;EACE,mBAAA;CrB2hEH;AqB5hEC;EACE,kBAAA;CrB8hEH;AqB1hEC;EACE,WAAA;CrB4hEH;AqB9gEC;EACE,kBAAA;CrBghEH;AqBjhEC;EACE,0BAAA;CrBmhEH;AqBphEC;EACE,0BAAA;CrBshEH;AqBvhEC;EACE,iBAAA;CrByhEH;AqB1hEC;EACE,0BAAA;CrB4hEH;AqB7hEC;EACE,0BAAA;CrB+hEH;AqBhiEC;EACE,iBAAA;CrBkiEH;AqBniEC;EACE,0BAAA;CrBqiEH;AqBtiEC;EACE,0BAAA;CrBwiEH;AqBziEC;EACE,iBAAA;CrB2iEH;AqB5iEC;EACE,0BAAA;CrB8iEH;AqB/iEC;EACE,yBAAA;CrBijEH;AqBljEC;EACE,gBAAA;CrBojEH;AoBpjED;EClCI;IACE,YAAA;GrBylEH;EqBllED;IACE,YAAA;GrBolED;EqBrlED;IACE,oBAAA;GrBulED;EqBxlED;IACE,oBAAA;GrB0lED;EqB3lED;IACE,WAAA;GrB6lED;EqB9lED;IACE,oBAAA;GrBgmED;EqBjmED;IACE,oBAAA;GrBmmED;EqBpmED;IACE,WAAA;GrBsmED;EqBvmED;IACE,oBAAA;GrBymED;EqB1mED;IACE,oBAAA;GrB4mED;EqB7mED;IACE,WAAA;GrB+mED;EqBhnED;IACE,oBAAA;GrBknED;EqBnnED;IACE,mBAAA;GrBqnED;EqBvmED;IACE,YAAA;GrBymED;EqB1mED;IACE,oBAAA;GrB4mED;EqB7mED;IACE,oBAAA;GrB+mED;EqBhnED;IACE,WAAA;GrBknED;EqBnnED;IACE,oBAAA;GrBqnED;EqBtnED;IACE,oBAAA;GrBwnED;EqBznED;IACE,WAAA;GrB2nED;EqB5nED;IACE,oBAAA;GrB8nED;EqB/nED;IACE,oBAAA;GrBioED;EqBloED;IACE,WAAA;GrBooED;EqBroED;IACE,oBAAA;GrBuoED;EqBxoED;IACE,mBAAA;GrB0oED;EqBtoED;IACE,YAAA;GrBwoED;EqBxpED;IACE,WAAA;GrB0pED;EqB3pED;IACE,mBAAA;GrB6pED;EqB9pED;IACE,mBAAA;GrBgqED;EqBjqED;IACE,UAAA;GrBmqED;EqBpqED;IACE,mBAAA;GrBsqED;EqBvqED;IACE,mBAAA;GrByqED;EqB1qED;IACE,UAAA;GrB4qED;EqB7qED;IACE,mBAAA;GrB+qED;EqBhrED;IACE,mBAAA;GrBkrED;EqBnrED;IACE,UAAA;GrBqrED;EqBtrED;IACE,mBAAA;GrBwrED;EqBzrED;IACE,kBAAA;GrB2rED;EqBvrED;IACE,WAAA;GrByrED;EqB3qED;IACE,kBAAA;GrB6qED;EqB9qED;IACE,0BAAA;GrBgrED;EqBjrED;IACE,0BAAA;GrBmrED;EqBprED;IACE,iBAAA;GrBsrED;EqBvrED;IACE,0BAAA;GrByrED;EqB1rED;IACE,0BAAA;GrB4rED;EqB7rED;IACE,iBAAA;GrB+rED;EqBhsED;IACE,0BAAA;GrBksED;EqBnsED;IACE,0BAAA;GrBqsED;EqBtsED;IACE,iBAAA;GrBwsED;EqBzsED;IACE,0BAAA;GrB2sED;EqB5sED;IACE,yBAAA;GrB8sED;EqB/sED;IACE,gBAAA;GrBitED;CACF;AoBzsED;EC3CI;IACE,YAAA;GrBuvEH;EqBhvED;IACE,YAAA;GrBkvED;EqBnvED;IACE,oBAAA;GrBqvED;EqBtvED;IACE,oBAAA;GrBwvED;EqBzvED;IACE,WAAA;GrB2vED;EqB5vED;IACE,oBAAA;GrB8vED;EqB/vED;IACE,oBAAA;GrBiwED;EqBlwED;IACE,WAAA;GrBowED;EqBrwED;IACE,oBAAA;GrBuwED;EqBxwED;IACE,oBAAA;GrB0wED;EqB3wED;IACE,WAAA;GrB6wED;EqB9wED;IACE,oBAAA;GrBgxED;EqBjxED;IACE,mBAAA;GrBmxED;EqBrwED;IACE,YAAA;GrBuwED;EqBxwED;IACE,oBAAA;GrB0wED;EqB3wED;IACE,oBAAA;GrB6wED;EqB9wED;IACE,WAAA;GrBgxED;EqBjxED;IACE,oBAAA;GrBmxED;EqBpxED;IACE,oBAAA;GrBsxED;EqBvxED;IACE,WAAA;GrByxED;EqB1xED;IACE,oBAAA;GrB4xED;EqB7xED;IACE,oBAAA;GrB+xED;EqBhyED;IACE,WAAA;GrBkyED;EqBnyED;IACE,oBAAA;GrBqyED;EqBtyED;IACE,mBAAA;GrBwyED;EqBpyED;IACE,YAAA;GrBsyED;EqBtzED;IACE,WAAA;GrBwzED;EqBzzED;IACE,mBAAA;GrB2zED;EqB5zED;IACE,mBAAA;GrB8zED;EqB/zED;IACE,UAAA;GrBi0ED;EqBl0ED;IACE,mBAAA;GrBo0ED;EqBr0ED;IACE,mBAAA;GrBu0ED;EqBx0ED;IACE,UAAA;GrB00ED;EqB30ED;IACE,mBAAA;GrB60ED;EqB90ED;IACE,mBAAA;GrBg1ED;EqBj1ED;IACE,UAAA;GrBm1ED;EqBp1ED;IACE,mBAAA;GrBs1ED;EqBv1ED;IACE,kBAAA;GrBy1ED;EqBr1ED;IACE,WAAA;GrBu1ED;EqBz0ED;IACE,kBAAA;GrB20ED;EqB50ED;IACE,0BAAA;GrB80ED;EqB/0ED;IACE,0BAAA;GrBi1ED;EqBl1ED;IACE,iBAAA;GrBo1ED;EqBr1ED;IACE,0BAAA;GrBu1ED;EqBx1ED;IACE,0BAAA;GrB01ED;EqB31ED;IACE,iBAAA;GrB61ED;EqB91ED;IACE,0BAAA;GrBg2ED;EqBj2ED;IACE,0BAAA;GrBm2ED;EqBp2ED;IACE,iBAAA;GrBs2ED;EqBv2ED;IACE,0BAAA;GrBy2ED;EqB12ED;IACE,yBAAA;GrB42ED;EqB72ED;IACE,gBAAA;GrB+2ED;CACF;AoBp2ED;EC9CI;IACE,YAAA;GrBq5EH;EqB94ED;IACE,YAAA;GrBg5ED;EqBj5ED;IACE,oBAAA;GrBm5ED;EqBp5ED;IACE,oBAAA;GrBs5ED;EqBv5ED;IACE,WAAA;GrBy5ED;EqB15ED;IACE,oBAAA;GrB45ED;EqB75ED;IACE,oBAAA;GrB+5ED;EqBh6ED;IACE,WAAA;GrBk6ED;EqBn6ED;IACE,oBAAA;GrBq6ED;EqBt6ED;IACE,oBAAA;GrBw6ED;EqBz6ED;IACE,WAAA;GrB26ED;EqB56ED;IACE,oBAAA;GrB86ED;EqB/6ED;IACE,mBAAA;GrBi7ED;EqBn6ED;IACE,YAAA;GrBq6ED;EqBt6ED;IACE,oBAAA;GrBw6ED;EqBz6ED;IACE,oBAAA;GrB26ED;EqB56ED;IACE,WAAA;GrB86ED;EqB/6ED;IACE,oBAAA;GrBi7ED;EqBl7ED;IACE,oBAAA;GrBo7ED;EqBr7ED;IACE,WAAA;GrBu7ED;EqBx7ED;IACE,oBAAA;GrB07ED;EqB37ED;IACE,oBAAA;GrB67ED;EqB97ED;IACE,WAAA;GrBg8ED;EqBj8ED;IACE,oBAAA;GrBm8ED;EqBp8ED;IACE,mBAAA;GrBs8ED;EqBl8ED;IACE,YAAA;GrBo8ED;EqBp9ED;IACE,WAAA;GrBs9ED;EqBv9ED;IACE,mBAAA;GrBy9ED;EqB19ED;IACE,mBAAA;GrB49ED;EqB79ED;IACE,UAAA;GrB+9ED;EqBh+ED;IACE,mBAAA;GrBk+ED;EqBn+ED;IACE,mBAAA;GrBq+ED;EqBt+ED;IACE,UAAA;GrBw+ED;EqBz+ED;IACE,mBAAA;GrB2+ED;EqB5+ED;IACE,mBAAA;GrB8+ED;EqB/+ED;IACE,UAAA;GrBi/ED;EqBl/ED;IACE,mBAAA;GrBo/ED;EqBr/ED;IACE,kBAAA;GrBu/ED;EqBn/ED;IACE,WAAA;GrBq/ED;EqBv+ED;IACE,kBAAA;GrBy+ED;EqB1+ED;IACE,0BAAA;GrB4+ED;EqB7+ED;IACE,0BAAA;GrB++ED;EqBh/ED;IACE,iBAAA;GrBk/ED;EqBn/ED;IACE,0BAAA;GrBq/ED;EqBt/ED;IACE,0BAAA;GrBw/ED;EqBz/ED;IACE,iBAAA;GrB2/ED;EqB5/ED;IACE,0BAAA;GrB8/ED;EqB//ED;IACE,0BAAA;GrBigFD;EqBlgFD;IACE,iBAAA;GrBogFD;EqBrgFD;IACE,0BAAA;GrBugFD;EqBxgFD;IACE,yBAAA;GrB0gFD;EqB3gFD;IACE,gBAAA;GrB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EztMD;EAA6B,iBAAA;C5E4tM5B;A4E3tMD;EAA2B,iBAAA;C5E8tM1B;A4E7tMD;EAAwB,iBAAA;C5EguMvB;A4E/tMD;EAAsC,iBAAA;C5EkuMrC;A4EjuMD;EAAsC,iBAAA;C5EouMrC;A4EnuMD;EAAuC,iBAAA;C5EsuMtC;A4EruMD;EAAoC,iBAAA;C5EwuMnC;A4EvuMD;EAA0B,iBAAA;C5E0uMzB;A4EzuMD;EAAgC,iBAAA;C5E4uM/B;A4E3uMD;EAA4B,iBAAA;C5E8uM3B;A4E7uMD;EAAoB,iBAAA;C5EgvMnB;A4E/uMD;EAAqB,iBAAA;C5EkvMpB;A4EjvMD;EAAyB,iBAAA;C5EovMxB;A4EnvMD;EAAwB,iBAAA;C5EsvMvB;A4ErvMD;EAAuB,iBAAA;C5EwvMtB;A4EvvMD;EAA2B,iBAAA;C5E0vM1B;A4EzvMD;EAAuB,iBAAA;C5E4vMtB;A4E3vMD;EAAoB,iBAAA;C5E8vMnB;A4E7vMD;EAA0B,iBAAA;C5EgwMzB;A4E/vMD;EAAqB,iBAAA;C5EkwMpB;A4EjwMD;EAAoB,iBAAA;C5EowMnB;A4EnwMD;EAAwB,iBAAA;C5EswMvB;A4ErwMD;EAAyB,iBAAA;C5EwwMxB;A4EvwMD;EAAoB,iBAAA;C5E0wMnB;A4EzwMD;EAAmB,iBAAA;C5E4wMlB;A4E3wMD;EAAyB,iBAAA;C5E8wMxB;A4E7wMD;EAAuB,iBAAA;C5EgxMtB;A4E/wMD;EAAqB,iBAAA;C5EkxMpB;A4EjxMD;EAAsB,iBAAA;C5EoxMrB;A4EnxMD;EAAmB,iBAAA;C5EsxMlB;A4ErxMD;EAAoB,iBAAA;C5EwxMnB;A4EvxMD;EAA0B,iBAAA;C5E0xMzB;A4EzxMD;EAAwB,iBAAA;C5E4xMvB;A4E3xMD;EAAsB,iBAAA;C5E8xMrB;A4E7xMD;EAAmB,iBAAA;C5EgyMlB;A4E/xMD;EAAoB,iBAAA;C5EkyMnB;A4EjyMD;EAAqB,iBAAA;C5EoyMpB;A4EnyMD;EAA4B,iBAAA;C5EsyM3B;A4EryMD;EAA4B,iBAAA;C5EwyM3B;A4EvyMD;EAA6B,iBAAA;C5E0yM5B;A4EzyMD;EAAkC,iBAAA;C5E4yMjC;A4E3yMD;EAAkC,iBAAA;C5E8yMjC;A4E7yMD;EAAmC,iBAAA;C5EgzMlC;A4E/yMD;EAAgC,iBAAA;C5EkzM/B;A4EjzMD;EAAiC,iBAAA;C5EozMhC;A4EnzMD;EAAiC,iBAAA;C5EszMhC;A4ErzMD;EAAkC,iBAAA;C5EwzMjC;A4EvzMD;EAA+B,iBAAA;C5E0zM9B;A4EzzMD;EAA0B,iBAAA;C5E4zMzB;A4E3zMD;EAAwC,iBAAA;C5E8zMvC;A4E7zMD;EAAwC,iBAAA;C5Eg0MvC;A4E/zMD;EAAyC,iBAAA;C5Ek0MxC;A4Ej0MD;EAAsC,iBAAA;C5Eo0MrC;A4En0MD;EAAiC,iBAAA;C5Es0MhC;A4Er0MD;EAAiC,iBAAA;C5Ew0MhC;A4Ev0MD;EAAgC,iBAAA;C5E00M/B;A4Ez0MD;EAAsB,iBAAA;C5E40MrB;A4E30MD;EAA8B,iBAAA;C5E80M7B;A4E70MD;EAA4B,iBAAA;C5Eg1M3B;A4E/0MD;EAAgC,iBAAA;C5Ek1M/B;A4Ej1MD;EAAyB,iBAAA;C5Eo1MxB;A4En1MD;EAAqB,iBAAA;C5Es1MpB;A4Er1MD;EAAqB,iBAAA;C5Ew1MpB;A4Ev1MD;EAAoB,iBAAA;C5E01MnB;A4Ez1MD;EAAmB,iBAAA;C5E41MlB;A4E31MD;EAAuB,iBAAA;C5E81MtB;A4E71MD;EAAuB,iBAAA;C5Eg2MtB;A4E/1MD;EAAwC,iBAAA;C5Ek2MvC;A4Ej2MD;EAAuC,iBAAA;C5Eo2MtC;A4En2MD;EAAwC,iBAAA;C5Es2MvC;A4Er2MD;EAA+B,iBAAA;C5Ew2M9B;A4Ev2MD;EAA+B,iBAAA;C5E02M9B;A4Ez2MD;EAA+B,iBAAA;C5E42M9B;A4E32MD;EAAiC,iBAAA;C5E82MhC;A4E72MD;EAA+B,iBAAA;C5Eg3M9B;A4E/2MD;EAAiC,iBAAA;C5Ek3MhC;A4Ej3MD;EAAoB,iBAAA;C5Eo3MnB;A4En3MD;EAA8B,iBAAA;C5Es3M7B;A4Er3MD;EAA4C,iBAAA;C5Ew3M3C;A4Ev3MD;EAAyC,iBAAA;C5E03MxC;A4Ez3MD;EAAiD,iBAAA;C5E43MhD;A4E33MD;EAAiD,iBAAA;C5E83MhD;A4E73MD;EAA8C,iBAAA;C5Eg4M7C;A4E/3MD;EAAsC,iBAAA;C5Ek4MrC;A4Ej4MD;EAAsC,iBAAA;C5Eo4MrC;A4En4MD;EAA2C,iBAAA;C5Es4M1C;A4Er4MD;EAAgC,iBAAA;C5Ew4M/B;A4Ev4MD;EAA2B,iBAAA;C5E04M1B;A4Ez4MD;EAAsB,iBAAA;C5E44MrB;A4E34MD;EAAoB,iBAAA;C5E84MnB;A4E74MD;EAAqB,iBAAA;C5Eg5MpB;A4E/4MD;EAAmB,iBAAA;C5Ek5MlB;A4Ej5MD;EAAkB,iBAAA;C5Eo5MjB;A4En5MD;EAAqB,iBAAA;C5Es5MpB;A4Er5MD;EAAwB,iBAAA;C5Ew5MvB;A4Ev5MD;EAAwB,iBAAA;C5E05MvB;A4Ez5MD;EAAyB,iBAAA;C5E45MxB;A4E35MD;EAAkC,iBAAA;C5E85MjC;A4E75MD;EAAwB,iBAAA;C5Eg6MvB;A4E/5MD;EAAyB,iBAAA;C5Ek6MxB;A4Ej6MD;EAA0B,iBAAA;C5Eo6MzB;A4En6MD;EAAqC,iBAAA;C5Es6MpC;A4Er6MD;EAAmC,iBAAA;C5Ew6MlC;A4Ev6MD;EAAmC,iBAAA;C5E06MlC;A4Ez6MD;EAAiC,iBAAA;C5E46MhC;A4E36MD;EAAwB,iBAAA;C5E86MvB;A4E76MD;EAAoC,iBAAA;C5Eg7MnC;A4E/6MD;EAAwB,iBAAA;C5Ek7MvB;A4Ej7MD;EAAqB,iBAAA;C5Eo7MpB;A4En7MD;EAAqB,iBAAA;C5Es7MpB;A4Er7MD;EAAoB,iBAAA;C5Ew7MnB;A4Ev7MD;EAAuB,iBAAA;C5E07MtB;A4Ez7MD;EAAoB,iBAAA;C5E47MnB;A4E37MD;EAAqB,iBAAA;C5E87MpB;A4E77MD;EAA2B,iBAAA;C5Eg8M1B;A4E/7MD;EAA2B,iBAAA;C5Ek8M1B;A4Ej8MD;EAA6B,iBAAA;C5Eo8M5B;A4En8MD;EAAyB,iBAAA;C5Es8MxB;A4Er8MD;EAAqB,iBAAA;C5Ew8MpB;A4Ev8MD;EAAsB,iBAAA;C5E08MrB;A4Ez8MD;EAAwB,iBAAA;C5E48MvB;A4E38MD;EAAsB,iBAAA;C5E88MrB;A4E78MD;EAA6B,iBAAA;C5Eg9M5B;A4E/8MD;EAAmB,iBAAA;C5Ek9MlB;A4Ej9MD;EAAoC,iBAAA;C5Eo9MnC;A4En9MD;EAAwB,iBAAA;C5Es9MvB;A4Er9MD;EAAuB,iBAAA;C5Ew9MtB;A4Ev9MD;EAA2B,iBAAA;C5E09M1B;A4Ez9MD;EAAoB,iBAAA;C5E49MnB;A4E39MD;EAAqB,iBAAA;C5E89MpB;A4E79MD;EAA0B,iBAAA;C5Eg+MzB;A4E/9MD;EAA0B,iBAAA;C5Ek+MzB;A4Ej+MD;EAAsB,iBAAA;C5Eo+MrB;A4En+MD;EAAkC,iBAAA;C5Es+MjC;A4Er+MD;EAAsB,iBAAA;C5Ew+MrB;A4Ev+MD;EAA2B,iBAAA;C5E0+M1B;A4Ez+MD;EAA4B,iBAAA;C5E4+M3B;A4E3+MD;EAAyB,iBAAA;C5E8+MxB;A4E7+MD;EAA6B,iBAAA;C5Eg/M5B;A4E/+MD;EAAyB,iBAAA;C5Ek/MxB;A4Ej/MD;EAAsB,iBAAA;C5Eo/MrB;A4En/MD;EAA6B,iBAAA;C5Es/M5B;A4Er/MD;EAA4B,iBAAA;C5Ew/M3B;A4Ev/MD;EAA4B,iBAAA;C5E0/M3B;A4Ez/MD;EAAsB,iBAAA;C5E4/MrB;A4E3/MD;EAAuB,iBAAA;C5E8/MtB;A4E7/MD;EAA0B,iBAAA;C5EggNzB;A4E//MD;EAAsB,iBAAA;C5EkgNrB;A4EjgND;EAA+B,iBAAA;C5EogN9B;A4EngND;EAAqB,iBAAA;C5EsgNpB;A4ErgND;EAAkC,iBAAA;C5EwgNjC;A4EvgND;EAAsB,iBAAA;C5E0gNrB;A4EzgND;EAAqB,iBAAA;C5E4gNpB;A4E3gND;EAAuC,iBAAA;C5E8gNtC;A4E7gND;EAA2B,iBAAA;C5EghN1B;A4E/gND;EAA4B,iBAAA;C5EkhN3B;A4EjhND;EAA+B,iBAAA;C5EohN9B;A4EnhND;EAA2B,iBAAA;C5EshN1B;A4ErhND;EAA8B,iBAAA;C5EwhN7B;A4EvhND;EAAoB,iBAAA;C5E0hNnB;A4EzhND;EAA2B,iBAAA;C5E4hN1B;A4E3hND;EAA0B,iBAAA;C5E8hNzB;A4E7hND;EAAoB,iBAAA;C5EgiNnB;A4E/hND;EAA8B,iBAAA;C5EkiN7B;A4EjiND;EAAqB,iBAAA;C5EoiNpB;A4EniND;EAAgC,iBAAA;C5EsiN/B;A4EriND;EAAoB,iBAAA;C5EwiNnB;A4EviND;EAAoB,iBAAA;C5E0iNnB;A4EziND;EAA0B,iBAAA;C5E4iNzB;A4E3iND;EAAqB,iBAAA;C5E8iNpB;A4E7iND;EAAsB,iBAAA;C5EgjNrB;A4E/iND;EAA8B,iBAAA;C5EkjN7B;A4EjjND;EAAqB,iBAAA;C5EojNpB;A4EnjND;EAAsB,iBAAA;C5EsjNrB;A4ErjND;EAAqB,iBAAA;C5EwjNpB;A4EvjND;EAAwB,iBAAA;C5E0jNvB;A4EzjND;EAAgC,iBAAA;C5E4jN/B;A4E3jND;EAAoB,iBAAA;C5E8jNnB;A4E7jND;EAAqC,iBAAA;C5EgkNpC;A4E/jND;EAAyB,iBAAA;C5EkkNxB;A4EjkND;EAAuB,iBAAA;C5EokNtB;A4EnkND;EAAmB,iBAAA;C5EskNlB;A4ErkND;EAAwB,iBAAA;C5EwkNvB;A4EvkND;EAAyB,iBAAA;C5E0kNxB;A4EzkND;EAAwB,iBAAA;C5E4kNvB;A4E3kND;EAAwB,iBAAA;C5E8kNvB;A4E7kND;EAAsB,iBAAA;C5EglNrB;A4E/kND;EAAkC,iBAAA;C5EklNjC;A4EjlND;EAAsB,iBAAA;C5EolNrB;A4EnlND;EAAsB,iBAAA;C5EslNrB;A4ErlND;EAAoB,iBAAA;C5EwlNnB;A4EvlND;EAA0B,iBAAA;C5E0lNzB;A4EzlND;EAAwB,iBAAA;C5E4lNvB;A4E3lND;EAAwB,iBAAA;C5E8lNvB;A4E7lND;EAA0B,iBAAA;C5EgmNzB;A4E/lND;EAA0B,iBAAA;C5EkmNzB;A4EjmND;EAAwB,iBAAA;C5EomNvB;A4EnmND;EAA0B,iBAAA;C5EsmNzB;A4ErmND;EAAoB,iBAAA;C5EwmNnB;A4EvmND;EAAoC,iBAAA;C5E0mNnC;A4EzmND;EAAwB,iBAAA;C5E4mNvB;A4E3mND;EAAoB,iBAAA;C5E8mNnB;A4E7mND;EAA4B,iBAAA;C5EgnN3B;A4E/mND;EAAwB,iBAAA;C5EknNvB;A4EjnND;EAAyB,iBAAA;C5EonNxB;A4EnnND;EAAoB,iBAAA;C5EsnNnB;A4ErnND;EAAuB,iBAAA;C5EwnNtB;A4EvnND;EAAqB,iBAAA;C5E0nNpB;A4EznND;EAAoB,iBAAA;C5E4nNnB;A4E3nND;EAAsB,iBAAA;C5E8nNrB;A4E7nND;EAAgC,iBAAA;C5EgoN/B;A4E/nND;EAAgC,iBAAA;C5EkoN/B;A4EjoND;EAAoB,iBAAA;C5EooNnB;A4EnoND;EAAmB,iBAAA;C5EsoNlB;A4EroND;EAAmB,iBAAA;C5EwoNlB;A4EvoND;EAAoB,iBAAA;C5E0oNnB;A4EzoND;EAAqB,iBAAA;C5E4oNpB;A4E3oND;EAAkC,iBAAA;C5E8oNjC;A4E7oND;EAAsB,iBAAA;C5EgpNrB;A4E/oND;EAAyB,iBAAA;C5EkpNxB;A4EjpND;EAA0B,iBAAA;C5EopNzB;A4EnpND;EAAoB,iBAAA;C5EspNnB;A4ErpND;EAAqB,iBAAA;C5EwpNpB;A4EvpND;EAAuB,iBAAA;C5E0pNtB;A4EzpND;EAAmB,iBAAA;C5E4pNlB;A4E3pND;EAAqB,iBAAA;C5E8pNpB;A4E7pND;EAAoB,iBAAA;C5EgqNnB;A4E/pND;EAAsB,iBAAA;C5EkqNrB;A4EjqND;EAA0B,iBAAA;C5EoqNzB;A4EnqND;EAAoB,iBAAA;C5EsqNnB;A4ErqND;EAA6B,iBAAA;C5EwqN5B;A4EvqND;EAAqB,iBAAA;C5E0qNpB;A4EzqND;EAAqB,iBAAA;C5E4qNpB;A4E3qND;EAAuB,iBAAA;C5E8qNtB;A4E7qND;EAA2B,iBAAA;C5EgrN1B;A4E/qND;EAAmB,iBAAA;C5EkrNlB;A4EjrND;EAAoB,iBAAA;C5EorNnB;A4EnrND;EAA0B,iBAAA;C5EsrNzB;A4ErrND;EAAoB,iBAAA;C5EwrNnB;A4EvrND;EAA4B,iBAAA;C5E0rN3B;A4EzrND;EAAiC,iBAAA;C5E4rNhC;A4E3rND;EAA0B,iBAAA;C5E8rNzB;A4E7rND;EAAyB,iBAAA;C5EgsNxB;A4E/rND;EAAwB,iBAAA;C5EksNvB;A4EjsND;EAAyB,iBAAA;C5EosNxB;A4EnsND;EAAuB,iBAAA;C5EssNtB;A4ErsND;EAA2B,iBAAA;C5EwsN1B;A4EvsND;EAAsB,iBAAA;C5E0sNrB;A4EzsND;EAAsB,iBAAA;C5E4sNrB;A4E3sND;EAAqB,iBAAA;C5E8sNpB;A4E7sND;EAAsB,iBAAA;C5EgtNrB;A4E/sND;EAAyB,iBAAA;C5EktNxB;A4EjtND;EAAmB,iBAAA;C5EotNlB;A4EntND;EAAqC,iBAAA;C5EstNpC;A4ErtND;EAAyB,iBAAA;C5EwtNxB;A4EvtND;EAAoB,iBAAA;C5E0tNnB;A4EztND;EAAqB,iBAAA;C5E4tNpB;A4E3tND;EAA0B,iBAAA;C5E8tNzB;A4E7tND;EAA4B,iBAAA;C5EguN3B;A4E/tND;EAAyB,iBAAA;C5EkuNxB;A4EjuND;EAAqB,iBAAA;C5EouNpB;A4EnuND;EAA8B,iBAAA;C5EsuN7B;A4EruND;EAA6B,iBAAA;C5EwuN5B;A4EvuND;EAA4B,iBAAA;C5E0uN3B;A4EzuND;EAA4B,iBAAA;C5E4uN3B;A4E3uND;EAAuB,iBAAA;C5E8uNtB;A4E7uND;EAA8B,iBAAA;C5EgvN7B;A4E/uND;EAAkB,iBAAA;C5EkvNjB;A4EjvND;EAAqB,iBAAA;C5EovNpB;A4EnvND;EAAqB,iBAAA;C5EsvNpB;A4ErvND;EAAgC,iBAAA;C5EwvN/B;A4EvvND;EAAoB,iBAAA;C5E0vNnB;A4EzvND;EAAuB,iBAAA;C5E4vNtB;A4E3vND;EAAgC,iBAAA;C5E8vN/B;A4E7vND;EAAoB,iBAAA;C5EgwNnB;A4E/vND;EAA2B,iBAAA;C5EkwN1B;A4EjwND;EAAsB,iBAAA;C5EowNrB;A4EnwND;EAAyB,iBAAA;C5EswNxB;A4ErwND;EAAqB,iBAAA;C5EwwNpB;A4EvwND;EAA0B,iBAAA;C5E0wNzB;A4EzwND;EAAkC,iBAAA;C5E4wNjC;A4E3wND;EAAuB,iBAAA;C5E8wNtB;A4E7wND;EAAsB,iBAAA;C5EgxNrB;A4E/wND;EAA2B,iBAAA;C5EkxN1B;A4EjxND;EAAmB,iBAAA;C5EoxNlB;A4EnxND;EAAqB,iBAAA;C5EsxNpB;A4ErxND;EAAoB,iBAAA;C5EwxNnB;A4EvxND;EAAwB,iBAAA;C5E0xNvB;A4EzxND;EAAsB,iBAAA;C5E4xNrB;A4E3xND;EAA6B,iBAAA;C5E8xN5B;A4E7xND;EAAiC,iBAAA;C5EgyNhC;A4E/xND;EAAiC,iBAAA;C5EkyNhC;A4EjyND;EAAqB,iBAAA;C5EoyNpB;A4EnyND;EAAyB,iBAAA;C5EsyNxB;A4EryND;EAAsB,iBAAA;C5EwyNrB;A4EvyND;EAAoB,iBAAA;C5E0yNnB;A4EzyND;EAA4B,iBAAA;C5E4yN3B;A4E3yND;EAA+B,iBAAA;C5E8yN9B;A4E7yND;EAA6B,iBAAA;C5EgzN5B;A4E/yND;EAAuB,iBAAA;C5EkzNtB;A4EjzND;EAAsB,iBAAA;C5EozNrB;A4EnzND;EAA0B,iBAAA;C5EszNzB;A4ErzND;EAAiC,iBAAA;C5EwzNhC;A4EvzND;EAAqB,iBAAA;C5E0zNpB;A4EzzND;EAA0B,iBAAA;C5E4zNzB;A4E3zND;EAAwB,iBAAA;C5E8zNvB;A4E7zND;EAAyB,iBAAA;C5Eg0NxB;A4E/zND;EAA0B,iBAAA;C5Ek0NzB;A4Ej0ND;EAAqB,iBAAA;C5Eo0NpB;A4En0ND;EAA0B,iBAAA;C5Es0NzB;A4Er0ND;EAA2B,iBAAA;C5Ew0N1B;A4Ev0ND;EAAmC,iBAAA;C5E00NlC;A4Ez0ND;EAAuB,iBAAA;C5E40NtB;A4E30ND;EAA2B,iBAAA;C5E80N1B;A4E70ND;EAA6B,iBAAA;C5Eg1N5B;A4E/0ND;EAA6B,iBAAA;C5Ek1N5B;A4Ej1ND;EAA4B,iBAAA;C5Eo1N3B;A4En1ND;EAA6B,iBAAA;C5Es1N5B;A4Er1ND;EAAoB,iBAAA;C5Ew1NnB;A4Ev1ND;EAAyB,iBAAA;C5E01NxB;A4Ez1ND;EAAuC,iBAAA;C5E41NtC;A4E31ND;EAA2B,iBAAA;C5E81N1B;A4E71ND;EAAwB,iBAAA;C5Eg2NvB;A4E/1ND;EAAoB,iBAAA;C5Ek2NnB;A4Ej2ND;EAAqB,iBAAA;C5Eo2NpB;A4En2ND;EAAsB,iBAAA;C5Es2NrB;A4Er2ND;EAAsB,iBAAA;C5Ew2NrB;A4Ev2ND;EAAmC,iBAAA;C5E02NlC;A4Ez2ND;EAAsB,iBAAA;C5E42NrB;A4E32ND;EAAmB,iBAAA;C5E82NlB;A4E72ND;EAAsC,iBAAA;C5Eg3NrC;A4E/2ND;EAA6B,iBAAA;C5Ek3N5B;A4Ej3ND;EAAoB,iBAAA;C5Eo3NnB;A4En3ND;EAA2B,iBAAA;C5Es3N1B;A4Er3ND;EAA2B,iBAAA;C5Ew3N1B;A4Ev3ND;EAAyB,iBAAA;C5E03NxB;A4Ez3ND;EAA6B,iBAAA;C5E43N5B;A4E33ND;EAAsB,iBAAA;C5E83NrB;A4E73ND;EAAyB,iBAAA;C5Eg4NxB;A4E/3ND;EAAqB,iBAAA;C5Ek4NpB;A4Ej4ND;EAA4B,iBAAA;C5Eo4N3B;A4En4ND;EAAqB,iBAAA;C5Es4NpB;A4Er4ND;EAAoB,iBAAA;C5Ew4NnB;A4Ev4ND;EAA6B,iBAAA;C5E04N5B;A4Ez4ND;EAA6B,iBAAA;C5E44N5B;A4E34ND;EAA8B,iBAAA;C5E84N7B;A4E74ND;EAA2B,iBAAA;C5Eg5N1B;A4E/4ND;EAA2B,iBAAA;C5Ek5N1B;A4Ej5ND;EAAsB,iBAAA;C5Eo5NrB;A4En5ND;EAAkC,iBAAA;C5Es5NjC;A4Er5ND;EAAsB,iBAAA;C5Ew5NrB;A4Ev5ND;EAAkB,iBAAA;C5E05NjB;A4Ez5ND;EAAmC,iBAAA;C5E45NlC;A4E35ND;EAAuB,iBAAA;C5E85NtB;A4E75ND;EAAsB,iBAAA;C5Eg6NrB;A4E/5ND;EAAyB,iBAAA;C5Ek6NxB;A4Ej6ND;EAAsB,iBAAA;C5Eo6NrB;A4En6ND;EAAqB,iBAAA;C5Es6NpB;A4Er6ND;EAA+B,iBAAA;C5Ew6N9B;A4Ev6ND;EAAsB,iBAAA;C5E06NrB;A4Ez6ND;EAAoB,iBAAA;C5E46NnB;A4E36ND;EAAqB,iBAAA;C5E86NpB;A4E76ND;EAAsB,iBAAA;C5Eg7NrB;A4E/6ND;EAA4B,iBAAA;C5Ek7N3B;A4Ej7ND;EAAqB,iBAAA;C5Eo7NpB;A4En7ND;EAAiC,iBAAA;C5Es7NhC;A4Er7ND;EAAqB,iBAAA;C5Ew7NpB;A4Ev7ND;EAAgC,iBAAA;C5E07N/B;A4Ez7ND;EAAoB,iBAAA;C5E47NnB;A4E37ND;EAAqB,iBAAA;C5E87NpB;A4E77ND;EAA8B,iBAAA;C5Eg8N7B;A4E/7ND;EAA8B,iBAAA;C5Ek8N7B;A4Ej8ND;EAAkB,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","file":"toolkit-inverse.css","sourcesContent":["/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\nhtml {\n font-family: sans-serif;\n -ms-text-size-adjust: 100%;\n -webkit-text-size-adjust: 100%;\n}\nbody {\n margin: 0;\n}\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block;\n vertical-align: baseline;\n}\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n[hidden],\ntemplate {\n display: none;\n}\na {\n background-color: transparent;\n}\na:active,\na:hover {\n outline: 0;\n}\nabbr[title] {\n border-bottom: 1px dotted;\n}\nb,\nstrong {\n font-weight: bold;\n}\ndfn {\n font-style: italic;\n}\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\nmark {\n background: #ff0;\n color: #000;\n}\nsmall {\n font-size: 80%;\n}\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\nsup {\n top: -0.5em;\n}\nsub {\n bottom: -0.25em;\n}\nimg {\n border: 0;\n}\nsvg:not(:root) {\n overflow: hidden;\n}\nfigure {\n margin: 1em 40px;\n}\nhr {\n box-sizing: content-box;\n height: 0;\n}\npre {\n overflow: auto;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit;\n font: inherit;\n margin: 0;\n}\nbutton {\n overflow: visible;\n}\nbutton,\nselect {\n text-transform: none;\n}\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button;\n cursor: pointer;\n}\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\ninput {\n line-height: normal;\n}\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box;\n padding: 0;\n}\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: textfield;\n box-sizing: content-box;\n}\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\nlegend {\n border: 0;\n padding: 0;\n}\ntextarea {\n overflow: auto;\n}\noptgroup {\n font-weight: bold;\n}\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\ntd,\nth {\n padding: 0;\n}\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n@media print {\n *,\n *:before,\n *:after {\n background: transparent !important;\n color: #000 !important;\n box-shadow: none !important;\n text-shadow: none !important;\n }\n a,\n a:visited {\n text-decoration: underline;\n }\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n thead {\n display: table-header-group;\n }\n tr,\n img {\n page-break-inside: avoid;\n }\n img {\n max-width: 100% !important;\n }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n h2,\n h3 {\n page-break-after: avoid;\n }\n .navbar {\n display: none;\n }\n .btn > .caret,\n .dropup > .btn > .caret {\n border-top-color: #000 !important;\n }\n .label {\n border: 1px solid #000;\n }\n .table {\n border-collapse: collapse !important;\n }\n .table td,\n .table th {\n background-color: #fff !important;\n }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #ddd !important;\n }\n}\n* {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n*:before,\n*:after {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\nbody {\n font-family: \"Roboto\", \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 14px;\n line-height: 1.5;\n color: #cfd2da;\n background-color: #252830;\n}\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\na {\n color: #1CA8DD;\n text-decoration: none;\n}\na:hover,\na:focus {\n color: #137499;\n text-decoration: underline;\n}\na:focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\nfigure {\n margin: 0;\n}\nimg {\n vertical-align: middle;\n}\n.img-responsive,\n.thumbnail > img,\n.thumbnail a > img,\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n display: block;\n max-width: 100%;\n height: auto;\n}\n.img-rounded {\n border-radius: 6px;\n}\n.img-thumbnail {\n padding: 4px;\n line-height: 1.5;\n background-color: transparent;\n border: 1px solid #30343e;\n border-radius: 4px;\n -webkit-transition: all 0.2s ease-in-out;\n -o-transition: all 0.2s ease-in-out;\n transition: all 0.2s ease-in-out;\n display: inline-block;\n max-width: 100%;\n height: auto;\n}\n.img-circle {\n border-radius: 50%;\n}\nhr {\n margin-top: 21px;\n margin-bottom: 21px;\n border: 0;\n border-top: 1px solid #434857;\n}\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\n[role=\"button\"] {\n cursor: pointer;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\n.h1,\n.h2,\n.h3,\n.h4,\n.h5,\n.h6 {\n font-family: inherit;\n font-weight: 300;\n line-height: 1.1;\n color: #ffffff;\n}\nh1 small,\nh2 small,\nh3 small,\nh4 small,\nh5 small,\nh6 small,\n.h1 small,\n.h2 small,\n.h3 small,\n.h4 small,\n.h5 small,\n.h6 small,\nh1 .small,\nh2 .small,\nh3 .small,\nh4 .small,\nh5 .small,\nh6 .small,\n.h1 .small,\n.h2 .small,\n.h3 .small,\n.h4 .small,\n.h5 .small,\n.h6 .small {\n font-weight: normal;\n line-height: 1;\n color: #cfd2da;\n}\nh1,\n.h1,\nh2,\n.h2,\nh3,\n.h3 {\n margin-top: 21px;\n margin-bottom: 10.5px;\n}\nh1 small,\n.h1 small,\nh2 small,\n.h2 small,\nh3 small,\n.h3 small,\nh1 .small,\n.h1 .small,\nh2 .small,\n.h2 .small,\nh3 .small,\n.h3 .small {\n font-size: 65%;\n}\nh4,\n.h4,\nh5,\n.h5,\nh6,\n.h6 {\n margin-top: 10.5px;\n margin-bottom: 10.5px;\n}\nh4 small,\n.h4 small,\nh5 small,\n.h5 small,\nh6 small,\n.h6 small,\nh4 .small,\n.h4 .small,\nh5 .small,\n.h5 .small,\nh6 .small,\n.h6 .small {\n font-size: 75%;\n}\nh1,\n.h1 {\n font-size: 36px;\n}\nh2,\n.h2 {\n font-size: 30px;\n}\nh3,\n.h3 {\n font-size: 24px;\n}\nh4,\n.h4 {\n font-size: 18px;\n}\nh5,\n.h5 {\n font-size: 14px;\n}\nh6,\n.h6 {\n font-size: 12px;\n}\np {\n margin: 0 0 10.5px;\n}\n.lead {\n margin-bottom: 21px;\n font-size: 16px;\n font-weight: 300;\n line-height: 1.4;\n}\n@media (min-width: 768px) {\n .lead {\n font-size: 21px;\n }\n}\nsmall,\n.small {\n font-size: 85%;\n}\nmark,\n.mark {\n background-color: #fcf8e3;\n padding: .2em;\n}\n.text-left {\n text-align: left;\n}\n.text-right {\n text-align: right;\n}\n.text-center {\n text-align: center;\n}\n.text-justify {\n text-align: justify;\n}\n.text-nowrap {\n white-space: nowrap;\n}\n.text-lowercase {\n text-transform: lowercase;\n}\n.text-uppercase {\n text-transform: uppercase;\n}\n.text-capitalize {\n text-transform: capitalize;\n}\n.text-muted {\n color: #999;\n}\n.text-primary {\n color: #1CA8DD;\n}\na.text-primary:hover,\na.text-primary:focus {\n color: #1686b0;\n}\n.text-success {\n color: #1BC98E;\n}\na.text-success:hover,\na.text-success:focus {\n color: #159c6e;\n}\n.text-info {\n color: #9F86FF;\n}\na.text-info:hover,\na.text-info:focus {\n color: #7753ff;\n}\n.text-warning {\n color: #E4D836;\n}\na.text-warning:hover,\na.text-warning:focus {\n color: #ccbf1b;\n}\n.text-danger {\n color: #E64759;\n}\na.text-danger:hover,\na.text-danger:focus {\n color: #dc1e33;\n}\n.bg-primary {\n color: #fff;\n background-color: #1CA8DD;\n}\na.bg-primary:hover,\na.bg-primary:focus {\n background-color: #1686b0;\n}\n.bg-success {\n background-color: #dff0d8;\n}\na.bg-success:hover,\na.bg-success:focus {\n background-color: #c1e2b3;\n}\n.bg-info {\n background-color: #d9edf7;\n}\na.bg-info:hover,\na.bg-info:focus {\n background-color: #afd9ee;\n}\n.bg-warning {\n background-color: #fcf8e3;\n}\na.bg-warning:hover,\na.bg-warning:focus {\n background-color: #f7ecb5;\n}\n.bg-danger {\n background-color: #f2dede;\n}\na.bg-danger:hover,\na.bg-danger:focus {\n background-color: #e4b9b9;\n}\n.page-header {\n padding-bottom: 9.5px;\n margin: 42px 0 21px;\n border-bottom: 1px solid #434857;\n}\nul,\nol {\n margin-top: 0;\n margin-bottom: 10.5px;\n}\nul ul,\nol ul,\nul ol,\nol ol {\n margin-bottom: 0;\n}\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n.list-inline {\n padding-left: 0;\n list-style: none;\n margin-left: -5px;\n}\n.list-inline > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n}\ndl {\n margin-top: 0;\n margin-bottom: 21px;\n}\ndt,\ndd {\n line-height: 1.5;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0;\n}\n@media (min-width: 992px) {\n .dl-horizontal dt {\n float: left;\n width: 160px;\n clear: left;\n text-align: right;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .dl-horizontal dd {\n margin-left: 180px;\n }\n}\nabbr[title],\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted #cfd2da;\n}\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\nblockquote {\n padding: 10.5px 21px;\n margin: 0 0 21px;\n font-size: 17.5px;\n border-left: 5px solid #434857;\n}\nblockquote p:last-child,\nblockquote ul:last-child,\nblockquote ol:last-child {\n margin-bottom: 0;\n}\nblockquote footer,\nblockquote small,\nblockquote .small {\n display: block;\n font-size: 80%;\n line-height: 1.5;\n color: #cfd2da;\n}\nblockquote footer:before,\nblockquote small:before,\nblockquote .small:before {\n content: '\\2014 \\00A0';\n}\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid #434857;\n border-left: 0;\n text-align: right;\n}\n.blockquote-reverse footer:before,\nblockquote.pull-right footer:before,\n.blockquote-reverse small:before,\nblockquote.pull-right small:before,\n.blockquote-reverse .small:before,\nblockquote.pull-right .small:before {\n content: '';\n}\n.blockquote-reverse footer:after,\nblockquote.pull-right footer:after,\n.blockquote-reverse small:after,\nblockquote.pull-right small:after,\n.blockquote-reverse .small:after,\nblockquote.pull-right .small:after {\n content: '\\00A0 \\2014';\n}\naddress {\n margin-bottom: 21px;\n font-style: normal;\n line-height: 1.5;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n}\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: #c7254e;\n background-color: #1a1c22;\n border-radius: 4px;\n}\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: #fff;\n background-color: #333;\n border-radius: 3px;\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\nkbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n box-shadow: none;\n}\npre {\n display: block;\n padding: 10px;\n margin: 0 0 10.5px;\n font-size: 13px;\n line-height: 1.5;\n word-break: break-all;\n word-wrap: break-word;\n color: #51586a;\n background-color: #f5f5f5;\n border: 1px solid #ccc;\n border-radius: 4px;\n}\npre code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n}\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n}\ntable {\n background-color: transparent;\n}\ncaption {\n padding-top: 8px;\n padding-bottom: 8px;\n color: #999;\n text-align: left;\n}\nth {\n text-align: left;\n}\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 21px;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n padding: 8px;\n line-height: 1.5;\n vertical-align: top;\n border-top: 1px solid #434857;\n}\n.table > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid #434857;\n}\n.table > caption + thead > tr:first-child > th,\n.table > colgroup + thead > tr:first-child > th,\n.table > thead:first-child > tr:first-child > th,\n.table > caption + thead > tr:first-child > td,\n.table > colgroup + thead > tr:first-child > td,\n.table > thead:first-child > tr:first-child > td {\n border-top: 0;\n}\n.table > tbody + tbody {\n border-top: 2px solid #434857;\n}\n.table .table {\n background-color: #252830;\n}\n.table-condensed > thead > tr > th,\n.table-condensed > tbody > tr > th,\n.table-condensed > tfoot > tr > th,\n.table-condensed > thead > tr > td,\n.table-condensed > tbody > tr > td,\n.table-condensed > tfoot > tr > td {\n padding: 5px;\n}\n.table-bordered {\n border: 1px solid #434857;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n border: 1px solid #434857;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n border-bottom-width: 2px;\n}\n.table-striped > tbody > tr:nth-of-type(odd) {\n background-color: #434857;\n}\n.table-hover > tbody > tr:hover {\n background-color: #434857;\n}\ntable col[class*=\"col-\"] {\n position: static;\n float: none;\n display: table-column;\n}\ntable td[class*=\"col-\"],\ntable th[class*=\"col-\"] {\n position: static;\n float: none;\n display: table-cell;\n}\n.table > thead > tr > td.active,\n.table > tbody > tr > td.active,\n.table > tfoot > tr > td.active,\n.table > thead > tr > th.active,\n.table > tbody > tr > th.active,\n.table > tfoot > tr > th.active,\n.table > thead > tr.active > td,\n.table > tbody > tr.active > td,\n.table > tfoot > tr.active > td,\n.table > thead > tr.active > th,\n.table > tbody > tr.active > th,\n.table > tfoot > tr.active > th {\n background-color: #434857;\n}\n.table-hover > tbody > tr > td.active:hover,\n.table-hover > tbody > tr > th.active:hover,\n.table-hover > tbody > tr.active:hover > td,\n.table-hover > tbody > tr:hover > .active,\n.table-hover > tbody > tr.active:hover > th {\n background-color: #383c48;\n}\n.table > thead > tr > td.success,\n.table > tbody > tr > td.success,\n.table > tfoot > tr > td.success,\n.table > thead > tr > th.success,\n.table > tbody > tr > th.success,\n.table > tfoot > tr > th.success,\n.table > thead > tr.success > td,\n.table > tbody > tr.success > td,\n.table > tfoot > tr.success > td,\n.table > thead > tr.success > th,\n.table > tbody > tr.success > th,\n.table > tfoot > tr.success > th {\n background-color: #dff0d8;\n}\n.table-hover > tbody > tr > td.success:hover,\n.table-hover > tbody > tr > th.success:hover,\n.table-hover > tbody > tr.success:hover > td,\n.table-hover > tbody > tr:hover > .success,\n.table-hover > tbody > tr.success:hover > th {\n background-color: #d0e9c6;\n}\n.table > thead > tr > td.info,\n.table > tbody > tr > td.info,\n.table > tfoot > tr > td.info,\n.table > thead > tr > th.info,\n.table > tbody > tr > th.info,\n.table > tfoot > tr > th.info,\n.table > thead > tr.info > td,\n.table > tbody > tr.info > td,\n.table > tfoot > tr.info > td,\n.table > thead > tr.info > th,\n.table > tbody > tr.info > th,\n.table > tfoot > tr.info > th {\n background-color: #d9edf7;\n}\n.table-hover > tbody > tr > td.info:hover,\n.table-hover > tbody > tr > th.info:hover,\n.table-hover > tbody > tr.info:hover > td,\n.table-hover > tbody > tr:hover > .info,\n.table-hover > tbody > tr.info:hover > th {\n background-color: #c4e3f3;\n}\n.table > thead > tr > td.warning,\n.table > tbody > tr > td.warning,\n.table > tfoot > tr > td.warning,\n.table > thead > tr > th.warning,\n.table > tbody > tr > th.warning,\n.table > tfoot > tr > th.warning,\n.table > thead > tr.warning > td,\n.table > tbody > tr.warning > td,\n.table > tfoot > tr.warning > td,\n.table > thead > tr.warning > th,\n.table > tbody > tr.warning > th,\n.table > tfoot > tr.warning > th {\n background-color: #fcf8e3;\n}\n.table-hover > tbody > tr > td.warning:hover,\n.table-hover > tbody > tr > th.warning:hover,\n.table-hover > tbody > tr.warning:hover > td,\n.table-hover > tbody > tr:hover > .warning,\n.table-hover > tbody > tr.warning:hover > th {\n background-color: #faf2cc;\n}\n.table > thead > tr > td.danger,\n.table > tbody > tr > td.danger,\n.table > tfoot > tr > td.danger,\n.table > thead > tr > th.danger,\n.table > tbody > tr > th.danger,\n.table > tfoot > tr > th.danger,\n.table > thead > tr.danger > td,\n.table > tbody > tr.danger > td,\n.table > tfoot > tr.danger > td,\n.table > thead > tr.danger > th,\n.table > tbody > tr.danger > th,\n.table > tfoot > tr.danger > th {\n background-color: #f2dede;\n}\n.table-hover > tbody > tr > td.danger:hover,\n.table-hover > tbody > tr > th.danger:hover,\n.table-hover > tbody > tr.danger:hover > td,\n.table-hover > tbody > tr:hover > .danger,\n.table-hover > tbody > tr.danger:hover > th {\n background-color: #ebcccc;\n}\n.table-responsive {\n overflow-x: auto;\n min-height: 0.01%;\n}\n@media screen and (max-width: 767px) {\n .table-responsive {\n width: 100%;\n margin-bottom: 15.75px;\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid #434857;\n }\n .table-responsive > .table {\n margin-bottom: 0;\n }\n .table-responsive > .table > thead > tr > th,\n .table-responsive > .table > tbody > tr > th,\n .table-responsive > .table > tfoot > tr > th,\n .table-responsive > .table > thead > tr > td,\n .table-responsive > .table > tbody > tr > td,\n .table-responsive > .table > tfoot > tr > td {\n white-space: nowrap;\n }\n .table-responsive > .table-bordered {\n border: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:first-child,\n .table-responsive > .table-bordered > tbody > tr > th:first-child,\n .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n .table-responsive > .table-bordered > thead > tr > td:first-child,\n .table-responsive > .table-bordered > tbody > tr > td:first-child,\n .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:last-child,\n .table-responsive > .table-bordered > tbody > tr > th:last-child,\n .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n .table-responsive > .table-bordered > thead > tr > td:last-child,\n .table-responsive > .table-bordered > tbody > tr > td:last-child,\n .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n }\n .table-responsive > .table-bordered > tbody > tr:last-child > th,\n .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n .table-responsive > .table-bordered > tbody > tr:last-child > td,\n .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n border-bottom: 0;\n }\n}\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n min-width: 0;\n}\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: 21px;\n font-size: 21px;\n line-height: inherit;\n color: #51586a;\n border: 0;\n border-bottom: 1px solid #e5e5e5;\n}\nlabel {\n display: inline-block;\n max-width: 100%;\n margin-bottom: 5px;\n font-weight: bold;\n}\ninput[type=\"search\"] {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9;\n line-height: normal;\n}\ninput[type=\"file\"] {\n display: block;\n}\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\nselect[multiple],\nselect[size] {\n height: auto;\n}\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\noutput {\n display: block;\n padding-top: 7px;\n font-size: 14px;\n line-height: 1.5;\n color: #fff;\n}\n.form-control {\n display: block;\n width: 100%;\n height: 35px;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.5;\n color: #fff;\n background-color: #434857;\n background-image: none;\n border: 1px solid #434857;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n.form-control:focus {\n border-color: #fff;\n outline: 0;\n -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 255, 255, 0.6);\n box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 255, 255, 0.6);\n}\n.form-control::-moz-placeholder {\n color: #cfd2da;\n opacity: 1;\n}\n.form-control:-ms-input-placeholder {\n color: #cfd2da;\n}\n.form-control::-webkit-input-placeholder {\n color: #cfd2da;\n}\n.form-control::-ms-expand {\n border: 0;\n background-color: transparent;\n}\n.form-control[disabled],\n.form-control[readonly],\nfieldset[disabled] .form-control {\n background-color: #30343e;\n opacity: 1;\n}\n.form-control[disabled],\nfieldset[disabled] .form-control {\n cursor: not-allowed;\n}\ntextarea.form-control {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"].form-control,\n input[type=\"time\"].form-control,\n input[type=\"datetime-local\"].form-control,\n input[type=\"month\"].form-control {\n line-height: 35px;\n }\n input[type=\"date\"].input-sm,\n input[type=\"time\"].input-sm,\n input[type=\"datetime-local\"].input-sm,\n input[type=\"month\"].input-sm,\n .input-group-sm input[type=\"date\"],\n .input-group-sm input[type=\"time\"],\n .input-group-sm input[type=\"datetime-local\"],\n .input-group-sm input[type=\"month\"] {\n line-height: 30px;\n }\n input[type=\"date\"].input-lg,\n input[type=\"time\"].input-lg,\n input[type=\"datetime-local\"].input-lg,\n input[type=\"month\"].input-lg,\n .input-group-lg input[type=\"date\"],\n .input-group-lg input[type=\"time\"],\n .input-group-lg input[type=\"datetime-local\"],\n .input-group-lg input[type=\"month\"] {\n line-height: 46px;\n }\n}\n.form-group {\n margin-bottom: 15px;\n}\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.radio label,\n.checkbox label {\n min-height: 21px;\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer;\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-left: -20px;\n margin-top: 4px \\9;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px;\n}\n.radio-inline,\n.checkbox-inline {\n position: relative;\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px;\n}\ninput[type=\"radio\"][disabled],\ninput[type=\"checkbox\"][disabled],\ninput[type=\"radio\"].disabled,\ninput[type=\"checkbox\"].disabled,\nfieldset[disabled] input[type=\"radio\"],\nfieldset[disabled] input[type=\"checkbox\"] {\n cursor: not-allowed;\n}\n.radio-inline.disabled,\n.checkbox-inline.disabled,\nfieldset[disabled] .radio-inline,\nfieldset[disabled] .checkbox-inline {\n cursor: not-allowed;\n}\n.radio.disabled label,\n.checkbox.disabled label,\nfieldset[disabled] .radio label,\nfieldset[disabled] .checkbox label {\n cursor: not-allowed;\n}\n.form-control-static {\n padding-top: 7px;\n padding-bottom: 7px;\n margin-bottom: 0;\n min-height: 35px;\n}\n.form-control-static.input-lg,\n.form-control-static.input-sm {\n padding-left: 0;\n padding-right: 0;\n}\n.input-sm {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-sm {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-sm,\nselect[multiple].input-sm {\n height: auto;\n}\n.form-group-sm .form-control {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.form-group-sm select.form-control {\n height: 30px;\n line-height: 30px;\n}\n.form-group-sm textarea.form-control,\n.form-group-sm select[multiple].form-control {\n height: auto;\n}\n.form-group-sm .form-control-static {\n height: 30px;\n min-height: 33px;\n padding: 6px 10px;\n font-size: 12px;\n line-height: 1.5;\n}\n.input-lg {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-lg {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-lg,\nselect[multiple].input-lg {\n height: auto;\n}\n.form-group-lg .form-control {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\n.form-group-lg select.form-control {\n height: 46px;\n line-height: 46px;\n}\n.form-group-lg textarea.form-control,\n.form-group-lg select[multiple].form-control {\n height: auto;\n}\n.form-group-lg .form-control-static {\n height: 46px;\n min-height: 39px;\n padding: 11px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n}\n.has-feedback {\n position: relative;\n}\n.has-feedback .form-control {\n padding-right: 43.75px;\n}\n.form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2;\n display: block;\n width: 35px;\n height: 35px;\n line-height: 35px;\n text-align: center;\n pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n width: 46px;\n height: 46px;\n line-height: 46px;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n width: 30px;\n height: 30px;\n line-height: 30px;\n}\n.has-success .help-block,\n.has-success .control-label,\n.has-success .radio,\n.has-success .checkbox,\n.has-success .radio-inline,\n.has-success .checkbox-inline,\n.has-success.radio label,\n.has-success.checkbox label,\n.has-success.radio-inline label,\n.has-success.checkbox-inline label {\n color: #1BC98E;\n}\n.has-success .form-control {\n border-color: #1BC98E;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-success .form-control:focus {\n border-color: #159c6e;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #60eabb;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #60eabb;\n}\n.has-success .input-group-addon {\n color: #1BC98E;\n border-color: #1BC98E;\n background-color: #dff0d8;\n}\n.has-success .form-control-feedback {\n color: #1BC98E;\n}\n.has-warning .help-block,\n.has-warning .control-label,\n.has-warning .radio,\n.has-warning .checkbox,\n.has-warning .radio-inline,\n.has-warning .checkbox-inline,\n.has-warning.radio label,\n.has-warning.checkbox label,\n.has-warning.radio-inline label,\n.has-warning.checkbox-inline label {\n color: #E4D836;\n}\n.has-warning .form-control {\n border-color: #E4D836;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-warning .form-control:focus {\n border-color: #ccbf1b;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f0e990;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f0e990;\n}\n.has-warning .input-group-addon {\n color: #E4D836;\n border-color: #E4D836;\n background-color: #fcf8e3;\n}\n.has-warning .form-control-feedback {\n color: #E4D836;\n}\n.has-error .help-block,\n.has-error .control-label,\n.has-error .radio,\n.has-error .checkbox,\n.has-error .radio-inline,\n.has-error .checkbox-inline,\n.has-error.radio label,\n.has-error.checkbox label,\n.has-error.radio-inline label,\n.has-error.checkbox-inline label {\n color: #E64759;\n}\n.has-error .form-control {\n border-color: #E64759;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-error .form-control:focus {\n border-color: #dc1e33;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f2a1aa;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f2a1aa;\n}\n.has-error .input-group-addon {\n color: #E64759;\n border-color: #E64759;\n background-color: #f2dede;\n}\n.has-error .form-control-feedback {\n color: #E64759;\n}\n.has-feedback label ~ .form-control-feedback {\n top: 26px;\n}\n.has-feedback label.sr-only ~ .form-control-feedback {\n top: 0;\n}\n.help-block {\n display: block;\n margin-top: 5px;\n margin-bottom: 10px;\n color: #ffffff;\n}\n@media (min-width: 768px) {\n .form-inline .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-static {\n display: inline-block;\n }\n .form-inline .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .form-inline .input-group .input-group-addon,\n .form-inline .input-group .input-group-btn,\n .form-inline .input-group .form-control {\n width: auto;\n }\n .form-inline .input-group > .form-control {\n width: 100%;\n }\n .form-inline .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio,\n .form-inline .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio label,\n .form-inline .checkbox label {\n padding-left: 0;\n }\n .form-inline .radio input[type=\"radio\"],\n .form-inline .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .form-inline .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox,\n.form-horizontal .radio-inline,\n.form-horizontal .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: 7px;\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox {\n min-height: 28px;\n}\n.form-horizontal .form-group {\n margin-left: -15px;\n margin-right: -15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .control-label {\n text-align: right;\n margin-bottom: 0;\n padding-top: 7px;\n }\n}\n.form-horizontal .has-feedback .form-control-feedback {\n right: 15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-lg .control-label {\n padding-top: 11px;\n font-size: 18px;\n }\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-sm .control-label {\n padding-top: 6px;\n font-size: 12px;\n }\n}\n.btn {\n display: inline-block;\n margin-bottom: 0;\n font-weight: normal;\n text-align: center;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none;\n border: 1px solid transparent;\n white-space: nowrap;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.5;\n border-radius: 4px;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.btn:focus,\n.btn:active:focus,\n.btn.active:focus,\n.btn.focus,\n.btn:active.focus,\n.btn.active.focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n.btn:hover,\n.btn:focus,\n.btn.focus {\n color: #51586a;\n text-decoration: none;\n}\n.btn:active,\n.btn.active {\n outline: 0;\n background-image: none;\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn.disabled,\n.btn[disabled],\nfieldset[disabled] .btn {\n cursor: not-allowed;\n opacity: 0.65;\n filter: alpha(opacity=65);\n -webkit-box-shadow: none;\n box-shadow: none;\n}\na.btn.disabled,\nfieldset[disabled] a.btn {\n pointer-events: none;\n}\n.btn-default {\n color: #51586a;\n background-color: #ffffff;\n border-color: #e6e6e6;\n}\n.btn-default:focus,\n.btn-default.focus {\n color: #51586a;\n background-color: #e6e6e6;\n border-color: #a6a6a6;\n}\n.btn-default:hover {\n color: #51586a;\n background-color: #e6e6e6;\n border-color: #c7c7c7;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n color: #51586a;\n background-color: #e6e6e6;\n border-color: #c7c7c7;\n}\n.btn-default:active:hover,\n.btn-default.active:hover,\n.open > .dropdown-toggle.btn-default:hover,\n.btn-default:active:focus,\n.btn-default.active:focus,\n.open > .dropdown-toggle.btn-default:focus,\n.btn-default:active.focus,\n.btn-default.active.focus,\n.open > .dropdown-toggle.btn-default.focus {\n color: #51586a;\n background-color: #d4d4d4;\n border-color: #a6a6a6;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n background-image: none;\n}\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus {\n background-color: #ffffff;\n border-color: #e6e6e6;\n}\n.btn-default .badge {\n color: #ffffff;\n background-color: #51586a;\n}\n.btn-primary {\n color: #fff;\n background-color: #1CA8DD;\n border-color: #1997c6;\n}\n.btn-primary:focus,\n.btn-primary.focus {\n color: #fff;\n background-color: #1686b0;\n border-color: #0b4155;\n}\n.btn-primary:hover {\n color: #fff;\n background-color: #1686b0;\n border-color: #126e90;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n color: #fff;\n background-color: #1686b0;\n border-color: #126e90;\n}\n.btn-primary:active:hover,\n.btn-primary.active:hover,\n.open > .dropdown-toggle.btn-primary:hover,\n.btn-primary:active:focus,\n.btn-primary.active:focus,\n.open > .dropdown-toggle.btn-primary:focus,\n.btn-primary:active.focus,\n.btn-primary.active.focus,\n.open > .dropdown-toggle.btn-primary.focus {\n color: #fff;\n background-color: #126e90;\n border-color: #0b4155;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n background-image: none;\n}\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus {\n background-color: #1CA8DD;\n border-color: #1997c6;\n}\n.btn-primary .badge {\n color: #1CA8DD;\n background-color: #fff;\n}\n.btn-success {\n color: #fff;\n background-color: #1BC98E;\n border-color: #18b37e;\n}\n.btn-success:focus,\n.btn-success.focus {\n color: #fff;\n background-color: #159c6e;\n border-color: #09422f;\n}\n.btn-success:hover {\n color: #fff;\n background-color: #159c6e;\n border-color: #117d58;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n color: #fff;\n background-color: #159c6e;\n border-color: #117d58;\n}\n.btn-success:active:hover,\n.btn-success.active:hover,\n.open > .dropdown-toggle.btn-success:hover,\n.btn-success:active:focus,\n.btn-success.active:focus,\n.open > .dropdown-toggle.btn-success:focus,\n.btn-success:active.focus,\n.btn-success.active.focus,\n.open > .dropdown-toggle.btn-success.focus {\n color: #fff;\n background-color: #117d58;\n border-color: #09422f;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n background-image: none;\n}\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus {\n background-color: #1BC98E;\n border-color: #18b37e;\n}\n.btn-success .badge {\n color: #1BC98E;\n background-color: #fff;\n}\n.btn-info {\n color: #fff;\n background-color: #9F86FF;\n border-color: #8b6cff;\n}\n.btn-info:focus,\n.btn-info.focus {\n color: #fff;\n background-color: #7753ff;\n border-color: #3100ec;\n}\n.btn-info:hover {\n color: #fff;\n background-color: #7753ff;\n border-color: #5a2fff;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n color: #fff;\n background-color: #7753ff;\n border-color: #5a2fff;\n}\n.btn-info:active:hover,\n.btn-info.active:hover,\n.open > .dropdown-toggle.btn-info:hover,\n.btn-info:active:focus,\n.btn-info.active:focus,\n.open > .dropdown-toggle.btn-info:focus,\n.btn-info:active.focus,\n.btn-info.active.focus,\n.open > .dropdown-toggle.btn-info.focus {\n color: #fff;\n background-color: #5a2fff;\n border-color: #3100ec;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n background-image: none;\n}\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus {\n background-color: #9F86FF;\n border-color: #8b6cff;\n}\n.btn-info .badge {\n color: #9F86FF;\n background-color: #fff;\n}\n.btn-warning {\n color: #fff;\n background-color: #E4D836;\n border-color: #e1d420;\n}\n.btn-warning:focus,\n.btn-warning.focus {\n color: #fff;\n background-color: #ccbf1b;\n border-color: #726b0f;\n}\n.btn-warning:hover {\n color: #fff;\n background-color: #ccbf1b;\n border-color: #aca217;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n color: #fff;\n background-color: #ccbf1b;\n border-color: #aca217;\n}\n.btn-warning:active:hover,\n.btn-warning.active:hover,\n.open > .dropdown-toggle.btn-warning:hover,\n.btn-warning:active:focus,\n.btn-warning.active:focus,\n.open > .dropdown-toggle.btn-warning:focus,\n.btn-warning:active.focus,\n.btn-warning.active.focus,\n.open > .dropdown-toggle.btn-warning.focus {\n color: #fff;\n background-color: #aca217;\n border-color: #726b0f;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n background-image: none;\n}\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus {\n background-color: #E4D836;\n border-color: #e1d420;\n}\n.btn-warning .badge {\n color: #E4D836;\n background-color: #fff;\n}\n.btn-danger {\n color: #fff;\n background-color: #E64759;\n border-color: #e33145;\n}\n.btn-danger:focus,\n.btn-danger.focus {\n color: #fff;\n background-color: #dc1e33;\n border-color: #82121e;\n}\n.btn-danger:hover {\n color: #fff;\n background-color: #dc1e33;\n border-color: #bd1a2c;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n color: #fff;\n background-color: #dc1e33;\n border-color: #bd1a2c;\n}\n.btn-danger:active:hover,\n.btn-danger.active:hover,\n.open > .dropdown-toggle.btn-danger:hover,\n.btn-danger:active:focus,\n.btn-danger.active:focus,\n.open > .dropdown-toggle.btn-danger:focus,\n.btn-danger:active.focus,\n.btn-danger.active.focus,\n.open > .dropdown-toggle.btn-danger.focus {\n color: #fff;\n background-color: #bd1a2c;\n border-color: #82121e;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n background-image: none;\n}\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus {\n background-color: #E64759;\n border-color: #e33145;\n}\n.btn-danger .badge {\n color: #E64759;\n background-color: #fff;\n}\n.btn-link {\n color: #1CA8DD;\n font-weight: normal;\n border-radius: 0;\n}\n.btn-link,\n.btn-link:active,\n.btn-link.active,\n.btn-link[disabled],\nfieldset[disabled] .btn-link {\n background-color: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-link,\n.btn-link:hover,\n.btn-link:focus,\n.btn-link:active {\n border-color: transparent;\n}\n.btn-link:hover,\n.btn-link:focus {\n color: #137499;\n text-decoration: underline;\n background-color: transparent;\n}\n.btn-link[disabled]:hover,\nfieldset[disabled] .btn-link:hover,\n.btn-link[disabled]:focus,\nfieldset[disabled] .btn-link:focus {\n color: #cfd2da;\n text-decoration: none;\n}\n.btn-lg,\n.btn-group-lg > .btn {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\n.btn-sm,\n.btn-group-sm > .btn {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-xs,\n.btn-group-xs > .btn {\n padding: 1px 5px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-block {\n display: block;\n width: 100%;\n}\n.btn-block + .btn-block {\n margin-top: 5px;\n}\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%;\n}\n.container {\n margin-right: auto;\n margin-left: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n@media (min-width: 768px) {\n .container {\n width: 750px;\n }\n}\n@media (min-width: 992px) {\n .container {\n width: 970px;\n }\n}\n@media (min-width: 1200px) {\n .container {\n width: 1170px;\n }\n}\n.container-fluid {\n margin-right: auto;\n margin-left: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n.row {\n margin-left: -15px;\n margin-right: -15px;\n}\n.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {\n position: relative;\n min-height: 1px;\n padding-left: 15px;\n padding-right: 15px;\n}\n.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 {\n float: left;\n}\n.col-xs-12 {\n width: 100%;\n}\n.col-xs-11 {\n width: 91.66666667%;\n}\n.col-xs-10 {\n width: 83.33333333%;\n}\n.col-xs-9 {\n width: 75%;\n}\n.col-xs-8 {\n width: 66.66666667%;\n}\n.col-xs-7 {\n width: 58.33333333%;\n}\n.col-xs-6 {\n width: 50%;\n}\n.col-xs-5 {\n width: 41.66666667%;\n}\n.col-xs-4 {\n width: 33.33333333%;\n}\n.col-xs-3 {\n width: 25%;\n}\n.col-xs-2 {\n width: 16.66666667%;\n}\n.col-xs-1 {\n width: 8.33333333%;\n}\n.col-xs-pull-12 {\n right: 100%;\n}\n.col-xs-pull-11 {\n right: 91.66666667%;\n}\n.col-xs-pull-10 {\n right: 83.33333333%;\n}\n.col-xs-pull-9 {\n right: 75%;\n}\n.col-xs-pull-8 {\n right: 66.66666667%;\n}\n.col-xs-pull-7 {\n right: 58.33333333%;\n}\n.col-xs-pull-6 {\n right: 50%;\n}\n.col-xs-pull-5 {\n right: 41.66666667%;\n}\n.col-xs-pull-4 {\n right: 33.33333333%;\n}\n.col-xs-pull-3 {\n right: 25%;\n}\n.col-xs-pull-2 {\n right: 16.66666667%;\n}\n.col-xs-pull-1 {\n right: 8.33333333%;\n}\n.col-xs-pull-0 {\n right: auto;\n}\n.col-xs-push-12 {\n left: 100%;\n}\n.col-xs-push-11 {\n left: 91.66666667%;\n}\n.col-xs-push-10 {\n left: 83.33333333%;\n}\n.col-xs-push-9 {\n left: 75%;\n}\n.col-xs-push-8 {\n left: 66.66666667%;\n}\n.col-xs-push-7 {\n left: 58.33333333%;\n}\n.col-xs-push-6 {\n left: 50%;\n}\n.col-xs-push-5 {\n left: 41.66666667%;\n}\n.col-xs-push-4 {\n left: 33.33333333%;\n}\n.col-xs-push-3 {\n left: 25%;\n}\n.col-xs-push-2 {\n left: 16.66666667%;\n}\n.col-xs-push-1 {\n left: 8.33333333%;\n}\n.col-xs-push-0 {\n left: auto;\n}\n.col-xs-offset-12 {\n margin-left: 100%;\n}\n.col-xs-offset-11 {\n margin-left: 91.66666667%;\n}\n.col-xs-offset-10 {\n margin-left: 83.33333333%;\n}\n.col-xs-offset-9 {\n margin-left: 75%;\n}\n.col-xs-offset-8 {\n margin-left: 66.66666667%;\n}\n.col-xs-offset-7 {\n margin-left: 58.33333333%;\n}\n.col-xs-offset-6 {\n margin-left: 50%;\n}\n.col-xs-offset-5 {\n margin-left: 41.66666667%;\n}\n.col-xs-offset-4 {\n margin-left: 33.33333333%;\n}\n.col-xs-offset-3 {\n margin-left: 25%;\n}\n.col-xs-offset-2 {\n margin-left: 16.66666667%;\n}\n.col-xs-offset-1 {\n margin-left: 8.33333333%;\n}\n.col-xs-offset-0 {\n margin-left: 0%;\n}\n@media (min-width: 768px) {\n .col-sm-1, .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 {\n float: left;\n }\n .col-sm-12 {\n width: 100%;\n }\n .col-sm-11 {\n width: 91.66666667%;\n }\n .col-sm-10 {\n width: 83.33333333%;\n }\n .col-sm-9 {\n width: 75%;\n }\n .col-sm-8 {\n width: 66.66666667%;\n }\n .col-sm-7 {\n width: 58.33333333%;\n }\n .col-sm-6 {\n width: 50%;\n }\n .col-sm-5 {\n width: 41.66666667%;\n }\n .col-sm-4 {\n width: 33.33333333%;\n }\n .col-sm-3 {\n width: 25%;\n }\n .col-sm-2 {\n width: 16.66666667%;\n }\n .col-sm-1 {\n width: 8.33333333%;\n }\n .col-sm-pull-12 {\n right: 100%;\n }\n .col-sm-pull-11 {\n right: 91.66666667%;\n }\n .col-sm-pull-10 {\n right: 83.33333333%;\n }\n .col-sm-pull-9 {\n right: 75%;\n }\n .col-sm-pull-8 {\n right: 66.66666667%;\n }\n .col-sm-pull-7 {\n right: 58.33333333%;\n }\n .col-sm-pull-6 {\n right: 50%;\n }\n .col-sm-pull-5 {\n right: 41.66666667%;\n }\n .col-sm-pull-4 {\n right: 33.33333333%;\n }\n .col-sm-pull-3 {\n right: 25%;\n }\n .col-sm-pull-2 {\n right: 16.66666667%;\n }\n .col-sm-pull-1 {\n right: 8.33333333%;\n }\n .col-sm-pull-0 {\n right: auto;\n }\n .col-sm-push-12 {\n left: 100%;\n }\n .col-sm-push-11 {\n left: 91.66666667%;\n }\n .col-sm-push-10 {\n left: 83.33333333%;\n }\n .col-sm-push-9 {\n left: 75%;\n }\n .col-sm-push-8 {\n left: 66.66666667%;\n }\n .col-sm-push-7 {\n left: 58.33333333%;\n }\n .col-sm-push-6 {\n left: 50%;\n }\n .col-sm-push-5 {\n left: 41.66666667%;\n }\n .col-sm-push-4 {\n left: 33.33333333%;\n }\n .col-sm-push-3 {\n left: 25%;\n }\n .col-sm-push-2 {\n left: 16.66666667%;\n }\n .col-sm-push-1 {\n left: 8.33333333%;\n }\n .col-sm-push-0 {\n left: auto;\n }\n .col-sm-offset-12 {\n margin-left: 100%;\n }\n .col-sm-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-sm-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-sm-offset-9 {\n margin-left: 75%;\n }\n .col-sm-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-sm-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-sm-offset-6 {\n margin-left: 50%;\n }\n .col-sm-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-sm-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-sm-offset-3 {\n margin-left: 25%;\n }\n .col-sm-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-sm-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-sm-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 992px) {\n .col-md-1, .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 {\n float: left;\n }\n .col-md-12 {\n width: 100%;\n }\n .col-md-11 {\n width: 91.66666667%;\n }\n .col-md-10 {\n width: 83.33333333%;\n }\n .col-md-9 {\n width: 75%;\n }\n .col-md-8 {\n width: 66.66666667%;\n }\n .col-md-7 {\n width: 58.33333333%;\n }\n .col-md-6 {\n width: 50%;\n }\n .col-md-5 {\n width: 41.66666667%;\n }\n .col-md-4 {\n width: 33.33333333%;\n }\n .col-md-3 {\n width: 25%;\n }\n .col-md-2 {\n width: 16.66666667%;\n }\n .col-md-1 {\n width: 8.33333333%;\n }\n .col-md-pull-12 {\n right: 100%;\n }\n .col-md-pull-11 {\n right: 91.66666667%;\n }\n .col-md-pull-10 {\n right: 83.33333333%;\n }\n .col-md-pull-9 {\n right: 75%;\n }\n .col-md-pull-8 {\n right: 66.66666667%;\n }\n .col-md-pull-7 {\n right: 58.33333333%;\n }\n .col-md-pull-6 {\n right: 50%;\n }\n .col-md-pull-5 {\n right: 41.66666667%;\n }\n .col-md-pull-4 {\n right: 33.33333333%;\n }\n .col-md-pull-3 {\n right: 25%;\n }\n .col-md-pull-2 {\n right: 16.66666667%;\n }\n .col-md-pull-1 {\n right: 8.33333333%;\n }\n .col-md-pull-0 {\n right: auto;\n }\n .col-md-push-12 {\n left: 100%;\n }\n .col-md-push-11 {\n left: 91.66666667%;\n }\n .col-md-push-10 {\n left: 83.33333333%;\n }\n .col-md-push-9 {\n left: 75%;\n }\n .col-md-push-8 {\n left: 66.66666667%;\n }\n .col-md-push-7 {\n left: 58.33333333%;\n }\n .col-md-push-6 {\n left: 50%;\n }\n .col-md-push-5 {\n left: 41.66666667%;\n }\n .col-md-push-4 {\n left: 33.33333333%;\n }\n .col-md-push-3 {\n left: 25%;\n }\n .col-md-push-2 {\n left: 16.66666667%;\n }\n .col-md-push-1 {\n left: 8.33333333%;\n }\n .col-md-push-0 {\n left: auto;\n }\n .col-md-offset-12 {\n margin-left: 100%;\n }\n .col-md-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-md-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-md-offset-9 {\n margin-left: 75%;\n }\n .col-md-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-md-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-md-offset-6 {\n margin-left: 50%;\n }\n .col-md-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-md-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-md-offset-3 {\n margin-left: 25%;\n }\n .col-md-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-md-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-md-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 1200px) {\n .col-lg-1, .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 {\n float: left;\n }\n .col-lg-12 {\n width: 100%;\n }\n .col-lg-11 {\n width: 91.66666667%;\n }\n .col-lg-10 {\n width: 83.33333333%;\n }\n .col-lg-9 {\n width: 75%;\n }\n .col-lg-8 {\n width: 66.66666667%;\n }\n .col-lg-7 {\n width: 58.33333333%;\n }\n .col-lg-6 {\n width: 50%;\n }\n .col-lg-5 {\n width: 41.66666667%;\n }\n .col-lg-4 {\n width: 33.33333333%;\n }\n .col-lg-3 {\n width: 25%;\n }\n .col-lg-2 {\n width: 16.66666667%;\n }\n .col-lg-1 {\n width: 8.33333333%;\n }\n .col-lg-pull-12 {\n right: 100%;\n }\n .col-lg-pull-11 {\n right: 91.66666667%;\n }\n .col-lg-pull-10 {\n right: 83.33333333%;\n }\n .col-lg-pull-9 {\n right: 75%;\n }\n .col-lg-pull-8 {\n right: 66.66666667%;\n }\n .col-lg-pull-7 {\n right: 58.33333333%;\n }\n .col-lg-pull-6 {\n right: 50%;\n }\n .col-lg-pull-5 {\n right: 41.66666667%;\n }\n .col-lg-pull-4 {\n right: 33.33333333%;\n }\n .col-lg-pull-3 {\n right: 25%;\n }\n .col-lg-pull-2 {\n right: 16.66666667%;\n }\n .col-lg-pull-1 {\n right: 8.33333333%;\n }\n .col-lg-pull-0 {\n right: auto;\n }\n .col-lg-push-12 {\n left: 100%;\n }\n .col-lg-push-11 {\n left: 91.66666667%;\n }\n .col-lg-push-10 {\n left: 83.33333333%;\n }\n .col-lg-push-9 {\n left: 75%;\n }\n .col-lg-push-8 {\n left: 66.66666667%;\n }\n .col-lg-push-7 {\n left: 58.33333333%;\n }\n .col-lg-push-6 {\n left: 50%;\n }\n .col-lg-push-5 {\n left: 41.66666667%;\n }\n .col-lg-push-4 {\n left: 33.33333333%;\n }\n .col-lg-push-3 {\n left: 25%;\n }\n .col-lg-push-2 {\n left: 16.66666667%;\n }\n .col-lg-push-1 {\n left: 8.33333333%;\n }\n .col-lg-push-0 {\n left: auto;\n }\n .col-lg-offset-12 {\n margin-left: 100%;\n }\n .col-lg-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-lg-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-lg-offset-9 {\n margin-left: 75%;\n }\n .col-lg-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-lg-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-lg-offset-6 {\n margin-left: 50%;\n }\n .col-lg-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-lg-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-lg-offset-3 {\n margin-left: 25%;\n }\n .col-lg-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-lg-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-lg-offset-0 {\n margin-left: 0%;\n }\n}\n.fade {\n opacity: 0;\n -webkit-transition: opacity 0.15s linear;\n -o-transition: opacity 0.15s linear;\n transition: opacity 0.15s linear;\n}\n.fade.in {\n opacity: 1;\n}\n.collapse {\n display: none;\n}\n.collapse.in {\n display: block;\n}\ntr.collapse.in {\n display: table-row;\n}\ntbody.collapse.in {\n display: table-row-group;\n}\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n -webkit-transition-property: height, visibility;\n transition-property: height, visibility;\n -webkit-transition-duration: 0.35s;\n transition-duration: 0.35s;\n -webkit-transition-timing-function: ease;\n transition-timing-function: ease;\n}\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: 4px dashed;\n border-top: 4px solid \\9;\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n}\n.dropup,\n.dropdown {\n position: relative;\n}\n.dropdown-toggle:focus {\n outline: 0;\n}\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0;\n list-style: none;\n font-size: 14px;\n text-align: left;\n background-color: #fff;\n border: 1px solid #ccc;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 4px;\n -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n background-clip: padding-box;\n}\n.dropdown-menu.pull-right {\n right: 0;\n left: auto;\n}\n.dropdown-menu .divider {\n height: 1px;\n margin: 9.5px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.dropdown-menu > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: 1.5;\n color: #51586a;\n white-space: nowrap;\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n text-decoration: none;\n color: #464c5b;\n background-color: #f5f5f5;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n color: #fff;\n text-decoration: none;\n outline: 0;\n background-color: #1CA8DD;\n}\n.dropdown-menu > .disabled > a,\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n color: #cfd2da;\n}\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none;\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n cursor: not-allowed;\n}\n.open > .dropdown-menu {\n display: block;\n}\n.open > a {\n outline: 0;\n}\n.dropdown-menu-right {\n left: auto;\n right: 0;\n}\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: 12px;\n line-height: 1.5;\n color: #cfd2da;\n white-space: nowrap;\n}\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: 990;\n}\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n.dropup .caret,\n.navbar-fixed-bottom .dropdown .caret {\n border-top: 0;\n border-bottom: 4px dashed;\n border-bottom: 4px solid \\9;\n content: \"\";\n}\n.dropup .dropdown-menu,\n.navbar-fixed-bottom .dropdown .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n}\n@media (min-width: 992px) {\n .navbar-right .dropdown-menu {\n left: auto;\n right: 0;\n }\n .navbar-right .dropdown-menu-left {\n left: 0;\n right: auto;\n }\n}\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n float: left;\n}\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group-vertical > .btn:focus,\n.btn-group > .btn:active,\n.btn-group-vertical > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn.active {\n z-index: 2;\n}\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group {\n margin-left: -1px;\n}\n.btn-toolbar {\n margin-left: -5px;\n}\n.btn-toolbar .btn,\n.btn-toolbar .btn-group,\n.btn-toolbar .input-group {\n float: left;\n}\n.btn-toolbar > .btn,\n.btn-toolbar > .btn-group,\n.btn-toolbar > .input-group {\n margin-left: 5px;\n}\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n.btn-group > .btn:first-child {\n margin-left: 0;\n}\n.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n.btn-group.open .dropdown-toggle {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-group.open .dropdown-toggle.btn-link {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn .caret {\n margin-left: 0;\n}\n.btn-lg .caret {\n border-width: 5px 5px 0;\n border-bottom-width: 0;\n}\n.dropup .btn-lg .caret {\n border-width: 0 5px 5px;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group,\n.btn-group-vertical > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n}\n.btn-group-vertical > .btn-group > .btn {\n float: none;\n}\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n}\n.btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.btn-group-vertical > .btn:first-child:not(:last-child) {\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn:last-child:not(:first-child) {\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n}\n.btn-group-justified > .btn,\n.btn-group-justified > .btn-group {\n float: none;\n display: table-cell;\n width: 1%;\n}\n.btn-group-justified > .btn-group .btn {\n width: 100%;\n}\n.btn-group-justified > .btn-group .dropdown-menu {\n left: auto;\n}\n[data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n.input-group {\n position: relative;\n display: table;\n border-collapse: separate;\n}\n.input-group[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0;\n}\n.input-group .form-control {\n position: relative;\n z-index: 2;\n float: left;\n width: 100%;\n margin-bottom: 0;\n}\n.input-group .form-control:focus {\n z-index: 3;\n}\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-group-lg > .form-control,\nselect.input-group-lg > .input-group-addon,\nselect.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-group-lg > .form-control,\ntextarea.input-group-lg > .input-group-addon,\ntextarea.input-group-lg > .input-group-btn > .btn,\nselect[multiple].input-group-lg > .form-control,\nselect[multiple].input-group-lg > .input-group-addon,\nselect[multiple].input-group-lg > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-group-sm > .form-control,\nselect.input-group-sm > .input-group-addon,\nselect.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-group-sm > .form-control,\ntextarea.input-group-sm > .input-group-addon,\ntextarea.input-group-sm > .input-group-btn > .btn,\nselect[multiple].input-group-sm > .form-control,\nselect[multiple].input-group-sm > .input-group-addon,\nselect[multiple].input-group-sm > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n}\n.input-group-addon:not(:first-child):not(:last-child),\n.input-group-btn:not(:first-child):not(:last-child),\n.input-group .form-control:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle;\n}\n.input-group-addon {\n padding: 6px 12px;\n font-size: 14px;\n font-weight: normal;\n line-height: 1;\n color: #fff;\n text-align: center;\n background-color: #4d5364;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.input-group-addon.input-sm {\n padding: 5px 10px;\n font-size: 12px;\n border-radius: 3px;\n}\n.input-group-addon.input-lg {\n padding: 10px 16px;\n font-size: 18px;\n border-radius: 6px;\n}\n.input-group-addon input[type=\"radio\"],\n.input-group-addon input[type=\"checkbox\"] {\n margin-top: 0;\n}\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n.input-group-btn {\n position: relative;\n font-size: 0;\n white-space: nowrap;\n}\n.input-group-btn > .btn {\n position: relative;\n}\n.input-group-btn > .btn + .btn {\n margin-left: -1px;\n}\n.input-group-btn > .btn:hover,\n.input-group-btn > .btn:focus,\n.input-group-btn > .btn:active {\n z-index: 2;\n}\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group {\n margin-right: -1px;\n}\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group {\n z-index: 2;\n margin-left: -1px;\n}\n.nav {\n margin-bottom: 0;\n padding-left: 0;\n list-style: none;\n}\n.nav > li {\n position: relative;\n display: block;\n}\n.nav > li > a {\n position: relative;\n display: block;\n padding: 7px 15px;\n}\n.nav > li > a:hover,\n.nav > li > a:focus {\n text-decoration: none;\n background-color: #434857;\n}\n.nav > li.disabled > a {\n color: #cfd2da;\n}\n.nav > li.disabled > a:hover,\n.nav > li.disabled > a:focus {\n color: #cfd2da;\n text-decoration: none;\n background-color: transparent;\n cursor: not-allowed;\n}\n.nav .open > a,\n.nav .open > a:hover,\n.nav .open > a:focus {\n background-color: #434857;\n border-color: #1CA8DD;\n}\n.nav .nav-divider {\n height: 1px;\n margin: 9.5px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.nav > li > a > img {\n max-width: none;\n}\n.nav-tabs {\n border-bottom: 1px solid #252830;\n}\n.nav-tabs > li {\n float: left;\n margin-bottom: -1px;\n}\n.nav-tabs > li > a {\n margin-right: 2px;\n line-height: 1.5;\n border: 1px solid transparent;\n border-radius: 4px 4px 0 0;\n}\n.nav-tabs > li > a:hover {\n border-color: #ffffff #ffffff #252830;\n}\n.nav-tabs > li.active > a,\n.nav-tabs > li.active > a:hover,\n.nav-tabs > li.active > a:focus {\n color: #fff;\n background-color: transparent;\n border: 1px solid #252830;\n border-bottom-color: transparent;\n cursor: default;\n}\n.nav-tabs.nav-justified {\n width: 100%;\n border-bottom: 0;\n}\n.nav-tabs.nav-justified > li {\n float: none;\n}\n.nav-tabs.nav-justified > li > a {\n text-align: center;\n margin-bottom: 5px;\n}\n.nav-tabs.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-tabs.nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs.nav-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs.nav-justified > .active > a,\n.nav-tabs.nav-justified > .active > a:hover,\n.nav-tabs.nav-justified > .active > a:focus {\n border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li > a {\n border-bottom: 1px solid #ddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs.nav-justified > .active > a,\n .nav-tabs.nav-justified > .active > a:hover,\n .nav-tabs.nav-justified > .active > a:focus {\n border-bottom-color: #252830;\n }\n}\n.nav-pills > li {\n float: left;\n}\n.nav-pills > li > a {\n border-radius: 4px;\n}\n.nav-pills > li + li {\n margin-left: 2px;\n}\n.nav-pills > li.active > a,\n.nav-pills > li.active > a:hover,\n.nav-pills > li.active > a:focus {\n color: #252830;\n background-color: #1CA8DD;\n}\n.nav-stacked > li {\n float: none;\n}\n.nav-stacked > li + li {\n margin-top: 2px;\n margin-left: 0;\n}\n.nav-justified {\n width: 100%;\n}\n.nav-justified > li {\n float: none;\n}\n.nav-justified > li > a {\n text-align: center;\n margin-bottom: 5px;\n}\n.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs-justified {\n border-bottom: 0;\n}\n.nav-tabs-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs-justified > .active > a,\n.nav-tabs-justified > .active > a:hover,\n.nav-tabs-justified > .active > a:focus {\n border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n .nav-tabs-justified > li > a {\n border-bottom: 1px solid #ddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs-justified > .active > a,\n .nav-tabs-justified > .active > a:hover,\n .nav-tabs-justified > .active > a:focus {\n border-bottom-color: #252830;\n }\n}\n.tab-content > .tab-pane {\n display: none;\n}\n.tab-content > .active {\n display: block;\n}\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.navbar {\n position: relative;\n min-height: 50px;\n margin-bottom: 21px;\n border: 1px solid transparent;\n}\n@media (min-width: 992px) {\n .navbar {\n border-radius: 4px;\n }\n}\n@media (min-width: 992px) {\n .navbar-header {\n float: left;\n }\n}\n.navbar-collapse {\n overflow-x: visible;\n padding-right: 15px;\n padding-left: 15px;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\n -webkit-overflow-scrolling: touch;\n}\n.navbar-collapse.in {\n overflow-y: auto;\n}\n@media (min-width: 992px) {\n .navbar-collapse {\n width: auto;\n border-top: 0;\n box-shadow: none;\n }\n .navbar-collapse.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0;\n overflow: visible !important;\n }\n .navbar-collapse.in {\n overflow-y: visible;\n }\n .navbar-fixed-top .navbar-collapse,\n .navbar-static-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n padding-left: 0;\n padding-right: 0;\n }\n}\n.navbar-fixed-top .navbar-collapse,\n.navbar-fixed-bottom .navbar-collapse {\n max-height: 340px;\n}\n@media (max-device-width: 480px) and (orientation: landscape) {\n .navbar-fixed-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n max-height: 200px;\n }\n}\n.container > .navbar-header,\n.container-fluid > .navbar-header,\n.container > .navbar-collapse,\n.container-fluid > .navbar-collapse {\n margin-right: -15px;\n margin-left: -15px;\n}\n@media (min-width: 992px) {\n .container > .navbar-header,\n .container-fluid > .navbar-header,\n .container > .navbar-collapse,\n .container-fluid > .navbar-collapse {\n margin-right: 0;\n margin-left: 0;\n }\n}\n.navbar-static-top {\n z-index: 1000;\n border-width: 0 0 1px;\n}\n@media (min-width: 992px) {\n .navbar-static-top {\n border-radius: 0;\n }\n}\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n@media (min-width: 992px) {\n .navbar-fixed-top,\n .navbar-fixed-bottom {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0;\n border-width: 1px 0 0;\n}\n.navbar-brand {\n float: left;\n padding: 14.5px 15px;\n font-size: 18px;\n line-height: 21px;\n height: 50px;\n}\n.navbar-brand:hover,\n.navbar-brand:focus {\n text-decoration: none;\n}\n.navbar-brand > img {\n display: block;\n}\n@media (min-width: 992px) {\n .navbar > .container .navbar-brand,\n .navbar > .container-fluid .navbar-brand {\n margin-left: -15px;\n }\n}\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: 15px;\n padding: 9px 10px;\n margin-top: 8px;\n margin-bottom: 8px;\n background-color: transparent;\n background-image: none;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.navbar-toggle:focus {\n outline: 0;\n}\n.navbar-toggle .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n}\n.navbar-toggle .icon-bar + .icon-bar {\n margin-top: 4px;\n}\n@media (min-width: 992px) {\n .navbar-toggle {\n display: none;\n }\n}\n.navbar-nav {\n margin: 7.25px -15px;\n}\n.navbar-nav > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: 21px;\n}\n@media (max-width: 991px) {\n .navbar-nav .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n }\n .navbar-nav .open .dropdown-menu > li > a,\n .navbar-nav .open .dropdown-menu .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n .navbar-nav .open .dropdown-menu > li > a {\n line-height: 21px;\n }\n .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-nav .open .dropdown-menu > li > a:focus {\n background-image: none;\n }\n}\n@media (min-width: 992px) {\n .navbar-nav {\n float: left;\n margin: 0;\n }\n .navbar-nav > li {\n float: left;\n }\n .navbar-nav > li > a {\n padding-top: 14.5px;\n padding-bottom: 14.5px;\n }\n}\n.navbar-form {\n margin-left: -15px;\n margin-right: -15px;\n padding: 10px 15px;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n margin-top: 7.5px;\n margin-bottom: 7.5px;\n}\n@media (min-width: 768px) {\n .navbar-form .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .navbar-form .form-control-static {\n display: inline-block;\n }\n .navbar-form .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .navbar-form .input-group .input-group-addon,\n .navbar-form .input-group .input-group-btn,\n .navbar-form .input-group .form-control {\n width: auto;\n }\n .navbar-form .input-group > .form-control {\n width: 100%;\n }\n .navbar-form .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio,\n .navbar-form .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio label,\n .navbar-form .checkbox label {\n padding-left: 0;\n }\n .navbar-form .radio input[type=\"radio\"],\n .navbar-form .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .navbar-form .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n@media (max-width: 991px) {\n .navbar-form .form-group {\n margin-bottom: 5px;\n }\n .navbar-form .form-group:last-child {\n margin-bottom: 0;\n }\n}\n@media (min-width: 992px) {\n .navbar-form {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n }\n}\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.navbar-btn {\n margin-top: 7.5px;\n margin-bottom: 7.5px;\n}\n.navbar-btn.btn-sm {\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.navbar-btn.btn-xs {\n margin-top: 14px;\n margin-bottom: 14px;\n}\n.navbar-text {\n margin-top: 14.5px;\n margin-bottom: 14.5px;\n}\n@media (min-width: 992px) {\n .navbar-text {\n float: left;\n margin-left: 15px;\n margin-right: 15px;\n }\n}\n@media (min-width: 992px) {\n .navbar-left {\n float: left !important;\n }\n .navbar-right {\n float: right !important;\n margin-right: -15px;\n }\n .navbar-right ~ .navbar-right {\n margin-right: 0;\n }\n}\n.navbar-default {\n background-color: #f8f8f8;\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-brand {\n color: #777;\n}\n.navbar-default .navbar-brand:hover,\n.navbar-default .navbar-brand:focus {\n color: #5e5e5e;\n background-color: transparent;\n}\n.navbar-default .navbar-text {\n color: #777;\n}\n.navbar-default .navbar-nav > li > a {\n color: #777;\n}\n.navbar-default .navbar-nav > li > a:hover,\n.navbar-default .navbar-nav > li > a:focus {\n color: #333;\n background-color: transparent;\n}\n.navbar-default .navbar-nav > .active > a,\n.navbar-default .navbar-nav > .active > a:hover,\n.navbar-default .navbar-nav > .active > a:focus {\n color: #555;\n background-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .disabled > a,\n.navbar-default .navbar-nav > .disabled > a:hover,\n.navbar-default .navbar-nav > .disabled > a:focus {\n color: #ccc;\n background-color: transparent;\n}\n.navbar-default .navbar-toggle {\n border-color: #ddd;\n}\n.navbar-default .navbar-toggle:hover,\n.navbar-default .navbar-toggle:focus {\n background-color: #ddd;\n}\n.navbar-default .navbar-toggle .icon-bar {\n background-color: #888;\n}\n.navbar-default .navbar-collapse,\n.navbar-default .navbar-form {\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .open > a:hover,\n.navbar-default .navbar-nav > .open > a:focus {\n background-color: #e7e7e7;\n color: #555;\n}\n@media (max-width: 991px) {\n .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n color: #777;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #333;\n background-color: transparent;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #555;\n background-color: #e7e7e7;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #ccc;\n background-color: transparent;\n }\n}\n.navbar-default .navbar-link {\n color: #777;\n}\n.navbar-default .navbar-link:hover {\n color: #333;\n}\n.navbar-default .btn-link {\n color: #777;\n}\n.navbar-default .btn-link:hover,\n.navbar-default .btn-link:focus {\n color: #333;\n}\n.navbar-default .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-default .btn-link:hover,\n.navbar-default .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-default .btn-link:focus {\n color: #ccc;\n}\n.navbar-inverse {\n background-color: #1a1c22;\n border-color: #1a1c22;\n}\n.navbar-inverse .navbar-brand {\n color: #cfd2da;\n}\n.navbar-inverse .navbar-brand:hover,\n.navbar-inverse .navbar-brand:focus {\n color: #fff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-text {\n color: #cfd2da;\n}\n.navbar-inverse .navbar-nav > li > a {\n color: #cfd2da;\n}\n.navbar-inverse .navbar-nav > li > a:hover,\n.navbar-inverse .navbar-nav > li > a:focus {\n color: #fff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .active > a,\n.navbar-inverse .navbar-nav > .active > a:hover,\n.navbar-inverse .navbar-nav > .active > a:focus {\n color: #fff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .disabled > a,\n.navbar-inverse .navbar-nav > .disabled > a:hover,\n.navbar-inverse .navbar-nav > .disabled > a:focus {\n color: #51586a;\n background-color: transparent;\n}\n.navbar-inverse .navbar-toggle {\n border-color: transparent;\n}\n.navbar-inverse .navbar-toggle:hover,\n.navbar-inverse .navbar-toggle:focus {\n background-color: #252830;\n}\n.navbar-inverse .navbar-toggle .icon-bar {\n background-color: #fff;\n}\n.navbar-inverse .navbar-collapse,\n.navbar-inverse .navbar-form {\n border-color: #0a0b0d;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .open > a:hover,\n.navbar-inverse .navbar-nav > .open > a:focus {\n background-color: transparent;\n color: #fff;\n}\n@media (max-width: 991px) {\n .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n border-color: #1a1c22;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\n background-color: #1a1c22;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n color: #cfd2da;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #fff;\n background-color: transparent;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-color: transparent;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #51586a;\n background-color: transparent;\n }\n}\n.navbar-inverse .navbar-link {\n color: #cfd2da;\n}\n.navbar-inverse .navbar-link:hover {\n color: #fff;\n}\n.navbar-inverse .btn-link {\n color: #cfd2da;\n}\n.navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link:focus {\n color: #fff;\n}\n.navbar-inverse .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-inverse .btn-link:focus {\n color: #51586a;\n}\n.breadcrumb {\n padding: 8px 15px;\n margin-bottom: 21px;\n list-style: none;\n background-color: #30343e;\n border-radius: 4px;\n}\n.breadcrumb > li {\n display: inline-block;\n}\n.breadcrumb > li + li:before {\n content: \"/\\00a0\";\n padding: 0 5px;\n color: #51586a;\n}\n.breadcrumb > .active {\n color: #fff;\n}\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: 21px 0;\n border-radius: 4px;\n}\n.pagination > li {\n display: inline;\n}\n.pagination > li > a,\n.pagination > li > span {\n position: relative;\n float: left;\n padding: 6px 12px;\n line-height: 1.5;\n text-decoration: none;\n color: #51586a;\n background-color: #252830;\n border: 1px solid #434857;\n margin-left: -1px;\n}\n.pagination > li:first-child > a,\n.pagination > li:first-child > span {\n margin-left: 0;\n border-bottom-left-radius: 4px;\n border-top-left-radius: 4px;\n}\n.pagination > li:last-child > a,\n.pagination > li:last-child > span {\n border-bottom-right-radius: 4px;\n border-top-right-radius: 4px;\n}\n.pagination > li > a:hover,\n.pagination > li > span:hover,\n.pagination > li > a:focus,\n.pagination > li > span:focus {\n z-index: 2;\n color: #fff;\n background-color: #434857;\n border-color: #434857;\n}\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover,\n.pagination > .active > span:hover,\n.pagination > .active > a:focus,\n.pagination > .active > span:focus {\n z-index: 3;\n color: #fff;\n background-color: #51586a;\n border-color: #51586a;\n cursor: default;\n}\n.pagination > .disabled > span,\n.pagination > .disabled > span:hover,\n.pagination > .disabled > span:focus,\n.pagination > .disabled > a,\n.pagination > .disabled > a:hover,\n.pagination > .disabled > a:focus {\n color: #51586a;\n background-color: transparent;\n border-color: #434857;\n cursor: not-allowed;\n pointer-events: none;\n}\n.pagination-lg > li > a,\n.pagination-lg > li > span {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n}\n.pagination-lg > li:first-child > a,\n.pagination-lg > li:first-child > span {\n border-bottom-left-radius: 6px;\n border-top-left-radius: 6px;\n}\n.pagination-lg > li:last-child > a,\n.pagination-lg > li:last-child > span {\n border-bottom-right-radius: 6px;\n border-top-right-radius: 6px;\n}\n.pagination-sm > li > a,\n.pagination-sm > li > span {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n}\n.pagination-sm > li:first-child > a,\n.pagination-sm > li:first-child > span {\n border-bottom-left-radius: 3px;\n border-top-left-radius: 3px;\n}\n.pagination-sm > li:last-child > a,\n.pagination-sm > li:last-child > span {\n border-bottom-right-radius: 3px;\n border-top-right-radius: 3px;\n}\n.pager {\n padding-left: 0;\n margin: 21px 0;\n list-style: none;\n text-align: center;\n}\n.pager li {\n display: inline;\n}\n.pager li > a,\n.pager li > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: #252830;\n border: 1px solid #434857;\n border-radius: 15px;\n}\n.pager li > a:hover,\n.pager li > a:focus {\n text-decoration: none;\n background-color: #434857;\n}\n.pager .next > a,\n.pager .next > span {\n float: right;\n}\n.pager .previous > a,\n.pager .previous > span {\n float: left;\n}\n.pager .disabled > a,\n.pager .disabled > a:hover,\n.pager .disabled > a:focus,\n.pager .disabled > span {\n color: #51586a;\n background-color: #252830;\n cursor: not-allowed;\n pointer-events: none;\n}\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: #252830;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n}\na.label:hover,\na.label:focus {\n color: #fff;\n text-decoration: none;\n cursor: pointer;\n}\n.label:empty {\n display: none;\n}\n.btn .label {\n position: relative;\n top: -1px;\n}\n.label-default {\n background-color: #cfd2da;\n}\n.label-default[href]:hover,\n.label-default[href]:focus {\n background-color: #b2b7c4;\n}\n.label-primary {\n background-color: #1CA8DD;\n}\n.label-primary[href]:hover,\n.label-primary[href]:focus {\n background-color: #1686b0;\n}\n.label-success {\n background-color: #1BC98E;\n}\n.label-success[href]:hover,\n.label-success[href]:focus {\n background-color: #159c6e;\n}\n.label-info {\n background-color: #9F86FF;\n}\n.label-info[href]:hover,\n.label-info[href]:focus {\n background-color: #7753ff;\n}\n.label-warning {\n background-color: #E4D836;\n}\n.label-warning[href]:hover,\n.label-warning[href]:focus {\n background-color: #ccbf1b;\n}\n.label-danger {\n background-color: #E64759;\n}\n.label-danger[href]:hover,\n.label-danger[href]:focus {\n background-color: #dc1e33;\n}\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: 12px;\n font-weight: bold;\n color: #252830;\n line-height: 1;\n vertical-align: middle;\n white-space: nowrap;\n text-align: center;\n background-color: #fff;\n border-radius: 10px;\n}\n.badge:empty {\n display: none;\n}\n.btn .badge {\n position: relative;\n top: -1px;\n}\n.btn-xs .badge,\n.btn-group-xs > .btn .badge {\n top: 0;\n padding: 1px 5px;\n}\na.badge:hover,\na.badge:focus {\n color: #fff;\n text-decoration: none;\n cursor: pointer;\n}\n.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n color: #1CA8DD;\n background-color: #fff;\n}\n.list-group-item > .badge {\n float: right;\n}\n.list-group-item > .badge + .badge {\n margin-right: 5px;\n}\n.nav-pills > li > a > .badge {\n margin-left: 3px;\n}\n.jumbotron {\n padding-top: 30px;\n padding-bottom: 30px;\n margin-bottom: 30px;\n color: inherit;\n background-color: #1a1c22;\n}\n.jumbotron h1,\n.jumbotron .h1 {\n color: #fff;\n}\n.jumbotron p {\n margin-bottom: 15px;\n font-size: 21px;\n font-weight: 200;\n}\n.jumbotron > hr {\n border-top-color: #040405;\n}\n.container .jumbotron,\n.container-fluid .jumbotron {\n border-radius: 6px;\n padding-left: 15px;\n padding-right: 15px;\n}\n.jumbotron .container {\n max-width: 100%;\n}\n@media screen and (min-width: 768px) {\n .jumbotron {\n padding-top: 48px;\n padding-bottom: 48px;\n }\n .container .jumbotron,\n .container-fluid .jumbotron {\n padding-left: 60px;\n padding-right: 60px;\n }\n .jumbotron h1,\n .jumbotron .h1 {\n font-size: 63px;\n }\n}\n.thumbnail {\n display: block;\n padding: 4px;\n margin-bottom: 21px;\n line-height: 1.5;\n background-color: transparent;\n border: 1px solid #30343e;\n border-radius: 4px;\n -webkit-transition: border 0.2s ease-in-out;\n -o-transition: border 0.2s ease-in-out;\n transition: border 0.2s ease-in-out;\n}\n.thumbnail > img,\n.thumbnail a > img {\n margin-left: auto;\n margin-right: auto;\n}\na.thumbnail:hover,\na.thumbnail:focus,\na.thumbnail.active {\n border-color: #1CA8DD;\n}\n.thumbnail .caption {\n padding: 15px 11px;\n color: inherit;\n}\n.alert {\n padding: 15px;\n margin-bottom: 21px;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.alert h4 {\n margin-top: 0;\n color: inherit;\n}\n.alert .alert-link {\n font-weight: bold;\n}\n.alert > p,\n.alert > ul {\n margin-bottom: 0;\n}\n.alert > p + p {\n margin-top: 5px;\n}\n.alert-dismissable,\n.alert-dismissible {\n padding-right: 35px;\n}\n.alert-dismissable .close,\n.alert-dismissible .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n}\n.alert-success {\n background-color: #1BC98E;\n border-color: #1BC98E;\n color: #e7fcf5;\n}\n.alert-success hr {\n border-top-color: #18b37e;\n}\n.alert-success .alert-link {\n color: #baf6e2;\n}\n.alert-info {\n background-color: #9F86FF;\n border-color: #9F86FF;\n color: #ffffff;\n}\n.alert-info hr {\n border-top-color: #8b6cff;\n}\n.alert-info .alert-link {\n color: #e6e6e6;\n}\n.alert-warning {\n background-color: #E4D836;\n border-color: #E4D836;\n color: #ffffff;\n}\n.alert-warning hr {\n border-top-color: #e1d420;\n}\n.alert-warning .alert-link {\n color: #e6e6e6;\n}\n.alert-danger {\n background-color: #E64759;\n border-color: #E64759;\n color: #ffffff;\n}\n.alert-danger hr {\n border-top-color: #e33145;\n}\n.alert-danger .alert-link {\n color: #ccffff;\n}\n@-webkit-keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n@keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n.progress {\n overflow: hidden;\n height: 21px;\n margin-bottom: 21px;\n background-color: #434857;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n}\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: 12px;\n line-height: 21px;\n color: #fff;\n text-align: center;\n background-color: #1CA8DD;\n -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n -webkit-transition: width 0.6s ease;\n -o-transition: width 0.6s ease;\n transition: width 0.6s ease;\n}\n.progress-striped .progress-bar,\n.progress-bar-striped {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-size: 40px 40px;\n}\n.progress.active .progress-bar,\n.progress-bar.active {\n -webkit-animation: progress-bar-stripes 2s linear infinite;\n -o-animation: progress-bar-stripes 2s linear infinite;\n animation: progress-bar-stripes 2s linear infinite;\n}\n.progress-bar-success {\n background-color: #1BC98E;\n}\n.progress-striped .progress-bar-success {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-info {\n background-color: #9F86FF;\n}\n.progress-striped .progress-bar-info {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-warning {\n background-color: #E4D836;\n}\n.progress-striped .progress-bar-warning {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-danger {\n background-color: #E64759;\n}\n.progress-striped .progress-bar-danger {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.media {\n margin-top: 15px;\n}\n.media:first-child {\n margin-top: 0;\n}\n.media,\n.media-body {\n zoom: 1;\n overflow: hidden;\n}\n.media-body {\n width: 10000px;\n}\n.media-object {\n display: block;\n}\n.media-object.img-thumbnail {\n max-width: none;\n}\n.media-right,\n.media > .pull-right {\n padding-left: 10px;\n}\n.media-left,\n.media > .pull-left {\n padding-right: 10px;\n}\n.media-left,\n.media-right,\n.media-body {\n display: table-cell;\n vertical-align: top;\n}\n.media-middle {\n vertical-align: middle;\n}\n.media-bottom {\n vertical-align: bottom;\n}\n.media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n.list-group {\n margin-bottom: 20px;\n padding-left: 0;\n}\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n margin-bottom: -1px;\n background-color: transparent;\n border: 1px solid #434857;\n}\n.list-group-item:first-child {\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n}\n.list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n}\na.list-group-item,\nbutton.list-group-item {\n color: #cfd2da;\n}\na.list-group-item .list-group-item-heading,\nbutton.list-group-item .list-group-item-heading {\n color: #cfd2da;\n}\na.list-group-item:hover,\nbutton.list-group-item:hover,\na.list-group-item:focus,\nbutton.list-group-item:focus {\n text-decoration: none;\n color: #cfd2da;\n background-color: #434857;\n}\nbutton.list-group-item {\n width: 100%;\n text-align: left;\n}\n.list-group-item.disabled,\n.list-group-item.disabled:hover,\n.list-group-item.disabled:focus {\n background-color: transparent;\n color: #51586a;\n cursor: not-allowed;\n}\n.list-group-item.disabled .list-group-item-heading,\n.list-group-item.disabled:hover .list-group-item-heading,\n.list-group-item.disabled:focus .list-group-item-heading {\n color: inherit;\n}\n.list-group-item.disabled .list-group-item-text,\n.list-group-item.disabled:hover .list-group-item-text,\n.list-group-item.disabled:focus .list-group-item-text {\n color: inherit;\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n z-index: 2;\n color: #fff;\n background-color: #51586a;\n border-color: #51586a;\n}\n.list-group-item.active .list-group-item-heading,\n.list-group-item.active:hover .list-group-item-heading,\n.list-group-item.active:focus .list-group-item-heading,\n.list-group-item.active .list-group-item-heading > small,\n.list-group-item.active:hover .list-group-item-heading > small,\n.list-group-item.active:focus .list-group-item-heading > small,\n.list-group-item.active .list-group-item-heading > .small,\n.list-group-item.active:hover .list-group-item-heading > .small,\n.list-group-item.active:focus .list-group-item-heading > .small {\n color: inherit;\n}\n.list-group-item.active .list-group-item-text,\n.list-group-item.active:hover .list-group-item-text,\n.list-group-item.active:focus .list-group-item-text {\n color: #bcc0cb;\n}\n.list-group-item-success {\n color: #1BC98E;\n background-color: #dff0d8;\n}\na.list-group-item-success,\nbutton.list-group-item-success {\n color: #1BC98E;\n}\na.list-group-item-success .list-group-item-heading,\nbutton.list-group-item-success .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-success:hover,\nbutton.list-group-item-success:hover,\na.list-group-item-success:focus,\nbutton.list-group-item-success:focus {\n color: #1BC98E;\n background-color: #d0e9c6;\n}\na.list-group-item-success.active,\nbutton.list-group-item-success.active,\na.list-group-item-success.active:hover,\nbutton.list-group-item-success.active:hover,\na.list-group-item-success.active:focus,\nbutton.list-group-item-success.active:focus {\n color: #fff;\n background-color: #1BC98E;\n border-color: #1BC98E;\n}\n.list-group-item-info {\n color: #9F86FF;\n background-color: #d9edf7;\n}\na.list-group-item-info,\nbutton.list-group-item-info {\n color: #9F86FF;\n}\na.list-group-item-info .list-group-item-heading,\nbutton.list-group-item-info .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-info:hover,\nbutton.list-group-item-info:hover,\na.list-group-item-info:focus,\nbutton.list-group-item-info:focus {\n color: #9F86FF;\n background-color: #c4e3f3;\n}\na.list-group-item-info.active,\nbutton.list-group-item-info.active,\na.list-group-item-info.active:hover,\nbutton.list-group-item-info.active:hover,\na.list-group-item-info.active:focus,\nbutton.list-group-item-info.active:focus {\n color: #fff;\n background-color: #9F86FF;\n border-color: #9F86FF;\n}\n.list-group-item-warning {\n color: #E4D836;\n background-color: #fcf8e3;\n}\na.list-group-item-warning,\nbutton.list-group-item-warning {\n color: #E4D836;\n}\na.list-group-item-warning .list-group-item-heading,\nbutton.list-group-item-warning .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-warning:hover,\nbutton.list-group-item-warning:hover,\na.list-group-item-warning:focus,\nbutton.list-group-item-warning:focus {\n color: #E4D836;\n background-color: #faf2cc;\n}\na.list-group-item-warning.active,\nbutton.list-group-item-warning.active,\na.list-group-item-warning.active:hover,\nbutton.list-group-item-warning.active:hover,\na.list-group-item-warning.active:focus,\nbutton.list-group-item-warning.active:focus {\n color: #fff;\n background-color: #E4D836;\n border-color: #E4D836;\n}\n.list-group-item-danger {\n color: #E64759;\n background-color: #f2dede;\n}\na.list-group-item-danger,\nbutton.list-group-item-danger {\n color: #E64759;\n}\na.list-group-item-danger .list-group-item-heading,\nbutton.list-group-item-danger .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-danger:hover,\nbutton.list-group-item-danger:hover,\na.list-group-item-danger:focus,\nbutton.list-group-item-danger:focus {\n color: #E64759;\n background-color: #ebcccc;\n}\na.list-group-item-danger.active,\nbutton.list-group-item-danger.active,\na.list-group-item-danger.active:hover,\nbutton.list-group-item-danger.active:hover,\na.list-group-item-danger.active:focus,\nbutton.list-group-item-danger.active:focus {\n color: #fff;\n background-color: #E64759;\n border-color: #E64759;\n}\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n.panel {\n margin-bottom: 21px;\n background-color: transparent;\n border: 1px solid transparent;\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.panel-body {\n padding: 15px;\n}\n.panel-heading {\n padding: 10px 15px;\n border-bottom: 1px solid transparent;\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel-heading > .dropdown .dropdown-toggle {\n color: inherit;\n}\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: 16px;\n color: inherit;\n}\n.panel-title > a,\n.panel-title > small,\n.panel-title > .small,\n.panel-title > small > a,\n.panel-title > .small > a {\n color: inherit;\n}\n.panel-footer {\n padding: 10px 15px;\n background-color: #f5f5f5;\n border-top: 1px solid #ddd;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .list-group,\n.panel > .panel-collapse > .list-group {\n margin-bottom: 0;\n}\n.panel > .list-group .list-group-item,\n.panel > .panel-collapse > .list-group .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n}\n.panel > .list-group:first-child .list-group-item:first-child,\n.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\n border-top: 0;\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel > .list-group:last-child .list-group-item:last-child,\n.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\n border-bottom: 0;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.panel-heading + .list-group .list-group-item:first-child {\n border-top-width: 0;\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n.panel > .table,\n.panel > .table-responsive > .table,\n.panel > .panel-collapse > .table {\n margin-bottom: 0;\n}\n.panel > .table caption,\n.panel > .table-responsive > .table caption,\n.panel > .panel-collapse > .table caption {\n padding-left: 15px;\n padding-right: 15px;\n}\n.panel > .table:first-child,\n.panel > .table-responsive:first-child > .table:first-child {\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n border-top-right-radius: 3px;\n}\n.panel > .table:last-child,\n.panel > .table-responsive:last-child > .table:last-child {\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\n border-bottom-left-radius: 3px;\n border-bottom-right-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n border-bottom-right-radius: 3px;\n}\n.panel > .panel-body + .table,\n.panel > .panel-body + .table-responsive,\n.panel > .table + .panel-body,\n.panel > .table-responsive + .panel-body {\n border-top: 1px solid #434857;\n}\n.panel > .table > tbody:first-child > tr:first-child th,\n.panel > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n}\n.panel > .table-bordered,\n.panel > .table-responsive > .table-bordered {\n border: 0;\n}\n.panel > .table-bordered > thead > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.panel > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-bordered > thead > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.panel > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-bordered > tfoot > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n}\n.panel > .table-bordered > thead > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.panel > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-bordered > thead > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.panel > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-bordered > tfoot > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n}\n.panel > .table-bordered > thead > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\n.panel > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-bordered > thead > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\n.panel > .table-bordered > tbody > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\n border-bottom: 0;\n}\n.panel > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-bordered > tfoot > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\n border-bottom: 0;\n}\n.panel > .table-responsive {\n border: 0;\n margin-bottom: 0;\n}\n.panel-group {\n margin-bottom: 21px;\n}\n.panel-group .panel {\n margin-bottom: 0;\n border-radius: 4px;\n}\n.panel-group .panel + .panel {\n margin-top: 5px;\n}\n.panel-group .panel-heading {\n border-bottom: 0;\n}\n.panel-group .panel-heading + .panel-collapse > .panel-body,\n.panel-group .panel-heading + .panel-collapse > .list-group {\n border-top: 1px solid #ddd;\n}\n.panel-group .panel-footer {\n border-top: 0;\n}\n.panel-group .panel-footer + .panel-collapse .panel-body {\n border-bottom: 1px solid #ddd;\n}\n.panel-default {\n border-color: #ddd;\n}\n.panel-default > .panel-heading {\n color: #51586a;\n background-color: #f5f5f5;\n border-color: #ddd;\n}\n.panel-default > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #ddd;\n}\n.panel-default > .panel-heading .badge {\n color: #f5f5f5;\n background-color: #51586a;\n}\n.panel-default > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #ddd;\n}\n.panel-primary {\n border-color: #1CA8DD;\n}\n.panel-primary > .panel-heading {\n color: #fff;\n background-color: #1CA8DD;\n border-color: #1CA8DD;\n}\n.panel-primary > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #1CA8DD;\n}\n.panel-primary > .panel-heading .badge {\n color: #1CA8DD;\n background-color: #fff;\n}\n.panel-primary > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #1CA8DD;\n}\n.panel-success {\n border-color: #1BC98E;\n}\n.panel-success > .panel-heading {\n color: #fff;\n background-color: #1BC98E;\n border-color: #1BC98E;\n}\n.panel-success > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #1BC98E;\n}\n.panel-success > .panel-heading .badge {\n color: #1BC98E;\n background-color: #fff;\n}\n.panel-success > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #1BC98E;\n}\n.panel-info {\n border-color: #9F86FF;\n}\n.panel-info > .panel-heading {\n color: #fff;\n background-color: #9F86FF;\n border-color: #9F86FF;\n}\n.panel-info > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #9F86FF;\n}\n.panel-info > .panel-heading .badge {\n color: #9F86FF;\n background-color: #fff;\n}\n.panel-info > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #9F86FF;\n}\n.panel-warning {\n border-color: #E4D836;\n}\n.panel-warning > .panel-heading {\n color: #fff;\n background-color: #E4D836;\n border-color: #E4D836;\n}\n.panel-warning > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #E4D836;\n}\n.panel-warning > .panel-heading .badge {\n color: #E4D836;\n background-color: #fff;\n}\n.panel-warning > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #E4D836;\n}\n.panel-danger {\n border-color: #E64759;\n}\n.panel-danger > .panel-heading {\n color: #fff;\n background-color: #E64759;\n border-color: #E64759;\n}\n.panel-danger > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #E64759;\n}\n.panel-danger > .panel-heading .badge {\n color: #E64759;\n background-color: #fff;\n}\n.panel-danger > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #E64759;\n}\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n}\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n height: 100%;\n width: 100%;\n border: 0;\n}\n.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n}\n.embed-responsive-4by3 {\n padding-bottom: 75%;\n}\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: #30343e;\n border: 1px solid #434857;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.well blockquote {\n border-color: #ddd;\n border-color: rgba(0, 0, 0, 0.15);\n}\n.well-lg {\n padding: 24px;\n border-radius: 6px;\n}\n.well-sm {\n padding: 9px;\n border-radius: 3px;\n}\n.close {\n float: right;\n font-size: 21px;\n font-weight: bold;\n line-height: 1;\n color: #000;\n text-shadow: 0 1px 0 #fff;\n opacity: 0.2;\n filter: alpha(opacity=20);\n}\n.close:hover,\n.close:focus {\n color: #000;\n text-decoration: none;\n cursor: pointer;\n opacity: 0.5;\n filter: alpha(opacity=50);\n}\nbutton.close {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n}\n.modal-open {\n overflow: hidden;\n}\n.modal {\n display: none;\n overflow: hidden;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1050;\n -webkit-overflow-scrolling: touch;\n outline: 0;\n}\n.modal.fade .modal-dialog {\n -webkit-transform: translate(0, -25%);\n -ms-transform: translate(0, -25%);\n -o-transform: translate(0, -25%);\n transform: translate(0, -25%);\n -webkit-transition: -webkit-transform 0.3s ease-out;\n -moz-transition: -moz-transform 0.3s ease-out;\n -o-transition: -o-transform 0.3s ease-out;\n transition: transform 0.3s ease-out;\n}\n.modal.in .modal-dialog {\n -webkit-transform: translate(0, 0);\n -ms-transform: translate(0, 0);\n -o-transform: translate(0, 0);\n transform: translate(0, 0);\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n.modal-content {\n position: relative;\n background-color: #fff;\n border: 1px solid #999;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n background-clip: padding-box;\n outline: 0;\n}\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1040;\n background-color: #000;\n}\n.modal-backdrop.fade {\n opacity: 0;\n filter: alpha(opacity=0);\n}\n.modal-backdrop.in {\n opacity: 0.5;\n filter: alpha(opacity=50);\n}\n.modal-header {\n padding: 15px;\n border-bottom: 1px solid #e5e5e5;\n}\n.modal-header .close {\n margin-top: -2px;\n}\n.modal-title {\n margin: 0;\n line-height: 1.5;\n}\n.modal-body {\n position: relative;\n padding: 15px;\n}\n.modal-footer {\n padding: 15px;\n text-align: right;\n border-top: 1px solid #e5e5e5;\n}\n.modal-footer .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0;\n}\n.modal-footer .btn-group .btn + .btn {\n margin-left: -1px;\n}\n.modal-footer .btn-block + .btn-block {\n margin-left: 0;\n}\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n@media (min-width: 768px) {\n .modal-dialog {\n width: 600px;\n margin: 30px auto;\n }\n .modal-content {\n -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n }\n .modal-sm {\n width: 300px;\n }\n}\n@media (min-width: 992px) {\n .modal-lg {\n width: 900px;\n }\n}\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n font-family: \"Roboto\", \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-style: normal;\n font-weight: normal;\n letter-spacing: normal;\n line-break: auto;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n white-space: normal;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n font-size: 12px;\n opacity: 0;\n filter: alpha(opacity=0);\n}\n.tooltip.in {\n opacity: 0.9;\n filter: alpha(opacity=90);\n}\n.tooltip.top {\n margin-top: -3px;\n padding: 5px 0;\n}\n.tooltip.right {\n margin-left: 3px;\n padding: 0 5px;\n}\n.tooltip.bottom {\n margin-top: 3px;\n padding: 5px 0;\n}\n.tooltip.left {\n margin-left: -3px;\n padding: 0 5px;\n}\n.tooltip-inner {\n max-width: 200px;\n padding: 3px 8px;\n color: #252830;\n text-align: center;\n background-color: #fff;\n border-radius: 4px;\n}\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.tooltip.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 5px 5px 0;\n border-top-color: #fff;\n}\n.tooltip.top-left .tooltip-arrow {\n bottom: 0;\n right: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #fff;\n}\n.tooltip.top-right .tooltip-arrow {\n bottom: 0;\n left: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #fff;\n}\n.tooltip.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -5px;\n border-width: 5px 5px 5px 0;\n border-right-color: #fff;\n}\n.tooltip.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -5px;\n border-width: 5px 0 5px 5px;\n border-left-color: #fff;\n}\n.tooltip.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #fff;\n}\n.tooltip.bottom-left .tooltip-arrow {\n top: 0;\n right: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #fff;\n}\n.tooltip.bottom-right .tooltip-arrow {\n top: 0;\n left: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #fff;\n}\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: none;\n max-width: 276px;\n padding: 1px;\n font-family: \"Roboto\", \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-style: normal;\n font-weight: normal;\n letter-spacing: normal;\n line-break: auto;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n white-space: normal;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n font-size: 14px;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #ccc;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n}\n.popover.top {\n margin-top: -10px;\n}\n.popover.right {\n margin-left: 10px;\n}\n.popover.bottom {\n margin-top: 10px;\n}\n.popover.left {\n margin-left: -10px;\n}\n.popover-title {\n margin: 0;\n padding: 8px 14px;\n font-size: 14px;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-radius: 5px 5px 0 0;\n}\n.popover-content {\n padding: 9px 14px;\n}\n.popover > .arrow,\n.popover > .arrow:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.popover > .arrow {\n border-width: 11px;\n}\n.popover > .arrow:after {\n border-width: 10px;\n content: \"\";\n}\n.popover.top > .arrow {\n left: 50%;\n margin-left: -11px;\n border-bottom-width: 0;\n border-top-color: #999999;\n border-top-color: rgba(0, 0, 0, 0.25);\n bottom: -11px;\n}\n.popover.top > .arrow:after {\n content: \" \";\n bottom: 1px;\n margin-left: -10px;\n border-bottom-width: 0;\n border-top-color: #fff;\n}\n.popover.right > .arrow {\n top: 50%;\n left: -11px;\n margin-top: -11px;\n border-left-width: 0;\n border-right-color: #999999;\n border-right-color: rgba(0, 0, 0, 0.25);\n}\n.popover.right > .arrow:after {\n content: \" \";\n left: 1px;\n bottom: -10px;\n border-left-width: 0;\n border-right-color: #fff;\n}\n.popover.bottom > .arrow {\n left: 50%;\n margin-left: -11px;\n border-top-width: 0;\n border-bottom-color: #999999;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n top: -11px;\n}\n.popover.bottom > .arrow:after {\n content: \" \";\n top: 1px;\n margin-left: -10px;\n border-top-width: 0;\n border-bottom-color: #fff;\n}\n.popover.left > .arrow {\n top: 50%;\n right: -11px;\n margin-top: -11px;\n border-right-width: 0;\n border-left-color: #999999;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n.popover.left > .arrow:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: #fff;\n bottom: -10px;\n}\n.carousel {\n position: relative;\n}\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n}\n.carousel-inner > .item {\n display: none;\n position: relative;\n -webkit-transition: 0.6s ease-in-out left;\n -o-transition: 0.6s ease-in-out left;\n transition: 0.6s ease-in-out left;\n}\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n line-height: 1;\n}\n@media all and (transform-3d), (-webkit-transform-3d) {\n .carousel-inner > .item {\n -webkit-transition: -webkit-transform 0.6s ease-in-out;\n -moz-transition: -moz-transform 0.6s ease-in-out;\n -o-transition: -o-transform 0.6s ease-in-out;\n transition: transform 0.6s ease-in-out;\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n backface-visibility: hidden;\n -webkit-perspective: 1000px;\n -moz-perspective: 1000px;\n perspective: 1000px;\n }\n .carousel-inner > .item.next,\n .carousel-inner > .item.active.right {\n -webkit-transform: translate3d(100%, 0, 0);\n transform: translate3d(100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.prev,\n .carousel-inner > .item.active.left {\n -webkit-transform: translate3d(-100%, 0, 0);\n transform: translate3d(-100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.next.left,\n .carousel-inner > .item.prev.right,\n .carousel-inner > .item.active {\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n left: 0;\n }\n}\n.carousel-inner > .active,\n.carousel-inner > .next,\n.carousel-inner > .prev {\n display: block;\n}\n.carousel-inner > .active {\n left: 0;\n}\n.carousel-inner > .next,\n.carousel-inner > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n}\n.carousel-inner > .next {\n left: 100%;\n}\n.carousel-inner > .prev {\n left: -100%;\n}\n.carousel-inner > .next.left,\n.carousel-inner > .prev.right {\n left: 0;\n}\n.carousel-inner > .active.left {\n left: -100%;\n}\n.carousel-inner > .active.right {\n left: 100%;\n}\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: 15%;\n opacity: 0.5;\n filter: alpha(opacity=50);\n font-size: 20px;\n color: #fff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n background-color: rgba(0, 0, 0, 0);\n}\n.carousel-control.left {\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n}\n.carousel-control.right {\n left: auto;\n right: 0;\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n}\n.carousel-control:hover,\n.carousel-control:focus {\n outline: 0;\n color: #fff;\n text-decoration: none;\n opacity: 0.9;\n filter: alpha(opacity=90);\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-left,\n.carousel-control .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n margin-top: -10px;\n z-index: 5;\n display: inline-block;\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next {\n width: 20px;\n height: 20px;\n line-height: 1;\n font-family: serif;\n}\n.carousel-control .icon-prev:before {\n content: '\\2039';\n}\n.carousel-control .icon-next:before {\n content: '\\203a';\n}\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n}\n.carousel-indicators li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid #fff;\n border-radius: 10px;\n cursor: pointer;\n background-color: #000 \\9;\n background-color: rgba(0, 0, 0, 0);\n}\n.carousel-indicators .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: #fff;\n}\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #fff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-caption .btn {\n text-shadow: none;\n}\n@media screen and (min-width: 768px) {\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-prev,\n .carousel-control .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -10px;\n font-size: 30px;\n }\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .icon-prev {\n margin-left: -10px;\n }\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-next {\n margin-right: -10px;\n }\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n .carousel-indicators {\n bottom: 20px;\n }\n}\n.clearfix:before,\n.clearfix:after,\n.dl-horizontal dd:before,\n.dl-horizontal dd:after,\n.form-horizontal .form-group:before,\n.form-horizontal .form-group:after,\n.container:before,\n.container:after,\n.container-fluid:before,\n.container-fluid:after,\n.row:before,\n.row:after,\n.btn-toolbar:before,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:before,\n.btn-group-vertical > .btn-group:after,\n.nav:before,\n.nav:after,\n.navbar:before,\n.navbar:after,\n.navbar-header:before,\n.navbar-header:after,\n.navbar-collapse:before,\n.navbar-collapse:after,\n.pager:before,\n.pager:after,\n.panel-body:before,\n.panel-body:after,\n.modal-header:before,\n.modal-header:after,\n.modal-footer:before,\n.modal-footer:after {\n content: \" \";\n display: table;\n}\n.clearfix:after,\n.dl-horizontal dd:after,\n.form-horizontal .form-group:after,\n.container:after,\n.container-fluid:after,\n.row:after,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:after,\n.nav:after,\n.navbar:after,\n.navbar-header:after,\n.navbar-collapse:after,\n.pager:after,\n.panel-body:after,\n.modal-header:after,\n.modal-footer:after {\n clear: both;\n}\n.center-block {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n.hidden {\n display: none !important;\n}\n.affix {\n position: fixed;\n}\n@-ms-viewport {\n width: device-width;\n}\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n display: none !important;\n}\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n@media (max-width: 767px) {\n .visible-xs {\n display: block !important;\n }\n table.visible-xs {\n display: table !important;\n }\n tr.visible-xs {\n display: table-row !important;\n }\n th.visible-xs,\n td.visible-xs {\n display: table-cell !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-block {\n display: block !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline {\n display: inline !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm {\n display: block !important;\n }\n table.visible-sm {\n display: table !important;\n }\n tr.visible-sm {\n display: table-row !important;\n }\n th.visible-sm,\n td.visible-sm {\n display: table-cell !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-block {\n display: block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline {\n display: inline !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md {\n display: block !important;\n }\n table.visible-md {\n display: table !important;\n }\n tr.visible-md {\n display: table-row !important;\n }\n th.visible-md,\n td.visible-md {\n display: table-cell !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-block {\n display: block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline {\n display: inline !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg {\n display: block !important;\n }\n table.visible-lg {\n display: table !important;\n }\n tr.visible-lg {\n display: table-row !important;\n }\n th.visible-lg,\n td.visible-lg {\n display: table-cell !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-block {\n display: block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline {\n display: inline !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline-block {\n display: inline-block !important;\n }\n}\n@media (max-width: 767px) {\n .hidden-xs {\n display: none !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .hidden-sm {\n display: none !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .hidden-md {\n display: none !important;\n }\n}\n@media (min-width: 1200px) {\n .hidden-lg {\n display: none !important;\n }\n}\n.visible-print {\n display: none !important;\n}\n@media print {\n .visible-print {\n display: block !important;\n }\n table.visible-print {\n display: table !important;\n }\n tr.visible-print {\n display: table-row !important;\n }\n th.visible-print,\n td.visible-print {\n display: table-cell !important;\n }\n}\n.visible-print-block {\n display: none !important;\n}\n@media print {\n .visible-print-block {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n}\n@media print {\n .visible-print-inline {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n}\n@media print {\n .visible-print-inline-block {\n display: inline-block !important;\n }\n}\n@media print {\n .hidden-print {\n display: none !important;\n }\n}\nbody {\n font-weight: 300;\n letter-spacing: 0;\n}\n.lead {\n font-size: 16px;\n font-weight: inherit;\n line-height: 1.4;\n letter-spacing: 0;\n}\n@media (min-width: 768px) {\n .lead {\n font-size: 21px;\n }\n}\n.list-spaced li {\n margin-bottom: 3px;\n}\n.list-bordered li {\n border-top: 1px solid #cfd2da;\n}\n.list-bordered li:last-child {\n border-bottom: 1px solid #cfd2da;\n}\n.text-serif {\n font-family: Georgia, \"Times New Roman\", Times, serif;\n}\n.text-xs-left {\n text-align: left;\n}\n.text-xs-right {\n text-align: right;\n}\n.text-xs-center {\n text-align: center;\n}\n@media (min-width: 768px) {\n .text-sm-left {\n text-align: left;\n }\n .text-sm-right {\n text-align: right;\n }\n .text-sm-center {\n text-align: center;\n }\n}\n@media (min-width: 992px) {\n .text-md-left {\n text-align: left;\n }\n .text-md-right {\n text-align: right;\n }\n .text-md-center {\n text-align: center;\n }\n}\n@media (min-width: 1200px) {\n .text-lg-left {\n text-align: left;\n }\n .text-lg-right {\n text-align: right;\n }\n .text-lg-center {\n text-align: center;\n }\n}\n.alert-dark {\n background-color: rgba(0, 0, 0, 0.9);\n border-color: rgba(0, 0, 0, 0.8);\n color: #fff;\n}\n.alert-dark hr {\n border-top-color: rgba(0, 0, 0, 0.8);\n}\n.alert-dark .alert-link {\n color: #e6e6e6;\n}\n.alert-dark .close {\n text-shadow: 0 1px 0 #000;\n}\n.alert-dark .close:hover,\n.alert-dark .close:focus {\n color: #fff;\n}\n.alert-full {\n border-radius: 0;\n}\n.btn {\n font-size: 14px;\n text-transform: none;\n letter-spacing: normal;\n}\n.btn-borderless {\n border: 0;\n}\n.btn-lg,\n.btn-group-lg > .btn {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\n.btn-sm,\n.btn-group-sm > .btn {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-xs,\n.btn-group-xs > .btn {\n padding: 1px 5px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-more:after {\n position: relative;\n top: 1px;\n content: '〉';\n display: inline-block;\n padding-left: .3em;\n color: inherit;\n}\n.btn-toolbar .btn-toolbar-item {\n float: left;\n}\n.btn-toolbar > .btn-toolbar-item {\n margin-left: 5px;\n}\n.btn-toolbar-divider {\n float: left;\n width: 1px;\n height: 34px;\n margin-left: 10px;\n margin-right: 5px;\n background-color: #434857;\n}\n.btn-group-justified.btn-group-justified-spaced {\n width: calc(110%);\n margin-left: -5px;\n border-spacing: 5px;\n}\n.nav > .nav-header {\n padding-left: 15px;\n padding-right: 15px;\n margin-bottom: 5px;\n font-size: 85%;\n font-weight: normal;\n letter-spacing: 1px;\n color: #51586a;\n text-transform: uppercase;\n}\n.nav > li + .nav-header {\n margin-top: 20px;\n}\n.nav-bordered > li {\n float: left;\n}\n.nav-bordered > li > a {\n display: inline-block;\n padding: 10px 0;\n font-weight: 300;\n color: #777;\n border-bottom: 4px solid transparent;\n}\n.nav-bordered > li > a:hover,\n.nav-bordered > li > a:focus {\n color: #1CA8DD;\n background-color: transparent;\n}\n.nav-bordered > li + li {\n margin-left: 30px;\n}\n.nav-bordered > li.active > a,\n.nav-bordered > li.active > a:hover,\n.nav-bordered > li.active > a:focus {\n font-weight: 500;\n color: #1CA8DD;\n border-bottom-color: #1CA8DD;\n}\n.nav-bordered.nav-justified > li + li {\n margin-left: 0;\n}\n.nav-bordered.nav-justified > li > a {\n margin-bottom: 0;\n}\n.nav-bordered.nav-stacked > li {\n float: none;\n margin-left: 0;\n}\n.nav-bordered.nav-stacked > li + li {\n margin-top: 0;\n}\n.nav-bordered.nav-stacked > li.active > a,\n.nav-bordered.nav-stacked > li.active > a:hover,\n.nav-bordered.nav-stacked > li.active > a:focus {\n border-left-color: #1CA8DD;\n}\n.nav-bordered.nav-stacked > li > a {\n display: block;\n padding: 5px 10px 5px 30px;\n border-bottom: 0;\n border-left: 4px solid transparent;\n}\n.nav-bordered.nav-stacked > li > a:hover,\n.nav-bordered.nav-stacked > li > a:focus {\n border-left: 4px solid;\n}\n.nav-bordered.nav-stacked .nav-header {\n padding-left: 34px;\n}\n.nav-bordered.nav-stacked .nav-divider {\n height: 1px;\n margin: 9.5px 0;\n overflow: hidden;\n background-color: rgba(255, 255, 255, 0.2);\n margin-left: 34px;\n margin-top: 20px;\n margin-bottom: 25px;\n}\n.with-top-navbar {\n padding-top: 50px;\n}\n.navbar-nav > li > a > .badge {\n margin-left: 5px;\n}\n.navbar-brand-icon {\n float: left;\n margin-right: 5px;\n}\n.navbar-default .navbar-brand-emphasized,\n.navbar-default .navbar-brand-emphasized:hover,\n.navbar-default .navbar-brand-emphasized:focus {\n background-color: #e7e7e7;\n}\n.navbar-inverse .navbar-brand-emphasized,\n.navbar-inverse .navbar-brand-emphasized:hover,\n.navbar-inverse .navbar-brand-emphasized:focus {\n color: #fff;\n background-color: #1a1c22;\n}\n.navbar-padded .navbar-header {\n padding-left: 5px;\n padding-right: 5px;\n}\n@media (min-width: 768px) {\n .navbar-padded {\n padding-top: 20px;\n padding-bottom: 20px;\n }\n}\n.navbar-form-control {\n border: 0;\n box-shadow: none;\n}\n.navbar-inverse .navbar-form-control {\n background-color: #292d36;\n}\n.navbar-inverse .navbar-form-control:focus {\n color: #1a1c22;\n background-color: #fff;\n box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);\n}\n.navbar-nav > .active > a,\n.navbar-nav > .active > a:hover,\n.navbar-nav > .active > a:focus {\n font-weight: 500;\n}\n.navbar-btn-avitar,\n.navbar-btn-avitar:active,\n.navbar-btn-avitar:hover,\n.navbar-btn-avitar:focus,\n.navbar-btn-avitar:hover:active,\n.navbar-btn-avitar:active:focus {\n padding: 0;\n border: 0;\n background: transparent;\n outline: none !important;\n box-shadow: none !important;\n}\n.navbar-btn-avitar img {\n height: 35px;\n width: 35px;\n}\n.nav-pills > li.active > a,\n.nav-pills > li.active > a:hover,\n.nav-pills > li.active > a:focus {\n font-weight: 500;\n}\n.list-group-header {\n display: block;\n padding: 10px 15px;\n margin-bottom: -1px;\n font-weight: 400;\n color: #fff;\n background-color: transparent;\n border: 1px solid #434857;\n}\n.list-group-header:first-child {\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n}\n.list-group-header:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.list-group-progress {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n z-index: -1;\n display: block;\n background-color: #1e2127;\n}\n.modal-body-scroller {\n max-height: 500px;\n overflow: auto;\n border-radius: 6px;\n}\n.modal-body + .modal-body {\n border-top: 1px solid #e5e5e5;\n}\n.modal-actions:before,\n.modal-actions:after {\n content: \" \";\n display: table;\n}\n.modal-actions:after {\n clear: both;\n}\n.modal-actions:before,\n.modal-actions:after {\n content: \" \";\n display: table;\n}\n.modal-actions:after {\n clear: both;\n}\n.modal-action {\n float: left;\n width: 50%;\n padding: 15px;\n border: solid #e5e5e5;\n border-width: 1px 0 0;\n}\n.modal-action + .modal-action {\n border-left-width: 1px;\n}\n.modal-action:first-child {\n border-bottom-left-radius: 5px;\n}\n.modal-action:last-child {\n border-bottom-right-radius: 5px;\n}\n.modal-action:hover,\n.modal-action:focus,\n.modal-action:active {\n text-decoration: none;\n background-color: #f5f5f5;\n border-color: #e5e5e5;\n}\n@media (max-width: 768px) {\n .table-full {\n margin-right: -16px;\n margin-left: -16px;\n }\n}\n.table-actions {\n padding-bottom: 15px;\n}\n.container-fill-height {\n display: table;\n width: 100%;\n height: 100vh;\n}\n.container-fill-height .container-content-bottom,\n.container-fill-height .container-content-middle {\n display: table-cell;\n vertical-align: middle;\n}\n.container-fill-height .container-content-bottom {\n vertical-align: bottom;\n}\n@media (min-width: 768px) {\n .container-fluid-spacious {\n padding-right: 40px;\n padding-left: 40px;\n }\n}\n@font-face {\n font-family: \"toolkit-entypo\";\n src: url('../fonts/toolkit-entypo.eot');\n src: url('../fonts/toolkit-entypo.eot?#iefix') format('eot'), url('../fonts/toolkit-entypo.woff2') format('woff2'), url('../fonts/toolkit-entypo.woff') format('woff'), url('../fonts/toolkit-entypo.ttf') format('truetype');\n font-weight: normal;\n font-style: normal;\n}\n.icon:before {\n position: relative;\n top: 2px;\n display: inline-block;\n font-family: \"toolkit-entypo\";\n speak: none;\n font-size: 100%;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.carousel .icon-chevron-thin-left,\n.carousel .icon-chevron-thin-right {\n position: absolute;\n top: 50%;\n margin-top: -10px;\n z-index: 5;\n display: inline-block;\n}\n.carousel .icon-chevron-thin-left {\n left: 50%;\n margin-left: -10px;\n}\n.carousel .icon-chevron-thin-right {\n right: 50%;\n margin-right: -10px;\n}\n.icon-500px-with-circle:before {\n content: \"\\EA01\";\n}\n.icon-500px:before {\n content: \"\\EA02\";\n}\n.icon-add-to-list:before {\n content: \"\\EA03\";\n}\n.icon-add-user:before {\n content: \"\\EA04\";\n}\n.icon-address:before {\n content: \"\\EA05\";\n}\n.icon-adjust:before {\n content: \"\\EA06\";\n}\n.icon-air:before {\n content: \"\\EA07\";\n}\n.icon-aircraft-landing:before {\n content: \"\\EA08\";\n}\n.icon-aircraft-take-off:before {\n content: \"\\EA09\";\n}\n.icon-aircraft:before {\n content: \"\\EA0A\";\n}\n.icon-align-bottom:before {\n content: \"\\EA0B\";\n}\n.icon-align-horizontal-middle:before {\n content: \"\\EA0C\";\n}\n.icon-align-left:before {\n content: \"\\EA0D\";\n}\n.icon-align-right:before {\n content: \"\\EA0E\";\n}\n.icon-align-top:before {\n content: \"\\EA0F\";\n}\n.icon-align-vertical-middle:before {\n content: \"\\EA10\";\n}\n.icon-app-store:before {\n content: \"\\EA11\";\n}\n.icon-archive:before {\n content: \"\\EA12\";\n}\n.icon-area-graph:before {\n content: \"\\EA13\";\n}\n.icon-arrow-bold-down:before {\n content: \"\\EA14\";\n}\n.icon-arrow-bold-left:before {\n content: \"\\EA15\";\n}\n.icon-arrow-bold-right:before {\n content: \"\\EA16\";\n}\n.icon-arrow-bold-up:before {\n content: \"\\EA17\";\n}\n.icon-arrow-down:before {\n content: \"\\EA18\";\n}\n.icon-arrow-left:before {\n content: \"\\EA19\";\n}\n.icon-arrow-long-down:before {\n content: \"\\EA1A\";\n}\n.icon-arrow-long-left:before {\n content: \"\\EA1B\";\n}\n.icon-arrow-long-right:before {\n content: \"\\EA1C\";\n}\n.icon-arrow-long-up:before {\n content: \"\\EA1D\";\n}\n.icon-arrow-right:before {\n content: \"\\EA1E\";\n}\n.icon-arrow-up:before {\n content: \"\\EA1F\";\n}\n.icon-arrow-with-circle-down:before {\n content: \"\\EA20\";\n}\n.icon-arrow-with-circle-left:before {\n content: \"\\EA21\";\n}\n.icon-arrow-with-circle-right:before {\n content: \"\\EA22\";\n}\n.icon-arrow-with-circle-up:before {\n content: \"\\EA23\";\n}\n.icon-attachment:before {\n content: \"\\EA24\";\n}\n.icon-awareness-ribbon:before {\n content: \"\\EA25\";\n}\n.icon-back-in-time:before {\n content: \"\\EA26\";\n}\n.icon-back:before {\n content: \"\\EA27\";\n}\n.icon-baidu:before {\n content: \"\\EA28\";\n}\n.icon-bar-graph:before {\n content: \"\\EA29\";\n}\n.icon-basecamp:before {\n content: \"\\EA2A\";\n}\n.icon-battery:before {\n content: \"\\EA2B\";\n}\n.icon-beamed-note:before {\n content: \"\\EA2C\";\n}\n.icon-behance:before {\n content: \"\\EA2D\";\n}\n.icon-bell:before {\n content: \"\\EA2E\";\n}\n.icon-blackboard:before {\n content: \"\\EA2F\";\n}\n.icon-block:before {\n content: \"\\EA30\";\n}\n.icon-book:before {\n content: \"\\EA31\";\n}\n.icon-bookmark:before {\n content: \"\\EA32\";\n}\n.icon-bookmarks:before {\n content: \"\\EA33\";\n}\n.icon-bowl:before {\n content: \"\\EA34\";\n}\n.icon-box:before {\n content: \"\\EA35\";\n}\n.icon-briefcase:before {\n content: \"\\EA36\";\n}\n.icon-browser:before {\n content: \"\\EA37\";\n}\n.icon-brush:before {\n content: \"\\EA38\";\n}\n.icon-bucket:before {\n content: \"\\EA39\";\n}\n.icon-bug:before {\n content: \"\\EA3A\";\n}\n.icon-cake:before {\n content: \"\\EA3B\";\n}\n.icon-calculator:before {\n content: \"\\EA3C\";\n}\n.icon-calendar:before {\n content: \"\\EA3D\";\n}\n.icon-camera:before {\n content: \"\\EA3E\";\n}\n.icon-ccw:before {\n content: \"\\EA3F\";\n}\n.icon-chat:before {\n content: \"\\EA40\";\n}\n.icon-check:before {\n content: \"\\EA41\";\n}\n.icon-chevron-down:before {\n content: \"\\EA42\";\n}\n.icon-chevron-left:before {\n content: \"\\EA43\";\n}\n.icon-chevron-right:before {\n content: \"\\EA44\";\n}\n.icon-chevron-small-down:before {\n content: \"\\EA45\";\n}\n.icon-chevron-small-left:before {\n content: \"\\EA46\";\n}\n.icon-chevron-small-right:before {\n content: \"\\EA47\";\n}\n.icon-chevron-small-up:before {\n content: \"\\EA48\";\n}\n.icon-chevron-thin-down:before {\n content: \"\\EA49\";\n}\n.icon-chevron-thin-left:before {\n content: \"\\EA4A\";\n}\n.icon-chevron-thin-right:before {\n content: \"\\EA4B\";\n}\n.icon-chevron-thin-up:before {\n content: \"\\EA4C\";\n}\n.icon-chevron-up:before {\n content: \"\\EA4D\";\n}\n.icon-chevron-with-circle-down:before {\n content: \"\\EA4E\";\n}\n.icon-chevron-with-circle-left:before {\n content: \"\\EA4F\";\n}\n.icon-chevron-with-circle-right:before {\n content: \"\\EA50\";\n}\n.icon-chevron-with-circle-up:before {\n content: \"\\EA51\";\n}\n.icon-circle-with-cross:before {\n content: \"\\EA52\";\n}\n.icon-circle-with-minus:before {\n content: \"\\EA53\";\n}\n.icon-circle-with-plus:before {\n content: \"\\EA54\";\n}\n.icon-circle:before {\n content: \"\\EA55\";\n}\n.icon-circular-graph:before {\n content: \"\\EA56\";\n}\n.icon-clapperboard:before {\n content: \"\\EA57\";\n}\n.icon-classic-computer:before {\n content: \"\\EA58\";\n}\n.icon-clipboard:before {\n content: \"\\EA59\";\n}\n.icon-clock:before {\n content: \"\\EA5A\";\n}\n.icon-cloud:before {\n content: \"\\EA5B\";\n}\n.icon-code:before {\n content: \"\\EA5C\";\n}\n.icon-cog:before {\n content: \"\\EA5D\";\n}\n.icon-colours:before {\n content: \"\\EA5E\";\n}\n.icon-compass:before {\n content: \"\\EA5F\";\n}\n.icon-controller-fast-backward:before {\n content: \"\\EA60\";\n}\n.icon-controller-fast-forward:before {\n content: \"\\EA61\";\n}\n.icon-controller-jump-to-start:before {\n content: \"\\EA62\";\n}\n.icon-controller-next:before {\n content: \"\\EA63\";\n}\n.icon-controller-paus:before {\n content: \"\\EA64\";\n}\n.icon-controller-play:before {\n content: \"\\EA65\";\n}\n.icon-controller-record:before {\n content: \"\\EA66\";\n}\n.icon-controller-stop:before {\n content: \"\\EA67\";\n}\n.icon-controller-volume:before {\n content: \"\\EA68\";\n}\n.icon-copy:before {\n content: \"\\EA69\";\n}\n.icon-creative-cloud:before {\n content: \"\\EA6A\";\n}\n.icon-creative-commons-attribution:before {\n content: \"\\EA6B\";\n}\n.icon-creative-commons-noderivs:before {\n content: \"\\EA6C\";\n}\n.icon-creative-commons-noncommercial-eu:before {\n content: \"\\EA6D\";\n}\n.icon-creative-commons-noncommercial-us:before {\n content: \"\\EA6E\";\n}\n.icon-creative-commons-public-domain:before {\n content: \"\\EA6F\";\n}\n.icon-creative-commons-remix:before {\n content: \"\\EA70\";\n}\n.icon-creative-commons-share:before {\n content: \"\\EA71\";\n}\n.icon-creative-commons-sharealike:before {\n content: \"\\EA72\";\n}\n.icon-creative-commons:before {\n content: \"\\EA73\";\n}\n.icon-credit-card:before {\n content: \"\\EA74\";\n}\n.icon-credit:before {\n content: \"\\EA75\";\n}\n.icon-crop:before {\n content: \"\\EA76\";\n}\n.icon-cross:before {\n content: \"\\EA77\";\n}\n.icon-cup:before {\n content: \"\\EA78\";\n}\n.icon-cw:before {\n content: \"\\EA79\";\n}\n.icon-cycle:before {\n content: \"\\EA7A\";\n}\n.icon-database:before {\n content: \"\\EA7B\";\n}\n.icon-dial-pad:before {\n content: \"\\EA7C\";\n}\n.icon-direction:before {\n content: \"\\EA7D\";\n}\n.icon-document-landscape:before {\n content: \"\\EA7E\";\n}\n.icon-document:before {\n content: \"\\EA7F\";\n}\n.icon-documents:before {\n content: \"\\EA80\";\n}\n.icon-dot-single:before {\n content: \"\\EA81\";\n}\n.icon-dots-three-horizontal:before {\n content: \"\\EA82\";\n}\n.icon-dots-three-vertical:before {\n content: \"\\EA83\";\n}\n.icon-dots-two-horizontal:before {\n content: \"\\EA84\";\n}\n.icon-dots-two-vertical:before {\n content: \"\\EA85\";\n}\n.icon-download:before {\n content: \"\\EA86\";\n}\n.icon-dribbble-with-circle:before {\n content: \"\\EA87\";\n}\n.icon-dribbble:before {\n content: \"\\EA88\";\n}\n.icon-drink:before {\n content: \"\\EA89\";\n}\n.icon-drive:before {\n content: \"\\EA8A\";\n}\n.icon-drop:before {\n content: \"\\EA8B\";\n}\n.icon-dropbox:before {\n content: \"\\EA8C\";\n}\n.icon-edit:before {\n content: \"\\EA8D\";\n}\n.icon-email:before {\n content: \"\\EA8E\";\n}\n.icon-emoji-flirt:before {\n content: \"\\EA8F\";\n}\n.icon-emoji-happy:before {\n content: \"\\EA90\";\n}\n.icon-emoji-neutral:before {\n content: \"\\EA91\";\n}\n.icon-emoji-sad:before {\n content: \"\\EA92\";\n}\n.icon-erase:before {\n content: \"\\EA93\";\n}\n.icon-eraser:before {\n content: \"\\EA94\";\n}\n.icon-evernote:before {\n content: \"\\EA95\";\n}\n.icon-export:before {\n content: \"\\EA96\";\n}\n.icon-eye-with-line:before {\n content: \"\\EA97\";\n}\n.icon-eye:before {\n content: \"\\EA98\";\n}\n.icon-facebook-with-circle:before {\n content: \"\\EA99\";\n}\n.icon-facebook:before {\n content: \"\\EA9A\";\n}\n.icon-feather:before {\n content: \"\\EA9B\";\n}\n.icon-fingerprint:before {\n content: \"\\EA9C\";\n}\n.icon-flag:before {\n content: \"\\EA9D\";\n}\n.icon-flash:before {\n content: \"\\EA9E\";\n}\n.icon-flashlight:before {\n content: \"\\EA9F\";\n}\n.icon-flat-brush:before {\n content: \"\\EAA0\";\n}\n.icon-flattr:before {\n content: \"\\EAA1\";\n}\n.icon-flickr-with-circle:before {\n content: \"\\EAA2\";\n}\n.icon-flickr:before {\n content: \"\\EAA3\";\n}\n.icon-flow-branch:before {\n content: \"\\EAA4\";\n}\n.icon-flow-cascade:before {\n content: \"\\EAA5\";\n}\n.icon-flow-line:before {\n content: \"\\EAA6\";\n}\n.icon-flow-parallel:before {\n content: \"\\EAA7\";\n}\n.icon-flow-tree:before {\n content: \"\\EAA8\";\n}\n.icon-flower:before {\n content: \"\\EAA9\";\n}\n.icon-folder-images:before {\n content: \"\\EAAA\";\n}\n.icon-folder-music:before {\n content: \"\\EAAB\";\n}\n.icon-folder-video:before {\n content: \"\\EAAC\";\n}\n.icon-folder:before {\n content: \"\\EAAD\";\n}\n.icon-forward:before {\n content: \"\\EAAE\";\n}\n.icon-foursquare:before {\n content: \"\\EAAF\";\n}\n.icon-funnel:before {\n content: \"\\EAB0\";\n}\n.icon-game-controller:before {\n content: \"\\EAB1\";\n}\n.icon-gauge:before {\n content: \"\\EAB2\";\n}\n.icon-github-with-circle:before {\n content: \"\\EAB3\";\n}\n.icon-github:before {\n content: \"\\EAB4\";\n}\n.icon-globe:before {\n content: \"\\EAB5\";\n}\n.icon-google-plus-with-circle:before {\n content: \"\\EAB6\";\n}\n.icon-google-plus:before {\n content: \"\\EAB7\";\n}\n.icon-google-drive:before {\n content: \"\\EAB8\";\n}\n.icon-google-hangouts:before {\n content: \"\\EAB9\";\n}\n.icon-google-play:before {\n content: \"\\EABA\";\n}\n.icon-graduation-cap:before {\n content: \"\\EABB\";\n}\n.icon-grid:before {\n content: \"\\EABC\";\n}\n.icon-grooveshark:before {\n content: \"\\EABD\";\n}\n.icon-hair-cross:before {\n content: \"\\EABE\";\n}\n.icon-hand:before {\n content: \"\\EABF\";\n}\n.icon-heart-outlined:before {\n content: \"\\EAC0\";\n}\n.icon-heart:before {\n content: \"\\EAC1\";\n}\n.icon-help-with-circle:before {\n content: \"\\EAC2\";\n}\n.icon-help:before {\n content: \"\\EAC3\";\n}\n.icon-home:before {\n content: \"\\EAC4\";\n}\n.icon-hour-glass:before {\n content: \"\\EAC5\";\n}\n.icon-houzz:before {\n content: \"\\EAC6\";\n}\n.icon-icloud:before {\n content: \"\\EAC7\";\n}\n.icon-image-inverted:before {\n content: \"\\EAC8\";\n}\n.icon-image:before {\n content: \"\\EAC9\";\n}\n.icon-images:before {\n content: \"\\EACA\";\n}\n.icon-inbox:before {\n content: \"\\EACB\";\n}\n.icon-infinity:before {\n content: \"\\EACC\";\n}\n.icon-info-with-circle:before {\n content: \"\\EACD\";\n}\n.icon-info:before {\n content: \"\\EACE\";\n}\n.icon-instagram-with-circle:before {\n content: \"\\EACF\";\n}\n.icon-instagram:before {\n content: \"\\EAD0\";\n}\n.icon-install:before {\n content: \"\\EAD1\";\n}\n.icon-key:before {\n content: \"\\EAD2\";\n}\n.icon-keyboard:before {\n content: \"\\EAD3\";\n}\n.icon-lab-flask:before {\n content: \"\\EAD4\";\n}\n.icon-landline:before {\n content: \"\\EAD5\";\n}\n.icon-language:before {\n content: \"\\EAD6\";\n}\n.icon-laptop:before {\n content: \"\\EAD7\";\n}\n.icon-lastfm-with-circle:before {\n content: \"\\EAD8\";\n}\n.icon-lastfm:before {\n content: \"\\EAD9\";\n}\n.icon-layers:before {\n content: \"\\EADA\";\n}\n.icon-leaf:before {\n content: \"\\EADB\";\n}\n.icon-level-down:before {\n content: \"\\EADC\";\n}\n.icon-level-up:before {\n content: \"\\EADD\";\n}\n.icon-lifebuoy:before {\n content: \"\\EADE\";\n}\n.icon-light-bulb:before {\n content: \"\\EADF\";\n}\n.icon-light-down:before {\n content: \"\\EAE0\";\n}\n.icon-light-up:before {\n content: \"\\EAE1\";\n}\n.icon-line-graph:before {\n content: \"\\EAE2\";\n}\n.icon-link:before {\n content: \"\\EAE3\";\n}\n.icon-linkedin-with-circle:before {\n content: \"\\EAE4\";\n}\n.icon-linkedin:before {\n content: \"\\EAE5\";\n}\n.icon-list:before {\n content: \"\\EAE6\";\n}\n.icon-location-pin:before {\n content: \"\\EAE7\";\n}\n.icon-location:before {\n content: \"\\EAE8\";\n}\n.icon-lock-open:before {\n content: \"\\EAE9\";\n}\n.icon-lock:before {\n content: \"\\EAEA\";\n}\n.icon-log-out:before {\n content: \"\\EAEB\";\n}\n.icon-login:before {\n content: \"\\EAEC\";\n}\n.icon-loop:before {\n content: \"\\EAED\";\n}\n.icon-magnet:before {\n content: \"\\EAEE\";\n}\n.icon-magnifying-glass:before {\n content: \"\\EAEF\";\n}\n.icon-mail-with-circle:before {\n content: \"\\EAF0\";\n}\n.icon-mail:before {\n content: \"\\EAF1\";\n}\n.icon-man:before {\n content: \"\\EAF2\";\n}\n.icon-map:before {\n content: \"\\EAF3\";\n}\n.icon-mask:before {\n content: \"\\EAF4\";\n}\n.icon-medal:before {\n content: \"\\EAF5\";\n}\n.icon-medium-with-circle:before {\n content: \"\\EAF6\";\n}\n.icon-medium:before {\n content: \"\\EAF7\";\n}\n.icon-megaphone:before {\n content: \"\\EAF8\";\n}\n.icon-menu-white:before {\n content: \"\\EAF9\";\n}\n.icon-menu:before {\n content: \"\\EAFA\";\n}\n.icon-merge:before {\n content: \"\\EAFB\";\n}\n.icon-message:before {\n content: \"\\EAFC\";\n}\n.icon-mic:before {\n content: \"\\EAFD\";\n}\n.icon-minus:before {\n content: \"\\EAFE\";\n}\n.icon-mixi:before {\n content: \"\\EAFF\";\n}\n.icon-mobile:before {\n content: \"\\EB00\";\n}\n.icon-modern-mic:before {\n content: \"\\EB01\";\n}\n.icon-moon:before {\n content: \"\\EB02\";\n}\n.icon-mouse-pointer:before {\n content: \"\\EB03\";\n}\n.icon-mouse:before {\n content: \"\\EB04\";\n}\n.icon-music:before {\n content: \"\\EB05\";\n}\n.icon-network:before {\n content: \"\\EB06\";\n}\n.icon-new-message:before {\n content: \"\\EB07\";\n}\n.icon-new:before {\n content: \"\\EB08\";\n}\n.icon-news:before {\n content: \"\\EB09\";\n}\n.icon-newsletter:before {\n content: \"\\EB0A\";\n}\n.icon-note:before {\n content: \"\\EB0B\";\n}\n.icon-notification:before {\n content: \"\\EB0C\";\n}\n.icon-notifications-off:before {\n content: \"\\EB0D\";\n}\n.icon-old-mobile:before {\n content: \"\\EB0E\";\n}\n.icon-old-phone:before {\n content: \"\\EB0F\";\n}\n.icon-onedrive:before {\n content: \"\\EB10\";\n}\n.icon-open-book:before {\n content: \"\\EB11\";\n}\n.icon-palette:before {\n content: \"\\EB12\";\n}\n.icon-paper-plane:before {\n content: \"\\EB13\";\n}\n.icon-paypal:before {\n content: \"\\EB14\";\n}\n.icon-pencil:before {\n content: \"\\EB15\";\n}\n.icon-phone:before {\n content: \"\\EB16\";\n}\n.icon-picasa:before {\n content: \"\\EB17\";\n}\n.icon-pie-chart:before {\n content: \"\\EB18\";\n}\n.icon-pin:before {\n content: \"\\EB19\";\n}\n.icon-pinterest-with-circle:before {\n content: \"\\EB1A\";\n}\n.icon-pinterest:before {\n content: \"\\EB1B\";\n}\n.icon-plus:before {\n content: \"\\EB1C\";\n}\n.icon-popup:before {\n content: \"\\EB1D\";\n}\n.icon-power-plug:before {\n content: \"\\EB1E\";\n}\n.icon-price-ribbon:before {\n content: \"\\EB1F\";\n}\n.icon-price-tag:before {\n content: \"\\EB20\";\n}\n.icon-print:before {\n content: \"\\EB21\";\n}\n.icon-progress-empty:before {\n content: \"\\EB22\";\n}\n.icon-progress-full:before {\n content: \"\\EB23\";\n}\n.icon-progress-one:before {\n content: \"\\EB24\";\n}\n.icon-progress-two:before {\n content: \"\\EB25\";\n}\n.icon-publish:before {\n content: \"\\EB26\";\n}\n.icon-qq-with-circle:before {\n content: \"\\EB27\";\n}\n.icon-qq:before {\n content: \"\\EB28\";\n}\n.icon-quote:before {\n content: \"\\EB29\";\n}\n.icon-radio:before {\n content: \"\\EB2A\";\n}\n.icon-raft-with-circle:before {\n content: \"\\EB2B\";\n}\n.icon-raft:before {\n content: \"\\EB2C\";\n}\n.icon-rainbow:before {\n content: \"\\EB2D\";\n}\n.icon-rdio-with-circle:before {\n content: \"\\EB2E\";\n}\n.icon-rdio:before {\n content: \"\\EB2F\";\n}\n.icon-remove-user:before {\n content: \"\\EB30\";\n}\n.icon-renren:before {\n content: \"\\EB31\";\n}\n.icon-reply-all:before {\n content: \"\\EB32\";\n}\n.icon-reply:before {\n content: \"\\EB33\";\n}\n.icon-resize-100:before {\n content: \"\\EB34\";\n}\n.icon-resize-full-screen:before {\n content: \"\\EB35\";\n}\n.icon-retweet:before {\n content: \"\\EB36\";\n}\n.icon-rocket:before {\n content: \"\\EB37\";\n}\n.icon-round-brush:before {\n content: \"\\EB38\";\n}\n.icon-rss:before {\n content: \"\\EB39\";\n}\n.icon-ruler:before {\n content: \"\\EB3A\";\n}\n.icon-save:before {\n content: \"\\EB3B\";\n}\n.icon-scissors:before {\n content: \"\\EB3C\";\n}\n.icon-scribd:before {\n content: \"\\EB3D\";\n}\n.icon-select-arrows:before {\n content: \"\\EB3E\";\n}\n.icon-share-alternative:before {\n content: \"\\EB3F\";\n}\n.icon-share-alternitive:before {\n content: \"\\EB40\";\n}\n.icon-share:before {\n content: \"\\EB41\";\n}\n.icon-shareable:before {\n content: \"\\EB42\";\n}\n.icon-shield:before {\n content: \"\\EB43\";\n}\n.icon-shop:before {\n content: \"\\EB44\";\n}\n.icon-shopping-bag:before {\n content: \"\\EB45\";\n}\n.icon-shopping-basket:before {\n content: \"\\EB46\";\n}\n.icon-shopping-cart:before {\n content: \"\\EB47\";\n}\n.icon-shuffle:before {\n content: \"\\EB48\";\n}\n.icon-signal:before {\n content: \"\\EB49\";\n}\n.icon-sina-weibo:before {\n content: \"\\EB4A\";\n}\n.icon-skype-with-circle:before {\n content: \"\\EB4B\";\n}\n.icon-skype:before {\n content: \"\\EB4C\";\n}\n.icon-slideshare:before {\n content: \"\\EB4D\";\n}\n.icon-smashing:before {\n content: \"\\EB4E\";\n}\n.icon-sound-mix:before {\n content: \"\\EB4F\";\n}\n.icon-sound-mute:before {\n content: \"\\EB50\";\n}\n.icon-sound:before {\n content: \"\\EB51\";\n}\n.icon-soundcloud:before {\n content: \"\\EB52\";\n}\n.icon-sports-club:before {\n content: \"\\EB53\";\n}\n.icon-spotify-with-circle:before {\n content: \"\\EB54\";\n}\n.icon-spotify:before {\n content: \"\\EB55\";\n}\n.icon-spreadsheet:before {\n content: \"\\EB56\";\n}\n.icon-squared-cross:before {\n content: \"\\EB57\";\n}\n.icon-squared-minus:before {\n content: \"\\EB58\";\n}\n.icon-squared-plus:before {\n content: \"\\EB59\";\n}\n.icon-star-outlined:before {\n content: \"\\EB5A\";\n}\n.icon-star:before {\n content: \"\\EB5B\";\n}\n.icon-stopwatch:before {\n content: \"\\EB5C\";\n}\n.icon-stumbleupon-with-circle:before {\n content: \"\\EB5D\";\n}\n.icon-stumbleupon:before {\n content: \"\\EB5E\";\n}\n.icon-suitcase:before {\n content: \"\\EB5F\";\n}\n.icon-swap:before {\n content: \"\\EB60\";\n}\n.icon-swarm:before {\n content: \"\\EB61\";\n}\n.icon-sweden:before {\n content: \"\\EB62\";\n}\n.icon-switch:before {\n content: \"\\EB63\";\n}\n.icon-tablet-mobile-combo:before {\n content: \"\\EB64\";\n}\n.icon-tablet:before {\n content: \"\\EB65\";\n}\n.icon-tag:before {\n content: \"\\EB66\";\n}\n.icon-text-document-inverted:before {\n content: \"\\EB67\";\n}\n.icon-text-document:before {\n content: \"\\EB68\";\n}\n.icon-text:before {\n content: \"\\EB69\";\n}\n.icon-thermometer:before {\n content: \"\\EB6A\";\n}\n.icon-thumbs-down:before {\n content: \"\\EB6B\";\n}\n.icon-thumbs-up:before {\n content: \"\\EB6C\";\n}\n.icon-thunder-cloud:before {\n content: \"\\EB6D\";\n}\n.icon-ticket:before {\n content: \"\\EB6E\";\n}\n.icon-time-slot:before {\n content: \"\\EB6F\";\n}\n.icon-tools:before {\n content: \"\\EB70\";\n}\n.icon-traffic-cone:before {\n content: \"\\EB71\";\n}\n.icon-trash:before {\n content: \"\\EB72\";\n}\n.icon-tree:before {\n content: \"\\EB73\";\n}\n.icon-triangle-down:before {\n content: \"\\EB74\";\n}\n.icon-triangle-left:before {\n content: \"\\EB75\";\n}\n.icon-triangle-right:before {\n content: \"\\EB76\";\n}\n.icon-triangle-up:before {\n content: \"\\EB77\";\n}\n.icon-tripadvisor:before {\n content: \"\\EB78\";\n}\n.icon-trophy:before {\n content: \"\\EB79\";\n}\n.icon-tumblr-with-circle:before {\n content: \"\\EB7A\";\n}\n.icon-tumblr:before {\n content: \"\\EB7B\";\n}\n.icon-tv:before {\n content: \"\\EB7C\";\n}\n.icon-twitter-with-circle:before {\n content: \"\\EB7D\";\n}\n.icon-twitter:before {\n content: \"\\EB7E\";\n}\n.icon-typing:before {\n content: \"\\EB7F\";\n}\n.icon-uninstall:before {\n content: \"\\EB80\";\n}\n.icon-unread:before {\n content: \"\\EB81\";\n}\n.icon-untag:before {\n content: \"\\EB82\";\n}\n.icon-upload-to-cloud:before {\n content: \"\\EB83\";\n}\n.icon-upload:before {\n content: \"\\EB84\";\n}\n.icon-user:before {\n content: \"\\EB85\";\n}\n.icon-users:before {\n content: \"\\EB86\";\n}\n.icon-v-card:before {\n content: \"\\EB87\";\n}\n.icon-video-camera:before {\n content: \"\\EB88\";\n}\n.icon-video:before {\n content: \"\\EB89\";\n}\n.icon-vimeo-with-circle:before {\n content: \"\\EB8A\";\n}\n.icon-vimeo:before {\n content: \"\\EB8B\";\n}\n.icon-vine-with-circle:before {\n content: \"\\EB8C\";\n}\n.icon-vine:before {\n content: \"\\EB8D\";\n}\n.icon-vinyl:before {\n content: \"\\EB8E\";\n}\n.icon-vk-alternitive:before {\n content: \"\\EB8F\";\n}\n.icon-vk-with-circle:before {\n content: \"\\EB90\";\n}\n.icon-vk:before {\n content: \"\\EB91\";\n}\n.icon-voicemail:before {\n content: \"\\EB92\";\n}\n.icon-wallet:before {\n content: \"\\EB93\";\n}\n.icon-warning:before {\n content: \"\\EB94\";\n}\n.icon-water:before {\n content: \"\\EB95\";\n}\n.icon-windows-store:before {\n content: \"\\EB96\";\n}\n.icon-xing-with-circle:before {\n content: \"\\EB97\";\n}\n.icon-xing:before {\n content: \"\\EB98\";\n}\n.icon-yelp:before {\n content: \"\\EB99\";\n}\n.icon-youko-with-circle:before {\n content: \"\\EB9A\";\n}\n.icon-youko:before {\n content: \"\\EB9B\";\n}\n.icon-youtube-with-circle:before {\n content: \"\\EB9C\";\n}\n.icon-youtube:before {\n content: \"\\EB9D\";\n}\n.flextable {\n dislay: table;\n width: 100%;\n}\n.flextable-item {\n display: table-cell;\n width: 1%;\n white-space: nowrap;\n vertical-align: middle;\n}\n.flextable-item .btn-group {\n margin-left: 10px;\n}\n.flextable-item .btn-group > .btn {\n float: none;\n}\n.flextable-item .btn-group > .btn + .btn {\n margin-left: -4px;\n}\n.flextable-primary {\n width: 99%;\n}\n.pos-r {\n position: relative !important;\n}\n.pos-a {\n position: absolute !important;\n}\n.pos-f {\n position: fixed !important;\n}\n.w-sm {\n width: 25% !important;\n}\n.w-md {\n width: 50% !important;\n}\n.w-lg {\n width: 75% !important;\n}\n.w-full {\n width: 100% !important;\n}\n.m-a-0 {\n margin: 0 !important;\n}\n.m-t-0 {\n margin-top: 0 !important;\n}\n.m-r-0 {\n margin-right: 0 !important;\n}\n.m-b-0 {\n margin-bottom: 0 !important;\n}\n.m-l-0 {\n margin-left: 0 !important;\n}\n.m-x-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n}\n.m-y-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n.m-a {\n margin: 20px !important;\n}\n.m-t {\n margin-top: 20px !important;\n}\n.m-r {\n margin-right: 20px !important;\n}\n.m-b {\n margin-bottom: 20px !important;\n}\n.m-l {\n margin-left: 20px !important;\n}\n.m-x {\n margin-right: 20px !important;\n margin-left: 20px !important;\n}\n.m-y {\n margin-top: 20px !important;\n margin-bottom: 20px !important;\n}\n.m-x-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n}\n.m-a-md {\n margin: 30px !important;\n}\n.m-t-md {\n margin-top: 30px !important;\n}\n.m-r-md {\n margin-right: 30px !important;\n}\n.m-b-md {\n margin-bottom: 30px !important;\n}\n.m-l-md {\n margin-left: 30px !important;\n}\n.m-x-md {\n margin-right: 30px !important;\n margin-left: 30px !important;\n}\n.m-y-md {\n margin-top: 30px !important;\n margin-bottom: 30px !important;\n}\n.m-a-lg {\n margin: 60px !important;\n}\n.m-t-lg {\n margin-top: 60px !important;\n}\n.m-r-lg {\n margin-right: 60px !important;\n}\n.m-b-lg {\n margin-bottom: 60px !important;\n}\n.m-l-lg {\n margin-left: 60px !important;\n}\n.m-x-lg {\n margin-right: 60px !important;\n margin-left: 60px !important;\n}\n.m-y-lg {\n margin-top: 60px !important;\n margin-bottom: 60px !important;\n}\n.p-a-0 {\n padding: 0 !important;\n}\n.p-t-0 {\n padding-top: 0 !important;\n}\n.p-r-0 {\n padding-right: 0 !important;\n}\n.p-b-0 {\n padding-bottom: 0 !important;\n}\n.p-l-0 {\n padding-left: 0 !important;\n}\n.p-x-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n}\n.p-y-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n.p-a {\n padding: 20px !important;\n}\n.p-t {\n padding-top: 20px !important;\n}\n.p-r {\n padding-right: 20px !important;\n}\n.p-b {\n padding-bottom: 20px !important;\n}\n.p-l {\n padding-left: 20px !important;\n}\n.p-x {\n padding-right: 20px !important;\n padding-left: 20px !important;\n}\n.p-y {\n padding-top: 20px !important;\n padding-bottom: 20px !important;\n}\n.p-a-md {\n padding: 30px !important;\n}\n.p-t-md {\n padding-top: 30px !important;\n}\n.p-r-md {\n padding-right: 30px !important;\n}\n.p-b-md {\n padding-bottom: 30px !important;\n}\n.p-l-md {\n padding-left: 30px !important;\n}\n.p-x-md {\n padding-right: 30px !important;\n padding-left: 30px !important;\n}\n.p-y-md {\n padding-top: 30px !important;\n padding-bottom: 30px !important;\n}\n.p-a-lg {\n padding: 60px !important;\n}\n.p-t-lg {\n padding-top: 60px !important;\n}\n.p-r-lg {\n padding-right: 60px !important;\n}\n.p-b-lg {\n padding-bottom: 60px !important;\n}\n.p-l-lg {\n padding-left: 60px !important;\n}\n.p-x-lg {\n padding-right: 60px !important;\n padding-left: 60px !important;\n}\n.p-y-lg {\n padding-top: 60px !important;\n padding-bottom: 60px !important;\n}\n.text-inherit,\n.text-inherit:hover,\n.text-inherit:focus {\n color: inherit;\n text-decoration: inherit;\n}\n.datepicker {\n padding: 4px;\n border-radius: 4px;\n color: #51586a;\n direction: ltr;\n}\n.datepicker-inline {\n width: 220px;\n}\n.datepicker.datepicker-rtl {\n direction: rtl;\n}\n.datepicker.datepicker-rtl table tr td span {\n float: right;\n}\n.datepicker-dropdown {\n top: 0;\n left: 0;\n}\n.datepicker-dropdown:before {\n content: '';\n display: inline-block;\n border-left: 7px solid transparent;\n border-right: 7px solid transparent;\n border-bottom: 7px solid #ccc;\n border-top: 0;\n border-bottom-color: rgba(0, 0, 0, 0.2);\n position: absolute;\n}\n.datepicker-dropdown:after {\n content: '';\n display: inline-block;\n border-left: 6px solid transparent;\n border-right: 6px solid transparent;\n border-bottom: 6px solid #fff;\n border-top: 0;\n position: absolute;\n}\n.datepicker-dropdown.datepicker-orient-left:before {\n left: 6px;\n}\n.datepicker-dropdown.datepicker-orient-left:after {\n left: 7px;\n}\n.datepicker-dropdown.datepicker-orient-right:before {\n right: 6px;\n}\n.datepicker-dropdown.datepicker-orient-right:after {\n right: 7px;\n}\n.datepicker-dropdown.datepicker-orient-top:before {\n top: -7px;\n}\n.datepicker-dropdown.datepicker-orient-top:after {\n top: -6px;\n}\n.datepicker-dropdown.datepicker-orient-bottom:before {\n bottom: -7px;\n border-bottom: 0;\n border-top: 7px solid #999;\n}\n.datepicker-dropdown.datepicker-orient-bottom:after {\n bottom: -6px;\n border-bottom: 0;\n border-top: 6px solid #fff;\n}\n.datepicker > div {\n display: none;\n}\n.datepicker.days .datepicker-days,\n.datepicker.months .datepicker-months,\n.datepicker.years .datepicker-years {\n display: block;\n}\n.datepicker table {\n margin: 5px 10px;\n -webkit-touch-callout: none;\n -webkit-user-select: none;\n -khtml-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.datepicker table > tbody > tr > td,\n.datepicker table > thead > tr > td,\n.datepicker table > tbody > tr > th,\n.datepicker table > thead > tr > th {\n text-align: center;\n width: 30px;\n height: 30px;\n border-radius: 4px;\n border: none;\n}\n.table-striped .datepicker table tr td,\n.table-striped .datepicker table tr th {\n background-color: transparent;\n}\n.datepicker table tr td.day:hover,\n.datepicker table tr td.day.focused {\n background: #ffffff;\n cursor: pointer;\n}\n.datepicker table tr td.old,\n.datepicker table tr td.new {\n color: #cfd2da;\n}\n.datepicker table tr td.disabled,\n.datepicker table tr td.disabled:hover {\n background: none;\n color: #cfd2da;\n cursor: default;\n}\n.datepicker table tr td.today,\n.datepicker table tr td.today:hover,\n.datepicker table tr td.today.disabled,\n.datepicker table tr td.today.disabled:hover {\n color: #000;\n background-color: #ffdb99;\n border-color: #ffb733;\n}\n.datepicker table tr td.today:focus,\n.datepicker table tr td.today:hover:focus,\n.datepicker table tr td.today.disabled:focus,\n.datepicker table tr td.today.disabled:hover:focus,\n.datepicker table tr td.today.focus,\n.datepicker table tr td.today:hover.focus,\n.datepicker table tr td.today.disabled.focus,\n.datepicker table tr td.today.disabled:hover.focus {\n color: #000;\n background-color: #ffc966;\n border-color: #b37400;\n}\n.datepicker table tr td.today:hover,\n.datepicker table tr td.today:hover:hover,\n.datepicker table tr td.today.disabled:hover,\n.datepicker table tr td.today.disabled:hover:hover {\n color: #000;\n background-color: #ffc966;\n border-color: #f59e00;\n}\n.datepicker table tr td.today:active,\n.datepicker table tr td.today:hover:active,\n.datepicker table tr td.today.disabled:active,\n.datepicker table tr td.today.disabled:hover:active,\n.datepicker table tr td.today.active,\n.datepicker table tr td.today:hover.active,\n.datepicker table tr td.today.disabled.active,\n.datepicker table tr td.today.disabled:hover.active,\n.open > .dropdown-toggle.datepicker table tr td.today,\n.open > .dropdown-toggle.datepicker table tr td.today:hover,\n.open > .dropdown-toggle.datepicker table tr td.today.disabled,\n.open > .dropdown-toggle.datepicker table tr td.today.disabled:hover {\n color: #000;\n background-color: #ffc966;\n border-color: #f59e00;\n}\n.datepicker table tr td.today:active:hover,\n.datepicker table tr td.today:hover:active:hover,\n.datepicker table tr td.today.disabled:active:hover,\n.datepicker table tr td.today.disabled:hover:active:hover,\n.datepicker table tr td.today.active:hover,\n.datepicker table tr td.today:hover.active:hover,\n.datepicker table tr td.today.disabled.active:hover,\n.datepicker table tr td.today.disabled:hover.active:hover,\n.open > .dropdown-toggle.datepicker table tr td.today:hover,\n.open > .dropdown-toggle.datepicker table tr td.today:hover:hover,\n.open > .dropdown-toggle.datepicker table tr td.today.disabled:hover,\n.open > .dropdown-toggle.datepicker table tr td.today.disabled:hover:hover,\n.datepicker table tr td.today:active:focus,\n.datepicker table tr td.today:hover:active:focus,\n.datepicker table tr td.today.disabled:active:focus,\n.datepicker table tr td.today.disabled:hover:active:focus,\n.datepicker table tr td.today.active:focus,\n.datepicker table tr td.today:hover.active:focus,\n.datepicker table tr td.today.disabled.active:focus,\n.datepicker table tr td.today.disabled:hover.active:focus,\n.open > .dropdown-toggle.datepicker table tr td.today:focus,\n.open > .dropdown-toggle.datepicker table tr td.today:hover:focus,\n.open > .dropdown-toggle.datepicker table tr td.today.disabled:focus,\n.open > .dropdown-toggle.datepicker table tr td.today.disabled:hover:focus,\n.datepicker table tr td.today:active.focus,\n.datepicker table tr td.today:hover:active.focus,\n.datepicker table tr td.today.disabled:active.focus,\n.datepicker table tr td.today.disabled:hover:active.focus,\n.datepicker table tr td.today.active.focus,\n.datepicker table tr td.today:hover.active.focus,\n.datepicker table tr td.today.disabled.active.focus,\n.datepicker table tr td.today.disabled:hover.active.focus,\n.open > .dropdown-toggle.datepicker table tr td.today.focus,\n.open > .dropdown-toggle.datepicker table tr td.today:hover.focus,\n.open > .dropdown-toggle.datepicker table tr td.today.disabled.focus,\n.open > .dropdown-toggle.datepicker table tr td.today.disabled:hover.focus {\n color: #000;\n background-color: #ffbc42;\n border-color: #b37400;\n}\n.datepicker table tr td.today:active,\n.datepicker table tr td.today:hover:active,\n.datepicker table tr td.today.disabled:active,\n.datepicker table tr td.today.disabled:hover:active,\n.datepicker table tr td.today.active,\n.datepicker table tr td.today:hover.active,\n.datepicker table tr td.today.disabled.active,\n.datepicker table tr td.today.disabled:hover.active,\n.open > .dropdown-toggle.datepicker table tr td.today,\n.open > .dropdown-toggle.datepicker table tr td.today:hover,\n.open > .dropdown-toggle.datepicker table tr td.today.disabled,\n.open > .dropdown-toggle.datepicker table tr td.today.disabled:hover {\n background-image: none;\n}\n.datepicker table tr td.today.disabled:hover,\n.datepicker table tr td.today:hover.disabled:hover,\n.datepicker table tr td.today.disabled.disabled:hover,\n.datepicker table tr td.today.disabled:hover.disabled:hover,\n.datepicker table tr td.today[disabled]:hover,\n.datepicker table tr td.today:hover[disabled]:hover,\n.datepicker table tr td.today.disabled[disabled]:hover,\n.datepicker table tr td.today.disabled:hover[disabled]:hover,\nfieldset[disabled] .datepicker table tr td.today:hover,\nfieldset[disabled] .datepicker table tr td.today:hover:hover,\nfieldset[disabled] .datepicker table tr td.today.disabled:hover,\nfieldset[disabled] .datepicker table tr td.today.disabled:hover:hover,\n.datepicker table tr td.today.disabled:focus,\n.datepicker table tr td.today:hover.disabled:focus,\n.datepicker table tr td.today.disabled.disabled:focus,\n.datepicker table tr td.today.disabled:hover.disabled:focus,\n.datepicker table tr td.today[disabled]:focus,\n.datepicker table tr td.today:hover[disabled]:focus,\n.datepicker table tr td.today.disabled[disabled]:focus,\n.datepicker table tr td.today.disabled:hover[disabled]:focus,\nfieldset[disabled] .datepicker table tr td.today:focus,\nfieldset[disabled] .datepicker table tr td.today:hover:focus,\nfieldset[disabled] .datepicker table tr td.today.disabled:focus,\nfieldset[disabled] .datepicker table tr td.today.disabled:hover:focus,\n.datepicker table tr td.today.disabled.focus,\n.datepicker table tr td.today:hover.disabled.focus,\n.datepicker table tr td.today.disabled.disabled.focus,\n.datepicker table tr td.today.disabled:hover.disabled.focus,\n.datepicker table tr td.today[disabled].focus,\n.datepicker table tr td.today:hover[disabled].focus,\n.datepicker table tr td.today.disabled[disabled].focus,\n.datepicker table tr td.today.disabled:hover[disabled].focus,\nfieldset[disabled] .datepicker table tr td.today.focus,\nfieldset[disabled] .datepicker table tr td.today:hover.focus,\nfieldset[disabled] .datepicker table tr td.today.disabled.focus,\nfieldset[disabled] .datepicker table tr td.today.disabled:hover.focus {\n background-color: #ffdb99;\n border-color: #ffb733;\n}\n.datepicker table tr td.today .badge,\n.datepicker table tr td.today:hover .badge,\n.datepicker table tr td.today.disabled .badge,\n.datepicker table tr td.today.disabled:hover .badge {\n color: #ffdb99;\n background-color: #000;\n}\n.datepicker table tr td.today:hover:hover {\n color: #000;\n}\n.datepicker table tr td.today.active:hover {\n color: #fff;\n}\n.datepicker table tr td.range,\n.datepicker table tr td.range:hover,\n.datepicker table tr td.range.disabled,\n.datepicker table tr td.range.disabled:hover {\n background: #ffffff;\n border-radius: 0;\n}\n.datepicker table tr td.range.today,\n.datepicker table tr td.range.today:hover,\n.datepicker table tr td.range.today.disabled,\n.datepicker table tr td.range.today.disabled:hover {\n color: #000;\n background-color: #ffd280;\n border-color: #ffae1a;\n border-radius: 0;\n}\n.datepicker table tr td.range.today:focus,\n.datepicker table tr td.range.today:hover:focus,\n.datepicker table tr td.range.today.disabled:focus,\n.datepicker table tr td.range.today.disabled:hover:focus,\n.datepicker table tr td.range.today.focus,\n.datepicker table tr td.range.today:hover.focus,\n.datepicker table tr td.range.today.disabled.focus,\n.datepicker table tr td.range.today.disabled:hover.focus {\n color: #000;\n background-color: #ffc04d;\n border-color: #996300;\n}\n.datepicker table tr td.range.today:hover,\n.datepicker table tr td.range.today:hover:hover,\n.datepicker table tr td.range.today.disabled:hover,\n.datepicker table tr td.range.today.disabled:hover:hover {\n color: #000;\n background-color: #ffc04d;\n border-color: #db8e00;\n}\n.datepicker table tr td.range.today:active,\n.datepicker table tr td.range.today:hover:active,\n.datepicker table tr td.range.today.disabled:active,\n.datepicker table tr td.range.today.disabled:hover:active,\n.datepicker table tr td.range.today.active,\n.datepicker table tr td.range.today:hover.active,\n.datepicker table tr td.range.today.disabled.active,\n.datepicker table tr td.range.today.disabled:hover.active,\n.open > .dropdown-toggle.datepicker table tr td.range.today,\n.open > .dropdown-toggle.datepicker table tr td.range.today:hover,\n.open > .dropdown-toggle.datepicker table tr td.range.today.disabled,\n.open > .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {\n color: #000;\n background-color: #ffc04d;\n border-color: #db8e00;\n}\n.datepicker table tr td.range.today:active:hover,\n.datepicker table tr td.range.today:hover:active:hover,\n.datepicker table tr td.range.today.disabled:active:hover,\n.datepicker table tr td.range.today.disabled:hover:active:hover,\n.datepicker table tr td.range.today.active:hover,\n.datepicker table tr td.range.today:hover.active:hover,\n.datepicker table tr td.range.today.disabled.active:hover,\n.datepicker table tr td.range.today.disabled:hover.active:hover,\n.open > .dropdown-toggle.datepicker table tr td.range.today:hover,\n.open > .dropdown-toggle.datepicker table tr td.range.today:hover:hover,\n.open > .dropdown-toggle.datepicker table tr td.range.today.disabled:hover,\n.open > .dropdown-toggle.datepicker table tr td.range.today.disabled:hover:hover,\n.datepicker table tr td.range.today:active:focus,\n.datepicker table tr td.range.today:hover:active:focus,\n.datepicker table tr td.range.today.disabled:active:focus,\n.datepicker table tr td.range.today.disabled:hover:active:focus,\n.datepicker table tr td.range.today.active:focus,\n.datepicker table tr td.range.today:hover.active:focus,\n.datepicker table tr td.range.today.disabled.active:focus,\n.datepicker table tr td.range.today.disabled:hover.active:focus,\n.open > .dropdown-toggle.datepicker table tr td.range.today:focus,\n.open > .dropdown-toggle.datepicker table tr td.range.today:hover:focus,\n.open > .dropdown-toggle.datepicker table tr td.range.today.disabled:focus,\n.open > .dropdown-toggle.datepicker table tr td.range.today.disabled:hover:focus,\n.datepicker table tr td.range.today:active.focus,\n.datepicker table tr td.range.today:hover:active.focus,\n.datepicker table tr td.range.today.disabled:active.focus,\n.datepicker table tr td.range.today.disabled:hover:active.focus,\n.datepicker table tr td.range.today.active.focus,\n.datepicker table tr td.range.today:hover.active.focus,\n.datepicker table tr td.range.today.disabled.active.focus,\n.datepicker table tr td.range.today.disabled:hover.active.focus,\n.open > .dropdown-toggle.datepicker table tr td.range.today.focus,\n.open > .dropdown-toggle.datepicker table tr td.range.today:hover.focus,\n.open > .dropdown-toggle.datepicker table tr td.range.today.disabled.focus,\n.open > .dropdown-toggle.datepicker table tr td.range.today.disabled:hover.focus {\n color: #000;\n background-color: #ffb329;\n border-color: #996300;\n}\n.datepicker table tr td.range.today:active,\n.datepicker table tr td.range.today:hover:active,\n.datepicker table tr td.range.today.disabled:active,\n.datepicker table tr td.range.today.disabled:hover:active,\n.datepicker table tr td.range.today.active,\n.datepicker table tr td.range.today:hover.active,\n.datepicker table tr td.range.today.disabled.active,\n.datepicker table tr td.range.today.disabled:hover.active,\n.open > .dropdown-toggle.datepicker table tr td.range.today,\n.open > .dropdown-toggle.datepicker table tr td.range.today:hover,\n.open > .dropdown-toggle.datepicker table tr td.range.today.disabled,\n.open > .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {\n background-image: none;\n}\n.datepicker table tr td.range.today.disabled:hover,\n.datepicker table tr td.range.today:hover.disabled:hover,\n.datepicker table tr td.range.today.disabled.disabled:hover,\n.datepicker table tr td.range.today.disabled:hover.disabled:hover,\n.datepicker table tr td.range.today[disabled]:hover,\n.datepicker table tr td.range.today:hover[disabled]:hover,\n.datepicker table tr td.range.today.disabled[disabled]:hover,\n.datepicker table tr td.range.today.disabled:hover[disabled]:hover,\nfieldset[disabled] .datepicker table tr td.range.today:hover,\nfieldset[disabled] .datepicker table tr td.range.today:hover:hover,\nfieldset[disabled] .datepicker table tr td.range.today.disabled:hover,\nfieldset[disabled] .datepicker table tr td.range.today.disabled:hover:hover,\n.datepicker table tr td.range.today.disabled:focus,\n.datepicker table tr td.range.today:hover.disabled:focus,\n.datepicker table tr td.range.today.disabled.disabled:focus,\n.datepicker table tr td.range.today.disabled:hover.disabled:focus,\n.datepicker table tr td.range.today[disabled]:focus,\n.datepicker table tr td.range.today:hover[disabled]:focus,\n.datepicker table tr td.range.today.disabled[disabled]:focus,\n.datepicker table tr td.range.today.disabled:hover[disabled]:focus,\nfieldset[disabled] .datepicker table tr td.range.today:focus,\nfieldset[disabled] .datepicker table tr td.range.today:hover:focus,\nfieldset[disabled] .datepicker table tr td.range.today.disabled:focus,\nfieldset[disabled] .datepicker table tr td.range.today.disabled:hover:focus,\n.datepicker table tr td.range.today.disabled.focus,\n.datepicker table tr td.range.today:hover.disabled.focus,\n.datepicker table tr td.range.today.disabled.disabled.focus,\n.datepicker table tr td.range.today.disabled:hover.disabled.focus,\n.datepicker table tr td.range.today[disabled].focus,\n.datepicker table tr td.range.today:hover[disabled].focus,\n.datepicker table tr td.range.today.disabled[disabled].focus,\n.datepicker table tr td.range.today.disabled:hover[disabled].focus,\nfieldset[disabled] .datepicker table tr td.range.today.focus,\nfieldset[disabled] .datepicker table tr td.range.today:hover.focus,\nfieldset[disabled] .datepicker table tr td.range.today.disabled.focus,\nfieldset[disabled] .datepicker table tr td.range.today.disabled:hover.focus {\n background-color: #ffd280;\n border-color: #ffae1a;\n}\n.datepicker table tr td.range.today .badge,\n.datepicker table tr td.range.today:hover .badge,\n.datepicker table tr td.range.today.disabled .badge,\n.datepicker table tr td.range.today.disabled:hover .badge {\n color: #ffd280;\n background-color: #000;\n}\n.datepicker table tr td.selected,\n.datepicker table tr td.selected:hover,\n.datepicker table tr td.selected.disabled,\n.datepicker table tr td.selected.disabled:hover {\n color: #fff;\n background-color: #cfd2da;\n border-color: #6f7890;\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.datepicker table tr td.selected:focus,\n.datepicker table tr td.selected:hover:focus,\n.datepicker table tr td.selected.disabled:focus,\n.datepicker table tr td.selected.disabled:hover:focus,\n.datepicker table tr td.selected.focus,\n.datepicker table tr td.selected:hover.focus,\n.datepicker table tr td.selected.disabled.focus,\n.datepicker table tr td.selected.disabled:hover.focus {\n color: #fff;\n background-color: #b2b7c4;\n border-color: #383c48;\n}\n.datepicker table tr td.selected:hover,\n.datepicker table tr td.selected:hover:hover,\n.datepicker table tr td.selected.disabled:hover,\n.datepicker table tr td.selected.disabled:hover:hover {\n color: #fff;\n background-color: #b2b7c4;\n border-color: #555c6e;\n}\n.datepicker table tr td.selected:active,\n.datepicker table tr td.selected:hover:active,\n.datepicker table tr td.selected.disabled:active,\n.datepicker table tr td.selected.disabled:hover:active,\n.datepicker table tr td.selected.active,\n.datepicker table tr td.selected:hover.active,\n.datepicker table tr td.selected.disabled.active,\n.datepicker table tr td.selected.disabled:hover.active,\n.open > .dropdown-toggle.datepicker table tr td.selected,\n.open > .dropdown-toggle.datepicker table tr td.selected:hover,\n.open > .dropdown-toggle.datepicker table tr td.selected.disabled,\n.open > .dropdown-toggle.datepicker table tr td.selected.disabled:hover {\n color: #fff;\n background-color: #b2b7c4;\n border-color: #555c6e;\n}\n.datepicker table tr td.selected:active:hover,\n.datepicker table tr td.selected:hover:active:hover,\n.datepicker table tr td.selected.disabled:active:hover,\n.datepicker table tr td.selected.disabled:hover:active:hover,\n.datepicker table tr td.selected.active:hover,\n.datepicker table tr td.selected:hover.active:hover,\n.datepicker table tr td.selected.disabled.active:hover,\n.datepicker table tr td.selected.disabled:hover.active:hover,\n.open > .dropdown-toggle.datepicker table tr td.selected:hover,\n.open > .dropdown-toggle.datepicker table tr td.selected:hover:hover,\n.open > .dropdown-toggle.datepicker table tr td.selected.disabled:hover,\n.open > .dropdown-toggle.datepicker table tr td.selected.disabled:hover:hover,\n.datepicker table tr td.selected:active:focus,\n.datepicker table tr td.selected:hover:active:focus,\n.datepicker table tr td.selected.disabled:active:focus,\n.datepicker table tr td.selected.disabled:hover:active:focus,\n.datepicker table tr td.selected.active:focus,\n.datepicker table tr td.selected:hover.active:focus,\n.datepicker table tr td.selected.disabled.active:focus,\n.datepicker table tr td.selected.disabled:hover.active:focus,\n.open > .dropdown-toggle.datepicker table tr td.selected:focus,\n.open > .dropdown-toggle.datepicker table tr td.selected:hover:focus,\n.open > .dropdown-toggle.datepicker table tr td.selected.disabled:focus,\n.open > .dropdown-toggle.datepicker table tr td.selected.disabled:hover:focus,\n.datepicker table tr td.selected:active.focus,\n.datepicker table tr td.selected:hover:active.focus,\n.datepicker table tr td.selected.disabled:active.focus,\n.datepicker table tr td.selected.disabled:hover:active.focus,\n.datepicker table tr td.selected.active.focus,\n.datepicker table tr td.selected:hover.active.focus,\n.datepicker table tr td.selected.disabled.active.focus,\n.datepicker table tr td.selected.disabled:hover.active.focus,\n.open > .dropdown-toggle.datepicker table tr td.selected.focus,\n.open > .dropdown-toggle.datepicker table tr td.selected:hover.focus,\n.open > .dropdown-toggle.datepicker table tr td.selected.disabled.focus,\n.open > .dropdown-toggle.datepicker table tr td.selected.disabled:hover.focus {\n color: #fff;\n background-color: #9ea4b4;\n border-color: #383c48;\n}\n.datepicker table tr td.selected:active,\n.datepicker table tr td.selected:hover:active,\n.datepicker table tr td.selected.disabled:active,\n.datepicker table tr td.selected.disabled:hover:active,\n.datepicker table tr td.selected.active,\n.datepicker table tr td.selected:hover.active,\n.datepicker table tr td.selected.disabled.active,\n.datepicker table tr td.selected.disabled:hover.active,\n.open > .dropdown-toggle.datepicker table tr td.selected,\n.open > .dropdown-toggle.datepicker table tr td.selected:hover,\n.open > .dropdown-toggle.datepicker table tr td.selected.disabled,\n.open > .dropdown-toggle.datepicker table tr td.selected.disabled:hover {\n background-image: none;\n}\n.datepicker table tr td.selected.disabled:hover,\n.datepicker table tr td.selected:hover.disabled:hover,\n.datepicker table tr td.selected.disabled.disabled:hover,\n.datepicker table tr td.selected.disabled:hover.disabled:hover,\n.datepicker table tr td.selected[disabled]:hover,\n.datepicker table tr td.selected:hover[disabled]:hover,\n.datepicker table tr td.selected.disabled[disabled]:hover,\n.datepicker table tr td.selected.disabled:hover[disabled]:hover,\nfieldset[disabled] .datepicker table tr td.selected:hover,\nfieldset[disabled] .datepicker table tr td.selected:hover:hover,\nfieldset[disabled] .datepicker table tr td.selected.disabled:hover,\nfieldset[disabled] .datepicker table tr td.selected.disabled:hover:hover,\n.datepicker table tr td.selected.disabled:focus,\n.datepicker table tr td.selected:hover.disabled:focus,\n.datepicker table tr td.selected.disabled.disabled:focus,\n.datepicker table tr td.selected.disabled:hover.disabled:focus,\n.datepicker table tr td.selected[disabled]:focus,\n.datepicker table tr td.selected:hover[disabled]:focus,\n.datepicker table tr td.selected.disabled[disabled]:focus,\n.datepicker table tr td.selected.disabled:hover[disabled]:focus,\nfieldset[disabled] .datepicker table tr td.selected:focus,\nfieldset[disabled] .datepicker table tr td.selected:hover:focus,\nfieldset[disabled] .datepicker table tr td.selected.disabled:focus,\nfieldset[disabled] .datepicker table tr td.selected.disabled:hover:focus,\n.datepicker table tr td.selected.disabled.focus,\n.datepicker table tr td.selected:hover.disabled.focus,\n.datepicker table tr td.selected.disabled.disabled.focus,\n.datepicker table tr td.selected.disabled:hover.disabled.focus,\n.datepicker table tr td.selected[disabled].focus,\n.datepicker table tr td.selected:hover[disabled].focus,\n.datepicker table tr td.selected.disabled[disabled].focus,\n.datepicker table tr td.selected.disabled:hover[disabled].focus,\nfieldset[disabled] .datepicker table tr td.selected.focus,\nfieldset[disabled] .datepicker table tr td.selected:hover.focus,\nfieldset[disabled] .datepicker table tr td.selected.disabled.focus,\nfieldset[disabled] .datepicker table tr td.selected.disabled:hover.focus {\n background-color: #cfd2da;\n border-color: #6f7890;\n}\n.datepicker table tr td.selected .badge,\n.datepicker table tr td.selected:hover .badge,\n.datepicker table tr td.selected.disabled .badge,\n.datepicker table tr td.selected.disabled:hover .badge {\n color: #cfd2da;\n background-color: #fff;\n}\n.datepicker table tr td.active,\n.datepicker table tr td.active:hover,\n.datepicker table tr td.active.disabled,\n.datepicker table tr td.active.disabled:hover {\n color: #fff;\n background-color: #1CA8DD;\n border-color: #1997c6;\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.datepicker table tr td.active:focus,\n.datepicker table tr td.active:hover:focus,\n.datepicker table tr td.active.disabled:focus,\n.datepicker table tr td.active.disabled:hover:focus,\n.datepicker table tr td.active.focus,\n.datepicker table tr td.active:hover.focus,\n.datepicker table tr td.active.disabled.focus,\n.datepicker table tr td.active.disabled:hover.focus {\n color: #fff;\n background-color: #1686b0;\n border-color: #0b4155;\n}\n.datepicker table tr td.active:hover,\n.datepicker table tr td.active:hover:hover,\n.datepicker table tr td.active.disabled:hover,\n.datepicker table tr td.active.disabled:hover:hover {\n color: #fff;\n background-color: #1686b0;\n border-color: #126e90;\n}\n.datepicker table tr td.active:active,\n.datepicker table tr td.active:hover:active,\n.datepicker table tr td.active.disabled:active,\n.datepicker table tr td.active.disabled:hover:active,\n.datepicker table tr td.active.active,\n.datepicker table tr td.active:hover.active,\n.datepicker table tr td.active.disabled.active,\n.datepicker table tr td.active.disabled:hover.active,\n.open > .dropdown-toggle.datepicker table tr td.active,\n.open > .dropdown-toggle.datepicker table tr td.active:hover,\n.open > .dropdown-toggle.datepicker table tr td.active.disabled,\n.open > .dropdown-toggle.datepicker table tr td.active.disabled:hover {\n color: #fff;\n background-color: #1686b0;\n border-color: #126e90;\n}\n.datepicker table tr td.active:active:hover,\n.datepicker table tr td.active:hover:active:hover,\n.datepicker table tr td.active.disabled:active:hover,\n.datepicker table tr td.active.disabled:hover:active:hover,\n.datepicker table tr td.active.active:hover,\n.datepicker table tr td.active:hover.active:hover,\n.datepicker table tr td.active.disabled.active:hover,\n.datepicker table tr td.active.disabled:hover.active:hover,\n.open > .dropdown-toggle.datepicker table tr td.active:hover,\n.open > .dropdown-toggle.datepicker table tr td.active:hover:hover,\n.open > .dropdown-toggle.datepicker table tr td.active.disabled:hover,\n.open > .dropdown-toggle.datepicker table tr td.active.disabled:hover:hover,\n.datepicker table tr td.active:active:focus,\n.datepicker table tr td.active:hover:active:focus,\n.datepicker table tr td.active.disabled:active:focus,\n.datepicker table tr td.active.disabled:hover:active:focus,\n.datepicker table tr td.active.active:focus,\n.datepicker table tr td.active:hover.active:focus,\n.datepicker table tr td.active.disabled.active:focus,\n.datepicker table tr td.active.disabled:hover.active:focus,\n.open > .dropdown-toggle.datepicker table tr td.active:focus,\n.open > .dropdown-toggle.datepicker table tr td.active:hover:focus,\n.open > .dropdown-toggle.datepicker table tr td.active.disabled:focus,\n.open > .dropdown-toggle.datepicker table tr td.active.disabled:hover:focus,\n.datepicker table tr td.active:active.focus,\n.datepicker table tr td.active:hover:active.focus,\n.datepicker table tr td.active.disabled:active.focus,\n.datepicker table tr td.active.disabled:hover:active.focus,\n.datepicker table tr td.active.active.focus,\n.datepicker table tr td.active:hover.active.focus,\n.datepicker table tr td.active.disabled.active.focus,\n.datepicker table tr td.active.disabled:hover.active.focus,\n.open > .dropdown-toggle.datepicker table tr td.active.focus,\n.open > .dropdown-toggle.datepicker table tr td.active:hover.focus,\n.open > .dropdown-toggle.datepicker table tr td.active.disabled.focus,\n.open > .dropdown-toggle.datepicker table tr td.active.disabled:hover.focus {\n color: #fff;\n background-color: #126e90;\n border-color: #0b4155;\n}\n.datepicker table tr td.active:active,\n.datepicker table tr td.active:hover:active,\n.datepicker table tr td.active.disabled:active,\n.datepicker table tr td.active.disabled:hover:active,\n.datepicker table tr td.active.active,\n.datepicker table tr td.active:hover.active,\n.datepicker table tr td.active.disabled.active,\n.datepicker table tr td.active.disabled:hover.active,\n.open > .dropdown-toggle.datepicker table tr td.active,\n.open > .dropdown-toggle.datepicker table tr td.active:hover,\n.open > .dropdown-toggle.datepicker table tr td.active.disabled,\n.open > .dropdown-toggle.datepicker table tr td.active.disabled:hover {\n background-image: none;\n}\n.datepicker table tr td.active.disabled:hover,\n.datepicker table tr td.active:hover.disabled:hover,\n.datepicker table tr td.active.disabled.disabled:hover,\n.datepicker table tr td.active.disabled:hover.disabled:hover,\n.datepicker table tr td.active[disabled]:hover,\n.datepicker table tr td.active:hover[disabled]:hover,\n.datepicker table tr td.active.disabled[disabled]:hover,\n.datepicker table tr td.active.disabled:hover[disabled]:hover,\nfieldset[disabled] .datepicker table tr td.active:hover,\nfieldset[disabled] .datepicker table tr td.active:hover:hover,\nfieldset[disabled] .datepicker table tr td.active.disabled:hover,\nfieldset[disabled] .datepicker table tr td.active.disabled:hover:hover,\n.datepicker table tr td.active.disabled:focus,\n.datepicker table tr td.active:hover.disabled:focus,\n.datepicker table tr td.active.disabled.disabled:focus,\n.datepicker table tr td.active.disabled:hover.disabled:focus,\n.datepicker table tr td.active[disabled]:focus,\n.datepicker table tr td.active:hover[disabled]:focus,\n.datepicker table tr td.active.disabled[disabled]:focus,\n.datepicker table tr td.active.disabled:hover[disabled]:focus,\nfieldset[disabled] .datepicker table tr td.active:focus,\nfieldset[disabled] .datepicker table tr td.active:hover:focus,\nfieldset[disabled] .datepicker table tr td.active.disabled:focus,\nfieldset[disabled] .datepicker table tr td.active.disabled:hover:focus,\n.datepicker table tr td.active.disabled.focus,\n.datepicker table tr td.active:hover.disabled.focus,\n.datepicker table tr td.active.disabled.disabled.focus,\n.datepicker table tr td.active.disabled:hover.disabled.focus,\n.datepicker table tr td.active[disabled].focus,\n.datepicker table tr td.active:hover[disabled].focus,\n.datepicker table tr td.active.disabled[disabled].focus,\n.datepicker table tr td.active.disabled:hover[disabled].focus,\nfieldset[disabled] .datepicker table tr td.active.focus,\nfieldset[disabled] .datepicker table tr td.active:hover.focus,\nfieldset[disabled] .datepicker table tr td.active.disabled.focus,\nfieldset[disabled] .datepicker table tr td.active.disabled:hover.focus {\n background-color: #1CA8DD;\n border-color: #1997c6;\n}\n.datepicker table tr td.active .badge,\n.datepicker table tr td.active:hover .badge,\n.datepicker table tr td.active.disabled .badge,\n.datepicker table tr td.active.disabled:hover .badge {\n color: #1CA8DD;\n background-color: #fff;\n}\n.datepicker table tr td span {\n display: block;\n width: 23%;\n height: 54px;\n line-height: 54px;\n float: left;\n margin: 1%;\n cursor: pointer;\n border-radius: 4px;\n}\n.datepicker table tr td span:hover {\n background: #ffffff;\n}\n.datepicker table tr td span.disabled,\n.datepicker table tr td span.disabled:hover {\n background: none;\n color: #cfd2da;\n cursor: default;\n}\n.datepicker table tr td span.active,\n.datepicker table tr td span.active:hover,\n.datepicker table tr td span.active.disabled,\n.datepicker table tr td span.active.disabled:hover {\n color: #fff;\n background-color: #1CA8DD;\n border-color: #1997c6;\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.datepicker table tr td span.active:focus,\n.datepicker table tr td span.active:hover:focus,\n.datepicker table tr td span.active.disabled:focus,\n.datepicker table tr td span.active.disabled:hover:focus,\n.datepicker table tr td span.active.focus,\n.datepicker table tr td span.active:hover.focus,\n.datepicker table tr td span.active.disabled.focus,\n.datepicker table tr td span.active.disabled:hover.focus {\n color: #fff;\n background-color: #1686b0;\n border-color: #0b4155;\n}\n.datepicker table tr td span.active:hover,\n.datepicker table tr td span.active:hover:hover,\n.datepicker table tr td span.active.disabled:hover,\n.datepicker table tr td span.active.disabled:hover:hover {\n color: #fff;\n background-color: #1686b0;\n border-color: #126e90;\n}\n.datepicker table tr td span.active:active,\n.datepicker table tr td span.active:hover:active,\n.datepicker table tr td span.active.disabled:active,\n.datepicker table tr td span.active.disabled:hover:active,\n.datepicker table tr td span.active.active,\n.datepicker table tr td span.active:hover.active,\n.datepicker table tr td span.active.disabled.active,\n.datepicker table tr td span.active.disabled:hover.active,\n.open > .dropdown-toggle.datepicker table tr td span.active,\n.open > .dropdown-toggle.datepicker table tr td span.active:hover,\n.open > .dropdown-toggle.datepicker table tr td span.active.disabled,\n.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover {\n color: #fff;\n background-color: #1686b0;\n border-color: #126e90;\n}\n.datepicker table tr td span.active:active:hover,\n.datepicker table tr td span.active:hover:active:hover,\n.datepicker table tr td span.active.disabled:active:hover,\n.datepicker table tr td span.active.disabled:hover:active:hover,\n.datepicker table tr td span.active.active:hover,\n.datepicker table tr td span.active:hover.active:hover,\n.datepicker table tr td span.active.disabled.active:hover,\n.datepicker table tr td span.active.disabled:hover.active:hover,\n.open > .dropdown-toggle.datepicker table tr td span.active:hover,\n.open > .dropdown-toggle.datepicker table tr td span.active:hover:hover,\n.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover,\n.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover:hover,\n.datepicker table tr td span.active:active:focus,\n.datepicker table tr td span.active:hover:active:focus,\n.datepicker table tr td span.active.disabled:active:focus,\n.datepicker table tr td span.active.disabled:hover:active:focus,\n.datepicker table tr td span.active.active:focus,\n.datepicker table tr td span.active:hover.active:focus,\n.datepicker table tr td span.active.disabled.active:focus,\n.datepicker table tr td span.active.disabled:hover.active:focus,\n.open > .dropdown-toggle.datepicker table tr td span.active:focus,\n.open > .dropdown-toggle.datepicker table tr td span.active:hover:focus,\n.open > .dropdown-toggle.datepicker table tr td span.active.disabled:focus,\n.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover:focus,\n.datepicker table tr td span.active:active.focus,\n.datepicker table tr td span.active:hover:active.focus,\n.datepicker table tr td span.active.disabled:active.focus,\n.datepicker table tr td span.active.disabled:hover:active.focus,\n.datepicker table tr td span.active.active.focus,\n.datepicker table tr td span.active:hover.active.focus,\n.datepicker table tr td span.active.disabled.active.focus,\n.datepicker table tr td span.active.disabled:hover.active.focus,\n.open > .dropdown-toggle.datepicker table tr td span.active.focus,\n.open > .dropdown-toggle.datepicker table tr td span.active:hover.focus,\n.open > .dropdown-toggle.datepicker table tr td span.active.disabled.focus,\n.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover.focus {\n color: #fff;\n background-color: #126e90;\n border-color: #0b4155;\n}\n.datepicker table tr td span.active:active,\n.datepicker table tr td span.active:hover:active,\n.datepicker table tr td span.active.disabled:active,\n.datepicker table tr td span.active.disabled:hover:active,\n.datepicker table tr td span.active.active,\n.datepicker table tr td span.active:hover.active,\n.datepicker table tr td span.active.disabled.active,\n.datepicker table tr td span.active.disabled:hover.active,\n.open > .dropdown-toggle.datepicker table tr td span.active,\n.open > .dropdown-toggle.datepicker table tr td span.active:hover,\n.open > .dropdown-toggle.datepicker table tr td span.active.disabled,\n.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover {\n background-image: none;\n}\n.datepicker table tr td span.active.disabled:hover,\n.datepicker table tr td span.active:hover.disabled:hover,\n.datepicker table tr td span.active.disabled.disabled:hover,\n.datepicker table tr td span.active.disabled:hover.disabled:hover,\n.datepicker table tr td span.active[disabled]:hover,\n.datepicker table tr td span.active:hover[disabled]:hover,\n.datepicker table tr td span.active.disabled[disabled]:hover,\n.datepicker table tr td span.active.disabled:hover[disabled]:hover,\nfieldset[disabled] .datepicker table tr td span.active:hover,\nfieldset[disabled] .datepicker table tr td span.active:hover:hover,\nfieldset[disabled] .datepicker table tr td span.active.disabled:hover,\nfieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,\n.datepicker table tr td span.active.disabled:focus,\n.datepicker table tr td span.active:hover.disabled:focus,\n.datepicker table tr td span.active.disabled.disabled:focus,\n.datepicker table tr td span.active.disabled:hover.disabled:focus,\n.datepicker table tr td span.active[disabled]:focus,\n.datepicker table tr td span.active:hover[disabled]:focus,\n.datepicker table tr td span.active.disabled[disabled]:focus,\n.datepicker table tr td span.active.disabled:hover[disabled]:focus,\nfieldset[disabled] .datepicker table tr td span.active:focus,\nfieldset[disabled] .datepicker table tr td span.active:hover:focus,\nfieldset[disabled] .datepicker table tr td span.active.disabled:focus,\nfieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,\n.datepicker table tr td span.active.disabled.focus,\n.datepicker table tr td span.active:hover.disabled.focus,\n.datepicker table tr td span.active.disabled.disabled.focus,\n.datepicker table tr td span.active.disabled:hover.disabled.focus,\n.datepicker table tr td span.active[disabled].focus,\n.datepicker table tr td span.active:hover[disabled].focus,\n.datepicker table tr td span.active.disabled[disabled].focus,\n.datepicker table tr td span.active.disabled:hover[disabled].focus,\nfieldset[disabled] .datepicker table tr td span.active.focus,\nfieldset[disabled] .datepicker table tr td span.active:hover.focus,\nfieldset[disabled] .datepicker table tr td span.active.disabled.focus,\nfieldset[disabled] .datepicker table tr td span.active.disabled:hover.focus {\n background-color: #1CA8DD;\n border-color: #1997c6;\n}\n.datepicker table tr td span.active .badge,\n.datepicker table tr td span.active:hover .badge,\n.datepicker table tr td span.active.disabled .badge,\n.datepicker table tr td span.active.disabled:hover .badge {\n color: #1CA8DD;\n background-color: #fff;\n}\n.datepicker table tr td span.old,\n.datepicker table tr td span.new {\n color: #cfd2da;\n}\n.datepicker .datepicker-switch {\n width: 145px;\n}\n.datepicker thead tr:first-child th,\n.datepicker tfoot tr th {\n cursor: pointer;\n}\n.datepicker thead tr:first-child th:hover,\n.datepicker tfoot tr th:hover {\n background: #ffffff;\n}\n.datepicker .cw {\n font-size: 10px;\n width: 12px;\n padding: 0 2px 0 5px;\n vertical-align: middle;\n}\n.datepicker thead tr:first-child .cw {\n cursor: default;\n background-color: transparent;\n}\n.input-group.date .input-group-addon {\n cursor: pointer;\n}\n.input-daterange {\n width: 100%;\n}\n.input-daterange input {\n text-align: center;\n}\n.input-daterange input:first-child {\n border-radius: 3px 0 0 3px;\n}\n.input-daterange input:last-child {\n border-radius: 0 3px 3px 0;\n}\n.input-daterange .input-group-addon {\n width: auto;\n min-width: 16px;\n padding: 4px 5px;\n font-weight: normal;\n line-height: 1.5;\n text-align: center;\n text-shadow: 0 1px 0 #fff;\n vertical-align: middle;\n background-color: #4d5364;\n border: solid transparent;\n border-width: 1px 0;\n margin-left: -5px;\n margin-right: -5px;\n}\n.table .header {\n padding-right: 20px;\n font-weight: 300;\n}\n.table .header:hover {\n cursor: pointer;\n}\n.headerSortUp,\n.headerSortDown {\n white-space: nowrap;\n cursor: pointer;\n font-weight: 700 !important;\n color: #1CA8DD !important;\n border-bottom-color: #1CA8DD !important;\n}\n.headerSortUp:after,\n.headerSortDown:after {\n display: inline-block;\n width: 0;\n height: 0;\n content: \"\";\n margin-right: -10px;\n margin-bottom: 2px;\n margin-left: 5px;\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n}\n.headerSortUp:after {\n border-top: 4px solid;\n}\n.headerSortDown:after {\n border-bottom: 4px solid;\n}\n.nav-toggler {\n display: block;\n width: 40px;\n padding: 10px;\n font-size: 16px;\n color: #6f7890;\n background: transparent;\n border: 1px solid #e5e5e5;\n border-radius: 4px;\n}\n.nav-toggler:before {\n display: block;\n content: \"\";\n width: 100%;\n padding-bottom: .125em;\n border-top: .375em double;\n border-bottom: .125em solid;\n}\n.nav-toggler:hover,\n.nav-toggler:focus {\n color: #fff;\n background-color: #6f7890;\n}\n@media (min-width: 768px) {\n .nav-toggler-sm {\n display: none;\n }\n}\n@media (min-width: 992px) {\n .nav-toggler-md {\n display: none;\n }\n}\n@media (min-width: 1200px) {\n .nav-toggler-lg {\n display: none;\n }\n}\n@media (min-width: 480px) {\n .nav-toggleable-xs {\n display: block !important;\n height: auto !important;\n }\n}\n@media (min-width: 768px) {\n .nav-toggleable-sm {\n display: block !important;\n height: auto !important;\n }\n}\n@media (min-width: 992px) {\n .nav-toggleable-md {\n display: block !important;\n height: auto !important;\n }\n}\n.statlist {\n margin-bottom: 20px;\n padding-left: 0;\n list-style: none;\n border-bottom: 1px solid #434857;\n}\n.statlist-link {\n position: relative;\n display: block;\n padding: 10px;\n color: #fff;\n border-top: 1px solid #434857;\n}\n.statlist-progress {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n z-index: -1;\n display: block;\n background-color: #30343e;\n}\n.statcard-number {\n margin-top: 0;\n margin-bottom: 0;\n}\n.statcard-number .label {\n padding: .125em .5em;\n font-size: 50%;\n vertical-align: middle;\n}\n.statcard-desc {\n font-size: 85%;\n letter-spacing: .15em;\n color: #a9aebd;\n text-transform: uppercase;\n}\n.delta-indicator {\n display: inline-block;\n padding: .4em;\n font-size: 12px;\n vertical-align: middle;\n}\n.delta-positive {\n color: #1BC98E;\n}\n.delta-positive:after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: 4px dashed;\n border-top: 4px solid \\9;\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n content: \"\";\n border-top: 0;\n border-bottom: 4px solid;\n}\n.delta-negative {\n color: #E64759;\n}\n.delta-negative:after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: 4px dashed;\n border-top: 4px solid \\9;\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n content: \"\";\n}\n.statcard-primary,\n.statcard-success,\n.statcard-info,\n.statcard-warning,\n.statcard-danger {\n color: #fff;\n border-radius: 3px;\n}\n.statcard-primary .delta-negative,\n.statcard-success .delta-negative,\n.statcard-info .delta-negative,\n.statcard-warning .delta-negative,\n.statcard-danger .delta-negative,\n.statcard-primary .delta-positive,\n.statcard-success .delta-positive,\n.statcard-info .delta-positive,\n.statcard-warning .delta-positive,\n.statcard-danger .delta-positive,\n.statcard-primary .statcard-number,\n.statcard-success .statcard-number,\n.statcard-info .statcard-number,\n.statcard-warning .statcard-number,\n.statcard-danger .statcard-number {\n font-weight: normal;\n color: inherit;\n}\n.statcard-primary .statcard-desc,\n.statcard-success .statcard-desc,\n.statcard-info .statcard-desc,\n.statcard-warning .statcard-desc,\n.statcard-danger .statcard-desc {\n font-weight: normal;\n color: rgba(255, 255, 255, 0.65);\n}\n.statcard-primary .statcard-hr,\n.statcard-success .statcard-hr,\n.statcard-info .statcard-hr,\n.statcard-warning .statcard-hr,\n.statcard-danger .statcard-hr {\n margin-left: -20px;\n margin-right: -20px;\n border-top-color: rgba(255, 255, 255, 0.2);\n}\n.statcard-primary {\n background-color: #1CA8DD;\n}\n.statcard-success {\n background-color: #1BC98E;\n}\n.statcard-info {\n background-color: #9F86FF;\n}\n.statcard-warning {\n background-color: #E4D836;\n}\n.statcard-danger {\n background-color: #E64759;\n}\ncanvas {\n display: block;\n}\n.ex-graph {\n display: block;\n margin: 0 auto 15px;\n}\n.ex-line-graph {\n width: 100%;\n height: 273px;\n}\n.hr-divider {\n position: relative;\n font-size: 12px;\n line-height: 20px;\n text-align: center;\n text-transform: uppercase;\n}\n.hr-divider:before {\n position: absolute;\n top: 50%;\n display: block;\n content: \"\";\n width: 100%;\n height: 1px;\n background-color: #434857;\n}\n.hr-divider-content {\n position: relative;\n z-index: 2;\n display: inline-block;\n padding-left: 1em;\n padding-right: 1em;\n color: #6f7890;\n vertical-align: middle;\n background-color: #252830;\n}\n.hr-divider-heading {\n margin-top: 0;\n margin-bottom: 0;\n font-size: 100%;\n color: inherit;\n}\n.hr-divider-nav > li > a {\n padding-top: 4px;\n padding-bottom: 4px;\n font-size: 100%;\n}\n.hr-divider-nav > .active > a {\n font-weight: 300;\n background: transparent;\n}\n.custom-select {\n display: inline-block;\n padding: 6px 36px 6px 12px;\n font-size: 14px;\n line-height: 1.5;\n color: #cfd2da;\n vertical-align: middle;\n background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right 12px center;\n background-color: #434857;\n background-clip: padding-box;\n background-size: 8px 10px;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 4px;\n -webkit-appearance: none;\n appearance: none;\n background-image: none \\9;\n padding-right: 12px \\9;\n}\n.custom-select:focus {\n border-color: #fff;\n outline: 0;\n -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 255, 255, 0.6);\n box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 255, 255, 0.6);\n}\n.custom-select:disabled {\n background-color: #2d303a;\n cursor: not-allowed;\n}\n.custom-select-sm {\n padding-top: 3px;\n padding-bottom: 3px;\n}\n.custom-control > label {\n padding-left: 25px;\n font-weight: normal;\n}\n.custom-control.radio-inline,\n.custom-control.checkbox-inline {\n padding-left: 25px;\n}\n.custom-control.radio-inline > label,\n.custom-control.checkbox-inline > label {\n padding-left: 0;\n}\n.custom-control input {\n position: absolute;\n opacity: 0;\n z-index: -1;\n /* Put the input behind the label so it doesn't overlay text */\n}\n.custom-control-indicator {\n position: absolute;\n top: 1px;\n left: 0;\n display: block;\n width: 18px;\n height: 18px;\n text-align: center;\n background-color: #434857;\n background-clip: padding-box;\n background-size: 75% 75%;\n background-position: center;\n background-repeat: no-repeat;\n border: 1px solid rgba(0, 0, 0, 0.15);\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);\n user-select: none;\n}\n/* Hover state */\n/* Uncomment if you need it, but be aware of the sticky iOS states.\n.control:hover .control-indicator {\n background-color: #ccc;\n}\n*/\n/* Focus */\n.custom-control input:focus ~ .custom-control-indicator {\n box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9;\n}\n/* Checked state */\n.custom-control input:checked ~ .custom-control-indicator {\n background-color: #1CA8DD;\n border-color: #1CA8DD;\n box-shadow: none;\n}\n/* Active */\n.custom-control input:active ~ .custom-control-indicator {\n background-color: #5bc3ea;\n border-color: #5bc3ea;\n box-shadow: none;\n}\n.custom-control input:disabled ~ .custom-control-indicator {\n background-color: #2d303a;\n border-color: #2d303a;\n box-shadow: none;\n cursor: not-allowed;\n}\n/* Checkbox modifiers */\n.form-horizontal .custom-control-indicator {\n margin-top: 6px;\n}\n.custom-checkbox .custom-control-indicator {\n border-radius: .33rem;\n}\n.custom-checkbox input:checked ~ .custom-control-indicator {\n background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTYuNCwxTDUuNywxLjdMMi45LDQuNUwyLjEsMy43TDEuNCwzTDAsNC40bDAuNywwLjdsMS41LDEuNWwwLjcsMC43bDAuNy0wLjdsMy41LTMuNWwwLjctMC43TDYuNCwxTDYuNCwxeiINCgkvPg0KPC9zdmc+DQo=);\n}\n/* Radio modifiers */\n.custom-radio .custom-control-indicator {\n border-radius: 50%;\n}\n.custom-radio input:checked ~ .custom-control-indicator {\n background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTQsMUMyLjMsMSwxLDIuMywxLDRzMS4zLDMsMywzczMtMS4zLDMtM1M1LjcsMSw0LDF6Ii8+DQo8L3N2Zz4NCg==);\n}\n/* Alternately, use another character */\n.custom-control-x input:checked ~ .custom-control-indicator {\n background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iOHB4IiBoZWlnaHQ9IjhweCIgdmlld0JveD0iMCAwIDggOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgOCA4IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0xLjQsMEwwLDEuNGwwLjcsMC43bDEuOCwxLjhMMC43LDUuN0wwLDYuNGwxLjQsMS40bDAuNy0wLjdsMS44LTEuOGwxLjgsMS44bDAuNywwLjdsMS40LTEuNEw3LjEsNS43DQoJTDUuMywzLjlsMS44LTEuOGwwLjctMC43TDYuNCwwTDUuNywwLjdMMy45LDIuNUwyLjEsMC43QzIuMSwwLjcsMS40LDAsMS40LDB6Ii8+DQo8L3N2Zz4NCg==);\n}\n.custom-control-dash input:checked ~ .custom-control-indicator {\n background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iOHB4IiBoZWlnaHQ9IjhweCIgdmlld0JveD0iMCAwIDggOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgOCA4IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0wLDN2Mmg4VjNIMHoiLz4NCjwvc3ZnPg0K);\n}\n.custom-controls-inline .custom-control + .custom-control {\n margin-left: 20px;\n}\n.custom-control-stacked .custom-control:after {\n display: block;\n content: \"\";\n}\n.radio-inline,\n.checkbox-inline {\n position: relative;\n}\n.radio-inline label,\n.checkbox-inline label {\n margin-bottom: 0;\n cursor: pointer;\n}\n.form-control {\n transition: none;\n}\n.form-control:focus {\n color: #252830;\n background-color: #fff;\n box-shadow: none;\n}\n.input-with-icon {\n position: relative;\n display: inline-block;\n vertical-align: middle;\n}\n.input-with-icon > .form-control {\n padding-left: 30px;\n}\n.input-with-icon > .icon {\n position: absolute;\n top: 7px;\n left: 10px;\n color: #ccc;\n}\n.sidebar .nav-toggleable-sm.in,\n.sidebar .nav-toggleable-md.in {\n padding-bottom: 20px;\n}\n.sidebar-header {\n position: relative;\n padding-bottom: 20px;\n}\n.sidebar-header:before,\n.sidebar-header:after {\n content: \" \";\n display: table;\n}\n.sidebar-header:after {\n clear: both;\n}\n.sidebar-header:before,\n.sidebar-header:after {\n content: \" \";\n display: table;\n}\n.sidebar-header:after {\n clear: both;\n}\n.sidebar-toggler {\n position: absolute;\n top: 2px;\n right: 0;\n color: #434857;\n border-color: #434857;\n}\n.sidebar-toggler:hover,\n.sidebar-toggler:focus {\n color: #fff;\n background-color: #434857;\n}\n.sidebar-brand {\n float: left;\n font-size: 18px;\n line-height: 1;\n color: #51586a;\n}\n.sidebar-brand > img {\n height: 40px;\n}\n@media (min-width: 768px) {\n .sidebar-brand > img {\n height: 60px;\n }\n}\n.sidebar-brand:hover {\n color: #6f7890;\n text-decoration: none;\n}\n.sidebar-brand-icon {\n font-size: 40px;\n}\n.sidebar-form {\n position: relative;\n margin-bottom: 30px;\n}\n.sidebar-form .form-control {\n padding-left: 15px;\n padding-right: 15px;\n}\n.sidebar-form .btn-link {\n position: absolute;\n top: 0;\n right: 0;\n padding: 9px 10px;\n color: #b7bcc8;\n border: 0;\n line-height: 0;\n}\n.sidebar-form .btn-link .glyphicon {\n vertical-align: text-top;\n}\n@media (min-width: 768px) {\n .sidebar-nav {\n margin-right: 40px;\n }\n}\n.iconav {\n margin-top: -20px;\n margin-bottom: 30px;\n}\n@media (min-width: 768px) {\n .iconav {\n position: fixed;\n top: 0;\n bottom: 0;\n left: 0;\n width: 70px;\n margin-top: 0;\n margin-bottom: 0;\n background-color: #30343e;\n overflow-y: auto;\n -webkit-transform: translate3d(0, 0, 0);\n }\n}\n.iconav .tooltip {\n white-space: nowrap;\n}\n@media (min-width: 768px) {\n .with-iconav > .container,\n .with-iconav > .container-fluid {\n padding-left: 85px;\n }\n}\n.iconav-brand {\n display: block;\n padding-top: 10px;\n padding-bottom: 10px;\n font-size: 18px;\n line-height: 1;\n color: #6f7890;\n text-align: center;\n border-bottom: 0;\n background-color: #0f1013;\n}\n@media (min-width: 768px) {\n .iconav-brand {\n padding-top: 20px;\n padding-bottom: 20px;\n }\n}\n.iconav-brand:hover {\n color: #cfd2da;\n text-decoration: none;\n}\n.iconav-brand-icon {\n font-size: 30px;\n}\n.iconav-nav .label {\n position: absolute;\n top: 8px;\n right: 12px;\n z-index: 5;\n padding: .2em .4em;\n font-size: 11px;\n line-height: 1;\n border-radius: 10px;\n border: 2px solid #30343e;\n}\n.iconav-nav > li {\n float: none;\n display: inline-block;\n}\n@media (min-width: 768px) {\n .iconav-nav > li {\n display: block;\n }\n}\n.iconav-nav > li > a {\n position: relative;\n padding: 10px 12px;\n font-size: 18px;\n color: #51586a;\n text-align: center;\n border-radius: 0;\n}\n@media (min-width: 768px) {\n .iconav-nav > li > a {\n padding: 15px;\n }\n}\n.iconav-nav > li + li {\n margin-left: -3px;\n}\n.iconav-nav > li + li > a {\n border-left: 1px solid #252830;\n}\n@media (min-width: 768px) {\n .iconav-nav > li + li {\n margin-left: 0;\n }\n .iconav-nav > li + li > a {\n border-top: 1px solid #252830;\n border-right: 0;\n }\n}\n.iconav-nav > li.active > a,\n.iconav-nav > li.active > a:focus,\n.iconav-nav > li.active > a:hover,\n.iconav-nav > li.active > a:active {\n color: #6f7890;\n background-color: #252830;\n}\n.iconav-nav > li.active > a .label,\n.iconav-nav > li.active > a:focus .label,\n.iconav-nav > li.active > a:hover .label,\n.iconav-nav > li.active > a:active .label {\n border-color: #252830;\n}\n.iconav-nav > li > a > img {\n width: 26px;\n margin: 0 auto;\n}\n.iconav-nav-label {\n font-size: 11px;\n}\n@media (max-width: 768px) {\n .iconav-slider {\n overflow: auto;\n -webkit-overflow-scrolling: touch;\n white-space: nowrap;\n }\n}\n.dashhead:before,\n.dashhead:after {\n content: \" \";\n display: table;\n}\n.dashhead:after {\n clear: both;\n}\n.dashhead:before,\n.dashhead:after {\n content: \" \";\n display: table;\n}\n.dashhead:after {\n clear: both;\n}\n@media (min-width: 768px) {\n .dashhead-titles {\n float: left;\n }\n}\n.dashhead-title {\n margin-top: 0;\n}\n.dashhead-subtitle {\n margin-top: 0;\n margin-bottom: 5px;\n font-weight: normal;\n font-size: 85%;\n color: #434857;\n letter-spacing: 1px;\n text-transform: uppercase;\n}\n.dashhead-toolbar {\n margin-left: 0;\n}\n.dashhead-toolbar .input-with-icon {\n width: 100%;\n margin-bottom: 10px;\n margin-left: 0;\n}\n@media (min-width: 768px) {\n .dashhead-toolbar {\n float: right;\n margin-top: 12px;\n }\n .dashhead-toolbar .input-with-icon {\n width: 180px;\n margin-bottom: 0;\n }\n}\n.dashhead-toolbar-divider {\n float: left;\n width: 1px;\n height: 34px;\n margin-left: 10px;\n margin-right: 10px;\n background-color: #434857;\n}\n.dashhead-toolbar-item {\n float: left;\n}\n@media (max-width: 768px) {\n .dashhead-toolbar-item.btn-group-halves {\n width: 100%;\n }\n .dashhead-toolbar-item.btn-group-halves .btn {\n width: 50%;\n margin-left: 0;\n }\n .dashhead-toolbar-item.btn-group-thirds {\n width: 100%;\n }\n .dashhead-toolbar-item.btn-group-thirds .btn {\n width: 33%;\n margin-left: 0;\n }\n .dashhead-toolbar-item.btn-group-thirds .btn:last-child {\n width: 34%;\n }\n .dashhead-toolbar-item.btn-group-fourths {\n width: 100%;\n }\n .dashhead-toolbar-item.btn-group-fourths .btn {\n width: 25%;\n margin-left: 0;\n }\n}\n.btn-pill {\n padding-left: 1.25em;\n padding-right: 1.25em;\n border-radius: 1000em;\n}\n.btn-square {\n border-radius: 0;\n}\n.btn-default-outline {\n color: #51586a;\n background-color: transparent;\n border-color: #51586a;\n}\n.btn-default-outline:focus,\n.btn-default-outline.focus,\n.btn-default-outline:hover,\n.btn-default-outline:active,\n.btn-default-outline.active,\n.open > .dropdown-toggle.btn-default-outline {\n color: #fff;\n background-color: #51586a;\n box-shadow: none;\n}\n.btn-default-outline.disabled,\n.btn-default-outline[disabled],\nfieldset[disabled] .btn-default-outline,\n.btn-default-outline.disabled:hover,\n.btn-default-outline[disabled]:hover,\nfieldset[disabled] .btn-default-outline:hover,\n.btn-default-outline.disabled:focus,\n.btn-default-outline[disabled]:focus,\nfieldset[disabled] .btn-default-outline:focus,\n.btn-default-outline.disabled.focus,\n.btn-default-outline[disabled].focus,\nfieldset[disabled] .btn-default-outline.focus,\n.btn-default-outline.disabled:active,\n.btn-default-outline[disabled]:active,\nfieldset[disabled] .btn-default-outline:active,\n.btn-default-outline.disabled.active,\n.btn-default-outline[disabled].active,\nfieldset[disabled] .btn-default-outline.active {\n border-color: #51586a;\n}\n.btn-default-outline .badge {\n color: #fff;\n background-color: #51586a;\n}\n.btn-primary-outline {\n color: #1997c6;\n background-color: transparent;\n border-color: #1997c6;\n}\n.btn-primary-outline:focus,\n.btn-primary-outline.focus,\n.btn-primary-outline:hover,\n.btn-primary-outline:active,\n.btn-primary-outline.active,\n.open > .dropdown-toggle.btn-primary-outline {\n color: #fff;\n background-color: #1997c6;\n box-shadow: none;\n}\n.btn-primary-outline.disabled,\n.btn-primary-outline[disabled],\nfieldset[disabled] .btn-primary-outline,\n.btn-primary-outline.disabled:hover,\n.btn-primary-outline[disabled]:hover,\nfieldset[disabled] .btn-primary-outline:hover,\n.btn-primary-outline.disabled:focus,\n.btn-primary-outline[disabled]:focus,\nfieldset[disabled] .btn-primary-outline:focus,\n.btn-primary-outline.disabled.focus,\n.btn-primary-outline[disabled].focus,\nfieldset[disabled] .btn-primary-outline.focus,\n.btn-primary-outline.disabled:active,\n.btn-primary-outline[disabled]:active,\nfieldset[disabled] .btn-primary-outline:active,\n.btn-primary-outline.disabled.active,\n.btn-primary-outline[disabled].active,\nfieldset[disabled] .btn-primary-outline.active {\n border-color: #1997c6;\n}\n.btn-primary-outline .badge {\n color: #fff;\n background-color: #1997c6;\n}\n.btn-success-outline {\n color: #18b37e;\n background-color: transparent;\n border-color: #18b37e;\n}\n.btn-success-outline:focus,\n.btn-success-outline.focus,\n.btn-success-outline:hover,\n.btn-success-outline:active,\n.btn-success-outline.active,\n.open > .dropdown-toggle.btn-success-outline {\n color: #fff;\n background-color: #18b37e;\n box-shadow: none;\n}\n.btn-success-outline.disabled,\n.btn-success-outline[disabled],\nfieldset[disabled] .btn-success-outline,\n.btn-success-outline.disabled:hover,\n.btn-success-outline[disabled]:hover,\nfieldset[disabled] .btn-success-outline:hover,\n.btn-success-outline.disabled:focus,\n.btn-success-outline[disabled]:focus,\nfieldset[disabled] .btn-success-outline:focus,\n.btn-success-outline.disabled.focus,\n.btn-success-outline[disabled].focus,\nfieldset[disabled] .btn-success-outline.focus,\n.btn-success-outline.disabled:active,\n.btn-success-outline[disabled]:active,\nfieldset[disabled] .btn-success-outline:active,\n.btn-success-outline.disabled.active,\n.btn-success-outline[disabled].active,\nfieldset[disabled] .btn-success-outline.active {\n border-color: #18b37e;\n}\n.btn-success-outline .badge {\n color: #fff;\n background-color: #18b37e;\n}\n.btn-info-outline {\n color: #8b6cff;\n background-color: transparent;\n border-color: #8b6cff;\n}\n.btn-info-outline:focus,\n.btn-info-outline.focus,\n.btn-info-outline:hover,\n.btn-info-outline:active,\n.btn-info-outline.active,\n.open > .dropdown-toggle.btn-info-outline {\n color: #fff;\n background-color: #8b6cff;\n box-shadow: none;\n}\n.btn-info-outline.disabled,\n.btn-info-outline[disabled],\nfieldset[disabled] .btn-info-outline,\n.btn-info-outline.disabled:hover,\n.btn-info-outline[disabled]:hover,\nfieldset[disabled] .btn-info-outline:hover,\n.btn-info-outline.disabled:focus,\n.btn-info-outline[disabled]:focus,\nfieldset[disabled] .btn-info-outline:focus,\n.btn-info-outline.disabled.focus,\n.btn-info-outline[disabled].focus,\nfieldset[disabled] .btn-info-outline.focus,\n.btn-info-outline.disabled:active,\n.btn-info-outline[disabled]:active,\nfieldset[disabled] .btn-info-outline:active,\n.btn-info-outline.disabled.active,\n.btn-info-outline[disabled].active,\nfieldset[disabled] .btn-info-outline.active {\n border-color: #8b6cff;\n}\n.btn-info-outline .badge {\n color: #fff;\n background-color: #8b6cff;\n}\n.btn-warning-outline {\n color: #e1d420;\n background-color: transparent;\n border-color: #e1d420;\n}\n.btn-warning-outline:focus,\n.btn-warning-outline.focus,\n.btn-warning-outline:hover,\n.btn-warning-outline:active,\n.btn-warning-outline.active,\n.open > .dropdown-toggle.btn-warning-outline {\n color: #fff;\n background-color: #e1d420;\n box-shadow: none;\n}\n.btn-warning-outline.disabled,\n.btn-warning-outline[disabled],\nfieldset[disabled] .btn-warning-outline,\n.btn-warning-outline.disabled:hover,\n.btn-warning-outline[disabled]:hover,\nfieldset[disabled] .btn-warning-outline:hover,\n.btn-warning-outline.disabled:focus,\n.btn-warning-outline[disabled]:focus,\nfieldset[disabled] .btn-warning-outline:focus,\n.btn-warning-outline.disabled.focus,\n.btn-warning-outline[disabled].focus,\nfieldset[disabled] .btn-warning-outline.focus,\n.btn-warning-outline.disabled:active,\n.btn-warning-outline[disabled]:active,\nfieldset[disabled] .btn-warning-outline:active,\n.btn-warning-outline.disabled.active,\n.btn-warning-outline[disabled].active,\nfieldset[disabled] .btn-warning-outline.active {\n border-color: #e1d420;\n}\n.btn-warning-outline .badge {\n color: #fff;\n background-color: #e1d420;\n}\n.btn-danger-outline {\n color: #e33145;\n background-color: transparent;\n border-color: #e33145;\n}\n.btn-danger-outline:focus,\n.btn-danger-outline.focus,\n.btn-danger-outline:hover,\n.btn-danger-outline:active,\n.btn-danger-outline.active,\n.open > .dropdown-toggle.btn-danger-outline {\n color: #fff;\n background-color: #e33145;\n box-shadow: none;\n}\n.btn-danger-outline.disabled,\n.btn-danger-outline[disabled],\nfieldset[disabled] .btn-danger-outline,\n.btn-danger-outline.disabled:hover,\n.btn-danger-outline[disabled]:hover,\nfieldset[disabled] .btn-danger-outline:hover,\n.btn-danger-outline.disabled:focus,\n.btn-danger-outline[disabled]:focus,\nfieldset[disabled] .btn-danger-outline:focus,\n.btn-danger-outline.disabled.focus,\n.btn-danger-outline[disabled].focus,\nfieldset[disabled] .btn-danger-outline.focus,\n.btn-danger-outline.disabled:active,\n.btn-danger-outline[disabled]:active,\nfieldset[disabled] .btn-danger-outline:active,\n.btn-danger-outline.disabled.active,\n.btn-danger-outline[disabled].active,\nfieldset[disabled] .btn-danger-outline.active {\n border-color: #e33145;\n}\n.btn-danger-outline .badge {\n color: #fff;\n background-color: #e33145;\n}\n.custom-select {\n background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEX////////////////1pQ5zAAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC);\n}\n.custom-select:focus {\n color: #252830;\n background-color: #fff;\n background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC);\n box-shadow: none;\n}\n.custom-checkbox input:checked ~ .custom-control-indicator {\n background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSItMzAxIDM5MyA4IDgiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgLTMwMSAzOTMgOCA4IiB4bWw6c3BhY2U9InByZXNlcnZlIj48cGF0aCBmaWxsPSIjMjUyODMwIiBkPSJNLTI5NC42LDM5NGwtMC43LDAuN2wtMi44LDIuOGwtMC44LTAuOGwtMC43LTAuN2wtMS40LDEuNGwwLjcsMC43bDEuNSwxLjVsMC43LDAuN2wwLjctMC43bDMuNS0zLjVsMC43LTAuN0MtMjkzLjEsMzk1LjQtMjk0LjYsMzk0LTI5NC42LDM5NHoiLz48L3N2Zz4=);\n}\n.custom-radio input:checked ~ .custom-control-indicator {\n background-clip: border-box;\n background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSItMzAxIDM5MyA4IDgiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgLTMwMSAzOTMgOCA4IiB4bWw6c3BhY2U9InByZXNlcnZlIj48cGF0aCBmaWxsPSIjMjUyODMwIiBkPSJNLTI5NywzOTRjLTEuNywwLTMsMS4zLTMsM3MxLjMsMywzLDNzMy0xLjMsMy0zUy0yOTUuMywzOTQtMjk3LDM5NHoiLz48L3N2Zz4=);\n}\n.popover,\n.popover-title,\n.popover h1,\n.popover h2,\n.popover h3,\n.popover h4,\n.popover h5,\n.popover h6,\n.popover .h1,\n.popover .h2,\n.popover .h3,\n.popover .h4,\n.popover .h5,\n.popover .h6,\n.popover small,\n.popover .small,\n.modal,\n.modal-title,\n.modal h1,\n.modal h2,\n.modal h3,\n.modal h4,\n.modal h5,\n.modal h6,\n.modal .h1,\n.modal .h2,\n.modal .h3,\n.modal .h4,\n.modal .h5,\n.modal .h6,\n.modal small,\n.modal .small {\n color: #51586a;\n}\n.popover .form-control,\n.modal .form-control {\n color: #51586a;\n border-color: rgba(0, 0, 0, 0.2);\n background: #fff;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.popover .form-control:focus,\n.modal .form-control:focus {\n border-color: #1CA8DD;\n outline: 0;\n -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(28, 168, 221, 0.6);\n box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(28, 168, 221, 0.6);\n}\n/* simple contextual color overrides */\n.nav > li > a {\n color: #cfd2da;\n}\n.nav > li > a:hover,\n.nav > li > a:focus {\n color: #fff;\n}\n.form-control {\n box-shadow: none;\n}\n.has-success .form-control,\n.has-warning .form-control,\n.has-error .form-control,\n.has-success .form-control:focus,\n.has-warning .form-control:focus,\n.has-error .form-control:focus {\n border-color: #434857;\n box-shadow: none;\n}\n.has-success .input-group-addon,\n.has-warning .input-group-addon,\n.has-error .input-group-addon {\n color: #fff;\n background-color: #4d5364;\n border-color: transparent;\n}\n","/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS and IE text size adjust after device orientation change,\n// without disabling user zoom.\n//\n\nhtml {\n font-family: sans-serif; // 1\n -ms-text-size-adjust: 100%; // 2\n -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block; // 1\n vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n background-color: transparent;\n}\n\n//\n// Improve readability of focused elements when they are also in an\n// active/hover state.\n//\n\na:active,\na:hover {\n outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n//\n\nabbr[title] {\n border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n background: #ff0;\n color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsup {\n top: -0.5em;\n}\n\nsub {\n bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n box-sizing: content-box;\n height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n// Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit; // 1\n font: inherit; // 2\n margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n// and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n// `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button; // 2\n cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box; // 1\n padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome.\n//\n\ninput[type=\"search\"] {\n -webkit-appearance: textfield; // 1\n box-sizing: content-box; //2\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n border: 0; // 1\n padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ntd,\nth {\n padding: 0;\n}\n","/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n *,\n *:before,\n *:after {\n background: transparent !important;\n color: #000 !important; // Black prints faster: h5bp.com/s\n box-shadow: none !important;\n text-shadow: none !important;\n }\n\n a,\n a:visited {\n text-decoration: underline;\n }\n\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n\n // Don't show links that are fragment identifiers,\n // or use the `javascript:` pseudo protocol\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n\n thead {\n display: table-header-group; // h5bp.com/t\n }\n\n tr,\n img {\n page-break-inside: avoid;\n }\n\n img {\n max-width: 100% !important;\n }\n\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n\n h2,\n h3 {\n page-break-after: avoid;\n }\n\n // Bootstrap specific changes start\n\n // Bootstrap components\n .navbar {\n display: none;\n }\n .btn,\n .dropup > .btn {\n > .caret {\n border-top-color: #000 !important;\n }\n }\n .label {\n border: 1px solid #000;\n }\n\n .table {\n border-collapse: collapse !important;\n\n td,\n th {\n background-color: #fff !important;\n }\n }\n .table-bordered {\n th,\n td {\n border: 1px solid #ddd !important;\n }\n }\n\n // Bootstrap specific changes end\n}\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n .box-sizing(border-box);\n}\n*:before,\n*:after {\n .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n font-family: @font-family-base;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @text-color;\n background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n\n// Links\n\na {\n color: @link-color;\n text-decoration: none;\n\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: @link-hover-decoration;\n }\n\n &:focus {\n .tab-focus();\n }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n margin: 0;\n}\n\n\n// Images\n\nimg {\n vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n padding: @thumbnail-padding;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(all .2s ease-in-out);\n\n // Keep them at most 100% wide\n .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n margin-top: @line-height-computed;\n margin-bottom: @line-height-computed;\n border: 0;\n border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0,0,0,0);\n border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n &:active,\n &:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n }\n}\n\n\n// iOS \"clickable elements\" fix for role=\"button\"\n//\n// Fixes \"clickability\" issue (and more generally, the firing of events such as focus as well)\n// for traditionally non-focusable elements with role=\"button\"\n// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n\n[role=\"button\"] {\n cursor: pointer;\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// WebKit-style focus\n\n.tab-focus() {\n // Default\n outline: thin dotted;\n // WebKit\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n.img-responsive(@display: block) {\n display: @display;\n max-width: 100%; // Part 1: Set a maximum relative to the parent\n height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n background-image: url(\"@{file-1x}\");\n\n @media\n only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and ( min--moz-device-pixel-ratio: 2),\n only screen and ( -o-min-device-pixel-ratio: 2/1),\n only screen and ( min-device-pixel-ratio: 2),\n only screen and ( min-resolution: 192dpi),\n only screen and ( min-resolution: 2dppx) {\n background-image: url(\"@{file-2x}\");\n background-size: @width-1x @height-1x;\n }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n font-family: @headings-font-family;\n font-weight: @headings-font-weight;\n line-height: @headings-line-height;\n color: @headings-color;\n\n small,\n .small {\n font-weight: normal;\n line-height: 1;\n color: @headings-small-color;\n }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n margin-top: @line-height-computed;\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 65%;\n }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n margin-top: (@line-height-computed / 2);\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 75%;\n }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n margin-bottom: @line-height-computed;\n font-size: floor((@font-size-base * 1.15));\n font-weight: 300;\n line-height: 1.4;\n\n @media (min-width: @screen-sm-min) {\n font-size: (@font-size-base * 1.5);\n }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: (12px small font / 14px base font) * 100% = about 85%\nsmall,\n.small {\n font-size: floor((100% * @font-size-small / @font-size-base));\n}\n\nmark,\n.mark {\n background-color: @state-warning-bg;\n padding: .2em;\n}\n\n// Alignment\n.text-left { text-align: left; }\n.text-right { text-align: right; }\n.text-center { text-align: center; }\n.text-justify { text-align: justify; }\n.text-nowrap { white-space: nowrap; }\n\n// Transformation\n.text-lowercase { text-transform: lowercase; }\n.text-uppercase { text-transform: uppercase; }\n.text-capitalize { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n color: @text-muted;\n}\n.text-primary {\n .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n // Given the contrast here, this is the only class to have its color inverted\n // automatically.\n color: #fff;\n .bg-variant(@brand-primary);\n}\n.bg-success {\n .bg-variant(@state-success-bg);\n}\n.bg-info {\n .bg-variant(@state-info-bg);\n}\n.bg-warning {\n .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n padding-bottom: ((@line-height-computed / 2) - 1);\n margin: (@line-height-computed * 2) 0 @line-height-computed;\n border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n margin-top: 0;\n margin-bottom: (@line-height-computed / 2);\n ul,\n ol {\n margin-bottom: 0;\n }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n .list-unstyled();\n margin-left: -5px;\n\n > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n }\n}\n\n// Description Lists\ndl {\n margin-top: 0; // Remove browser default\n margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n line-height: @line-height-base;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n dd {\n &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n }\n\n @media (min-width: @dl-horizontal-breakpoint) {\n dt {\n float: left;\n width: (@dl-horizontal-offset - 20);\n clear: left;\n text-align: right;\n .text-overflow();\n }\n dd {\n margin-left: @dl-horizontal-offset;\n }\n }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n font-size: 90%;\n .text-uppercase();\n}\n\n// Blockquotes\nblockquote {\n padding: (@line-height-computed / 2) @line-height-computed;\n margin: 0 0 @line-height-computed;\n font-size: @blockquote-font-size;\n border-left: 5px solid @blockquote-border-color;\n\n p,\n ul,\n ol {\n &:last-child {\n margin-bottom: 0;\n }\n }\n\n // Note: Deprecated small and .small as of v3.1.0\n // Context: https://github.com/twbs/bootstrap/issues/11660\n footer,\n small,\n .small {\n display: block;\n font-size: 80%; // back to default font-size\n line-height: @line-height-base;\n color: @blockquote-small-color;\n\n &:before {\n content: '\\2014 \\00A0'; // em dash, nbsp\n }\n }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid @blockquote-border-color;\n border-left: 0;\n text-align: right;\n\n // Account for citation\n footer,\n small,\n .small {\n &:before { content: ''; }\n &:after {\n content: '\\00A0 \\2014'; // nbsp, em dash\n }\n }\n}\n\n// Addresses\naddress {\n margin-bottom: @line-height-computed;\n font-style: normal;\n line-height: @line-height-base;\n}\n","// Typography\n\n.text-emphasis-variant(@color) {\n color: @color;\n a&:hover,\n a&:focus {\n color: darken(@color, 10%);\n }\n}\n","// Contextual backgrounds\n\n.bg-variant(@color) {\n background-color: @color;\n a&:hover,\n a&:focus {\n background-color: darken(@color, 10%);\n }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n.text-overflow() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: @code-color;\n background-color: @code-bg;\n border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: @kbd-color;\n background-color: @kbd-bg;\n border-radius: @border-radius-small;\n box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n\n kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n box-shadow: none;\n }\n}\n\n// Blocks of code\npre {\n display: block;\n padding: ((@line-height-computed - 1) / 2);\n margin: 0 0 (@line-height-computed / 2);\n font-size: (@font-size-base - 1); // 14px to 13px\n line-height: @line-height-base;\n word-break: break-all;\n word-wrap: break-word;\n color: @pre-color;\n background-color: @pre-bg;\n border: 1px solid @pre-border-color;\n border-radius: @border-radius-base;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: @pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n background-color: @table-bg;\n}\ncaption {\n padding-top: @table-cell-padding;\n padding-bottom: @table-cell-padding;\n color: @text-muted;\n text-align: left;\n}\nth {\n text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: @line-height-computed;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-cell-padding;\n line-height: @line-height-base;\n vertical-align: top;\n border-top: 1px solid @table-border-color;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid @table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @table-border-color;\n }\n\n // Nesting\n .table {\n background-color: @body-bg;\n }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-condensed-cell-padding;\n }\n }\n }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n border: 1px solid @table-border-color;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 1px solid @table-border-color;\n }\n }\n }\n > thead > tr {\n > th,\n > td {\n border-bottom-width: 2px;\n }\n }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n > tbody > tr:nth-of-type(odd) {\n background-color: @table-bg-accent;\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n > tbody > tr:hover {\n background-color: @table-bg-hover;\n }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-column;\n}\ntable {\n td,\n th {\n &[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-cell;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n overflow-x: auto;\n min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n\n @media screen and (max-width: @screen-xs-max) {\n width: 100%;\n margin-bottom: (@line-height-computed * 0.75);\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid @table-border-color;\n\n // Tighten up spacing\n > .table {\n margin-bottom: 0;\n\n // Ensure the content doesn't wrap\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n white-space: nowrap;\n }\n }\n }\n }\n\n // Special overrides for the bordered tables\n > .table-bordered {\n border: 0;\n\n // Nuke the appropriate borders so that the parent can handle them\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n\n // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n // chances are there will be only one `tr` in a `thead` and that would\n // remove the border altogether.\n > tbody,\n > tfoot {\n > tr:last-child {\n > th,\n > td {\n border-bottom: 0;\n }\n }\n }\n\n }\n }\n}\n","// Tables\n\n.table-row-variant(@state; @background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table > thead > tr,\n .table > tbody > tr,\n .table > tfoot > tr {\n > td.@{state},\n > th.@{state},\n &.@{state} > td,\n &.@{state} > th {\n background-color: @background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover > tbody > tr {\n > td.@{state}:hover,\n > th.@{state}:hover,\n &.@{state}:hover > td,\n &:hover > .@{state},\n &.@{state}:hover > th {\n background-color: darken(@background, 5%);\n }\n }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n // so we reset that to ensure it behaves more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359.\n min-width: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: @line-height-computed;\n font-size: (@font-size-base * 1.5);\n line-height: inherit;\n color: @legend-color;\n border: 0;\n border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n display: inline-block;\n max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n margin-bottom: 5px;\n font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9; // IE8-9\n line-height: normal;\n}\n\ninput[type=\"file\"] {\n display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n .tab-focus();\n}\n\n// Adjust output element\noutput {\n display: block;\n padding-top: (@padding-base-vertical + 1);\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n display: block;\n width: 100%;\n height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n background-color: @input-bg;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid @input-border;\n border-radius: @input-border-radius; // Note: This has no effect on