summaryrefslogtreecommitdiff
path: root/www/crm/wp-content/plugins/civicrm/civicrm/ext/api4/lib
diff options
context:
space:
mode:
Diffstat (limited to 'www/crm/wp-content/plugins/civicrm/civicrm/ext/api4/lib')
-rw-r--r--www/crm/wp-content/plugins/civicrm/civicrm/ext/api4/lib/js-yaml.js3919
-rw-r--r--www/crm/wp-content/plugins/civicrm/civicrm/ext/api4/lib/shoreditch/bootstrap.css1
-rw-r--r--www/crm/wp-content/plugins/civicrm/civicrm/ext/api4/lib/shoreditch/dropdown.js165
3 files changed, 4085 insertions, 0 deletions
diff --git a/www/crm/wp-content/plugins/civicrm/civicrm/ext/api4/lib/js-yaml.js b/www/crm/wp-content/plugins/civicrm/civicrm/ext/api4/lib/js-yaml.js
new file mode 100644
index 00000000..0f8df899
--- /dev/null
+++ b/www/crm/wp-content/plugins/civicrm/civicrm/ext/api4/lib/js-yaml.js
@@ -0,0 +1,3919 @@
+/* js-yaml 3.12.1 https://github.com/nodeca/js-yaml */(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.jsyaml = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
+'use strict';
+
+
+var loader = require('./js-yaml/loader');
+var dumper = require('./js-yaml/dumper');
+
+
+function deprecated(name) {
+ return function () {
+ throw new Error('Function ' + name + ' is deprecated and cannot be used.');
+ };
+}
+
+
+module.exports.Type = require('./js-yaml/type');
+module.exports.Schema = require('./js-yaml/schema');
+module.exports.FAILSAFE_SCHEMA = require('./js-yaml/schema/failsafe');
+module.exports.JSON_SCHEMA = require('./js-yaml/schema/json');
+module.exports.CORE_SCHEMA = require('./js-yaml/schema/core');
+module.exports.DEFAULT_SAFE_SCHEMA = require('./js-yaml/schema/default_safe');
+module.exports.DEFAULT_FULL_SCHEMA = require('./js-yaml/schema/default_full');
+module.exports.load = loader.load;
+module.exports.loadAll = loader.loadAll;
+module.exports.safeLoad = loader.safeLoad;
+module.exports.safeLoadAll = loader.safeLoadAll;
+module.exports.dump = dumper.dump;
+module.exports.safeDump = dumper.safeDump;
+module.exports.YAMLException = require('./js-yaml/exception');
+
+// Deprecated schema names from JS-YAML 2.0.x
+module.exports.MINIMAL_SCHEMA = require('./js-yaml/schema/failsafe');
+module.exports.SAFE_SCHEMA = require('./js-yaml/schema/default_safe');
+module.exports.DEFAULT_SCHEMA = require('./js-yaml/schema/default_full');
+
+// Deprecated functions from JS-YAML 1.x.x
+module.exports.scan = deprecated('scan');
+module.exports.parse = deprecated('parse');
+module.exports.compose = deprecated('compose');
+module.exports.addConstructor = deprecated('addConstructor');
+
+},{"./js-yaml/dumper":3,"./js-yaml/exception":4,"./js-yaml/loader":5,"./js-yaml/schema":7,"./js-yaml/schema/core":8,"./js-yaml/schema/default_full":9,"./js-yaml/schema/default_safe":10,"./js-yaml/schema/failsafe":11,"./js-yaml/schema/json":12,"./js-yaml/type":13}],2:[function(require,module,exports){
+'use strict';
+
+
+function isNothing(subject) {
+ return (typeof subject === 'undefined') || (subject === null);
+}
+
+
+function isObject(subject) {
+ return (typeof subject === 'object') && (subject !== null);
+}
+
+
+function toArray(sequence) {
+ if (Array.isArray(sequence)) return sequence;
+ else if (isNothing(sequence)) return [];
+
+ return [ sequence ];
+}
+
+
+function extend(target, source) {
+ var index, length, key, sourceKeys;
+
+ if (source) {
+ sourceKeys = Object.keys(source);
+
+ for (index = 0, length = sourceKeys.length; index < length; index += 1) {
+ key = sourceKeys[index];
+ target[key] = source[key];
+ }
+ }
+
+ return target;
+}
+
+
+function repeat(string, count) {
+ var result = '', cycle;
+
+ for (cycle = 0; cycle < count; cycle += 1) {
+ result += string;
+ }
+
+ return result;
+}
+
+
+function isNegativeZero(number) {
+ return (number === 0) && (Number.NEGATIVE_INFINITY === 1 / number);
+}
+
+
+module.exports.isNothing = isNothing;
+module.exports.isObject = isObject;
+module.exports.toArray = toArray;
+module.exports.repeat = repeat;
+module.exports.isNegativeZero = isNegativeZero;
+module.exports.extend = extend;
+
+},{}],3:[function(require,module,exports){
+'use strict';
+
+/*eslint-disable no-use-before-define*/
+
+var common = require('./common');
+var YAMLException = require('./exception');
+var DEFAULT_FULL_SCHEMA = require('./schema/default_full');
+var DEFAULT_SAFE_SCHEMA = require('./schema/default_safe');
+
+var _toString = Object.prototype.toString;
+var _hasOwnProperty = Object.prototype.hasOwnProperty;
+
+var CHAR_TAB = 0x09; /* Tab */
+var CHAR_LINE_FEED = 0x0A; /* LF */
+var CHAR_SPACE = 0x20; /* Space */
+var CHAR_EXCLAMATION = 0x21; /* ! */
+var CHAR_DOUBLE_QUOTE = 0x22; /* " */
+var CHAR_SHARP = 0x23; /* # */
+var CHAR_PERCENT = 0x25; /* % */
+var CHAR_AMPERSAND = 0x26; /* & */
+var CHAR_SINGLE_QUOTE = 0x27; /* ' */
+var CHAR_ASTERISK = 0x2A; /* * */
+var CHAR_COMMA = 0x2C; /* , */
+var CHAR_MINUS = 0x2D; /* - */
+var CHAR_COLON = 0x3A; /* : */
+var CHAR_GREATER_THAN = 0x3E; /* > */
+var CHAR_QUESTION = 0x3F; /* ? */
+var CHAR_COMMERCIAL_AT = 0x40; /* @ */
+var CHAR_LEFT_SQUARE_BRACKET = 0x5B; /* [ */
+var CHAR_RIGHT_SQUARE_BRACKET = 0x5D; /* ] */
+var CHAR_GRAVE_ACCENT = 0x60; /* ` */
+var CHAR_LEFT_CURLY_BRACKET = 0x7B; /* { */
+var CHAR_VERTICAL_LINE = 0x7C; /* | */
+var CHAR_RIGHT_CURLY_BRACKET = 0x7D; /* } */
+
+var ESCAPE_SEQUENCES = {};
+
+ESCAPE_SEQUENCES[0x00] = '\\0';
+ESCAPE_SEQUENCES[0x07] = '\\a';
+ESCAPE_SEQUENCES[0x08] = '\\b';
+ESCAPE_SEQUENCES[0x09] = '\\t';
+ESCAPE_SEQUENCES[0x0A] = '\\n';
+ESCAPE_SEQUENCES[0x0B] = '\\v';
+ESCAPE_SEQUENCES[0x0C] = '\\f';
+ESCAPE_SEQUENCES[0x0D] = '\\r';
+ESCAPE_SEQUENCES[0x1B] = '\\e';
+ESCAPE_SEQUENCES[0x22] = '\\"';
+ESCAPE_SEQUENCES[0x5C] = '\\\\';
+ESCAPE_SEQUENCES[0x85] = '\\N';
+ESCAPE_SEQUENCES[0xA0] = '\\_';
+ESCAPE_SEQUENCES[0x2028] = '\\L';
+ESCAPE_SEQUENCES[0x2029] = '\\P';
+
+var DEPRECATED_BOOLEANS_SYNTAX = [
+ 'y', 'Y', 'yes', 'Yes', 'YES', 'on', 'On', 'ON',
+ 'n', 'N', 'no', 'No', 'NO', 'off', 'Off', 'OFF'
+];
+
+function compileStyleMap(schema, map) {
+ var result, keys, index, length, tag, style, type;
+
+ if (map === null) return {};
+
+ result = {};
+ keys = Object.keys(map);
+
+ for (index = 0, length = keys.length; index < length; index += 1) {
+ tag = keys[index];
+ style = String(map[tag]);
+
+ if (tag.slice(0, 2) === '!!') {
+ tag = 'tag:yaml.org,2002:' + tag.slice(2);
+ }
+ type = schema.compiledTypeMap['fallback'][tag];
+
+ if (type && _hasOwnProperty.call(type.styleAliases, style)) {
+ style = type.styleAliases[style];
+ }
+
+ result[tag] = style;
+ }
+
+ return result;
+}
+
+function encodeHex(character) {
+ var string, handle, length;
+
+ string = character.toString(16).toUpperCase();
+
+ if (character <= 0xFF) {
+ handle = 'x';
+ length = 2;
+ } else if (character <= 0xFFFF) {
+ handle = 'u';
+ length = 4;
+ } else if (character <= 0xFFFFFFFF) {
+ handle = 'U';
+ length = 8;
+ } else {
+ throw new YAMLException('code point within a string may not be greater than 0xFFFFFFFF');
+ }
+
+ return '\\' + handle + common.repeat('0', length - string.length) + string;
+}
+
+function State(options) {
+ this.schema = options['schema'] || DEFAULT_FULL_SCHEMA;
+ this.indent = Math.max(1, (options['indent'] || 2));
+ this.noArrayIndent = options['noArrayIndent'] || false;
+ this.skipInvalid = options['skipInvalid'] || false;
+ this.flowLevel = (common.isNothing(options['flowLevel']) ? -1 : options['flowLevel']);
+ this.styleMap = compileStyleMap(this.schema, options['styles'] || null);
+ this.sortKeys = options['sortKeys'] || false;
+ this.lineWidth = options['lineWidth'] || 80;
+ this.noRefs = options['noRefs'] || false;
+ this.noCompatMode = options['noCompatMode'] || false;
+ this.condenseFlow = options['condenseFlow'] || false;
+
+ this.implicitTypes = this.schema.compiledImplicit;
+ this.explicitTypes = this.schema.compiledExplicit;
+
+ this.tag = null;
+ this.result = '';
+
+ this.duplicates = [];
+ this.usedDuplicates = null;
+}
+
+// Indents every line in a string. Empty lines (\n only) are not indented.
+function indentString(string, spaces) {
+ var ind = common.repeat(' ', spaces),
+ position = 0,
+ next = -1,
+ result = '',
+ line,
+ length = string.length;
+
+ while (position < length) {
+ next = string.indexOf('\n', position);
+ if (next === -1) {
+ line = string.slice(position);
+ position = length;
+ } else {
+ line = string.slice(position, next + 1);
+ position = next + 1;
+ }
+
+ if (line.length && line !== '\n') result += ind;
+
+ result += line;
+ }
+
+ return result;
+}
+
+function generateNextLine(state, level) {
+ return '\n' + common.repeat(' ', state.indent * level);
+}
+
+function testImplicitResolving(state, str) {
+ var index, length, type;
+
+ for (index = 0, length = state.implicitTypes.length; index < length; index += 1) {
+ type = state.implicitTypes[index];
+
+ if (type.resolve(str)) {
+ return true;
+ }
+ }
+
+ return false;
+}
+
+// [33] s-white ::= s-space | s-tab
+function isWhitespace(c) {
+ return c === CHAR_SPACE || c === CHAR_TAB;
+}
+
+// Returns true if the character can be printed without escaping.
+// From YAML 1.2: "any allowed characters known to be non-printable
+// should also be escaped. [However,] This isn’t mandatory"
+// Derived from nb-char - \t - #x85 - #xA0 - #x2028 - #x2029.
+function isPrintable(c) {
+ return (0x00020 <= c && c <= 0x00007E)
+ || ((0x000A1 <= c && c <= 0x00D7FF) && c !== 0x2028 && c !== 0x2029)
+ || ((0x0E000 <= c && c <= 0x00FFFD) && c !== 0xFEFF /* BOM */)
+ || (0x10000 <= c && c <= 0x10FFFF);
+}
+
+// Simplified test for values allowed after the first character in plain style.
+function isPlainSafe(c) {
+ // Uses a subset of nb-char - c-flow-indicator - ":" - "#"
+ // where nb-char ::= c-printable - b-char - c-byte-order-mark.
+ return isPrintable(c) && c !== 0xFEFF
+ // - c-flow-indicator
+ && c !== CHAR_COMMA
+ && c !== CHAR_LEFT_SQUARE_BRACKET
+ && c !== CHAR_RIGHT_SQUARE_BRACKET
+ && c !== CHAR_LEFT_CURLY_BRACKET
+ && c !== CHAR_RIGHT_CURLY_BRACKET
+ // - ":" - "#"
+ && c !== CHAR_COLON
+ && c !== CHAR_SHARP;
+}
+
+// Simplified test for values allowed as the first character in plain style.
+function isPlainSafeFirst(c) {
+ // Uses a subset of ns-char - c-indicator
+ // where ns-char = nb-char - s-white.
+ return isPrintable(c) && c !== 0xFEFF
+ && !isWhitespace(c) // - s-white
+ // - (c-indicator ::=
+ // “-” | “?” | “:” | “,” | “[” | “]” | “{” | “}”
+ && c !== CHAR_MINUS
+ && c !== CHAR_QUESTION
+ && c !== CHAR_COLON
+ && c !== CHAR_COMMA
+ && c !== CHAR_LEFT_SQUARE_BRACKET
+ && c !== CHAR_RIGHT_SQUARE_BRACKET
+ && c !== CHAR_LEFT_CURLY_BRACKET
+ && c !== CHAR_RIGHT_CURLY_BRACKET
+ // | “#” | “&” | “*” | “!” | “|” | “>” | “'” | “"”
+ && c !== CHAR_SHARP
+ && c !== CHAR_AMPERSAND
+ && c !== CHAR_ASTERISK
+ && c !== CHAR_EXCLAMATION
+ && c !== CHAR_VERTICAL_LINE
+ && c !== CHAR_GREATER_THAN
+ && c !== CHAR_SINGLE_QUOTE
+ && c !== CHAR_DOUBLE_QUOTE
+ // | “%” | “@” | “`”)
+ && c !== CHAR_PERCENT
+ && c !== CHAR_COMMERCIAL_AT
+ && c !== CHAR_GRAVE_ACCENT;
+}
+
+// Determines whether block indentation indicator is required.
+function needIndentIndicator(string) {
+ var leadingSpaceRe = /^\n* /;
+ return leadingSpaceRe.test(string);
+}
+
+var STYLE_PLAIN = 1,
+ STYLE_SINGLE = 2,
+ STYLE_LITERAL = 3,
+ STYLE_FOLDED = 4,
+ STYLE_DOUBLE = 5;
+
+// Determines which scalar styles are possible and returns the preferred style.
+// lineWidth = -1 => no limit.
+// Pre-conditions: str.length > 0.
+// Post-conditions:
+// STYLE_PLAIN or STYLE_SINGLE => no \n are in the string.
+// STYLE_LITERAL => no lines are suitable for folding (or lineWidth is -1).
+// STYLE_FOLDED => a line > lineWidth and can be folded (and lineWidth != -1).
+function chooseScalarStyle(string, singleLineOnly, indentPerLevel, lineWidth, testAmbiguousType) {
+ var i;
+ var char;
+ var hasLineBreak = false;
+ var hasFoldableLine = false; // only checked if shouldTrackWidth
+ var shouldTrackWidth = lineWidth !== -1;
+ var previousLineBreak = -1; // count the first line correctly
+ var plain = isPlainSafeFirst(string.charCodeAt(0))
+ && !isWhitespace(string.charCodeAt(string.length - 1));
+
+ if (singleLineOnly) {
+ // Case: no block styles.
+ // Check for disallowed characters to rule out plain and single.
+ for (i = 0; i < string.length; i++) {
+ char = string.charCodeAt(i);
+ if (!isPrintable(char)) {
+ return STYLE_DOUBLE;
+ }
+ plain = plain && isPlainSafe(char);
+ }
+ } else {
+ // Case: block styles permitted.
+ for (i = 0; i < string.length; i++) {
+ char = string.charCodeAt(i);
+ if (char === CHAR_LINE_FEED) {
+ hasLineBreak = true;
+ // Check if any line can be folded.
+ if (shouldTrackWidth) {
+ hasFoldableLine = hasFoldableLine ||
+ // Foldable line = too long, and not more-indented.
+ (i - previousLineBreak - 1 > lineWidth &&
+ string[previousLineBreak + 1] !== ' ');
+ previousLineBreak = i;
+ }
+ } else if (!isPrintable(char)) {
+ return STYLE_DOUBLE;
+ }
+ plain = plain && isPlainSafe(char);
+ }
+ // in case the end is missing a \n
+ hasFoldableLine = hasFoldableLine || (shouldTrackWidth &&
+ (i - previousLineBreak - 1 > lineWidth &&
+ string[previousLineBreak + 1] !== ' '));
+ }
+ // Although every style can represent \n without escaping, prefer block styles
+ // for multiline, since they're more readable and they don't add empty lines.
+ // Also prefer folding a super-long line.
+ if (!hasLineBreak && !hasFoldableLine) {
+ // Strings interpretable as another type have to be quoted;
+ // e.g. the string 'true' vs. the boolean true.
+ return plain && !testAmbiguousType(string)
+ ? STYLE_PLAIN : STYLE_SINGLE;
+ }
+ // Edge case: block indentation indicator can only have one digit.
+ if (indentPerLevel > 9 && needIndentIndicator(string)) {
+ return STYLE_DOUBLE;
+ }
+ // At this point we know block styles are valid.
+ // Prefer literal style unless we want to fold.
+ return hasFoldableLine ? STYLE_FOLDED : STYLE_LITERAL;
+}
+
+// Note: line breaking/folding is implemented for only the folded style.
+// NB. We drop the last trailing newline (if any) of a returned block scalar
+// since the dumper adds its own newline. This always works:
+// • No ending newline => unaffected; already using strip "-" chomping.
+// • Ending newline => removed then restored.
+// Importantly, this keeps the "+" chomp indicator from gaining an extra line.
+function writeScalar(state, string, level, iskey) {
+ state.dump = (function () {
+ if (string.length === 0) {
+ return "''";
+ }
+ if (!state.noCompatMode &&
+ DEPRECATED_BOOLEANS_SYNTAX.indexOf(string) !== -1) {
+ return "'" + string + "'";
+ }
+
+ var indent = state.indent * Math.max(1, level); // no 0-indent scalars
+ // As indentation gets deeper, let the width decrease monotonically
+ // to the lower bound min(state.lineWidth, 40).
+ // Note that this implies
+ // state.lineWidth ≤ 40 + state.indent: width is fixed at the lower bound.
+ // state.lineWidth > 40 + state.indent: width decreases until the lower bound.
+ // This behaves better than a constant minimum width which disallows narrower options,
+ // or an indent threshold which causes the width to suddenly increase.
+ var lineWidth = state.lineWidth === -1
+ ? -1 : Math.max(Math.min(state.lineWidth, 40), state.lineWidth - indent);
+
+ // Without knowing if keys are implicit/explicit, assume implicit for safety.
+ var singleLineOnly = iskey
+ // No block styles in flow mode.
+ || (state.flowLevel > -1 && level >= state.flowLevel);
+ function testAmbiguity(string) {
+ return testImplicitResolving(state, string);
+ }
+
+ switch (chooseScalarStyle(string, singleLineOnly, state.indent, lineWidth, testAmbiguity)) {
+ case STYLE_PLAIN:
+ return string;
+ case STYLE_SINGLE:
+ return "'" + string.replace(/'/g, "''") + "'";
+ case STYLE_LITERAL:
+ return '|' + blockHeader(string, state.indent)
+ + dropEndingNewline(indentString(string, indent));
+ case STYLE_FOLDED:
+ return '>' + blockHeader(string, state.indent)
+ + dropEndingNewline(indentString(foldString(string, lineWidth), indent));
+ case STYLE_DOUBLE:
+ return '"' + escapeString(string, lineWidth) + '"';
+ default:
+ throw new YAMLException('impossible error: invalid scalar style');
+ }
+ }());
+}
+
+// Pre-conditions: string is valid for a block scalar, 1 <= indentPerLevel <= 9.
+function blockHeader(string, indentPerLevel) {
+ var indentIndicator = needIndentIndicator(string) ? String(indentPerLevel) : '';
+
+ // note the special case: the string '\n' counts as a "trailing" empty line.
+ var clip = string[string.length - 1] === '\n';
+ var keep = clip && (string[string.length - 2] === '\n' || string === '\n');
+ var chomp = keep ? '+' : (clip ? '' : '-');
+
+ return indentIndicator + chomp + '\n';
+}
+
+// (See the note for writeScalar.)
+function dropEndingNewline(string) {
+ return string[string.length - 1] === '\n' ? string.slice(0, -1) : string;
+}
+
+// Note: a long line without a suitable break point will exceed the width limit.
+// Pre-conditions: every char in str isPrintable, str.length > 0, width > 0.
+function foldString(string, width) {
+ // In folded style, $k$ consecutive newlines output as $k+1$ newlines—
+ // unless they're before or after a more-indented line, or at the very
+ // beginning or end, in which case $k$ maps to $k$.
+ // Therefore, parse each chunk as newline(s) followed by a content line.
+ var lineRe = /(\n+)([^\n]*)/g;
+
+ // first line (possibly an empty line)
+ var result = (function () {
+ var nextLF = string.indexOf('\n');
+ nextLF = nextLF !== -1 ? nextLF : string.length;
+ lineRe.lastIndex = nextLF;
+ return foldLine(string.slice(0, nextLF), width);
+ }());
+ // If we haven't reached the first content line yet, don't add an extra \n.
+ var prevMoreIndented = string[0] === '\n' || string[0] === ' ';
+ var moreIndented;
+
+ // rest of the lines
+ var match;
+ while ((match = lineRe.exec(string))) {
+ var prefix = match[1], line = match[2];
+ moreIndented = (line[0] === ' ');
+ result += prefix
+ + (!prevMoreIndented && !moreIndented && line !== ''
+ ? '\n' : '')
+ + foldLine(line, width);
+ prevMoreIndented = moreIndented;
+ }
+
+ return result;
+}
+
+// Greedy line breaking.
+// Picks the longest line under the limit each time,
+// otherwise settles for the shortest line over the limit.
+// NB. More-indented lines *cannot* be folded, as that would add an extra \n.
+function foldLine(line, width) {
+ if (line === '' || line[0] === ' ') return line;
+
+ // Since a more-indented line adds a \n, breaks can't be followed by a space.
+ var breakRe = / [^ ]/g; // note: the match index will always be <= length-2.
+ var match;
+ // start is an inclusive index. end, curr, and next are exclusive.
+ var start = 0, end, curr = 0, next = 0;
+ var result = '';
+
+ // Invariants: 0 <= start <= length-1.
+ // 0 <= curr <= next <= max(0, length-2). curr - start <= width.
+ // Inside the loop:
+ // A match implies length >= 2, so curr and next are <= length-2.
+ while ((match = breakRe.exec(line))) {
+ next = match.index;
+ // maintain invariant: curr - start <= width
+ if (next - start > width) {
+ end = (curr > start) ? curr : next; // derive end <= length-2
+ result += '\n' + line.slice(start, end);
+ // skip the space that was output as \n
+ start = end + 1; // derive start <= length-1
+ }
+ curr = next;
+ }
+
+ // By the invariants, start <= length-1, so there is something left over.
+ // It is either the whole string or a part starting from non-whitespace.
+ result += '\n';
+ // Insert a break if the remainder is too long and there is a break available.
+ if (line.length - start > width && curr > start) {
+ result += line.slice(start, curr) + '\n' + line.slice(curr + 1);
+ } else {
+ result += line.slice(start);
+ }
+
+ return result.slice(1); // drop extra \n joiner
+}
+
+// Escapes a double-quoted string.
+function escapeString(string) {
+ var result = '';
+ var char, nextChar;
+ var escapeSeq;
+
+ for (var i = 0; i < string.length; i++) {
+ char = string.charCodeAt(i);
+ // Check for surrogate pairs (reference Unicode 3.0 section "3.7 Surrogates").
+ if (char >= 0xD800 && char <= 0xDBFF/* high surrogate */) {
+ nextChar = string.charCodeAt(i + 1);
+ if (nextChar >= 0xDC00 && nextChar <= 0xDFFF/* low surrogate */) {
+ // Combine the surrogate pair and store it escaped.
+ result += encodeHex((char - 0xD800) * 0x400 + nextChar - 0xDC00 + 0x10000);
+ // Advance index one extra since we already used that char here.
+ i++; continue;
+ }
+ }
+ escapeSeq = ESCAPE_SEQUENCES[char];
+ result += !escapeSeq && isPrintable(char)
+ ? string[i]
+ : escapeSeq || encodeHex(char);
+ }
+
+ return result;
+}
+
+function writeFlowSequence(state, level, object) {
+ var _result = '',
+ _tag = state.tag,
+ index,
+ length;
+
+ for (index = 0, length = object.length; index < length; index += 1) {
+ // Write only valid elements.
+ if (writeNode(state, level, object[index], false, false)) {
+ if (index !== 0) _result += ',' + (!state.condenseFlow ? ' ' : '');
+ _result += state.dump;
+ }
+ }
+
+ state.tag = _tag;
+ state.dump = '[' + _result + ']';
+}
+
+function writeBlockSequence(state, level, object, compact) {
+ var _result = '',
+ _tag = state.tag,
+ index,
+ length;
+
+ for (index = 0, length = object.length; index < length; index += 1) {
+ // Write only valid elements.
+ if (writeNode(state, level + 1, object[index], true, true)) {
+ if (!compact || index !== 0) {
+ _result += generateNextLine(state, level);
+ }
+
+ if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) {
+ _result += '-';
+ } else {
+ _result += '- ';
+ }
+
+ _result += state.dump;
+ }
+ }
+
+ state.tag = _tag;
+ state.dump = _result || '[]'; // Empty sequence if no valid values.
+}
+
+function writeFlowMapping(state, level, object) {
+ var _result = '',
+ _tag = state.tag,
+ objectKeyList = Object.keys(object),
+ index,
+ length,
+ objectKey,
+ objectValue,
+ pairBuffer;
+
+ for (index = 0, length = objectKeyList.length; index < length; index += 1) {
+ pairBuffer = state.condenseFlow ? '"' : '';
+
+ if (index !== 0) pairBuffer += ', ';
+
+ objectKey = objectKeyList[index];
+ objectValue = object[objectKey];
+
+ if (!writeNode(state, level, objectKey, false, false)) {
+ continue; // Skip this pair because of invalid key;
+ }
+
+ if (state.dump.length > 1024) pairBuffer += '? ';
+
+ pairBuffer += state.dump + (state.condenseFlow ? '"' : '') + ':' + (state.condenseFlow ? '' : ' ');
+
+ if (!writeNode(state, level, objectValue, false, false)) {
+ continue; // Skip this pair because of invalid value.
+ }
+
+ pairBuffer += state.dump;
+
+ // Both key and value are valid.
+ _result += pairBuffer;
+ }
+
+ state.tag = _tag;
+ state.dump = '{' + _result + '}';
+}
+
+function writeBlockMapping(state, level, object, compact) {
+ var _result = '',
+ _tag = state.tag,
+ objectKeyList = Object.keys(object),
+ index,
+ length,
+ objectKey,
+ objectValue,
+ explicitPair,
+ pairBuffer;
+
+ // Allow sorting keys so that the output file is deterministic
+ if (state.sortKeys === true) {
+ // Default sorting
+ objectKeyList.sort();
+ } else if (typeof state.sortKeys === 'function') {
+ // Custom sort function
+ objectKeyList.sort(state.sortKeys);
+ } else if (state.sortKeys) {
+ // Something is wrong
+ throw new YAMLException('sortKeys must be a boolean or a function');
+ }
+
+ for (index = 0, length = objectKeyList.length; index < length; index += 1) {
+ pairBuffer = '';
+
+ if (!compact || index !== 0) {
+ pairBuffer += generateNextLine(state, level);
+ }
+
+ objectKey = objectKeyList[index];
+ objectValue = object[objectKey];
+
+ if (!writeNode(state, level + 1, objectKey, true, true, true)) {
+ continue; // Skip this pair because of invalid key.
+ }
+
+ explicitPair = (state.tag !== null && state.tag !== '?') ||
+ (state.dump && state.dump.length > 1024);
+
+ if (explicitPair) {
+ if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) {
+ pairBuffer += '?';
+ } else {
+ pairBuffer += '? ';
+ }
+ }
+
+ pairBuffer += state.dump;
+
+ if (explicitPair) {
+ pairBuffer += generateNextLine(state, level);
+ }
+
+ if (!writeNode(state, level + 1, objectValue, true, explicitPair)) {
+ continue; // Skip this pair because of invalid value.
+ }
+
+ if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) {
+ pairBuffer += ':';
+ } else {
+ pairBuffer += ': ';
+ }
+
+ pairBuffer += state.dump;
+
+ // Both key and value are valid.
+ _result += pairBuffer;
+ }
+
+ state.tag = _tag;
+ state.dump = _result || '{}'; // Empty mapping if no valid pairs.
+}
+
+function detectType(state, object, explicit) {
+ var _result, typeList, index, length, type, style;
+
+ typeList = explicit ? state.explicitTypes : state.implicitTypes;
+
+ for (index = 0, length = typeList.length; index < length; index += 1) {
+ type = typeList[index];
+
+ if ((type.instanceOf || type.predicate) &&
+ (!type.instanceOf || ((typeof object === 'object') && (object instanceof type.instanceOf))) &&
+ (!type.predicate || type.predicate(object))) {
+
+ state.tag = explicit ? type.tag : '?';
+
+ if (type.represent) {
+ style = state.styleMap[type.tag] || type.defaultStyle;
+
+ if (_toString.call(type.represent) === '[object Function]') {
+ _result = type.represent(object, style);
+ } else if (_hasOwnProperty.call(type.represent, style)) {
+ _result = type.represent[style](object, style);
+ } else {
+ throw new YAMLException('!<' + type.tag + '> tag resolver accepts not "' + style + '" style');
+ }
+
+ state.dump = _result;
+ }
+
+ return true;
+ }
+ }
+
+ return false;
+}
+
+// Serializes `object` and writes it to global `result`.
+// Returns true on success, or false on invalid object.
+//
+function writeNode(state, level, object, block, compact, iskey) {
+ state.tag = null;
+ state.dump = object;
+
+ if (!detectType(state, object, false)) {
+ detectType(state, object, true);
+ }
+
+ var type = _toString.call(state.dump);
+
+ if (block) {
+ block = (state.flowLevel < 0 || state.flowLevel > level);
+ }
+
+ var objectOrArray = type === '[object Object]' || type === '[object Array]',
+ duplicateIndex,
+ duplicate;
+
+ if (objectOrArray) {
+ duplicateIndex = state.duplicates.indexOf(object);
+ duplicate = duplicateIndex !== -1;
+ }
+
+ if ((state.tag !== null && state.tag !== '?') || duplicate || (state.indent !== 2 && level > 0)) {
+ compact = false;
+ }
+
+ if (duplicate && state.usedDuplicates[duplicateIndex]) {
+ state.dump = '*ref_' + duplicateIndex;
+ } else {
+ if (objectOrArray && duplicate && !state.usedDuplicates[duplicateIndex]) {
+ state.usedDuplicates[duplicateIndex] = true;
+ }
+ if (type === '[object Object]') {
+ if (block && (Object.keys(state.dump).length !== 0)) {
+ writeBlockMapping(state, level, state.dump, compact);
+ if (duplicate) {
+ state.dump = '&ref_' + duplicateIndex + state.dump;
+ }
+ } else {
+ writeFlowMapping(state, level, state.dump);
+ if (duplicate) {
+ state.dump = '&ref_' + duplicateIndex + ' ' + state.dump;
+ }
+ }
+ } else if (type === '[object Array]') {
+ var arrayLevel = (state.noArrayIndent) ? level - 1 : level;
+ if (block && (state.dump.length !== 0)) {
+ writeBlockSequence(state, arrayLevel, state.dump, compact);
+ if (duplicate) {
+ state.dump = '&ref_' + duplicateIndex + state.dump;
+ }
+ } else {
+ writeFlowSequence(state, arrayLevel, state.dump);
+ if (duplicate) {
+ state.dump = '&ref_' + duplicateIndex + ' ' + state.dump;
+ }
+ }
+ } else if (type === '[object String]') {
+ if (state.tag !== '?') {
+ writeScalar(state, state.dump, level, iskey);
+ }
+ } else {
+ if (state.skipInvalid) return false;
+ throw new YAMLException('unacceptable kind of an object to dump ' + type);
+ }
+
+ if (state.tag !== null && state.tag !== '?') {
+ state.dump = '!<' + state.tag + '> ' + state.dump;
+ }
+ }
+
+ return true;
+}
+
+function getDuplicateReferences(object, state) {
+ var objects = [],
+ duplicatesIndexes = [],
+ index,
+ length;
+
+ inspectNode(object, objects, duplicatesIndexes);
+
+ for (index = 0, length = duplicatesIndexes.length; index < length; index += 1) {
+ state.duplicates.push(objects[duplicatesIndexes[index]]);
+ }
+ state.usedDuplicates = new Array(length);
+}
+
+function inspectNode(object, objects, duplicatesIndexes) {
+ var objectKeyList,
+ index,
+ length;
+
+ if (object !== null && typeof object === 'object') {
+ index = objects.indexOf(object);
+ if (index !== -1) {
+ if (duplicatesIndexes.indexOf(index) === -1) {
+ duplicatesIndexes.push(index);
+ }
+ } else {
+ objects.push(object);
+
+ if (Array.isArray(object)) {
+ for (index = 0, length = object.length; index < length; index += 1) {
+ inspectNode(object[index], objects, duplicatesIndexes);
+ }
+ } else {
+ objectKeyList = Object.keys(object);
+
+ for (index = 0, length = objectKeyList.length; index < length; index += 1) {
+ inspectNode(object[objectKeyList[index]], objects, duplicatesIndexes);
+ }
+ }
+ }
+ }
+}
+
+function dump(input, options) {
+ options = options || {};
+
+ var state = new State(options);
+
+ if (!state.noRefs) getDuplicateReferences(input, state);
+
+ if (writeNode(state, 0, input, true, true)) return state.dump + '\n';
+
+ return '';
+}
+
+function safeDump(input, options) {
+ return dump(input, common.extend({ schema: DEFAULT_SAFE_SCHEMA }, options));
+}
+
+module.exports.dump = dump;
+module.exports.safeDump = safeDump;
+
+},{"./common":2,"./exception":4,"./schema/default_full":9,"./schema/default_safe":10}],4:[function(require,module,exports){
+// YAML error class. http://stackoverflow.com/questions/8458984
+//
+'use strict';
+
+function YAMLException(reason, mark) {
+ // Super constructor
+ Error.call(this);
+
+ this.name = 'YAMLException';
+ this.reason = reason;
+ this.mark = mark;
+ this.message = (this.reason || '(unknown reason)') + (this.mark ? ' ' + this.mark.toString() : '');
+
+ // Include stack trace in error object
+ if (Error.captureStackTrace) {
+ // Chrome and NodeJS
+ Error.captureStackTrace(this, this.constructor);
+ } else {
+ // FF, IE 10+ and Safari 6+. Fallback for others
+ this.stack = (new Error()).stack || '';
+ }
+}
+
+
+// Inherit from Error
+YAMLException.prototype = Object.create(Error.prototype);
+YAMLException.prototype.constructor = YAMLException;
+
+
+YAMLException.prototype.toString = function toString(compact) {
+ var result = this.name + ': ';
+
+ result += this.reason || '(unknown reason)';
+
+ if (!compact && this.mark) {
+ result += ' ' + this.mark.toString();
+ }
+
+ return result;
+};
+
+
+module.exports = YAMLException;
+
+},{}],5:[function(require,module,exports){
+'use strict';
+
+/*eslint-disable max-len,no-use-before-define*/
+
+var common = require('./common');
+var YAMLException = require('./exception');
+var Mark = require('./mark');
+var DEFAULT_SAFE_SCHEMA = require('./schema/default_safe');
+var DEFAULT_FULL_SCHEMA = require('./schema/default_full');
+
+
+var _hasOwnProperty = Object.prototype.hasOwnProperty;
+
+
+var CONTEXT_FLOW_IN = 1;
+var CONTEXT_FLOW_OUT = 2;
+var CONTEXT_BLOCK_IN = 3;
+var CONTEXT_BLOCK_OUT = 4;
+
+
+var CHOMPING_CLIP = 1;
+var CHOMPING_STRIP = 2;
+var CHOMPING_KEEP = 3;
+
+
+var PATTERN_NON_PRINTABLE = /[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x84\x86-\x9F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/;
+var PATTERN_NON_ASCII_LINE_BREAKS = /[\x85\u2028\u2029]/;
+var PATTERN_FLOW_INDICATORS = /[,\[\]\{\}]/;
+var PATTERN_TAG_HANDLE = /^(?:!|!!|![a-z\-]+!)$/i;
+var PATTERN_TAG_URI = /^(?:!|[^,\[\]\{\}])(?:%[0-9a-f]{2}|[0-9a-z\-#;\/\?:@&=\+\$,_\.!~\*'\(\)\[\]])*$/i;
+
+
+function is_EOL(c) {
+ return (c === 0x0A/* LF */) || (c === 0x0D/* CR */);
+}
+
+function is_WHITE_SPACE(c) {
+ return (c === 0x09/* Tab */) || (c === 0x20/* Space */);
+}
+
+function is_WS_OR_EOL(c) {
+ return (c === 0x09/* Tab */) ||
+ (c === 0x20/* Space */) ||
+ (c === 0x0A/* LF */) ||
+ (c === 0x0D/* CR */);
+}
+
+function is_FLOW_INDICATOR(c) {
+ return c === 0x2C/* , */ ||
+ c === 0x5B/* [ */ ||
+ c === 0x5D/* ] */ ||
+ c === 0x7B/* { */ ||
+ c === 0x7D/* } */;
+}
+
+function fromHexCode(c) {
+ var lc;
+
+ if ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)) {
+ return c - 0x30;
+ }
+
+ /*eslint-disable no-bitwise*/
+ lc = c | 0x20;
+
+ if ((0x61/* a */ <= lc) && (lc <= 0x66/* f */)) {
+ return lc - 0x61 + 10;
+ }
+
+ return -1;
+}
+
+function escapedHexLen(c) {
+ if (c === 0x78/* x */) { return 2; }
+ if (c === 0x75/* u */) { return 4; }
+ if (c === 0x55/* U */) { return 8; }
+ return 0;
+}
+
+function fromDecimalCode(c) {
+ if ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)) {
+ return c - 0x30;
+ }
+
+ return -1;
+}
+
+function simpleEscapeSequence(c) {
+ /* eslint-disable indent */
+ return (c === 0x30/* 0 */) ? '\x00' :
+ (c === 0x61/* a */) ? '\x07' :
+ (c === 0x62/* b */) ? '\x08' :
+ (c === 0x74/* t */) ? '\x09' :
+ (c === 0x09/* Tab */) ? '\x09' :
+ (c === 0x6E/* n */) ? '\x0A' :
+ (c === 0x76/* v */) ? '\x0B' :
+ (c === 0x66/* f */) ? '\x0C' :
+ (c === 0x72/* r */) ? '\x0D' :
+ (c === 0x65/* e */) ? '\x1B' :
+ (c === 0x20/* Space */) ? ' ' :
+ (c === 0x22/* " */) ? '\x22' :
+ (c === 0x2F/* / */) ? '/' :
+ (c === 0x5C/* \ */) ? '\x5C' :
+ (c === 0x4E/* N */) ? '\x85' :
+ (c === 0x5F/* _ */) ? '\xA0' :
+ (c === 0x4C/* L */) ? '\u2028' :
+ (c === 0x50/* P */) ? '\u2029' : '';
+}
+
+function charFromCodepoint(c) {
+ if (c <= 0xFFFF) {
+ return String.fromCharCode(c);
+ }
+ // Encode UTF-16 surrogate pair
+ // https://en.wikipedia.org/wiki/UTF-16#Code_points_U.2B010000_to_U.2B10FFFF
+ return String.fromCharCode(
+ ((c - 0x010000) >> 10) + 0xD800,
+ ((c - 0x010000) & 0x03FF) + 0xDC00
+ );
+}
+
+var simpleEscapeCheck = new Array(256); // integer, for fast access
+var simpleEscapeMap = new Array(256);
+for (var i = 0; i < 256; i++) {
+ simpleEscapeCheck[i] = simpleEscapeSequence(i) ? 1 : 0;
+ simpleEscapeMap[i] = simpleEscapeSequence(i);
+}
+
+
+function State(input, options) {
+ this.input = input;
+
+ this.filename = options['filename'] || null;
+ this.schema = options['schema'] || DEFAULT_FULL_SCHEMA;
+ this.onWarning = options['onWarning'] || null;
+ this.legacy = options['legacy'] || false;
+ this.json = options['json'] || false;
+ this.listener = options['listener'] || null;
+
+ this.implicitTypes = this.schema.compiledImplicit;
+ this.typeMap = this.schema.compiledTypeMap;
+
+ this.length = input.length;
+ this.position = 0;
+ this.line = 0;
+ this.lineStart = 0;
+ this.lineIndent = 0;
+
+ this.documents = [];
+
+ /*
+ this.version;
+ this.checkLineBreaks;
+ this.tagMap;
+ this.anchorMap;
+ this.tag;
+ this.anchor;
+ this.kind;
+ this.result;*/
+
+}
+
+
+function generateError(state, message) {
+ return new YAMLException(
+ message,
+ new Mark(state.filename, state.input, state.position, state.line, (state.position - state.lineStart)));
+}
+
+function throwError(state, message) {
+ throw generateError(state, message);
+}
+
+function throwWarning(state, message) {
+ if (state.onWarning) {
+ state.onWarning.call(null, generateError(state, message));
+ }
+}
+
+
+var directiveHandlers = {
+
+ YAML: function handleYamlDirective(state, name, args) {
+
+ var match, major, minor;
+
+ if (state.version !== null) {
+ throwError(state, 'duplication of %YAML directive');
+ }
+
+ if (args.length !== 1) {
+ throwError(state, 'YAML directive accepts exactly one argument');
+ }
+
+ match = /^([0-9]+)\.([0-9]+)$/.exec(args[0]);
+
+ if (match === null) {
+ throwError(state, 'ill-formed argument of the YAML directive');
+ }
+
+ major = parseInt(match[1], 10);
+ minor = parseInt(match[2], 10);
+
+ if (major !== 1) {
+ throwError(state, 'unacceptable YAML version of the document');
+ }
+
+ state.version = args[0];
+ state.checkLineBreaks = (minor < 2);
+
+ if (minor !== 1 && minor !== 2) {
+ throwWarning(state, 'unsupported YAML version of the document');
+ }
+ },
+
+ TAG: function handleTagDirective(state, name, args) {
+
+ var handle, prefix;
+
+ if (args.length !== 2) {
+ throwError(state, 'TAG directive accepts exactly two arguments');
+ }
+
+ handle = args[0];
+ prefix = args[1];
+
+ if (!PATTERN_TAG_HANDLE.test(handle)) {
+ throwError(state, 'ill-formed tag handle (first argument) of the TAG directive');
+ }
+
+ if (_hasOwnProperty.call(state.tagMap, handle)) {
+ throwError(state, 'there is a previously declared suffix for "' + handle + '" tag handle');
+ }
+
+ if (!PATTERN_TAG_URI.test(prefix)) {
+ throwError(state, 'ill-formed tag prefix (second argument) of the TAG directive');
+ }
+
+ state.tagMap[handle] = prefix;
+ }
+};
+
+
+function captureSegment(state, start, end, checkJson) {
+ var _position, _length, _character, _result;
+
+ if (start < end) {
+ _result = state.input.slice(start, end);
+
+ if (checkJson) {
+ for (_position = 0, _length = _result.length; _position < _length; _position += 1) {
+ _character = _result.charCodeAt(_position);
+ if (!(_character === 0x09 ||
+ (0x20 <= _character && _character <= 0x10FFFF))) {
+ throwError(state, 'expected valid JSON character');
+ }
+ }
+ } else if (PATTERN_NON_PRINTABLE.test(_result)) {
+ throwError(state, 'the stream contains non-printable characters');
+ }
+
+ state.result += _result;
+ }
+}
+
+function mergeMappings(state, destination, source, overridableKeys) {
+ var sourceKeys, key, index, quantity;
+
+ if (!common.isObject(source)) {
+ throwError(state, 'cannot merge mappings; the provided source object is unacceptable');
+ }
+
+ sourceKeys = Object.keys(source);
+
+ for (index = 0, quantity = sourceKeys.length; index < quantity; index += 1) {
+ key = sourceKeys[index];
+
+ if (!_hasOwnProperty.call(destination, key)) {
+ destination[key] = source[key];
+ overridableKeys[key] = true;
+ }
+ }
+}
+
+function storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode, startLine, startPos) {
+ var index, quantity;
+
+ keyNode = String(keyNode);
+
+ if (_result === null) {
+ _result = {};
+ }
+
+ if (keyTag === 'tag:yaml.org,2002:merge') {
+ if (Array.isArray(valueNode)) {
+ for (index = 0, quantity = valueNode.length; index < quantity; index += 1) {
+ mergeMappings(state, _result, valueNode[index], overridableKeys);
+ }
+ } else {
+ mergeMappings(state, _result, valueNode, overridableKeys);
+ }
+ } else {
+ if (!state.json &&
+ !_hasOwnProperty.call(overridableKeys, keyNode) &&
+ _hasOwnProperty.call(_result, keyNode)) {
+ state.line = startLine || state.line;
+ state.position = startPos || state.position;
+ throwError(state, 'duplicated mapping key');
+ }
+ _result[keyNode] = valueNode;
+ delete overridableKeys[keyNode];
+ }
+
+ return _result;
+}
+
+function readLineBreak(state) {
+ var ch;
+
+ ch = state.input.charCodeAt(state.position);
+
+ if (ch === 0x0A/* LF */) {
+ state.position++;
+ } else if (ch === 0x0D/* CR */) {
+ state.position++;
+ if (state.input.charCodeAt(state.position) === 0x0A/* LF */) {
+ state.position++;
+ }
+ } else {
+ throwError(state, 'a line break is expected');
+ }
+
+ state.line += 1;
+ state.lineStart = state.position;
+}
+
+function skipSeparationSpace(state, allowComments, checkIndent) {
+ var lineBreaks = 0,
+ ch = state.input.charCodeAt(state.position);
+
+ while (ch !== 0) {
+ while (is_WHITE_SPACE(ch)) {
+ ch = state.input.charCodeAt(++state.position);
+ }
+
+ if (allowComments && ch === 0x23/* # */) {
+ do {
+ ch = state.input.charCodeAt(++state.position);
+ } while (ch !== 0x0A/* LF */ && ch !== 0x0D/* CR */ && ch !== 0);
+ }
+
+ if (is_EOL(ch)) {
+ readLineBreak(state);
+
+ ch = state.input.charCodeAt(state.position);
+ lineBreaks++;
+ state.lineIndent = 0;
+
+ while (ch === 0x20/* Space */) {
+ state.lineIndent++;
+ ch = state.input.charCodeAt(++state.position);
+ }
+ } else {
+ break;
+ }
+ }
+
+ if (checkIndent !== -1 && lineBreaks !== 0 && state.lineIndent < checkIndent) {
+ throwWarning(state, 'deficient indentation');
+ }
+
+ return lineBreaks;
+}
+
+function testDocumentSeparator(state) {
+ var _position = state.position,
+ ch;
+
+ ch = state.input.charCodeAt(_position);
+
+ // Condition state.position === state.lineStart is tested
+ // in parent on each call, for efficiency. No needs to test here again.
+ if ((ch === 0x2D/* - */ || ch === 0x2E/* . */) &&
+ ch === state.input.charCodeAt(_position + 1) &&
+ ch === state.input.charCodeAt(_position + 2)) {
+
+ _position += 3;
+
+ ch = state.input.charCodeAt(_position);
+
+ if (ch === 0 || is_WS_OR_EOL(ch)) {
+ return true;
+ }
+ }
+
+ return false;
+}
+
+function writeFoldedLines(state, count) {
+ if (count === 1) {
+ state.result += ' ';
+ } else if (count > 1) {
+ state.result += common.repeat('\n', count - 1);
+ }
+}
+
+
+function readPlainScalar(state, nodeIndent, withinFlowCollection) {
+ var preceding,
+ following,
+ captureStart,
+ captureEnd,
+ hasPendingContent,
+ _line,
+ _lineStart,
+ _lineIndent,
+ _kind = state.kind,
+ _result = state.result,
+ ch;
+
+ ch = state.input.charCodeAt(state.position);
+
+ if (is_WS_OR_EOL(ch) ||
+ is_FLOW_INDICATOR(ch) ||
+ ch === 0x23/* # */ ||
+ ch === 0x26/* & */ ||
+ ch === 0x2A/* * */ ||
+ ch === 0x21/* ! */ ||
+ ch === 0x7C/* | */ ||
+ ch === 0x3E/* > */ ||
+ ch === 0x27/* ' */ ||
+ ch === 0x22/* " */ ||
+ ch === 0x25/* % */ ||
+ ch === 0x40/* @ */ ||
+ ch === 0x60/* ` */) {
+ return false;
+ }
+
+ if (ch === 0x3F/* ? */ || ch === 0x2D/* - */) {
+ following = state.input.charCodeAt(state.position + 1);
+
+ if (is_WS_OR_EOL(following) ||
+ withinFlowCollection && is_FLOW_INDICATOR(following)) {
+ return false;
+ }
+ }
+
+ state.kind = 'scalar';
+ state.result = '';
+ captureStart = captureEnd = state.position;
+ hasPendingContent = false;
+
+ while (ch !== 0) {
+ if (ch === 0x3A/* : */) {
+ following = state.input.charCodeAt(state.position + 1);
+
+ if (is_WS_OR_EOL(following) ||
+ withinFlowCollection && is_FLOW_INDICATOR(following)) {
+ break;
+ }
+
+ } else if (ch === 0x23/* # */) {
+ preceding = state.input.charCodeAt(state.position - 1);
+
+ if (is_WS_OR_EOL(preceding)) {
+ break;
+ }
+
+ } else if ((state.position === state.lineStart && testDocumentSeparator(state)) ||
+ withinFlowCollection && is_FLOW_INDICATOR(ch)) {
+ break;
+
+ } else if (is_EOL(ch)) {
+ _line = state.line;
+ _lineStart = state.lineStart;
+ _lineIndent = state.lineIndent;
+ skipSeparationSpace(state, false, -1);
+
+ if (state.lineIndent >= nodeIndent) {
+ hasPendingContent = true;
+ ch = state.input.charCodeAt(state.position);
+ continue;
+ } else {
+ state.position = captureEnd;
+ state.line = _line;
+ state.lineStart = _lineStart;
+ state.lineIndent = _lineIndent;
+ break;
+ }
+ }
+
+ if (hasPendingContent) {
+ captureSegment(state, captureStart, captureEnd, false);
+ writeFoldedLines(state, state.line - _line);
+ captureStart = captureEnd = state.position;
+ hasPendingContent = false;
+ }
+
+ if (!is_WHITE_SPACE(ch)) {
+ captureEnd = state.position + 1;
+ }
+
+ ch = state.input.charCodeAt(++state.position);
+ }
+
+ captureSegment(state, captureStart, captureEnd, false);
+
+ if (state.result) {
+ return true;
+ }
+
+ state.kind = _kind;
+ state.result = _result;
+ return false;
+}
+
+function readSingleQuotedScalar(state, nodeIndent) {
+ var ch,
+ captureStart, captureEnd;
+
+ ch = state.input.charCodeAt(state.position);
+
+ if (ch !== 0x27/* ' */) {
+ return false;
+ }
+
+ state.kind = 'scalar';
+ state.result = '';
+ state.position++;
+ captureStart = captureEnd = state.position;
+
+ while ((ch = state.input.charCodeAt(state.position)) !== 0) {
+ if (ch === 0x27/* ' */) {
+ captureSegment(state, captureStart, state.position, true);
+ ch = state.input.charCodeAt(++state.position);
+
+ if (ch === 0x27/* ' */) {
+ captureStart = state.position;
+ state.position++;
+ captureEnd = state.position;
+ } else {
+ return true;
+ }
+
+ } else if (is_EOL(ch)) {
+ captureSegment(state, captureStart, captureEnd, true);
+ writeFoldedLines(state, skipSeparationSpace(state, false, nodeIndent));
+ captureStart = captureEnd = state.position;
+
+ } else if (state.position === state.lineStart && testDocumentSeparator(state)) {
+ throwError(state, 'unexpected end of the document within a single quoted scalar');
+
+ } else {
+ state.position++;
+ captureEnd = state.position;
+ }
+ }
+
+ throwError(state, 'unexpected end of the stream within a single quoted scalar');
+}
+
+function readDoubleQuotedScalar(state, nodeIndent) {
+ var captureStart,
+ captureEnd,
+ hexLength,
+ hexResult,
+ tmp,
+ ch;
+
+ ch = state.input.charCodeAt(state.position);
+
+ if (ch !== 0x22/* " */) {
+ return false;
+ }
+
+ state.kind = 'scalar';
+ state.result = '';
+ state.position++;
+ captureStart = captureEnd = state.position;
+
+ while ((ch = state.input.charCodeAt(state.position)) !== 0) {
+ if (ch === 0x22/* " */) {
+ captureSegment(state, captureStart, state.position, true);
+ state.position++;
+ return true;
+
+ } else if (ch === 0x5C/* \ */) {
+ captureSegment(state, captureStart, state.position, true);
+ ch = state.input.charCodeAt(++state.position);
+
+ if (is_EOL(ch)) {
+ skipSeparationSpace(state, false, nodeIndent);
+
+ // TODO: rework to inline fn with no type cast?
+ } else if (ch < 256 && simpleEscapeCheck[ch]) {
+ state.result += simpleEscapeMap[ch];
+ state.position++;
+
+ } else if ((tmp = escapedHexLen(ch)) > 0) {
+ hexLength = tmp;
+ hexResult = 0;
+
+ for (; hexLength > 0; hexLength--) {
+ ch = state.input.charCodeAt(++state.position);
+
+ if ((tmp = fromHexCode(ch)) >= 0) {
+ hexResult = (hexResult << 4) + tmp;
+
+ } else {
+ throwError(state, 'expected hexadecimal character');
+ }
+ }
+
+ state.result += charFromCodepoint(hexResult);
+
+ state.position++;
+
+ } else {
+ throwError(state, 'unknown escape sequence');
+ }
+
+ captureStart = captureEnd = state.position;
+
+ } else if (is_EOL(ch)) {
+ captureSegment(state, captureStart, captureEnd, true);
+ writeFoldedLines(state, skipSeparationSpace(state, false, nodeIndent));
+ captureStart = captureEnd = state.position;
+
+ } else if (state.position === state.lineStart && testDocumentSeparator(state)) {
+ throwError(state, 'unexpected end of the document within a double quoted scalar');
+
+ } else {
+ state.position++;
+ captureEnd = state.position;
+ }
+ }
+
+ throwError(state, 'unexpected end of the stream within a double quoted scalar');
+}
+
+function readFlowCollection(state, nodeIndent) {
+ var readNext = true,
+ _line,
+ _tag = state.tag,
+ _result,
+ _anchor = state.anchor,
+ following,
+ terminator,
+ isPair,
+ isExplicitPair,
+ isMapping,
+ overridableKeys = {},
+ keyNode,
+ keyTag,
+ valueNode,
+ ch;
+
+ ch = state.input.charCodeAt(state.position);
+
+ if (ch === 0x5B/* [ */) {
+ terminator = 0x5D;/* ] */
+ isMapping = false;
+ _result = [];
+ } else if (ch === 0x7B/* { */) {
+ terminator = 0x7D;/* } */
+ isMapping = true;
+ _result = {};
+ } else {
+ return false;
+ }
+
+ if (state.anchor !== null) {
+ state.anchorMap[state.anchor] = _result;
+ }
+
+ ch = state.input.charCodeAt(++state.position);
+
+ while (ch !== 0) {
+ skipSeparationSpace(state, true, nodeIndent);
+
+ ch = state.input.charCodeAt(state.position);
+
+ if (ch === terminator) {
+ state.position++;
+ state.tag = _tag;
+ state.anchor = _anchor;
+ state.kind = isMapping ? 'mapping' : 'sequence';
+ state.result = _result;
+ return true;
+ } else if (!readNext) {
+ throwError(state, 'missed comma between flow collection entries');
+ }
+
+ keyTag = keyNode = valueNode = null;
+ isPair = isExplicitPair = false;
+
+ if (ch === 0x3F/* ? */) {
+ following = state.input.charCodeAt(state.position + 1);
+
+ if (is_WS_OR_EOL(following)) {
+ isPair = isExplicitPair = true;
+ state.position++;
+ skipSeparationSpace(state, true, nodeIndent);
+ }
+ }
+
+ _line = state.line;
+ composeNode(state, nodeIndent, CONTEXT_FLOW_IN, false, true);
+ keyTag = state.tag;
+ keyNode = state.result;
+ skipSeparationSpace(state, true, nodeIndent);
+
+ ch = state.input.charCodeAt(state.position);
+
+ if ((isExplicitPair || state.line === _line) && ch === 0x3A/* : */) {
+ isPair = true;
+ ch = state.input.charCodeAt(++state.position);
+ skipSeparationSpace(state, true, nodeIndent);
+ composeNode(state, nodeIndent, CONTEXT_FLOW_IN, false, true);
+ valueNode = state.result;
+ }
+
+ if (isMapping) {
+ storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode);
+ } else if (isPair) {
+ _result.push(storeMappingPair(state, null, overridableKeys, keyTag, keyNode, valueNode));
+ } else {
+ _result.push(keyNode);
+ }
+
+ skipSeparationSpace(state, true, nodeIndent);
+
+ ch = state.input.charCodeAt(state.position);
+
+ if (ch === 0x2C/* , */) {
+ readNext = true;
+ ch = state.input.charCodeAt(++state.position);
+ } else {
+ readNext = false;
+ }
+ }
+
+ throwError(state, 'unexpected end of the stream within a flow collection');
+}
+
+function readBlockScalar(state, nodeIndent) {
+ var captureStart,
+ folding,
+ chomping = CHOMPING_CLIP,
+ didReadContent = false,
+ detectedIndent = false,
+ textIndent = nodeIndent,
+ emptyLines = 0,
+ atMoreIndented = false,
+ tmp,
+ ch;
+
+ ch = state.input.charCodeAt(state.position);
+
+ if (ch === 0x7C/* | */) {
+ folding = false;
+ } else if (ch === 0x3E/* > */) {
+ folding = true;
+ } else {
+ return false;
+ }
+
+ state.kind = 'scalar';
+ state.result = '';
+
+ while (ch !== 0) {
+ ch = state.input.charCodeAt(++state.position);
+
+ if (ch === 0x2B/* + */ || ch === 0x2D/* - */) {
+ if (CHOMPING_CLIP === chomping) {
+ chomping = (ch === 0x2B/* + */) ? CHOMPING_KEEP : CHOMPING_STRIP;
+ } else {
+ throwError(state, 'repeat of a chomping mode identifier');
+ }
+
+ } else if ((tmp = fromDecimalCode(ch)) >= 0) {
+ if (tmp === 0) {
+ throwError(state, 'bad explicit indentation width of a block scalar; it cannot be less than one');
+ } else if (!detectedIndent) {
+ textIndent = nodeIndent + tmp - 1;
+ detectedIndent = true;
+ } else {
+ throwError(state, 'repeat of an indentation width identifier');
+ }
+
+ } else {
+ break;
+ }
+ }
+
+ if (is_WHITE_SPACE(ch)) {
+ do { ch = state.input.charCodeAt(++state.position); }
+ while (is_WHITE_SPACE(ch));
+
+ if (ch === 0x23/* # */) {
+ do { ch = state.input.charCodeAt(++state.position); }
+ while (!is_EOL(ch) && (ch !== 0));
+ }
+ }
+
+ while (ch !== 0) {
+ readLineBreak(state);
+ state.lineIndent = 0;
+
+ ch = state.input.charCodeAt(state.position);
+
+ while ((!detectedIndent || state.lineIndent < textIndent) &&
+ (ch === 0x20/* Space */)) {
+ state.lineIndent++;
+ ch = state.input.charCodeAt(++state.position);
+ }
+
+ if (!detectedIndent && state.lineIndent > textIndent) {
+ textIndent = state.lineIndent;
+ }
+
+ if (is_EOL(ch)) {
+ emptyLines++;
+ continue;
+ }
+
+ // End of the scalar.
+ if (state.lineIndent < textIndent) {
+
+ // Perform the chomping.
+ if (chomping === CHOMPING_KEEP) {
+ state.result += common.repeat('\n', didReadContent ? 1 + emptyLines : emptyLines);
+ } else if (chomping === CHOMPING_CLIP) {
+ if (didReadContent) { // i.e. only if the scalar is not empty.
+ state.result += '\n';
+ }
+ }
+
+ // Break this `while` cycle and go to the funciton's epilogue.
+ break;
+ }
+
+ // Folded style: use fancy rules to handle line breaks.
+ if (folding) {
+
+ // Lines starting with white space characters (more-indented lines) are not folded.
+ if (is_WHITE_SPACE(ch)) {
+ atMoreIndented = true;
+ // except for the first content line (cf. Example 8.1)
+ state.result += common.repeat('\n', didReadContent ? 1 + emptyLines : emptyLines);
+
+ // End of more-indented block.
+ } else if (atMoreIndented) {
+ atMoreIndented = false;
+ state.result += common.repeat('\n', emptyLines + 1);
+
+ // Just one line break - perceive as the same line.
+ } else if (emptyLines === 0) {
+ if (didReadContent) { // i.e. only if we have already read some scalar content.
+ state.result += ' ';
+ }
+
+ // Several line breaks - perceive as different lines.
+ } else {
+ state.result += common.repeat('\n', emptyLines);
+ }
+
+ // Literal style: just add exact number of line breaks between content lines.
+ } else {
+ // Keep all line breaks except the header line break.
+ state.result += common.repeat('\n', didReadContent ? 1 + emptyLines : emptyLines);
+ }
+
+ didReadContent = true;
+ detectedIndent = true;
+ emptyLines = 0;
+ captureStart = state.position;
+
+ while (!is_EOL(ch) && (ch !== 0)) {
+ ch = state.input.charCodeAt(++state.position);
+ }
+
+ captureSegment(state, captureStart, state.position, false);
+ }
+
+ return true;
+}
+
+function readBlockSequence(state, nodeIndent) {
+ var _line,
+ _tag = state.tag,
+ _anchor = state.anchor,
+ _result = [],
+ following,
+ detected = false,
+ ch;
+
+ if (state.anchor !== null) {
+ state.anchorMap[state.anchor] = _result;
+ }
+
+ ch = state.input.charCodeAt(state.position);
+
+ while (ch !== 0) {
+
+ if (ch !== 0x2D/* - */) {
+ break;
+ }
+
+ following = state.input.charCodeAt(state.position + 1);
+
+ if (!is_WS_OR_EOL(following)) {
+ break;
+ }
+
+ detected = true;
+ state.position++;
+
+ if (skipSeparationSpace(state, true, -1)) {
+ if (state.lineIndent <= nodeIndent) {
+ _result.push(null);
+ ch = state.input.charCodeAt(state.position);
+ continue;
+ }
+ }
+
+ _line = state.line;
+ composeNode(state, nodeIndent, CONTEXT_BLOCK_IN, false, true);
+ _result.push(state.result);
+ skipSeparationSpace(state, true, -1);
+
+ ch = state.input.charCodeAt(state.position);
+
+ if ((state.line === _line || state.lineIndent > nodeIndent) && (ch !== 0)) {
+ throwError(state, 'bad indentation of a sequence entry');
+ } else if (state.lineIndent < nodeIndent) {
+ break;
+ }
+ }
+
+ if (detected) {
+ state.tag = _tag;
+ state.anchor = _anchor;
+ state.kind = 'sequence';
+ state.result = _result;
+ return true;
+ }
+ return false;
+}
+
+function readBlockMapping(state, nodeIndent, flowIndent) {
+ var following,
+ allowCompact,
+ _line,
+ _pos,
+ _tag = state.tag,
+ _anchor = state.anchor,
+ _result = {},
+ overridableKeys = {},
+ keyTag = null,
+ keyNode = null,
+ valueNode = null,
+ atExplicitKey = false,
+ detected = false,
+ ch;
+
+ if (state.anchor !== null) {
+ state.anchorMap[state.anchor] = _result;
+ }
+
+ ch = state.input.charCodeAt(state.position);
+
+ while (ch !== 0) {
+ following = state.input.charCodeAt(state.position + 1);
+ _line = state.line; // Save the current line.
+ _pos = state.position;
+
+ //
+ // Explicit notation case. There are two separate blocks:
+ // first for the key (denoted by "?") and second for the value (denoted by ":")
+ //
+ if ((ch === 0x3F/* ? */ || ch === 0x3A/* : */) && is_WS_OR_EOL(following)) {
+
+ if (ch === 0x3F/* ? */) {
+ if (atExplicitKey) {
+ storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null);
+ keyTag = keyNode = valueNode = null;
+ }
+
+ detected = true;
+ atExplicitKey = true;
+ allowCompact = true;
+
+ } else if (atExplicitKey) {
+ // i.e. 0x3A/* : */ === character after the explicit key.
+ atExplicitKey = false;
+ allowCompact = true;
+
+ } else {
+ throwError(state, 'incomplete explicit mapping pair; a key node is missed; or followed by a non-tabulated empty line');
+ }
+
+ state.position += 1;
+ ch = following;
+
+ //
+ // Implicit notation case. Flow-style node as the key first, then ":", and the value.
+ //
+ } else if (composeNode(state, flowIndent, CONTEXT_FLOW_OUT, false, true)) {
+
+ if (state.line === _line) {
+ ch = state.input.charCodeAt(state.position);
+
+ while (is_WHITE_SPACE(ch)) {
+ ch = state.input.charCodeAt(++state.position);
+ }
+
+ if (ch === 0x3A/* : */) {
+ ch = state.input.charCodeAt(++state.position);
+
+ if (!is_WS_OR_EOL(ch)) {
+ throwError(state, 'a whitespace character is expected after the key-value separator within a block mapping');
+ }
+
+ if (atExplicitKey) {
+ storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null);
+ keyTag = keyNode = valueNode = null;
+ }
+
+ detected = true;
+ atExplicitKey = false;
+ allowCompact = false;
+ keyTag = state.tag;
+ keyNode = state.result;
+
+ } else if (detected) {
+ throwError(state, 'can not read an implicit mapping pair; a colon is missed');
+
+ } else {
+ state.tag = _tag;
+ state.anchor = _anchor;
+ return true; // Keep the result of `composeNode`.
+ }
+
+ } else if (detected) {
+ throwError(state, 'can not read a block mapping entry; a multiline key may not be an implicit key');
+
+ } else {
+ state.tag = _tag;
+ state.anchor = _anchor;
+ return true; // Keep the result of `composeNode`.
+ }
+
+ } else {
+ break; // Reading is done. Go to the epilogue.
+ }
+
+ //
+ // Common reading code for both explicit and implicit notations.
+ //
+ if (state.line === _line || state.lineIndent > nodeIndent) {
+ if (composeNode(state, nodeIndent, CONTEXT_BLOCK_OUT, true, allowCompact)) {
+ if (atExplicitKey) {
+ keyNode = state.result;
+ } else {
+ valueNode = state.result;
+ }
+ }
+
+ if (!atExplicitKey) {
+ storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode, _line, _pos);
+ keyTag = keyNode = valueNode = null;
+ }
+
+ skipSeparationSpace(state, true, -1);
+ ch = state.input.charCodeAt(state.position);
+ }
+
+ if (state.lineIndent > nodeIndent && (ch !== 0)) {
+ throwError(state, 'bad indentation of a mapping entry');
+ } else if (state.lineIndent < nodeIndent) {
+ break;
+ }
+ }
+
+ //
+ // Epilogue.
+ //
+
+ // Special case: last mapping's node contains only the key in explicit notation.
+ if (atExplicitKey) {
+ storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null);
+ }
+
+ // Expose the resulting mapping.
+ if (detected) {
+ state.tag = _tag;
+ state.anchor = _anchor;
+ state.kind = 'mapping';
+ state.result = _result;
+ }
+
+ return detected;
+}
+
+function readTagProperty(state) {
+ var _position,
+ isVerbatim = false,
+ isNamed = false,
+ tagHandle,
+ tagName,
+ ch;
+
+ ch = state.input.charCodeAt(state.position);
+
+ if (ch !== 0x21/* ! */) return false;
+
+ if (state.tag !== null) {
+ throwError(state, 'duplication of a tag property');
+ }
+
+ ch = state.input.charCodeAt(++state.position);
+
+ if (ch === 0x3C/* < */) {
+ isVerbatim = true;
+ ch = state.input.charCodeAt(++state.position);
+
+ } else if (ch === 0x21/* ! */) {
+ isNamed = true;
+ tagHandle = '!!';
+ ch = state.input.charCodeAt(++state.position);
+
+ } else {
+ tagHandle = '!';
+ }
+
+ _position = state.position;
+
+ if (isVerbatim) {
+ do { ch = state.input.charCodeAt(++state.position); }
+ while (ch !== 0 && ch !== 0x3E/* > */);
+
+ if (state.position < state.length) {
+ tagName = state.input.slice(_position, state.position);
+ ch = state.input.charCodeAt(++state.position);
+ } else {
+ throwError(state, 'unexpected end of the stream within a verbatim tag');
+ }
+ } else {
+ while (ch !== 0 && !is_WS_OR_EOL(ch)) {
+
+ if (ch === 0x21/* ! */) {
+ if (!isNamed) {
+ tagHandle = state.input.slice(_position - 1, state.position + 1);
+
+ if (!PATTERN_TAG_HANDLE.test(tagHandle)) {
+ throwError(state, 'named tag handle cannot contain such characters');
+ }
+
+ isNamed = true;
+ _position = state.position + 1;
+ } else {
+ throwError(state, 'tag suffix cannot contain exclamation marks');
+ }
+ }
+
+ ch = state.input.charCodeAt(++state.position);
+ }
+
+ tagName = state.input.slice(_position, state.position);
+
+ if (PATTERN_FLOW_INDICATORS.test(tagName)) {
+ throwError(state, 'tag suffix cannot contain flow indicator characters');
+ }
+ }
+
+ if (tagName && !PATTERN_TAG_URI.test(tagName)) {
+ throwError(state, 'tag name cannot contain such characters: ' + tagName);
+ }
+
+ if (isVerbatim) {
+ state.tag = tagName;
+
+ } else if (_hasOwnProperty.call(state.tagMap, tagHandle)) {
+ state.tag = state.tagMap[tagHandle] + tagName;
+
+ } else if (tagHandle === '!') {
+ state.tag = '!' + tagName;
+
+ } else if (tagHandle === '!!') {
+ state.tag = 'tag:yaml.org,2002:' + tagName;
+
+ } else {
+ throwError(state, 'undeclared tag handle "' + tagHandle + '"');
+ }
+
+ return true;
+}
+
+function readAnchorProperty(state) {
+ var _position,
+ ch;
+
+ ch = state.input.charCodeAt(state.position);
+
+ if (ch !== 0x26/* & */) return false;
+
+ if (state.anchor !== null) {
+ throwError(state, 'duplication of an anchor property');
+ }
+
+ ch = state.input.charCodeAt(++state.position);
+ _position = state.position;
+
+ while (ch !== 0 && !is_WS_OR_EOL(ch) && !is_FLOW_INDICATOR(ch)) {
+ ch = state.input.charCodeAt(++state.position);
+ }
+
+ if (state.position === _position) {
+ throwError(state, 'name of an anchor node must contain at least one character');
+ }
+
+ state.anchor = state.input.slice(_position, state.position);
+ return true;
+}
+
+function readAlias(state) {
+ var _position, alias,
+ ch;
+
+ ch = state.input.charCodeAt(state.position);
+
+ if (ch !== 0x2A/* * */) return false;
+
+ ch = state.input.charCodeAt(++state.position);
+ _position = state.position;
+
+ while (ch !== 0 && !is_WS_OR_EOL(ch) && !is_FLOW_INDICATOR(ch)) {
+ ch = state.input.charCodeAt(++state.position);
+ }
+
+ if (state.position === _position) {
+ throwError(state, 'name of an alias node must contain at least one character');
+ }
+
+ alias = state.input.slice(_position, state.position);
+
+ if (!state.anchorMap.hasOwnProperty(alias)) {
+ throwError(state, 'unidentified alias "' + alias + '"');
+ }
+
+ state.result = state.anchorMap[alias];
+ skipSeparationSpace(state, true, -1);
+ return true;
+}
+
+function composeNode(state, parentIndent, nodeContext, allowToSeek, allowCompact) {
+ var allowBlockStyles,
+ allowBlockScalars,
+ allowBlockCollections,
+ indentStatus = 1, // 1: this>parent, 0: this=parent, -1: this<parent
+ atNewLine = false,
+ hasContent = false,
+ typeIndex,
+ typeQuantity,
+ type,
+ flowIndent,
+ blockIndent;
+
+ if (state.listener !== null) {
+ state.listener('open', state);
+ }
+
+ state.tag = null;
+ state.anchor = null;
+ state.kind = null;
+ state.result = null;
+
+ allowBlockStyles = allowBlockScalars = allowBlockCollections =
+ CONTEXT_BLOCK_OUT === nodeContext ||
+ CONTEXT_BLOCK_IN === nodeContext;
+
+ if (allowToSeek) {
+ if (skipSeparationSpace(state, true, -1)) {
+ atNewLine = true;
+
+ if (state.lineIndent > parentIndent) {
+ indentStatus = 1;
+ } else if (state.lineIndent === parentIndent) {
+ indentStatus = 0;
+ } else if (state.lineIndent < parentIndent) {
+ indentStatus = -1;
+ }
+ }
+ }
+
+ if (indentStatus === 1) {
+ while (readTagProperty(state) || readAnchorProperty(state)) {
+ if (skipSeparationSpace(state, true, -1)) {
+ atNewLine = true;
+ allowBlockCollections = allowBlockStyles;
+
+ if (state.lineIndent > parentIndent) {
+ indentStatus = 1;
+ } else if (state.lineIndent === parentIndent) {
+ indentStatus = 0;
+ } else if (state.lineIndent < parentIndent) {
+ indentStatus = -1;
+ }
+ } else {
+ allowBlockCollections = false;
+ }
+ }
+ }
+
+ if (allowBlockCollections) {
+ allowBlockCollections = atNewLine || allowCompact;
+ }
+
+ if (indentStatus === 1 || CONTEXT_BLOCK_OUT === nodeContext) {
+ if (CONTEXT_FLOW_IN === nodeContext || CONTEXT_FLOW_OUT === nodeContext) {
+ flowIndent = parentIndent;
+ } else {
+ flowIndent = parentIndent + 1;
+ }
+
+ blockIndent = state.position - state.lineStart;
+
+ if (indentStatus === 1) {
+ if (allowBlockCollections &&
+ (readBlockSequence(state, blockIndent) ||
+ readBlockMapping(state, blockIndent, flowIndent)) ||
+ readFlowCollection(state, flowIndent)) {
+ hasContent = true;
+ } else {
+ if ((allowBlockScalars && readBlockScalar(state, flowIndent)) ||
+ readSingleQuotedScalar(state, flowIndent) ||
+ readDoubleQuotedScalar(state, flowIndent)) {
+ hasContent = true;
+
+ } else if (readAlias(state)) {
+ hasContent = true;
+
+ if (state.tag !== null || state.anchor !== null) {
+ throwError(state, 'alias node should not have any properties');
+ }
+
+ } else if (readPlainScalar(state, flowIndent, CONTEXT_FLOW_IN === nodeContext)) {
+ hasContent = true;
+
+ if (state.tag === null) {
+ state.tag = '?';
+ }
+ }
+
+ if (state.anchor !== null) {
+ state.anchorMap[state.anchor] = state.result;
+ }
+ }
+ } else if (indentStatus === 0) {
+ // Special case: block sequences are allowed to have same indentation level as the parent.
+ // http://www.yaml.org/spec/1.2/spec.html#id2799784
+ hasContent = allowBlockCollections && readBlockSequence(state, blockIndent);
+ }
+ }
+
+ if (state.tag !== null && state.tag !== '!') {
+ if (state.tag === '?') {
+ for (typeIndex = 0, typeQuantity = state.implicitTypes.length; typeIndex < typeQuantity; typeIndex += 1) {
+ type = state.implicitTypes[typeIndex];
+
+ // Implicit resolving is not allowed for non-scalar types, and '?'
+ // non-specific tag is only assigned to plain scalars. So, it isn't
+ // needed to check for 'kind' conformity.
+
+ if (type.resolve(state.result)) { // `state.result` updated in resolver if matched
+ state.result = type.construct(state.result);
+ state.tag = type.tag;
+ if (state.anchor !== null) {
+ state.anchorMap[state.anchor] = state.result;
+ }
+ break;
+ }
+ }
+ } else if (_hasOwnProperty.call(state.typeMap[state.kind || 'fallback'], state.tag)) {
+ type = state.typeMap[state.kind || 'fallback'][state.tag];
+
+ if (state.result !== null && type.kind !== state.kind) {
+ throwError(state, 'unacceptable node kind for !<' + state.tag + '> tag; it should be "' + type.kind + '", not "' + state.kind + '"');
+ }
+
+ if (!type.resolve(state.result)) { // `state.result` updated in resolver if matched
+ throwError(state, 'cannot resolve a node with !<' + state.tag + '> explicit tag');
+ } else {
+ state.result = type.construct(state.result);
+ if (state.anchor !== null) {
+ state.anchorMap[state.anchor] = state.result;
+ }
+ }
+ } else {
+ throwError(state, 'unknown tag !<' + state.tag + '>');
+ }
+ }
+
+ if (state.listener !== null) {
+ state.listener('close', state);
+ }
+ return state.tag !== null || state.anchor !== null || hasContent;
+}
+
+function readDocument(state) {
+ var documentStart = state.position,
+ _position,
+ directiveName,
+ directiveArgs,
+ hasDirectives = false,
+ ch;
+
+ state.version = null;
+ state.checkLineBreaks = state.legacy;
+ state.tagMap = {};
+ state.anchorMap = {};
+
+ while ((ch = state.input.charCodeAt(state.position)) !== 0) {
+ skipSeparationSpace(state, true, -1);
+
+ ch = state.input.charCodeAt(state.position);
+
+ if (state.lineIndent > 0 || ch !== 0x25/* % */) {
+ break;
+ }
+
+ hasDirectives = true;
+ ch = state.input.charCodeAt(++state.position);
+ _position = state.position;
+
+ while (ch !== 0 && !is_WS_OR_EOL(ch)) {
+ ch = state.input.charCodeAt(++state.position);
+ }
+
+ directiveName = state.input.slice(_position, state.position);
+ directiveArgs = [];
+
+ if (directiveName.length < 1) {
+ throwError(state, 'directive name must not be less than one character in length');
+ }
+
+ while (ch !== 0) {
+ while (is_WHITE_SPACE(ch)) {
+ ch = state.input.charCodeAt(++state.position);
+ }
+
+ if (ch === 0x23/* # */) {
+ do { ch = state.input.charCodeAt(++state.position); }
+ while (ch !== 0 && !is_EOL(ch));
+ break;
+ }
+
+ if (is_EOL(ch)) break;
+
+ _position = state.position;
+
+ while (ch !== 0 && !is_WS_OR_EOL(ch)) {
+ ch = state.input.charCodeAt(++state.position);
+ }
+
+ directiveArgs.push(state.input.slice(_position, state.position));
+ }
+
+ if (ch !== 0) readLineBreak(state);
+
+ if (_hasOwnProperty.call(directiveHandlers, directiveName)) {
+ directiveHandlers[directiveName](state, directiveName, directiveArgs);
+ } else {
+ throwWarning(state, 'unknown document directive "' + directiveName + '"');
+ }
+ }
+
+ skipSeparationSpace(state, true, -1);
+
+ if (state.lineIndent === 0 &&
+ state.input.charCodeAt(state.position) === 0x2D/* - */ &&
+ state.input.charCodeAt(state.position + 1) === 0x2D/* - */ &&
+ state.input.charCodeAt(state.position + 2) === 0x2D/* - */) {
+ state.position += 3;
+ skipSeparationSpace(state, true, -1);
+
+ } else if (hasDirectives) {
+ throwError(state, 'directives end mark is expected');
+ }
+
+ composeNode(state, state.lineIndent - 1, CONTEXT_BLOCK_OUT, false, true);
+ skipSeparationSpace(state, true, -1);
+
+ if (state.checkLineBreaks &&
+ PATTERN_NON_ASCII_LINE_BREAKS.test(state.input.slice(documentStart, state.position))) {
+ throwWarning(state, 'non-ASCII line breaks are interpreted as content');
+ }
+
+ state.documents.push(state.result);
+
+ if (state.position === state.lineStart && testDocumentSeparator(state)) {
+
+ if (state.input.charCodeAt(state.position) === 0x2E/* . */) {
+ state.position += 3;
+ skipSeparationSpace(state, true, -1);
+ }
+ return;
+ }
+
+ if (state.position < (state.length - 1)) {
+ throwError(state, 'end of the stream or a document separator is expected');
+ } else {
+ return;
+ }
+}
+
+
+function loadDocuments(input, options) {
+ input = String(input);
+ options = options || {};
+
+ if (input.length !== 0) {
+
+ // Add tailing `\n` if not exists
+ if (input.charCodeAt(input.length - 1) !== 0x0A/* LF */ &&
+ input.charCodeAt(input.length - 1) !== 0x0D/* CR */) {
+ input += '\n';
+ }
+
+ // Strip BOM
+ if (input.charCodeAt(0) === 0xFEFF) {
+ input = input.slice(1);
+ }
+ }
+
+ var state = new State(input, options);
+
+ // Use 0 as string terminator. That significantly simplifies bounds check.
+ state.input += '\0';
+
+ while (state.input.charCodeAt(state.position) === 0x20/* Space */) {
+ state.lineIndent += 1;
+ state.position += 1;
+ }
+
+ while (state.position < (state.length - 1)) {
+ readDocument(state);
+ }
+
+ return state.documents;
+}
+
+
+function loadAll(input, iterator, options) {
+ var documents = loadDocuments(input, options), index, length;
+
+ if (typeof iterator !== 'function') {
+ return documents;
+ }
+
+ for (index = 0, length = documents.length; index < length; index += 1) {
+ iterator(documents[index]);
+ }
+}
+
+
+function load(input, options) {
+ var documents = loadDocuments(input, options);
+
+ if (documents.length === 0) {
+ /*eslint-disable no-undefined*/
+ return undefined;
+ } else if (documents.length === 1) {
+ return documents[0];
+ }
+ throw new YAMLException('expected a single document in the stream, but found more');
+}
+
+
+function safeLoadAll(input, output, options) {
+ if (typeof output === 'function') {
+ loadAll(input, output, common.extend({ schema: DEFAULT_SAFE_SCHEMA }, options));
+ } else {
+ return loadAll(input, common.extend({ schema: DEFAULT_SAFE_SCHEMA }, options));
+ }
+}
+
+
+function safeLoad(input, options) {
+ return load(input, common.extend({ schema: DEFAULT_SAFE_SCHEMA }, options));
+}
+
+
+module.exports.loadAll = loadAll;
+module.exports.load = load;
+module.exports.safeLoadAll = safeLoadAll;
+module.exports.safeLoad = safeLoad;
+
+},{"./common":2,"./exception":4,"./mark":6,"./schema/default_full":9,"./schema/default_safe":10}],6:[function(require,module,exports){
+'use strict';
+
+
+var common = require('./common');
+
+
+function Mark(name, buffer, position, line, column) {
+ this.name = name;
+ this.buffer = buffer;
+ this.position = position;
+ this.line = line;
+ this.column = column;
+}
+
+
+Mark.prototype.getSnippet = function getSnippet(indent, maxLength) {
+ var head, start, tail, end, snippet;
+
+ if (!this.buffer) return null;
+
+ indent = indent || 4;
+ maxLength = maxLength || 75;
+
+ head = '';
+ start = this.position;
+
+ while (start > 0 && '\x00\r\n\x85\u2028\u2029'.indexOf(this.buffer.charAt(start - 1)) === -1) {
+ start -= 1;
+ if (this.position - start > (maxLength / 2 - 1)) {
+ head = ' ... ';
+ start += 5;
+ break;
+ }
+ }
+
+ tail = '';
+ end = this.position;
+
+ while (end < this.buffer.length && '\x00\r\n\x85\u2028\u2029'.indexOf(this.buffer.charAt(end)) === -1) {
+ end += 1;
+ if (end - this.position > (maxLength / 2 - 1)) {
+ tail = ' ... ';
+ end -= 5;
+ break;
+ }
+ }
+
+ snippet = this.buffer.slice(start, end);
+
+ return common.repeat(' ', indent) + head + snippet + tail + '\n' +
+ common.repeat(' ', indent + this.position - start + head.length) + '^';
+};
+
+
+Mark.prototype.toString = function toString(compact) {
+ var snippet, where = '';
+
+ if (this.name) {
+ where += 'in "' + this.name + '" ';
+ }
+
+ where += 'at line ' + (this.line + 1) + ', column ' + (this.column + 1);
+
+ if (!compact) {
+ snippet = this.getSnippet();
+
+ if (snippet) {
+ where += ':\n' + snippet;
+ }
+ }
+
+ return where;
+};
+
+
+module.exports = Mark;
+
+},{"./common":2}],7:[function(require,module,exports){
+'use strict';
+
+/*eslint-disable max-len*/
+
+var common = require('./common');
+var YAMLException = require('./exception');
+var Type = require('./type');
+
+
+function compileList(schema, name, result) {
+ var exclude = [];
+
+ schema.include.forEach(function (includedSchema) {
+ result = compileList(includedSchema, name, result);
+ });
+
+ schema[name].forEach(function (currentType) {
+ result.forEach(function (previousType, previousIndex) {
+ if (previousType.tag === currentType.tag && previousType.kind === currentType.kind) {
+ exclude.push(previousIndex);
+ }
+ });
+
+ result.push(currentType);
+ });
+
+ return result.filter(function (type, index) {
+ return exclude.indexOf(index) === -1;
+ });
+}
+
+
+function compileMap(/* lists... */) {
+ var result = {
+ scalar: {},
+ sequence: {},
+ mapping: {},
+ fallback: {}
+ }, index, length;
+
+ function collectType(type) {
+ result[type.kind][type.tag] = result['fallback'][type.tag] = type;
+ }
+
+ for (index = 0, length = arguments.length; index < length; index += 1) {
+ arguments[index].forEach(collectType);
+ }
+ return result;
+}
+
+
+function Schema(definition) {
+ this.include = definition.include || [];
+ this.implicit = definition.implicit || [];
+ this.explicit = definition.explicit || [];
+
+ this.implicit.forEach(function (type) {
+ if (type.loadKind && type.loadKind !== 'scalar') {
+ throw new YAMLException('There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.');
+ }
+ });
+
+ this.compiledImplicit = compileList(this, 'implicit', []);
+ this.compiledExplicit = compileList(this, 'explicit', []);
+ this.compiledTypeMap = compileMap(this.compiledImplicit, this.compiledExplicit);
+}
+
+
+Schema.DEFAULT = null;
+
+
+Schema.create = function createSchema() {
+ var schemas, types;
+
+ switch (arguments.length) {
+ case 1:
+ schemas = Schema.DEFAULT;
+ types = arguments[0];
+ break;
+
+ case 2:
+ schemas = arguments[0];
+ types = arguments[1];
+ break;
+
+ default:
+ throw new YAMLException('Wrong number of arguments for Schema.create function');
+ }
+
+ schemas = common.toArray(schemas);
+ types = common.toArray(types);
+
+ if (!schemas.every(function (schema) { return schema instanceof Schema; })) {
+ throw new YAMLException('Specified list of super schemas (or a single Schema object) contains a non-Schema object.');
+ }
+
+ if (!types.every(function (type) { return type instanceof Type; })) {
+ throw new YAMLException('Specified list of YAML types (or a single Type object) contains a non-Type object.');
+ }
+
+ return new Schema({
+ include: schemas,
+ explicit: types
+ });
+};
+
+
+module.exports = Schema;
+
+},{"./common":2,"./exception":4,"./type":13}],8:[function(require,module,exports){
+// Standard YAML's Core schema.
+// http://www.yaml.org/spec/1.2/spec.html#id2804923
+//
+// NOTE: JS-YAML does not support schema-specific tag resolution restrictions.
+// So, Core schema has no distinctions from JSON schema is JS-YAML.
+
+
+'use strict';
+
+
+var Schema = require('../schema');
+
+
+module.exports = new Schema({
+ include: [
+ require('./json')
+ ]
+});
+
+},{"../schema":7,"./json":12}],9:[function(require,module,exports){
+// JS-YAML's default schema for `load` function.
+// It is not described in the YAML specification.
+//
+// This schema is based on JS-YAML's default safe schema and includes
+// JavaScript-specific types: !!js/undefined, !!js/regexp and !!js/function.
+//
+// Also this schema is used as default base schema at `Schema.create` function.
+
+
+'use strict';
+
+
+var Schema = require('../schema');
+
+
+module.exports = Schema.DEFAULT = new Schema({
+ include: [
+ require('./default_safe')
+ ],
+ explicit: [
+ require('../type/js/undefined'),
+ require('../type/js/regexp'),
+ require('../type/js/function')
+ ]
+});
+
+},{"../schema":7,"../type/js/function":18,"../type/js/regexp":19,"../type/js/undefined":20,"./default_safe":10}],10:[function(require,module,exports){
+// JS-YAML's default schema for `safeLoad` function.
+// It is not described in the YAML specification.
+//
+// This schema is based on standard YAML's Core schema and includes most of
+// extra types described at YAML tag repository. (http://yaml.org/type/)
+
+
+'use strict';
+
+
+var Schema = require('../schema');
+
+
+module.exports = new Schema({
+ include: [
+ require('./core')
+ ],
+ implicit: [
+ require('../type/timestamp'),
+ require('../type/merge')
+ ],
+ explicit: [
+ require('../type/binary'),
+ require('../type/omap'),
+ require('../type/pairs'),
+ require('../type/set')
+ ]
+});
+
+},{"../schema":7,"../type/binary":14,"../type/merge":22,"../type/omap":24,"../type/pairs":25,"../type/set":27,"../type/timestamp":29,"./core":8}],11:[function(require,module,exports){
+// Standard YAML's Failsafe schema.
+// http://www.yaml.org/spec/1.2/spec.html#id2802346
+
+
+'use strict';
+
+
+var Schema = require('../schema');
+
+
+module.exports = new Schema({
+ explicit: [
+ require('../type/str'),
+ require('../type/seq'),
+ require('../type/map')
+ ]
+});
+
+},{"../schema":7,"../type/map":21,"../type/seq":26,"../type/str":28}],12:[function(require,module,exports){
+// Standard YAML's JSON schema.
+// http://www.yaml.org/spec/1.2/spec.html#id2803231
+//
+// NOTE: JS-YAML does not support schema-specific tag resolution restrictions.
+// So, this schema is not such strict as defined in the YAML specification.
+// It allows numbers in binary notaion, use `Null` and `NULL` as `null`, etc.
+
+
+'use strict';
+
+
+var Schema = require('../schema');
+
+
+module.exports = new Schema({
+ include: [
+ require('./failsafe')
+ ],
+ implicit: [
+ require('../type/null'),
+ require('../type/bool'),
+ require('../type/int'),
+ require('../type/float')
+ ]
+});
+
+},{"../schema":7,"../type/bool":15,"../type/float":16,"../type/int":17,"../type/null":23,"./failsafe":11}],13:[function(require,module,exports){
+'use strict';
+
+var YAMLException = require('./exception');
+
+var TYPE_CONSTRUCTOR_OPTIONS = [
+ 'kind',
+ 'resolve',
+ 'construct',
+ 'instanceOf',
+ 'predicate',
+ 'represent',
+ 'defaultStyle',
+ 'styleAliases'
+];
+
+var YAML_NODE_KINDS = [
+ 'scalar',
+ 'sequence',
+ 'mapping'
+];
+
+function compileStyleAliases(map) {
+ var result = {};
+
+ if (map !== null) {
+ Object.keys(map).forEach(function (style) {
+ map[style].forEach(function (alias) {
+ result[String(alias)] = style;
+ });
+ });
+ }
+
+ return result;
+}
+
+function Type(tag, options) {
+ options = options || {};
+
+ Object.keys(options).forEach(function (name) {
+ if (TYPE_CONSTRUCTOR_OPTIONS.indexOf(name) === -1) {
+ throw new YAMLException('Unknown option "' + name + '" is met in definition of "' + tag + '" YAML type.');
+ }
+ });
+
+ // TODO: Add tag format check.
+ this.tag = tag;
+ this.kind = options['kind'] || null;
+ this.resolve = options['resolve'] || function () { return true; };
+ this.construct = options['construct'] || function (data) { return data; };
+ this.instanceOf = options['instanceOf'] || null;
+ this.predicate = options['predicate'] || null;
+ this.represent = options['represent'] || null;
+ this.defaultStyle = options['defaultStyle'] || null;
+ this.styleAliases = compileStyleAliases(options['styleAliases'] || null);
+
+ if (YAML_NODE_KINDS.indexOf(this.kind) === -1) {
+ throw new YAMLException('Unknown kind "' + this.kind + '" is specified for "' + tag + '" YAML type.');
+ }
+}
+
+module.exports = Type;
+
+},{"./exception":4}],14:[function(require,module,exports){
+'use strict';
+
+/*eslint-disable no-bitwise*/
+
+var NodeBuffer;
+
+try {
+ // A trick for browserified version, to not include `Buffer` shim
+ var _require = require;
+ NodeBuffer = _require('buffer').Buffer;
+} catch (__) {}
+
+var Type = require('../type');
+
+
+// [ 64, 65, 66 ] -> [ padding, CR, LF ]
+var BASE64_MAP = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\n\r';
+
+
+function resolveYamlBinary(data) {
+ if (data === null) return false;
+
+ var code, idx, bitlen = 0, max = data.length, map = BASE64_MAP;
+
+ // Convert one by one.
+ for (idx = 0; idx < max; idx++) {
+ code = map.indexOf(data.charAt(idx));
+
+ // Skip CR/LF
+ if (code > 64) continue;
+
+ // Fail on illegal characters
+ if (code < 0) return false;
+
+ bitlen += 6;
+ }
+
+ // If there are any bits left, source was corrupted
+ return (bitlen % 8) === 0;
+}
+
+function constructYamlBinary(data) {
+ var idx, tailbits,
+ input = data.replace(/[\r\n=]/g, ''), // remove CR/LF & padding to simplify scan
+ max = input.length,
+ map = BASE64_MAP,
+ bits = 0,
+ result = [];
+
+ // Collect by 6*4 bits (3 bytes)
+
+ for (idx = 0; idx < max; idx++) {
+ if ((idx % 4 === 0) && idx) {
+ result.push((bits >> 16) & 0xFF);
+ result.push((bits >> 8) & 0xFF);
+ result.push(bits & 0xFF);
+ }
+
+ bits = (bits << 6) | map.indexOf(input.charAt(idx));
+ }
+
+ // Dump tail
+
+ tailbits = (max % 4) * 6;
+
+ if (tailbits === 0) {
+ result.push((bits >> 16) & 0xFF);
+ result.push((bits >> 8) & 0xFF);
+ result.push(bits & 0xFF);
+ } else if (tailbits === 18) {
+ result.push((bits >> 10) & 0xFF);
+ result.push((bits >> 2) & 0xFF);
+ } else if (tailbits === 12) {
+ result.push((bits >> 4) & 0xFF);
+ }
+
+ // Wrap into Buffer for NodeJS and leave Array for browser
+ if (NodeBuffer) {
+ // Support node 6.+ Buffer API when available
+ return NodeBuffer.from ? NodeBuffer.from(result) : new NodeBuffer(result);
+ }
+
+ return result;
+}
+
+function representYamlBinary(object /*, style*/) {
+ var result = '', bits = 0, idx, tail,
+ max = object.length,
+ map = BASE64_MAP;
+
+ // Convert every three bytes to 4 ASCII characters.
+
+ for (idx = 0; idx < max; idx++) {
+ if ((idx % 3 === 0) && idx) {
+ result += map[(bits >> 18) & 0x3F];
+ result += map[(bits >> 12) & 0x3F];
+ result += map[(bits >> 6) & 0x3F];
+ result += map[bits & 0x3F];
+ }
+
+ bits = (bits << 8) + object[idx];
+ }
+
+ // Dump tail
+
+ tail = max % 3;
+
+ if (tail === 0) {
+ result += map[(bits >> 18) & 0x3F];
+ result += map[(bits >> 12) & 0x3F];
+ result += map[(bits >> 6) & 0x3F];
+ result += map[bits & 0x3F];
+ } else if (tail === 2) {
+ result += map[(bits >> 10) & 0x3F];
+ result += map[(bits >> 4) & 0x3F];
+ result += map[(bits << 2) & 0x3F];
+ result += map[64];
+ } else if (tail === 1) {
+ result += map[(bits >> 2) & 0x3F];
+ result += map[(bits << 4) & 0x3F];
+ result += map[64];
+ result += map[64];
+ }
+
+ return result;
+}
+
+function isBinary(object) {
+ return NodeBuffer && NodeBuffer.isBuffer(object);
+}
+
+module.exports = new Type('tag:yaml.org,2002:binary', {
+ kind: 'scalar',
+ resolve: resolveYamlBinary,
+ construct: constructYamlBinary,
+ predicate: isBinary,
+ represent: representYamlBinary
+});
+
+},{"../type":13}],15:[function(require,module,exports){
+'use strict';
+
+var Type = require('../type');
+
+function resolveYamlBoolean(data) {
+ if (data === null) return false;
+
+ var max = data.length;
+
+ return (max === 4 && (data === 'true' || data === 'True' || data === 'TRUE')) ||
+ (max === 5 && (data === 'false' || data === 'False' || data === 'FALSE'));
+}
+
+function constructYamlBoolean(data) {
+ return data === 'true' ||
+ data === 'True' ||
+ data === 'TRUE';
+}
+
+function isBoolean(object) {
+ return Object.prototype.toString.call(object) === '[object Boolean]';
+}
+
+module.exports = new Type('tag:yaml.org,2002:bool', {
+ kind: 'scalar',
+ resolve: resolveYamlBoolean,
+ construct: constructYamlBoolean,
+ predicate: isBoolean,
+ represent: {
+ lowercase: function (object) { return object ? 'true' : 'false'; },
+ uppercase: function (object) { return object ? 'TRUE' : 'FALSE'; },
+ camelcase: function (object) { return object ? 'True' : 'False'; }
+ },
+ defaultStyle: 'lowercase'
+});
+
+},{"../type":13}],16:[function(require,module,exports){
+'use strict';
+
+var common = require('../common');
+var Type = require('../type');
+
+var YAML_FLOAT_PATTERN = new RegExp(
+ // 2.5e4, 2.5 and integers
+ '^(?:[-+]?(?:0|[1-9][0-9_]*)(?:\\.[0-9_]*)?(?:[eE][-+]?[0-9]+)?' +
+ // .2e4, .2
+ // special case, seems not from spec
+ '|\\.[0-9_]+(?:[eE][-+]?[0-9]+)?' +
+ // 20:59
+ '|[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+\\.[0-9_]*' +
+ // .inf
+ '|[-+]?\\.(?:inf|Inf|INF)' +
+ // .nan
+ '|\\.(?:nan|NaN|NAN))$');
+
+function resolveYamlFloat(data) {
+ if (data === null) return false;
+
+ if (!YAML_FLOAT_PATTERN.test(data) ||
+ // Quick hack to not allow integers end with `_`
+ // Probably should update regexp & check speed
+ data[data.length - 1] === '_') {
+ return false;
+ }
+
+ return true;
+}
+
+function constructYamlFloat(data) {
+ var value, sign, base, digits;
+
+ value = data.replace(/_/g, '').toLowerCase();
+ sign = value[0] === '-' ? -1 : 1;
+ digits = [];
+
+ if ('+-'.indexOf(value[0]) >= 0) {
+ value = value.slice(1);
+ }
+
+ if (value === '.inf') {
+ return (sign === 1) ? Number.POSITIVE_INFINITY : Number.NEGATIVE_INFINITY;
+
+ } else if (value === '.nan') {
+ return NaN;
+
+ } else if (value.indexOf(':') >= 0) {
+ value.split(':').forEach(function (v) {
+ digits.unshift(parseFloat(v, 10));
+ });
+
+ value = 0.0;
+ base = 1;
+
+ digits.forEach(function (d) {
+ value += d * base;
+ base *= 60;
+ });
+
+ return sign * value;
+
+ }
+ return sign * parseFloat(value, 10);
+}
+
+
+var SCIENTIFIC_WITHOUT_DOT = /^[-+]?[0-9]+e/;
+
+function representYamlFloat(object, style) {
+ var res;
+
+ if (isNaN(object)) {
+ switch (style) {
+ case 'lowercase': return '.nan';
+ case 'uppercase': return '.NAN';
+ case 'camelcase': return '.NaN';
+ }
+ } else if (Number.POSITIVE_INFINITY === object) {
+ switch (style) {
+ case 'lowercase': return '.inf';
+ case 'uppercase': return '.INF';
+ case 'camelcase': return '.Inf';
+ }
+ } else if (Number.NEGATIVE_INFINITY === object) {
+ switch (style) {
+ case 'lowercase': return '-.inf';
+ case 'uppercase': return '-.INF';
+ case 'camelcase': return '-.Inf';
+ }
+ } else if (common.isNegativeZero(object)) {
+ return '-0.0';
+ }
+
+ res = object.toString(10);
+
+ // JS stringifier can build scientific format without dots: 5e-100,
+ // while YAML requres dot: 5.e-100. Fix it with simple hack
+
+ return SCIENTIFIC_WITHOUT_DOT.test(res) ? res.replace('e', '.e') : res;
+}
+
+function isFloat(object) {
+ return (Object.prototype.toString.call(object) === '[object Number]') &&
+ (object % 1 !== 0 || common.isNegativeZero(object));
+}
+
+module.exports = new Type('tag:yaml.org,2002:float', {
+ kind: 'scalar',
+ resolve: resolveYamlFloat,
+ construct: constructYamlFloat,
+ predicate: isFloat,
+ represent: representYamlFloat,
+ defaultStyle: 'lowercase'
+});
+
+},{"../common":2,"../type":13}],17:[function(require,module,exports){
+'use strict';
+
+var common = require('../common');
+var Type = require('../type');
+
+function isHexCode(c) {
+ return ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)) ||
+ ((0x41/* A */ <= c) && (c <= 0x46/* F */)) ||
+ ((0x61/* a */ <= c) && (c <= 0x66/* f */));
+}
+
+function isOctCode(c) {
+ return ((0x30/* 0 */ <= c) && (c <= 0x37/* 7 */));
+}
+
+function isDecCode(c) {
+ return ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */));
+}
+
+function resolveYamlInteger(data) {
+ if (data === null) return false;
+
+ var max = data.length,
+ index = 0,
+ hasDigits = false,
+ ch;
+
+ if (!max) return false;
+
+ ch = data[index];
+
+ // sign
+ if (ch === '-' || ch === '+') {
+ ch = data[++index];
+ }
+
+ if (ch === '0') {
+ // 0
+ if (index + 1 === max) return true;
+ ch = data[++index];
+
+ // base 2, base 8, base 16
+
+ if (ch === 'b') {
+ // base 2
+ index++;
+
+ for (; index < max; index++) {
+ ch = data[index];
+ if (ch === '_') continue;
+ if (ch !== '0' && ch !== '1') return false;
+ hasDigits = true;
+ }
+ return hasDigits && ch !== '_';
+ }
+
+
+ if (ch === 'x') {
+ // base 16
+ index++;
+
+ for (; index < max; index++) {
+ ch = data[index];
+ if (ch === '_') continue;
+ if (!isHexCode(data.charCodeAt(index))) return false;
+ hasDigits = true;
+ }
+ return hasDigits && ch !== '_';
+ }
+
+ // base 8
+ for (; index < max; index++) {
+ ch = data[index];
+ if (ch === '_') continue;
+ if (!isOctCode(data.charCodeAt(index))) return false;
+ hasDigits = true;
+ }
+ return hasDigits && ch !== '_';
+ }
+
+ // base 10 (except 0) or base 60
+
+ // value should not start with `_`;
+ if (ch === '_') return false;
+
+ for (; index < max; index++) {
+ ch = data[index];
+ if (ch === '_') continue;
+ if (ch === ':') break;
+ if (!isDecCode(data.charCodeAt(index))) {
+ return false;
+ }
+ hasDigits = true;
+ }
+
+ // Should have digits and should not end with `_`
+ if (!hasDigits || ch === '_') return false;
+
+ // if !base60 - done;
+ if (ch !== ':') return true;
+
+ // base60 almost not used, no needs to optimize
+ return /^(:[0-5]?[0-9])+$/.test(data.slice(index));
+}
+
+function constructYamlInteger(data) {
+ var value = data, sign = 1, ch, base, digits = [];
+
+ if (value.indexOf('_') !== -1) {
+ value = value.replace(/_/g, '');
+ }
+
+ ch = value[0];
+
+ if (ch === '-' || ch === '+') {
+ if (ch === '-') sign = -1;
+ value = value.slice(1);
+ ch = value[0];
+ }
+
+ if (value === '0') return 0;
+
+ if (ch === '0') {
+ if (value[1] === 'b') return sign * parseInt(value.slice(2), 2);
+ if (value[1] === 'x') return sign * parseInt(value, 16);
+ return sign * parseInt(value, 8);
+ }
+
+ if (value.indexOf(':') !== -1) {
+ value.split(':').forEach(function (v) {
+ digits.unshift(parseInt(v, 10));
+ });
+
+ value = 0;
+ base = 1;
+
+ digits.forEach(function (d) {
+ value += (d * base);
+ base *= 60;
+ });
+
+ return sign * value;
+
+ }
+
+ return sign * parseInt(value, 10);
+}
+
+function isInteger(object) {
+ return (Object.prototype.toString.call(object)) === '[object Number]' &&
+ (object % 1 === 0 && !common.isNegativeZero(object));
+}
+
+module.exports = new Type('tag:yaml.org,2002:int', {
+ kind: 'scalar',
+ resolve: resolveYamlInteger,
+ construct: constructYamlInteger,
+ predicate: isInteger,
+ represent: {
+ binary: function (obj) { return obj >= 0 ? '0b' + obj.toString(2) : '-0b' + obj.toString(2).slice(1); },
+ octal: function (obj) { return obj >= 0 ? '0' + obj.toString(8) : '-0' + obj.toString(8).slice(1); },
+ decimal: function (obj) { return obj.toString(10); },
+ /* eslint-disable max-len */
+ hexadecimal: function (obj) { return obj >= 0 ? '0x' + obj.toString(16).toUpperCase() : '-0x' + obj.toString(16).toUpperCase().slice(1); }
+ },
+ defaultStyle: 'decimal',
+ styleAliases: {
+ binary: [ 2, 'bin' ],
+ octal: [ 8, 'oct' ],
+ decimal: [ 10, 'dec' ],
+ hexadecimal: [ 16, 'hex' ]
+ }
+});
+
+},{"../common":2,"../type":13}],18:[function(require,module,exports){
+'use strict';
+
+var esprima;
+
+// Browserified version does not have esprima
+//
+// 1. For node.js just require module as deps
+// 2. For browser try to require mudule via external AMD system.
+// If not found - try to fallback to window.esprima. If not
+// found too - then fail to parse.
+//
+try {
+ // workaround to exclude package from browserify list.
+ var _require = require;
+ esprima = _require('esprima');
+} catch (_) {
+ /*global window */
+ if (typeof window !== 'undefined') esprima = window.esprima;
+}
+
+var Type = require('../../type');
+
+function resolveJavascriptFunction(data) {
+ if (data === null) return false;
+
+ try {
+ var source = '(' + data + ')',
+ ast = esprima.parse(source, { range: true });
+
+ if (ast.type !== 'Program' ||
+ ast.body.length !== 1 ||
+ ast.body[0].type !== 'ExpressionStatement' ||
+ (ast.body[0].expression.type !== 'ArrowFunctionExpression' &&
+ ast.body[0].expression.type !== 'FunctionExpression')) {
+ return false;
+ }
+
+ return true;
+ } catch (err) {
+ return false;
+ }
+}
+
+function constructJavascriptFunction(data) {
+ /*jslint evil:true*/
+
+ var source = '(' + data + ')',
+ ast = esprima.parse(source, { range: true }),
+ params = [],
+ body;
+
+ if (ast.type !== 'Program' ||
+ ast.body.length !== 1 ||
+ ast.body[0].type !== 'ExpressionStatement' ||
+ (ast.body[0].expression.type !== 'ArrowFunctionExpression' &&
+ ast.body[0].expression.type !== 'FunctionExpression')) {
+ throw new Error('Failed to resolve function');
+ }
+
+ ast.body[0].expression.params.forEach(function (param) {
+ params.push(param.name);
+ });
+
+ body = ast.body[0].expression.body.range;
+
+ // Esprima's ranges include the first '{' and the last '}' characters on
+ // function expressions. So cut them out.
+ if (ast.body[0].expression.body.type === 'BlockStatement') {
+ /*eslint-disable no-new-func*/
+ return new Function(params, source.slice(body[0] + 1, body[1] - 1));
+ }
+ // ES6 arrow functions can omit the BlockStatement. In that case, just return
+ // the body.
+ /*eslint-disable no-new-func*/
+ return new Function(params, 'return ' + source.slice(body[0], body[1]));
+}
+
+function representJavascriptFunction(object /*, style*/) {
+ return object.toString();
+}
+
+function isFunction(object) {
+ return Object.prototype.toString.call(object) === '[object Function]';
+}
+
+module.exports = new Type('tag:yaml.org,2002:js/function', {
+ kind: 'scalar',
+ resolve: resolveJavascriptFunction,
+ construct: constructJavascriptFunction,
+ predicate: isFunction,
+ represent: representJavascriptFunction
+});
+
+},{"../../type":13}],19:[function(require,module,exports){
+'use strict';
+
+var Type = require('../../type');
+
+function resolveJavascriptRegExp(data) {
+ if (data === null) return false;
+ if (data.length === 0) return false;
+
+ var regexp = data,
+ tail = /\/([gim]*)$/.exec(data),
+ modifiers = '';
+
+ // if regexp starts with '/' it can have modifiers and must be properly closed
+ // `/foo/gim` - modifiers tail can be maximum 3 chars
+ if (regexp[0] === '/') {
+ if (tail) modifiers = tail[1];
+
+ if (modifiers.length > 3) return false;
+ // if expression starts with /, is should be properly terminated
+ if (regexp[regexp.length - modifiers.length - 1] !== '/') return false;
+ }
+
+ return true;
+}
+
+function constructJavascriptRegExp(data) {
+ var regexp = data,
+ tail = /\/([gim]*)$/.exec(data),
+ modifiers = '';
+
+ // `/foo/gim` - tail can be maximum 4 chars
+ if (regexp[0] === '/') {
+ if (tail) modifiers = tail[1];
+ regexp = regexp.slice(1, regexp.length - modifiers.length - 1);
+ }
+
+ return new RegExp(regexp, modifiers);
+}
+
+function representJavascriptRegExp(object /*, style*/) {
+ var result = '/' + object.source + '/';
+
+ if (object.global) result += 'g';
+ if (object.multiline) result += 'm';
+ if (object.ignoreCase) result += 'i';
+
+ return result;
+}
+
+function isRegExp(object) {
+ return Object.prototype.toString.call(object) === '[object RegExp]';
+}
+
+module.exports = new Type('tag:yaml.org,2002:js/regexp', {
+ kind: 'scalar',
+ resolve: resolveJavascriptRegExp,
+ construct: constructJavascriptRegExp,
+ predicate: isRegExp,
+ represent: representJavascriptRegExp
+});
+
+},{"../../type":13}],20:[function(require,module,exports){
+'use strict';
+
+var Type = require('../../type');
+
+function resolveJavascriptUndefined() {
+ return true;
+}
+
+function constructJavascriptUndefined() {
+ /*eslint-disable no-undefined*/
+ return undefined;
+}
+
+function representJavascriptUndefined() {
+ return '';
+}
+
+function isUndefined(object) {
+ return typeof object === 'undefined';
+}
+
+module.exports = new Type('tag:yaml.org,2002:js/undefined', {
+ kind: 'scalar',
+ resolve: resolveJavascriptUndefined,
+ construct: constructJavascriptUndefined,
+ predicate: isUndefined,
+ represent: representJavascriptUndefined
+});
+
+},{"../../type":13}],21:[function(require,module,exports){
+'use strict';
+
+var Type = require('../type');
+
+module.exports = new Type('tag:yaml.org,2002:map', {
+ kind: 'mapping',
+ construct: function (data) { return data !== null ? data : {}; }
+});
+
+},{"../type":13}],22:[function(require,module,exports){
+'use strict';
+
+var Type = require('../type');
+
+function resolveYamlMerge(data) {
+ return data === '<<' || data === null;
+}
+
+module.exports = new Type('tag:yaml.org,2002:merge', {
+ kind: 'scalar',
+ resolve: resolveYamlMerge
+});
+
+},{"../type":13}],23:[function(require,module,exports){
+'use strict';
+
+var Type = require('../type');
+
+function resolveYamlNull(data) {
+ if (data === null) return true;
+
+ var max = data.length;
+
+ return (max === 1 && data === '~') ||
+ (max === 4 && (data === 'null' || data === 'Null' || data === 'NULL'));
+}
+
+function constructYamlNull() {
+ return null;
+}
+
+function isNull(object) {
+ return object === null;
+}
+
+module.exports = new Type('tag:yaml.org,2002:null', {
+ kind: 'scalar',
+ resolve: resolveYamlNull,
+ construct: constructYamlNull,
+ predicate: isNull,
+ represent: {
+ canonical: function () { return '~'; },
+ lowercase: function () { return 'null'; },
+ uppercase: function () { return 'NULL'; },
+ camelcase: function () { return 'Null'; }
+ },
+ defaultStyle: 'lowercase'
+});
+
+},{"../type":13}],24:[function(require,module,exports){
+'use strict';
+
+var Type = require('../type');
+
+var _hasOwnProperty = Object.prototype.hasOwnProperty;
+var _toString = Object.prototype.toString;
+
+function resolveYamlOmap(data) {
+ if (data === null) return true;
+
+ var objectKeys = [], index, length, pair, pairKey, pairHasKey,
+ object = data;
+
+ for (index = 0, length = object.length; index < length; index += 1) {
+ pair = object[index];
+ pairHasKey = false;
+
+ if (_toString.call(pair) !== '[object Object]') return false;
+
+ for (pairKey in pair) {
+ if (_hasOwnProperty.call(pair, pairKey)) {
+ if (!pairHasKey) pairHasKey = true;
+ else return false;
+ }
+ }
+
+ if (!pairHasKey) return false;
+
+ if (objectKeys.indexOf(pairKey) === -1) objectKeys.push(pairKey);
+ else return false;
+ }
+
+ return true;
+}
+
+function constructYamlOmap(data) {
+ return data !== null ? data : [];
+}
+
+module.exports = new Type('tag:yaml.org,2002:omap', {
+ kind: 'sequence',
+ resolve: resolveYamlOmap,
+ construct: constructYamlOmap
+});
+
+},{"../type":13}],25:[function(require,module,exports){
+'use strict';
+
+var Type = require('../type');
+
+var _toString = Object.prototype.toString;
+
+function resolveYamlPairs(data) {
+ if (data === null) return true;
+
+ var index, length, pair, keys, result,
+ object = data;
+
+ result = new Array(object.length);
+
+ for (index = 0, length = object.length; index < length; index += 1) {
+ pair = object[index];
+
+ if (_toString.call(pair) !== '[object Object]') return false;
+
+ keys = Object.keys(pair);
+
+ if (keys.length !== 1) return false;
+
+ result[index] = [ keys[0], pair[keys[0]] ];
+ }
+
+ return true;
+}
+
+function constructYamlPairs(data) {
+ if (data === null) return [];
+
+ var index, length, pair, keys, result,
+ object = data;
+
+ result = new Array(object.length);
+
+ for (index = 0, length = object.length; index < length; index += 1) {
+ pair = object[index];
+
+ keys = Object.keys(pair);
+
+ result[index] = [ keys[0], pair[keys[0]] ];
+ }
+
+ return result;
+}
+
+module.exports = new Type('tag:yaml.org,2002:pairs', {
+ kind: 'sequence',
+ resolve: resolveYamlPairs,
+ construct: constructYamlPairs
+});
+
+},{"../type":13}],26:[function(require,module,exports){
+'use strict';
+
+var Type = require('../type');
+
+module.exports = new Type('tag:yaml.org,2002:seq', {
+ kind: 'sequence',
+ construct: function (data) { return data !== null ? data : []; }
+});
+
+},{"../type":13}],27:[function(require,module,exports){
+'use strict';
+
+var Type = require('../type');
+
+var _hasOwnProperty = Object.prototype.hasOwnProperty;
+
+function resolveYamlSet(data) {
+ if (data === null) return true;
+
+ var key, object = data;
+
+ for (key in object) {
+ if (_hasOwnProperty.call(object, key)) {
+ if (object[key] !== null) return false;
+ }
+ }
+
+ return true;
+}
+
+function constructYamlSet(data) {
+ return data !== null ? data : {};
+}
+
+module.exports = new Type('tag:yaml.org,2002:set', {
+ kind: 'mapping',
+ resolve: resolveYamlSet,
+ construct: constructYamlSet
+});
+
+},{"../type":13}],28:[function(require,module,exports){
+'use strict';
+
+var Type = require('../type');
+
+module.exports = new Type('tag:yaml.org,2002:str', {
+ kind: 'scalar',
+ construct: function (data) { return data !== null ? data : ''; }
+});
+
+},{"../type":13}],29:[function(require,module,exports){
+'use strict';
+
+var Type = require('../type');
+
+var YAML_DATE_REGEXP = new RegExp(
+ '^([0-9][0-9][0-9][0-9])' + // [1] year
+ '-([0-9][0-9])' + // [2] month
+ '-([0-9][0-9])$'); // [3] day
+
+var YAML_TIMESTAMP_REGEXP = new RegExp(
+ '^([0-9][0-9][0-9][0-9])' + // [1] year
+ '-([0-9][0-9]?)' + // [2] month
+ '-([0-9][0-9]?)' + // [3] day
+ '(?:[Tt]|[ \\t]+)' + // ...
+ '([0-9][0-9]?)' + // [4] hour
+ ':([0-9][0-9])' + // [5] minute
+ ':([0-9][0-9])' + // [6] second
+ '(?:\\.([0-9]*))?' + // [7] fraction
+ '(?:[ \\t]*(Z|([-+])([0-9][0-9]?)' + // [8] tz [9] tz_sign [10] tz_hour
+ '(?::([0-9][0-9]))?))?$'); // [11] tz_minute
+
+function resolveYamlTimestamp(data) {
+ if (data === null) return false;
+ if (YAML_DATE_REGEXP.exec(data) !== null) return true;
+ if (YAML_TIMESTAMP_REGEXP.exec(data) !== null) return true;
+ return false;
+}
+
+function constructYamlTimestamp(data) {
+ var match, year, month, day, hour, minute, second, fraction = 0,
+ delta = null, tz_hour, tz_minute, date;
+
+ match = YAML_DATE_REGEXP.exec(data);
+ if (match === null) match = YAML_TIMESTAMP_REGEXP.exec(data);
+
+ if (match === null) throw new Error('Date resolve error');
+
+ // match: [1] year [2] month [3] day
+
+ year = +(match[1]);
+ month = +(match[2]) - 1; // JS month starts with 0
+ day = +(match[3]);
+
+ if (!match[4]) { // no hour
+ return new Date(Date.UTC(year, month, day));
+ }
+
+ // match: [4] hour [5] minute [6] second [7] fraction
+
+ hour = +(match[4]);
+ minute = +(match[5]);
+ second = +(match[6]);
+
+ if (match[7]) {
+ fraction = match[7].slice(0, 3);
+ while (fraction.length < 3) { // milli-seconds
+ fraction += '0';
+ }
+ fraction = +fraction;
+ }
+
+ // match: [8] tz [9] tz_sign [10] tz_hour [11] tz_minute
+
+ if (match[9]) {
+ tz_hour = +(match[10]);
+ tz_minute = +(match[11] || 0);
+ delta = (tz_hour * 60 + tz_minute) * 60000; // delta in mili-seconds
+ if (match[9] === '-') delta = -delta;
+ }
+
+ date = new Date(Date.UTC(year, month, day, hour, minute, second, fraction));
+
+ if (delta) date.setTime(date.getTime() - delta);
+
+ return date;
+}
+
+function representYamlTimestamp(object /*, style*/) {
+ return object.toISOString();
+}
+
+module.exports = new Type('tag:yaml.org,2002:timestamp', {
+ kind: 'scalar',
+ resolve: resolveYamlTimestamp,
+ construct: constructYamlTimestamp,
+ instanceOf: Date,
+ represent: representYamlTimestamp
+});
+
+},{"../type":13}],"/":[function(require,module,exports){
+'use strict';
+
+
+var yaml = require('./lib/js-yaml.js');
+
+
+module.exports = yaml;
+
+},{"./lib/js-yaml.js":1}]},{},[])("/")
+});
diff --git a/www/crm/wp-content/plugins/civicrm/civicrm/ext/api4/lib/shoreditch/bootstrap.css b/www/crm/wp-content/plugins/civicrm/civicrm/ext/api4/lib/shoreditch/bootstrap.css
new file mode 100644
index 00000000..8051b1ec
--- /dev/null
+++ b/www/crm/wp-content/plugins/civicrm/civicrm/ext/api4/lib/shoreditch/bootstrap.css
@@ -0,0 +1 @@
+#bootstrap-theme .editable-wrap{display:inline-block;white-space:nowrap;margin:0}#bootstrap-theme .editable-wrap .editable-controls, #bootstrap-theme .editable-wrap .editable-error{margin-bottom:0}#bootstrap-theme .editable-wrap .editable-controls>input, #bootstrap-theme .editable-wrap .editable-controls>select, #bootstrap-theme .editable-wrap .editable-controls>textarea{margin-bottom:0}#bootstrap-theme .editable-wrap .editable-input{display:inline-block}#bootstrap-theme .editable-buttons{display:inline-block;vertical-align:top}#bootstrap-theme .editable-buttons button{margin-left:5px}#bootstrap-theme .editable-input.editable-has-buttons{width:auto}#bootstrap-theme .editable-bstime .editable-input input[type=text]{width:46px}#bootstrap-theme .editable-bstime .well-small{margin-bottom:0;padding:10px}#bootstrap-theme .editable-range output{display:inline-block;min-width:30px;vertical-align:top;text-align:center}#bootstrap-theme .editable-color input[type=color]{width:50px}#bootstrap-theme .editable-checkbox label span, #bootstrap-theme .editable-checklist label span, #bootstrap-theme .editable-radiolist label span{margin-left:7px;margin-right:10px}#bootstrap-theme .editable-hide{display:none !important}#bootstrap-theme .editable-click, #bootstrap-theme a.editable-click{text-decoration:none;color:#428bca;border-bottom:dashed 1px #428bca}#bootstrap-theme .editable-click:hover, #bootstrap-theme a.editable-click:hover{text-decoration:none;color:#2a6496;border-bottom-color:#2a6496}#bootstrap-theme .editable-empty, #bootstrap-theme .editable-empty:hover, #bootstrap-theme .editable-empty:focus, #bootstrap-theme a.editable-empty, #bootstrap-theme a.editable-empty:hover, #bootstrap-theme a.editable-empty:focus{font-style:italic;color:#D14;text-decoration:none}.ta-hidden-input{width:1px;height:1px;border:none;position:absolute;top:-10000px;left:-10000px;opacity:0;overflow:hidden;margin:0;padding:0}#bootstrap-theme .ta-root.focussed>.ta-scroll-window.form-control{outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);border-color:#66afe9}#bootstrap-theme .ta-editor.ta-html, #bootstrap-theme .ta-scroll-window.form-control{min-height:300px;height:auto;overflow:auto;font-family:inherit;font-size:100%}#bootstrap-theme .ta-scroll-window.form-control{position:relative;padding:0}#bootstrap-theme .ta-scroll-window>.ta-bind{height:auto;min-height:300px;padding:6px 12px}#bootstrap-theme .ta-editor:focus{user-select:text}#bootstrap-theme .ta-resizer-handle-overlay{z-index:100;position:absolute;display:none}#bootstrap-theme .ta-resizer-handle-overlay>.ta-resizer-handle-info{position:absolute;bottom:16px;right:16px;border:1px solid #000;background-color:#FFF;opacity:0.7;padding:0 4px}#bootstrap-theme .ta-resizer-handle-overlay>.ta-resizer-handle-background{position:absolute;bottom:5px;right:5px;left:5px;top:5px;border:1px solid #000;background-color:rgba(0,0,0,0.2)}#bootstrap-theme .ta-resizer-handle-overlay>.ta-resizer-handle-corner{width:10px;height:10px;position:absolute}#bootstrap-theme .ta-resizer-handle-overlay>.ta-resizer-handle-corner-tl{top:0;left:0;border-left:1px solid #000;border-top:1px solid #000}#bootstrap-theme .ta-resizer-handle-overlay>.ta-resizer-handle-corner-tr{top:0;right:0;border-right:1px solid #000;border-top:1px solid #000}#bootstrap-theme .ta-resizer-handle-overlay>.ta-resizer-handle-corner-bl{bottom:0;left:0;border-left:1px solid #000;border-bottom:1px solid #000}#bootstrap-theme .ta-resizer-handle-overlay>.ta-resizer-handle-corner-br{bottom:0;right:0;border:1px solid #000;cursor:se-resize;background-color:#FFF}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;font-size:14px;font-weight:400;line-height:1.42857143;text-align:left;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);padding:1px}.popover.top{margin-top:-10px}.popover.bottom{margin-top:10px}.popover-title{font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;margin:0;padding:8px 14px}.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:rgba(0,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.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:rgba(0,0,0,0.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}#bootstrap-theme .ng-animate.item:not(.left):not(.right){-webkit-transition:0s ease-in-out left;transition:0s ease-in-out left}#bootstrap-theme .uib-datepicker .uib-title{width:100%}#bootstrap-theme .uib-day button, #bootstrap-theme .uib-month button, #bootstrap-theme .uib-year button{min-width:100%}#bootstrap-theme .uib-left, #bootstrap-theme .uib-right{width:100%}#bootstrap-theme .uib-position-measure{display:block !important;visibility:hidden !important;position:absolute !important;top:-9999px !important;left:-9999px !important}#bootstrap-theme .uib-position-scrollbar-measure{position:absolute !important;top:-9999px !important;width:50px !important;height:50px !important;overflow:scroll !important}#bootstrap-theme .uib-position-body-scrollbar-measure{overflow:scroll !important}#bootstrap-theme .uib-datepicker-popup.dropdown-menu{display:block;float:none;margin:0}#bootstrap-theme .uib-button-bar{padding:10px 9px 2px}[uib-tooltip-popup].tooltip.top-left>.tooltip-arrow, [uib-tooltip-popup].tooltip.top-right>.tooltip-arrow, [uib-tooltip-popup].tooltip.bottom-left>.tooltip-arrow, [uib-tooltip-popup].tooltip.bottom-right>.tooltip-arrow, [uib-tooltip-popup].tooltip.left-top>.tooltip-arrow, [uib-tooltip-popup].tooltip.left-bottom>.tooltip-arrow, [uib-tooltip-popup].tooltip.right-top>.tooltip-arrow, [uib-tooltip-popup].tooltip.right-bottom>.tooltip-arrow, [uib-tooltip-html-popup].tooltip.top-left>.tooltip-arrow, [uib-tooltip-html-popup].tooltip.top-right>.tooltip-arrow, [uib-tooltip-html-popup].tooltip.bottom-left>.tooltip-arrow, [uib-tooltip-html-popup].tooltip.bottom-right>.tooltip-arrow, [uib-tooltip-html-popup].tooltip.left-top>.tooltip-arrow, [uib-tooltip-html-popup].tooltip.left-bottom>.tooltip-arrow, [uib-tooltip-html-popup].tooltip.right-top>.tooltip-arrow, [uib-tooltip-html-popup].tooltip.right-bottom>.tooltip-arrow, [uib-tooltip-template-popup].tooltip.top-left>.tooltip-arrow, [uib-tooltip-template-popup].tooltip.top-right>.tooltip-arrow, [uib-tooltip-template-popup].tooltip.bottom-left>.tooltip-arrow, [uib-tooltip-template-popup].tooltip.bottom-right>.tooltip-arrow, [uib-tooltip-template-popup].tooltip.left-top>.tooltip-arrow, [uib-tooltip-template-popup].tooltip.left-bottom>.tooltip-arrow, [uib-tooltip-template-popup].tooltip.right-top>.tooltip-arrow, [uib-tooltip-template-popup].tooltip.right-bottom>.tooltip-arrow, [uib-popover-popup].popover.top-left>.arrow, [uib-popover-popup].popover.top-right>.arrow, [uib-popover-popup].popover.bottom-left>.arrow, [uib-popover-popup].popover.bottom-right>.arrow, [uib-popover-popup].popover.left-top>.arrow, [uib-popover-popup].popover.left-bottom>.arrow, [uib-popover-popup].popover.right-top>.arrow, [uib-popover-popup].popover.right-bottom>.arrow, [uib-popover-html-popup].popover.top-left>.arrow, [uib-popover-html-popup].popover.top-right>.arrow, [uib-popover-html-popup].popover.bottom-left>.arrow, [uib-popover-html-popup].popover.bottom-right>.arrow, [uib-popover-html-popup].popover.left-top>.arrow, [uib-popover-html-popup].popover.left-bottom>.arrow, [uib-popover-html-popup].popover.right-top>.arrow, [uib-popover-html-popup].popover.right-bottom>.arrow, [uib-popover-template-popup].popover.top-left>.arrow, [uib-popover-template-popup].popover.top-right>.arrow, [uib-popover-template-popup].popover.bottom-left>.arrow, [uib-popover-template-popup].popover.bottom-right>.arrow, [uib-popover-template-popup].popover.left-top>.arrow, [uib-popover-template-popup].popover.left-bottom>.arrow, [uib-popover-template-popup].popover.right-top>.arrow, [uib-popover-template-popup].popover.right-bottom>.arrow{top:auto;bottom:auto;left:auto;right:auto;margin:0}[uib-popover-popup].popover, [uib-popover-html-popup].popover, [uib-popover-template-popup].popover{display:block !important}#bootstrap-theme .uib-time input{width:50px}#bootstrap-theme [uib-typeahead-popup].dropdown-menu{display:block}#bootstrap-theme .ui-select-highlight{font-weight:bold}#bootstrap-theme .ui-select-offscreen{clip:rect(0 0 0 0) !important;width:1px !important;height:1px !important;border:0 !important;margin:0 !important;padding:0 !important;overflow:hidden !important;position:absolute !important;outline:0 !important;left:0px !important;top:0px !important}#bootstrap-theme .ui-select-choices-row:hover{background-color:#f5f5f5}#bootstrap-theme .ng-dirty.ng-invalid>a.select2-choice{border-color:#D44950}#bootstrap-theme .select2-result-single{padding-left:0}#bootstrap-theme .select2-locked>.select2-search-choice-close{display:none}#bootstrap-theme .select-locked>.ui-select-match-close{display:none}body#bootstrap-theme>.select2-container.open, #bootstrap-theme>.select2-container.open{z-index:9999}#bootstrap-theme .ui-select-container[theme="select2"].direction-up .ui-select-match, #bootstrap-theme .ui-select-container.select2.direction-up .ui-select-match{border-radius:4px;border-top-left-radius:0;border-top-right-radius:0}#bootstrap-theme .ui-select-container[theme="select2"].direction-up .ui-select-dropdown, #bootstrap-theme .ui-select-container.select2.direction-up .ui-select-dropdown{border-radius:4px;border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-width:1px;border-top-style:solid;box-shadow:0 -4px 8px rgba(0,0,0,0.25);margin-top:-4px}#bootstrap-theme .ui-select-container[theme="select2"].direction-up .ui-select-dropdown .select2-search, #bootstrap-theme .ui-select-container.select2.direction-up .ui-select-dropdown .select2-search{margin-top:4px}#bootstrap-theme .ui-select-container[theme="select2"].direction-up.select2-dropdown-open .ui-select-match, #bootstrap-theme .ui-select-container.select2.direction-up.select2-dropdown-open .ui-select-match{border-bottom-color:#5897fb}#bootstrap-theme .ui-select-container[theme="select2"] .ui-select-dropdown .ui-select-search-hidden, #bootstrap-theme .ui-select-container[theme="select2"] .ui-select-dropdown .ui-select-search-hidden input{opacity:0;height:0;min-height:0;padding:0;margin:0;border:0}#bootstrap-theme .selectize-input.selectize-focus{border-color:#007FBB !important}#bootstrap-theme .selectize-control.single>.selectize-input>input{width:100%}#bootstrap-theme .selectize-control.multi>.selectize-input>input{margin:0 !important}#bootstrap-theme .selectize-control>.selectize-dropdown{width:100%}#bootstrap-theme .ng-dirty.ng-invalid>div.selectize-input{border-color:#D44950}#bootstrap-theme .ui-select-container[theme="selectize"].direction-up .ui-select-dropdown{box-shadow:0 -4px 8px rgba(0,0,0,0.25);margin-top:-2px}#bootstrap-theme .ui-select-container[theme="selectize"] input.ui-select-search-hidden{opacity:0;height:0;min-height:0;padding:0;margin:0;border:0;width:0}#bootstrap-theme .btn-default-focus{color:#333;background-color:#EBEBEB;border-color:#ADADAD;text-decoration:none;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6)}#bootstrap-theme .ui-select-bootstrap .ui-select-toggle{position:relative}#bootstrap-theme .ui-select-bootstrap .ui-select-toggle>.caret{position:absolute;height:10px;top:50%;right:10px;margin-top:-2px}#bootstrap-theme .input-group>.ui-select-bootstrap.dropdown{position:static}#bootstrap-theme .input-group>.ui-select-bootstrap>input.ui-select-search.form-control{border-radius:4px;border-top-right-radius:0;border-bottom-right-radius:0}#bootstrap-theme .input-group>.ui-select-bootstrap>input.ui-select-search.form-control.direction-up{border-radius:4px !important;border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}#bootstrap-theme .ui-select-bootstrap .ui-select-search-hidden{opacity:0;height:0;min-height:0;padding:0;margin:0;border:0}#bootstrap-theme .ui-select-bootstrap>.ui-select-match>.btn{text-align:left !important}#bootstrap-theme .ui-select-bootstrap>.ui-select-match>.caret{position:absolute;top:45%;right:15px}#bootstrap-theme .ui-select-bootstrap>.ui-select-choices, #bootstrap-theme .ui-select-bootstrap>.ui-select-no-choice{width:100%;height:auto;max-height:200px;overflow-x:hidden;margin-top:-1px}body#bootstrap-theme>.ui-select-bootstrap.open, #bootstrap-theme>.ui-select-bootstrap.open{z-index:1000}#bootstrap-theme .ui-select-multiple.ui-select-bootstrap{height:auto;padding:3px 3px 0 3px}#bootstrap-theme .ui-select-multiple.ui-select-bootstrap input.ui-select-search{background-color:transparent !important;border:none;outline:none;height:1.666666em;margin-bottom:3px}#bootstrap-theme .ui-select-multiple.ui-select-bootstrap .ui-select-match .close{font-size:1.6em;line-height:0.75}#bootstrap-theme .ui-select-multiple.ui-select-bootstrap .ui-select-match-item{outline:0;margin:0 3px 3px 0}#bootstrap-theme .ui-select-multiple .ui-select-match-item{position:relative}#bootstrap-theme .ui-select-multiple .ui-select-match-item.dropping .ui-select-match-close{pointer-events:none}#bootstrap-theme .ui-select-multiple:hover .ui-select-match-item.dropping-before:before{content:"";position:absolute;top:0;right:100%;height:100%;margin-right:2px;border-left:1px solid #428bca}#bootstrap-theme .ui-select-multiple:hover .ui-select-match-item.dropping-after:after{content:"";position:absolute;top:0;left:100%;height:100%;margin-left:2px;border-right:1px solid #428bca}#bootstrap-theme .ui-select-bootstrap .ui-select-choices-row>span{cursor:pointer;display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}#bootstrap-theme .ui-select-bootstrap .ui-select-choices-row>span:hover, #bootstrap-theme .ui-select-bootstrap .ui-select-choices-row>span:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}#bootstrap-theme .ui-select-bootstrap .ui-select-choices-row.active>span{color:#fff;text-decoration:none;outline:0;background-color:#428bca}#bootstrap-theme .ui-select-bootstrap .ui-select-choices-row.disabled>span, #bootstrap-theme .ui-select-bootstrap .ui-select-choices-row.active.disabled>span{color:#777;cursor:not-allowed;background-color:#fff}#bootstrap-theme .ui-select-match.ng-hide-add, #bootstrap-theme .ui-select-search.ng-hide-add{display:none !important}#bootstrap-theme .ui-select-bootstrap.ng-dirty.ng-invalid>button.btn.ui-select-match{border-color:#D44950}#bootstrap-theme .ui-select-container[theme="bootstrap"].direction-up .ui-select-dropdown{box-shadow:0 -4px 8px rgba(0,0,0,0.25)}#bootstrap-theme .ui-select-bootstrap .ui-select-match-text{width:100%;padding-right:1em}#bootstrap-theme .ui-select-bootstrap .ui-select-match-text span{display:inline-block;width:100%;overflow:hidden}#bootstrap-theme .ui-select-bootstrap .ui-select-toggle>a.btn{position:absolute;height:10px;right:10px;margin-top:-2px}#bootstrap-theme .ui-select-refreshing{position:absolute;right:0;padding:8px 27px;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased}@-webkit-keyframes ui-select-spin{#bootstrap-theme 0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}#bootstrap-theme 100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes ui-select-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}#bootstrap-theme .ui-select-spin{-webkit-animation:ui-select-spin 2s infinite linear;animation:ui-select-spin 2s infinite linear}#bootstrap-theme .ui-select-refreshing.ng-animate{-webkit-animation:none 0s}@font-face{font-family:'FontAwesome';src:url("../fonts/font-awesome/fontawesome-webfont.eot?v=4.7.0");src:url("../fonts/font-awesome/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"),url("../fonts/font-awesome/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),url("../fonts/font-awesome/fontawesome-webfont.woff?v=4.7.0") format("woff"),url("../fonts/font-awesome/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),url("../fonts/font-awesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}#bootstrap-theme .fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bootstrap-theme .fa-lg{font-size:1.3333333333em;line-height:.75em;vertical-align:-15%}#bootstrap-theme .fa-2x{font-size:2em}#bootstrap-theme .fa-3x{font-size:3em}#bootstrap-theme .fa-4x{font-size:4em}#bootstrap-theme .fa-5x{font-size:5em}#bootstrap-theme .fa-fw{width:1.2857142857em;text-align:center}#bootstrap-theme .fa-ul{padding-left:0;margin-left:2.1428571429em;list-style-type:none}#bootstrap-theme .fa-ul>li{position:relative}#bootstrap-theme .fa-li{position:absolute;left:-2.1428571429em;width:2.1428571429em;top:.1428571429em;text-align:center}#bootstrap-theme .fa-li.fa-lg{left:-1.8571428571em}#bootstrap-theme .fa-border{padding:.2em .25em .15em;border:solid 0.08em #eee;border-radius:.1em}#bootstrap-theme .fa-pull-left{float:left}#bootstrap-theme .fa-pull-right{float:right}#bootstrap-theme .fa.fa-pull-left{margin-right:.3em}#bootstrap-theme .fa.fa-pull-right{margin-left:.3em}#bootstrap-theme .pull-right{float:right}#bootstrap-theme .pull-left{float:left}#bootstrap-theme .fa.pull-left{margin-right:.3em}#bootstrap-theme .fa.pull-right{margin-left:.3em}#bootstrap-theme .fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}#bootstrap-theme .fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{#bootstrap-theme 0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}#bootstrap-theme 100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}#bootstrap-theme .fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}#bootstrap-theme .fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}#bootstrap-theme .fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}#bootstrap-theme .fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}#bootstrap-theme .fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}#bootstrap-theme :root .fa-rotate-90, #bootstrap-theme :root .fa-rotate-180, #bootstrap-theme :root .fa-rotate-270, #bootstrap-theme :root .fa-flip-horizontal, #bootstrap-theme :root .fa-flip-vertical{filter:none}#bootstrap-theme .fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}#bootstrap-theme .fa-stack-1x, #bootstrap-theme .fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}#bootstrap-theme .fa-stack-1x{line-height:inherit}#bootstrap-theme .fa-stack-2x{font-size:2em}#bootstrap-theme .fa-inverse{color:#fff}#bootstrap-theme .fa-glass:before{content:""}#bootstrap-theme .fa-music:before{content:""}#bootstrap-theme .fa-search:before{content:""}#bootstrap-theme .fa-envelope-o:before{content:""}#bootstrap-theme .fa-heart:before{content:""}#bootstrap-theme .fa-star:before{content:""}#bootstrap-theme .fa-star-o:before{content:""}#bootstrap-theme .fa-user:before{content:""}#bootstrap-theme .fa-film:before{content:""}#bootstrap-theme .fa-th-large:before{content:""}#bootstrap-theme .fa-th:before{content:""}#bootstrap-theme .fa-th-list:before{content:""}#bootstrap-theme .fa-check:before{content:""}#bootstrap-theme .fa-remove:before, #bootstrap-theme .fa-close:before, #bootstrap-theme .fa-times:before{content:""}#bootstrap-theme .fa-search-plus:before{content:""}#bootstrap-theme .fa-search-minus:before{content:""}#bootstrap-theme .fa-power-off:before{content:""}#bootstrap-theme .fa-signal:before{content:""}#bootstrap-theme .fa-gear:before, #bootstrap-theme .fa-cog:before{content:""}#bootstrap-theme .fa-trash-o:before{content:""}#bootstrap-theme .fa-home:before{content:""}#bootstrap-theme .fa-file-o:before{content:""}#bootstrap-theme .fa-clock-o:before{content:""}#bootstrap-theme .fa-road:before{content:""}#bootstrap-theme .fa-download:before{content:""}#bootstrap-theme .fa-arrow-circle-o-down:before{content:""}#bootstrap-theme .fa-arrow-circle-o-up:before{content:""}#bootstrap-theme .fa-inbox:before{content:""}#bootstrap-theme .fa-play-circle-o:before{content:""}#bootstrap-theme .fa-rotate-right:before, #bootstrap-theme .fa-repeat:before{content:""}#bootstrap-theme .fa-refresh:before{content:""}#bootstrap-theme .fa-list-alt:before{content:""}#bootstrap-theme .fa-lock:before{content:""}#bootstrap-theme .fa-flag:before{content:""}#bootstrap-theme .fa-headphones:before{content:""}#bootstrap-theme .fa-volume-off:before{content:""}#bootstrap-theme .fa-volume-down:before{content:""}#bootstrap-theme .fa-volume-up:before{content:""}#bootstrap-theme .fa-qrcode:before{content:""}#bootstrap-theme .fa-barcode:before{content:""}#bootstrap-theme .fa-tag:before{content:""}#bootstrap-theme .fa-tags:before{content:""}#bootstrap-theme .fa-book:before{content:""}#bootstrap-theme .fa-bookmark:before{content:""}#bootstrap-theme .fa-print:before{content:""}#bootstrap-theme .fa-camera:before{content:""}#bootstrap-theme .fa-font:before{content:""}#bootstrap-theme .fa-bold:before{content:""}#bootstrap-theme .fa-italic:before{content:""}#bootstrap-theme .fa-text-height:before{content:""}#bootstrap-theme .fa-text-width:before{content:""}#bootstrap-theme .fa-align-left:before{content:""}#bootstrap-theme .fa-align-center:before{content:""}#bootstrap-theme .fa-align-right:before{content:""}#bootstrap-theme .fa-align-justify:before{content:""}#bootstrap-theme .fa-list:before{content:""}#bootstrap-theme .fa-dedent:before, #bootstrap-theme .fa-outdent:before{content:""}#bootstrap-theme .fa-indent:before{content:""}#bootstrap-theme .fa-video-camera:before{content:""}#bootstrap-theme .fa-photo:before, #bootstrap-theme .fa-image:before, #bootstrap-theme .fa-picture-o:before{content:""}#bootstrap-theme .fa-pencil:before{content:""}#bootstrap-theme .fa-map-marker:before{content:""}#bootstrap-theme .fa-adjust:before{content:""}#bootstrap-theme .fa-tint:before{content:""}#bootstrap-theme .fa-edit:before, #bootstrap-theme .fa-pencil-square-o:before{content:""}#bootstrap-theme .fa-share-square-o:before{content:""}#bootstrap-theme .fa-check-square-o:before{content:""}#bootstrap-theme .fa-arrows:before{content:""}#bootstrap-theme .fa-step-backward:before{content:""}#bootstrap-theme .fa-fast-backward:before{content:""}#bootstrap-theme .fa-backward:before{content:""}#bootstrap-theme .fa-play:before{content:""}#bootstrap-theme .fa-pause:before{content:""}#bootstrap-theme .fa-stop:before{content:""}#bootstrap-theme .fa-forward:before{content:""}#bootstrap-theme .fa-fast-forward:before{content:""}#bootstrap-theme .fa-step-forward:before{content:""}#bootstrap-theme .fa-eject:before{content:""}#bootstrap-theme .fa-chevron-left:before{content:""}#bootstrap-theme .fa-chevron-right:before{content:""}#bootstrap-theme .fa-plus-circle:before{content:""}#bootstrap-theme .fa-minus-circle:before{content:""}#bootstrap-theme .fa-times-circle:before{content:""}#bootstrap-theme .fa-check-circle:before{content:""}#bootstrap-theme .fa-question-circle:before{content:""}#bootstrap-theme .fa-info-circle:before{content:""}#bootstrap-theme .fa-crosshairs:before{content:""}#bootstrap-theme .fa-times-circle-o:before{content:""}#bootstrap-theme .fa-check-circle-o:before{content:""}#bootstrap-theme .fa-ban:before{content:""}#bootstrap-theme .fa-arrow-left:before{content:""}#bootstrap-theme .fa-arrow-right:before{content:""}#bootstrap-theme .fa-arrow-up:before{content:""}#bootstrap-theme .fa-arrow-down:before{content:""}#bootstrap-theme .fa-mail-forward:before, #bootstrap-theme .fa-share:before{content:""}#bootstrap-theme .fa-expand:before{content:""}#bootstrap-theme .fa-compress:before{content:""}#bootstrap-theme .fa-plus:before{content:""}#bootstrap-theme .fa-minus:before{content:""}#bootstrap-theme .fa-asterisk:before{content:""}#bootstrap-theme .fa-exclamation-circle:before{content:""}#bootstrap-theme .fa-gift:before{content:""}#bootstrap-theme .fa-leaf:before{content:""}#bootstrap-theme .fa-fire:before{content:""}#bootstrap-theme .fa-eye:before{content:""}#bootstrap-theme .fa-eye-slash:before{content:""}#bootstrap-theme .fa-warning:before, #bootstrap-theme .fa-exclamation-triangle:before{content:""}#bootstrap-theme .fa-plane:before{content:""}#bootstrap-theme .fa-calendar:before{content:""}#bootstrap-theme .fa-random:before{content:""}#bootstrap-theme .fa-comment:before{content:""}#bootstrap-theme .fa-magnet:before{content:""}#bootstrap-theme .fa-chevron-up:before{content:""}#bootstrap-theme .fa-chevron-down:before{content:""}#bootstrap-theme .fa-retweet:before{content:""}#bootstrap-theme .fa-shopping-cart:before{content:""}#bootstrap-theme .fa-folder:before{content:""}#bootstrap-theme .fa-folder-open:before{content:""}#bootstrap-theme .fa-arrows-v:before{content:""}#bootstrap-theme .fa-arrows-h:before{content:""}#bootstrap-theme .fa-bar-chart-o:before, #bootstrap-theme .fa-bar-chart:before{content:""}#bootstrap-theme .fa-twitter-square:before{content:""}#bootstrap-theme .fa-facebook-square:before{content:""}#bootstrap-theme .fa-camera-retro:before{content:""}#bootstrap-theme .fa-key:before{content:""}#bootstrap-theme .fa-gears:before, #bootstrap-theme .fa-cogs:before{content:""}#bootstrap-theme .fa-comments:before{content:""}#bootstrap-theme .fa-thumbs-o-up:before{content:""}#bootstrap-theme .fa-thumbs-o-down:before{content:""}#bootstrap-theme .fa-star-half:before{content:""}#bootstrap-theme .fa-heart-o:before{content:""}#bootstrap-theme .fa-sign-out:before{content:""}#bootstrap-theme .fa-linkedin-square:before{content:""}#bootstrap-theme .fa-thumb-tack:before{content:""}#bootstrap-theme .fa-external-link:before{content:""}#bootstrap-theme .fa-sign-in:before{content:""}#bootstrap-theme .fa-trophy:before{content:""}#bootstrap-theme .fa-github-square:before{content:""}#bootstrap-theme .fa-upload:before{content:""}#bootstrap-theme .fa-lemon-o:before{content:""}#bootstrap-theme .fa-phone:before{content:""}#bootstrap-theme .fa-square-o:before{content:""}#bootstrap-theme .fa-bookmark-o:before{content:""}#bootstrap-theme .fa-phone-square:before{content:""}#bootstrap-theme .fa-twitter:before{content:""}#bootstrap-theme .fa-facebook-f:before, #bootstrap-theme .fa-facebook:before{content:""}#bootstrap-theme .fa-github:before{content:""}#bootstrap-theme .fa-unlock:before{content:""}#bootstrap-theme .fa-credit-card:before{content:""}#bootstrap-theme .fa-feed:before, #bootstrap-theme .fa-rss:before{content:""}#bootstrap-theme .fa-hdd-o:before{content:""}#bootstrap-theme .fa-bullhorn:before{content:""}#bootstrap-theme .fa-bell:before{content:""}#bootstrap-theme .fa-certificate:before{content:""}#bootstrap-theme .fa-hand-o-right:before{content:""}#bootstrap-theme .fa-hand-o-left:before{content:""}#bootstrap-theme .fa-hand-o-up:before{content:""}#bootstrap-theme .fa-hand-o-down:before{content:""}#bootstrap-theme .fa-arrow-circle-left:before{content:""}#bootstrap-theme .fa-arrow-circle-right:before{content:""}#bootstrap-theme .fa-arrow-circle-up:before{content:""}#bootstrap-theme .fa-arrow-circle-down:before{content:""}#bootstrap-theme .fa-globe:before{content:""}#bootstrap-theme .fa-wrench:before{content:""}#bootstrap-theme .fa-tasks:before{content:""}#bootstrap-theme .fa-filter:before{content:""}#bootstrap-theme .fa-briefcase:before{content:""}#bootstrap-theme .fa-arrows-alt:before{content:""}#bootstrap-theme .fa-group:before, #bootstrap-theme .fa-users:before{content:""}#bootstrap-theme .fa-chain:before, #bootstrap-theme .fa-link:before{content:""}#bootstrap-theme .fa-cloud:before{content:""}#bootstrap-theme .fa-flask:before{content:""}#bootstrap-theme .fa-cut:before, #bootstrap-theme .fa-scissors:before{content:""}#bootstrap-theme .fa-copy:before, #bootstrap-theme .fa-files-o:before{content:""}#bootstrap-theme .fa-paperclip:before{content:""}#bootstrap-theme .fa-save:before, #bootstrap-theme .fa-floppy-o:before{content:""}#bootstrap-theme .fa-square:before{content:""}#bootstrap-theme .fa-navicon:before, #bootstrap-theme .fa-reorder:before, #bootstrap-theme .fa-bars:before{content:""}#bootstrap-theme .fa-list-ul:before{content:""}#bootstrap-theme .fa-list-ol:before{content:""}#bootstrap-theme .fa-strikethrough:before{content:""}#bootstrap-theme .fa-underline:before{content:""}#bootstrap-theme .fa-table:before{content:""}#bootstrap-theme .fa-magic:before{content:""}#bootstrap-theme .fa-truck:before{content:""}#bootstrap-theme .fa-pinterest:before{content:""}#bootstrap-theme .fa-pinterest-square:before{content:""}#bootstrap-theme .fa-google-plus-square:before{content:""}#bootstrap-theme .fa-google-plus:before{content:""}#bootstrap-theme .fa-money:before{content:""}#bootstrap-theme .fa-caret-down:before{content:""}#bootstrap-theme .fa-caret-up:before{content:""}#bootstrap-theme .fa-caret-left:before{content:""}#bootstrap-theme .fa-caret-right:before{content:""}#bootstrap-theme .fa-columns:before{content:""}#bootstrap-theme .fa-unsorted:before, #bootstrap-theme .fa-sort:before{content:""}#bootstrap-theme .fa-sort-down:before, #bootstrap-theme .fa-sort-desc:before{content:""}#bootstrap-theme .fa-sort-up:before, #bootstrap-theme .fa-sort-asc:before{content:""}#bootstrap-theme .fa-envelope:before{content:""}#bootstrap-theme .fa-linkedin:before{content:""}#bootstrap-theme .fa-rotate-left:before, #bootstrap-theme .fa-undo:before{content:""}#bootstrap-theme .fa-legal:before, #bootstrap-theme .fa-gavel:before{content:""}#bootstrap-theme .fa-dashboard:before, #bootstrap-theme .fa-tachometer:before{content:""}#bootstrap-theme .fa-comment-o:before{content:""}#bootstrap-theme .fa-comments-o:before{content:""}#bootstrap-theme .fa-flash:before, #bootstrap-theme .fa-bolt:before{content:""}#bootstrap-theme .fa-sitemap:before{content:""}#bootstrap-theme .fa-umbrella:before{content:""}#bootstrap-theme .fa-paste:before, #bootstrap-theme .fa-clipboard:before{content:""}#bootstrap-theme .fa-lightbulb-o:before{content:""}#bootstrap-theme .fa-exchange:before{content:""}#bootstrap-theme .fa-cloud-download:before{content:""}#bootstrap-theme .fa-cloud-upload:before{content:""}#bootstrap-theme .fa-user-md:before{content:""}#bootstrap-theme .fa-stethoscope:before{content:""}#bootstrap-theme .fa-suitcase:before{content:""}#bootstrap-theme .fa-bell-o:before{content:""}#bootstrap-theme .fa-coffee:before{content:""}#bootstrap-theme .fa-cutlery:before{content:""}#bootstrap-theme .fa-file-text-o:before{content:""}#bootstrap-theme .fa-building-o:before{content:""}#bootstrap-theme .fa-hospital-o:before{content:""}#bootstrap-theme .fa-ambulance:before{content:""}#bootstrap-theme .fa-medkit:before{content:""}#bootstrap-theme .fa-fighter-jet:before{content:""}#bootstrap-theme .fa-beer:before{content:""}#bootstrap-theme .fa-h-square:before{content:""}#bootstrap-theme .fa-plus-square:before{content:""}#bootstrap-theme .fa-angle-double-left:before{content:""}#bootstrap-theme .fa-angle-double-right:before{content:""}#bootstrap-theme .fa-angle-double-up:before{content:""}#bootstrap-theme .fa-angle-double-down:before{content:""}#bootstrap-theme .fa-angle-left:before{content:""}#bootstrap-theme .fa-angle-right:before{content:""}#bootstrap-theme .fa-angle-up:before{content:""}#bootstrap-theme .fa-angle-down:before{content:""}#bootstrap-theme .fa-desktop:before{content:""}#bootstrap-theme .fa-laptop:before{content:""}#bootstrap-theme .fa-tablet:before{content:""}#bootstrap-theme .fa-mobile-phone:before, #bootstrap-theme .fa-mobile:before{content:""}#bootstrap-theme .fa-circle-o:before{content:""}#bootstrap-theme .fa-quote-left:before{content:""}#bootstrap-theme .fa-quote-right:before{content:""}#bootstrap-theme .fa-spinner:before{content:""}#bootstrap-theme .fa-circle:before{content:""}#bootstrap-theme .fa-mail-reply:before, #bootstrap-theme .fa-reply:before{content:""}#bootstrap-theme .fa-github-alt:before{content:""}#bootstrap-theme .fa-folder-o:before{content:""}#bootstrap-theme .fa-folder-open-o:before{content:""}#bootstrap-theme .fa-smile-o:before{content:""}#bootstrap-theme .fa-frown-o:before{content:""}#bootstrap-theme .fa-meh-o:before{content:""}#bootstrap-theme .fa-gamepad:before{content:""}#bootstrap-theme .fa-keyboard-o:before{content:""}#bootstrap-theme .fa-flag-o:before{content:""}#bootstrap-theme .fa-flag-checkered:before{content:""}#bootstrap-theme .fa-terminal:before{content:""}#bootstrap-theme .fa-code:before{content:""}#bootstrap-theme .fa-mail-reply-all:before, #bootstrap-theme .fa-reply-all:before{content:""}#bootstrap-theme .fa-star-half-empty:before, #bootstrap-theme .fa-star-half-full:before, #bootstrap-theme .fa-star-half-o:before{content:""}#bootstrap-theme .fa-location-arrow:before{content:""}#bootstrap-theme .fa-crop:before{content:""}#bootstrap-theme .fa-code-fork:before{content:""}#bootstrap-theme .fa-unlink:before, #bootstrap-theme .fa-chain-broken:before{content:""}#bootstrap-theme .fa-question:before{content:""}#bootstrap-theme .fa-info:before{content:""}#bootstrap-theme .fa-exclamation:before{content:""}#bootstrap-theme .fa-superscript:before{content:""}#bootstrap-theme .fa-subscript:before{content:""}#bootstrap-theme .fa-eraser:before{content:""}#bootstrap-theme .fa-puzzle-piece:before{content:""}#bootstrap-theme .fa-microphone:before{content:""}#bootstrap-theme .fa-microphone-slash:before{content:""}#bootstrap-theme .fa-shield:before{content:""}#bootstrap-theme .fa-calendar-o:before{content:""}#bootstrap-theme .fa-fire-extinguisher:before{content:""}#bootstrap-theme .fa-rocket:before{content:""}#bootstrap-theme .fa-maxcdn:before{content:""}#bootstrap-theme .fa-chevron-circle-left:before{content:""}#bootstrap-theme .fa-chevron-circle-right:before{content:""}#bootstrap-theme .fa-chevron-circle-up:before{content:""}#bootstrap-theme .fa-chevron-circle-down:before{content:""}#bootstrap-theme .fa-html5:before{content:""}#bootstrap-theme .fa-css3:before{content:""}#bootstrap-theme .fa-anchor:before{content:""}#bootstrap-theme .fa-unlock-alt:before{content:""}#bootstrap-theme .fa-bullseye:before{content:""}#bootstrap-theme .fa-ellipsis-h:before{content:""}#bootstrap-theme .fa-ellipsis-v:before{content:""}#bootstrap-theme .fa-rss-square:before{content:""}#bootstrap-theme .fa-play-circle:before{content:""}#bootstrap-theme .fa-ticket:before{content:""}#bootstrap-theme .fa-minus-square:before{content:""}#bootstrap-theme .fa-minus-square-o:before{content:""}#bootstrap-theme .fa-level-up:before{content:""}#bootstrap-theme .fa-level-down:before{content:""}#bootstrap-theme .fa-check-square:before{content:""}#bootstrap-theme .fa-pencil-square:before{content:""}#bootstrap-theme .fa-external-link-square:before{content:""}#bootstrap-theme .fa-share-square:before{content:""}#bootstrap-theme .fa-compass:before{content:""}#bootstrap-theme .fa-toggle-down:before, #bootstrap-theme .fa-caret-square-o-down:before{content:""}#bootstrap-theme .fa-toggle-up:before, #bootstrap-theme .fa-caret-square-o-up:before{content:""}#bootstrap-theme .fa-toggle-right:before, #bootstrap-theme .fa-caret-square-o-right:before{content:""}#bootstrap-theme .fa-euro:before, #bootstrap-theme .fa-eur:before{content:""}#bootstrap-theme .fa-gbp:before{content:""}#bootstrap-theme .fa-dollar:before, #bootstrap-theme .fa-usd:before{content:""}#bootstrap-theme .fa-rupee:before, #bootstrap-theme .fa-inr:before{content:""}#bootstrap-theme .fa-cny:before, #bootstrap-theme .fa-rmb:before, #bootstrap-theme .fa-yen:before, #bootstrap-theme .fa-jpy:before{content:""}#bootstrap-theme .fa-ruble:before, #bootstrap-theme .fa-rouble:before, #bootstrap-theme .fa-rub:before{content:""}#bootstrap-theme .fa-won:before, #bootstrap-theme .fa-krw:before{content:""}#bootstrap-theme .fa-bitcoin:before, #bootstrap-theme .fa-btc:before{content:""}#bootstrap-theme .fa-file:before{content:""}#bootstrap-theme .fa-file-text:before{content:""}#bootstrap-theme .fa-sort-alpha-asc:before{content:""}#bootstrap-theme .fa-sort-alpha-desc:before{content:""}#bootstrap-theme .fa-sort-amount-asc:before{content:""}#bootstrap-theme .fa-sort-amount-desc:before{content:""}#bootstrap-theme .fa-sort-numeric-asc:before{content:""}#bootstrap-theme .fa-sort-numeric-desc:before{content:""}#bootstrap-theme .fa-thumbs-up:before{content:""}#bootstrap-theme .fa-thumbs-down:before{content:""}#bootstrap-theme .fa-youtube-square:before{content:""}#bootstrap-theme .fa-youtube:before{content:""}#bootstrap-theme .fa-xing:before{content:""}#bootstrap-theme .fa-xing-square:before{content:""}#bootstrap-theme .fa-youtube-play:before{content:""}#bootstrap-theme .fa-dropbox:before{content:""}#bootstrap-theme .fa-stack-overflow:before{content:""}#bootstrap-theme .fa-instagram:before{content:""}#bootstrap-theme .fa-flickr:before{content:""}#bootstrap-theme .fa-adn:before{content:""}#bootstrap-theme .fa-bitbucket:before{content:""}#bootstrap-theme .fa-bitbucket-square:before{content:""}#bootstrap-theme .fa-tumblr:before{content:""}#bootstrap-theme .fa-tumblr-square:before{content:""}#bootstrap-theme .fa-long-arrow-down:before{content:""}#bootstrap-theme .fa-long-arrow-up:before{content:""}#bootstrap-theme .fa-long-arrow-left:before{content:""}#bootstrap-theme .fa-long-arrow-right:before{content:""}#bootstrap-theme .fa-apple:before{content:""}#bootstrap-theme .fa-windows:before{content:""}#bootstrap-theme .fa-android:before{content:""}#bootstrap-theme .fa-linux:before{content:""}#bootstrap-theme .fa-dribbble:before{content:""}#bootstrap-theme .fa-skype:before{content:""}#bootstrap-theme .fa-foursquare:before{content:""}#bootstrap-theme .fa-trello:before{content:""}#bootstrap-theme .fa-female:before{content:""}#bootstrap-theme .fa-male:before{content:""}#bootstrap-theme .fa-gittip:before, #bootstrap-theme .fa-gratipay:before{content:""}#bootstrap-theme .fa-sun-o:before{content:""}#bootstrap-theme .fa-moon-o:before{content:""}#bootstrap-theme .fa-archive:before{content:""}#bootstrap-theme .fa-bug:before{content:""}#bootstrap-theme .fa-vk:before{content:""}#bootstrap-theme .fa-weibo:before{content:""}#bootstrap-theme .fa-renren:before{content:""}#bootstrap-theme .fa-pagelines:before{content:""}#bootstrap-theme .fa-stack-exchange:before{content:""}#bootstrap-theme .fa-arrow-circle-o-right:before{content:""}#bootstrap-theme .fa-arrow-circle-o-left:before{content:""}#bootstrap-theme .fa-toggle-left:before, #bootstrap-theme .fa-caret-square-o-left:before{content:""}#bootstrap-theme .fa-dot-circle-o:before{content:""}#bootstrap-theme .fa-wheelchair:before{content:""}#bootstrap-theme .fa-vimeo-square:before{content:""}#bootstrap-theme .fa-turkish-lira:before, #bootstrap-theme .fa-try:before{content:""}#bootstrap-theme .fa-plus-square-o:before{content:""}#bootstrap-theme .fa-space-shuttle:before{content:""}#bootstrap-theme .fa-slack:before{content:""}#bootstrap-theme .fa-envelope-square:before{content:""}#bootstrap-theme .fa-wordpress:before{content:""}#bootstrap-theme .fa-openid:before{content:""}#bootstrap-theme .fa-institution:before, #bootstrap-theme .fa-bank:before, #bootstrap-theme .fa-university:before{content:""}#bootstrap-theme .fa-mortar-board:before, #bootstrap-theme .fa-graduation-cap:before{content:""}#bootstrap-theme .fa-yahoo:before{content:""}#bootstrap-theme .fa-google:before{content:""}#bootstrap-theme .fa-reddit:before{content:""}#bootstrap-theme .fa-reddit-square:before{content:""}#bootstrap-theme .fa-stumbleupon-circle:before{content:""}#bootstrap-theme .fa-stumbleupon:before{content:""}#bootstrap-theme .fa-delicious:before{content:""}#bootstrap-theme .fa-digg:before{content:""}#bootstrap-theme .fa-pied-piper-pp:before{content:""}#bootstrap-theme .fa-pied-piper-alt:before{content:""}#bootstrap-theme .fa-drupal:before{content:""}#bootstrap-theme .fa-joomla:before{content:""}#bootstrap-theme .fa-language:before{content:""}#bootstrap-theme .fa-fax:before{content:""}#bootstrap-theme .fa-building:before{content:""}#bootstrap-theme .fa-child:before{content:""}#bootstrap-theme .fa-paw:before{content:""}#bootstrap-theme .fa-spoon:before{content:""}#bootstrap-theme .fa-cube:before{content:""}#bootstrap-theme .fa-cubes:before{content:""}#bootstrap-theme .fa-behance:before{content:""}#bootstrap-theme .fa-behance-square:before{content:""}#bootstrap-theme .fa-steam:before{content:""}#bootstrap-theme .fa-steam-square:before{content:""}#bootstrap-theme .fa-recycle:before{content:""}#bootstrap-theme .fa-automobile:before, #bootstrap-theme .fa-car:before{content:""}#bootstrap-theme .fa-cab:before, #bootstrap-theme .fa-taxi:before{content:""}#bootstrap-theme .fa-tree:before{content:""}#bootstrap-theme .fa-spotify:before{content:""}#bootstrap-theme .fa-deviantart:before{content:""}#bootstrap-theme .fa-soundcloud:before{content:""}#bootstrap-theme .fa-database:before{content:""}#bootstrap-theme .fa-file-pdf-o:before{content:""}#bootstrap-theme .fa-file-word-o:before{content:""}#bootstrap-theme .fa-file-excel-o:before{content:""}#bootstrap-theme .fa-file-powerpoint-o:before{content:""}#bootstrap-theme .fa-file-photo-o:before, #bootstrap-theme .fa-file-picture-o:before, #bootstrap-theme .fa-file-image-o:before{content:""}#bootstrap-theme .fa-file-zip-o:before, #bootstrap-theme .fa-file-archive-o:before{content:""}#bootstrap-theme .fa-file-sound-o:before, #bootstrap-theme .fa-file-audio-o:before{content:""}#bootstrap-theme .fa-file-movie-o:before, #bootstrap-theme .fa-file-video-o:before{content:""}#bootstrap-theme .fa-file-code-o:before{content:""}#bootstrap-theme .fa-vine:before{content:""}#bootstrap-theme .fa-codepen:before{content:""}#bootstrap-theme .fa-jsfiddle:before{content:""}#bootstrap-theme .fa-life-bouy:before, #bootstrap-theme .fa-life-buoy:before, #bootstrap-theme .fa-life-saver:before, #bootstrap-theme .fa-support:before, #bootstrap-theme .fa-life-ring:before{content:""}#bootstrap-theme .fa-circle-o-notch:before{content:""}#bootstrap-theme .fa-ra:before, #bootstrap-theme .fa-resistance:before, #bootstrap-theme .fa-rebel:before{content:""}#bootstrap-theme .fa-ge:before, #bootstrap-theme .fa-empire:before{content:""}#bootstrap-theme .fa-git-square:before{content:""}#bootstrap-theme .fa-git:before{content:""}#bootstrap-theme .fa-y-combinator-square:before, #bootstrap-theme .fa-yc-square:before, #bootstrap-theme .fa-hacker-news:before{content:""}#bootstrap-theme .fa-tencent-weibo:before{content:""}#bootstrap-theme .fa-qq:before{content:""}#bootstrap-theme .fa-wechat:before, #bootstrap-theme .fa-weixin:before{content:""}#bootstrap-theme .fa-send:before, #bootstrap-theme .fa-paper-plane:before{content:""}#bootstrap-theme .fa-send-o:before, #bootstrap-theme .fa-paper-plane-o:before{content:""}#bootstrap-theme .fa-history:before{content:""}#bootstrap-theme .fa-circle-thin:before{content:""}#bootstrap-theme .fa-header:before{content:""}#bootstrap-theme .fa-paragraph:before{content:""}#bootstrap-theme .fa-sliders:before{content:""}#bootstrap-theme .fa-share-alt:before{content:""}#bootstrap-theme .fa-share-alt-square:before{content:""}#bootstrap-theme .fa-bomb:before{content:""}#bootstrap-theme .fa-soccer-ball-o:before, #bootstrap-theme .fa-futbol-o:before{content:""}#bootstrap-theme .fa-tty:before{content:""}#bootstrap-theme .fa-binoculars:before{content:""}#bootstrap-theme .fa-plug:before{content:""}#bootstrap-theme .fa-slideshare:before{content:""}#bootstrap-theme .fa-twitch:before{content:""}#bootstrap-theme .fa-yelp:before{content:""}#bootstrap-theme .fa-newspaper-o:before{content:""}#bootstrap-theme .fa-wifi:before{content:""}#bootstrap-theme .fa-calculator:before{content:""}#bootstrap-theme .fa-paypal:before{content:""}#bootstrap-theme .fa-google-wallet:before{content:""}#bootstrap-theme .fa-cc-visa:before{content:""}#bootstrap-theme .fa-cc-mastercard:before{content:""}#bootstrap-theme .fa-cc-discover:before{content:""}#bootstrap-theme .fa-cc-amex:before{content:""}#bootstrap-theme .fa-cc-paypal:before{content:""}#bootstrap-theme .fa-cc-stripe:before{content:""}#bootstrap-theme .fa-bell-slash:before{content:""}#bootstrap-theme .fa-bell-slash-o:before{content:""}#bootstrap-theme .fa-trash:before{content:""}#bootstrap-theme .fa-copyright:before{content:""}#bootstrap-theme .fa-at:before{content:""}#bootstrap-theme .fa-eyedropper:before{content:""}#bootstrap-theme .fa-paint-brush:before{content:""}#bootstrap-theme .fa-birthday-cake:before{content:""}#bootstrap-theme .fa-area-chart:before{content:""}#bootstrap-theme .fa-pie-chart:before{content:""}#bootstrap-theme .fa-line-chart:before{content:""}#bootstrap-theme .fa-lastfm:before{content:""}#bootstrap-theme .fa-lastfm-square:before{content:""}#bootstrap-theme .fa-toggle-off:before{content:""}#bootstrap-theme .fa-toggle-on:before{content:""}#bootstrap-theme .fa-bicycle:before{content:""}#bootstrap-theme .fa-bus:before{content:""}#bootstrap-theme .fa-ioxhost:before{content:""}#bootstrap-theme .fa-angellist:before{content:""}#bootstrap-theme .fa-cc:before{content:""}#bootstrap-theme .fa-shekel:before, #bootstrap-theme .fa-sheqel:before, #bootstrap-theme .fa-ils:before{content:""}#bootstrap-theme .fa-meanpath:before{content:""}#bootstrap-theme .fa-buysellads:before{content:""}#bootstrap-theme .fa-connectdevelop:before{content:""}#bootstrap-theme .fa-dashcube:before{content:""}#bootstrap-theme .fa-forumbee:before{content:""}#bootstrap-theme .fa-leanpub:before{content:""}#bootstrap-theme .fa-sellsy:before{content:""}#bootstrap-theme .fa-shirtsinbulk:before{content:""}#bootstrap-theme .fa-simplybuilt:before{content:""}#bootstrap-theme .fa-skyatlas:before{content:""}#bootstrap-theme .fa-cart-plus:before{content:""}#bootstrap-theme .fa-cart-arrow-down:before{content:""}#bootstrap-theme .fa-diamond:before{content:""}#bootstrap-theme .fa-ship:before{content:""}#bootstrap-theme .fa-user-secret:before{content:""}#bootstrap-theme .fa-motorcycle:before{content:""}#bootstrap-theme .fa-street-view:before{content:""}#bootstrap-theme .fa-heartbeat:before{content:""}#bootstrap-theme .fa-venus:before{content:""}#bootstrap-theme .fa-mars:before{content:""}#bootstrap-theme .fa-mercury:before{content:""}#bootstrap-theme .fa-intersex:before, #bootstrap-theme .fa-transgender:before{content:""}#bootstrap-theme .fa-transgender-alt:before{content:""}#bootstrap-theme .fa-venus-double:before{content:""}#bootstrap-theme .fa-mars-double:before{content:""}#bootstrap-theme .fa-venus-mars:before{content:""}#bootstrap-theme .fa-mars-stroke:before{content:""}#bootstrap-theme .fa-mars-stroke-v:before{content:""}#bootstrap-theme .fa-mars-stroke-h:before{content:""}#bootstrap-theme .fa-neuter:before{content:""}#bootstrap-theme .fa-genderless:before{content:""}#bootstrap-theme .fa-facebook-official:before{content:""}#bootstrap-theme .fa-pinterest-p:before{content:""}#bootstrap-theme .fa-whatsapp:before{content:""}#bootstrap-theme .fa-server:before{content:""}#bootstrap-theme .fa-user-plus:before{content:""}#bootstrap-theme .fa-user-times:before{content:""}#bootstrap-theme .fa-hotel:before, #bootstrap-theme .fa-bed:before{content:""}#bootstrap-theme .fa-viacoin:before{content:""}#bootstrap-theme .fa-train:before{content:""}#bootstrap-theme .fa-subway:before{content:""}#bootstrap-theme .fa-medium:before{content:""}#bootstrap-theme .fa-yc:before, #bootstrap-theme .fa-y-combinator:before{content:""}#bootstrap-theme .fa-optin-monster:before{content:""}#bootstrap-theme .fa-opencart:before{content:""}#bootstrap-theme .fa-expeditedssl:before{content:""}#bootstrap-theme .fa-battery-4:before, #bootstrap-theme .fa-battery:before, #bootstrap-theme .fa-battery-full:before{content:""}#bootstrap-theme .fa-battery-3:before, #bootstrap-theme .fa-battery-three-quarters:before{content:""}#bootstrap-theme .fa-battery-2:before, #bootstrap-theme .fa-battery-half:before{content:""}#bootstrap-theme .fa-battery-1:before, #bootstrap-theme .fa-battery-quarter:before{content:""}#bootstrap-theme .fa-battery-0:before, #bootstrap-theme .fa-battery-empty:before{content:""}#bootstrap-theme .fa-mouse-pointer:before{content:""}#bootstrap-theme .fa-i-cursor:before{content:""}#bootstrap-theme .fa-object-group:before{content:""}#bootstrap-theme .fa-object-ungroup:before{content:""}#bootstrap-theme .fa-sticky-note:before{content:""}#bootstrap-theme .fa-sticky-note-o:before{content:""}#bootstrap-theme .fa-cc-jcb:before{content:""}#bootstrap-theme .fa-cc-diners-club:before{content:""}#bootstrap-theme .fa-clone:before{content:""}#bootstrap-theme .fa-balance-scale:before{content:""}#bootstrap-theme .fa-hourglass-o:before{content:""}#bootstrap-theme .fa-hourglass-1:before, #bootstrap-theme .fa-hourglass-start:before{content:""}#bootstrap-theme .fa-hourglass-2:before, #bootstrap-theme .fa-hourglass-half:before{content:""}#bootstrap-theme .fa-hourglass-3:before, #bootstrap-theme .fa-hourglass-end:before{content:""}#bootstrap-theme .fa-hourglass:before{content:""}#bootstrap-theme .fa-hand-grab-o:before, #bootstrap-theme .fa-hand-rock-o:before{content:""}#bootstrap-theme .fa-hand-stop-o:before, #bootstrap-theme .fa-hand-paper-o:before{content:""}#bootstrap-theme .fa-hand-scissors-o:before{content:""}#bootstrap-theme .fa-hand-lizard-o:before{content:""}#bootstrap-theme .fa-hand-spock-o:before{content:""}#bootstrap-theme .fa-hand-pointer-o:before{content:""}#bootstrap-theme .fa-hand-peace-o:before{content:""}#bootstrap-theme .fa-trademark:before{content:""}#bootstrap-theme .fa-registered:before{content:""}#bootstrap-theme .fa-creative-commons:before{content:""}#bootstrap-theme .fa-gg:before{content:""}#bootstrap-theme .fa-gg-circle:before{content:""}#bootstrap-theme .fa-tripadvisor:before{content:""}#bootstrap-theme .fa-odnoklassniki:before{content:""}#bootstrap-theme .fa-odnoklassniki-square:before{content:""}#bootstrap-theme .fa-get-pocket:before{content:""}#bootstrap-theme .fa-wikipedia-w:before{content:""}#bootstrap-theme .fa-safari:before{content:""}#bootstrap-theme .fa-chrome:before{content:""}#bootstrap-theme .fa-firefox:before{content:""}#bootstrap-theme .fa-opera:before{content:""}#bootstrap-theme .fa-internet-explorer:before{content:""}#bootstrap-theme .fa-tv:before, #bootstrap-theme .fa-television:before{content:""}#bootstrap-theme .fa-contao:before{content:""}#bootstrap-theme .fa-500px:before{content:""}#bootstrap-theme .fa-amazon:before{content:""}#bootstrap-theme .fa-calendar-plus-o:before{content:""}#bootstrap-theme .fa-calendar-minus-o:before{content:""}#bootstrap-theme .fa-calendar-times-o:before{content:""}#bootstrap-theme .fa-calendar-check-o:before{content:""}#bootstrap-theme .fa-industry:before{content:""}#bootstrap-theme .fa-map-pin:before{content:""}#bootstrap-theme .fa-map-signs:before{content:""}#bootstrap-theme .fa-map-o:before{content:""}#bootstrap-theme .fa-map:before{content:""}#bootstrap-theme .fa-commenting:before{content:""}#bootstrap-theme .fa-commenting-o:before{content:""}#bootstrap-theme .fa-houzz:before{content:""}#bootstrap-theme .fa-vimeo:before{content:""}#bootstrap-theme .fa-black-tie:before{content:""}#bootstrap-theme .fa-fonticons:before{content:""}#bootstrap-theme .fa-reddit-alien:before{content:""}#bootstrap-theme .fa-edge:before{content:""}#bootstrap-theme .fa-credit-card-alt:before{content:""}#bootstrap-theme .fa-codiepie:before{content:""}#bootstrap-theme .fa-modx:before{content:""}#bootstrap-theme .fa-fort-awesome:before{content:""}#bootstrap-theme .fa-usb:before{content:""}#bootstrap-theme .fa-product-hunt:before{content:""}#bootstrap-theme .fa-mixcloud:before{content:""}#bootstrap-theme .fa-scribd:before{content:""}#bootstrap-theme .fa-pause-circle:before{content:""}#bootstrap-theme .fa-pause-circle-o:before{content:""}#bootstrap-theme .fa-stop-circle:before{content:""}#bootstrap-theme .fa-stop-circle-o:before{content:""}#bootstrap-theme .fa-shopping-bag:before{content:""}#bootstrap-theme .fa-shopping-basket:before{content:""}#bootstrap-theme .fa-hashtag:before{content:""}#bootstrap-theme .fa-bluetooth:before{content:""}#bootstrap-theme .fa-bluetooth-b:before{content:""}#bootstrap-theme .fa-percent:before{content:""}#bootstrap-theme .fa-gitlab:before{content:""}#bootstrap-theme .fa-wpbeginner:before{content:""}#bootstrap-theme .fa-wpforms:before{content:""}#bootstrap-theme .fa-envira:before{content:""}#bootstrap-theme .fa-universal-access:before{content:""}#bootstrap-theme .fa-wheelchair-alt:before{content:""}#bootstrap-theme .fa-question-circle-o:before{content:""}#bootstrap-theme .fa-blind:before{content:""}#bootstrap-theme .fa-audio-description:before{content:""}#bootstrap-theme .fa-volume-control-phone:before{content:""}#bootstrap-theme .fa-braille:before{content:""}#bootstrap-theme .fa-assistive-listening-systems:before{content:""}#bootstrap-theme .fa-asl-interpreting:before, #bootstrap-theme .fa-american-sign-language-interpreting:before{content:""}#bootstrap-theme .fa-deafness:before, #bootstrap-theme .fa-hard-of-hearing:before, #bootstrap-theme .fa-deaf:before{content:""}#bootstrap-theme .fa-glide:before{content:""}#bootstrap-theme .fa-glide-g:before{content:""}#bootstrap-theme .fa-signing:before, #bootstrap-theme .fa-sign-language:before{content:""}#bootstrap-theme .fa-low-vision:before{content:""}#bootstrap-theme .fa-viadeo:before{content:""}#bootstrap-theme .fa-viadeo-square:before{content:""}#bootstrap-theme .fa-snapchat:before{content:""}#bootstrap-theme .fa-snapchat-ghost:before{content:""}#bootstrap-theme .fa-snapchat-square:before{content:""}#bootstrap-theme .fa-pied-piper:before{content:""}#bootstrap-theme .fa-first-order:before{content:""}#bootstrap-theme .fa-yoast:before{content:""}#bootstrap-theme .fa-themeisle:before{content:""}#bootstrap-theme .fa-google-plus-circle:before, #bootstrap-theme .fa-google-plus-official:before{content:""}#bootstrap-theme .fa-fa:before, #bootstrap-theme .fa-font-awesome:before{content:""}#bootstrap-theme .fa-handshake-o:before{content:""}#bootstrap-theme .fa-envelope-open:before{content:""}#bootstrap-theme .fa-envelope-open-o:before{content:""}#bootstrap-theme .fa-linode:before{content:""}#bootstrap-theme .fa-address-book:before{content:""}#bootstrap-theme .fa-address-book-o:before{content:""}#bootstrap-theme .fa-vcard:before, #bootstrap-theme .fa-address-card:before{content:""}#bootstrap-theme .fa-vcard-o:before, #bootstrap-theme .fa-address-card-o:before{content:""}#bootstrap-theme .fa-user-circle:before{content:""}#bootstrap-theme .fa-user-circle-o:before{content:""}#bootstrap-theme .fa-user-o:before{content:""}#bootstrap-theme .fa-id-badge:before{content:""}#bootstrap-theme .fa-drivers-license:before, #bootstrap-theme .fa-id-card:before{content:""}#bootstrap-theme .fa-drivers-license-o:before, #bootstrap-theme .fa-id-card-o:before{content:""}#bootstrap-theme .fa-quora:before{content:""}#bootstrap-theme .fa-free-code-camp:before{content:""}#bootstrap-theme .fa-telegram:before{content:""}#bootstrap-theme .fa-thermometer-4:before, #bootstrap-theme .fa-thermometer:before, #bootstrap-theme .fa-thermometer-full:before{content:""}#bootstrap-theme .fa-thermometer-3:before, #bootstrap-theme .fa-thermometer-three-quarters:before{content:""}#bootstrap-theme .fa-thermometer-2:before, #bootstrap-theme .fa-thermometer-half:before{content:""}#bootstrap-theme .fa-thermometer-1:before, #bootstrap-theme .fa-thermometer-quarter:before{content:""}#bootstrap-theme .fa-thermometer-0:before, #bootstrap-theme .fa-thermometer-empty:before{content:""}#bootstrap-theme .fa-shower:before{content:""}#bootstrap-theme .fa-bathtub:before, #bootstrap-theme .fa-s15:before, #bootstrap-theme .fa-bath:before{content:""}#bootstrap-theme .fa-podcast:before{content:""}#bootstrap-theme .fa-window-maximize:before{content:""}#bootstrap-theme .fa-window-minimize:before{content:""}#bootstrap-theme .fa-window-restore:before{content:""}#bootstrap-theme .fa-times-rectangle:before, #bootstrap-theme .fa-window-close:before{content:""}#bootstrap-theme .fa-times-rectangle-o:before, #bootstrap-theme .fa-window-close-o:before{content:""}#bootstrap-theme .fa-bandcamp:before{content:""}#bootstrap-theme .fa-grav:before{content:""}#bootstrap-theme .fa-etsy:before{content:""}#bootstrap-theme .fa-imdb:before{content:""}#bootstrap-theme .fa-ravelry:before{content:""}#bootstrap-theme .fa-eercast:before{content:""}#bootstrap-theme .fa-microchip:before{content:""}#bootstrap-theme .fa-snowflake-o:before{content:""}#bootstrap-theme .fa-superpowers:before{content:""}#bootstrap-theme .fa-wpexplorer:before{content:""}#bootstrap-theme .fa-meetup:before{content:""}#bootstrap-theme .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}#bootstrap-theme .sr-only-focusable:active, #bootstrap-theme .sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}#bootstrap-theme .ps-container{-ms-touch-action:none;touch-action:none;overflow:hidden !important;-ms-overflow-style:none}@supports (-ms-overflow-style: none){#bootstrap-theme .ps-container{overflow:auto !important}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){#bootstrap-theme .ps-container{overflow:auto !important}}#bootstrap-theme .ps-container.ps-active-x>.ps-scrollbar-x-rail, #bootstrap-theme .ps-container.ps-active-y>.ps-scrollbar-y-rail{display:block;background-color:rgba(0,0,0,0)}#bootstrap-theme .ps-container.ps-in-scrolling{pointer-events:none}#bootstrap-theme .ps-container.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail{background-color:#eee;opacity:.9}#bootstrap-theme .ps-container.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail>.ps-scrollbar-x{background-color:#999}#bootstrap-theme .ps-container.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail{background-color:#eee;opacity:.9}#bootstrap-theme .ps-container.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail>.ps-scrollbar-y{background-color:#999}#bootstrap-theme .ps-container>.ps-scrollbar-x-rail{display:none;position:absolute;border-radius:4px;opacity:0;transition:background-color .2s linear, opacity .2s linear;bottom:3px;height:8px}#bootstrap-theme .ps-container>.ps-scrollbar-x-rail>.ps-scrollbar-x{position:absolute;background-color:#aaa;border-radius:4px;transition:background-color .2s linear;bottom:0;height:8px}#bootstrap-theme .ps-container>.ps-scrollbar-y-rail{display:none;position:absolute;border-radius:4px;opacity:0;transition:background-color .2s linear, opacity .2s linear;right:3px;width:8px}#bootstrap-theme .ps-container>.ps-scrollbar-y-rail>.ps-scrollbar-y{position:absolute;background-color:#aaa;border-radius:4px;transition:background-color .2s linear;right:0;width:8px}#bootstrap-theme .ps-container:hover.ps-in-scrolling{pointer-events:none}#bootstrap-theme .ps-container:hover.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail{background-color:#eee;opacity:.9}#bootstrap-theme .ps-container:hover.ps-in-scrolling.ps-x>.ps-scrollbar-x-rail>.ps-scrollbar-x{background-color:#999}#bootstrap-theme .ps-container:hover.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail{background-color:#eee;opacity:.9}#bootstrap-theme .ps-container:hover.ps-in-scrolling.ps-y>.ps-scrollbar-y-rail>.ps-scrollbar-y{background-color:#999}#bootstrap-theme .ps-container:hover>.ps-scrollbar-x-rail, #bootstrap-theme .ps-container:hover>.ps-scrollbar-y-rail{opacity:.6}#bootstrap-theme .ps-container:hover>.ps-scrollbar-x-rail:hover{background-color:#eee;opacity:.9}#bootstrap-theme .ps-container:hover>.ps-scrollbar-x-rail:hover>.ps-scrollbar-x{background-color:#999}#bootstrap-theme .ps-container:hover>.ps-scrollbar-y-rail:hover{background-color:#eee;opacity:.9}#bootstrap-theme .ps-container:hover>.ps-scrollbar-y-rail:hover>.ps-scrollbar-y{background-color:#999}#bootstrap-theme .form-control .select2-choice{border:0;border-radius:2px;text-decoration:none !important}#bootstrap-theme .form-control .select2-choice .select2-arrow{border-radius:0 2px 2px 0;background:transparent;border-left:0 none;right:4px;top:2px}#bootstrap-theme .form-control.select2-container{padding:0;height:auto}#bootstrap-theme .form-control.select2-container.select2-dropdown-open{border-color:#5897FB;border-radius:3px 3px 0 0}#bootstrap-theme .form-control .select2-container.select2-dropdown-open .select2-choices{border-radius:3px 3px 0 0}#bootstrap-theme .form-control.select2-container .select2-choices{border:0 !important;border-radius:3px;padding-left:4px;margin-bottom:0}#bootstrap-theme .control-group.warning .select2-container .select2-choice, #bootstrap-theme .control-group.warning .select2-container .select2-choices, #bootstrap-theme .control-group.warning .select2-container-active .select2-choice, #bootstrap-theme .control-group.warning .select2-container-active .select2-choices, #bootstrap-theme .control-group.warning .select2-dropdown-open.select2-drop-above .select2-choice, #bootstrap-theme .control-group.warning .select2-dropdown-open.select2-drop-above .select2-choices, #bootstrap-theme .control-group.warning .select2-container-multi.select2-container-active .select2-choices{border:1px solid #C09853 !important}#bootstrap-theme .control-group.warning .select2-container .select2-choice div{border-left:1px solid #C09853 !important;background:#FCF8E3 !important}#bootstrap-theme .control-group.error .select2-container .select2-choice, #bootstrap-theme .control-group.error .select2-container .select2-choices, #bootstrap-theme .control-group.error .select2-container-active .select2-choice, #bootstrap-theme .control-group.error .select2-container-active .select2-choices, #bootstrap-theme .control-group.error .select2-dropdown-open.select2-drop-above .select2-choice, #bootstrap-theme .control-group.error .select2-dropdown-open.select2-drop-above .select2-choices, #bootstrap-theme .control-group.error .select2-container-multi.select2-container-active .select2-choices{border:1px solid #B94A48 !important}#bootstrap-theme .control-group.error .select2-container .select2-choice div{border-left:1px solid #B94A48 !important;background:#F2DEDE !important}#bootstrap-theme .control-group.info .select2-container .select2-choice, #bootstrap-theme .control-group.info .select2-container .select2-choices, #bootstrap-theme .control-group.info .select2-container-active .select2-choice, #bootstrap-theme .control-group.info .select2-container-active .select2-choices, #bootstrap-theme .control-group.info .select2-dropdown-open.select2-drop-above .select2-choice, #bootstrap-theme .control-group.info .select2-dropdown-open.select2-drop-above .select2-choices, #bootstrap-theme .control-group.info .select2-container-multi.select2-container-active .select2-choices{border:1px solid #3A87AD !important}#bootstrap-theme .control-group.info .select2-container .select2-choice div{border-left:1px solid #3A87AD !important;background:#D9EDF7 !important}#bootstrap-theme .control-group.success .select2-container .select2-choice, #bootstrap-theme .control-group.success .select2-container .select2-choices, #bootstrap-theme .control-group.success .select2-container-active .select2-choice, #bootstrap-theme .control-group.success .select2-container-active .select2-choices, #bootstrap-theme .control-group.success .select2-dropdown-open.select2-drop-above .select2-choice, #bootstrap-theme .control-group.success .select2-dropdown-open.select2-drop-above .select2-choices, #bootstrap-theme .control-group.success .select2-container-multi.select2-container-active .select2-choices{border:1px solid #468847 !important}#bootstrap-theme .control-group.success .select2-container .select2-choice div{border-left:1px solid #468847 !important;background:#DFF0D8 !important}#bootstrap-theme .fa-0_5x{font-size:9px;font-weight:300}#bootstrap-theme .fa-1x{font-size:13px}#bootstrap-theme .fa-color-primary{color:#0071bd}@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;src:url("../fonts/open-sans/OpenSans-Regular-webfont.eot");src:url("../fonts/open-sans/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"),url("../fonts/open-sans/OpenSans-Regular-webfont.woff") format("woff"),url("../fonts/open-sans/OpenSans-Regular-webfont.ttf") format("truetype"),url("../fonts/open-sans/OpenSans-Regular-webfont.svg#open_sansregular") format("svg")}@font-face{font-family:'Open Sans';font-style:normal;font-weight:600;src:url("../fonts/open-sans/OpenSans-Semibold-webfont.eot");src:url("../fonts/open-sans/OpenSans-Semibold-webfont.eot?#iefix") format("embedded-opentype"),url("../fonts/open-sans/OpenSans-Semibold-webfont.woff") format("woff"),url("../fonts/open-sans/OpenSans-Semibold-webfont.ttf") format("truetype"),url("../fonts/open-sans/OpenSans-Semibold-webfont.svg#open_sanssemibold") format("svg")}@font-face{font-family:'Open Sans';font-style:normal;font-weight:700;src:url("../fonts/open-sans/OpenSans-Bold-webfont.eot");src:url("../fonts/open-sans/OpenSans-Bold-webfont.eot?#iefix") format("embedded-opentype"),url("../fonts/open-sans/OpenSans-Bold-webfont.woff") format("woff"),url("../fonts/open-sans/OpenSans-Bold-webfont.ttf") format("truetype"),url("../fonts/open-sans/OpenSans-Bold-webfont.svg#open_sansbold") format("svg")}@font-face{font-family:'Open Sans';font-style:italic;font-weight:400;src:url("../fonts/open-sans/OpenSans-Italic-webfont.eot");src:url("../fonts/open-sans/OpenSans-Italic-webfont.eot?#iefix") format("embedded-opentype"),url("../fonts/open-sans/OpenSans-Italic-webfont.woff") format("woff"),url("../fonts/open-sans/OpenSans-Italic-webfont.ttf") format("truetype"),url("../fonts/open-sans/OpenSans-Italic-webfont.svg#open_sansitalic") format("svg")}html#bootstrap-theme.overlay-open .navbar-fixed-top, #bootstrap-theme.overlay-open .navbar-fixed-top{z-index:400}html#bootstrap-theme.js fieldset.collapsed, #bootstrap-theme.js fieldset.collapsed{height:auto}html#bootstrap-theme.js input.form-autocomplete, #bootstrap-theme.js input.form-autocomplete{background-image:none}body#bootstrap-theme, #bootstrap-theme{position:relative}body#bootstrap-theme.admin-expanded.admin-vertical.admin-nw .navbar, #bootstrap-theme.admin-expanded.admin-vertical.admin-nw .navbar, body#bootstrap-theme.admin-expanded.admin-vertical.admin-sw .navbar, #bootstrap-theme.admin-expanded.admin-vertical.admin-sw .navbar{margin-left:260px}body#bootstrap-theme.navbar-is-fixed-top, #bootstrap-theme.navbar-is-fixed-top{padding-top:64px !important}body#bootstrap-theme.navbar-is-fixed-bottom, #bootstrap-theme.navbar-is-fixed-bottom{padding-bottom:64px !important}body#bootstrap-theme.toolbar, #bootstrap-theme.toolbar{padding-top:30px !important}body#bootstrap-theme.toolbar .navbar-fixed-top, #bootstrap-theme.toolbar .navbar-fixed-top{top:30px}body#bootstrap-theme.toolbar.navbar-is-fixed-top, #bootstrap-theme.toolbar.navbar-is-fixed-top{padding-top:94px !important}body#bootstrap-theme.toolbar-drawer, #bootstrap-theme.toolbar-drawer{padding-top:64px !important}body#bootstrap-theme.toolbar-drawer .navbar-fixed-top, #bootstrap-theme.toolbar-drawer .navbar-fixed-top{top:64px}body#bootstrap-theme.toolbar-drawer.navbar-is-fixed-top, #bootstrap-theme.toolbar-drawer.navbar-is-fixed-top{padding-top:128px !important}body#bootstrap-theme.admin-menu .navbar-fixed-top, #bootstrap-theme.admin-menu .navbar-fixed-top{top:29px}body#bootstrap-theme.admin-menu.navbar-is-fixed-top, #bootstrap-theme.admin-menu.navbar-is-fixed-top{padding-top:93px !important}body#bootstrap-theme div#admin-toolbar, #bootstrap-theme div#admin-toolbar{z-index:1600}body#bootstrap-theme #toolbar, #bootstrap-theme #toolbar, body#bootstrap-theme #admin-menu, #bootstrap-theme #admin-menu, body#bootstrap-theme #admin-toolbar, #bootstrap-theme #admin-toolbar{-webkit-box-shadow:none;box-shadow:none}body#bootstrap-theme #admin-menu, #bootstrap-theme #admin-menu{margin:0;padding:0;position:fixed;z-index:1600}body#bootstrap-theme #admin-menu .dropdown li, #bootstrap-theme #admin-menu .dropdown li{line-height:normal}#bootstrap-theme dt, #bootstrap-theme dd{margin:0}#bootstrap-theme .navbar.container{margin-top:20px}@media screen and (min-width: screen-sm-min){#bootstrap-theme .navbar.container{max-width:706px}}@media screen and (min-width: screen-md-min){#bootstrap-theme .navbar.container{max-width:926px}}@media screen and (min-width: screen-lg-min){#bootstrap-theme .navbar.container{max-width:1126px}}#bootstrap-theme .navbar.container>.container{margin:0;padding:0;width:auto}#bootstrap-theme #overlay-container, #bootstrap-theme .overlay-modal-background, #bootstrap-theme .overlay-element{z-index:1500}#bootstrap-theme #toolbar{z-index:1600}#bootstrap-theme #toolbar ul{padding:0;margin:0}#bootstrap-theme #toolbar ul a, #bootstrap-theme #toolbar ul a:hover{color:#fff;text-decoration:none}#bootstrap-theme .modal{z-index:1620}#bootstrap-theme .modal-dialog{z-index:1630}#bootstrap-theme .modal-backdrop{z-index:1610}#bootstrap-theme .footer{margin-top:45px;padding-top:35px;padding-bottom:36px;border-top:1px solid #E5E5E5}#bootstrap-theme .element-invisible{margin:0;padding:0;width:1px}#bootstrap-theme .navbar .logo{margin-right:-15px;padding-left:15px;padding-right:15px}@media screen and (min-width: screen-sm-min){#bootstrap-theme .navbar .logo{margin-right:0;padding-left:0}}#bootstrap-theme ul.secondary{float:left}@media screen and (min-width: screen-sm-min){#bootstrap-theme ul.secondary{float:right}}#bootstrap-theme .page-header{margin-top:0}#bootstrap-theme .block:first-child h2.block-title{margin-top:0}#bootstrap-theme p:last-child{margin-bottom:0}#bootstrap-theme .region-help>.glyphicon{font-size:17px;float:left;margin:-0.05em 0.5em 0 0}#bootstrap-theme .region-help .block{overflow:hidden}#bootstrap-theme form#search-block-form{margin:0}#bootstrap-theme .navbar #block-search-form{float:none;margin:5px 0 5px 5px}@media screen and (min-width: screen-md-min){#bootstrap-theme .navbar #block-search-form{float:right}}#bootstrap-theme .navbar-search .control-group{margin-bottom:0px}#bootstrap-theme ul.action-links{margin:10px 0;padding:0}#bootstrap-theme ul.action-links li{display:inline;margin:0;padding:0 4px 0 0}#bootstrap-theme ul.action-links .glyphicon{padding-right:0.5em}#bootstrap-theme input, #bootstrap-theme textarea, #bootstrap-theme select, #bootstrap-theme .uneditable-input{max-width:100%;width:auto}#bootstrap-theme input.error{color:#cf3458;border-color:#cf3458}#bootstrap-theme fieldset legend.panel-heading{font-size:13px;float:left;line-height:1em;margin:0}#bootstrap-theme fieldset .panel-body{clear:both}#bootstrap-theme fieldset .panel-heading a.panel-title{color:inherit;display:block;margin:-10px -15px;padding:10px 15px}#bootstrap-theme fieldset .panel-heading a.panel-title:hover{text-decoration:none}#bootstrap-theme .form-actions{clear:both}#bootstrap-theme .resizable-textarea textarea{border-radius:2px 2px 0 0}#bootstrap-theme .radio:first-child, #bootstrap-theme .checkbox:first-child{margin-top:0}#bootstrap-theme .radio:last-child, #bootstrap-theme .checkbox:last-child{margin-bottom:0}#bootstrap-theme .help-block, #bootstrap-theme .control-group .help-inline{color:#e8eef0;font-size:12px;margin:5px 0 10px;padding:0}#bootstrap-theme .panel-heading{display:block}#bootstrap-theme a.tabledrag-handle .handle{height:auto;width:auto}#bootstrap-theme .error{color:#cf3458}#bootstrap-theme div.error, #bootstrap-theme table tr.error{background-color:#f2dede;color:#cf3458}#bootstrap-theme .control-group.error{background:none}#bootstrap-theme .control-group.error label, #bootstrap-theme .control-group.error .control-label{color:#cf3458;font-weight:600}#bootstrap-theme .control-group.error input, #bootstrap-theme .control-group.error textarea, #bootstrap-theme .control-group.error select, #bootstrap-theme .control-group.error .uneditable-input{color:#464354;border:1px solid #c2cfd8}#bootstrap-theme .control-group.error .help-block, #bootstrap-theme .control-group.error .help-inline{color:#4d4d69}#bootstrap-theme .list-inline>li.first{padding-left:0}#bootstrap-theme .nav-tabs{margin-bottom:10px}#bootstrap-theme ul{margin:initial;padding-left:40px}#bootstrap-theme ul li.collapsed, #bootstrap-theme ul li.expanded, #bootstrap-theme ul li.leaf{list-style:none;list-style-image:none}#bootstrap-theme .tabs--secondary{margin:0 0 10px}#bootstrap-theme .submitted{margin-bottom:1em;font-style:italic;font-weight:normal;color:#777}#bootstrap-theme .password-strength{width:17em;float:right;margin-top:1.4em}#bootstrap-theme .password-strength-title{display:inline}#bootstrap-theme .password-strength-text{float:right;font-weight:bold}#bootstrap-theme .password-indicator{background-color:#8e8ea0;height:0.3em;width:100%}#bootstrap-theme .password-indicator div{height:100%;width:0%;background-color:#9494a5}#bootstrap-theme input.password-confirm, #bootstrap-theme input.password-field{width:16em;margin-bottom:0.4em}#bootstrap-theme div.password-confirm{float:right;margin-top:1.5em;visibility:hidden;width:17em}#bootstrap-theme div.form-item div.password-suggestions{padding:0.2em 0.5em;margin:0.7em 0;width:38.5em;border:1px solid #B4B4B4}#bootstrap-theme div.password-suggestions ul{margin-bottom:0}#bootstrap-theme .confirm-parent, #bootstrap-theme .password-parent{clear:left;margin:0;width:36.3em}#bootstrap-theme .progress-wrapper .progress{margin-bottom:10px}#bootstrap-theme .pagination ul>li>a.progress-disabled{float:left}#bootstrap-theme .form-autocomplete .glyphicon{color:#e8eef0;font-size:120%}#bootstrap-theme .form-autocomplete .glyphicon.glyphicon-spin{color:#0071bd}#bootstrap-theme .form-autocomplete .input-group-addon{background-color:#fff}#bootstrap-theme .ajax-progress .glyphicon{font-size:90%;margin:0 -.25em 0 0.5em}#bootstrap-theme .glyphicon-spin{display:inline-block;-moz-animation:spin 1s infinite linear;-o-animation:spin 1s infinite linear;-webkit-animation:spin 1s infinite linear;animation:spin 1s infinite linear}#bootstrap-theme a .glyphicon-spin{display:inline-block;text-decoration:none}@-moz-keyframes spin{#bootstrap-theme 0%{-moz-transform:rotate(0deg)}#bootstrap-theme 100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{#bootstrap-theme 0%{-webkit-transform:rotate(0deg)}#bootstrap-theme 100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{#bootstrap-theme 0%{-o-transform:rotate(0deg)}#bootstrap-theme 100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{#bootstrap-theme 0%{-ms-transform:rotate(0deg)}#bootstrap-theme 100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}#bootstrap-theme .glyphicon-refresh{-webkit-transform-origin:50% 45%;-moz-transform-origin:50% 45%;-ms-transform-origin:50% 45%;-o-transform-origin:50% 45%;transform-origin:50% 45%}#bootstrap-theme .tabbable{margin-bottom:20px}#bootstrap-theme .tabs-below>.nav-tabs, #bootstrap-theme .tabs-left>.nav-tabs, #bootstrap-theme .tabs-right>.nav-tabs{border-bottom:0}#bootstrap-theme .tabs-below>.nav-tabs .summary, #bootstrap-theme .tabs-left>.nav-tabs .summary, #bootstrap-theme .tabs-right>.nav-tabs .summary{color:#bcbcc8;font-size:12px}#bootstrap-theme .tab-pane>.panel-heading{display:none}#bootstrap-theme .tab-content>.active{display:block}#bootstrap-theme .tabs-below>.nav-tabs{border-top:1px solid #d3dee2}#bootstrap-theme .tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0}#bootstrap-theme .tabs-below>.nav-tabs>li>a{border-radius:0 0 2px 2px}#bootstrap-theme .tabs-below>.nav-tabs>li>a:hover, #bootstrap-theme .tabs-below>.nav-tabs>li>a:focus{border-top-color:#d3dee2;border-bottom-color:transparent}#bootstrap-theme .tabs-below>.nav-tabs>.active>a, #bootstrap-theme .tabs-below>.nav-tabs>.active>a:hover, #bootstrap-theme .tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #d3dee2 #d3dee2 #d3dee2}#bootstrap-theme .tabs-left>.nav-tabs, #bootstrap-theme .tabs-right>.nav-tabs{padding-bottom:20px;width:220px}#bootstrap-theme .tabs-left>.nav-tabs>li, #bootstrap-theme .tabs-right>.nav-tabs>li{float:none}#bootstrap-theme .tabs-left>.nav-tabs>li:focus, #bootstrap-theme .tabs-right>.nav-tabs>li:focus{outline:0}#bootstrap-theme .tabs-left>.nav-tabs>li>a, #bootstrap-theme .tabs-right>.nav-tabs>li>a{margin-right:0;margin-bottom:3px}#bootstrap-theme .tabs-left>.nav-tabs>li>a:focus, #bootstrap-theme .tabs-right>.nav-tabs>li>a:focus{outline:0}#bootstrap-theme .tabs-left>.tab-content, #bootstrap-theme .tabs-right>.tab-content{border-radius:0 2px 2px 2px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05);border:1px solid #d3dee2;overflow:hidden;padding:10px 15px}#bootstrap-theme .tabs-left>.nav-tabs{float:left;margin-right:-1px}#bootstrap-theme .tabs-left>.nav-tabs>li>a{border-radius:2px 0 0 2px}#bootstrap-theme .tabs-left>.nav-tabs>li>a:hover, #bootstrap-theme .tabs-left>.nav-tabs>li>a:focus{border-color:#f3f6f7 #d3dee2 #f3f6f7 #f3f6f7}#bootstrap-theme .tabs-left>.nav-tabs>.active>a, #bootstrap-theme .tabs-left>.nav-tabs>.active>a:hover, #bootstrap-theme .tabs-left>.nav-tabs>.active>a:focus{border-color:#d3dee2 transparent #d3dee2 #d3dee2;-webkit-box-shadow:-1px 1px 1px rgba(0,0,0,0.05);box-shadow:-1px 1px 1px rgba(0,0,0,0.05)}#bootstrap-theme .tabs-right>.nav-tabs{float:right;margin-left:-1px}#bootstrap-theme .tabs-right>.nav-tabs>li>a{border-radius:0 2px 2px 0}#bootstrap-theme .tabs-right>.nav-tabs>li>a:hover, #bootstrap-theme .tabs-right>.nav-tabs>li>a:focus{border-color:#f3f6f7 #f3f6f7 #f3f6f7 #d3dee2;-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.05);box-shadow:1px 1px 1px rgba(0,0,0,0.05)}#bootstrap-theme .tabs-right>.nav-tabs>.active>a, #bootstrap-theme .tabs-right>.nav-tabs>.active>a:hover, #bootstrap-theme .tabs-right>.nav-tabs>.active>a:focus{border-color:#d3dee2 #d3dee2 #d3dee2 transparent}#bootstrap-theme th.checkbox, #bootstrap-theme td.checkbox, #bootstrap-theme th.radio, #bootstrap-theme td.radio{display:table-cell}#bootstrap-theme .views-display-settings .label{font-size:100%;color:#666666}#bootstrap-theme .views-display-settings .footer{padding:0;margin:4px 0 0 0}#bootstrap-theme table .radio input[type="radio"], #bootstrap-theme table .checkbox input[type="checkbox"]{max-width:inherit}#bootstrap-theme .alert a{font-weight:bold}#bootstrap-theme .alert-success a{color:#2e2c38}#bootstrap-theme .alert-info a{color:#2e2c38}#bootstrap-theme .alert-warning a{color:#2e2c38}#bootstrap-theme .alert-danger a{color:#2e2c38}#bootstrap-theme h3{background-color:rgba(0,0,0,0);background-color:initial;border:0;border:initial;border-radius:0;border-radius:initial;box-shadow:none;box-shadow:initial;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-family:initial;padding:0;padding:initial;margin:0;margin:initial;font-size:16px;font-weight:400}#bootstrap-theme table{border:0;border:initial;margin:0;margin:initial;font-size:inherit}#bootstrap-theme table td{border:0;border:initial;color:inherit}#bootstrap-theme table th{background-color:inherit;background-color:initial;border:0;border:initial;text-transform:none;text-transform:initial;color:inherit;font-size:inherit;font-weight:600}#bootstrap-theme .collapsed{background:none;background:initial;cursor:auto;cursor:initial;padding:0;padding:initial}#bootstrap-theme .panel{position:static;position:initial;padding:0;padding:initial;width:auto;width:initial;z-index:auto;z-index:initial;display:block}#bootstrap-theme .crm-button .crm-i{left:0.6em;top:0.6em}#bootstrap-theme .crm-select2{width:15em}#bootstrap-theme label .crm-error-label{padding:0;padding:initial;font-size:13px}html#bootstrap-theme, #bootstrap-theme{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body#bootstrap-theme, #bootstrap-theme{margin:0}#bootstrap-theme article, #bootstrap-theme aside, #bootstrap-theme details, #bootstrap-theme figcaption, #bootstrap-theme figure, #bootstrap-theme footer, #bootstrap-theme header, #bootstrap-theme hgroup, #bootstrap-theme main, #bootstrap-theme menu, #bootstrap-theme nav, #bootstrap-theme section, #bootstrap-theme summary{display:block}#bootstrap-theme audio, #bootstrap-theme canvas, #bootstrap-theme progress, #bootstrap-theme video{display:inline-block;vertical-align:baseline}#bootstrap-theme audio:not([controls]){display:none;height:0}#bootstrap-theme [hidden], #bootstrap-theme template{display:none}#bootstrap-theme a{background-color:transparent}#bootstrap-theme a:active, #bootstrap-theme a:hover{outline:0}#bootstrap-theme abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}#bootstrap-theme b, #bootstrap-theme strong{font-weight:bold}#bootstrap-theme dfn{font-style:italic}#bootstrap-theme h1{font-size:2em;margin:0.67em 0}#bootstrap-theme mark{background:#ff0;color:#000}#bootstrap-theme small{font-size:80%}#bootstrap-theme sub, #bootstrap-theme sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}#bootstrap-theme sup{top:-0.5em}#bootstrap-theme sub{bottom:-0.25em}#bootstrap-theme img{border:0}#bootstrap-theme svg:not(:root){overflow:hidden}#bootstrap-theme figure{margin:1em 40px}#bootstrap-theme hr{box-sizing:content-box;height:0}#bootstrap-theme pre{overflow:auto}#bootstrap-theme code, #bootstrap-theme kbd, #bootstrap-theme pre, #bootstrap-theme samp{font-family:monospace, monospace;font-size:1em}#bootstrap-theme button, #bootstrap-theme input, #bootstrap-theme optgroup, #bootstrap-theme select, #bootstrap-theme textarea{color:inherit;font:inherit;margin:0}#bootstrap-theme button{overflow:visible}#bootstrap-theme button, #bootstrap-theme select{text-transform:none}#bootstrap-theme button, html#bootstrap-theme input[type="button"], #bootstrap-theme input[type="button"], #bootstrap-theme input[type="reset"], #bootstrap-theme input[type="submit"]{-webkit-appearance:button;cursor:pointer}#bootstrap-theme button[disabled], html#bootstrap-theme input[disabled], #bootstrap-theme input[disabled]{cursor:default}#bootstrap-theme button::-moz-focus-inner, #bootstrap-theme input::-moz-focus-inner{border:0;padding:0}#bootstrap-theme input{line-height:normal}#bootstrap-theme input[type="checkbox"], #bootstrap-theme input[type="radio"]{box-sizing:border-box;padding:0}#bootstrap-theme input[type="number"]::-webkit-inner-spin-button, #bootstrap-theme input[type="number"]::-webkit-outer-spin-button{height:auto}#bootstrap-theme input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}#bootstrap-theme input[type="search"]::-webkit-search-cancel-button, #bootstrap-theme input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}#bootstrap-theme fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}#bootstrap-theme legend{border:0;padding:0}#bootstrap-theme textarea{overflow:auto}#bootstrap-theme optgroup{font-weight:bold}#bootstrap-theme table{border-collapse:collapse;border-spacing:0}#bootstrap-theme td, #bootstrap-theme th{padding:0}@media print{#bootstrap-theme *, #bootstrap-theme *:before, #bootstrap-theme *:after{color:#000 !important;text-shadow:none !important;background:transparent !important;box-shadow:none !important}#bootstrap-theme a, #bootstrap-theme a:visited{text-decoration:underline}#bootstrap-theme a[href]:after{content:" (" attr(href) ")"}#bootstrap-theme abbr[title]:after{content:" (" attr(title) ")"}#bootstrap-theme a[href^="#"]:after, #bootstrap-theme a[href^="javascript:"]:after{content:""}#bootstrap-theme pre, #bootstrap-theme blockquote{border:1px solid #999;page-break-inside:avoid}#bootstrap-theme thead{display:table-header-group}#bootstrap-theme tr, #bootstrap-theme img{page-break-inside:avoid}#bootstrap-theme img{max-width:100% !important}#bootstrap-theme p, #bootstrap-theme h2, #bootstrap-theme h3{orphans:3;widows:3}#bootstrap-theme h2, #bootstrap-theme h3{page-break-after:avoid}#bootstrap-theme .navbar{display:none}#bootstrap-theme .btn>.caret, #bootstrap-theme .dropup>.btn>.caret{border-top-color:#000 !important}#bootstrap-theme .label{border:1px solid #000}#bootstrap-theme .table{border-collapse:collapse !important}#bootstrap-theme .table td, #bootstrap-theme .table th{background-color:#fff !important}#bootstrap-theme .table-bordered th, #bootstrap-theme .table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:"Glyphicons Halflings";src:url("../base/fonts/glyphicons-halflings-regular.eot");src:url("../base/fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"),url("../base/fonts/glyphicons-halflings-regular.woff2") format("woff2"),url("../base/fonts/glyphicons-halflings-regular.woff") format("woff"),url("../base/fonts/glyphicons-halflings-regular.ttf") format("truetype"),url("../base/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg")}#bootstrap-theme .glyphicon{position:relative;top:1px;display:inline-block;font-family:"Glyphicons Halflings";font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bootstrap-theme .glyphicon-asterisk:before{content:"\002a"}#bootstrap-theme .glyphicon-plus:before{content:"\002b"}#bootstrap-theme .glyphicon-euro:before, #bootstrap-theme .glyphicon-eur:before{content:"\20ac"}#bootstrap-theme .glyphicon-minus:before{content:"\2212"}#bootstrap-theme .glyphicon-cloud:before{content:"\2601"}#bootstrap-theme .glyphicon-envelope:before{content:"\2709"}#bootstrap-theme .glyphicon-pencil:before{content:"\270f"}#bootstrap-theme .glyphicon-glass:before{content:"\e001"}#bootstrap-theme .glyphicon-music:before{content:"\e002"}#bootstrap-theme .glyphicon-search:before{content:"\e003"}#bootstrap-theme .glyphicon-heart:before{content:"\e005"}#bootstrap-theme .glyphicon-star:before{content:"\e006"}#bootstrap-theme .glyphicon-star-empty:before{content:"\e007"}#bootstrap-theme .glyphicon-user:before{content:"\e008"}#bootstrap-theme .glyphicon-film:before{content:"\e009"}#bootstrap-theme .glyphicon-th-large:before{content:"\e010"}#bootstrap-theme .glyphicon-th:before{content:"\e011"}#bootstrap-theme .glyphicon-th-list:before{content:"\e012"}#bootstrap-theme .glyphicon-ok:before{content:"\e013"}#bootstrap-theme .glyphicon-remove:before{content:"\e014"}#bootstrap-theme .glyphicon-zoom-in:before{content:"\e015"}#bootstrap-theme .glyphicon-zoom-out:before{content:"\e016"}#bootstrap-theme .glyphicon-off:before{content:"\e017"}#bootstrap-theme .glyphicon-signal:before{content:"\e018"}#bootstrap-theme .glyphicon-cog:before{content:"\e019"}#bootstrap-theme .glyphicon-trash:before{content:"\e020"}#bootstrap-theme .glyphicon-home:before{content:"\e021"}#bootstrap-theme .glyphicon-file:before{content:"\e022"}#bootstrap-theme .glyphicon-time:before{content:"\e023"}#bootstrap-theme .glyphicon-road:before{content:"\e024"}#bootstrap-theme .glyphicon-download-alt:before{content:"\e025"}#bootstrap-theme .glyphicon-download:before{content:"\e026"}#bootstrap-theme .glyphicon-upload:before{content:"\e027"}#bootstrap-theme .glyphicon-inbox:before{content:"\e028"}#bootstrap-theme .glyphicon-play-circle:before{content:"\e029"}#bootstrap-theme .glyphicon-repeat:before{content:"\e030"}#bootstrap-theme .glyphicon-refresh:before{content:"\e031"}#bootstrap-theme .glyphicon-list-alt:before{content:"\e032"}#bootstrap-theme .glyphicon-lock:before{content:"\e033"}#bootstrap-theme .glyphicon-flag:before{content:"\e034"}#bootstrap-theme .glyphicon-headphones:before{content:"\e035"}#bootstrap-theme .glyphicon-volume-off:before{content:"\e036"}#bootstrap-theme .glyphicon-volume-down:before{content:"\e037"}#bootstrap-theme .glyphicon-volume-up:before{content:"\e038"}#bootstrap-theme .glyphicon-qrcode:before{content:"\e039"}#bootstrap-theme .glyphicon-barcode:before{content:"\e040"}#bootstrap-theme .glyphicon-tag:before{content:"\e041"}#bootstrap-theme .glyphicon-tags:before{content:"\e042"}#bootstrap-theme .glyphicon-book:before{content:"\e043"}#bootstrap-theme .glyphicon-bookmark:before{content:"\e044"}#bootstrap-theme .glyphicon-print:before{content:"\e045"}#bootstrap-theme .glyphicon-camera:before{content:"\e046"}#bootstrap-theme .glyphicon-font:before{content:"\e047"}#bootstrap-theme .glyphicon-bold:before{content:"\e048"}#bootstrap-theme .glyphicon-italic:before{content:"\e049"}#bootstrap-theme .glyphicon-text-height:before{content:"\e050"}#bootstrap-theme .glyphicon-text-width:before{content:"\e051"}#bootstrap-theme .glyphicon-align-left:before{content:"\e052"}#bootstrap-theme .glyphicon-align-center:before{content:"\e053"}#bootstrap-theme .glyphicon-align-right:before{content:"\e054"}#bootstrap-theme .glyphicon-align-justify:before{content:"\e055"}#bootstrap-theme .glyphicon-list:before{content:"\e056"}#bootstrap-theme .glyphicon-indent-left:before{content:"\e057"}#bootstrap-theme .glyphicon-indent-right:before{content:"\e058"}#bootstrap-theme .glyphicon-facetime-video:before{content:"\e059"}#bootstrap-theme .glyphicon-picture:before{content:"\e060"}#bootstrap-theme .glyphicon-map-marker:before{content:"\e062"}#bootstrap-theme .glyphicon-adjust:before{content:"\e063"}#bootstrap-theme .glyphicon-tint:before{content:"\e064"}#bootstrap-theme .glyphicon-edit:before{content:"\e065"}#bootstrap-theme .glyphicon-share:before{content:"\e066"}#bootstrap-theme .glyphicon-check:before{content:"\e067"}#bootstrap-theme .glyphicon-move:before{content:"\e068"}#bootstrap-theme .glyphicon-step-backward:before{content:"\e069"}#bootstrap-theme .glyphicon-fast-backward:before{content:"\e070"}#bootstrap-theme .glyphicon-backward:before{content:"\e071"}#bootstrap-theme .glyphicon-play:before{content:"\e072"}#bootstrap-theme .glyphicon-pause:before{content:"\e073"}#bootstrap-theme .glyphicon-stop:before{content:"\e074"}#bootstrap-theme .glyphicon-forward:before{content:"\e075"}#bootstrap-theme .glyphicon-fast-forward:before{content:"\e076"}#bootstrap-theme .glyphicon-step-forward:before{content:"\e077"}#bootstrap-theme .glyphicon-eject:before{content:"\e078"}#bootstrap-theme .glyphicon-chevron-left:before{content:"\e079"}#bootstrap-theme .glyphicon-chevron-right:before{content:"\e080"}#bootstrap-theme .glyphicon-plus-sign:before{content:"\e081"}#bootstrap-theme .glyphicon-minus-sign:before{content:"\e082"}#bootstrap-theme .glyphicon-remove-sign:before{content:"\e083"}#bootstrap-theme .glyphicon-ok-sign:before{content:"\e084"}#bootstrap-theme .glyphicon-question-sign:before{content:"\e085"}#bootstrap-theme .glyphicon-info-sign:before{content:"\e086"}#bootstrap-theme .glyphicon-screenshot:before{content:"\e087"}#bootstrap-theme .glyphicon-remove-circle:before{content:"\e088"}#bootstrap-theme .glyphicon-ok-circle:before{content:"\e089"}#bootstrap-theme .glyphicon-ban-circle:before{content:"\e090"}#bootstrap-theme .glyphicon-arrow-left:before{content:"\e091"}#bootstrap-theme .glyphicon-arrow-right:before{content:"\e092"}#bootstrap-theme .glyphicon-arrow-up:before{content:"\e093"}#bootstrap-theme .glyphicon-arrow-down:before{content:"\e094"}#bootstrap-theme .glyphicon-share-alt:before{content:"\e095"}#bootstrap-theme .glyphicon-resize-full:before{content:"\e096"}#bootstrap-theme .glyphicon-resize-small:before{content:"\e097"}#bootstrap-theme .glyphicon-exclamation-sign:before{content:"\e101"}#bootstrap-theme .glyphicon-gift:before{content:"\e102"}#bootstrap-theme .glyphicon-leaf:before{content:"\e103"}#bootstrap-theme .glyphicon-fire:before{content:"\e104"}#bootstrap-theme .glyphicon-eye-open:before{content:"\e105"}#bootstrap-theme .glyphicon-eye-close:before{content:"\e106"}#bootstrap-theme .glyphicon-warning-sign:before{content:"\e107"}#bootstrap-theme .glyphicon-plane:before{content:"\e108"}#bootstrap-theme .glyphicon-calendar:before{content:"\e109"}#bootstrap-theme .glyphicon-random:before{content:"\e110"}#bootstrap-theme .glyphicon-comment:before{content:"\e111"}#bootstrap-theme .glyphicon-magnet:before{content:"\e112"}#bootstrap-theme .glyphicon-chevron-up:before{content:"\e113"}#bootstrap-theme .glyphicon-chevron-down:before{content:"\e114"}#bootstrap-theme .glyphicon-retweet:before{content:"\e115"}#bootstrap-theme .glyphicon-shopping-cart:before{content:"\e116"}#bootstrap-theme .glyphicon-folder-close:before{content:"\e117"}#bootstrap-theme .glyphicon-folder-open:before{content:"\e118"}#bootstrap-theme .glyphicon-resize-vertical:before{content:"\e119"}#bootstrap-theme .glyphicon-resize-horizontal:before{content:"\e120"}#bootstrap-theme .glyphicon-hdd:before{content:"\e121"}#bootstrap-theme .glyphicon-bullhorn:before{content:"\e122"}#bootstrap-theme .glyphicon-bell:before{content:"\e123"}#bootstrap-theme .glyphicon-certificate:before{content:"\e124"}#bootstrap-theme .glyphicon-thumbs-up:before{content:"\e125"}#bootstrap-theme .glyphicon-thumbs-down:before{content:"\e126"}#bootstrap-theme .glyphicon-hand-right:before{content:"\e127"}#bootstrap-theme .glyphicon-hand-left:before{content:"\e128"}#bootstrap-theme .glyphicon-hand-up:before{content:"\e129"}#bootstrap-theme .glyphicon-hand-down:before{content:"\e130"}#bootstrap-theme .glyphicon-circle-arrow-right:before{content:"\e131"}#bootstrap-theme .glyphicon-circle-arrow-left:before{content:"\e132"}#bootstrap-theme .glyphicon-circle-arrow-up:before{content:"\e133"}#bootstrap-theme .glyphicon-circle-arrow-down:before{content:"\e134"}#bootstrap-theme .glyphicon-globe:before{content:"\e135"}#bootstrap-theme .glyphicon-wrench:before{content:"\e136"}#bootstrap-theme .glyphicon-tasks:before{content:"\e137"}#bootstrap-theme .glyphicon-filter:before{content:"\e138"}#bootstrap-theme .glyphicon-briefcase:before{content:"\e139"}#bootstrap-theme .glyphicon-fullscreen:before{content:"\e140"}#bootstrap-theme .glyphicon-dashboard:before{content:"\e141"}#bootstrap-theme .glyphicon-paperclip:before{content:"\e142"}#bootstrap-theme .glyphicon-heart-empty:before{content:"\e143"}#bootstrap-theme .glyphicon-link:before{content:"\e144"}#bootstrap-theme .glyphicon-phone:before{content:"\e145"}#bootstrap-theme .glyphicon-pushpin:before{content:"\e146"}#bootstrap-theme .glyphicon-usd:before{content:"\e148"}#bootstrap-theme .glyphicon-gbp:before{content:"\e149"}#bootstrap-theme .glyphicon-sort:before{content:"\e150"}#bootstrap-theme .glyphicon-sort-by-alphabet:before{content:"\e151"}#bootstrap-theme .glyphicon-sort-by-alphabet-alt:before{content:"\e152"}#bootstrap-theme .glyphicon-sort-by-order:before{content:"\e153"}#bootstrap-theme .glyphicon-sort-by-order-alt:before{content:"\e154"}#bootstrap-theme .glyphicon-sort-by-attributes:before{content:"\e155"}#bootstrap-theme .glyphicon-sort-by-attributes-alt:before{content:"\e156"}#bootstrap-theme .glyphicon-unchecked:before{content:"\e157"}#bootstrap-theme .glyphicon-expand:before{content:"\e158"}#bootstrap-theme .glyphicon-collapse-down:before{content:"\e159"}#bootstrap-theme .glyphicon-collapse-up:before{content:"\e160"}#bootstrap-theme .glyphicon-log-in:before{content:"\e161"}#bootstrap-theme .glyphicon-flash:before{content:"\e162"}#bootstrap-theme .glyphicon-log-out:before{content:"\e163"}#bootstrap-theme .glyphicon-new-window:before{content:"\e164"}#bootstrap-theme .glyphicon-record:before{content:"\e165"}#bootstrap-theme .glyphicon-save:before{content:"\e166"}#bootstrap-theme .glyphicon-open:before{content:"\e167"}#bootstrap-theme .glyphicon-saved:before{content:"\e168"}#bootstrap-theme .glyphicon-import:before{content:"\e169"}#bootstrap-theme .glyphicon-export:before{content:"\e170"}#bootstrap-theme .glyphicon-send:before{content:"\e171"}#bootstrap-theme .glyphicon-floppy-disk:before{content:"\e172"}#bootstrap-theme .glyphicon-floppy-saved:before{content:"\e173"}#bootstrap-theme .glyphicon-floppy-remove:before{content:"\e174"}#bootstrap-theme .glyphicon-floppy-save:before{content:"\e175"}#bootstrap-theme .glyphicon-floppy-open:before{content:"\e176"}#bootstrap-theme .glyphicon-credit-card:before{content:"\e177"}#bootstrap-theme .glyphicon-transfer:before{content:"\e178"}#bootstrap-theme .glyphicon-cutlery:before{content:"\e179"}#bootstrap-theme .glyphicon-header:before{content:"\e180"}#bootstrap-theme .glyphicon-compressed:before{content:"\e181"}#bootstrap-theme .glyphicon-earphone:before{content:"\e182"}#bootstrap-theme .glyphicon-phone-alt:before{content:"\e183"}#bootstrap-theme .glyphicon-tower:before{content:"\e184"}#bootstrap-theme .glyphicon-stats:before{content:"\e185"}#bootstrap-theme .glyphicon-sd-video:before{content:"\e186"}#bootstrap-theme .glyphicon-hd-video:before{content:"\e187"}#bootstrap-theme .glyphicon-subtitles:before{content:"\e188"}#bootstrap-theme .glyphicon-sound-stereo:before{content:"\e189"}#bootstrap-theme .glyphicon-sound-dolby:before{content:"\e190"}#bootstrap-theme .glyphicon-sound-5-1:before{content:"\e191"}#bootstrap-theme .glyphicon-sound-6-1:before{content:"\e192"}#bootstrap-theme .glyphicon-sound-7-1:before{content:"\e193"}#bootstrap-theme .glyphicon-copyright-mark:before{content:"\e194"}#bootstrap-theme .glyphicon-registration-mark:before{content:"\e195"}#bootstrap-theme .glyphicon-cloud-download:before{content:"\e197"}#bootstrap-theme .glyphicon-cloud-upload:before{content:"\e198"}#bootstrap-theme .glyphicon-tree-conifer:before{content:"\e199"}#bootstrap-theme .glyphicon-tree-deciduous:before{content:"\e200"}#bootstrap-theme .glyphicon-cd:before{content:"\e201"}#bootstrap-theme .glyphicon-save-file:before{content:"\e202"}#bootstrap-theme .glyphicon-open-file:before{content:"\e203"}#bootstrap-theme .glyphicon-level-up:before{content:"\e204"}#bootstrap-theme .glyphicon-copy:before{content:"\e205"}#bootstrap-theme .glyphicon-paste:before{content:"\e206"}#bootstrap-theme .glyphicon-alert:before{content:"\e209"}#bootstrap-theme .glyphicon-equalizer:before{content:"\e210"}#bootstrap-theme .glyphicon-king:before{content:"\e211"}#bootstrap-theme .glyphicon-queen:before{content:"\e212"}#bootstrap-theme .glyphicon-pawn:before{content:"\e213"}#bootstrap-theme .glyphicon-bishop:before{content:"\e214"}#bootstrap-theme .glyphicon-knight:before{content:"\e215"}#bootstrap-theme .glyphicon-baby-formula:before{content:"\e216"}#bootstrap-theme .glyphicon-tent:before{content:"\26fa"}#bootstrap-theme .glyphicon-blackboard:before{content:"\e218"}#bootstrap-theme .glyphicon-bed:before{content:"\e219"}#bootstrap-theme .glyphicon-apple:before{content:"\f8ff"}#bootstrap-theme .glyphicon-erase:before{content:"\e221"}#bootstrap-theme .glyphicon-hourglass:before{content:"\231b"}#bootstrap-theme .glyphicon-lamp:before{content:"\e223"}#bootstrap-theme .glyphicon-duplicate:before{content:"\e224"}#bootstrap-theme .glyphicon-piggy-bank:before{content:"\e225"}#bootstrap-theme .glyphicon-scissors:before{content:"\e226"}#bootstrap-theme .glyphicon-bitcoin:before{content:"\e227"}#bootstrap-theme .glyphicon-btc:before{content:"\e227"}#bootstrap-theme .glyphicon-xbt:before{content:"\e227"}#bootstrap-theme .glyphicon-yen:before{content:"\00a5"}#bootstrap-theme .glyphicon-jpy:before{content:"\00a5"}#bootstrap-theme .glyphicon-ruble:before{content:"\20bd"}#bootstrap-theme .glyphicon-rub:before{content:"\20bd"}#bootstrap-theme .glyphicon-scale:before{content:"\e230"}#bootstrap-theme .glyphicon-ice-lolly:before{content:"\e231"}#bootstrap-theme .glyphicon-ice-lolly-tasted:before{content:"\e232"}#bootstrap-theme .glyphicon-education:before{content:"\e233"}#bootstrap-theme .glyphicon-option-horizontal:before{content:"\e234"}#bootstrap-theme .glyphicon-option-vertical:before{content:"\e235"}#bootstrap-theme .glyphicon-menu-hamburger:before{content:"\e236"}#bootstrap-theme .glyphicon-modal-window:before{content:"\e237"}#bootstrap-theme .glyphicon-oil:before{content:"\e238"}#bootstrap-theme .glyphicon-grain:before{content:"\e239"}#bootstrap-theme .glyphicon-sunglasses:before{content:"\e240"}#bootstrap-theme .glyphicon-text-size:before{content:"\e241"}#bootstrap-theme .glyphicon-text-color:before{content:"\e242"}#bootstrap-theme .glyphicon-text-background:before{content:"\e243"}#bootstrap-theme .glyphicon-object-align-top:before{content:"\e244"}#bootstrap-theme .glyphicon-object-align-bottom:before{content:"\e245"}#bootstrap-theme .glyphicon-object-align-horizontal:before{content:"\e246"}#bootstrap-theme .glyphicon-object-align-left:before{content:"\e247"}#bootstrap-theme .glyphicon-object-align-vertical:before{content:"\e248"}#bootstrap-theme .glyphicon-object-align-right:before{content:"\e249"}#bootstrap-theme .glyphicon-triangle-right:before{content:"\e250"}#bootstrap-theme .glyphicon-triangle-left:before{content:"\e251"}#bootstrap-theme .glyphicon-triangle-bottom:before{content:"\e252"}#bootstrap-theme .glyphicon-triangle-top:before{content:"\e253"}#bootstrap-theme .glyphicon-console:before{content:"\e254"}#bootstrap-theme .glyphicon-superscript:before{content:"\e255"}#bootstrap-theme .glyphicon-subscript:before{content:"\e256"}#bootstrap-theme .glyphicon-menu-left:before{content:"\e257"}#bootstrap-theme .glyphicon-menu-right:before{content:"\e258"}#bootstrap-theme .glyphicon-menu-down:before{content:"\e259"}#bootstrap-theme .glyphicon-menu-up:before{content:"\e260"}#bootstrap-theme *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#bootstrap-theme *:before, #bootstrap-theme *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html#bootstrap-theme, #bootstrap-theme{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body#bootstrap-theme, #bootstrap-theme{font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:1.5384615385;color:#4d4d69;background-color:#e8eef0}#bootstrap-theme input, #bootstrap-theme button, #bootstrap-theme select, #bootstrap-theme textarea{font-family:inherit;font-size:inherit;line-height:inherit}#bootstrap-theme a{color:#0071bd;text-decoration:none}#bootstrap-theme a:hover, #bootstrap-theme a:focus{color:#004371;text-decoration:underline}#bootstrap-theme a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#bootstrap-theme figure{margin:0}#bootstrap-theme img{vertical-align:middle}#bootstrap-theme .img-responsive{display:block;max-width:100%;height:auto}#bootstrap-theme .img-rounded{border-radius:6px}#bootstrap-theme .img-thumbnail{padding:4px;line-height:1.5384615385;background-color:#e8eef0;border:1px solid #ddd;border-radius:2px;-webkit-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;display:inline-block;max-width:100%;height:auto}#bootstrap-theme .img-circle{border-radius:50%}#bootstrap-theme hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #d3dee2}#bootstrap-theme .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}#bootstrap-theme .sr-only-focusable:active, #bootstrap-theme .sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}#bootstrap-theme [role="button"]{cursor:pointer}#bootstrap-theme h1, #bootstrap-theme h2, #bootstrap-theme h3, #bootstrap-theme h4, #bootstrap-theme h5, #bootstrap-theme h6, #bootstrap-theme .h1, #bootstrap-theme .h2, #bootstrap-theme .h3, #bootstrap-theme .h4, #bootstrap-theme .h5, #bootstrap-theme .h6{font-family:inherit;font-weight:500;line-height:1.1;color:#464354}#bootstrap-theme h1 small, #bootstrap-theme h1 .small, #bootstrap-theme h2 small, #bootstrap-theme h2 .small, #bootstrap-theme h3 small, #bootstrap-theme h3 .small, #bootstrap-theme h4 small, #bootstrap-theme h4 .small, #bootstrap-theme h5 small, #bootstrap-theme h5 .small, #bootstrap-theme h6 small, #bootstrap-theme h6 .small, #bootstrap-theme .h1 small, #bootstrap-theme .h1 .small, #bootstrap-theme .h2 small, #bootstrap-theme .h2 .small, #bootstrap-theme .h3 small, #bootstrap-theme .h3 .small, #bootstrap-theme .h4 small, #bootstrap-theme .h4 .small, #bootstrap-theme .h5 small, #bootstrap-theme .h5 .small, #bootstrap-theme .h6 small, #bootstrap-theme .h6 .small{font-weight:400;line-height:1;color:#e8eef0}#bootstrap-theme h1, #bootstrap-theme .h1, #bootstrap-theme h2, #bootstrap-theme .h2, #bootstrap-theme h3, #bootstrap-theme .h3{margin-top:20px;margin-bottom:10px}#bootstrap-theme h1 small, #bootstrap-theme h1 .small, #bootstrap-theme .h1 small, #bootstrap-theme .h1 .small, #bootstrap-theme h2 small, #bootstrap-theme h2 .small, #bootstrap-theme .h2 small, #bootstrap-theme .h2 .small, #bootstrap-theme h3 small, #bootstrap-theme h3 .small, #bootstrap-theme .h3 small, #bootstrap-theme .h3 .small{font-size:65%}#bootstrap-theme h4, #bootstrap-theme .h4, #bootstrap-theme h5, #bootstrap-theme .h5, #bootstrap-theme h6, #bootstrap-theme .h6{margin-top:10px;margin-bottom:10px}#bootstrap-theme h4 small, #bootstrap-theme h4 .small, #bootstrap-theme .h4 small, #bootstrap-theme .h4 .small, #bootstrap-theme h5 small, #bootstrap-theme h5 .small, #bootstrap-theme .h5 small, #bootstrap-theme .h5 .small, #bootstrap-theme h6 small, #bootstrap-theme h6 .small, #bootstrap-theme .h6 small, #bootstrap-theme .h6 .small{font-size:75%}#bootstrap-theme h1, #bootstrap-theme .h1{font-size:24px}#bootstrap-theme h2, #bootstrap-theme .h2{font-size:18px}#bootstrap-theme h3, #bootstrap-theme .h3{font-size:16px}#bootstrap-theme h4, #bootstrap-theme .h4{font-size:14px}#bootstrap-theme h5, #bootstrap-theme .h5{font-size:13px}#bootstrap-theme h6, #bootstrap-theme .h6{font-size:12px}#bootstrap-theme p{margin:0 0 10px}#bootstrap-theme .lead{margin-bottom:20px;font-size:14px;font-weight:300;line-height:1.4}@media (min-width: 768px){#bootstrap-theme .lead{font-size:19.5px}}#bootstrap-theme small, #bootstrap-theme .small{font-size:92%}#bootstrap-theme mark, #bootstrap-theme .mark{padding:.2em;background-color:#fcf8e3}#bootstrap-theme .text-left{text-align:left}#bootstrap-theme .text-right{text-align:right}#bootstrap-theme .text-center{text-align:center}#bootstrap-theme .text-justify{text-align:justify}#bootstrap-theme .text-nowrap{white-space:nowrap}#bootstrap-theme .text-lowercase{text-transform:lowercase}#bootstrap-theme .text-uppercase, #bootstrap-theme .initialism{text-transform:uppercase}#bootstrap-theme .text-capitalize{text-transform:capitalize}#bootstrap-theme .text-muted{color:#aab2b9}#bootstrap-theme .text-primary{color:#0071bd}#bootstrap-theme a.text-primary:hover, #bootstrap-theme a.text-primary:focus{color:#00538a}#bootstrap-theme .text-success{color:#4d994d}#bootstrap-theme a.text-success:hover, #bootstrap-theme a.text-success:focus{color:#3c773c}#bootstrap-theme .text-info{color:#0071bd}#bootstrap-theme a.text-info:hover, #bootstrap-theme a.text-info:focus{color:#00538a}#bootstrap-theme .text-warning{color:#bf5900}#bootstrap-theme a.text-warning:hover, #bootstrap-theme a.text-warning:focus{color:#8c4100}#bootstrap-theme .text-danger{color:#cf3458}#bootstrap-theme a.text-danger:hover, #bootstrap-theme a.text-danger:focus{color:#a82846}#bootstrap-theme .bg-primary{color:#fff}#bootstrap-theme .bg-primary{background-color:#0071bd}#bootstrap-theme a.bg-primary:hover, #bootstrap-theme a.bg-primary:focus{background-color:#00538a}#bootstrap-theme .bg-success{background-color:#dff0d8}#bootstrap-theme a.bg-success:hover, #bootstrap-theme a.bg-success:focus{background-color:#c1e2b3}#bootstrap-theme .bg-info{background-color:#d9edf7}#bootstrap-theme a.bg-info:hover, #bootstrap-theme a.bg-info:focus{background-color:#afd9ee}#bootstrap-theme .bg-warning{background-color:#fcf8e3}#bootstrap-theme a.bg-warning:hover, #bootstrap-theme a.bg-warning:focus{background-color:#f7ecb5}#bootstrap-theme .bg-danger{background-color:#f2dede}#bootstrap-theme a.bg-danger:hover, #bootstrap-theme a.bg-danger:focus{background-color:#e4b9b9}#bootstrap-theme .page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #f3f6f7}#bootstrap-theme ul, #bootstrap-theme ol{margin-top:0;margin-bottom:10px}#bootstrap-theme ul ul, #bootstrap-theme ul ol, #bootstrap-theme ol ul, #bootstrap-theme ol ol{margin-bottom:0}#bootstrap-theme .list-unstyled{padding-left:0;list-style:none}#bootstrap-theme .list-inline{padding-left:0;list-style:none;margin-left:-5px}#bootstrap-theme .list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}#bootstrap-theme dl{margin-top:0;margin-bottom:20px}#bootstrap-theme dt, #bootstrap-theme dd{line-height:1.5384615385}#bootstrap-theme dt{font-weight:700}#bootstrap-theme dd{margin-left:0}#bootstrap-theme .dl-horizontal dd:before, #bootstrap-theme .dl-horizontal dd:after{display:table;content:" "}#bootstrap-theme .dl-horizontal dd:after{clear:both}@media (min-width: 768px){#bootstrap-theme .dl-horizontal dt{float:left;width:230px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#bootstrap-theme .dl-horizontal dd{margin-left:250px}}#bootstrap-theme abbr[title], #bootstrap-theme abbr[data-original-title]{cursor:help}#bootstrap-theme .initialism{font-size:90%}#bootstrap-theme blockquote{padding:10px 20px;margin:0 0 20px;font-size:16.25px;border-left:5px solid #0071bd}#bootstrap-theme blockquote p:last-child, #bootstrap-theme blockquote ul:last-child, #bootstrap-theme blockquote ol:last-child{margin-bottom:0}#bootstrap-theme blockquote footer, #bootstrap-theme blockquote small, #bootstrap-theme blockquote .small{display:block;font-size:80%;line-height:1.5384615385;color:#4d4d69}#bootstrap-theme blockquote footer:before, #bootstrap-theme blockquote small:before, #bootstrap-theme blockquote .small:before{content:"\2014 \00A0"}#bootstrap-theme .blockquote-reverse, #bootstrap-theme blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #0071bd;border-left:0}#bootstrap-theme .blockquote-reverse footer:before, #bootstrap-theme .blockquote-reverse small:before, #bootstrap-theme .blockquote-reverse .small:before, #bootstrap-theme blockquote.pull-right footer:before, #bootstrap-theme blockquote.pull-right small:before, #bootstrap-theme blockquote.pull-right .small:before{content:""}#bootstrap-theme .blockquote-reverse footer:after, #bootstrap-theme .blockquote-reverse small:after, #bootstrap-theme .blockquote-reverse .small:after, #bootstrap-theme blockquote.pull-right footer:after, #bootstrap-theme blockquote.pull-right small:after, #bootstrap-theme blockquote.pull-right .small:after{content:"\00A0 \2014"}#bootstrap-theme address{margin-bottom:20px;font-style:normal;line-height:1.5384615385}#bootstrap-theme code, #bootstrap-theme kbd, #bootstrap-theme pre, #bootstrap-theme samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}#bootstrap-theme code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:2px}#bootstrap-theme kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:2px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}#bootstrap-theme kbd kbd{padding:0;font-size:100%;font-weight:700;box-shadow:none}#bootstrap-theme pre{display:block;padding:9.5px;margin:0 0 10px;font-size:12px;line-height:1.5384615385;color:#4d4d69;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:2px}#bootstrap-theme pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}#bootstrap-theme .pre-scrollable{max-height:340px;overflow-y:scroll}#bootstrap-theme .container{padding-right:8px;padding-left:8px;margin-right:auto;margin-left:auto}#bootstrap-theme .container:before, #bootstrap-theme .container:after{display:table;content:" "}#bootstrap-theme .container:after{clear:both}@media (min-width: 768px){#bootstrap-theme .container{width:736px}}@media (min-width: 992px){#bootstrap-theme .container{width:956px}}@media (min-width: 1200px){#bootstrap-theme .container{width:1156px}}#bootstrap-theme .container-fluid{padding-right:8px;padding-left:8px;margin-right:auto;margin-left:auto}#bootstrap-theme .container-fluid:before, #bootstrap-theme .container-fluid:after{display:table;content:" "}#bootstrap-theme .container-fluid:after{clear:both}#bootstrap-theme .row{margin-right:-8px;margin-left:-8px}#bootstrap-theme .row:before, #bootstrap-theme .row:after{display:table;content:" "}#bootstrap-theme .row:after{clear:both}#bootstrap-theme .row-no-gutters{margin-right:0;margin-left:0}#bootstrap-theme .row-no-gutters [class*="col-"]{padding-right:0;padding-left:0}#bootstrap-theme .col-xs-1, #bootstrap-theme .col-sm-1, #bootstrap-theme .col-md-1, #bootstrap-theme .col-lg-1, #bootstrap-theme .col-xs-2, #bootstrap-theme .col-sm-2, #bootstrap-theme .col-md-2, #bootstrap-theme .col-lg-2, #bootstrap-theme .col-xs-3, #bootstrap-theme .col-sm-3, #bootstrap-theme .col-md-3, #bootstrap-theme .col-lg-3, #bootstrap-theme .col-xs-4, #bootstrap-theme .col-sm-4, #bootstrap-theme .col-md-4, #bootstrap-theme .col-lg-4, #bootstrap-theme .col-xs-5, #bootstrap-theme .col-sm-5, #bootstrap-theme .col-md-5, #bootstrap-theme .col-lg-5, #bootstrap-theme .col-xs-6, #bootstrap-theme .col-sm-6, #bootstrap-theme .col-md-6, #bootstrap-theme .col-lg-6, #bootstrap-theme .col-xs-7, #bootstrap-theme .col-sm-7, #bootstrap-theme .col-md-7, #bootstrap-theme .col-lg-7, #bootstrap-theme .col-xs-8, #bootstrap-theme .col-sm-8, #bootstrap-theme .col-md-8, #bootstrap-theme .col-lg-8, #bootstrap-theme .col-xs-9, #bootstrap-theme .col-sm-9, #bootstrap-theme .col-md-9, #bootstrap-theme .col-lg-9, #bootstrap-theme .col-xs-10, #bootstrap-theme .col-sm-10, #bootstrap-theme .col-md-10, #bootstrap-theme .col-lg-10, #bootstrap-theme .col-xs-11, #bootstrap-theme .col-sm-11, #bootstrap-theme .col-md-11, #bootstrap-theme .col-lg-11, #bootstrap-theme .col-xs-12, #bootstrap-theme .col-sm-12, #bootstrap-theme .col-md-12, #bootstrap-theme .col-lg-12{position:relative;min-height:1px;padding-right:8px;padding-left:8px}#bootstrap-theme .col-xs-1, #bootstrap-theme .col-xs-2, #bootstrap-theme .col-xs-3, #bootstrap-theme .col-xs-4, #bootstrap-theme .col-xs-5, #bootstrap-theme .col-xs-6, #bootstrap-theme .col-xs-7, #bootstrap-theme .col-xs-8, #bootstrap-theme .col-xs-9, #bootstrap-theme .col-xs-10, #bootstrap-theme .col-xs-11, #bootstrap-theme .col-xs-12{float:left}#bootstrap-theme .col-xs-1{width:8.3333333333%}#bootstrap-theme .col-xs-2{width:16.6666666667%}#bootstrap-theme .col-xs-3{width:25%}#bootstrap-theme .col-xs-4{width:33.3333333333%}#bootstrap-theme .col-xs-5{width:41.6666666667%}#bootstrap-theme .col-xs-6{width:50%}#bootstrap-theme .col-xs-7{width:58.3333333333%}#bootstrap-theme .col-xs-8{width:66.6666666667%}#bootstrap-theme .col-xs-9{width:75%}#bootstrap-theme .col-xs-10{width:83.3333333333%}#bootstrap-theme .col-xs-11{width:91.6666666667%}#bootstrap-theme .col-xs-12{width:100%}#bootstrap-theme .col-xs-pull-0{right:auto}#bootstrap-theme .col-xs-pull-1{right:8.3333333333%}#bootstrap-theme .col-xs-pull-2{right:16.6666666667%}#bootstrap-theme .col-xs-pull-3{right:25%}#bootstrap-theme .col-xs-pull-4{right:33.3333333333%}#bootstrap-theme .col-xs-pull-5{right:41.6666666667%}#bootstrap-theme .col-xs-pull-6{right:50%}#bootstrap-theme .col-xs-pull-7{right:58.3333333333%}#bootstrap-theme .col-xs-pull-8{right:66.6666666667%}#bootstrap-theme .col-xs-pull-9{right:75%}#bootstrap-theme .col-xs-pull-10{right:83.3333333333%}#bootstrap-theme .col-xs-pull-11{right:91.6666666667%}#bootstrap-theme .col-xs-pull-12{right:100%}#bootstrap-theme .col-xs-push-0{left:auto}#bootstrap-theme .col-xs-push-1{left:8.3333333333%}#bootstrap-theme .col-xs-push-2{left:16.6666666667%}#bootstrap-theme .col-xs-push-3{left:25%}#bootstrap-theme .col-xs-push-4{left:33.3333333333%}#bootstrap-theme .col-xs-push-5{left:41.6666666667%}#bootstrap-theme .col-xs-push-6{left:50%}#bootstrap-theme .col-xs-push-7{left:58.3333333333%}#bootstrap-theme .col-xs-push-8{left:66.6666666667%}#bootstrap-theme .col-xs-push-9{left:75%}#bootstrap-theme .col-xs-push-10{left:83.3333333333%}#bootstrap-theme .col-xs-push-11{left:91.6666666667%}#bootstrap-theme .col-xs-push-12{left:100%}#bootstrap-theme .col-xs-offset-0{margin-left:0%}#bootstrap-theme .col-xs-offset-1{margin-left:8.3333333333%}#bootstrap-theme .col-xs-offset-2{margin-left:16.6666666667%}#bootstrap-theme .col-xs-offset-3{margin-left:25%}#bootstrap-theme .col-xs-offset-4{margin-left:33.3333333333%}#bootstrap-theme .col-xs-offset-5{margin-left:41.6666666667%}#bootstrap-theme .col-xs-offset-6{margin-left:50%}#bootstrap-theme .col-xs-offset-7{margin-left:58.3333333333%}#bootstrap-theme .col-xs-offset-8{margin-left:66.6666666667%}#bootstrap-theme .col-xs-offset-9{margin-left:75%}#bootstrap-theme .col-xs-offset-10{margin-left:83.3333333333%}#bootstrap-theme .col-xs-offset-11{margin-left:91.6666666667%}#bootstrap-theme .col-xs-offset-12{margin-left:100%}@media (min-width: 768px){#bootstrap-theme .col-sm-1, #bootstrap-theme .col-sm-2, #bootstrap-theme .col-sm-3, #bootstrap-theme .col-sm-4, #bootstrap-theme .col-sm-5, #bootstrap-theme .col-sm-6, #bootstrap-theme .col-sm-7, #bootstrap-theme .col-sm-8, #bootstrap-theme .col-sm-9, #bootstrap-theme .col-sm-10, #bootstrap-theme .col-sm-11, #bootstrap-theme .col-sm-12{float:left}#bootstrap-theme .col-sm-1{width:8.3333333333%}#bootstrap-theme .col-sm-2{width:16.6666666667%}#bootstrap-theme .col-sm-3{width:25%}#bootstrap-theme .col-sm-4{width:33.3333333333%}#bootstrap-theme .col-sm-5{width:41.6666666667%}#bootstrap-theme .col-sm-6{width:50%}#bootstrap-theme .col-sm-7{width:58.3333333333%}#bootstrap-theme .col-sm-8{width:66.6666666667%}#bootstrap-theme .col-sm-9{width:75%}#bootstrap-theme .col-sm-10{width:83.3333333333%}#bootstrap-theme .col-sm-11{width:91.6666666667%}#bootstrap-theme .col-sm-12{width:100%}#bootstrap-theme .col-sm-pull-0{right:auto}#bootstrap-theme .col-sm-pull-1{right:8.3333333333%}#bootstrap-theme .col-sm-pull-2{right:16.6666666667%}#bootstrap-theme .col-sm-pull-3{right:25%}#bootstrap-theme .col-sm-pull-4{right:33.3333333333%}#bootstrap-theme .col-sm-pull-5{right:41.6666666667%}#bootstrap-theme .col-sm-pull-6{right:50%}#bootstrap-theme .col-sm-pull-7{right:58.3333333333%}#bootstrap-theme .col-sm-pull-8{right:66.6666666667%}#bootstrap-theme .col-sm-pull-9{right:75%}#bootstrap-theme .col-sm-pull-10{right:83.3333333333%}#bootstrap-theme .col-sm-pull-11{right:91.6666666667%}#bootstrap-theme .col-sm-pull-12{right:100%}#bootstrap-theme .col-sm-push-0{left:auto}#bootstrap-theme .col-sm-push-1{left:8.3333333333%}#bootstrap-theme .col-sm-push-2{left:16.6666666667%}#bootstrap-theme .col-sm-push-3{left:25%}#bootstrap-theme .col-sm-push-4{left:33.3333333333%}#bootstrap-theme .col-sm-push-5{left:41.6666666667%}#bootstrap-theme .col-sm-push-6{left:50%}#bootstrap-theme .col-sm-push-7{left:58.3333333333%}#bootstrap-theme .col-sm-push-8{left:66.6666666667%}#bootstrap-theme .col-sm-push-9{left:75%}#bootstrap-theme .col-sm-push-10{left:83.3333333333%}#bootstrap-theme .col-sm-push-11{left:91.6666666667%}#bootstrap-theme .col-sm-push-12{left:100%}#bootstrap-theme .col-sm-offset-0{margin-left:0%}#bootstrap-theme .col-sm-offset-1{margin-left:8.3333333333%}#bootstrap-theme .col-sm-offset-2{margin-left:16.6666666667%}#bootstrap-theme .col-sm-offset-3{margin-left:25%}#bootstrap-theme .col-sm-offset-4{margin-left:33.3333333333%}#bootstrap-theme .col-sm-offset-5{margin-left:41.6666666667%}#bootstrap-theme .col-sm-offset-6{margin-left:50%}#bootstrap-theme .col-sm-offset-7{margin-left:58.3333333333%}#bootstrap-theme .col-sm-offset-8{margin-left:66.6666666667%}#bootstrap-theme .col-sm-offset-9{margin-left:75%}#bootstrap-theme .col-sm-offset-10{margin-left:83.3333333333%}#bootstrap-theme .col-sm-offset-11{margin-left:91.6666666667%}#bootstrap-theme .col-sm-offset-12{margin-left:100%}}@media (min-width: 992px){#bootstrap-theme .col-md-1, #bootstrap-theme .col-md-2, #bootstrap-theme .col-md-3, #bootstrap-theme .col-md-4, #bootstrap-theme .col-md-5, #bootstrap-theme .col-md-6, #bootstrap-theme .col-md-7, #bootstrap-theme .col-md-8, #bootstrap-theme .col-md-9, #bootstrap-theme .col-md-10, #bootstrap-theme .col-md-11, #bootstrap-theme .col-md-12{float:left}#bootstrap-theme .col-md-1{width:8.3333333333%}#bootstrap-theme .col-md-2{width:16.6666666667%}#bootstrap-theme .col-md-3{width:25%}#bootstrap-theme .col-md-4{width:33.3333333333%}#bootstrap-theme .col-md-5{width:41.6666666667%}#bootstrap-theme .col-md-6{width:50%}#bootstrap-theme .col-md-7{width:58.3333333333%}#bootstrap-theme .col-md-8{width:66.6666666667%}#bootstrap-theme .col-md-9{width:75%}#bootstrap-theme .col-md-10{width:83.3333333333%}#bootstrap-theme .col-md-11{width:91.6666666667%}#bootstrap-theme .col-md-12{width:100%}#bootstrap-theme .col-md-pull-0{right:auto}#bootstrap-theme .col-md-pull-1{right:8.3333333333%}#bootstrap-theme .col-md-pull-2{right:16.6666666667%}#bootstrap-theme .col-md-pull-3{right:25%}#bootstrap-theme .col-md-pull-4{right:33.3333333333%}#bootstrap-theme .col-md-pull-5{right:41.6666666667%}#bootstrap-theme .col-md-pull-6{right:50%}#bootstrap-theme .col-md-pull-7{right:58.3333333333%}#bootstrap-theme .col-md-pull-8{right:66.6666666667%}#bootstrap-theme .col-md-pull-9{right:75%}#bootstrap-theme .col-md-pull-10{right:83.3333333333%}#bootstrap-theme .col-md-pull-11{right:91.6666666667%}#bootstrap-theme .col-md-pull-12{right:100%}#bootstrap-theme .col-md-push-0{left:auto}#bootstrap-theme .col-md-push-1{left:8.3333333333%}#bootstrap-theme .col-md-push-2{left:16.6666666667%}#bootstrap-theme .col-md-push-3{left:25%}#bootstrap-theme .col-md-push-4{left:33.3333333333%}#bootstrap-theme .col-md-push-5{left:41.6666666667%}#bootstrap-theme .col-md-push-6{left:50%}#bootstrap-theme .col-md-push-7{left:58.3333333333%}#bootstrap-theme .col-md-push-8{left:66.6666666667%}#bootstrap-theme .col-md-push-9{left:75%}#bootstrap-theme .col-md-push-10{left:83.3333333333%}#bootstrap-theme .col-md-push-11{left:91.6666666667%}#bootstrap-theme .col-md-push-12{left:100%}#bootstrap-theme .col-md-offset-0{margin-left:0%}#bootstrap-theme .col-md-offset-1{margin-left:8.3333333333%}#bootstrap-theme .col-md-offset-2{margin-left:16.6666666667%}#bootstrap-theme .col-md-offset-3{margin-left:25%}#bootstrap-theme .col-md-offset-4{margin-left:33.3333333333%}#bootstrap-theme .col-md-offset-5{margin-left:41.6666666667%}#bootstrap-theme .col-md-offset-6{margin-left:50%}#bootstrap-theme .col-md-offset-7{margin-left:58.3333333333%}#bootstrap-theme .col-md-offset-8{margin-left:66.6666666667%}#bootstrap-theme .col-md-offset-9{margin-left:75%}#bootstrap-theme .col-md-offset-10{margin-left:83.3333333333%}#bootstrap-theme .col-md-offset-11{margin-left:91.6666666667%}#bootstrap-theme .col-md-offset-12{margin-left:100%}}@media (min-width: 1200px){#bootstrap-theme .col-lg-1, #bootstrap-theme .col-lg-2, #bootstrap-theme .col-lg-3, #bootstrap-theme .col-lg-4, #bootstrap-theme .col-lg-5, #bootstrap-theme .col-lg-6, #bootstrap-theme .col-lg-7, #bootstrap-theme .col-lg-8, #bootstrap-theme .col-lg-9, #bootstrap-theme .col-lg-10, #bootstrap-theme .col-lg-11, #bootstrap-theme .col-lg-12{float:left}#bootstrap-theme .col-lg-1{width:8.3333333333%}#bootstrap-theme .col-lg-2{width:16.6666666667%}#bootstrap-theme .col-lg-3{width:25%}#bootstrap-theme .col-lg-4{width:33.3333333333%}#bootstrap-theme .col-lg-5{width:41.6666666667%}#bootstrap-theme .col-lg-6{width:50%}#bootstrap-theme .col-lg-7{width:58.3333333333%}#bootstrap-theme .col-lg-8{width:66.6666666667%}#bootstrap-theme .col-lg-9{width:75%}#bootstrap-theme .col-lg-10{width:83.3333333333%}#bootstrap-theme .col-lg-11{width:91.6666666667%}#bootstrap-theme .col-lg-12{width:100%}#bootstrap-theme .col-lg-pull-0{right:auto}#bootstrap-theme .col-lg-pull-1{right:8.3333333333%}#bootstrap-theme .col-lg-pull-2{right:16.6666666667%}#bootstrap-theme .col-lg-pull-3{right:25%}#bootstrap-theme .col-lg-pull-4{right:33.3333333333%}#bootstrap-theme .col-lg-pull-5{right:41.6666666667%}#bootstrap-theme .col-lg-pull-6{right:50%}#bootstrap-theme .col-lg-pull-7{right:58.3333333333%}#bootstrap-theme .col-lg-pull-8{right:66.6666666667%}#bootstrap-theme .col-lg-pull-9{right:75%}#bootstrap-theme .col-lg-pull-10{right:83.3333333333%}#bootstrap-theme .col-lg-pull-11{right:91.6666666667%}#bootstrap-theme .col-lg-pull-12{right:100%}#bootstrap-theme .col-lg-push-0{left:auto}#bootstrap-theme .col-lg-push-1{left:8.3333333333%}#bootstrap-theme .col-lg-push-2{left:16.6666666667%}#bootstrap-theme .col-lg-push-3{left:25%}#bootstrap-theme .col-lg-push-4{left:33.3333333333%}#bootstrap-theme .col-lg-push-5{left:41.6666666667%}#bootstrap-theme .col-lg-push-6{left:50%}#bootstrap-theme .col-lg-push-7{left:58.3333333333%}#bootstrap-theme .col-lg-push-8{left:66.6666666667%}#bootstrap-theme .col-lg-push-9{left:75%}#bootstrap-theme .col-lg-push-10{left:83.3333333333%}#bootstrap-theme .col-lg-push-11{left:91.6666666667%}#bootstrap-theme .col-lg-push-12{left:100%}#bootstrap-theme .col-lg-offset-0{margin-left:0%}#bootstrap-theme .col-lg-offset-1{margin-left:8.3333333333%}#bootstrap-theme .col-lg-offset-2{margin-left:16.6666666667%}#bootstrap-theme .col-lg-offset-3{margin-left:25%}#bootstrap-theme .col-lg-offset-4{margin-left:33.3333333333%}#bootstrap-theme .col-lg-offset-5{margin-left:41.6666666667%}#bootstrap-theme .col-lg-offset-6{margin-left:50%}#bootstrap-theme .col-lg-offset-7{margin-left:58.3333333333%}#bootstrap-theme .col-lg-offset-8{margin-left:66.6666666667%}#bootstrap-theme .col-lg-offset-9{margin-left:75%}#bootstrap-theme .col-lg-offset-10{margin-left:83.3333333333%}#bootstrap-theme .col-lg-offset-11{margin-left:91.6666666667%}#bootstrap-theme .col-lg-offset-12{margin-left:100%}}#bootstrap-theme table{background-color:#fff}#bootstrap-theme table col[class*="col-"]{position:static;display:table-column;float:none}#bootstrap-theme table td[class*="col-"], #bootstrap-theme table th[class*="col-"]{position:static;display:table-cell;float:none}#bootstrap-theme caption{padding-top:10px 20px;padding-bottom:10px 20px;color:#aab2b9;text-align:left}#bootstrap-theme th{text-align:left}#bootstrap-theme .table{width:100%;max-width:100%;margin-bottom:20px}#bootstrap-theme .table>thead>tr>th, #bootstrap-theme .table>thead>tr>td, #bootstrap-theme .table>tbody>tr>th, #bootstrap-theme .table>tbody>tr>td, #bootstrap-theme .table>tfoot>tr>th, #bootstrap-theme .table>tfoot>tr>td{padding:10px 20px;line-height:1.5384615385;vertical-align:top;border-top:1px solid #e8eef0}#bootstrap-theme .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #e8eef0}#bootstrap-theme .table>caption+thead>tr:first-child>th, #bootstrap-theme .table>caption+thead>tr:first-child>td, #bootstrap-theme .table>colgroup+thead>tr:first-child>th, #bootstrap-theme .table>colgroup+thead>tr:first-child>td, #bootstrap-theme .table>thead:first-child>tr:first-child>th, #bootstrap-theme .table>thead:first-child>tr:first-child>td{border-top:0}#bootstrap-theme .table>tbody+tbody{border-top:2px solid #e8eef0}#bootstrap-theme .table .table{background-color:#e8eef0}#bootstrap-theme .table-condensed>thead>tr>th, #bootstrap-theme .table-condensed>thead>tr>td, #bootstrap-theme .table-condensed>tbody>tr>th, #bootstrap-theme .table-condensed>tbody>tr>td, #bootstrap-theme .table-condensed>tfoot>tr>th, #bootstrap-theme .table-condensed>tfoot>tr>td{padding:5px}#bootstrap-theme .table-bordered{border:1px solid #e8eef0}#bootstrap-theme .table-bordered>thead>tr>th, #bootstrap-theme .table-bordered>thead>tr>td, #bootstrap-theme .table-bordered>tbody>tr>th, #bootstrap-theme .table-bordered>tbody>tr>td, #bootstrap-theme .table-bordered>tfoot>tr>th, #bootstrap-theme .table-bordered>tfoot>tr>td{border:1px solid #e8eef0}#bootstrap-theme .table-bordered>thead>tr>th, #bootstrap-theme .table-bordered>thead>tr>td{border-bottom-width:2px}#bootstrap-theme .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}#bootstrap-theme .table-hover>tbody>tr:hover{background-color:#f5f5f5}#bootstrap-theme .table>thead>tr>td.active, #bootstrap-theme .table>thead>tr>th.active, #bootstrap-theme .table>thead>tr.active>td, #bootstrap-theme .table>thead>tr.active>th, #bootstrap-theme .table>tbody>tr>td.active, #bootstrap-theme .table>tbody>tr>th.active, #bootstrap-theme .table>tbody>tr.active>td, #bootstrap-theme .table>tbody>tr.active>th, #bootstrap-theme .table>tfoot>tr>td.active, #bootstrap-theme .table>tfoot>tr>th.active, #bootstrap-theme .table>tfoot>tr.active>td, #bootstrap-theme .table>tfoot>tr.active>th{background-color:#f5f5f5}#bootstrap-theme .table-hover>tbody>tr>td.active:hover, #bootstrap-theme .table-hover>tbody>tr>th.active:hover, #bootstrap-theme .table-hover>tbody>tr.active:hover>td, #bootstrap-theme .table-hover>tbody>tr:hover>.active, #bootstrap-theme .table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}#bootstrap-theme .table>thead>tr>td.success, #bootstrap-theme .table>thead>tr>th.success, #bootstrap-theme .table>thead>tr.success>td, #bootstrap-theme .table>thead>tr.success>th, #bootstrap-theme .table>tbody>tr>td.success, #bootstrap-theme .table>tbody>tr>th.success, #bootstrap-theme .table>tbody>tr.success>td, #bootstrap-theme .table>tbody>tr.success>th, #bootstrap-theme .table>tfoot>tr>td.success, #bootstrap-theme .table>tfoot>tr>th.success, #bootstrap-theme .table>tfoot>tr.success>td, #bootstrap-theme .table>tfoot>tr.success>th{background-color:#dff0d8}#bootstrap-theme .table-hover>tbody>tr>td.success:hover, #bootstrap-theme .table-hover>tbody>tr>th.success:hover, #bootstrap-theme .table-hover>tbody>tr.success:hover>td, #bootstrap-theme .table-hover>tbody>tr:hover>.success, #bootstrap-theme .table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}#bootstrap-theme .table>thead>tr>td.info, #bootstrap-theme .table>thead>tr>th.info, #bootstrap-theme .table>thead>tr.info>td, #bootstrap-theme .table>thead>tr.info>th, #bootstrap-theme .table>tbody>tr>td.info, #bootstrap-theme .table>tbody>tr>th.info, #bootstrap-theme .table>tbody>tr.info>td, #bootstrap-theme .table>tbody>tr.info>th, #bootstrap-theme .table>tfoot>tr>td.info, #bootstrap-theme .table>tfoot>tr>th.info, #bootstrap-theme .table>tfoot>tr.info>td, #bootstrap-theme .table>tfoot>tr.info>th{background-color:#d9edf7}#bootstrap-theme .table-hover>tbody>tr>td.info:hover, #bootstrap-theme .table-hover>tbody>tr>th.info:hover, #bootstrap-theme .table-hover>tbody>tr.info:hover>td, #bootstrap-theme .table-hover>tbody>tr:hover>.info, #bootstrap-theme .table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}#bootstrap-theme .table>thead>tr>td.warning, #bootstrap-theme .table>thead>tr>th.warning, #bootstrap-theme .table>thead>tr.warning>td, #bootstrap-theme .table>thead>tr.warning>th, #bootstrap-theme .table>tbody>tr>td.warning, #bootstrap-theme .table>tbody>tr>th.warning, #bootstrap-theme .table>tbody>tr.warning>td, #bootstrap-theme .table>tbody>tr.warning>th, #bootstrap-theme .table>tfoot>tr>td.warning, #bootstrap-theme .table>tfoot>tr>th.warning, #bootstrap-theme .table>tfoot>tr.warning>td, #bootstrap-theme .table>tfoot>tr.warning>th{background-color:#fcf8e3}#bootstrap-theme .table-hover>tbody>tr>td.warning:hover, #bootstrap-theme .table-hover>tbody>tr>th.warning:hover, #bootstrap-theme .table-hover>tbody>tr.warning:hover>td, #bootstrap-theme .table-hover>tbody>tr:hover>.warning, #bootstrap-theme .table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}#bootstrap-theme .table>thead>tr>td.danger, #bootstrap-theme .table>thead>tr>th.danger, #bootstrap-theme .table>thead>tr.danger>td, #bootstrap-theme .table>thead>tr.danger>th, #bootstrap-theme .table>tbody>tr>td.danger, #bootstrap-theme .table>tbody>tr>th.danger, #bootstrap-theme .table>tbody>tr.danger>td, #bootstrap-theme .table>tbody>tr.danger>th, #bootstrap-theme .table>tfoot>tr>td.danger, #bootstrap-theme .table>tfoot>tr>th.danger, #bootstrap-theme .table>tfoot>tr.danger>td, #bootstrap-theme .table>tfoot>tr.danger>th{background-color:#f2dede}#bootstrap-theme .table-hover>tbody>tr>td.danger:hover, #bootstrap-theme .table-hover>tbody>tr>th.danger:hover, #bootstrap-theme .table-hover>tbody>tr.danger:hover>td, #bootstrap-theme .table-hover>tbody>tr:hover>.danger, #bootstrap-theme .table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}#bootstrap-theme .table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width: 767px){#bootstrap-theme .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #e8eef0}#bootstrap-theme .table-responsive>.table{margin-bottom:0}#bootstrap-theme .table-responsive>.table>thead>tr>th, #bootstrap-theme .table-responsive>.table>thead>tr>td, #bootstrap-theme .table-responsive>.table>tbody>tr>th, #bootstrap-theme .table-responsive>.table>tbody>tr>td, #bootstrap-theme .table-responsive>.table>tfoot>tr>th, #bootstrap-theme .table-responsive>.table>tfoot>tr>td{white-space:nowrap}#bootstrap-theme .table-responsive>.table-bordered{border:0}#bootstrap-theme .table-responsive>.table-bordered>thead>tr>th:first-child, #bootstrap-theme .table-responsive>.table-bordered>thead>tr>td:first-child, #bootstrap-theme .table-responsive>.table-bordered>tbody>tr>th:first-child, #bootstrap-theme .table-responsive>.table-bordered>tbody>tr>td:first-child, #bootstrap-theme .table-responsive>.table-bordered>tfoot>tr>th:first-child, #bootstrap-theme .table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}#bootstrap-theme .table-responsive>.table-bordered>thead>tr>th:last-child, #bootstrap-theme .table-responsive>.table-bordered>thead>tr>td:last-child, #bootstrap-theme .table-responsive>.table-bordered>tbody>tr>th:last-child, #bootstrap-theme .table-responsive>.table-bordered>tbody>tr>td:last-child, #bootstrap-theme .table-responsive>.table-bordered>tfoot>tr>th:last-child, #bootstrap-theme .table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}#bootstrap-theme .table-responsive>.table-bordered>tbody>tr:last-child>th, #bootstrap-theme .table-responsive>.table-bordered>tbody>tr:last-child>td, #bootstrap-theme .table-responsive>.table-bordered>tfoot>tr:last-child>th, #bootstrap-theme .table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}#bootstrap-theme fieldset{min-width:0;padding:0;margin:0;border:0}#bootstrap-theme legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:19.5px;line-height:inherit;color:#4d4d69;border:0;border-bottom:1px solid #e5e5e5}#bootstrap-theme label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}#bootstrap-theme input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;appearance:none}#bootstrap-theme input[type="radio"], #bootstrap-theme input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}#bootstrap-theme input[type="radio"][disabled], #bootstrap-theme input[type="radio"].disabled, #bootstrap-theme fieldset[disabled] input[type="radio"], #bootstrap-theme input[type="checkbox"][disabled], #bootstrap-theme input[type="checkbox"].disabled, #bootstrap-theme fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}#bootstrap-theme input[type="file"]{display:block}#bootstrap-theme input[type="range"]{display:block;width:100%}#bootstrap-theme select[multiple], #bootstrap-theme select[size]{height:auto}#bootstrap-theme input[type="file"]:focus, #bootstrap-theme input[type="radio"]:focus, #bootstrap-theme input[type="checkbox"]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#bootstrap-theme output{display:block;padding-top:5px;font-size:13px;line-height:1.5384615385;color:#464354}#bootstrap-theme .form-control{display:block;width:100%;height:30px;padding:4px 10px;font-size:13px;line-height:1.5384615385;color:#464354;background-color:#fff;background-image:none;border:1px solid #c2cfd8;border-radius:2px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;-o-transition:border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;transition:border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s}#bootstrap-theme .form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6)}#bootstrap-theme .form-control::-moz-placeholder{color:#9494a5;opacity:1}#bootstrap-theme .form-control:-ms-input-placeholder{color:#9494a5}#bootstrap-theme .form-control::-webkit-input-placeholder{color:#9494a5}#bootstrap-theme .form-control::-ms-expand{background-color:transparent;border:0}#bootstrap-theme .form-control[disabled], #bootstrap-theme .form-control[readonly], #bootstrap-theme fieldset[disabled] .form-control{background-color:#f3f6f7;opacity:1}#bootstrap-theme .form-control[disabled], #bootstrap-theme fieldset[disabled] .form-control{cursor:not-allowed}#bootstrap-theme textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio: 0){#bootstrap-theme input[type="date"].form-control, #bootstrap-theme input[type="time"].form-control, #bootstrap-theme input[type="datetime-local"].form-control, #bootstrap-theme input[type="month"].form-control{line-height:30px}#bootstrap-theme input[type="date"].input-sm, #bootstrap-theme .input-group-sm>input.form-control[type="date"], #bootstrap-theme .input-group-sm>input.input-group-addon[type="date"], #bootstrap-theme .input-group-sm>.input-group-btn>input.btn[type="date"], #bootstrap-theme .input-group-sm input[type="date"], #bootstrap-theme input[type="time"].input-sm, #bootstrap-theme .input-group-sm>input.form-control[type="time"], #bootstrap-theme .input-group-sm>input.input-group-addon[type="time"], #bootstrap-theme .input-group-sm>.input-group-btn>input.btn[type="time"], #bootstrap-theme .input-group-sm input[type="time"], #bootstrap-theme input[type="datetime-local"].input-sm, #bootstrap-theme .input-group-sm>input.form-control[type="datetime-local"], #bootstrap-theme .input-group-sm>input.input-group-addon[type="datetime-local"], #bootstrap-theme .input-group-sm>.input-group-btn>input.btn[type="datetime-local"], #bootstrap-theme .input-group-sm input[type="datetime-local"], #bootstrap-theme input[type="month"].input-sm, #bootstrap-theme .input-group-sm>input.form-control[type="month"], #bootstrap-theme .input-group-sm>input.input-group-addon[type="month"], #bootstrap-theme .input-group-sm>.input-group-btn>input.btn[type="month"], #bootstrap-theme .input-group-sm input[type="month"]{line-height:24px}#bootstrap-theme input[type="date"].input-lg, #bootstrap-theme .input-group-lg>input.form-control[type="date"], #bootstrap-theme .input-group-lg>input.input-group-addon[type="date"], #bootstrap-theme .input-group-lg>.input-group-btn>input.btn[type="date"], #bootstrap-theme .input-group-lg input[type="date"], #bootstrap-theme input[type="time"].input-lg, #bootstrap-theme .input-group-lg>input.form-control[type="time"], #bootstrap-theme .input-group-lg>input.input-group-addon[type="time"], #bootstrap-theme .input-group-lg>.input-group-btn>input.btn[type="time"], #bootstrap-theme .input-group-lg input[type="time"], #bootstrap-theme input[type="datetime-local"].input-lg, #bootstrap-theme .input-group-lg>input.form-control[type="datetime-local"], #bootstrap-theme .input-group-lg>input.input-group-addon[type="datetime-local"], #bootstrap-theme .input-group-lg>.input-group-btn>input.btn[type="datetime-local"], #bootstrap-theme .input-group-lg input[type="datetime-local"], #bootstrap-theme input[type="month"].input-lg, #bootstrap-theme .input-group-lg>input.form-control[type="month"], #bootstrap-theme .input-group-lg>input.input-group-addon[type="month"], #bootstrap-theme .input-group-lg>.input-group-btn>input.btn[type="month"], #bootstrap-theme .input-group-lg input[type="month"]{line-height:45px}}#bootstrap-theme .form-group{margin-bottom:15px}#bootstrap-theme .radio, #bootstrap-theme .checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}#bootstrap-theme .radio.disabled label, #bootstrap-theme fieldset[disabled] .radio label, #bootstrap-theme .checkbox.disabled label, #bootstrap-theme fieldset[disabled] .checkbox label{cursor:not-allowed}#bootstrap-theme .radio label, #bootstrap-theme .checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}#bootstrap-theme .radio input[type="radio"], #bootstrap-theme .radio-inline input[type="radio"], #bootstrap-theme .checkbox input[type="checkbox"], #bootstrap-theme .checkbox-inline input[type="checkbox"]{position:absolute;margin-top:4px \9;margin-left:-20px}#bootstrap-theme .radio+.radio, #bootstrap-theme .checkbox+.checkbox{margin-top:-5px}#bootstrap-theme .radio-inline, #bootstrap-theme .checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}#bootstrap-theme .radio-inline.disabled, #bootstrap-theme fieldset[disabled] .radio-inline, #bootstrap-theme .checkbox-inline.disabled, #bootstrap-theme fieldset[disabled] .checkbox-inline{cursor:not-allowed}#bootstrap-theme .radio-inline+.radio-inline, #bootstrap-theme .checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}#bootstrap-theme .form-control-static{min-height:33px;padding-top:5px;padding-bottom:5px;margin-bottom:0}#bootstrap-theme .form-control-static.input-lg, #bootstrap-theme .input-group-lg>.form-control-static.form-control, #bootstrap-theme .input-group-lg>.form-control-static.input-group-addon, #bootstrap-theme .input-group-lg>.input-group-btn>.form-control-static.btn, #bootstrap-theme .form-control-static.input-sm, #bootstrap-theme .input-group-sm>.form-control-static.form-control, #bootstrap-theme .input-group-sm>.form-control-static.input-group-addon, #bootstrap-theme .input-group-sm>.input-group-btn>.form-control-static.btn{padding-right:0;padding-left:0}#bootstrap-theme .input-sm, #bootstrap-theme .input-group-sm>.form-control, #bootstrap-theme .input-group-sm>.input-group-addon, #bootstrap-theme .input-group-sm>.input-group-btn>.btn{height:24px;padding:2px 10px;font-size:12px;line-height:1.5;border-radius:2px}#bootstrap-theme select.input-sm, #bootstrap-theme .input-group-sm>select.form-control, #bootstrap-theme .input-group-sm>select.input-group-addon, #bootstrap-theme .input-group-sm>.input-group-btn>select.btn{height:24px;line-height:24px}#bootstrap-theme textarea.input-sm, #bootstrap-theme .input-group-sm>textarea.form-control, #bootstrap-theme .input-group-sm>textarea.input-group-addon, #bootstrap-theme .input-group-sm>.input-group-btn>textarea.btn, #bootstrap-theme select[multiple].input-sm, #bootstrap-theme .input-group-sm>select.form-control[multiple], #bootstrap-theme .input-group-sm>select.input-group-addon[multiple], #bootstrap-theme .input-group-sm>.input-group-btn>select.btn[multiple]{height:auto}#bootstrap-theme .form-group-sm .form-control{height:24px;padding:2px 10px;font-size:12px;line-height:1.5;border-radius:2px}#bootstrap-theme .form-group-sm select.form-control{height:24px;line-height:24px}#bootstrap-theme .form-group-sm textarea.form-control, #bootstrap-theme .form-group-sm select[multiple].form-control{height:auto}#bootstrap-theme .form-group-sm .form-control-static{height:24px;min-height:32px;padding:3px 10px;font-size:12px;line-height:1.5}#bootstrap-theme .input-lg, #bootstrap-theme .input-group-lg>.form-control, #bootstrap-theme .input-group-lg>.input-group-addon, #bootstrap-theme .input-group-lg>.input-group-btn>.btn{height:45px;padding:10px 16px;font-size:17px;line-height:1.3333333;border-radius:2px}#bootstrap-theme select.input-lg, #bootstrap-theme .input-group-lg>select.form-control, #bootstrap-theme .input-group-lg>select.input-group-addon, #bootstrap-theme .input-group-lg>.input-group-btn>select.btn{height:45px;line-height:45px}#bootstrap-theme textarea.input-lg, #bootstrap-theme .input-group-lg>textarea.form-control, #bootstrap-theme .input-group-lg>textarea.input-group-addon, #bootstrap-theme .input-group-lg>.input-group-btn>textarea.btn, #bootstrap-theme select[multiple].input-lg, #bootstrap-theme .input-group-lg>select.form-control[multiple], #bootstrap-theme .input-group-lg>select.input-group-addon[multiple], #bootstrap-theme .input-group-lg>.input-group-btn>select.btn[multiple]{height:auto}#bootstrap-theme .form-group-lg .form-control{height:45px;padding:10px 16px;font-size:17px;line-height:1.3333333;border-radius:2px}#bootstrap-theme .form-group-lg select.form-control{height:45px;line-height:45px}#bootstrap-theme .form-group-lg textarea.form-control, #bootstrap-theme .form-group-lg select[multiple].form-control{height:auto}#bootstrap-theme .form-group-lg .form-control-static{height:45px;min-height:37px;padding:11px 16px;font-size:17px;line-height:1.3333333}#bootstrap-theme .has-feedback{position:relative}#bootstrap-theme .has-feedback .form-control{padding-right:37.5px}#bootstrap-theme .form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:30px;height:30px;line-height:30px;text-align:center;pointer-events:none}#bootstrap-theme .input-lg+.form-control-feedback, #bootstrap-theme .input-group-lg>.form-control+.form-control-feedback, #bootstrap-theme .input-group-lg>.input-group-addon+.form-control-feedback, #bootstrap-theme .input-group-lg>.input-group-btn>.btn+.form-control-feedback, #bootstrap-theme .input-group-lg+.form-control-feedback, #bootstrap-theme .form-group-lg .form-control+.form-control-feedback{width:45px;height:45px;line-height:45px}#bootstrap-theme .input-sm+.form-control-feedback, #bootstrap-theme .input-group-sm>.form-control+.form-control-feedback, #bootstrap-theme .input-group-sm>.input-group-addon+.form-control-feedback, #bootstrap-theme .input-group-sm>.input-group-btn>.btn+.form-control-feedback, #bootstrap-theme .input-group-sm+.form-control-feedback, #bootstrap-theme .form-group-sm .form-control+.form-control-feedback{width:24px;height:24px;line-height:24px}#bootstrap-theme .has-success .help-block, #bootstrap-theme .has-success .control-label, #bootstrap-theme .has-success .radio, #bootstrap-theme .has-success .checkbox, #bootstrap-theme .has-success .radio-inline, #bootstrap-theme .has-success .checkbox-inline, #bootstrap-theme .has-success.radio label, #bootstrap-theme .has-success.checkbox label, #bootstrap-theme .has-success.radio-inline label, #bootstrap-theme .has-success.checkbox-inline label{color:#4d994d}#bootstrap-theme .has-success .form-control{border-color:#4d994d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}#bootstrap-theme .has-success .form-control:focus{border-color:#3c773c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #89c389;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #89c389}#bootstrap-theme .has-success .input-group-addon{color:#4d994d;background-color:#dff0d8;border-color:#4d994d}#bootstrap-theme .has-success .form-control-feedback{color:#4d994d}#bootstrap-theme .has-warning .help-block, #bootstrap-theme .has-warning .control-label, #bootstrap-theme .has-warning .radio, #bootstrap-theme .has-warning .checkbox, #bootstrap-theme .has-warning .radio-inline, #bootstrap-theme .has-warning .checkbox-inline, #bootstrap-theme .has-warning.radio label, #bootstrap-theme .has-warning.checkbox label, #bootstrap-theme .has-warning.radio-inline label, #bootstrap-theme .has-warning.checkbox-inline label{color:#bf5900}#bootstrap-theme .has-warning .form-control{border-color:#bf5900;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}#bootstrap-theme .has-warning .form-control:focus{border-color:#8c4100;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ff8b26;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ff8b26}#bootstrap-theme .has-warning .input-group-addon{color:#bf5900;background-color:#fcf8e3;border-color:#bf5900}#bootstrap-theme .has-warning .form-control-feedback{color:#bf5900}#bootstrap-theme .has-error .help-block, #bootstrap-theme .has-error .control-label, #bootstrap-theme .has-error .radio, #bootstrap-theme .has-error .checkbox, #bootstrap-theme .has-error .radio-inline, #bootstrap-theme .has-error .checkbox-inline, #bootstrap-theme .has-error.radio label, #bootstrap-theme .has-error.checkbox label, #bootstrap-theme .has-error.radio-inline label, #bootstrap-theme .has-error.checkbox-inline label{color:#cf3458}#bootstrap-theme .has-error .form-control{border-color:#cf3458;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}#bootstrap-theme .has-error .form-control:focus{border-color:#a82846;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #e3869c;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #e3869c}#bootstrap-theme .has-error .input-group-addon{color:#cf3458;background-color:#f2dede;border-color:#cf3458}#bootstrap-theme .has-error .form-control-feedback{color:#cf3458}#bootstrap-theme .has-feedback label ~ .form-control-feedback{top:25px}#bootstrap-theme .has-feedback label.sr-only ~ .form-control-feedback{top:0}#bootstrap-theme .help-block{display:block;margin-top:5px;margin-bottom:10px;color:#8b8baa}@media (min-width: 768px){#bootstrap-theme .form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}#bootstrap-theme .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}#bootstrap-theme .form-inline .form-control-static{display:inline-block}#bootstrap-theme .form-inline .input-group{display:inline-table;vertical-align:middle}#bootstrap-theme .form-inline .input-group .input-group-addon, #bootstrap-theme .form-inline .input-group .input-group-btn, #bootstrap-theme .form-inline .input-group .form-control{width:auto}#bootstrap-theme .form-inline .input-group>.form-control{width:100%}#bootstrap-theme .form-inline .control-label{margin-bottom:0;vertical-align:middle}#bootstrap-theme .form-inline .radio, #bootstrap-theme .form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}#bootstrap-theme .form-inline .radio label, #bootstrap-theme .form-inline .checkbox label{padding-left:0}#bootstrap-theme .form-inline .radio input[type="radio"], #bootstrap-theme .form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}#bootstrap-theme .form-inline .has-feedback .form-control-feedback{top:0}}#bootstrap-theme .form-horizontal .radio, #bootstrap-theme .form-horizontal .checkbox, #bootstrap-theme .form-horizontal .radio-inline, #bootstrap-theme .form-horizontal .checkbox-inline{padding-top:5px;margin-top:0;margin-bottom:0}#bootstrap-theme .form-horizontal .radio, #bootstrap-theme .form-horizontal .checkbox{min-height:25px}#bootstrap-theme .form-horizontal .form-group{margin-right:-8px;margin-left:-8px}#bootstrap-theme .form-horizontal .form-group:before, #bootstrap-theme .form-horizontal .form-group:after{display:table;content:" "}#bootstrap-theme .form-horizontal .form-group:after{clear:both}@media (min-width: 768px){#bootstrap-theme .form-horizontal .control-label{padding-top:5px;margin-bottom:0;text-align:right}}#bootstrap-theme .form-horizontal .has-feedback .form-control-feedback{right:8px}@media (min-width: 768px){#bootstrap-theme .form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:17px}}@media (min-width: 768px){#bootstrap-theme .form-horizontal .form-group-sm .control-label{padding-top:3px;font-size:12px}}#bootstrap-theme .btn{display:inline-block;margin-bottom:0;font-weight:500;text-align:center;white-space:nowrap;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;padding:4px 10px;font-size:13px;line-height:1.5384615385;border-radius:2px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#bootstrap-theme .btn:focus, #bootstrap-theme .btn.focus, #bootstrap-theme .btn:active:focus, #bootstrap-theme .btn:active.focus, #bootstrap-theme .btn.active:focus, #bootstrap-theme .btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#bootstrap-theme .btn:hover, #bootstrap-theme .btn:focus, #bootstrap-theme .btn.focus{color:#464354;text-decoration:none}#bootstrap-theme .btn:active, #bootstrap-theme .btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}#bootstrap-theme .btn.disabled, #bootstrap-theme .btn[disabled], #bootstrap-theme fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);opacity:.65;-webkit-box-shadow:none;box-shadow:none}#bootstrap-theme a.btn.disabled, #bootstrap-theme fieldset[disabled] a.btn{pointer-events:none}#bootstrap-theme .btn-default{color:#464354;background-color:#fff;border-color:#fff}#bootstrap-theme .btn-default:focus, #bootstrap-theme .btn-default.focus{color:#464354;background-color:#e6e5e5;border-color:#bfbfbf}#bootstrap-theme .btn-default:hover{color:#464354;background-color:#e6e5e5;border-color:#e0e0e0}#bootstrap-theme .btn-default:active, #bootstrap-theme .btn-default.active, #bootstrap-theme .open>.btn-default.dropdown-toggle{color:#464354;background-color:#e6e5e5;background-image:none;border-color:#e0e0e0}#bootstrap-theme .btn-default:active:hover, #bootstrap-theme .btn-default:active:focus, #bootstrap-theme .btn-default:active.focus, #bootstrap-theme .btn-default.active:hover, #bootstrap-theme .btn-default.active:focus, #bootstrap-theme .btn-default.active.focus, #bootstrap-theme .open>.btn-default.dropdown-toggle:hover, #bootstrap-theme .open>.btn-default.dropdown-toggle:focus, #bootstrap-theme .open>.btn-default.dropdown-toggle.focus{color:#464354;background-color:#d4d4d4;border-color:#bfbfbf}#bootstrap-theme .btn-default.disabled:hover, #bootstrap-theme .btn-default.disabled:focus, #bootstrap-theme .btn-default.disabled.focus, #bootstrap-theme .btn-default[disabled]:hover, #bootstrap-theme .btn-default[disabled]:focus, #bootstrap-theme .btn-default[disabled].focus, #bootstrap-theme fieldset[disabled] .btn-default:hover, #bootstrap-theme fieldset[disabled] .btn-default:focus, #bootstrap-theme fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#fff}#bootstrap-theme .btn-default .badge{color:#fff;background-color:#464354}#bootstrap-theme .btn-primary{color:#fff;background-color:#0071bd;border-color:#0062a4}#bootstrap-theme .btn-primary:focus, #bootstrap-theme .btn-primary.focus{color:#fff;background-color:#00538a;border-color:#001624}#bootstrap-theme .btn-primary:hover{color:#fff;background-color:#00538a;border-color:#003d66}#bootstrap-theme .btn-primary:active, #bootstrap-theme .btn-primary.active, #bootstrap-theme .open>.btn-primary.dropdown-toggle{color:#fff;background-color:#00538a;background-image:none;border-color:#003d66}#bootstrap-theme .btn-primary:active:hover, #bootstrap-theme .btn-primary:active:focus, #bootstrap-theme .btn-primary:active.focus, #bootstrap-theme .btn-primary.active:hover, #bootstrap-theme .btn-primary.active:focus, #bootstrap-theme .btn-primary.active.focus, #bootstrap-theme .open>.btn-primary.dropdown-toggle:hover, #bootstrap-theme .open>.btn-primary.dropdown-toggle:focus, #bootstrap-theme .open>.btn-primary.dropdown-toggle.focus{color:#fff;background-color:#003d66;border-color:#001624}#bootstrap-theme .btn-primary.disabled:hover, #bootstrap-theme .btn-primary.disabled:focus, #bootstrap-theme .btn-primary.disabled.focus, #bootstrap-theme .btn-primary[disabled]:hover, #bootstrap-theme .btn-primary[disabled]:focus, #bootstrap-theme .btn-primary[disabled].focus, #bootstrap-theme fieldset[disabled] .btn-primary:hover, #bootstrap-theme fieldset[disabled] .btn-primary:focus, #bootstrap-theme fieldset[disabled] .btn-primary.focus{background-color:#0071bd;border-color:#0062a4}#bootstrap-theme .btn-primary .badge{color:#0071bd;background-color:#fff}#bootstrap-theme .btn-success{color:#464354;background-color:#44cb7e;border-color:#35c071}#bootstrap-theme .btn-success:focus, #bootstrap-theme .btn-success.focus{color:#464354;background-color:#30ac65;border-color:#1a5c36}#bootstrap-theme .btn-success:hover{color:#464354;background-color:#30ac65;border-color:#289055}#bootstrap-theme .btn-success:active, #bootstrap-theme .btn-success.active, #bootstrap-theme .open>.btn-success.dropdown-toggle{color:#464354;background-color:#30ac65;background-image:none;border-color:#289055}#bootstrap-theme .btn-success:active:hover, #bootstrap-theme .btn-success:active:focus, #bootstrap-theme .btn-success:active.focus, #bootstrap-theme .btn-success.active:hover, #bootstrap-theme .btn-success.active:focus, #bootstrap-theme .btn-success.active.focus, #bootstrap-theme .open>.btn-success.dropdown-toggle:hover, #bootstrap-theme .open>.btn-success.dropdown-toggle:focus, #bootstrap-theme .open>.btn-success.dropdown-toggle.focus{color:#464354;background-color:#289055;border-color:#1a5c36}#bootstrap-theme .btn-success.disabled:hover, #bootstrap-theme .btn-success.disabled:focus, #bootstrap-theme .btn-success.disabled.focus, #bootstrap-theme .btn-success[disabled]:hover, #bootstrap-theme .btn-success[disabled]:focus, #bootstrap-theme .btn-success[disabled].focus, #bootstrap-theme fieldset[disabled] .btn-success:hover, #bootstrap-theme fieldset[disabled] .btn-success:focus, #bootstrap-theme fieldset[disabled] .btn-success.focus{background-color:#44cb7e;border-color:#35c071}#bootstrap-theme .btn-success .badge{color:#44cb7e;background-color:#464354}#bootstrap-theme .btn-info{color:#fff;background-color:#0071bd;border-color:#0062a4}#bootstrap-theme .btn-info:focus, #bootstrap-theme .btn-info.focus{color:#fff;background-color:#00538a;border-color:#001624}#bootstrap-theme .btn-info:hover{color:#fff;background-color:#00538a;border-color:#003d66}#bootstrap-theme .btn-info:active, #bootstrap-theme .btn-info.active, #bootstrap-theme .open>.btn-info.dropdown-toggle{color:#fff;background-color:#00538a;background-image:none;border-color:#003d66}#bootstrap-theme .btn-info:active:hover, #bootstrap-theme .btn-info:active:focus, #bootstrap-theme .btn-info:active.focus, #bootstrap-theme .btn-info.active:hover, #bootstrap-theme .btn-info.active:focus, #bootstrap-theme .btn-info.active.focus, #bootstrap-theme .open>.btn-info.dropdown-toggle:hover, #bootstrap-theme .open>.btn-info.dropdown-toggle:focus, #bootstrap-theme .open>.btn-info.dropdown-toggle.focus{color:#fff;background-color:#003d66;border-color:#001624}#bootstrap-theme .btn-info.disabled:hover, #bootstrap-theme .btn-info.disabled:focus, #bootstrap-theme .btn-info.disabled.focus, #bootstrap-theme .btn-info[disabled]:hover, #bootstrap-theme .btn-info[disabled]:focus, #bootstrap-theme .btn-info[disabled].focus, #bootstrap-theme fieldset[disabled] .btn-info:hover, #bootstrap-theme fieldset[disabled] .btn-info:focus, #bootstrap-theme fieldset[disabled] .btn-info.focus{background-color:#0071bd;border-color:#0062a4}#bootstrap-theme .btn-info .badge{color:#0071bd;background-color:#fff}#bootstrap-theme .btn-warning{color:#464354;background-color:#e6ab5e;border-color:#e39f48}#bootstrap-theme .btn-warning:focus, #bootstrap-theme .btn-warning.focus{color:#464354;background-color:#df9432;border-color:#945e17}#bootstrap-theme .btn-warning:hover{color:#464354;background-color:#df9432;border-color:#cd8220}#bootstrap-theme .btn-warning:active, #bootstrap-theme .btn-warning.active, #bootstrap-theme .open>.btn-warning.dropdown-toggle{color:#464354;background-color:#df9432;background-image:none;border-color:#cd8220}#bootstrap-theme .btn-warning:active:hover, #bootstrap-theme .btn-warning:active:focus, #bootstrap-theme .btn-warning:active.focus, #bootstrap-theme .btn-warning.active:hover, #bootstrap-theme .btn-warning.active:focus, #bootstrap-theme .btn-warning.active.focus, #bootstrap-theme .open>.btn-warning.dropdown-toggle:hover, #bootstrap-theme .open>.btn-warning.dropdown-toggle:focus, #bootstrap-theme .open>.btn-warning.dropdown-toggle.focus{color:#464354;background-color:#cd8220;border-color:#945e17}#bootstrap-theme .btn-warning.disabled:hover, #bootstrap-theme .btn-warning.disabled:focus, #bootstrap-theme .btn-warning.disabled.focus, #bootstrap-theme .btn-warning[disabled]:hover, #bootstrap-theme .btn-warning[disabled]:focus, #bootstrap-theme .btn-warning[disabled].focus, #bootstrap-theme fieldset[disabled] .btn-warning:hover, #bootstrap-theme fieldset[disabled] .btn-warning:focus, #bootstrap-theme fieldset[disabled] .btn-warning.focus{background-color:#e6ab5e;border-color:#e39f48}#bootstrap-theme .btn-warning .badge{color:#e6ab5e;background-color:#464354}#bootstrap-theme .btn-danger{color:#fff;background-color:#cf3458;border-color:#bd2d4e}#bootstrap-theme .btn-danger:focus, #bootstrap-theme .btn-danger.focus{color:#fff;background-color:#a82846;border-color:#561423}#bootstrap-theme .btn-danger:hover{color:#fff;background-color:#a82846;border-color:#8b213a}#bootstrap-theme .btn-danger:active, #bootstrap-theme .btn-danger.active, #bootstrap-theme .open>.btn-danger.dropdown-toggle{color:#fff;background-color:#a82846;background-image:none;border-color:#8b213a}#bootstrap-theme .btn-danger:active:hover, #bootstrap-theme .btn-danger:active:focus, #bootstrap-theme .btn-danger:active.focus, #bootstrap-theme .btn-danger.active:hover, #bootstrap-theme .btn-danger.active:focus, #bootstrap-theme .btn-danger.active.focus, #bootstrap-theme .open>.btn-danger.dropdown-toggle:hover, #bootstrap-theme .open>.btn-danger.dropdown-toggle:focus, #bootstrap-theme .open>.btn-danger.dropdown-toggle.focus{color:#fff;background-color:#8b213a;border-color:#561423}#bootstrap-theme .btn-danger.disabled:hover, #bootstrap-theme .btn-danger.disabled:focus, #bootstrap-theme .btn-danger.disabled.focus, #bootstrap-theme .btn-danger[disabled]:hover, #bootstrap-theme .btn-danger[disabled]:focus, #bootstrap-theme .btn-danger[disabled].focus, #bootstrap-theme fieldset[disabled] .btn-danger:hover, #bootstrap-theme fieldset[disabled] .btn-danger:focus, #bootstrap-theme fieldset[disabled] .btn-danger.focus{background-color:#cf3458;border-color:#bd2d4e}#bootstrap-theme .btn-danger .badge{color:#cf3458;background-color:#fff}#bootstrap-theme .btn-link{font-weight:400;color:#0071bd;border-radius:0}#bootstrap-theme .btn-link, #bootstrap-theme .btn-link:active, #bootstrap-theme .btn-link.active, #bootstrap-theme .btn-link[disabled], #bootstrap-theme fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}#bootstrap-theme .btn-link, #bootstrap-theme .btn-link:hover, #bootstrap-theme .btn-link:focus, #bootstrap-theme .btn-link:active{border-color:transparent}#bootstrap-theme .btn-link:hover, #bootstrap-theme .btn-link:focus{color:#004371;text-decoration:underline;background-color:transparent}#bootstrap-theme .btn-link[disabled]:hover, #bootstrap-theme .btn-link[disabled]:focus, #bootstrap-theme fieldset[disabled] .btn-link:hover, #bootstrap-theme fieldset[disabled] .btn-link:focus{color:#e8eef0;text-decoration:none}#bootstrap-theme .btn-lg, #bootstrap-theme .btn-group-lg>.btn{padding:10px 16px;font-size:17px;line-height:1.3333333;border-radius:6px}#bootstrap-theme .btn-sm, #bootstrap-theme .btn-group-sm>.btn{padding:2px 10px;font-size:12px;line-height:1.5;border-radius:2px}#bootstrap-theme .btn-xs, #bootstrap-theme .btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:2px}#bootstrap-theme .btn-block{display:block;width:100%}#bootstrap-theme .btn-block+.btn-block{margin-top:5px}#bootstrap-theme input[type="submit"].btn-block, #bootstrap-theme input[type="reset"].btn-block, #bootstrap-theme input[type="button"].btn-block{width:100%}#bootstrap-theme .fade{opacity:0;-webkit-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear}#bootstrap-theme .fade.in{opacity:1}#bootstrap-theme .collapse{display:none}#bootstrap-theme .collapse.in{display:block}#bootstrap-theme tr.collapse.in{display:table-row}#bootstrap-theme tbody.collapse.in{display:table-row-group}#bootstrap-theme .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}#bootstrap-theme .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}#bootstrap-theme .dropup, #bootstrap-theme .dropdown{position:relative}#bootstrap-theme .dropdown-toggle:focus{outline:0}#bootstrap-theme .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:13px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:2px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175)}#bootstrap-theme .dropdown-menu.pull-right{right:0;left:auto}#bootstrap-theme .dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}#bootstrap-theme .dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.5384615385;color:#4d4d69;white-space:nowrap}#bootstrap-theme .dropdown-menu>li>a:hover, #bootstrap-theme .dropdown-menu>li>a:focus{color:#42425a;text-decoration:none;background-color:#f3f6f7}#bootstrap-theme .dropdown-menu>.active>a, #bootstrap-theme .dropdown-menu>.active>a:hover, #bootstrap-theme .dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#0071bd;outline:0}#bootstrap-theme .dropdown-menu>.disabled>a, #bootstrap-theme .dropdown-menu>.disabled>a:hover, #bootstrap-theme .dropdown-menu>.disabled>a:focus{color:#e8eef0}#bootstrap-theme .dropdown-menu>.disabled>a:hover, #bootstrap-theme .dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}#bootstrap-theme .open>.dropdown-menu{display:block}#bootstrap-theme .open>a{outline:0}#bootstrap-theme .dropdown-menu-right{right:0;left:auto}#bootstrap-theme .dropdown-menu-left{right:auto;left:0}#bootstrap-theme .dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.5384615385;color:#464354;white-space:nowrap}#bootstrap-theme .dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}#bootstrap-theme .pull-right>.dropdown-menu{right:0;left:auto}#bootstrap-theme .dropup .caret, #bootstrap-theme .navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9}#bootstrap-theme .dropup .dropdown-menu, #bootstrap-theme .navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width: 768px){#bootstrap-theme .navbar-right .dropdown-menu{right:0;left:auto}#bootstrap-theme .navbar-right .dropdown-menu-left{left:0;right:auto}}#bootstrap-theme .btn-group, #bootstrap-theme .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}#bootstrap-theme .btn-group>.btn, #bootstrap-theme .btn-group-vertical>.btn{position:relative;float:left}#bootstrap-theme .btn-group>.btn:hover, #bootstrap-theme .btn-group>.btn:focus, #bootstrap-theme .btn-group>.btn:active, #bootstrap-theme .btn-group>.btn.active, #bootstrap-theme .btn-group-vertical>.btn:hover, #bootstrap-theme .btn-group-vertical>.btn:focus, #bootstrap-theme .btn-group-vertical>.btn:active, #bootstrap-theme .btn-group-vertical>.btn.active{z-index:2}#bootstrap-theme .btn-group .btn+.btn, #bootstrap-theme .btn-group .btn+.btn-group, #bootstrap-theme .btn-group .btn-group+.btn, #bootstrap-theme .btn-group .btn-group+.btn-group{margin-left:-1px}#bootstrap-theme .btn-toolbar{margin-left:-5px}#bootstrap-theme .btn-toolbar:before, #bootstrap-theme .btn-toolbar:after{display:table;content:" "}#bootstrap-theme .btn-toolbar:after{clear:both}#bootstrap-theme .btn-toolbar .btn, #bootstrap-theme .btn-toolbar .btn-group, #bootstrap-theme .btn-toolbar .input-group{float:left}#bootstrap-theme .btn-toolbar>.btn, #bootstrap-theme .btn-toolbar>.btn-group, #bootstrap-theme .btn-toolbar>.input-group{margin-left:5px}#bootstrap-theme .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}#bootstrap-theme .btn-group>.btn:first-child{margin-left:0}#bootstrap-theme .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}#bootstrap-theme .btn-group>.btn:last-child:not(:first-child), #bootstrap-theme .btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}#bootstrap-theme .btn-group>.btn-group{float:left}#bootstrap-theme .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}#bootstrap-theme .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child, #bootstrap-theme .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}#bootstrap-theme .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}#bootstrap-theme .btn-group .dropdown-toggle:active, #bootstrap-theme .btn-group.open .dropdown-toggle{outline:0}#bootstrap-theme .btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}#bootstrap-theme .btn-group>.btn-lg+.dropdown-toggle, #bootstrap-theme .btn-group-lg.btn-group>.btn+.dropdown-toggle{padding-right:12px;padding-left:12px}#bootstrap-theme .btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}#bootstrap-theme .btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}#bootstrap-theme .btn .caret{margin-left:0}#bootstrap-theme .btn-lg .caret, #bootstrap-theme .btn-group-lg>.btn .caret{border-width:5px 5px 0;border-bottom-width:0}#bootstrap-theme .dropup .btn-lg .caret, #bootstrap-theme .dropup .btn-group-lg>.btn .caret{border-width:0 5px 5px}#bootstrap-theme .btn-group-vertical>.btn, #bootstrap-theme .btn-group-vertical>.btn-group, #bootstrap-theme .btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}#bootstrap-theme .btn-group-vertical>.btn-group:before, #bootstrap-theme .btn-group-vertical>.btn-group:after{display:table;content:" "}#bootstrap-theme .btn-group-vertical>.btn-group:after{clear:both}#bootstrap-theme .btn-group-vertical>.btn-group>.btn{float:none}#bootstrap-theme .btn-group-vertical>.btn+.btn, #bootstrap-theme .btn-group-vertical>.btn+.btn-group, #bootstrap-theme .btn-group-vertical>.btn-group+.btn, #bootstrap-theme .btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}#bootstrap-theme .btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}#bootstrap-theme .btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:2px;border-top-right-radius:2px;border-bottom-right-radius:0;border-bottom-left-radius:0}#bootstrap-theme .btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:2px;border-bottom-left-radius:2px}#bootstrap-theme .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}#bootstrap-theme .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child, #bootstrap-theme .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}#bootstrap-theme .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}#bootstrap-theme .btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}#bootstrap-theme .btn-group-justified>.btn, #bootstrap-theme .btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}#bootstrap-theme .btn-group-justified>.btn-group .btn{width:100%}#bootstrap-theme .btn-group-justified>.btn-group .dropdown-menu{left:auto}#bootstrap-theme [data-toggle="buttons"]>.btn input[type="radio"], #bootstrap-theme [data-toggle="buttons"]>.btn input[type="checkbox"], #bootstrap-theme [data-toggle="buttons"]>.btn-group>.btn input[type="radio"], #bootstrap-theme [data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}#bootstrap-theme .input-group{position:relative;display:table;border-collapse:separate}#bootstrap-theme .input-group[class*="col-"]{float:none;padding-right:0;padding-left:0}#bootstrap-theme .input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}#bootstrap-theme .input-group .form-control:focus{z-index:3}#bootstrap-theme .input-group-addon, #bootstrap-theme .input-group-btn, #bootstrap-theme .input-group .form-control{display:table-cell}#bootstrap-theme .input-group-addon:not(:first-child):not(:last-child), #bootstrap-theme .input-group-btn:not(:first-child):not(:last-child), #bootstrap-theme .input-group .form-control:not(:first-child):not(:last-child){border-radius:0}#bootstrap-theme .input-group-addon, #bootstrap-theme .input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}#bootstrap-theme .input-group-addon{padding:4px 10px;font-size:13px;font-weight:400;line-height:1;color:#464354;text-align:center;background-color:#f3f6f7;border:1px solid #c2cfd8;border-radius:2px}#bootstrap-theme .input-group-addon.input-sm, #bootstrap-theme .input-group-sm>.input-group-addon, #bootstrap-theme .input-group-sm>.input-group-btn>.input-group-addon.btn{padding:2px 10px;font-size:12px;border-radius:2px}#bootstrap-theme .input-group-addon.input-lg, #bootstrap-theme .input-group-lg>.input-group-addon, #bootstrap-theme .input-group-lg>.input-group-btn>.input-group-addon.btn{padding:10px 16px;font-size:17px;border-radius:2px}#bootstrap-theme .input-group-addon input[type="radio"], #bootstrap-theme .input-group-addon input[type="checkbox"]{margin-top:0}#bootstrap-theme .input-group .form-control:first-child, #bootstrap-theme .input-group-addon:first-child, #bootstrap-theme .input-group-btn:first-child>.btn, #bootstrap-theme .input-group-btn:first-child>.btn-group>.btn, #bootstrap-theme .input-group-btn:first-child>.dropdown-toggle, #bootstrap-theme .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle), #bootstrap-theme .input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}#bootstrap-theme .input-group-addon:first-child{border-right:0}#bootstrap-theme .input-group .form-control:last-child, #bootstrap-theme .input-group-addon:last-child, #bootstrap-theme .input-group-btn:last-child>.btn, #bootstrap-theme .input-group-btn:last-child>.btn-group>.btn, #bootstrap-theme .input-group-btn:last-child>.dropdown-toggle, #bootstrap-theme .input-group-btn:first-child>.btn:not(:first-child), #bootstrap-theme .input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}#bootstrap-theme .input-group-addon:last-child{border-left:0}#bootstrap-theme .input-group-btn{position:relative;font-size:0;white-space:nowrap}#bootstrap-theme .input-group-btn>.btn{position:relative}#bootstrap-theme .input-group-btn>.btn+.btn{margin-left:-1px}#bootstrap-theme .input-group-btn>.btn:hover, #bootstrap-theme .input-group-btn>.btn:focus, #bootstrap-theme .input-group-btn>.btn:active{z-index:2}#bootstrap-theme .input-group-btn:first-child>.btn, #bootstrap-theme .input-group-btn:first-child>.btn-group{margin-right:-1px}#bootstrap-theme .input-group-btn:last-child>.btn, #bootstrap-theme .input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}#bootstrap-theme .nav{padding-left:0;margin-bottom:0;list-style:none}#bootstrap-theme .nav:before, #bootstrap-theme .nav:after{display:table;content:" "}#bootstrap-theme .nav:after{clear:both}#bootstrap-theme .nav>li{position:relative;display:block}#bootstrap-theme .nav>li>a{position:relative;display:block;padding:10px 20px}#bootstrap-theme .nav>li>a:hover, #bootstrap-theme .nav>li>a:focus{text-decoration:none;background-color:#f3f6f7}#bootstrap-theme .nav>li.disabled>a{color:#bcbcc8}#bootstrap-theme .nav>li.disabled>a:hover, #bootstrap-theme .nav>li.disabled>a:focus{color:#bcbcc8;text-decoration:none;cursor:not-allowed;background-color:transparent}#bootstrap-theme .nav .open>a, #bootstrap-theme .nav .open>a:hover, #bootstrap-theme .nav .open>a:focus{background-color:#f3f6f7;border-color:#0071bd}#bootstrap-theme .nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}#bootstrap-theme .nav>li>a>img{max-width:none}#bootstrap-theme .nav-tabs{border-bottom:1px solid #d3dee2}#bootstrap-theme .nav-tabs>li{float:left;margin-bottom:-1px}#bootstrap-theme .nav-tabs>li>a{margin-right:2px;line-height:1.5384615385;border:1px solid transparent;border-radius:2px 2px 0 0}#bootstrap-theme .nav-tabs>li>a:hover{border-color:#f3f6f7 #f3f6f7 #d3dee2}#bootstrap-theme .nav-tabs>li.active>a, #bootstrap-theme .nav-tabs>li.active>a:hover, #bootstrap-theme .nav-tabs>li.active>a:focus{color:#0071bd;cursor:default;background-color:#fff;border:1px solid #d3dee2;border-bottom-color:transparent}#bootstrap-theme .nav-pills>li{float:left}#bootstrap-theme .nav-pills>li>a{border-radius:2px}#bootstrap-theme .nav-pills>li+li{margin-left:2px}#bootstrap-theme .nav-pills>li.active>a, #bootstrap-theme .nav-pills>li.active>a:hover, #bootstrap-theme .nav-pills>li.active>a:focus{color:#fff;background-color:#0071bd}#bootstrap-theme .nav-stacked>li{float:none}#bootstrap-theme .nav-stacked>li+li{margin-top:2px;margin-left:0}#bootstrap-theme .nav-justified, #bootstrap-theme .nav-tabs.nav-justified{width:100%}#bootstrap-theme .nav-justified>li, #bootstrap-theme .nav-tabs.nav-justified>li{float:none}#bootstrap-theme .nav-justified>li>a, #bootstrap-theme .nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}#bootstrap-theme .nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width: 768px){#bootstrap-theme .nav-justified>li, #bootstrap-theme .nav-tabs.nav-justified>li{display:table-cell;width:1%}#bootstrap-theme .nav-justified>li>a, #bootstrap-theme .nav-tabs.nav-justified>li>a{margin-bottom:0}}#bootstrap-theme .nav-tabs-justified, #bootstrap-theme .nav-tabs.nav-justified{border-bottom:0}#bootstrap-theme .nav-tabs-justified>li>a, #bootstrap-theme .nav-tabs.nav-justified>li>a{margin-right:0;border-radius:2px}#bootstrap-theme .nav-tabs-justified>.active>a, #bootstrap-theme .nav-tabs.nav-justified>.active>a, #bootstrap-theme .nav-tabs-justified>.active>a:hover, #bootstrap-theme .nav-tabs.nav-justified>.active>a:hover, #bootstrap-theme .nav-tabs-justified>.active>a:focus, #bootstrap-theme .nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width: 768px){#bootstrap-theme .nav-tabs-justified>li>a, #bootstrap-theme .nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:2px 2px 0 0}#bootstrap-theme .nav-tabs-justified>.active>a, #bootstrap-theme .nav-tabs.nav-justified>.active>a, #bootstrap-theme .nav-tabs-justified>.active>a:hover, #bootstrap-theme .nav-tabs.nav-justified>.active>a:hover, #bootstrap-theme .nav-tabs-justified>.active>a:focus, #bootstrap-theme .nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#e8eef0}}#bootstrap-theme .tab-content>.tab-pane{display:none}#bootstrap-theme .tab-content>.active{display:block}#bootstrap-theme .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}#bootstrap-theme .navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}#bootstrap-theme .navbar:before, #bootstrap-theme .navbar:after{display:table;content:" "}#bootstrap-theme .navbar:after{clear:both}@media (min-width: 768px){#bootstrap-theme .navbar{border-radius:2px}}#bootstrap-theme .navbar-header:before, #bootstrap-theme .navbar-header:after{display:table;content:" "}#bootstrap-theme .navbar-header:after{clear:both}@media (min-width: 768px){#bootstrap-theme .navbar-header{float:left}}#bootstrap-theme .navbar-collapse{padding-right:8px;padding-left:8px;overflow-x:visible;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}#bootstrap-theme .navbar-collapse:before, #bootstrap-theme .navbar-collapse:after{display:table;content:" "}#bootstrap-theme .navbar-collapse:after{clear:both}#bootstrap-theme .navbar-collapse.in{overflow-y:auto}@media (min-width: 768px){#bootstrap-theme .navbar-collapse{width:auto;border-top:0;box-shadow:none}#bootstrap-theme .navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}#bootstrap-theme .navbar-collapse.in{overflow-y:visible}#bootstrap-theme .navbar-fixed-top .navbar-collapse, #bootstrap-theme .navbar-static-top .navbar-collapse, #bootstrap-theme .navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}#bootstrap-theme .navbar-fixed-top, #bootstrap-theme .navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}#bootstrap-theme .navbar-fixed-top .navbar-collapse, #bootstrap-theme .navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width: 480px) and (orientation: landscape){#bootstrap-theme .navbar-fixed-top .navbar-collapse, #bootstrap-theme .navbar-fixed-bottom .navbar-collapse{max-height:200px}}@media (min-width: 768px){#bootstrap-theme .navbar-fixed-top, #bootstrap-theme .navbar-fixed-bottom{border-radius:0}}#bootstrap-theme .navbar-fixed-top{top:0;border-width:0 0 1px}#bootstrap-theme .navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}#bootstrap-theme .container>.navbar-header, #bootstrap-theme .container>.navbar-collapse, #bootstrap-theme .container-fluid>.navbar-header, #bootstrap-theme .container-fluid>.navbar-collapse{margin-right:-8px;margin-left:-8px}@media (min-width: 768px){#bootstrap-theme .container>.navbar-header, #bootstrap-theme .container>.navbar-collapse, #bootstrap-theme .container-fluid>.navbar-header, #bootstrap-theme .container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}#bootstrap-theme .navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width: 768px){#bootstrap-theme .navbar-static-top{border-radius:0}}#bootstrap-theme .navbar-brand{float:left;height:50px;padding:15px 8px;font-size:17px;line-height:20px}#bootstrap-theme .navbar-brand:hover, #bootstrap-theme .navbar-brand:focus{text-decoration:none}#bootstrap-theme .navbar-brand>img{display:block}@media (min-width: 768px){#bootstrap-theme .navbar>.container .navbar-brand, #bootstrap-theme .navbar>.container-fluid .navbar-brand{margin-left:-8px}}#bootstrap-theme .navbar-toggle{position:relative;float:right;padding:9px 10px;margin-right:8px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:2px}#bootstrap-theme .navbar-toggle:focus{outline:0}#bootstrap-theme .navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}#bootstrap-theme .navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width: 768px){#bootstrap-theme .navbar-toggle{display:none}}#bootstrap-theme .navbar-nav{margin:7.5px -8px}#bootstrap-theme .navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width: 767px){#bootstrap-theme .navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}#bootstrap-theme .navbar-nav .open .dropdown-menu>li>a, #bootstrap-theme .navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}#bootstrap-theme .navbar-nav .open .dropdown-menu>li>a{line-height:20px}#bootstrap-theme .navbar-nav .open .dropdown-menu>li>a:hover, #bootstrap-theme .navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width: 768px){#bootstrap-theme .navbar-nav{float:left;margin:0}#bootstrap-theme .navbar-nav>li{float:left}#bootstrap-theme .navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}#bootstrap-theme .navbar-form{padding:10px 8px;margin-right:-8px;margin-left:-8px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:10px;margin-bottom:10px}@media (min-width: 768px){#bootstrap-theme .navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}#bootstrap-theme .navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}#bootstrap-theme .navbar-form .form-control-static{display:inline-block}#bootstrap-theme .navbar-form .input-group{display:inline-table;vertical-align:middle}#bootstrap-theme .navbar-form .input-group .input-group-addon, #bootstrap-theme .navbar-form .input-group .input-group-btn, #bootstrap-theme .navbar-form .input-group .form-control{width:auto}#bootstrap-theme .navbar-form .input-group>.form-control{width:100%}#bootstrap-theme .navbar-form .control-label{margin-bottom:0;vertical-align:middle}#bootstrap-theme .navbar-form .radio, #bootstrap-theme .navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}#bootstrap-theme .navbar-form .radio label, #bootstrap-theme .navbar-form .checkbox label{padding-left:0}#bootstrap-theme .navbar-form .radio input[type="radio"], #bootstrap-theme .navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}#bootstrap-theme .navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width: 767px){#bootstrap-theme .navbar-form .form-group{margin-bottom:5px}#bootstrap-theme .navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width: 768px){#bootstrap-theme .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}}#bootstrap-theme .navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}#bootstrap-theme .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:2px;border-top-right-radius:2px;border-bottom-right-radius:0;border-bottom-left-radius:0}#bootstrap-theme .navbar-btn{margin-top:10px;margin-bottom:10px}#bootstrap-theme .navbar-btn.btn-sm, #bootstrap-theme .btn-group-sm>.navbar-btn.btn{margin-top:13px;margin-bottom:13px}#bootstrap-theme .navbar-btn.btn-xs, #bootstrap-theme .btn-group-xs>.navbar-btn.btn{margin-top:14px;margin-bottom:14px}#bootstrap-theme .navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width: 768px){#bootstrap-theme .navbar-text{float:left;margin-right:8px;margin-left:8px}}@media (min-width: 768px){#bootstrap-theme .navbar-left{float:left !important}#bootstrap-theme .navbar-right{float:right !important;margin-right:-8px}#bootstrap-theme .navbar-right ~ .navbar-right{margin-right:0}}#bootstrap-theme .navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}#bootstrap-theme .navbar-default .navbar-brand{color:#777}#bootstrap-theme .navbar-default .navbar-brand:hover, #bootstrap-theme .navbar-default .navbar-brand:focus{color:#5e5d5d;background-color:rgba(0,0,0,0)}#bootstrap-theme .navbar-default .navbar-text{color:#777}#bootstrap-theme .navbar-default .navbar-nav>li>a{color:#777}#bootstrap-theme .navbar-default .navbar-nav>li>a:hover, #bootstrap-theme .navbar-default .navbar-nav>li>a:focus{color:#333;background-color:rgba(0,0,0,0)}#bootstrap-theme .navbar-default .navbar-nav>.active>a, #bootstrap-theme .navbar-default .navbar-nav>.active>a:hover, #bootstrap-theme .navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}#bootstrap-theme .navbar-default .navbar-nav>.disabled>a, #bootstrap-theme .navbar-default .navbar-nav>.disabled>a:hover, #bootstrap-theme .navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:rgba(0,0,0,0)}#bootstrap-theme .navbar-default .navbar-nav>.open>a, #bootstrap-theme .navbar-default .navbar-nav>.open>a:hover, #bootstrap-theme .navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}@media (max-width: 767px){#bootstrap-theme .navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}#bootstrap-theme .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover, #bootstrap-theme .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:rgba(0,0,0,0)}#bootstrap-theme .navbar-default .navbar-nav .open .dropdown-menu>.active>a, #bootstrap-theme .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover, #bootstrap-theme .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}#bootstrap-theme .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a, #bootstrap-theme .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover, #bootstrap-theme .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:rgba(0,0,0,0)}}#bootstrap-theme .navbar-default .navbar-toggle{border-color:#ddd}#bootstrap-theme .navbar-default .navbar-toggle:hover, #bootstrap-theme .navbar-default .navbar-toggle:focus{background-color:#ddd}#bootstrap-theme .navbar-default .navbar-toggle .icon-bar{background-color:#888}#bootstrap-theme .navbar-default .navbar-collapse, #bootstrap-theme .navbar-default .navbar-form{border-color:#e7e7e7}#bootstrap-theme .navbar-default .navbar-link{color:#777}#bootstrap-theme .navbar-default .navbar-link:hover{color:#333}#bootstrap-theme .navbar-default .btn-link{color:#777}#bootstrap-theme .navbar-default .btn-link:hover, #bootstrap-theme .navbar-default .btn-link:focus{color:#333}#bootstrap-theme .navbar-default .btn-link[disabled]:hover, #bootstrap-theme .navbar-default .btn-link[disabled]:focus, #bootstrap-theme fieldset[disabled] .navbar-default .btn-link:hover, #bootstrap-theme fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}#bootstrap-theme .navbar-inverse{background-color:#222;border-color:#090808}#bootstrap-theme .navbar-inverse .navbar-brand{color:#fff}#bootstrap-theme .navbar-inverse .navbar-brand:hover, #bootstrap-theme .navbar-inverse .navbar-brand:focus{color:#fff;background-color:rgba(0,0,0,0)}#bootstrap-theme .navbar-inverse .navbar-text{color:#fff}#bootstrap-theme .navbar-inverse .navbar-nav>li>a{color:#fff}#bootstrap-theme .navbar-inverse .navbar-nav>li>a:hover, #bootstrap-theme .navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:rgba(0,0,0,0)}#bootstrap-theme .navbar-inverse .navbar-nav>.active>a, #bootstrap-theme .navbar-inverse .navbar-nav>.active>a:hover, #bootstrap-theme .navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#090808}#bootstrap-theme .navbar-inverse .navbar-nav>.disabled>a, #bootstrap-theme .navbar-inverse .navbar-nav>.disabled>a:hover, #bootstrap-theme .navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:rgba(0,0,0,0)}#bootstrap-theme .navbar-inverse .navbar-nav>.open>a, #bootstrap-theme .navbar-inverse .navbar-nav>.open>a:hover, #bootstrap-theme .navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#090808}@media (max-width: 767px){#bootstrap-theme .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#090808}#bootstrap-theme .navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#090808}#bootstrap-theme .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#fff}#bootstrap-theme .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover, #bootstrap-theme .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:rgba(0,0,0,0)}#bootstrap-theme .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a, #bootstrap-theme .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover, #bootstrap-theme .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#090808}#bootstrap-theme .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a, #bootstrap-theme .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover, #bootstrap-theme .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:rgba(0,0,0,0)}}#bootstrap-theme .navbar-inverse .navbar-toggle{border-color:#333}#bootstrap-theme .navbar-inverse .navbar-toggle:hover, #bootstrap-theme .navbar-inverse .navbar-toggle:focus{background-color:#333}#bootstrap-theme .navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}#bootstrap-theme .navbar-inverse .navbar-collapse, #bootstrap-theme .navbar-inverse .navbar-form{border-color:#101010}#bootstrap-theme .navbar-inverse .navbar-link{color:#fff}#bootstrap-theme .navbar-inverse .navbar-link:hover{color:#fff}#bootstrap-theme .navbar-inverse .btn-link{color:#fff}#bootstrap-theme .navbar-inverse .btn-link:hover, #bootstrap-theme .navbar-inverse .btn-link:focus{color:#fff}#bootstrap-theme .navbar-inverse .btn-link[disabled]:hover, #bootstrap-theme .navbar-inverse .btn-link[disabled]:focus, #bootstrap-theme fieldset[disabled] .navbar-inverse .btn-link:hover, #bootstrap-theme fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}#bootstrap-theme .breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:2px}#bootstrap-theme .breadcrumb>li{display:inline-block}#bootstrap-theme .breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"> "}#bootstrap-theme .breadcrumb>.active{color:#e8eef0}#bootstrap-theme .pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:2px}#bootstrap-theme .pagination>li{display:inline}#bootstrap-theme .pagination>li>a, #bootstrap-theme .pagination>li>span{position:relative;float:left;padding:4px 10px;margin-left:-1px;line-height:1.5384615385;color:#4d4d69;text-decoration:none;background-color:rgba(0,0,0,0);border:1px solid #ddd}#bootstrap-theme .pagination>li>a:hover, #bootstrap-theme .pagination>li>a:focus, #bootstrap-theme .pagination>li>span:hover, #bootstrap-theme .pagination>li>span:focus{z-index:2;color:#464354;background-color:rgba(0,0,0,0);border-color:#ddd}#bootstrap-theme .pagination>li:first-child>a, #bootstrap-theme .pagination>li:first-child>span{margin-left:0;border-top-left-radius:2px;border-bottom-left-radius:2px}#bootstrap-theme .pagination>li:last-child>a, #bootstrap-theme .pagination>li:last-child>span{border-top-right-radius:2px;border-bottom-right-radius:2px}#bootstrap-theme .pagination>.active>a, #bootstrap-theme .pagination>.active>a:hover, #bootstrap-theme .pagination>.active>a:focus, #bootstrap-theme .pagination>.active>span, #bootstrap-theme .pagination>.active>span:hover, #bootstrap-theme .pagination>.active>span:focus{z-index:3;color:#464354;cursor:default;background-color:rgba(0,0,0,0);border-color:#0071bd}#bootstrap-theme .pagination>.disabled>span, #bootstrap-theme .pagination>.disabled>span:hover, #bootstrap-theme .pagination>.disabled>span:focus, #bootstrap-theme .pagination>.disabled>a, #bootstrap-theme .pagination>.disabled>a:hover, #bootstrap-theme .pagination>.disabled>a:focus{color:#e8eef0;cursor:not-allowed;background-color:rgba(0,0,0,0);border-color:#ddd}#bootstrap-theme .pagination-lg>li>a, #bootstrap-theme .pagination-lg>li>span{padding:10px 16px;font-size:17px;line-height:1.3333333}#bootstrap-theme .pagination-lg>li:first-child>a, #bootstrap-theme .pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}#bootstrap-theme .pagination-lg>li:last-child>a, #bootstrap-theme .pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}#bootstrap-theme .pagination-sm>li>a, #bootstrap-theme .pagination-sm>li>span{padding:2px 10px;font-size:12px;line-height:1.5}#bootstrap-theme .pagination-sm>li:first-child>a, #bootstrap-theme .pagination-sm>li:first-child>span{border-top-left-radius:2px;border-bottom-left-radius:2px}#bootstrap-theme .pagination-sm>li:last-child>a, #bootstrap-theme .pagination-sm>li:last-child>span{border-top-right-radius:2px;border-bottom-right-radius:2px}#bootstrap-theme .pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}#bootstrap-theme .pager:before, #bootstrap-theme .pager:after{display:table;content:" "}#bootstrap-theme .pager:after{clear:both}#bootstrap-theme .pager li{display:inline}#bootstrap-theme .pager li>a, #bootstrap-theme .pager li>span{display:inline-block;padding:5px 14px;background-color:rgba(0,0,0,0);border:1px solid #ddd;border-radius:15px}#bootstrap-theme .pager li>a:hover, #bootstrap-theme .pager li>a:focus{text-decoration:none;background-color:rgba(0,0,0,0)}#bootstrap-theme .pager .next>a, #bootstrap-theme .pager .next>span{float:right}#bootstrap-theme .pager .previous>a, #bootstrap-theme .pager .previous>span{float:left}#bootstrap-theme .pager .disabled>a, #bootstrap-theme .pager .disabled>a:hover, #bootstrap-theme .pager .disabled>a:focus, #bootstrap-theme .pager .disabled>span{color:#e8eef0;cursor:not-allowed;background-color:rgba(0,0,0,0)}#bootstrap-theme .label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}#bootstrap-theme .label:empty{display:none}#bootstrap-theme .btn .label{position:relative;top:-1px}#bootstrap-theme a.label:hover, #bootstrap-theme a.label:focus{color:#fff;text-decoration:none;cursor:pointer}#bootstrap-theme .label-default{background-color:#c2cfd8}#bootstrap-theme .label-default[href]:hover, #bootstrap-theme .label-default[href]:focus{background-color:#a3b7c4}#bootstrap-theme .label-primary{background-color:#0071bd}#bootstrap-theme .label-primary[href]:hover, #bootstrap-theme .label-primary[href]:focus{background-color:#00538a}#bootstrap-theme .label-success{background-color:#44cb7e}#bootstrap-theme .label-success[href]:hover, #bootstrap-theme .label-success[href]:focus{background-color:#30ac65}#bootstrap-theme .label-info{background-color:#0071bd}#bootstrap-theme .label-info[href]:hover, #bootstrap-theme .label-info[href]:focus{background-color:#00538a}#bootstrap-theme .label-warning{background-color:#e6ab5e}#bootstrap-theme .label-warning[href]:hover, #bootstrap-theme .label-warning[href]:focus{background-color:#df9432}#bootstrap-theme .label-danger{background-color:#cf3458}#bootstrap-theme .label-danger[href]:hover, #bootstrap-theme .label-danger[href]:focus{background-color:#a82846}#bootstrap-theme .badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:400;line-height:1.1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#0071bd;border-radius:10px}#bootstrap-theme .badge:empty{display:none}#bootstrap-theme .btn .badge{position:relative;top:-1px}#bootstrap-theme .btn-xs .badge, #bootstrap-theme .btn-group-xs>.btn .badge, #bootstrap-theme .btn-group-xs>.btn .badge{top:0;padding:1px 5px}#bootstrap-theme .list-group-item.active>.badge, #bootstrap-theme .nav-pills>.active>a>.badge{color:#0071bd;background-color:#fff}#bootstrap-theme .list-group-item>.badge{float:right}#bootstrap-theme .list-group-item>.badge+.badge{margin-right:5px}#bootstrap-theme .nav-pills>li>a>.badge{margin-left:3px}#bootstrap-theme a.badge:hover, #bootstrap-theme a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}#bootstrap-theme .jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#f3f6f7}#bootstrap-theme .jumbotron h1, #bootstrap-theme .jumbotron .h1{color:inherit}#bootstrap-theme .jumbotron p{margin-bottom:15px;font-size:20px;font-weight:200}#bootstrap-theme .jumbotron>hr{border-top-color:#d4dfe3}#bootstrap-theme .container .jumbotron, #bootstrap-theme .container-fluid .jumbotron{padding-right:8px;padding-left:8px;border-radius:6px}#bootstrap-theme .jumbotron .container{max-width:100%}@media screen and (min-width: 768px){#bootstrap-theme .jumbotron{padding-top:48px;padding-bottom:48px}#bootstrap-theme .container .jumbotron, #bootstrap-theme .container-fluid .jumbotron{padding-right:60px;padding-left:60px}#bootstrap-theme .jumbotron h1, #bootstrap-theme .jumbotron .h1{font-size:59px}}#bootstrap-theme .thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.5384615385;background-color:#e8eef0;border:1px solid #ddd;border-radius:2px;-webkit-transition:border 0.2s ease-in-out;-o-transition:border 0.2s ease-in-out;transition:border 0.2s ease-in-out}#bootstrap-theme .thumbnail>img, #bootstrap-theme .thumbnail a>img{display:block;max-width:100%;height:auto;margin-right:auto;margin-left:auto}#bootstrap-theme .thumbnail .caption{padding:9px;color:#4d4d69}#bootstrap-theme a.thumbnail:hover, #bootstrap-theme a.thumbnail:focus, #bootstrap-theme a.thumbnail.active{border-color:#0071bd}#bootstrap-theme .alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:2px}#bootstrap-theme .alert h4{margin-top:0;color:inherit}#bootstrap-theme .alert .alert-link{font-weight:bold}#bootstrap-theme .alert>p, #bootstrap-theme .alert>ul{margin-bottom:0}#bootstrap-theme .alert>p+p{margin-top:5px}#bootstrap-theme .alert-dismissable, #bootstrap-theme .alert-dismissible{padding-right:35px}#bootstrap-theme .alert-dismissable .close, #bootstrap-theme .alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}#bootstrap-theme .alert-success{color:#464354;background-color:#bcecd1;border-color:#44cb7e}#bootstrap-theme .alert-success hr{border-top-color:#35c071}#bootstrap-theme .alert-success .alert-link{color:#2e2c38}#bootstrap-theme .alert-info{color:#464354;background-color:#57bbff;border-color:#0071bd}#bootstrap-theme .alert-info hr{border-top-color:#0062a4}#bootstrap-theme .alert-info .alert-link{color:#2e2c38}#bootstrap-theme .alert-warning{color:#464354;background-color:#fbf0e2;border-color:#e6ab5e}#bootstrap-theme .alert-warning hr{border-top-color:#e39f48}#bootstrap-theme .alert-warning .alert-link{color:#2e2c38}#bootstrap-theme .alert-danger{color:#464354;background-color:#ecb0be;border-color:#cf3458}#bootstrap-theme .alert-danger hr{border-top-color:#bd2d4e}#bootstrap-theme .alert-danger .alert-link{color:#2e2c38}@-webkit-keyframes progress-bar-stripes{#bootstrap-theme from{background-position:40px 0}#bootstrap-theme to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}#bootstrap-theme .progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:2px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}#bootstrap-theme .progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#0071bd;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease}#bootstrap-theme .progress-striped .progress-bar, #bootstrap-theme .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:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}#bootstrap-theme .progress.active .progress-bar, #bootstrap-theme .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}#bootstrap-theme .progress-bar-success{background-color:#44cb7e}#bootstrap-theme .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:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}#bootstrap-theme .progress-bar-info{background-color:#0071bd}#bootstrap-theme .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:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}#bootstrap-theme .progress-bar-warning{background-color:#e6ab5e}#bootstrap-theme .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:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}#bootstrap-theme .progress-bar-danger{background-color:#cf3458}#bootstrap-theme .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:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}#bootstrap-theme .media{margin-top:15px}#bootstrap-theme .media:first-child{margin-top:0}#bootstrap-theme .media, #bootstrap-theme .media-body{overflow:hidden;zoom:1}#bootstrap-theme .media-body{width:10000px}#bootstrap-theme .media-object{display:block}#bootstrap-theme .media-object.img-thumbnail{max-width:none}#bootstrap-theme .media-right, #bootstrap-theme .media>.pull-right{padding-left:10px}#bootstrap-theme .media-left, #bootstrap-theme .media>.pull-left{padding-right:10px}#bootstrap-theme .media-left, #bootstrap-theme .media-right, #bootstrap-theme .media-body{display:table-cell;vertical-align:top}#bootstrap-theme .media-middle{vertical-align:middle}#bootstrap-theme .media-bottom{vertical-align:bottom}#bootstrap-theme .media-heading{margin-top:0;margin-bottom:5px}#bootstrap-theme .media-list{padding-left:0;list-style:none}#bootstrap-theme .list-group{padding-left:0;margin-bottom:20px}#bootstrap-theme .list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}#bootstrap-theme .list-group-item:first-child{border-top-left-radius:2px;border-top-right-radius:2px}#bootstrap-theme .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:2px;border-bottom-left-radius:2px}#bootstrap-theme .list-group-item.disabled, #bootstrap-theme .list-group-item.disabled:hover, #bootstrap-theme .list-group-item.disabled:focus{color:#e8eef0;cursor:not-allowed;background-color:#f3f6f7}#bootstrap-theme .list-group-item.disabled .list-group-item-heading, #bootstrap-theme .list-group-item.disabled:hover .list-group-item-heading, #bootstrap-theme .list-group-item.disabled:focus .list-group-item-heading{color:inherit}#bootstrap-theme .list-group-item.disabled .list-group-item-text, #bootstrap-theme .list-group-item.disabled:hover .list-group-item-text, #bootstrap-theme .list-group-item.disabled:focus .list-group-item-text{color:#e8eef0}#bootstrap-theme .list-group-item.active, #bootstrap-theme .list-group-item.active:hover, #bootstrap-theme .list-group-item.active:focus{z-index:2;color:#fff;background-color:#0071bd;border-color:#0071bd}#bootstrap-theme .list-group-item.active .list-group-item-heading, #bootstrap-theme .list-group-item.active .list-group-item-heading>small, #bootstrap-theme .list-group-item.active .list-group-item-heading>.small, #bootstrap-theme .list-group-item.active:hover .list-group-item-heading, #bootstrap-theme .list-group-item.active:hover .list-group-item-heading>small, #bootstrap-theme .list-group-item.active:hover .list-group-item-heading>.small, #bootstrap-theme .list-group-item.active:focus .list-group-item-heading, #bootstrap-theme .list-group-item.active:focus .list-group-item-heading>small, #bootstrap-theme .list-group-item.active:focus .list-group-item-heading>.small{color:inherit}#bootstrap-theme .list-group-item.active .list-group-item-text, #bootstrap-theme .list-group-item.active:hover .list-group-item-text, #bootstrap-theme .list-group-item.active:focus .list-group-item-text{color:#8ad0ff}#bootstrap-theme a.list-group-item, #bootstrap-theme button.list-group-item{color:#555}#bootstrap-theme a.list-group-item .list-group-item-heading, #bootstrap-theme button.list-group-item .list-group-item-heading{color:#333}#bootstrap-theme a.list-group-item:hover, #bootstrap-theme a.list-group-item:focus, #bootstrap-theme button.list-group-item:hover, #bootstrap-theme button.list-group-item:focus{color:#555;text-decoration:none;background-color:#f5f5f5}#bootstrap-theme button.list-group-item{width:100%;text-align:left}#bootstrap-theme .list-group-item-success{color:#4d994d;background-color:#dff0d8}#bootstrap-theme a.list-group-item-success, #bootstrap-theme button.list-group-item-success{color:#4d994d}#bootstrap-theme a.list-group-item-success .list-group-item-heading, #bootstrap-theme button.list-group-item-success .list-group-item-heading{color:inherit}#bootstrap-theme a.list-group-item-success:hover, #bootstrap-theme a.list-group-item-success:focus, #bootstrap-theme button.list-group-item-success:hover, #bootstrap-theme button.list-group-item-success:focus{color:#4d994d;background-color:#d0e9c6}#bootstrap-theme a.list-group-item-success.active, #bootstrap-theme a.list-group-item-success.active:hover, #bootstrap-theme a.list-group-item-success.active:focus, #bootstrap-theme button.list-group-item-success.active, #bootstrap-theme button.list-group-item-success.active:hover, #bootstrap-theme button.list-group-item-success.active:focus{color:#fff;background-color:#4d994d;border-color:#4d994d}#bootstrap-theme .list-group-item-info{color:#0071bd;background-color:#d9edf7}#bootstrap-theme a.list-group-item-info, #bootstrap-theme button.list-group-item-info{color:#0071bd}#bootstrap-theme a.list-group-item-info .list-group-item-heading, #bootstrap-theme button.list-group-item-info .list-group-item-heading{color:inherit}#bootstrap-theme a.list-group-item-info:hover, #bootstrap-theme a.list-group-item-info:focus, #bootstrap-theme button.list-group-item-info:hover, #bootstrap-theme button.list-group-item-info:focus{color:#0071bd;background-color:#c4e3f3}#bootstrap-theme a.list-group-item-info.active, #bootstrap-theme a.list-group-item-info.active:hover, #bootstrap-theme a.list-group-item-info.active:focus, #bootstrap-theme button.list-group-item-info.active, #bootstrap-theme button.list-group-item-info.active:hover, #bootstrap-theme button.list-group-item-info.active:focus{color:#fff;background-color:#0071bd;border-color:#0071bd}#bootstrap-theme .list-group-item-warning{color:#bf5900;background-color:#fcf8e3}#bootstrap-theme a.list-group-item-warning, #bootstrap-theme button.list-group-item-warning{color:#bf5900}#bootstrap-theme a.list-group-item-warning .list-group-item-heading, #bootstrap-theme button.list-group-item-warning .list-group-item-heading{color:inherit}#bootstrap-theme a.list-group-item-warning:hover, #bootstrap-theme a.list-group-item-warning:focus, #bootstrap-theme button.list-group-item-warning:hover, #bootstrap-theme button.list-group-item-warning:focus{color:#bf5900;background-color:#faf2cc}#bootstrap-theme a.list-group-item-warning.active, #bootstrap-theme a.list-group-item-warning.active:hover, #bootstrap-theme a.list-group-item-warning.active:focus, #bootstrap-theme button.list-group-item-warning.active, #bootstrap-theme button.list-group-item-warning.active:hover, #bootstrap-theme button.list-group-item-warning.active:focus{color:#fff;background-color:#bf5900;border-color:#bf5900}#bootstrap-theme .list-group-item-danger{color:#cf3458;background-color:#f2dede}#bootstrap-theme a.list-group-item-danger, #bootstrap-theme button.list-group-item-danger{color:#cf3458}#bootstrap-theme a.list-group-item-danger .list-group-item-heading, #bootstrap-theme button.list-group-item-danger .list-group-item-heading{color:inherit}#bootstrap-theme a.list-group-item-danger:hover, #bootstrap-theme a.list-group-item-danger:focus, #bootstrap-theme button.list-group-item-danger:hover, #bootstrap-theme button.list-group-item-danger:focus{color:#cf3458;background-color:#ebcccc}#bootstrap-theme a.list-group-item-danger.active, #bootstrap-theme a.list-group-item-danger.active:hover, #bootstrap-theme a.list-group-item-danger.active:focus, #bootstrap-theme button.list-group-item-danger.active, #bootstrap-theme button.list-group-item-danger.active:hover, #bootstrap-theme button.list-group-item-danger.active:focus{color:#fff;background-color:#cf3458;border-color:#cf3458}#bootstrap-theme .list-group-item-heading{margin-top:0;margin-bottom:5px}#bootstrap-theme .list-group-item-text{margin-bottom:0;line-height:1.3}#bootstrap-theme .panel{margin-bottom:20px;background-color:rgba(0,0,0,0);border:1px solid transparent;border-radius:3px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}#bootstrap-theme .panel-body{padding:15px 20px}#bootstrap-theme .panel-body:before, #bootstrap-theme .panel-body:after{display:table;content:" "}#bootstrap-theme .panel-body:after{clear:both}#bootstrap-theme .panel-heading{padding:15px 20px;border-bottom:1px solid transparent;border-top-left-radius:2px;border-top-right-radius:2px}#bootstrap-theme .panel-heading>.dropdown .dropdown-toggle{color:inherit}#bootstrap-theme .panel-title{margin-top:0;margin-bottom:0;font-size:15px;color:inherit}#bootstrap-theme .panel-title>a, #bootstrap-theme .panel-title>small, #bootstrap-theme .panel-title>.small, #bootstrap-theme .panel-title>small>a, #bootstrap-theme .panel-title>.small>a{color:inherit}#bootstrap-theme .panel-footer{padding:20px;background-color:#fff;border-top:1px solid #e8eef0;border-bottom-right-radius:2px;border-bottom-left-radius:2px}#bootstrap-theme .panel>.list-group, #bootstrap-theme .panel>.panel-collapse>.list-group{margin-bottom:0}#bootstrap-theme .panel>.list-group .list-group-item, #bootstrap-theme .panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}#bootstrap-theme .panel>.list-group:first-child .list-group-item:first-child, #bootstrap-theme .panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:2px;border-top-right-radius:2px}#bootstrap-theme .panel>.list-group:last-child .list-group-item:last-child, #bootstrap-theme .panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:2px;border-bottom-left-radius:2px}#bootstrap-theme .panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}#bootstrap-theme .panel-heading+.list-group .list-group-item:first-child{border-top-width:0}#bootstrap-theme .list-group+.panel-footer{border-top-width:0}#bootstrap-theme .panel>.table, #bootstrap-theme .panel>.table-responsive>.table, #bootstrap-theme .panel>.panel-collapse>.table{margin-bottom:0}#bootstrap-theme .panel>.table caption, #bootstrap-theme .panel>.table-responsive>.table caption, #bootstrap-theme .panel>.panel-collapse>.table caption{padding-right:15px 20px;padding-left:15px 20px}#bootstrap-theme .panel>.table:first-child, #bootstrap-theme .panel>.table-responsive:first-child>.table:first-child{border-top-left-radius:2px;border-top-right-radius:2px}#bootstrap-theme .panel>.table:first-child>thead:first-child>tr:first-child, #bootstrap-theme .panel>.table:first-child>tbody:first-child>tr:first-child, #bootstrap-theme .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child, #bootstrap-theme .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:2px;border-top-right-radius:2px}#bootstrap-theme .panel>.table:first-child>thead:first-child>tr:first-child td:first-child, #bootstrap-theme .panel>.table:first-child>thead:first-child>tr:first-child th:first-child, #bootstrap-theme .panel>.table:first-child>tbody:first-child>tr:first-child td:first-child, #bootstrap-theme .panel>.table:first-child>tbody:first-child>tr:first-child th:first-child, #bootstrap-theme .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child, #bootstrap-theme .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child, #bootstrap-theme .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child, #bootstrap-theme .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:2px}#bootstrap-theme .panel>.table:first-child>thead:first-child>tr:first-child td:last-child, #bootstrap-theme .panel>.table:first-child>thead:first-child>tr:first-child th:last-child, #bootstrap-theme .panel>.table:first-child>tbody:first-child>tr:first-child td:last-child, #bootstrap-theme .panel>.table:first-child>tbody:first-child>tr:first-child th:last-child, #bootstrap-theme .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child, #bootstrap-theme .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child, #bootstrap-theme .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child, #bootstrap-theme .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:2px}#bootstrap-theme .panel>.table:last-child, #bootstrap-theme .panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}#bootstrap-theme .panel>.table:last-child>tbody:last-child>tr:last-child, #bootstrap-theme .panel>.table:last-child>tfoot:last-child>tr:last-child, #bootstrap-theme .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child, #bootstrap-theme .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}#bootstrap-theme .panel>.table:last-child>tbody:last-child>tr:last-child td:first-child, #bootstrap-theme .panel>.table:last-child>tbody:last-child>tr:last-child th:first-child, #bootstrap-theme .panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child, #bootstrap-theme .panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child, #bootstrap-theme .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child, #bootstrap-theme .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child, #bootstrap-theme .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child, #bootstrap-theme .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:2px}#bootstrap-theme .panel>.table:last-child>tbody:last-child>tr:last-child td:last-child, #bootstrap-theme .panel>.table:last-child>tbody:last-child>tr:last-child th:last-child, #bootstrap-theme .panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child, #bootstrap-theme .panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child, #bootstrap-theme .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child, #bootstrap-theme .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child, #bootstrap-theme .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child, #bootstrap-theme .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:2px}#bootstrap-theme .panel>.panel-body+.table, #bootstrap-theme .panel>.panel-body+.table-responsive, #bootstrap-theme .panel>.table+.panel-body, #bootstrap-theme .panel>.table-responsive+.panel-body{border-top:1px solid #e8eef0}#bootstrap-theme .panel>.table>tbody:first-child>tr:first-child th, #bootstrap-theme .panel>.table>tbody:first-child>tr:first-child td{border-top:0}#bootstrap-theme .panel>.table-bordered, #bootstrap-theme .panel>.table-responsive>.table-bordered{border:0}#bootstrap-theme .panel>.table-bordered>thead>tr>th:first-child, #bootstrap-theme .panel>.table-bordered>thead>tr>td:first-child, #bootstrap-theme .panel>.table-bordered>tbody>tr>th:first-child, #bootstrap-theme .panel>.table-bordered>tbody>tr>td:first-child, #bootstrap-theme .panel>.table-bordered>tfoot>tr>th:first-child, #bootstrap-theme .panel>.table-bordered>tfoot>tr>td:first-child, #bootstrap-theme .panel>.table-responsive>.table-bordered>thead>tr>th:first-child, #bootstrap-theme .panel>.table-responsive>.table-bordered>thead>tr>td:first-child, #bootstrap-theme .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child, #bootstrap-theme .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child, #bootstrap-theme .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child, #bootstrap-theme .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}#bootstrap-theme .panel>.table-bordered>thead>tr>th:last-child, #bootstrap-theme .panel>.table-bordered>thead>tr>td:last-child, #bootstrap-theme .panel>.table-bordered>tbody>tr>th:last-child, #bootstrap-theme .panel>.table-bordered>tbody>tr>td:last-child, #bootstrap-theme .panel>.table-bordered>tfoot>tr>th:last-child, #bootstrap-theme .panel>.table-bordered>tfoot>tr>td:last-child, #bootstrap-theme .panel>.table-responsive>.table-bordered>thead>tr>th:last-child, #bootstrap-theme .panel>.table-responsive>.table-bordered>thead>tr>td:last-child, #bootstrap-theme .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child, #bootstrap-theme .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child, #bootstrap-theme .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child, #bootstrap-theme .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}#bootstrap-theme .panel>.table-bordered>thead>tr:first-child>td, #bootstrap-theme .panel>.table-bordered>thead>tr:first-child>th, #bootstrap-theme .panel>.table-bordered>tbody>tr:first-child>td, #bootstrap-theme .panel>.table-bordered>tbody>tr:first-child>th, #bootstrap-theme .panel>.table-responsive>.table-bordered>thead>tr:first-child>td, #bootstrap-theme .panel>.table-responsive>.table-bordered>thead>tr:first-child>th, #bootstrap-theme .panel>.table-responsive>.table-bordered>tbody>tr:first-child>td, #bootstrap-theme .panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}#bootstrap-theme .panel>.table-bordered>tbody>tr:last-child>td, #bootstrap-theme .panel>.table-bordered>tbody>tr:last-child>th, #bootstrap-theme .panel>.table-bordered>tfoot>tr:last-child>td, #bootstrap-theme .panel>.table-bordered>tfoot>tr:last-child>th, #bootstrap-theme .panel>.table-responsive>.table-bordered>tbody>tr:last-child>td, #bootstrap-theme .panel>.table-responsive>.table-bordered>tbody>tr:last-child>th, #bootstrap-theme .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td, #bootstrap-theme .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}#bootstrap-theme .panel>.table-responsive{margin-bottom:0;border:0}#bootstrap-theme .panel-group{margin-bottom:20px}#bootstrap-theme .panel-group .panel{margin-bottom:0;border-radius:3px}#bootstrap-theme .panel-group .panel+.panel{margin-top:5px}#bootstrap-theme .panel-group .panel-heading{border-bottom:0}#bootstrap-theme .panel-group .panel-heading+.panel-collapse>.panel-body, #bootstrap-theme .panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #e8eef0}#bootstrap-theme .panel-group .panel-footer{border-top:0}#bootstrap-theme .panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #e8eef0}#bootstrap-theme .panel-default{border-color:#ddd}#bootstrap-theme .panel-default>.panel-heading{color:#464354;background-color:#f3f6f7;border-color:#ddd}#bootstrap-theme .panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}#bootstrap-theme .panel-default>.panel-heading .badge{color:#f3f6f7;background-color:#464354}#bootstrap-theme .panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}#bootstrap-theme .panel-primary{border-color:#0071bd}#bootstrap-theme .panel-primary>.panel-heading{color:#fff;background-color:#0071bd;border-color:#0071bd}#bootstrap-theme .panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#0071bd}#bootstrap-theme .panel-primary>.panel-heading .badge{color:#0071bd;background-color:#fff}#bootstrap-theme .panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#0071bd}#bootstrap-theme .panel-success{border-color:#44cb7e}#bootstrap-theme .panel-success>.panel-heading{color:#464354;background-color:#44cb7e;border-color:#44cb7e}#bootstrap-theme .panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#44cb7e}#bootstrap-theme .panel-success>.panel-heading .badge{color:#44cb7e;background-color:#464354}#bootstrap-theme .panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#44cb7e}#bootstrap-theme .panel-info{border-color:#0071bd}#bootstrap-theme .panel-info>.panel-heading{color:#fff;background-color:#0071bd;border-color:#0071bd}#bootstrap-theme .panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#0071bd}#bootstrap-theme .panel-info>.panel-heading .badge{color:#0071bd;background-color:#fff}#bootstrap-theme .panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#0071bd}#bootstrap-theme .panel-warning{border-color:#e6ab5e}#bootstrap-theme .panel-warning>.panel-heading{color:#464354;background-color:#e6ab5e;border-color:#e6ab5e}#bootstrap-theme .panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#e6ab5e}#bootstrap-theme .panel-warning>.panel-heading .badge{color:#e6ab5e;background-color:#464354}#bootstrap-theme .panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#e6ab5e}#bootstrap-theme .panel-danger{border-color:#cf3458}#bootstrap-theme .panel-danger>.panel-heading{color:#fff;background-color:#cf3458;border-color:#cf3458}#bootstrap-theme .panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#cf3458}#bootstrap-theme .panel-danger>.panel-heading .badge{color:#cf3458;background-color:#fff}#bootstrap-theme .panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#cf3458}#bootstrap-theme .embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}#bootstrap-theme .embed-responsive .embed-responsive-item, #bootstrap-theme .embed-responsive iframe, #bootstrap-theme .embed-responsive embed, #bootstrap-theme .embed-responsive object, #bootstrap-theme .embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}#bootstrap-theme .embed-responsive-16by9{padding-bottom:56.25%}#bootstrap-theme .embed-responsive-4by3{padding-bottom:75%}#bootstrap-theme .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:2px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}#bootstrap-theme .well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}#bootstrap-theme .well-lg{padding:24px;border-radius:6px}#bootstrap-theme .well-sm{padding:9px;border-radius:2px}#bootstrap-theme .close{float:right;font-size:19.5px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}#bootstrap-theme .close:hover, #bootstrap-theme .close:focus{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}#bootstrap-theme button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;appearance:none}#bootstrap-theme .modal-open{overflow:hidden}#bootstrap-theme .modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}#bootstrap-theme .modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}#bootstrap-theme .modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}#bootstrap-theme .modal-open .modal{overflow-x:hidden;overflow-y:auto}#bootstrap-theme .modal-dialog{position:relative;width:auto;margin:10px}#bootstrap-theme .modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);outline:0}#bootstrap-theme .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}#bootstrap-theme .modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}#bootstrap-theme .modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}#bootstrap-theme .modal-header{padding:10px 29px;border-bottom:1px solid #e5e5e5}#bootstrap-theme .modal-header:before, #bootstrap-theme .modal-header:after{display:table;content:" "}#bootstrap-theme .modal-header:after{clear:both}#bootstrap-theme .modal-header .close{margin-top:-2px}#bootstrap-theme .modal-title{margin:0;line-height:1.5384615385}#bootstrap-theme .modal-body{position:relative;padding:20px 30px}#bootstrap-theme .modal-footer{padding:20px 30px;text-align:right;border-top:1px solid #e8eef0}#bootstrap-theme .modal-footer:before, #bootstrap-theme .modal-footer:after{display:table;content:" "}#bootstrap-theme .modal-footer:after{clear:both}#bootstrap-theme .modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}#bootstrap-theme .modal-footer .btn-group .btn+.btn{margin-left:-1px}#bootstrap-theme .modal-footer .btn-block+.btn-block{margin-left:0}#bootstrap-theme .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 768px){#bootstrap-theme .modal-dialog{width:555px;margin:30px auto}#bootstrap-theme .modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}#bootstrap-theme .modal-sm{width:360px}}@media (min-width: 992px){#bootstrap-theme .modal-lg{width:945px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.5384615385;line-break:auto;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;font-size:12px;filter:alpha(opacity=0);opacity:0}.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.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}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:2px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.5384615385;line-break:auto;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;font-size:13px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);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>.arrow{border-width:11px}.popover>.arrow, .popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.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,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,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,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,0.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.popover-title{padding:8px 14px;margin:0;font-size:13px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}#bootstrap-theme .carousel{position:relative}#bootstrap-theme .carousel-inner{position:relative;width:100%;overflow:hidden}#bootstrap-theme .carousel-inner>.item{position:relative;display:none;-webkit-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left}#bootstrap-theme .carousel-inner>.item>img, #bootstrap-theme .carousel-inner>.item>a>img{display:block;max-width:100%;height:auto;line-height:1}@media all and (transform-3d), (-webkit-transform-3d){#bootstrap-theme .carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-moz-transition:-moz-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;-moz-perspective:1000px;perspective:1000px}#bootstrap-theme .carousel-inner>.item.next, #bootstrap-theme .carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}#bootstrap-theme .carousel-inner>.item.prev, #bootstrap-theme .carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}#bootstrap-theme .carousel-inner>.item.next.left, #bootstrap-theme .carousel-inner>.item.prev.right, #bootstrap-theme .carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}#bootstrap-theme .carousel-inner>.active, #bootstrap-theme .carousel-inner>.next, #bootstrap-theme .carousel-inner>.prev{display:block}#bootstrap-theme .carousel-inner>.active{left:0}#bootstrap-theme .carousel-inner>.next, #bootstrap-theme .carousel-inner>.prev{position:absolute;top:0;width:100%}#bootstrap-theme .carousel-inner>.next{left:100%}#bootstrap-theme .carousel-inner>.prev{left:-100%}#bootstrap-theme .carousel-inner>.next.left, #bootstrap-theme .carousel-inner>.prev.right{left:0}#bootstrap-theme .carousel-inner>.active.left{left:-100%}#bootstrap-theme .carousel-inner>.active.right{left:100%}#bootstrap-theme .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,0.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}#bootstrap-theme .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:-o-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%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}#bootstrap-theme .carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0%, rgba(0,0,0,0.5) 100%);background-image:-o-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%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}#bootstrap-theme .carousel-control:hover, #bootstrap-theme .carousel-control:focus{color:#fff;text-decoration:none;outline:0;filter:alpha(opacity=90);opacity:.9}#bootstrap-theme .carousel-control .icon-prev, #bootstrap-theme .carousel-control .icon-next, #bootstrap-theme .carousel-control .glyphicon-chevron-left, #bootstrap-theme .carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}#bootstrap-theme .carousel-control .icon-prev, #bootstrap-theme .carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}#bootstrap-theme .carousel-control .icon-next, #bootstrap-theme .carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}#bootstrap-theme .carousel-control .icon-prev, #bootstrap-theme .carousel-control .icon-next{width:20px;height:20px;font-family:serif;line-height:1}#bootstrap-theme .carousel-control .icon-prev:before{content:"\2039"}#bootstrap-theme .carousel-control .icon-next:before{content:"\203a"}#bootstrap-theme .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}#bootstrap-theme .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}#bootstrap-theme .carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}#bootstrap-theme .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,0.6)}#bootstrap-theme .carousel-caption .btn{text-shadow:none}@media screen and (min-width: 768px){#bootstrap-theme .carousel-control .glyphicon-chevron-left, #bootstrap-theme .carousel-control .glyphicon-chevron-right, #bootstrap-theme .carousel-control .icon-prev, #bootstrap-theme .carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}#bootstrap-theme .carousel-control .glyphicon-chevron-left, #bootstrap-theme .carousel-control .icon-prev{margin-left:-10px}#bootstrap-theme .carousel-control .glyphicon-chevron-right, #bootstrap-theme .carousel-control .icon-next{margin-right:-10px}#bootstrap-theme .carousel-caption{right:20%;left:20%;padding-bottom:30px}#bootstrap-theme .carousel-indicators{bottom:20px}}#bootstrap-theme .clearfix:before, #bootstrap-theme .clearfix:after{display:table;content:" "}#bootstrap-theme .clearfix:after{clear:both}#bootstrap-theme .center-block{display:block;margin-right:auto;margin-left:auto}#bootstrap-theme .pull-right{float:right !important}#bootstrap-theme .pull-left{float:left !important}#bootstrap-theme .hide{display:none !important}#bootstrap-theme .show{display:block !important}#bootstrap-theme .invisible{visibility:hidden}#bootstrap-theme .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}#bootstrap-theme .hidden{display:none !important}#bootstrap-theme .affix{position:fixed}@-ms-viewport{width:device-width}#bootstrap-theme .visible-xs{display:none !important}#bootstrap-theme .visible-sm{display:none !important}#bootstrap-theme .visible-md{display:none !important}#bootstrap-theme .visible-lg{display:none !important}#bootstrap-theme .visible-xs-block, #bootstrap-theme .visible-xs-inline, #bootstrap-theme .visible-xs-inline-block, #bootstrap-theme .visible-sm-block, #bootstrap-theme .visible-sm-inline, #bootstrap-theme .visible-sm-inline-block, #bootstrap-theme .visible-md-block, #bootstrap-theme .visible-md-inline, #bootstrap-theme .visible-md-inline-block, #bootstrap-theme .visible-lg-block, #bootstrap-theme .visible-lg-inline, #bootstrap-theme .visible-lg-inline-block{display:none !important}@media (max-width: 767px){#bootstrap-theme .visible-xs{display:block !important}#bootstrap-theme table.visible-xs{display:table !important}#bootstrap-theme tr.visible-xs{display:table-row !important}#bootstrap-theme th.visible-xs, #bootstrap-theme td.visible-xs{display:table-cell !important}}@media (max-width: 767px){#bootstrap-theme .visible-xs-block{display:block !important}}@media (max-width: 767px){#bootstrap-theme .visible-xs-inline{display:inline !important}}@media (max-width: 767px){#bootstrap-theme .visible-xs-inline-block{display:inline-block !important}}@media (min-width: 768px) and (max-width: 991px){#bootstrap-theme .visible-sm{display:block !important}#bootstrap-theme table.visible-sm{display:table !important}#bootstrap-theme tr.visible-sm{display:table-row !important}#bootstrap-theme th.visible-sm, #bootstrap-theme td.visible-sm{display:table-cell !important}}@media (min-width: 768px) and (max-width: 991px){#bootstrap-theme .visible-sm-block{display:block !important}}@media (min-width: 768px) and (max-width: 991px){#bootstrap-theme .visible-sm-inline{display:inline !important}}@media (min-width: 768px) and (max-width: 991px){#bootstrap-theme .visible-sm-inline-block{display:inline-block !important}}@media (min-width: 992px) and (max-width: 1199px){#bootstrap-theme .visible-md{display:block !important}#bootstrap-theme table.visible-md{display:table !important}#bootstrap-theme tr.visible-md{display:table-row !important}#bootstrap-theme th.visible-md, #bootstrap-theme td.visible-md{display:table-cell !important}}@media (min-width: 992px) and (max-width: 1199px){#bootstrap-theme .visible-md-block{display:block !important}}@media (min-width: 992px) and (max-width: 1199px){#bootstrap-theme .visible-md-inline{display:inline !important}}@media (min-width: 992px) and (max-width: 1199px){#bootstrap-theme .visible-md-inline-block{display:inline-block !important}}@media (min-width: 1200px){#bootstrap-theme .visible-lg{display:block !important}#bootstrap-theme table.visible-lg{display:table !important}#bootstrap-theme tr.visible-lg{display:table-row !important}#bootstrap-theme th.visible-lg, #bootstrap-theme td.visible-lg{display:table-cell !important}}@media (min-width: 1200px){#bootstrap-theme .visible-lg-block{display:block !important}}@media (min-width: 1200px){#bootstrap-theme .visible-lg-inline{display:inline !important}}@media (min-width: 1200px){#bootstrap-theme .visible-lg-inline-block{display:inline-block !important}}@media (max-width: 767px){#bootstrap-theme .hidden-xs{display:none !important}}@media (min-width: 768px) and (max-width: 991px){#bootstrap-theme .hidden-sm{display:none !important}}@media (min-width: 992px) and (max-width: 1199px){#bootstrap-theme .hidden-md{display:none !important}}@media (min-width: 1200px){#bootstrap-theme .hidden-lg{display:none !important}}#bootstrap-theme .visible-print{display:none !important}@media print{#bootstrap-theme .visible-print{display:block !important}#bootstrap-theme table.visible-print{display:table !important}#bootstrap-theme tr.visible-print{display:table-row !important}#bootstrap-theme th.visible-print, #bootstrap-theme td.visible-print{display:table-cell !important}}#bootstrap-theme .visible-print-block{display:none !important}@media print{#bootstrap-theme .visible-print-block{display:block !important}}#bootstrap-theme .visible-print-inline{display:none !important}@media print{#bootstrap-theme .visible-print-inline{display:inline !important}}#bootstrap-theme .visible-print-inline-block{display:none !important}@media print{#bootstrap-theme .visible-print-inline-block{display:inline-block !important}}@media print{#bootstrap-theme .hidden-print{display:none !important}}#bootstrap-theme .form-horizontal .form-group .editable-controls.form-group{margin-left:0;margin-right:0}#bootstrap-theme [text-angular]{border:1px solid #e8eef0;padding:0}#bootstrap-theme [text-angular] .ta-editor{border:0 !important}#bootstrap-theme [text-angular] .form-control{border:0;box-shadow:none !important;min-height:120px}#bootstrap-theme [text-angular] .form-control.ta-scroll-window{height:auto}#bootstrap-theme [text-angular] .form-control.ta-scroll-window>.ta-bind{min-height:120px;outline:0}#bootstrap-theme [text-angular-toolbar]{background-color:#f4f7f8;border:0;margin-left:0;padding:10px}#bootstrap-theme [text-angular-toolbar] .btn{background:transparent !important;border:0;box-shadow:none;color:#4d4d69;padding-left:10px;padding-right:10px}#bootstrap-theme [text-angular-toolbar] .btn.active{color:#464354 !important}#bootstrap-theme [text-angular-toolbar] .btn:hover:not(:disabled){color:#4d4d69}#bootstrap-theme [text-angular-toolbar] .btn .fa{font-size:12px;font-weight:700}#bootstrap-theme .civihr-ui-select+.input-group-btn .btn{border-top-left-radius:0;border-bottom-left-radius:0;margin-left:-1px}#bootstrap-theme .civihr-ui-select.ui-select-multiple{min-height:30px}#bootstrap-theme .civihr-ui-select.ui-select-multiple .ui-select-search{height:1.9em;text-indent:10px}#bootstrap-theme .civihr-ui-select.ui-select-multiple .ui-select-match .close{line-height:0.8}#bootstrap-theme .civihr-ui-select.ui-select-multiple .ui-select-match-item{border-color:#0071bd;margin:0 2px 2px 1px;padding:2px 8px;text-transform:none}#bootstrap-theme .civihr-ui-select .ui-select-match-text, #bootstrap-theme .civihr-ui-select .ui-select-placeholder{text-transform:none}#bootstrap-theme .civihr-ui-select .ui-select-match-close{color:#0071bd;cursor:pointer}#bootstrap-theme .civihr-ui-select .ui-select-match-close:hover{color:#4d4d69}#bootstrap-theme .civihr-ui-select .ui-select-toggle{border-color:#c2cfd8;padding:4px 30px 4px 12px}#bootstrap-theme .civihr-ui-select .ui-select-toggle:hover{border-color:#c2cfd8}#bootstrap-theme .civihr-ui-select .ui-select-toggle[disabled]{background-color:#f3f6f7;border-color:#c2cfd8;opacity:1}#bootstrap-theme .civihr-ui-select .ui-select-toggle[disabled]:hover, #bootstrap-theme .civihr-ui-select .ui-select-toggle[disabled]:focus, #bootstrap-theme .civihr-ui-select .ui-select-toggle[disabled]:active{background-color:#f3f6f7;border-color:#c2cfd8}#bootstrap-theme .ui-select-container:not(.civihr-ui-select):not(.ui-select-multiple) .btn.ui-select-toggle{border-color:#c2cfd8;height:30px;padding:4px 10px;text-transform:none}#bootstrap-theme .ui-select-container:not(.civihr-ui-select):not(.ui-select-multiple) .btn:hover{background:#fff}#bootstrap-theme .ui-select-container:not(.civihr-ui-select):not(.ui-select-multiple) .dropdown-menu{border:1px solid #c2cfd8;border-top:1px solid transparent}#bootstrap-theme .ui-select-container:not(.civihr-ui-select):not(.ui-select-multiple) .ui-select-match-text{color:#555;padding-right:3em}#bootstrap-theme .ui-select-container:not(.civihr-ui-select):not(.ui-select-multiple) .ui-select-match-text span{text-overflow:ellipsis}#bootstrap-theme .ui-select-container:not(.civihr-ui-select):not(.ui-select-multiple) .ui-select-match a{margin-right:14px !important}#bootstrap-theme .ui-select-container:not(.civihr-ui-select):not(.ui-select-multiple) .glyphicon-remove{font-size:10px}#bootstrap-theme .ui-select-container:not(.civihr-ui-select):not(.ui-select-multiple) .caret{display:none}#bootstrap-theme .ui-select-container:not(.civihr-ui-select):not(.ui-select-multiple) input{border:1px solid #c2cfd8 !important;box-shadow:none !important;height:30px}#bootstrap-theme .ui-select-container:not(.civihr-ui-select):not(.ui-select-multiple)::after{content:'\f002';bottom:0;font-family:"FontAwesome";display:inline-block;height:100%;line-height:30px;pointer-events:none;position:absolute;right:0;text-align:center;width:32px;z-index:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bootstrap-theme .ui-select-container:not(.civihr-ui-select) .text-muted{color:#4d4d69}#bootstrap-theme .ui-select-multiple:not(.civihr-ui-select){border:1px solid #c2cfd8;min-height:30px;padding:3px !important}#bootstrap-theme .ui-select-multiple:not(.civihr-ui-select) .ui-select-match-item{border:1px solid #ccc;padding:1px 5px;text-transform:none}#bootstrap-theme .ui-select-multiple:not(.civihr-ui-select) .ui-select-search{padding-left:6px !important}#bootstrap-theme .ui-select-multiple:not(.civihr-ui-select)::after{content:'\f002';bottom:0;font-family:"FontAwesome";display:inline-block;height:100%;line-height:30px;pointer-events:none;position:absolute;right:0;text-align:center;width:32px;z-index:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bootstrap-theme .ui-select-bootstrap .ui-select-choices-row:not(.civihr-ui-select)>span{color:#555;font-size:12px;padding:3px 10px}#bootstrap-theme .ui-select-bootstrap .ui-select-choices-row:not(.civihr-ui-select).active>span{background:#eeeded;color:#555}#bootstrap-theme [uib-datepicker-popup]{border-color:#c2cfd8}#bootstrap-theme [uib-datepicker-popup] .form-control{border-color:#c2cfd8}#bootstrap-theme [uib-datepicker-popup-wrap]+.input-group-btn>button{border-color:#c2cfd8;color:#c2cfd8}#bootstrap-theme .uib-left, #bootstrap-theme .uib-right, #bootstrap-theme .uib-title{border:0;color:#464354}#bootstrap-theme .uib-left:hover, #bootstrap-theme .uib-right:hover, #bootstrap-theme .uib-title:hover{background:transparent}#bootstrap-theme .uib-left i, #bootstrap-theme .uib-right i{font-weight:300}#bootstrap-theme .uib-title strong{font-size:12px;font-weight:700}#bootstrap-theme .uib-daypicker{outline:0}#bootstrap-theme .uib-daypicker th{background:#fff;color:#555;padding:7px;vertical-align:middle}#bootstrap-theme .uib-daypicker tbody{background:rgba(0,0,0,0);border-top:0;box-shadow:0}#bootstrap-theme .uib-day, #bootstrap-theme .uib-month, #bootstrap-theme .uib-year{padding:7px}#bootstrap-theme .uib-day .text-muted, #bootstrap-theme .uib-month .text-muted, #bootstrap-theme .uib-year .text-muted{color:#dcdddd}#bootstrap-theme .uib-day .text-info, #bootstrap-theme .uib-month .text-info, #bootstrap-theme .uib-year .text-info{background-color:rgba(0,0,0,0);border-radius:50%;color:#0071bd}#bootstrap-theme .uib-day .btn-default, #bootstrap-theme .uib-month .btn-default, #bootstrap-theme .uib-year .btn-default{background:transparent;border:0;color:#464354;line-height:1;min-width:0;padding:7px}#bootstrap-theme .uib-day .btn-default span, #bootstrap-theme .uib-month .btn-default span, #bootstrap-theme .uib-year .btn-default span{padding:0 !important}#bootstrap-theme .uib-day .btn-default.active, #bootstrap-theme .uib-month .btn-default.active, #bootstrap-theme .uib-year .btn-default.active{background-color:#0071bd;border-radius:50%;box-shadow:none;color:#fff}#bootstrap-theme .uib-day .btn-default.active .text-info, #bootstrap-theme .uib-month .btn-default.active .text-info, #bootstrap-theme .uib-year .btn-default.active .text-info{color:inherit}#bootstrap-theme .uib-datepicker-popup{border:0;padding:10px !important}#bootstrap-theme .mobile [type='date'][uib-datepicker-popup]{line-height:normal}#bootstrap-theme .mobile [type='date'][uib-datepicker-popup]::-webkit-inner-spin-button, #bootstrap-theme .mobile [type='date'][uib-datepicker-popup]::-webkit-clear-button{-webkit-appearance:none;appearance:none;display:none}#bootstrap-theme .mobile [type='date'][uib-datepicker-popup]::-webkit-calendar-picker-indicator{background:transparent;bottom:0;color:transparent;height:auto;left:0;position:absolute;right:-50px;top:0;width:auto}#bootstrap-theme .mobile [type='date'][uib-datepicker-popup]+.input-group-addon{border-left:1px solid #c2cfd8 !important;height:30px !important;line-height:30px !important;padding:0 !important;pointer-events:none;position:absolute !important;right:0 !important;width:38px !important;z-index:3}#bootstrap-theme .badge{min-width:25px}#bootstrap-theme .badge-danger{background:#cf3458}#bootstrap-theme .badge-secondary{background:#464354}#bootstrap-theme .badge-success{background:#44cb7e;color:#464354}#bootstrap-theme .badge-warning{background:#e6ab5e;color:#464354}#bootstrap-theme .btn-group .btn.active{background-color:#555}#bootstrap-theme .btn{border-color:transparent;padding:7px 19px;text-transform:uppercase}#bootstrap-theme .btn:focus, #bootstrap-theme .btn:hover{border-color:transparent}#bootstrap-theme .btn:active, #bootstrap-theme .btn.active, #bootstrap-theme .open>.btn.dropdown-toggle{border-color:transparent}#bootstrap-theme .btn:active:hover, #bootstrap-theme .btn:active:focus, #bootstrap-theme .btn:active.focus, #bootstrap-theme .btn.active:hover, #bootstrap-theme .btn.active:focus, #bootstrap-theme .btn.active.focus, #bootstrap-theme .open>.btn.dropdown-toggle:hover, #bootstrap-theme .open>.btn.dropdown-toggle:focus, #bootstrap-theme .open>.btn.dropdown-toggle.focus{border-color:transparent}#bootstrap-theme .btn:focus, #bootstrap-theme .btn:active, #bootstrap-theme .btn.active{-webkit-box-shadow:none;box-shadow:none;outline:none !important}#bootstrap-theme .btn-default:hover{background-color:#fff;color:#4d4d69}#bootstrap-theme .btn-lg, #bootstrap-theme .btn-group-lg>.btn{padding:10px 16px;font-size:13px;line-height:1.5384615385;border-radius:2px}#bootstrap-theme .btn-sm, #bootstrap-theme .btn-group-sm>.btn{padding:5px 10px}#bootstrap-theme .btn-xs, #bootstrap-theme .btn-group-xs>.btn{padding:0 5px}#bootstrap-theme .btn-block+.btn-block{margin-top:10px}#bootstrap-theme .btn-link{text-transform:none}#bootstrap-theme .btn-shadow{-webkit-box-shadow:0 3px 18px 0 rgba(48,40,40,0.25);box-shadow:0 3px 18px 0 rgba(48,40,40,0.25)}#bootstrap-theme .btn-icon{margin-right:5px}#bootstrap-theme .btn-primary:hover{background-color:#005c99}#bootstrap-theme .btn-success{color:#464354}#bootstrap-theme .btn-success:hover{background-color:#33b86c;color:#000}#bootstrap-theme .btn-info:hover{background-color:#005c99}#bootstrap-theme .btn-warning{color:#464354}#bootstrap-theme .btn-warning:hover{background-color:#e19b3f;color:#000}#bootstrap-theme .btn-danger:hover{background-color:#b52b4b}#bootstrap-theme .btn .caret{margin:0 5px}#bootstrap-theme .btn-secondary{color:#fff;background-color:#4d4d69;border-color:#4d4d69;border-color:transparent}#bootstrap-theme .btn-secondary:focus, #bootstrap-theme .btn-secondary.focus{color:#fff;background-color:#37374c;border-color:#17171f}#bootstrap-theme .btn-secondary:hover{color:#fff;background-color:#37374c;border-color:#333346}#bootstrap-theme .btn-secondary:active, #bootstrap-theme .btn-secondary.active, #bootstrap-theme .open>.btn-secondary.dropdown-toggle{color:#fff;background-color:#37374c;background-image:none;border-color:#333346}#bootstrap-theme .btn-secondary:active:hover, #bootstrap-theme .btn-secondary:active:focus, #bootstrap-theme .btn-secondary:active.focus, #bootstrap-theme .btn-secondary.active:hover, #bootstrap-theme .btn-secondary.active:focus, #bootstrap-theme .btn-secondary.active.focus, #bootstrap-theme .open>.btn-secondary.dropdown-toggle:hover, #bootstrap-theme .open>.btn-secondary.dropdown-toggle:focus, #bootstrap-theme .open>.btn-secondary.dropdown-toggle.focus{color:#fff;background-color:#282837;border-color:#17171f}#bootstrap-theme .btn-secondary.disabled:hover, #bootstrap-theme .btn-secondary.disabled:focus, #bootstrap-theme .btn-secondary.disabled.focus, #bootstrap-theme .btn-secondary[disabled]:hover, #bootstrap-theme .btn-secondary[disabled]:focus, #bootstrap-theme .btn-secondary[disabled].focus, #bootstrap-theme fieldset[disabled] .btn-secondary:hover, #bootstrap-theme fieldset[disabled] .btn-secondary:focus, #bootstrap-theme fieldset[disabled] .btn-secondary.focus{background-color:#4d4d69;border-color:#4d4d69}#bootstrap-theme .btn-secondary .badge{color:#4d4d69;background-color:#fff}#bootstrap-theme .btn-secondary:focus, #bootstrap-theme .btn-secondary:hover{border-color:transparent}#bootstrap-theme .btn-secondary:active, #bootstrap-theme .btn-secondary.active, #bootstrap-theme .open>.btn-secondary.dropdown-toggle{border-color:transparent}#bootstrap-theme .btn-secondary:active:hover, #bootstrap-theme .btn-secondary:active:focus, #bootstrap-theme .btn-secondary:active.focus, #bootstrap-theme .btn-secondary.active:hover, #bootstrap-theme .btn-secondary.active:focus, #bootstrap-theme .btn-secondary.active.focus, #bootstrap-theme .open>.btn-secondary.dropdown-toggle:hover, #bootstrap-theme .open>.btn-secondary.dropdown-toggle:focus, #bootstrap-theme .open>.btn-secondary.dropdown-toggle.focus{border-color:transparent}#bootstrap-theme .btn-secondary:hover{background-color:#3e3e54}#bootstrap-theme .chart svg:not(:root){overflow:visible}#bootstrap-theme .chart-axis path, #bootstrap-theme .chart-axis line{fill:none;stroke:#f3f6f7}#bootstrap-theme .chart-axis-x>.tick, #bootstrap-theme .chart-axis-y>.tick{fill:#4d4d69}#bootstrap-theme .dropdown-header{padding:7px 19px 7px 24px}#bootstrap-theme .dropdown-menu{-webkit-box-shadow:0 3px 18px 0 rgba(48,40,40,0.25);box-shadow:0 3px 18px 0 rgba(48,40,40,0.25);border:0;margin:0;padding:4px 0 9px 0}#bootstrap-theme .dropdown-menu>li{border:0;margin:0;padding:0}#bootstrap-theme .dropdown-menu>li>a{padding:7px 19px 7px 24px}#bootstrap-theme .dropdown-menu .divider{margin:7px 0}#bootstrap-theme label{color:#464354;font-weight:600}#bootstrap-theme .checkbox>label, #bootstrap-theme .radio>label{color:#4d4d69}#bootstrap-theme .form-control{-webkit-box-shadow:inset 0 0 3px 0 rgba(0,0,0,0.2);box-shadow:inset 0 0 3px 0 rgba(0,0,0,0.2)}#bootstrap-theme .form-control[disabled], #bootstrap-theme [disabled] .form-control{color:#c2cfd8}#bootstrap-theme .form-control:focus{-webkit-box-shadow:inset 0 0 3px 0 rgba(0,0,0,0.2);box-shadow:inset 0 0 3px 0 rgba(0,0,0,0.2);border-color:#0071bd}#bootstrap-theme .form-control[readonly]{background-color:#fff;color:#9494a5}#bootstrap-theme .form-error-message{margin-top:5px}#bootstrap-theme .form-horizontal .has-feedback [uib-datepicker-popup]+.form-control-feedback{right:41px}@media (min-width: 768px){#bootstrap-theme .form-horizontal .control-label{text-align:left}#bootstrap-theme .form-horizontal .form-group{overflow:initial}#bootstrap-theme .form-horizontal .form-group [type='checkbox']{margin-top:8px}#bootstrap-theme .form-horizontal .form-group-lg .control-label, #bootstrap-theme .form-horizontal .form-group-sm .control-label{font-size:13px}}#bootstrap-theme .form-horizontal-inline .form-group{margin-bottom:0}@media (min-width: 768px){#bootstrap-theme .form-inline .checkbox [type='checkbox'], #bootstrap-theme .form-inline .radio [type='radio']{margin-right:10px}}#bootstrap-theme .form-inline-tabs .form-group{border:1px solid #c2cfd8;box-shadow:inset 0 0 3px 0 rgba(0,0,0,0.2);line-height:1em;min-width:180px;padding:8px 15px}#bootstrap-theme .form-inline-tabs .form-group.active{background-color:#f3f6f7}#bootstrap-theme .form-inline-tabs .form-group:first-child{border-radius:2px 0 0 2px}#bootstrap-theme .form-inline-tabs .form-group:last-child{border-radius:0 2px 2px 0}#bootstrap-theme .has-success .control-label, #bootstrap-theme .has-warning .control-label, #bootstrap-theme .has-error .control-label{color:#464354}#bootstrap-theme .has-success .help-block, #bootstrap-theme .has-success .control-label, #bootstrap-theme .has-success .radio, #bootstrap-theme .has-success .checkbox, #bootstrap-theme .has-success .radio-inline, #bootstrap-theme .has-success .checkbox-inline, #bootstrap-theme .has-success.radio label, #bootstrap-theme .has-success.checkbox label, #bootstrap-theme .has-success.radio-inline label, #bootstrap-theme .has-success.checkbox-inline label{color:#4d994d}#bootstrap-theme .has-success .form-control{border-color:#44cb7e;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}#bootstrap-theme .has-success .form-control:focus{border-color:#30ac65;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #94e1b5;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #94e1b5}#bootstrap-theme .has-success .input-group-addon{color:#4d994d;background-color:#dff0d8;border-color:#44cb7e}#bootstrap-theme .has-success .form-control-feedback{color:#4d994d}#bootstrap-theme .has-success .radio label, #bootstrap-theme .has-success .checkbox label, #bootstrap-theme .has-success .radio-inline label, #bootstrap-theme .has-success .checkbox-inline label{color:#4d994d}#bootstrap-theme .has-warning .help-block, #bootstrap-theme .has-warning .control-label, #bootstrap-theme .has-warning .radio, #bootstrap-theme .has-warning .checkbox, #bootstrap-theme .has-warning .radio-inline, #bootstrap-theme .has-warning .checkbox-inline, #bootstrap-theme .has-warning.radio label, #bootstrap-theme .has-warning.checkbox label, #bootstrap-theme .has-warning.radio-inline label, #bootstrap-theme .has-warning.checkbox-inline label{color:#bf5900}#bootstrap-theme .has-warning .form-control{border-color:#e6ab5e;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}#bootstrap-theme .has-warning .form-control:focus{border-color:#df9432;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #f4d9b6;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #f4d9b6}#bootstrap-theme .has-warning .input-group-addon{color:#bf5900;background-color:#fcf8e3;border-color:#e6ab5e}#bootstrap-theme .has-warning .form-control-feedback{color:#bf5900}#bootstrap-theme .has-warning .radio label, #bootstrap-theme .has-warning .checkbox label, #bootstrap-theme .has-warning .radio-inline label, #bootstrap-theme .has-warning .checkbox-inline label{color:#bf5900}#bootstrap-theme .has-error .radio label, #bootstrap-theme .has-error .checkbox label, #bootstrap-theme .has-error .radio-inline label, #bootstrap-theme .has-error .checkbox-inline label{color:#cf3458}#bootstrap-theme .input-group-btn .btn-default{border-color:#c2cfd8;text-transform:none}#bootstrap-theme .form-submitted .ng-invalid, #bootstrap-theme .ng-submitted .ng-invalid{border:1px solid #cf3458}#bootstrap-theme .required-mark::after{color:#cf3458;content:'*';margin-left:5px}#bootstrap-theme .required-mark-input{position:relative}#bootstrap-theme .required-mark-input::after{bottom:0;position:absolute;right:-10px;top:0}#bootstrap-theme a.fa:hover{text-decoration:none}#bootstrap-theme .input-group-addon{color:#464354}#bootstrap-theme .label{font-size:92.308%;font-weight:400}#bootstrap-theme .label-success, #bootstrap-theme .label-warning{color:#464354}#bootstrap-theme .modal-content{-webkit-box-shadow:0 3px 18px 0 rgba(48,40,40,0.25);box-shadow:0 3px 18px 0 rgba(48,40,40,0.25);border:0;border-radius:2px}#bootstrap-theme .modal-footer{padding:20px}#bootstrap-theme .modal-sm .modal-footer{padding:10px}#bootstrap-theme .modal-header{background:#f3f6f7;border-bottom:0;border-radius:2px}#bootstrap-theme .modal-sm .modal-header{padding:10px 20px}@media (min-width: 768px){#bootstrap-theme .modal-dialog{margin-top:50px}}#bootstrap-theme .modal-civihr-bootstrap{left:initial !important;position:initial !important;top:initial !important}#bootstrap-theme .modal-civihr-bootstrap .loading-spinner{left:initial !important;margin:0 auto -20px !important;position:initial !important;top:initial !important}#bootstrap-theme .nav>li>a{color:#464354;font-weight:600}#bootstrap-theme .nav>.disabled>a:hover{border-left-color:transparent;border-right-color:transparent;border-top-color:transparent}#bootstrap-theme .nav-stacked{background:#fff}#bootstrap-theme .nav-stacked>li>a{padding:15px 20px}#bootstrap-theme .nav-stacked>li>a:active{background:#e8eef0}#bootstrap-theme .nav-stacked>li+li{margin-top:0}#bootstrap-theme .tab-content{background:#fff}#bootstrap-theme .tab-pane{padding:15px 20px}#bootstrap-theme .nav-pills>li>a:focus{background-color:transparent}#bootstrap-theme .nav-pills-horizontal{-webkit-box-shadow:0 3px 18px 0 rgba(48,40,40,0.25);box-shadow:0 3px 18px 0 rgba(48,40,40,0.25);padding-left:20px}#bootstrap-theme .nav-pills-horizontal>li{opacity:0.75}#bootstrap-theme .nav-pills-horizontal>li>a{padding:15px 20px}#bootstrap-theme .nav-pills-horizontal>li+li{margin-left:0}#bootstrap-theme .nav-pills-horizontal>.disabled{opacity:0.4}#bootstrap-theme .nav-pills-horizontal>.active{opacity:1}#bootstrap-theme .nav-pills-horizontal>.active>a{background:transparent !important;position:relative}#bootstrap-theme .nav-pills-horizontal>.active>a::after{border-bottom:3px solid transparent;bottom:0;content:'';left:0;position:absolute;width:100%}#bootstrap-theme .nav-pills-horizontal>.active>a:hover{background:transparent}#bootstrap-theme .nav-pills-horizontal-default{background:#fff}#bootstrap-theme .nav-pills-horizontal-default>li>a{color:#464354 !important}#bootstrap-theme .nav-pills-horizontal-default>li.active>a:after{border-color:#464354}#bootstrap-theme .nav-pills-horizontal-primary{background:#0071bd}#bootstrap-theme .nav-pills-horizontal-primary>li>a{color:#fff !important}#bootstrap-theme .nav-pills-horizontal-primary>li>a:hover{background:#0080d5}#bootstrap-theme .nav-pills-horizontal-primary>li.active>a:after{border-color:#fff}#bootstrap-theme .nav-pills-horizontal-primary>li.active>a:hover{background:#0071bd}#bootstrap-theme .nav-pills-horizontal-success{background:#44cb7e}#bootstrap-theme .nav-pills-horizontal-success>li>a{color:#464354 !important}#bootstrap-theme .nav-pills-horizontal-success>li>a:hover{background:#57d08b}#bootstrap-theme .nav-pills-horizontal-success>li.active>a:after{border-color:#464354}#bootstrap-theme .nav-pills-horizontal-success>li.active>a:hover{background:#44cb7e}#bootstrap-theme .nav-pills-horizontal-info{background:#0071bd}#bootstrap-theme .nav-pills-horizontal-info>li>a{color:#fff !important}#bootstrap-theme .nav-pills-horizontal-info>li>a:hover{background:#0080d5}#bootstrap-theme .nav-pills-horizontal-info>li.active>a:after{border-color:#fff}#bootstrap-theme .nav-pills-horizontal-info>li.active>a:hover{background:#0071bd}#bootstrap-theme .nav-pills-horizontal-warning{background:#e6ab5e}#bootstrap-theme .nav-pills-horizontal-warning>li>a{color:#464354 !important}#bootstrap-theme .nav-pills-horizontal-warning>li>a:hover{background:#e9b673}#bootstrap-theme .nav-pills-horizontal-warning>li.active>a:after{border-color:#464354}#bootstrap-theme .nav-pills-horizontal-warning>li.active>a:hover{background:#e6ab5e}#bootstrap-theme .nav-pills-horizontal-danger{background:#cf3458}#bootstrap-theme .nav-pills-horizontal-danger>li>a{color:#fff !important}#bootstrap-theme .nav-pills-horizontal-danger>li>a:hover{background:#d34868}#bootstrap-theme .nav-pills-horizontal-danger>li.active>a:after{border-color:#fff}#bootstrap-theme .nav-pills-horizontal-danger>li.active>a:hover{background:#cf3458}#bootstrap-theme .nav-pills-stacked-sidebar{background:transparent}#bootstrap-theme .nav-pills-stacked-sidebar>li{position:relative;z-index:2}#bootstrap-theme .nav-pills-stacked-sidebar>li>a{background:#fff}#bootstrap-theme .nav-pills-stacked-sidebar>.active{z-index:0}#bootstrap-theme .nav-pills-stacked-sidebar>.active::after, #bootstrap-theme .nav-pills-stacked-sidebar>.active::before{-webkit-box-shadow:0 3px 18px 0 rgba(48,40,40,0.25);box-shadow:0 3px 18px 0 rgba(48,40,40,0.25);content:'';display:block;height:999999px;left:0;position:absolute;width:100%;z-index:1}#bootstrap-theme .nav-pills-stacked-sidebar>.active::after{top:100%}#bootstrap-theme .nav-pills-stacked-sidebar>.active::before{bottom:100%}#bootstrap-theme .nav-pills-stacked-sidebar>.active>a{background:transparent !important;color:#464354 !important}#bootstrap-theme .panel-primary>.panel-heading>.nav-tabs{border:0;margin:-10px 0}#bootstrap-theme .panel-primary li>a{background:rgba(0,0,0,0) !important;border-color:#fff !important;border-width:0;color:#fff !important;font-weight:600;padding:15px 15px 12px}#bootstrap-theme .panel-primary .active>a, #bootstrap-theme .panel-primary li:hover>a{border-width:0 0 3px 0}#bootstrap-theme .panel-default .nav-tabs:not(.nav-tabs-stacked){background:#f3f6f7;padding:5px 0 0 20px}#bootstrap-theme .panel-default .nav-tabs-stacked{border-bottom:0}#bootstrap-theme .panel-default .nav-tabs-stacked>li{float:none}#bootstrap-theme .panel-default .nav-tabs-stacked a{margin-right:0;padding:15px 20px}#bootstrap-theme .panel-default .nav-tabs-stacked a:hover{border-color:transparent #d3dee2 transparent transparent}#bootstrap-theme .panel-default .nav-tabs-stacked>.active>a, #bootstrap-theme .panel-default .nav-tabs-stacked>.active>a:hover, #bootstrap-theme .panel-default .nav-tabs-stacked>.active>a:focus{border-bottom-color:#d3dee2;border-color:#d3dee2 transparent #d3dee2 transparent}#bootstrap-theme .panel-default .nav-tabs-stacked-wrapper{border-top:1px solid #d3dee2;display:flex}#bootstrap-theme .panel-default .nav-tabs-stacked-wrapper .active:first-child>a{border-top-color:transparent !important}#bootstrap-theme .panel-default .nav-tabs-stacked-wrapper .nav-tabs-stacked{margin-right:-16px}#bootstrap-theme .panel-default .nav-tabs-stacked-wrapper .nav-tabs-stacked-content{display:flex}#bootstrap-theme .panel-default .nav-tabs-stacked-wrapper .tab-content{flex:1}#bootstrap-theme .panel-default .panel-heading+.nav-tabs{border-top:1px solid #e8eef0}#bootstrap-theme strong{font-weight:600}#bootstrap-theme .pagination{margin:0;vertical-align:top}#bootstrap-theme .pagination>li{text-transform:capitalize}#bootstrap-theme .pagination>li.active>a, #bootstrap-theme .pagination>li.first:not(.disabled)>a, #bootstrap-theme .pagination>li.last:not(.disabled)>a, #bootstrap-theme .pagination>li.next:not(.disabled)>a, #bootstrap-theme .pagination>li.prev:not(.disabled)>a{color:#464354;font-weight:bold}#bootstrap-theme .pagination>li>a, #bootstrap-theme .pagination>li>span{border:none;padding:0 5px}#bootstrap-theme .pagination>li>a:hover, #bootstrap-theme .pagination>li>span:hover{text-decoration:underline}#bootstrap-theme .pagination>li.first a:before{content:"«";font-weight:400;margin-right:3px}#bootstrap-theme .pagination>li.last a:after{content:"»";font-weight:400;margin-left:3px}#bootstrap-theme .pagination>li.next a:after{content:"›";font-weight:400;margin-left:3px}#bootstrap-theme .pagination>li.prev a:before{content:"‹";font-weight:400;margin-right:3px}#bootstrap-theme .panel{-webkit-box-shadow:none;box-shadow:none;border:none;margin-bottom:16px}#bootstrap-theme .panel-body{background:#fff}#bootstrap-theme .panel-body>*:last-child{margin-bottom:0}#bootstrap-theme .panel-body>*:last-child.form-horizontal>.row:last-child .form-group{margin-bottom:0}#bootstrap-theme .panel-body-small{padding:15px 20px}#bootstrap-theme .panel-heading{border:none}#bootstrap-theme .panel-title{font-size:18px;font-weight:600;line-height:1.1}#bootstrap-theme .panel-title-sm{font-size:16px;font-weight:600}#bootstrap-theme .panel-body-abstract{padding:8px 20px}#bootstrap-theme .panel-body-extra{padding:5px 20px 10px 35px}#bootstrap-theme .panel-subheading{padding:15px 20px}#bootstrap-theme .panel-heading+.panel-subheading{border-top:1px solid transparent}#bootstrap-theme .panel-subtitle{color:inherit;font-size:13px;font-weight:700;line-height:1.1;margin:0}#bootstrap-theme .panel-nest-group{margin-bottom:20px}#bootstrap-theme .panel-nest-group>.panel{margin-bottom:10px}#bootstrap-theme .panel-nest-group .panel-nested{margin:0 20px}#bootstrap-theme .panel-default{-webkit-box-shadow:0 3px 18px 0 rgba(48,40,40,0.25);box-shadow:0 3px 18px 0 rgba(48,40,40,0.25)}#bootstrap-theme .panel-default .panel-body:not(.panel-body-extra){border-top:1px solid #d3dee2}#bootstrap-theme .panel-default>.panel-heading .btn-group-sm{margin:-13px 0 -10px 0}#bootstrap-theme .panel-default>.panel-heading .btn-group-sm>.btn{padding-left:20px;padding-right:20px}#bootstrap-theme .panel-default>.panel-subheading{background:#f3f6f7;border-top-color:#e8eef0;color:#464354}#bootstrap-theme .panel-default[class*="panel-strip-"]{border-left:6px solid transparent}#bootstrap-theme .panel-default.panel-strip-primary{border-left-color:#0071bd}#bootstrap-theme .panel-default.panel-strip-success{border-left-color:#44cb7e}#bootstrap-theme .panel-default.panel-strip-info{border-left-color:#0071bd}#bootstrap-theme .panel-default.panel-strip-warning{border-left-color:#e6ab5e}#bootstrap-theme .panel-default.panel-strip-danger{border-left-color:#cf3458}#bootstrap-theme .panel-primary>.panel-subheading{background:#0071bd;color:#fff;border-top-color:#0071bd;position:relative}#bootstrap-theme .panel-primary>.panel-subheading:before{content:"";background:#0071bd;top:-11px;height:10px;left:0;position:absolute;width:100%;z-index:2}#bootstrap-theme .panel-success>.panel-heading{color:#464354}#bootstrap-theme .panel-success>.panel-subheading{background:#44cb7e;color:#464354;border-top-color:#44cb7e;position:relative}#bootstrap-theme .panel-success>.panel-subheading:before{content:"";background:#44cb7e;top:-11px;height:10px;left:0;position:absolute;width:100%;z-index:2}#bootstrap-theme .panel-info>.panel-subheading{background:#0071bd;color:#fff;border-top-color:#0071bd;position:relative}#bootstrap-theme .panel-info>.panel-subheading:before{content:"";background:#0071bd;top:-11px;height:10px;left:0;position:absolute;width:100%;z-index:2}#bootstrap-theme .panel-warning>.panel-subheading{background:#e6ab5e;color:#464354;border-top-color:#e6ab5e;position:relative}#bootstrap-theme .panel-warning>.panel-subheading:before{content:"";background:#e6ab5e;top:-11px;height:10px;left:0;position:absolute;width:100%;z-index:2}#bootstrap-theme .panel-danger>.panel-subheading{background:#cf3458;color:#fff;border-top-color:#cf3458;position:relative}#bootstrap-theme .panel-danger>.panel-subheading:before{content:"";background:#cf3458;top:-11px;height:10px;left:0;position:absolute;width:100%;z-index:2}#bootstrap-theme .panel-primary>.panel-body, #bootstrap-theme .panel-primary>.panel-footer, #bootstrap-theme .panel-primary>.panel-heading, #bootstrap-theme .panel-primary>.panel-subheading, #bootstrap-theme .panel-success>.panel-body, #bootstrap-theme .panel-success>.panel-footer, #bootstrap-theme .panel-success>.panel-heading, #bootstrap-theme .panel-success>.panel-subheading, #bootstrap-theme .panel-info>.panel-body, #bootstrap-theme .panel-info>.panel-footer, #bootstrap-theme .panel-info>.panel-heading, #bootstrap-theme .panel-info>.panel-subheading, #bootstrap-theme .panel-warning>.panel-body, #bootstrap-theme .panel-warning>.panel-footer, #bootstrap-theme .panel-warning>.panel-heading, #bootstrap-theme .panel-warning>.panel-subheading, #bootstrap-theme .panel-danger>.panel-body, #bootstrap-theme .panel-danger>.panel-footer, #bootstrap-theme .panel-danger>.panel-heading, #bootstrap-theme .panel-danger>.panel-subheading{-webkit-box-shadow:0 3px 18px 0 rgba(48,40,40,0.25);box-shadow:0 3px 18px 0 rgba(48,40,40,0.25)}#bootstrap-theme .panel-primary>.panel-body, #bootstrap-theme .panel-success>.panel-body, #bootstrap-theme .panel-info>.panel-body, #bootstrap-theme .panel-warning>.panel-body, #bootstrap-theme .panel-danger>.panel-body{position:relative}#bootstrap-theme .panel-primary>.panel-body:before, #bootstrap-theme .panel-success>.panel-body:before, #bootstrap-theme .panel-info>.panel-body:before, #bootstrap-theme .panel-warning>.panel-body:before, #bootstrap-theme .panel-danger>.panel-body:before{content:"";background:#fff;bottom:0;height:10px;left:0;position:absolute;width:100%;z-index:2}#bootstrap-theme .panel-primary>.panel-footer, #bootstrap-theme .panel-success>.panel-footer, #bootstrap-theme .panel-info>.panel-footer, #bootstrap-theme .panel-warning>.panel-footer, #bootstrap-theme .panel-danger>.panel-footer{position:relative}#bootstrap-theme .panel-primary:not(.panel-w-subheading)>.panel-heading, #bootstrap-theme .panel-primary.panel-w-subheading>.panel-subheading, #bootstrap-theme .panel-success:not(.panel-w-subheading)>.panel-heading, #bootstrap-theme .panel-success.panel-w-subheading>.panel-subheading, #bootstrap-theme .panel-info:not(.panel-w-subheading)>.panel-heading, #bootstrap-theme .panel-info.panel-w-subheading>.panel-subheading, #bootstrap-theme .panel-warning:not(.panel-w-subheading)>.panel-heading, #bootstrap-theme .panel-warning.panel-w-subheading>.panel-subheading, #bootstrap-theme .panel-danger:not(.panel-w-subheading)>.panel-heading, #bootstrap-theme .panel-danger.panel-w-subheading>.panel-subheading{border-bottom-right-radius:2px;border-bottom-left-radius:2px;margin-bottom:10px}#bootstrap-theme .panel-heading-w-buttons .btn{margin:-8px 0 -8px 10px}#bootstrap-theme [data-toggle="collapse"]:before{font-family:'FontAwesome';font-style:normal;text-rendering:auto;font-size:.8em;color:#4d4d69;color:inherit;content:"";font-size:inherit;margin-right:10px}#bootstrap-theme [data-toggle="collapse"].collapsed:before{content:""}#bootstrap-theme .progress-bar-success, #bootstrap-theme .progress-bar-warning{color:#464354}#bootstrap-theme table, #bootstrap-theme .table{margin-bottom:0}#bootstrap-theme table th, #bootstrap-theme .table th{background:#f3f6f7}#bootstrap-theme table>thead>tr>th, #bootstrap-theme .table>thead>tr>th{border-bottom:0;color:#464354;text-transform:capitalize}#bootstrap-theme table:not(.table-bordered)>tbody>tr:first-child>td, #bootstrap-theme .table:not(.table-bordered)>tbody>tr:first-child>td{border-color:#d3dee2}#bootstrap-theme .table-tab{margin:-15px -20px}#bootstrap-theme .table-tab>table>thead>tr>th{background:#fff}#bootstrap-theme .panel-default>.table, #bootstrap-theme .panel-default>.table-responsive>.table, #bootstrap-theme .panel-default>.panel-collapse>.table{border-top:1px solid #d3dee2}#bootstrap-theme .panel .table, #bootstrap-theme .panel .table-responsive{margin-bottom:0}#bootstrap-theme h1, #bootstrap-theme .h1{font-weight:600}#bootstrap-theme h2, #bootstrap-theme .h2{font-weight:600}#bootstrap-theme h3, #bootstrap-theme .h3{font-weight:600}#bootstrap-theme h4, #bootstrap-theme .h4{font-weight:500}#bootstrap-theme h5, #bootstrap-theme .h5{font-weight:700}#bootstrap-theme h6, #bootstrap-theme .h6{font-weight:500}#bootstrap-theme .text-default{color:#4d4d69}#bootstrap-theme a.text-default:hover, #bootstrap-theme a.text-default:focus{color:#37374c}#bootstrap-theme .text-default-darker{color:#464354}#bootstrap-theme a.text-default-darker:hover, #bootstrap-theme a.text-default-darker:focus{color:#2e2c38}#bootstrap-theme .page-header{-webkit-box-shadow:0 3px 18px 0 rgba(48,40,40,0.25);box-shadow:0 3px 18px 0 rgba(48,40,40,0.25);background:#fff;border:0;padding:13px 20px;margin:0 0 15px 0}#bootstrap-theme .page-header>h1, #bootstrap-theme .page-header>h2, #bootstrap-theme .page-header>h3, #bootstrap-theme .page-header>h4, #bootstrap-theme .page-header>h5, #bootstrap-theme .page-header>h6{font-size:1.3846153846em;font-weight:600;line-height:1.34;margin:0}#bootstrap-theme .page-header-primary{background:#0071bd}#bootstrap-theme .page-header-primary>h1, #bootstrap-theme .page-header-primary>h2, #bootstrap-theme .page-header-primary>h3, #bootstrap-theme .page-header-primary>h4, #bootstrap-theme .page-header-primary>h5, #bootstrap-theme .page-header-primary>h6{color:#fff}#bootstrap-theme .page-header-primary>h1 small, #bootstrap-theme .page-header-primary>h2 small, #bootstrap-theme .page-header-primary>h3 small, #bootstrap-theme .page-header-primary>h4 small, #bootstrap-theme .page-header-primary>h5 small, #bootstrap-theme .page-header-primary>h6 small{color:#e8eef0}#bootstrap-theme .page-header-success{background:#44cb7e}#bootstrap-theme .page-header-success>h1, #bootstrap-theme .page-header-success>h2, #bootstrap-theme .page-header-success>h3, #bootstrap-theme .page-header-success>h4, #bootstrap-theme .page-header-success>h5, #bootstrap-theme .page-header-success>h6{color:#464354}#bootstrap-theme .page-header-success>h1 small, #bootstrap-theme .page-header-success>h2 small, #bootstrap-theme .page-header-success>h3 small, #bootstrap-theme .page-header-success>h4 small, #bootstrap-theme .page-header-success>h5 small, #bootstrap-theme .page-header-success>h6 small{color:#464354}#bootstrap-theme .page-header-info{background:#0071bd}#bootstrap-theme .page-header-info>h1, #bootstrap-theme .page-header-info>h2, #bootstrap-theme .page-header-info>h3, #bootstrap-theme .page-header-info>h4, #bootstrap-theme .page-header-info>h5, #bootstrap-theme .page-header-info>h6{color:#fff}#bootstrap-theme .page-header-info>h1 small, #bootstrap-theme .page-header-info>h2 small, #bootstrap-theme .page-header-info>h3 small, #bootstrap-theme .page-header-info>h4 small, #bootstrap-theme .page-header-info>h5 small, #bootstrap-theme .page-header-info>h6 small{color:#e8eef0}#bootstrap-theme .page-header-warning{background:#e6ab5e}#bootstrap-theme .page-header-warning>h1, #bootstrap-theme .page-header-warning>h2, #bootstrap-theme .page-header-warning>h3, #bootstrap-theme .page-header-warning>h4, #bootstrap-theme .page-header-warning>h5, #bootstrap-theme .page-header-warning>h6{color:#464354}#bootstrap-theme .page-header-warning>h1 small, #bootstrap-theme .page-header-warning>h2 small, #bootstrap-theme .page-header-warning>h3 small, #bootstrap-theme .page-header-warning>h4 small, #bootstrap-theme .page-header-warning>h5 small, #bootstrap-theme .page-header-warning>h6 small{color:#464354}#bootstrap-theme .page-header-danger{background:#cf3458}#bootstrap-theme .page-header-danger>h1, #bootstrap-theme .page-header-danger>h2, #bootstrap-theme .page-header-danger>h3, #bootstrap-theme .page-header-danger>h4, #bootstrap-theme .page-header-danger>h5, #bootstrap-theme .page-header-danger>h6{color:#fff}#bootstrap-theme .page-header-danger>h1 small, #bootstrap-theme .page-header-danger>h2 small, #bootstrap-theme .page-header-danger>h3 small, #bootstrap-theme .page-header-danger>h4 small, #bootstrap-theme .page-header-danger>h5 small, #bootstrap-theme .page-header-danger>h6 small{color:#e8eef0}#bootstrap-theme dl:last-child{margin-bottom:0}#bootstrap-theme dt{color:#464354;font-weight:600}#bootstrap-theme dt:not(:first-child){margin-top:1.7692307692em}@media (min-width: 768px){#bootstrap-theme .dl-horizontal dt{text-align:left}#bootstrap-theme .dl-horizontal dt:not(:first-child)+dd{margin-top:1.7692307692em}}@media (min-width: 768px){#bootstrap-theme .dl-horizontal-half dd{margin-left:125px}#bootstrap-theme .dl-horizontal-half dt{width:125px}}@media (min-width: 768px){#bootstrap-theme .dl-horizontal-full:before, #bootstrap-theme .dl-horizontal-full:after{display:table;content:" "}#bootstrap-theme .dl-horizontal-full:after{clear:both}#bootstrap-theme .dl-horizontal-full dt{width:auto}#bootstrap-theme .dl-horizontal-full dd{float:right;margin-left:0}}@media (min-width: 768px){#bootstrap-theme .dl-horizontal-inline{display:inline-block;vertical-align:top}#bootstrap-theme .dl-horizontal-inline:before, #bootstrap-theme .dl-horizontal-inline:after{display:table;content:" "}#bootstrap-theme .dl-horizontal-inline:after{clear:both}#bootstrap-theme .dl-horizontal-inline dt{width:auto}#bootstrap-theme .dl-horizontal-inline dd{float:left;margin-left:10px}}#bootstrap-theme .dl-inline>dd, #bootstrap-theme .dl-inline>dt{display:inline-block}#bootstrap-theme .dl-inline>dt{margin:0 5px 0 0}#bootstrap-theme .dl-inline>dt:not(:first-child){margin-left:15px}#bootstrap-theme .select2-container .select2-choices{margin-bottom:0;padding-left:0}#bootstrap-theme .select2-container .select2-choice>.select2-chosen{font-size:13px}#bootstrap-theme .select2-container.form-control.select2-dropdown-open{border-color:#0071bd}#bootstrap-theme .ui-dialog-content#bootstrap-theme{background:#fff;padding:10px 20px}#bootstrap-theme .btn-slide>ul.panel{display:none !important}#bootstrap-theme .crm-button-type-next, #bootstrap-theme .crm-button-type-upload{color:#fff;background-image:none;background-color:transparent;border-color:#0071bd}#bootstrap-theme .crm-button-type-next:focus, #bootstrap-theme .crm-button-type-next.focus, #bootstrap-theme .crm-button-type-next:active, #bootstrap-theme .crm-button-type-next.active, #bootstrap-theme .open>.crm-button-type-next.dropdown-toggle, #bootstrap-theme .crm-button-type-upload:focus, #bootstrap-theme .crm-button-type-upload.focus, #bootstrap-theme .crm-button-type-upload:active, #bootstrap-theme .crm-button-type-upload.active, #bootstrap-theme .open>.crm-button-type-upload.dropdown-toggle{color:#fff;background-color:#0071bd;border-color:#0071bd}#bootstrap-theme .crm-button-type-next:hover, #bootstrap-theme .crm-button-type-upload:hover{color:#fff;background-color:#005c99;border-color:#005c99}#bootstrap-theme .crm-button-type-next.disabled:focus, #bootstrap-theme .crm-button-type-next.disabled.focus, #bootstrap-theme .crm-button-type-next:disabled:focus, #bootstrap-theme .crm-button-type-next:disabled.focus, #bootstrap-theme fieldset[disabled] .crm-button-type-next:focus, #bootstrap-theme fieldset[disabled] .crm-button-type-next.focus, #bootstrap-theme .crm-button-type-upload.disabled:focus, #bootstrap-theme .crm-button-type-upload.disabled.focus, #bootstrap-theme .crm-button-type-upload:disabled:focus, #bootstrap-theme .crm-button-type-upload:disabled.focus, #bootstrap-theme fieldset[disabled] .crm-button-type-upload:focus, #bootstrap-theme fieldset[disabled] .crm-button-type-upload.focus{border-color:#fff}#bootstrap-theme .crm-button-type-next.disabled:hover, #bootstrap-theme .crm-button-type-next:disabled:hover, #bootstrap-theme fieldset[disabled] .crm-button-type-next:hover, #bootstrap-theme .crm-button-type-upload.disabled:hover, #bootstrap-theme .crm-button-type-upload:disabled:hover, #bootstrap-theme fieldset[disabled] .crm-button-type-upload:hover{border-color:#fff}#bootstrap-theme .crm-button-type-next .crm-i, #bootstrap-theme .crm-button-type-upload .crm-i{display:none}#bootstrap-theme .crm-button-type-back, #bootstrap-theme .crm-button-type-cancel, #bootstrap-theme .crm-button-type-delete{border-color:#e8eef0}#bootstrap-theme .crm-button-type-back input, #bootstrap-theme .crm-button-type-cancel input, #bootstrap-theme .crm-button-type-delete input{color:#464354 !important}#bootstrap-theme .crm-button-type-back input:hover, #bootstrap-theme .crm-button-type-cancel input:hover, #bootstrap-theme .crm-button-type-delete input:hover{color:#4d4d69 !important}#bootstrap-theme .crm-error{border-radius:2px;display:inline-block;font-size:12px;margin-top:5px}#bootstrap-theme input[type=file].error{padding-left:5px}#bootstrap-theme .crm-form-radio+label::before{min-width:16px;width:16px;height:16px}#bootstrap-theme .crm-form-radio+label::after{top:8px}#bootstrap-theme .crm-form-text{height:30px}#bootstrap-theme a.crm-i:hover, #bootstrap-theme a.helpicon:hover{text-decoration:none}#bootstrap-theme label .crm-marker-description{font-weight:normal}#bootstrap-theme .panel .panel-footer .button:last-child, #bootstrap-theme .panel .panel-footer .crm-button:last-child{margin-right:0}#bootstrap-theme table thead.sticky th>.sticky-header{background:#f3f6f7;border-bottom:1px solid #d3dee2;height:auto;margin-top:8px}#bootstrap-theme .crm-weight-arrow img.order-icon{height:18px;width:13px}#bootstrap-theme .crm-container.ui-dialog{z-index:2001}#bootstrap-theme .ui-widget-overlay.ui-front{z-index:2000}@media (max-width: 480px){#bootstrap-theme .modal-dialog:not(.modal-sm){border:none;border-radius:0;box-shadow:none;height:100%;margin:0;width:100%}#bootstrap-theme .modal-dialog:not(.modal-sm) .close{font-size:30px;pointer-events:auto}#bootstrap-theme .modal-dialog:not(.modal-sm) .modal-content{border:none;border-radius:0;height:100%;overflow-x:hidden;overflow-y:auto}#bootstrap-theme .modal-dialog:not(.modal-sm) .modal-header{pointer-events:none}#bootstrap-theme .modal-dialog:not(.modal-sm) .modal-body, #bootstrap-theme .modal-dialog:not(.modal-sm) .modal-header, #bootstrap-theme .modal-dialog:not(.modal-sm) .modal-footer{border-radius:0;padding:10px}}#bootstrap-theme .btn-default-outline{color:#fff;background-image:none;background-color:transparent;border-color:#fff}#bootstrap-theme .btn-default-outline:focus, #bootstrap-theme .btn-default-outline.focus, #bootstrap-theme .btn-default-outline:active, #bootstrap-theme .btn-default-outline.active, #bootstrap-theme .open>.btn-default-outline.dropdown-toggle{color:#fff;background-color:#fff;border-color:#fff}#bootstrap-theme .btn-default-outline:hover{color:#fff;background-color:#ededed;border-color:#ededed}#bootstrap-theme .btn-default-outline.disabled:focus, #bootstrap-theme .btn-default-outline.disabled.focus, #bootstrap-theme .btn-default-outline:disabled:focus, #bootstrap-theme .btn-default-outline:disabled.focus, #bootstrap-theme fieldset[disabled] .btn-default-outline:focus, #bootstrap-theme fieldset[disabled] .btn-default-outline.focus{border-color:#fff}#bootstrap-theme .btn-default-outline.disabled:hover, #bootstrap-theme .btn-default-outline:disabled:hover, #bootstrap-theme fieldset[disabled] .btn-default-outline:hover{border-color:#fff}#bootstrap-theme .open .btn-default-outline, #bootstrap-theme .btn-default-outline:hover, #bootstrap-theme .btn-default-outline:active{background-color:#fff !important;color:#4d4d69 !important}#bootstrap-theme .btn-primary-outline{color:#464354;background-image:none;background-color:transparent;border-color:#0071bd}#bootstrap-theme .btn-primary-outline:focus, #bootstrap-theme .btn-primary-outline.focus, #bootstrap-theme .btn-primary-outline:active, #bootstrap-theme .btn-primary-outline.active, #bootstrap-theme .open>.btn-primary-outline.dropdown-toggle{color:#fff;background-color:#0071bd;border-color:#0071bd}#bootstrap-theme .btn-primary-outline:hover{color:#fff;background-color:#005c99;border-color:#005c99}#bootstrap-theme .btn-primary-outline.disabled:focus, #bootstrap-theme .btn-primary-outline.disabled.focus, #bootstrap-theme .btn-primary-outline:disabled:focus, #bootstrap-theme .btn-primary-outline:disabled.focus, #bootstrap-theme fieldset[disabled] .btn-primary-outline:focus, #bootstrap-theme fieldset[disabled] .btn-primary-outline.focus{border-color:#75708d}#bootstrap-theme .btn-primary-outline.disabled:hover, #bootstrap-theme .btn-primary-outline:disabled:hover, #bootstrap-theme fieldset[disabled] .btn-primary-outline:hover{border-color:#75708d}#bootstrap-theme .btn-secondary-outline{color:#464354;background-image:none;background-color:transparent;border-color:#4d4d69;border-color:#464354 !important}#bootstrap-theme .btn-secondary-outline:focus, #bootstrap-theme .btn-secondary-outline.focus, #bootstrap-theme .btn-secondary-outline:active, #bootstrap-theme .btn-secondary-outline.active, #bootstrap-theme .open>.btn-secondary-outline.dropdown-toggle{color:#fff;background-color:#4d4d69;border-color:#4d4d69}#bootstrap-theme .btn-secondary-outline:hover{color:#fff;background-color:#3e3e54;border-color:#3e3e54}#bootstrap-theme .btn-secondary-outline.disabled:focus, #bootstrap-theme .btn-secondary-outline.disabled.focus, #bootstrap-theme .btn-secondary-outline:disabled:focus, #bootstrap-theme .btn-secondary-outline:disabled.focus, #bootstrap-theme fieldset[disabled] .btn-secondary-outline:focus, #bootstrap-theme fieldset[disabled] .btn-secondary-outline.focus{border-color:#75708d}#bootstrap-theme .btn-secondary-outline.disabled:hover, #bootstrap-theme .btn-secondary-outline:disabled:hover, #bootstrap-theme fieldset[disabled] .btn-secondary-outline:hover{border-color:#75708d}#bootstrap-theme .btn-secondary-outline:hover{color:#fff !important}#bootstrap-theme .btn-info-outline{color:#464354;background-image:none;background-color:transparent;border-color:#0071bd}#bootstrap-theme .btn-info-outline:focus, #bootstrap-theme .btn-info-outline.focus, #bootstrap-theme .btn-info-outline:active, #bootstrap-theme .btn-info-outline.active, #bootstrap-theme .open>.btn-info-outline.dropdown-toggle{color:#fff;background-color:#0071bd;border-color:#0071bd}#bootstrap-theme .btn-info-outline:hover{color:#fff;background-color:#005c99;border-color:#005c99}#bootstrap-theme .btn-info-outline.disabled:focus, #bootstrap-theme .btn-info-outline.disabled.focus, #bootstrap-theme .btn-info-outline:disabled:focus, #bootstrap-theme .btn-info-outline:disabled.focus, #bootstrap-theme fieldset[disabled] .btn-info-outline:focus, #bootstrap-theme fieldset[disabled] .btn-info-outline.focus{border-color:#75708d}#bootstrap-theme .btn-info-outline.disabled:hover, #bootstrap-theme .btn-info-outline:disabled:hover, #bootstrap-theme fieldset[disabled] .btn-info-outline:hover{border-color:#75708d}#bootstrap-theme .btn-success-outline{color:#464354;background-image:none;background-color:transparent;border-color:#44cb7e}#bootstrap-theme .btn-success-outline:focus, #bootstrap-theme .btn-success-outline.focus, #bootstrap-theme .btn-success-outline:active, #bootstrap-theme .btn-success-outline.active, #bootstrap-theme .open>.btn-success-outline.dropdown-toggle{color:#fff;background-color:#44cb7e;border-color:#44cb7e}#bootstrap-theme .btn-success-outline:hover{color:#000;background-color:#33b86c;border-color:#33b86c}#bootstrap-theme .btn-success-outline.disabled:focus, #bootstrap-theme .btn-success-outline.disabled.focus, #bootstrap-theme .btn-success-outline:disabled:focus, #bootstrap-theme .btn-success-outline:disabled.focus, #bootstrap-theme fieldset[disabled] .btn-success-outline:focus, #bootstrap-theme fieldset[disabled] .btn-success-outline.focus{border-color:#75708d}#bootstrap-theme .btn-success-outline.disabled:hover, #bootstrap-theme .btn-success-outline:disabled:hover, #bootstrap-theme fieldset[disabled] .btn-success-outline:hover{border-color:#75708d}#bootstrap-theme .btn-warning-outline{color:#464354;background-image:none;background-color:transparent;border-color:#e6ab5e}#bootstrap-theme .btn-warning-outline:focus, #bootstrap-theme .btn-warning-outline.focus, #bootstrap-theme .btn-warning-outline:active, #bootstrap-theme .btn-warning-outline.active, #bootstrap-theme .open>.btn-warning-outline.dropdown-toggle{color:#fff;background-color:#e6ab5e;border-color:#e6ab5e}#bootstrap-theme .btn-warning-outline:hover{color:#000;background-color:#e19b3f;border-color:#e19b3f}#bootstrap-theme .btn-warning-outline.disabled:focus, #bootstrap-theme .btn-warning-outline.disabled.focus, #bootstrap-theme .btn-warning-outline:disabled:focus, #bootstrap-theme .btn-warning-outline:disabled.focus, #bootstrap-theme fieldset[disabled] .btn-warning-outline:focus, #bootstrap-theme fieldset[disabled] .btn-warning-outline.focus{border-color:#75708d}#bootstrap-theme .btn-warning-outline.disabled:hover, #bootstrap-theme .btn-warning-outline:disabled:hover, #bootstrap-theme fieldset[disabled] .btn-warning-outline:hover{border-color:#75708d}#bootstrap-theme .btn-danger-outline{color:#464354;background-image:none;background-color:transparent;border-color:#cf3458}#bootstrap-theme .btn-danger-outline:focus, #bootstrap-theme .btn-danger-outline.focus, #bootstrap-theme .btn-danger-outline:active, #bootstrap-theme .btn-danger-outline.active, #bootstrap-theme .open>.btn-danger-outline.dropdown-toggle{color:#fff;background-color:#cf3458;border-color:#cf3458}#bootstrap-theme .btn-danger-outline:hover{color:#fff;background-color:#b52b4b;border-color:#b52b4b}#bootstrap-theme .btn-danger-outline.disabled:focus, #bootstrap-theme .btn-danger-outline.disabled.focus, #bootstrap-theme .btn-danger-outline:disabled:focus, #bootstrap-theme .btn-danger-outline:disabled.focus, #bootstrap-theme fieldset[disabled] .btn-danger-outline:focus, #bootstrap-theme fieldset[disabled] .btn-danger-outline.focus{border-color:#75708d}#bootstrap-theme .btn-danger-outline.disabled:hover, #bootstrap-theme .btn-danger-outline:disabled:hover, #bootstrap-theme fieldset[disabled] .btn-danger-outline:hover{border-color:#75708d}#bootstrap-theme .chart-color-0{background:#5A6779 !important;border-color:#5A6779 !important;fill:#5A6779 !important}#bootstrap-theme .chart-color-bg-0{background:#5A6779 !important;fill:#5A6779 !important}#bootstrap-theme .chart-color-border-0{border-color:#5A6779 !important}#bootstrap-theme .chart-color-stroke-0{stroke:#5A6779 !important}#bootstrap-theme .chart-color-28{background:#5A6779 !important;border-color:#5A6779 !important;fill:#5A6779 !important}#bootstrap-theme .chart-color-bg-28{background:#5A6779 !important;fill:#5A6779 !important}#bootstrap-theme .chart-color-border-28{border-color:#5A6779 !important}#bootstrap-theme .chart-color-stroke-28{stroke:#5A6779 !important}#bootstrap-theme .chart-color-56{background:#5A6779 !important;border-color:#5A6779 !important;fill:#5A6779 !important}#bootstrap-theme .chart-color-bg-56{background:#5A6779 !important;fill:#5A6779 !important}#bootstrap-theme .chart-color-border-56{border-color:#5A6779 !important}#bootstrap-theme .chart-color-stroke-56{stroke:#5A6779 !important}#bootstrap-theme .chart-color-84{background:#5A6779 !important;border-color:#5A6779 !important;fill:#5A6779 !important}#bootstrap-theme .chart-color-bg-84{background:#5A6779 !important;fill:#5A6779 !important}#bootstrap-theme .chart-color-border-84{border-color:#5A6779 !important}#bootstrap-theme .chart-color-stroke-84{stroke:#5A6779 !important}#bootstrap-theme .chart-color-112{background:#5A6779 !important;border-color:#5A6779 !important;fill:#5A6779 !important}#bootstrap-theme .chart-color-bg-112{background:#5A6779 !important;fill:#5A6779 !important}#bootstrap-theme .chart-color-border-112{border-color:#5A6779 !important}#bootstrap-theme .chart-color-stroke-112{stroke:#5A6779 !important}#bootstrap-theme .chart-color-1{background:#E5807F !important;border-color:#E5807F !important;fill:#E5807F !important}#bootstrap-theme .chart-color-bg-1{background:#E5807F !important;fill:#E5807F !important}#bootstrap-theme .chart-color-border-1{border-color:#E5807F !important}#bootstrap-theme .chart-color-stroke-1{stroke:#E5807F !important}#bootstrap-theme .chart-color-29{background:#E5807F !important;border-color:#E5807F !important;fill:#E5807F !important}#bootstrap-theme .chart-color-bg-29{background:#E5807F !important;fill:#E5807F !important}#bootstrap-theme .chart-color-border-29{border-color:#E5807F !important}#bootstrap-theme .chart-color-stroke-29{stroke:#E5807F !important}#bootstrap-theme .chart-color-57{background:#E5807F !important;border-color:#E5807F !important;fill:#E5807F !important}#bootstrap-theme .chart-color-bg-57{background:#E5807F !important;fill:#E5807F !important}#bootstrap-theme .chart-color-border-57{border-color:#E5807F !important}#bootstrap-theme .chart-color-stroke-57{stroke:#E5807F !important}#bootstrap-theme .chart-color-85{background:#E5807F !important;border-color:#E5807F !important;fill:#E5807F !important}#bootstrap-theme .chart-color-bg-85{background:#E5807F !important;fill:#E5807F !important}#bootstrap-theme .chart-color-border-85{border-color:#E5807F !important}#bootstrap-theme .chart-color-stroke-85{stroke:#E5807F !important}#bootstrap-theme .chart-color-113{background:#E5807F !important;border-color:#E5807F !important;fill:#E5807F !important}#bootstrap-theme .chart-color-bg-113{background:#E5807F !important;fill:#E5807F !important}#bootstrap-theme .chart-color-border-113{border-color:#E5807F !important}#bootstrap-theme .chart-color-stroke-113{stroke:#E5807F !important}#bootstrap-theme .chart-color-2{background:#ECA67F !important;border-color:#ECA67F !important;fill:#ECA67F !important}#bootstrap-theme .chart-color-bg-2{background:#ECA67F !important;fill:#ECA67F !important}#bootstrap-theme .chart-color-border-2{border-color:#ECA67F !important}#bootstrap-theme .chart-color-stroke-2{stroke:#ECA67F !important}#bootstrap-theme .chart-color-30{background:#ECA67F !important;border-color:#ECA67F !important;fill:#ECA67F !important}#bootstrap-theme .chart-color-bg-30{background:#ECA67F !important;fill:#ECA67F !important}#bootstrap-theme .chart-color-border-30{border-color:#ECA67F !important}#bootstrap-theme .chart-color-stroke-30{stroke:#ECA67F !important}#bootstrap-theme .chart-color-58{background:#ECA67F !important;border-color:#ECA67F !important;fill:#ECA67F !important}#bootstrap-theme .chart-color-bg-58{background:#ECA67F !important;fill:#ECA67F !important}#bootstrap-theme .chart-color-border-58{border-color:#ECA67F !important}#bootstrap-theme .chart-color-stroke-58{stroke:#ECA67F !important}#bootstrap-theme .chart-color-86{background:#ECA67F !important;border-color:#ECA67F !important;fill:#ECA67F !important}#bootstrap-theme .chart-color-bg-86{background:#ECA67F !important;fill:#ECA67F !important}#bootstrap-theme .chart-color-border-86{border-color:#ECA67F !important}#bootstrap-theme .chart-color-stroke-86{stroke:#ECA67F !important}#bootstrap-theme .chart-color-114{background:#ECA67F !important;border-color:#ECA67F !important;fill:#ECA67F !important}#bootstrap-theme .chart-color-bg-114{background:#ECA67F !important;fill:#ECA67F !important}#bootstrap-theme .chart-color-border-114{border-color:#ECA67F !important}#bootstrap-theme .chart-color-stroke-114{stroke:#ECA67F !important}#bootstrap-theme .chart-color-3{background:#8EC68A !important;border-color:#8EC68A !important;fill:#8EC68A !important}#bootstrap-theme .chart-color-bg-3{background:#8EC68A !important;fill:#8EC68A !important}#bootstrap-theme .chart-color-border-3{border-color:#8EC68A !important}#bootstrap-theme .chart-color-stroke-3{stroke:#8EC68A !important}#bootstrap-theme .chart-color-31{background:#8EC68A !important;border-color:#8EC68A !important;fill:#8EC68A !important}#bootstrap-theme .chart-color-bg-31{background:#8EC68A !important;fill:#8EC68A !important}#bootstrap-theme .chart-color-border-31{border-color:#8EC68A !important}#bootstrap-theme .chart-color-stroke-31{stroke:#8EC68A !important}#bootstrap-theme .chart-color-59{background:#8EC68A !important;border-color:#8EC68A !important;fill:#8EC68A !important}#bootstrap-theme .chart-color-bg-59{background:#8EC68A !important;fill:#8EC68A !important}#bootstrap-theme .chart-color-border-59{border-color:#8EC68A !important}#bootstrap-theme .chart-color-stroke-59{stroke:#8EC68A !important}#bootstrap-theme .chart-color-87{background:#8EC68A !important;border-color:#8EC68A !important;fill:#8EC68A !important}#bootstrap-theme .chart-color-bg-87{background:#8EC68A !important;fill:#8EC68A !important}#bootstrap-theme .chart-color-border-87{border-color:#8EC68A !important}#bootstrap-theme .chart-color-stroke-87{stroke:#8EC68A !important}#bootstrap-theme .chart-color-115{background:#8EC68A !important;border-color:#8EC68A !important;fill:#8EC68A !important}#bootstrap-theme .chart-color-bg-115{background:#8EC68A !important;fill:#8EC68A !important}#bootstrap-theme .chart-color-border-115{border-color:#8EC68A !important}#bootstrap-theme .chart-color-stroke-115{stroke:#8EC68A !important}#bootstrap-theme .chart-color-4{background:#C096AA !important;border-color:#C096AA !important;fill:#C096AA !important}#bootstrap-theme .chart-color-bg-4{background:#C096AA !important;fill:#C096AA !important}#bootstrap-theme .chart-color-border-4{border-color:#C096AA !important}#bootstrap-theme .chart-color-stroke-4{stroke:#C096AA !important}#bootstrap-theme .chart-color-32{background:#C096AA !important;border-color:#C096AA !important;fill:#C096AA !important}#bootstrap-theme .chart-color-bg-32{background:#C096AA !important;fill:#C096AA !important}#bootstrap-theme .chart-color-border-32{border-color:#C096AA !important}#bootstrap-theme .chart-color-stroke-32{stroke:#C096AA !important}#bootstrap-theme .chart-color-60{background:#C096AA !important;border-color:#C096AA !important;fill:#C096AA !important}#bootstrap-theme .chart-color-bg-60{background:#C096AA !important;fill:#C096AA !important}#bootstrap-theme .chart-color-border-60{border-color:#C096AA !important}#bootstrap-theme .chart-color-stroke-60{stroke:#C096AA !important}#bootstrap-theme .chart-color-88{background:#C096AA !important;border-color:#C096AA !important;fill:#C096AA !important}#bootstrap-theme .chart-color-bg-88{background:#C096AA !important;fill:#C096AA !important}#bootstrap-theme .chart-color-border-88{border-color:#C096AA !important}#bootstrap-theme .chart-color-stroke-88{stroke:#C096AA !important}#bootstrap-theme .chart-color-116{background:#C096AA !important;border-color:#C096AA !important;fill:#C096AA !important}#bootstrap-theme .chart-color-bg-116{background:#C096AA !important;fill:#C096AA !important}#bootstrap-theme .chart-color-border-116{border-color:#C096AA !important}#bootstrap-theme .chart-color-stroke-116{stroke:#C096AA !important}#bootstrap-theme .chart-color-5{background:#9579A8 !important;border-color:#9579A8 !important;fill:#9579A8 !important}#bootstrap-theme .chart-color-bg-5{background:#9579A8 !important;fill:#9579A8 !important}#bootstrap-theme .chart-color-border-5{border-color:#9579A8 !important}#bootstrap-theme .chart-color-stroke-5{stroke:#9579A8 !important}#bootstrap-theme .chart-color-33{background:#9579A8 !important;border-color:#9579A8 !important;fill:#9579A8 !important}#bootstrap-theme .chart-color-bg-33{background:#9579A8 !important;fill:#9579A8 !important}#bootstrap-theme .chart-color-border-33{border-color:#9579A8 !important}#bootstrap-theme .chart-color-stroke-33{stroke:#9579A8 !important}#bootstrap-theme .chart-color-61{background:#9579A8 !important;border-color:#9579A8 !important;fill:#9579A8 !important}#bootstrap-theme .chart-color-bg-61{background:#9579A8 !important;fill:#9579A8 !important}#bootstrap-theme .chart-color-border-61{border-color:#9579A8 !important}#bootstrap-theme .chart-color-stroke-61{stroke:#9579A8 !important}#bootstrap-theme .chart-color-89{background:#9579A8 !important;border-color:#9579A8 !important;fill:#9579A8 !important}#bootstrap-theme .chart-color-bg-89{background:#9579A8 !important;fill:#9579A8 !important}#bootstrap-theme .chart-color-border-89{border-color:#9579A8 !important}#bootstrap-theme .chart-color-stroke-89{stroke:#9579A8 !important}#bootstrap-theme .chart-color-117{background:#9579A8 !important;border-color:#9579A8 !important;fill:#9579A8 !important}#bootstrap-theme .chart-color-bg-117{background:#9579A8 !important;fill:#9579A8 !important}#bootstrap-theme .chart-color-border-117{border-color:#9579A8 !important}#bootstrap-theme .chart-color-stroke-117{stroke:#9579A8 !important}#bootstrap-theme .chart-color-6{background:#42B0CB !important;border-color:#42B0CB !important;fill:#42B0CB !important}#bootstrap-theme .chart-color-bg-6{background:#42B0CB !important;fill:#42B0CB !important}#bootstrap-theme .chart-color-border-6{border-color:#42B0CB !important}#bootstrap-theme .chart-color-stroke-6{stroke:#42B0CB !important}#bootstrap-theme .chart-color-34{background:#42B0CB !important;border-color:#42B0CB !important;fill:#42B0CB !important}#bootstrap-theme .chart-color-bg-34{background:#42B0CB !important;fill:#42B0CB !important}#bootstrap-theme .chart-color-border-34{border-color:#42B0CB !important}#bootstrap-theme .chart-color-stroke-34{stroke:#42B0CB !important}#bootstrap-theme .chart-color-62{background:#42B0CB !important;border-color:#42B0CB !important;fill:#42B0CB !important}#bootstrap-theme .chart-color-bg-62{background:#42B0CB !important;fill:#42B0CB !important}#bootstrap-theme .chart-color-border-62{border-color:#42B0CB !important}#bootstrap-theme .chart-color-stroke-62{stroke:#42B0CB !important}#bootstrap-theme .chart-color-90{background:#42B0CB !important;border-color:#42B0CB !important;fill:#42B0CB !important}#bootstrap-theme .chart-color-bg-90{background:#42B0CB !important;fill:#42B0CB !important}#bootstrap-theme .chart-color-border-90{border-color:#42B0CB !important}#bootstrap-theme .chart-color-stroke-90{stroke:#42B0CB !important}#bootstrap-theme .chart-color-118{background:#42B0CB !important;border-color:#42B0CB !important;fill:#42B0CB !important}#bootstrap-theme .chart-color-bg-118{background:#42B0CB !important;fill:#42B0CB !important}#bootstrap-theme .chart-color-border-118{border-color:#42B0CB !important}#bootstrap-theme .chart-color-stroke-118{stroke:#42B0CB !important}#bootstrap-theme .chart-color-7{background:#3D4A5E !important;border-color:#3D4A5E !important;fill:#3D4A5E !important}#bootstrap-theme .chart-color-bg-7{background:#3D4A5E !important;fill:#3D4A5E !important}#bootstrap-theme .chart-color-border-7{border-color:#3D4A5E !important}#bootstrap-theme .chart-color-stroke-7{stroke:#3D4A5E !important}#bootstrap-theme .chart-color-35{background:#3D4A5E !important;border-color:#3D4A5E !important;fill:#3D4A5E !important}#bootstrap-theme .chart-color-bg-35{background:#3D4A5E !important;fill:#3D4A5E !important}#bootstrap-theme .chart-color-border-35{border-color:#3D4A5E !important}#bootstrap-theme .chart-color-stroke-35{stroke:#3D4A5E !important}#bootstrap-theme .chart-color-63{background:#3D4A5E !important;border-color:#3D4A5E !important;fill:#3D4A5E !important}#bootstrap-theme .chart-color-bg-63{background:#3D4A5E !important;fill:#3D4A5E !important}#bootstrap-theme .chart-color-border-63{border-color:#3D4A5E !important}#bootstrap-theme .chart-color-stroke-63{stroke:#3D4A5E !important}#bootstrap-theme .chart-color-91{background:#3D4A5E !important;border-color:#3D4A5E !important;fill:#3D4A5E !important}#bootstrap-theme .chart-color-bg-91{background:#3D4A5E !important;fill:#3D4A5E !important}#bootstrap-theme .chart-color-border-91{border-color:#3D4A5E !important}#bootstrap-theme .chart-color-stroke-91{stroke:#3D4A5E !important}#bootstrap-theme .chart-color-119{background:#3D4A5E !important;border-color:#3D4A5E !important;fill:#3D4A5E !important}#bootstrap-theme .chart-color-bg-119{background:#3D4A5E !important;fill:#3D4A5E !important}#bootstrap-theme .chart-color-border-119{border-color:#3D4A5E !important}#bootstrap-theme .chart-color-stroke-119{stroke:#3D4A5E !important}#bootstrap-theme .chart-color-8{background:#E56A6A !important;border-color:#E56A6A !important;fill:#E56A6A !important}#bootstrap-theme .chart-color-bg-8{background:#E56A6A !important;fill:#E56A6A !important}#bootstrap-theme .chart-color-border-8{border-color:#E56A6A !important}#bootstrap-theme .chart-color-stroke-8{stroke:#E56A6A !important}#bootstrap-theme .chart-color-36{background:#E56A6A !important;border-color:#E56A6A !important;fill:#E56A6A !important}#bootstrap-theme .chart-color-bg-36{background:#E56A6A !important;fill:#E56A6A !important}#bootstrap-theme .chart-color-border-36{border-color:#E56A6A !important}#bootstrap-theme .chart-color-stroke-36{stroke:#E56A6A !important}#bootstrap-theme .chart-color-64{background:#E56A6A !important;border-color:#E56A6A !important;fill:#E56A6A !important}#bootstrap-theme .chart-color-bg-64{background:#E56A6A !important;fill:#E56A6A !important}#bootstrap-theme .chart-color-border-64{border-color:#E56A6A !important}#bootstrap-theme .chart-color-stroke-64{stroke:#E56A6A !important}#bootstrap-theme .chart-color-92{background:#E56A6A !important;border-color:#E56A6A !important;fill:#E56A6A !important}#bootstrap-theme .chart-color-bg-92{background:#E56A6A !important;fill:#E56A6A !important}#bootstrap-theme .chart-color-border-92{border-color:#E56A6A !important}#bootstrap-theme .chart-color-stroke-92{stroke:#E56A6A !important}#bootstrap-theme .chart-color-120{background:#E56A6A !important;border-color:#E56A6A !important;fill:#E56A6A !important}#bootstrap-theme .chart-color-bg-120{background:#E56A6A !important;fill:#E56A6A !important}#bootstrap-theme .chart-color-border-120{border-color:#E56A6A !important}#bootstrap-theme .chart-color-stroke-120{stroke:#E56A6A !important}#bootstrap-theme .chart-color-9{background:#FA8F55 !important;border-color:#FA8F55 !important;fill:#FA8F55 !important}#bootstrap-theme .chart-color-bg-9{background:#FA8F55 !important;fill:#FA8F55 !important}#bootstrap-theme .chart-color-border-9{border-color:#FA8F55 !important}#bootstrap-theme .chart-color-stroke-9{stroke:#FA8F55 !important}#bootstrap-theme .chart-color-37{background:#FA8F55 !important;border-color:#FA8F55 !important;fill:#FA8F55 !important}#bootstrap-theme .chart-color-bg-37{background:#FA8F55 !important;fill:#FA8F55 !important}#bootstrap-theme .chart-color-border-37{border-color:#FA8F55 !important}#bootstrap-theme .chart-color-stroke-37{stroke:#FA8F55 !important}#bootstrap-theme .chart-color-65{background:#FA8F55 !important;border-color:#FA8F55 !important;fill:#FA8F55 !important}#bootstrap-theme .chart-color-bg-65{background:#FA8F55 !important;fill:#FA8F55 !important}#bootstrap-theme .chart-color-border-65{border-color:#FA8F55 !important}#bootstrap-theme .chart-color-stroke-65{stroke:#FA8F55 !important}#bootstrap-theme .chart-color-93{background:#FA8F55 !important;border-color:#FA8F55 !important;fill:#FA8F55 !important}#bootstrap-theme .chart-color-bg-93{background:#FA8F55 !important;fill:#FA8F55 !important}#bootstrap-theme .chart-color-border-93{border-color:#FA8F55 !important}#bootstrap-theme .chart-color-stroke-93{stroke:#FA8F55 !important}#bootstrap-theme .chart-color-121{background:#FA8F55 !important;border-color:#FA8F55 !important;fill:#FA8F55 !important}#bootstrap-theme .chart-color-bg-121{background:#FA8F55 !important;fill:#FA8F55 !important}#bootstrap-theme .chart-color-border-121{border-color:#FA8F55 !important}#bootstrap-theme .chart-color-stroke-121{stroke:#FA8F55 !important}#bootstrap-theme .chart-color-10{background:#6DAD68 !important;border-color:#6DAD68 !important;fill:#6DAD68 !important}#bootstrap-theme .chart-color-bg-10{background:#6DAD68 !important;fill:#6DAD68 !important}#bootstrap-theme .chart-color-border-10{border-color:#6DAD68 !important}#bootstrap-theme .chart-color-stroke-10{stroke:#6DAD68 !important}#bootstrap-theme .chart-color-38{background:#6DAD68 !important;border-color:#6DAD68 !important;fill:#6DAD68 !important}#bootstrap-theme .chart-color-bg-38{background:#6DAD68 !important;fill:#6DAD68 !important}#bootstrap-theme .chart-color-border-38{border-color:#6DAD68 !important}#bootstrap-theme .chart-color-stroke-38{stroke:#6DAD68 !important}#bootstrap-theme .chart-color-66{background:#6DAD68 !important;border-color:#6DAD68 !important;fill:#6DAD68 !important}#bootstrap-theme .chart-color-bg-66{background:#6DAD68 !important;fill:#6DAD68 !important}#bootstrap-theme .chart-color-border-66{border-color:#6DAD68 !important}#bootstrap-theme .chart-color-stroke-66{stroke:#6DAD68 !important}#bootstrap-theme .chart-color-94{background:#6DAD68 !important;border-color:#6DAD68 !important;fill:#6DAD68 !important}#bootstrap-theme .chart-color-bg-94{background:#6DAD68 !important;fill:#6DAD68 !important}#bootstrap-theme .chart-color-border-94{border-color:#6DAD68 !important}#bootstrap-theme .chart-color-stroke-94{stroke:#6DAD68 !important}#bootstrap-theme .chart-color-122{background:#6DAD68 !important;border-color:#6DAD68 !important;fill:#6DAD68 !important}#bootstrap-theme .chart-color-bg-122{background:#6DAD68 !important;fill:#6DAD68 !important}#bootstrap-theme .chart-color-border-122{border-color:#6DAD68 !important}#bootstrap-theme .chart-color-stroke-122{stroke:#6DAD68 !important}#bootstrap-theme .chart-color-11{background:#B37995 !important;border-color:#B37995 !important;fill:#B37995 !important}#bootstrap-theme .chart-color-bg-11{background:#B37995 !important;fill:#B37995 !important}#bootstrap-theme .chart-color-border-11{border-color:#B37995 !important}#bootstrap-theme .chart-color-stroke-11{stroke:#B37995 !important}#bootstrap-theme .chart-color-39{background:#B37995 !important;border-color:#B37995 !important;fill:#B37995 !important}#bootstrap-theme .chart-color-bg-39{background:#B37995 !important;fill:#B37995 !important}#bootstrap-theme .chart-color-border-39{border-color:#B37995 !important}#bootstrap-theme .chart-color-stroke-39{stroke:#B37995 !important}#bootstrap-theme .chart-color-67{background:#B37995 !important;border-color:#B37995 !important;fill:#B37995 !important}#bootstrap-theme .chart-color-bg-67{background:#B37995 !important;fill:#B37995 !important}#bootstrap-theme .chart-color-border-67{border-color:#B37995 !important}#bootstrap-theme .chart-color-stroke-67{stroke:#B37995 !important}#bootstrap-theme .chart-color-95{background:#B37995 !important;border-color:#B37995 !important;fill:#B37995 !important}#bootstrap-theme .chart-color-bg-95{background:#B37995 !important;fill:#B37995 !important}#bootstrap-theme .chart-color-border-95{border-color:#B37995 !important}#bootstrap-theme .chart-color-stroke-95{stroke:#B37995 !important}#bootstrap-theme .chart-color-123{background:#B37995 !important;border-color:#B37995 !important;fill:#B37995 !important}#bootstrap-theme .chart-color-bg-123{background:#B37995 !important;fill:#B37995 !important}#bootstrap-theme .chart-color-border-123{border-color:#B37995 !important}#bootstrap-theme .chart-color-stroke-123{stroke:#B37995 !important}#bootstrap-theme .chart-color-12{background:#84619C !important;border-color:#84619C !important;fill:#84619C !important}#bootstrap-theme .chart-color-bg-12{background:#84619C !important;fill:#84619C !important}#bootstrap-theme .chart-color-border-12{border-color:#84619C !important}#bootstrap-theme .chart-color-stroke-12{stroke:#84619C !important}#bootstrap-theme .chart-color-40{background:#84619C !important;border-color:#84619C !important;fill:#84619C !important}#bootstrap-theme .chart-color-bg-40{background:#84619C !important;fill:#84619C !important}#bootstrap-theme .chart-color-border-40{border-color:#84619C !important}#bootstrap-theme .chart-color-stroke-40{stroke:#84619C !important}#bootstrap-theme .chart-color-68{background:#84619C !important;border-color:#84619C !important;fill:#84619C !important}#bootstrap-theme .chart-color-bg-68{background:#84619C !important;fill:#84619C !important}#bootstrap-theme .chart-color-border-68{border-color:#84619C !important}#bootstrap-theme .chart-color-stroke-68{stroke:#84619C !important}#bootstrap-theme .chart-color-96{background:#84619C !important;border-color:#84619C !important;fill:#84619C !important}#bootstrap-theme .chart-color-bg-96{background:#84619C !important;fill:#84619C !important}#bootstrap-theme .chart-color-border-96{border-color:#84619C !important}#bootstrap-theme .chart-color-stroke-96{stroke:#84619C !important}#bootstrap-theme .chart-color-124{background:#84619C !important;border-color:#84619C !important;fill:#84619C !important}#bootstrap-theme .chart-color-bg-124{background:#84619C !important;fill:#84619C !important}#bootstrap-theme .chart-color-border-124{border-color:#84619C !important}#bootstrap-theme .chart-color-stroke-124{stroke:#84619C !important}#bootstrap-theme .chart-color-13{background:#2997B3 !important;border-color:#2997B3 !important;fill:#2997B3 !important}#bootstrap-theme .chart-color-bg-13{background:#2997B3 !important;fill:#2997B3 !important}#bootstrap-theme .chart-color-border-13{border-color:#2997B3 !important}#bootstrap-theme .chart-color-stroke-13{stroke:#2997B3 !important}#bootstrap-theme .chart-color-41{background:#2997B3 !important;border-color:#2997B3 !important;fill:#2997B3 !important}#bootstrap-theme .chart-color-bg-41{background:#2997B3 !important;fill:#2997B3 !important}#bootstrap-theme .chart-color-border-41{border-color:#2997B3 !important}#bootstrap-theme .chart-color-stroke-41{stroke:#2997B3 !important}#bootstrap-theme .chart-color-69{background:#2997B3 !important;border-color:#2997B3 !important;fill:#2997B3 !important}#bootstrap-theme .chart-color-bg-69{background:#2997B3 !important;fill:#2997B3 !important}#bootstrap-theme .chart-color-border-69{border-color:#2997B3 !important}#bootstrap-theme .chart-color-stroke-69{stroke:#2997B3 !important}#bootstrap-theme .chart-color-97{background:#2997B3 !important;border-color:#2997B3 !important;fill:#2997B3 !important}#bootstrap-theme .chart-color-bg-97{background:#2997B3 !important;fill:#2997B3 !important}#bootstrap-theme .chart-color-border-97{border-color:#2997B3 !important}#bootstrap-theme .chart-color-stroke-97{stroke:#2997B3 !important}#bootstrap-theme .chart-color-125{background:#2997B3 !important;border-color:#2997B3 !important;fill:#2997B3 !important}#bootstrap-theme .chart-color-bg-125{background:#2997B3 !important;fill:#2997B3 !important}#bootstrap-theme .chart-color-border-125{border-color:#2997B3 !important}#bootstrap-theme .chart-color-stroke-125{stroke:#2997B3 !important}#bootstrap-theme .chart-color-14{background:#263345 !important;border-color:#263345 !important;fill:#263345 !important}#bootstrap-theme .chart-color-bg-14{background:#263345 !important;fill:#263345 !important}#bootstrap-theme .chart-color-border-14{border-color:#263345 !important}#bootstrap-theme .chart-color-stroke-14{stroke:#263345 !important}#bootstrap-theme .chart-color-42{background:#263345 !important;border-color:#263345 !important;fill:#263345 !important}#bootstrap-theme .chart-color-bg-42{background:#263345 !important;fill:#263345 !important}#bootstrap-theme .chart-color-border-42{border-color:#263345 !important}#bootstrap-theme .chart-color-stroke-42{stroke:#263345 !important}#bootstrap-theme .chart-color-70{background:#263345 !important;border-color:#263345 !important;fill:#263345 !important}#bootstrap-theme .chart-color-bg-70{background:#263345 !important;fill:#263345 !important}#bootstrap-theme .chart-color-border-70{border-color:#263345 !important}#bootstrap-theme .chart-color-stroke-70{stroke:#263345 !important}#bootstrap-theme .chart-color-98{background:#263345 !important;border-color:#263345 !important;fill:#263345 !important}#bootstrap-theme .chart-color-bg-98{background:#263345 !important;fill:#263345 !important}#bootstrap-theme .chart-color-border-98{border-color:#263345 !important}#bootstrap-theme .chart-color-stroke-98{stroke:#263345 !important}#bootstrap-theme .chart-color-126{background:#263345 !important;border-color:#263345 !important;fill:#263345 !important}#bootstrap-theme .chart-color-bg-126{background:#263345 !important;fill:#263345 !important}#bootstrap-theme .chart-color-border-126{border-color:#263345 !important}#bootstrap-theme .chart-color-stroke-126{stroke:#263345 !important}#bootstrap-theme .chart-color-15{background:#CC4A49 !important;border-color:#CC4A49 !important;fill:#CC4A49 !important}#bootstrap-theme .chart-color-bg-15{background:#CC4A49 !important;fill:#CC4A49 !important}#bootstrap-theme .chart-color-border-15{border-color:#CC4A49 !important}#bootstrap-theme .chart-color-stroke-15{stroke:#CC4A49 !important}#bootstrap-theme .chart-color-43{background:#CC4A49 !important;border-color:#CC4A49 !important;fill:#CC4A49 !important}#bootstrap-theme .chart-color-bg-43{background:#CC4A49 !important;fill:#CC4A49 !important}#bootstrap-theme .chart-color-border-43{border-color:#CC4A49 !important}#bootstrap-theme .chart-color-stroke-43{stroke:#CC4A49 !important}#bootstrap-theme .chart-color-71{background:#CC4A49 !important;border-color:#CC4A49 !important;fill:#CC4A49 !important}#bootstrap-theme .chart-color-bg-71{background:#CC4A49 !important;fill:#CC4A49 !important}#bootstrap-theme .chart-color-border-71{border-color:#CC4A49 !important}#bootstrap-theme .chart-color-stroke-71{stroke:#CC4A49 !important}#bootstrap-theme .chart-color-99{background:#CC4A49 !important;border-color:#CC4A49 !important;fill:#CC4A49 !important}#bootstrap-theme .chart-color-bg-99{background:#CC4A49 !important;fill:#CC4A49 !important}#bootstrap-theme .chart-color-border-99{border-color:#CC4A49 !important}#bootstrap-theme .chart-color-stroke-99{stroke:#CC4A49 !important}#bootstrap-theme .chart-color-127{background:#CC4A49 !important;border-color:#CC4A49 !important;fill:#CC4A49 !important}#bootstrap-theme .chart-color-bg-127{background:#CC4A49 !important;fill:#CC4A49 !important}#bootstrap-theme .chart-color-border-127{border-color:#CC4A49 !important}#bootstrap-theme .chart-color-stroke-127{stroke:#CC4A49 !important}#bootstrap-theme .chart-color-16{background:#D97038 !important;border-color:#D97038 !important;fill:#D97038 !important}#bootstrap-theme .chart-color-bg-16{background:#D97038 !important;fill:#D97038 !important}#bootstrap-theme .chart-color-border-16{border-color:#D97038 !important}#bootstrap-theme .chart-color-stroke-16{stroke:#D97038 !important}#bootstrap-theme .chart-color-44{background:#D97038 !important;border-color:#D97038 !important;fill:#D97038 !important}#bootstrap-theme .chart-color-bg-44{background:#D97038 !important;fill:#D97038 !important}#bootstrap-theme .chart-color-border-44{border-color:#D97038 !important}#bootstrap-theme .chart-color-stroke-44{stroke:#D97038 !important}#bootstrap-theme .chart-color-72{background:#D97038 !important;border-color:#D97038 !important;fill:#D97038 !important}#bootstrap-theme .chart-color-bg-72{background:#D97038 !important;fill:#D97038 !important}#bootstrap-theme .chart-color-border-72{border-color:#D97038 !important}#bootstrap-theme .chart-color-stroke-72{stroke:#D97038 !important}#bootstrap-theme .chart-color-100{background:#D97038 !important;border-color:#D97038 !important;fill:#D97038 !important}#bootstrap-theme .chart-color-bg-100{background:#D97038 !important;fill:#D97038 !important}#bootstrap-theme .chart-color-border-100{border-color:#D97038 !important}#bootstrap-theme .chart-color-stroke-100{stroke:#D97038 !important}#bootstrap-theme .chart-color-128{background:#D97038 !important;border-color:#D97038 !important;fill:#D97038 !important}#bootstrap-theme .chart-color-bg-128{background:#D97038 !important;fill:#D97038 !important}#bootstrap-theme .chart-color-border-128{border-color:#D97038 !important}#bootstrap-theme .chart-color-stroke-128{stroke:#D97038 !important}#bootstrap-theme .chart-color-17{background:#4F944A !important;border-color:#4F944A !important;fill:#4F944A !important}#bootstrap-theme .chart-color-bg-17{background:#4F944A !important;fill:#4F944A !important}#bootstrap-theme .chart-color-border-17{border-color:#4F944A !important}#bootstrap-theme .chart-color-stroke-17{stroke:#4F944A !important}#bootstrap-theme .chart-color-45{background:#4F944A !important;border-color:#4F944A !important;fill:#4F944A !important}#bootstrap-theme .chart-color-bg-45{background:#4F944A !important;fill:#4F944A !important}#bootstrap-theme .chart-color-border-45{border-color:#4F944A !important}#bootstrap-theme .chart-color-stroke-45{stroke:#4F944A !important}#bootstrap-theme .chart-color-73{background:#4F944A !important;border-color:#4F944A !important;fill:#4F944A !important}#bootstrap-theme .chart-color-bg-73{background:#4F944A !important;fill:#4F944A !important}#bootstrap-theme .chart-color-border-73{border-color:#4F944A !important}#bootstrap-theme .chart-color-stroke-73{stroke:#4F944A !important}#bootstrap-theme .chart-color-101{background:#4F944A !important;border-color:#4F944A !important;fill:#4F944A !important}#bootstrap-theme .chart-color-bg-101{background:#4F944A !important;fill:#4F944A !important}#bootstrap-theme .chart-color-border-101{border-color:#4F944A !important}#bootstrap-theme .chart-color-stroke-101{stroke:#4F944A !important}#bootstrap-theme .chart-color-129{background:#4F944A !important;border-color:#4F944A !important;fill:#4F944A !important}#bootstrap-theme .chart-color-bg-129{background:#4F944A !important;fill:#4F944A !important}#bootstrap-theme .chart-color-border-129{border-color:#4F944A !important}#bootstrap-theme .chart-color-stroke-129{stroke:#4F944A !important}#bootstrap-theme .chart-color-18{background:#995978 !important;border-color:#995978 !important;fill:#995978 !important}#bootstrap-theme .chart-color-bg-18{background:#995978 !important;fill:#995978 !important}#bootstrap-theme .chart-color-border-18{border-color:#995978 !important}#bootstrap-theme .chart-color-stroke-18{stroke:#995978 !important}#bootstrap-theme .chart-color-46{background:#995978 !important;border-color:#995978 !important;fill:#995978 !important}#bootstrap-theme .chart-color-bg-46{background:#995978 !important;fill:#995978 !important}#bootstrap-theme .chart-color-border-46{border-color:#995978 !important}#bootstrap-theme .chart-color-stroke-46{stroke:#995978 !important}#bootstrap-theme .chart-color-74{background:#995978 !important;border-color:#995978 !important;fill:#995978 !important}#bootstrap-theme .chart-color-bg-74{background:#995978 !important;fill:#995978 !important}#bootstrap-theme .chart-color-border-74{border-color:#995978 !important}#bootstrap-theme .chart-color-stroke-74{stroke:#995978 !important}#bootstrap-theme .chart-color-102{background:#995978 !important;border-color:#995978 !important;fill:#995978 !important}#bootstrap-theme .chart-color-bg-102{background:#995978 !important;fill:#995978 !important}#bootstrap-theme .chart-color-border-102{border-color:#995978 !important}#bootstrap-theme .chart-color-stroke-102{stroke:#995978 !important}#bootstrap-theme .chart-color-130{background:#995978 !important;border-color:#995978 !important;fill:#995978 !important}#bootstrap-theme .chart-color-bg-130{background:#995978 !important;fill:#995978 !important}#bootstrap-theme .chart-color-border-130{border-color:#995978 !important}#bootstrap-theme .chart-color-stroke-130{stroke:#995978 !important}#bootstrap-theme .chart-color-19{background:#5F3D76 !important;border-color:#5F3D76 !important;fill:#5F3D76 !important}#bootstrap-theme .chart-color-bg-19{background:#5F3D76 !important;fill:#5F3D76 !important}#bootstrap-theme .chart-color-border-19{border-color:#5F3D76 !important}#bootstrap-theme .chart-color-stroke-19{stroke:#5F3D76 !important}#bootstrap-theme .chart-color-47{background:#5F3D76 !important;border-color:#5F3D76 !important;fill:#5F3D76 !important}#bootstrap-theme .chart-color-bg-47{background:#5F3D76 !important;fill:#5F3D76 !important}#bootstrap-theme .chart-color-border-47{border-color:#5F3D76 !important}#bootstrap-theme .chart-color-stroke-47{stroke:#5F3D76 !important}#bootstrap-theme .chart-color-75{background:#5F3D76 !important;border-color:#5F3D76 !important;fill:#5F3D76 !important}#bootstrap-theme .chart-color-bg-75{background:#5F3D76 !important;fill:#5F3D76 !important}#bootstrap-theme .chart-color-border-75{border-color:#5F3D76 !important}#bootstrap-theme .chart-color-stroke-75{stroke:#5F3D76 !important}#bootstrap-theme .chart-color-103{background:#5F3D76 !important;border-color:#5F3D76 !important;fill:#5F3D76 !important}#bootstrap-theme .chart-color-bg-103{background:#5F3D76 !important;fill:#5F3D76 !important}#bootstrap-theme .chart-color-border-103{border-color:#5F3D76 !important}#bootstrap-theme .chart-color-stroke-103{stroke:#5F3D76 !important}#bootstrap-theme .chart-color-131{background:#5F3D76 !important;border-color:#5F3D76 !important;fill:#5F3D76 !important}#bootstrap-theme .chart-color-bg-131{background:#5F3D76 !important;fill:#5F3D76 !important}#bootstrap-theme .chart-color-border-131{border-color:#5F3D76 !important}#bootstrap-theme .chart-color-stroke-131{stroke:#5F3D76 !important}#bootstrap-theme .chart-color-20{background:#147E99 !important;border-color:#147E99 !important;fill:#147E99 !important}#bootstrap-theme .chart-color-bg-20{background:#147E99 !important;fill:#147E99 !important}#bootstrap-theme .chart-color-border-20{border-color:#147E99 !important}#bootstrap-theme .chart-color-stroke-20{stroke:#147E99 !important}#bootstrap-theme .chart-color-48{background:#147E99 !important;border-color:#147E99 !important;fill:#147E99 !important}#bootstrap-theme .chart-color-bg-48{background:#147E99 !important;fill:#147E99 !important}#bootstrap-theme .chart-color-border-48{border-color:#147E99 !important}#bootstrap-theme .chart-color-stroke-48{stroke:#147E99 !important}#bootstrap-theme .chart-color-76{background:#147E99 !important;border-color:#147E99 !important;fill:#147E99 !important}#bootstrap-theme .chart-color-bg-76{background:#147E99 !important;fill:#147E99 !important}#bootstrap-theme .chart-color-border-76{border-color:#147E99 !important}#bootstrap-theme .chart-color-stroke-76{stroke:#147E99 !important}#bootstrap-theme .chart-color-104{background:#147E99 !important;border-color:#147E99 !important;fill:#147E99 !important}#bootstrap-theme .chart-color-bg-104{background:#147E99 !important;fill:#147E99 !important}#bootstrap-theme .chart-color-border-104{border-color:#147E99 !important}#bootstrap-theme .chart-color-stroke-104{stroke:#147E99 !important}#bootstrap-theme .chart-color-132{background:#147E99 !important;border-color:#147E99 !important;fill:#147E99 !important}#bootstrap-theme .chart-color-bg-132{background:#147E99 !important;fill:#147E99 !important}#bootstrap-theme .chart-color-border-132{border-color:#147E99 !important}#bootstrap-theme .chart-color-stroke-132{stroke:#147E99 !important}#bootstrap-theme .chart-color-21{background:#151D2C !important;border-color:#151D2C !important;fill:#151D2C !important}#bootstrap-theme .chart-color-bg-21{background:#151D2C !important;fill:#151D2C !important}#bootstrap-theme .chart-color-border-21{border-color:#151D2C !important}#bootstrap-theme .chart-color-stroke-21{stroke:#151D2C !important}#bootstrap-theme .chart-color-49{background:#151D2C !important;border-color:#151D2C !important;fill:#151D2C !important}#bootstrap-theme .chart-color-bg-49{background:#151D2C !important;fill:#151D2C !important}#bootstrap-theme .chart-color-border-49{border-color:#151D2C !important}#bootstrap-theme .chart-color-stroke-49{stroke:#151D2C !important}#bootstrap-theme .chart-color-77{background:#151D2C !important;border-color:#151D2C !important;fill:#151D2C !important}#bootstrap-theme .chart-color-bg-77{background:#151D2C !important;fill:#151D2C !important}#bootstrap-theme .chart-color-border-77{border-color:#151D2C !important}#bootstrap-theme .chart-color-stroke-77{stroke:#151D2C !important}#bootstrap-theme .chart-color-105{background:#151D2C !important;border-color:#151D2C !important;fill:#151D2C !important}#bootstrap-theme .chart-color-bg-105{background:#151D2C !important;fill:#151D2C !important}#bootstrap-theme .chart-color-border-105{border-color:#151D2C !important}#bootstrap-theme .chart-color-stroke-105{stroke:#151D2C !important}#bootstrap-theme .chart-color-133{background:#151D2C !important;border-color:#151D2C !important;fill:#151D2C !important}#bootstrap-theme .chart-color-bg-133{background:#151D2C !important;fill:#151D2C !important}#bootstrap-theme .chart-color-border-133{border-color:#151D2C !important}#bootstrap-theme .chart-color-stroke-133{stroke:#151D2C !important}#bootstrap-theme .chart-color-22{background:#B32E2E !important;border-color:#B32E2E !important;fill:#B32E2E !important}#bootstrap-theme .chart-color-bg-22{background:#B32E2E !important;fill:#B32E2E !important}#bootstrap-theme .chart-color-border-22{border-color:#B32E2E !important}#bootstrap-theme .chart-color-stroke-22{stroke:#B32E2E !important}#bootstrap-theme .chart-color-50{background:#B32E2E !important;border-color:#B32E2E !important;fill:#B32E2E !important}#bootstrap-theme .chart-color-bg-50{background:#B32E2E !important;fill:#B32E2E !important}#bootstrap-theme .chart-color-border-50{border-color:#B32E2E !important}#bootstrap-theme .chart-color-stroke-50{stroke:#B32E2E !important}#bootstrap-theme .chart-color-78{background:#B32E2E !important;border-color:#B32E2E !important;fill:#B32E2E !important}#bootstrap-theme .chart-color-bg-78{background:#B32E2E !important;fill:#B32E2E !important}#bootstrap-theme .chart-color-border-78{border-color:#B32E2E !important}#bootstrap-theme .chart-color-stroke-78{stroke:#B32E2E !important}#bootstrap-theme .chart-color-106{background:#B32E2E !important;border-color:#B32E2E !important;fill:#B32E2E !important}#bootstrap-theme .chart-color-bg-106{background:#B32E2E !important;fill:#B32E2E !important}#bootstrap-theme .chart-color-border-106{border-color:#B32E2E !important}#bootstrap-theme .chart-color-stroke-106{stroke:#B32E2E !important}#bootstrap-theme .chart-color-134{background:#B32E2E !important;border-color:#B32E2E !important;fill:#B32E2E !important}#bootstrap-theme .chart-color-bg-134{background:#B32E2E !important;fill:#B32E2E !important}#bootstrap-theme .chart-color-border-134{border-color:#B32E2E !important}#bootstrap-theme .chart-color-stroke-134{stroke:#B32E2E !important}#bootstrap-theme .chart-color-23{background:#BF561D !important;border-color:#BF561D !important;fill:#BF561D !important}#bootstrap-theme .chart-color-bg-23{background:#BF561D !important;fill:#BF561D !important}#bootstrap-theme .chart-color-border-23{border-color:#BF561D !important}#bootstrap-theme .chart-color-stroke-23{stroke:#BF561D !important}#bootstrap-theme .chart-color-51{background:#BF561D !important;border-color:#BF561D !important;fill:#BF561D !important}#bootstrap-theme .chart-color-bg-51{background:#BF561D !important;fill:#BF561D !important}#bootstrap-theme .chart-color-border-51{border-color:#BF561D !important}#bootstrap-theme .chart-color-stroke-51{stroke:#BF561D !important}#bootstrap-theme .chart-color-79{background:#BF561D !important;border-color:#BF561D !important;fill:#BF561D !important}#bootstrap-theme .chart-color-bg-79{background:#BF561D !important;fill:#BF561D !important}#bootstrap-theme .chart-color-border-79{border-color:#BF561D !important}#bootstrap-theme .chart-color-stroke-79{stroke:#BF561D !important}#bootstrap-theme .chart-color-107{background:#BF561D !important;border-color:#BF561D !important;fill:#BF561D !important}#bootstrap-theme .chart-color-bg-107{background:#BF561D !important;fill:#BF561D !important}#bootstrap-theme .chart-color-border-107{border-color:#BF561D !important}#bootstrap-theme .chart-color-stroke-107{stroke:#BF561D !important}#bootstrap-theme .chart-color-135{background:#BF561D !important;border-color:#BF561D !important;fill:#BF561D !important}#bootstrap-theme .chart-color-bg-135{background:#BF561D !important;fill:#BF561D !important}#bootstrap-theme .chart-color-border-135{border-color:#BF561D !important}#bootstrap-theme .chart-color-stroke-135{stroke:#BF561D !important}#bootstrap-theme .chart-color-24{background:#377A31 !important;border-color:#377A31 !important;fill:#377A31 !important}#bootstrap-theme .chart-color-bg-24{background:#377A31 !important;fill:#377A31 !important}#bootstrap-theme .chart-color-border-24{border-color:#377A31 !important}#bootstrap-theme .chart-color-stroke-24{stroke:#377A31 !important}#bootstrap-theme .chart-color-52{background:#377A31 !important;border-color:#377A31 !important;fill:#377A31 !important}#bootstrap-theme .chart-color-bg-52{background:#377A31 !important;fill:#377A31 !important}#bootstrap-theme .chart-color-border-52{border-color:#377A31 !important}#bootstrap-theme .chart-color-stroke-52{stroke:#377A31 !important}#bootstrap-theme .chart-color-80{background:#377A31 !important;border-color:#377A31 !important;fill:#377A31 !important}#bootstrap-theme .chart-color-bg-80{background:#377A31 !important;fill:#377A31 !important}#bootstrap-theme .chart-color-border-80{border-color:#377A31 !important}#bootstrap-theme .chart-color-stroke-80{stroke:#377A31 !important}#bootstrap-theme .chart-color-108{background:#377A31 !important;border-color:#377A31 !important;fill:#377A31 !important}#bootstrap-theme .chart-color-bg-108{background:#377A31 !important;fill:#377A31 !important}#bootstrap-theme .chart-color-border-108{border-color:#377A31 !important}#bootstrap-theme .chart-color-stroke-108{stroke:#377A31 !important}#bootstrap-theme .chart-color-136{background:#377A31 !important;border-color:#377A31 !important;fill:#377A31 !important}#bootstrap-theme .chart-color-bg-136{background:#377A31 !important;fill:#377A31 !important}#bootstrap-theme .chart-color-border-136{border-color:#377A31 !important}#bootstrap-theme .chart-color-stroke-136{stroke:#377A31 !important}#bootstrap-theme .chart-color-25{background:#803D5E !important;border-color:#803D5E !important;fill:#803D5E !important}#bootstrap-theme .chart-color-bg-25{background:#803D5E !important;fill:#803D5E !important}#bootstrap-theme .chart-color-border-25{border-color:#803D5E !important}#bootstrap-theme .chart-color-stroke-25{stroke:#803D5E !important}#bootstrap-theme .chart-color-53{background:#803D5E !important;border-color:#803D5E !important;fill:#803D5E !important}#bootstrap-theme .chart-color-bg-53{background:#803D5E !important;fill:#803D5E !important}#bootstrap-theme .chart-color-border-53{border-color:#803D5E !important}#bootstrap-theme .chart-color-stroke-53{stroke:#803D5E !important}#bootstrap-theme .chart-color-81{background:#803D5E !important;border-color:#803D5E !important;fill:#803D5E !important}#bootstrap-theme .chart-color-bg-81{background:#803D5E !important;fill:#803D5E !important}#bootstrap-theme .chart-color-border-81{border-color:#803D5E !important}#bootstrap-theme .chart-color-stroke-81{stroke:#803D5E !important}#bootstrap-theme .chart-color-109{background:#803D5E !important;border-color:#803D5E !important;fill:#803D5E !important}#bootstrap-theme .chart-color-bg-109{background:#803D5E !important;fill:#803D5E !important}#bootstrap-theme .chart-color-border-109{border-color:#803D5E !important}#bootstrap-theme .chart-color-stroke-109{stroke:#803D5E !important}#bootstrap-theme .chart-color-137{background:#803D5E !important;border-color:#803D5E !important;fill:#803D5E !important}#bootstrap-theme .chart-color-bg-137{background:#803D5E !important;fill:#803D5E !important}#bootstrap-theme .chart-color-border-137{border-color:#803D5E !important}#bootstrap-theme .chart-color-stroke-137{stroke:#803D5E !important}#bootstrap-theme .chart-color-26{background:#47275C !important;border-color:#47275C !important;fill:#47275C !important}#bootstrap-theme .chart-color-bg-26{background:#47275C !important;fill:#47275C !important}#bootstrap-theme .chart-color-border-26{border-color:#47275C !important}#bootstrap-theme .chart-color-stroke-26{stroke:#47275C !important}#bootstrap-theme .chart-color-54{background:#47275C !important;border-color:#47275C !important;fill:#47275C !important}#bootstrap-theme .chart-color-bg-54{background:#47275C !important;fill:#47275C !important}#bootstrap-theme .chart-color-border-54{border-color:#47275C !important}#bootstrap-theme .chart-color-stroke-54{stroke:#47275C !important}#bootstrap-theme .chart-color-82{background:#47275C !important;border-color:#47275C !important;fill:#47275C !important}#bootstrap-theme .chart-color-bg-82{background:#47275C !important;fill:#47275C !important}#bootstrap-theme .chart-color-border-82{border-color:#47275C !important}#bootstrap-theme .chart-color-stroke-82{stroke:#47275C !important}#bootstrap-theme .chart-color-110{background:#47275C !important;border-color:#47275C !important;fill:#47275C !important}#bootstrap-theme .chart-color-bg-110{background:#47275C !important;fill:#47275C !important}#bootstrap-theme .chart-color-border-110{border-color:#47275C !important}#bootstrap-theme .chart-color-stroke-110{stroke:#47275C !important}#bootstrap-theme .chart-color-138{background:#47275C !important;border-color:#47275C !important;fill:#47275C !important}#bootstrap-theme .chart-color-bg-138{background:#47275C !important;fill:#47275C !important}#bootstrap-theme .chart-color-border-138{border-color:#47275C !important}#bootstrap-theme .chart-color-stroke-138{stroke:#47275C !important}#bootstrap-theme .chart-color-27{background:#056780 !important;border-color:#056780 !important;fill:#056780 !important}#bootstrap-theme .chart-color-bg-27{background:#056780 !important;fill:#056780 !important}#bootstrap-theme .chart-color-border-27{border-color:#056780 !important}#bootstrap-theme .chart-color-stroke-27{stroke:#056780 !important}#bootstrap-theme .chart-color-55{background:#056780 !important;border-color:#056780 !important;fill:#056780 !important}#bootstrap-theme .chart-color-bg-55{background:#056780 !important;fill:#056780 !important}#bootstrap-theme .chart-color-border-55{border-color:#056780 !important}#bootstrap-theme .chart-color-stroke-55{stroke:#056780 !important}#bootstrap-theme .chart-color-83{background:#056780 !important;border-color:#056780 !important;fill:#056780 !important}#bootstrap-theme .chart-color-bg-83{background:#056780 !important;fill:#056780 !important}#bootstrap-theme .chart-color-border-83{border-color:#056780 !important}#bootstrap-theme .chart-color-stroke-83{stroke:#056780 !important}#bootstrap-theme .chart-color-111{background:#056780 !important;border-color:#056780 !important;fill:#056780 !important}#bootstrap-theme .chart-color-bg-111{background:#056780 !important;fill:#056780 !important}#bootstrap-theme .chart-color-border-111{border-color:#056780 !important}#bootstrap-theme .chart-color-stroke-111{stroke:#056780 !important}#bootstrap-theme .chart-color-139{background:#056780 !important;border-color:#056780 !important;fill:#056780 !important}#bootstrap-theme .chart-color-bg-139{background:#056780 !important;fill:#056780 !important}#bootstrap-theme .chart-color-border-139{border-color:#056780 !important}#bootstrap-theme .chart-color-stroke-139{stroke:#056780 !important}#bootstrap-theme .crm_custom-select{background:#fff;display:inline-block;position:relative}#bootstrap-theme .crm_custom-select>select{background:transparent;border:1px solid #c2cfd8;height:30px;padding:4px 44px 4px 12px;position:relative;width:100%;z-index:2;-moz-appearance:none;-webkit-appearance:none;-webkit-border-radius:0px}#bootstrap-theme .crm_custom-select>select::-ms-expand{display:none}#bootstrap-theme .crm_custom-select>select:disabled+.crm_custom-select__arrow{z-index:2}#bootstrap-theme .crm_custom-select>select:focus+.crm_custom-select__arrow{border-color:#66afe9}#bootstrap-theme .ie9 .crm_custom-select>select{padding-right:10px}#bootstrap-theme .ie9 .crm_custom-select .crm_custom-select__arrow{display:none}#bootstrap-theme .crm_custom-select--full{display:block;width:auto}#bootstrap-theme .crm_custom-select--transparent{background:transparent}#bootstrap-theme .crm_custom-select--transparent option{background:#fff}#bootstrap-theme .crm_custom-select__arrow{border-left:1px solid #c2cfd8;bottom:0;display:inline-block;line-height:31px;position:absolute;right:0;text-align:center;top:0;width:32px;z-index:1}#bootstrap-theme .crm_custom-select__arrow:before{content:'\f0d7';color:#4d4d69;font-family:"FontAwesome";font-style:normal;text-rendering:auto;-webkit-font-smoothing:antialiased}#bootstrap-theme .has-error .crm_custom-select__arrow{border-color:#cf3458 !important}#bootstrap-theme .has-feedback>.crm_custom-select>select{padding-right:54px}#bootstrap-theme .has-feedback>.crm_custom-select+.form-control-feedback{right:27px !important}#bootstrap-theme .crm-editable-enabled{display:block;position:relative}#bootstrap-theme .crm-editable-enabled .crm-i{opacity:1}#bootstrap-theme .crm-editable-enabled .crm-editable-form button{background-color:#f3f6f7;border:1px solid #c2cfd8;border-radius:0 0 0 2px;bottom:-29px;color:#0071bd;height:30px;left:auto;outline:none;padding:1px 6px;right:32px}#bootstrap-theme .crm-editable-enabled .crm-editable-form button .crm-i{opacity:1}#bootstrap-theme .crm-editable-enabled .crm-editable-form button[type='cancel']{border-left:0;border-left:0;border-radius:0 0 2px;color:#cf3458;right:0}#bootstrap-theme .crm-editable-enabled .crm-editable-form select{background:#fff;border:1px solid #c2cfd8;border-radius:2px 2px 0;outline:none;width:100%}#bootstrap-theme .crm-editable-enabled .crm-editable-form input{border:1px solid #c2cfd8;border-radius:2px 2px 0 2px;display:block;outline:none;width:100% !important}#bootstrap-theme .crm-editable-enabled .crm-editable-form textarea{border:1px solid #c2cfd8;border-radius:2px 2px 0 2px;display:block;outline:none;width:100% !important}#bootstrap-theme .crm-editable-enabled:not(.crm-editable-editing):hover{border:1px solid #c2cfd8;border-radius:2px;padding:1px 30px 1px 3px}#bootstrap-theme .crm-editable-enabled:not(.crm-editable-editing):hover::before{background-color:#e8eef0;border-left:1px solid #c2cfd8;border-radius:0 2px 2px 0;bottom:0;content:'';height:100%;position:absolute;right:0;text-align:center;top:0;vertical-align:middle;width:30px}#bootstrap-theme .crm-editable-enabled:not(.crm-editable-editing):hover::after{font-family:'FontAwesome';font-style:normal;text-rendering:auto;font-size:13px;content:"";color:#4d4d69;position:absolute;right:0;text-align:center;top:calc(50% - 9px);width:30px}#bootstrap-theme .crm-editable-enabled[crm-editable-tab-title].crm-editable-editing{border:1px solid #c2cfd8}#bootstrap-theme .crm-editable-enabled[crm-editable-tab-title]:not(.crm-editable-editing):hover{padding:1px 3px}#bootstrap-theme .crm-editable-enabled[crm-editable-tab-title]:not(.crm-editable-editing):hover::before{display:none}#bootstrap-theme .crm-editable-enabled[crm-editable-tab-title]:not(.crm-editable-editing):hover::after{display:none}#bootstrap-theme .crm_notification{-webkit-box-shadow:0 3px 18px 0 rgba(48,40,40,0.25);box-shadow:0 3px 18px 0 rgba(48,40,40,0.25);background:#fff;border-radius:2px;padding:20px;width:360px}#bootstrap-theme .crm_notification+.crm_notification{margin-top:20px}#bootstrap-theme .crm_notification__close{float:right}#bootstrap-theme .crm_notification__close:before{font-family:'FontAwesome';font-style:normal;text-rendering:auto;font-size:1em;content:"";color:#4d4d69;color:#464354}#bootstrap-theme .crm_notification__header{margin-bottom:10px}#bootstrap-theme .crm_notification__heading>.crm_notification__title{display:inline-block;margin:0 0 0 5px}#bootstrap-theme .crm_notification__icon:before{font-family:'FontAwesome';font-style:normal;text-rendering:auto;font-size:1em;color:#4d4d69}#bootstrap-theme .crm_notification__title{font-size:13px}#bootstrap-theme .crm_notification--danger .crm_notification__icon:before{content:"";color:#cf3458}#bootstrap-theme .crm_notification--info .crm_notification__icon:before{content:"";color:#0071bd}#bootstrap-theme .crm_notification--success .crm_notification__icon:before{content:"";color:#44cb7e}@media (min-width: 992px){#bootstrap-theme .crm_page__content{overflow:hidden}#bootstrap-theme .crm_page__content>.row>[class*="col-"]:first-child{max-width:186px}#bootstrap-theme .crm_page__content .crm_page__main{margin:0 auto;max-width:1004px}#bootstrap-theme .crm_page__content .crm_page__sidebar{margin-bottom:-99999px;padding-bottom:99999px}}@media (min-width: 1240px){#bootstrap-theme .crm_page__content>.row>[class*="col-"]:last-child{float:none;margin-left:170px;overflow:hidden;width:auto}}#bootstrap-theme .crm_page__footer{text-align:center}#bootstrap-theme .crm_page__footer>.crm_page__footer__logo{display:inline-block;margin-bottom:15px}#bootstrap-theme .crm_page__footer__logo{color:#464354;font-size:1.6923076923em}#bootstrap-theme .crm_page__main{padding:16px 16px 50px 16px}#bootstrap-theme .crm_page__main>.crm_page__footer{margin-top:50px}@media (min-width: 992px){#bootstrap-theme .crm_page__main{padding-left:0}}@media (min-width: 1240px){#bootstrap-theme .crm_page__main{padding-right:0}}#bootstrap-theme .crm_page__sidebar{background:#fff}#bootstrap-theme .crm_page__topbar{background:#222831;color:#fff}#bootstrap-theme .crm_page__topbar .breadcrumb{background:transparent;margin-bottom:0;padding:15px}#bootstrap-theme .crm_page__topbar .breadcrumb>li{color:#fff}#bootstrap-theme .crm_page__topbar .breadcrumb>li:before{color:#fff}#bootstrap-theme .crm_page__topbar .breadcrumb>li>a{color:#fff}#bootstrap-theme .crm_page__topbar__link{display:inline-block;padding:15px}#bootstrap-theme .crm_page__topbar__link>a{color:#fff !important}#bootstrap-theme .crm_show-more__button{margin-top:30px}#bootstrap-theme .crm_spinner{background:rgba(255,255,255,0.5);animation:fadeIn 0.3s;min-height:100px;position:relative;text-align:center;width:100%;margin-bottom:15px}#bootstrap-theme .crm_spinner__img{background-image:url("data:image/gif;base64,R0lGODlhIAAgAOfzAAABAAACAAEEAAIFAQQHAgUIBAcJBQgLBwoMCAsNCgwPCw4QDA8RDRASDxETEBIUERMUEhQVExUWFBYYFRcYFhgZFxkbGBocGRscGhwdGx0fHB4fHR8gHiAhHyEjICIkISMkIiQlIyUnJCYoJScoJigpJykrKCosKSstKiwtKy0uLC4vLS8xLjAyLzEzMDIzMTM0MjQ2MzU3NDY4NTc5Njg5Nzk6ODo7OTs9Ojw+Oz0/PD5APT9APkBBP0FCQEFDQUNFQkRGQ0VHREZIRUdJRkhJR0lKSEpLSUpMSkxOS01PTE5QTU9RTlBST1FTUFJUUVNUUlRVU1VWVFZXVVZYVVdZVllbWFpcWVtdWlxeW11fXF5gXV9hXmBiX2FjYGJkYWNlYmRlY2VmZGZnZWdoZmhpZ2hqZ2lraGpsaWttamxua21vbG5wbW9xbnFzcHJ0cXN1cnR2c3V3dHZ4dXd5dnh6d3l7eHp8eXt9enx+e31/fH6AfX+BfoCCf4GDgIKEgYOFgoSGg4WHhIaIhYeJhoiKh4mLiIqMiYuNioyOi42PjI6QjY+RjpCSj5GTkJKUkZOVkpSWk5WXlJaYlZeZlpial5qbmJudmZyem52fnJ6gnZ+hnqCin6GjoKKkoaOloqSmo6WnpKaopaeppqiqp6mrqKqsqautqqyuq62vrK6wrbCyrrGzr7K0sbO1srS2s7W3tLa4tbe5tri6t7m7uLq8ubu9ury+u72/vL7BvcDCvsHDv8LEwcPFwsTGw8XHxMbIxcfJxsjKx8nLyMrMycvOys3Py87QzM/RztDSz9HT0NLU0dPV0tTW09XX1NbY1dja1tnb19rc2dvd2tze293f3N7g3d/h3uDi3+Hk4OPl4eTm4+Xn5Obo5efp5ujq5+nr6Ors6evu6u3v6+7w7e/x7vDy7/Hz8PL08fP18vT38/b49Pf59vj69/n7+Pr8+fv9+vz/+/7//P///////////////////////////////////////////////////yH/C05FVFNDQVBFMi4wAwEAAAAh+QQBBQD/ACwAAAAAIAAgAAAI/gDlCRxIUCA8gcJ+HSzIsCFDbcbAqUIQQJTDiw5z4XrVI0AAB+UwihQoLhevPQFGKAggZqTIaLmOhQgQp1AACL5cXhSmC04AFKSCjQig5J1OhuiAqSJgwNI1Xp4CIBh1tGC3XzcC+DgnDxovLAGAfKs68NofqbQGUiNFIYAmsvLe9QIRwEpBa20CXOhGlt2ZAAbEMTzmIoAbssA6BEDkkBLFXkfdyQlgAqORACv4uix2IYAsjLsYBLjjbeQ7LwGkpBP5JUCHVtpE5pLaamQ5BwGqBMuGUUWAJ4JHptJrqdc1h4sCUAjFzuU7GwGo2MJ1vCA4AgGuZDPq8hjgTrtwsPEmqCUABlvVXaoDE6CJxl5cBdZaEKAQsXCmzWmrFgpCAD+8MNOOQOo40R4xyohEjjXMHBOML8CIEUAD5Qwo0CjYtZHGHI404uGHjRhChxtsqJHGiW4EIscDAbRBkCUexSjjjDTSGAVB4ATixRFHVPHEEUYEeYQSTljhxRdIJqlkGKUxRMwwywQTDDHMRNNNfHDJg04utvRyjDXenONOlgWZ4006FpKp5ppstummTgEBACH5BAEFAP8ALAAAAAAgACAAAAj+AOUJHEiw4DlzAtW5K8iwYcNwvGiBs+WCDkKHGAu6W2Yr2CAHAQwEy0hSoDdczfIgCBngU8mM74T9ItQgQA07Abyoe+nQmi5BIGPsekRABDmeDN3pMrTSyDldn0QEgIa0YLNDBgIcSSfPmiwiAQhVHXgO0Eoo4gSyO1YmwI6xAgUxCPDkG8FviUAurGqp5hB0GnV5CNCqaisJAWw4POcjQBakuiAE0JExEAELPHPVrJEtozEFAUaSTEXBZq+SHwLEIRkKsYxW50qOCRDDrsNQEQLAgEXtJaoAFWhxZRgrN4pcwWKXhBcAAaDOBX1VmMxrlzWkja0IuyhwXY8AExS7dcpVlZFNWs0IuqtDIEAADUYAsYJOkloAD5xygSN4zhegIKUFwMAJRggCTEbwcGCAIr/8UlA4ucRyzCxplOBecxhMoUk04XjTjTYgZjNFAG78gks0BHVzSy4s7tKLLIAMscCFAXzAhSW12IILLoEEkAMruTCj3jXQFGkkNddcA4seO3AAWnM+6NGKKAQ48Eo07cDljSpzFEHChSuAVAtcGilTyh5H5BbALGQ6BI4zsLQyXJt01mnnnW0GBAAh+QQBBQD/ACwAAAAAIAAgAAAI/gDlCRxIsCBBeAYTKlxIjlg1hAsjJgTXy1Ywb6QsgZPI0ZsvXcESHSEQABDHiB594dKCIIDLLicVggO2C84Cl0LqBPgS0+C4XYs+uPQgKFihnT0JjtOUxGWHOuSu+YKDNKk8Y2IcBHiQxpjAbMHSVI2p7hAJl09sESRXTCzPmLhekAShKl1Bd8vcnixHxWUAOe8URlMzViE6Ri4J2KgVURybwgXPsWrhkoUfaBLdtYE8sBYUlyDUwIrWjuMczlcZBNBw55MvZqU5EgpwJSEvlxIEAVsW+CTiJwnfSboZYIa1no0CLFmXkN0rIFoD5Pl2MvkRbwbhHcNlLBQOAwFMrnQaJzG5EWoJq+mqFWyXnhQuj4iKaJ6Z3YLvznlzFgwXKTUKBLDAEsEoZF4xGykEjzvoZGPMKU0F0EAY1xhkXjAVngRPObOY4BICfwRjDToCJcdEMMy4Y1UmQgVwgiWxAGPNHwFUccwv9yUFzhwguBQFJsKItcQxtpBnlUDFEBZABWqQEcARwNRi5JHysNPLES5BEIAW7oQDEZUCtXPKBC6FAeZCbUSB3ZlstklQQAAh+QQBBQD/ACwAAAAAIAAgAAAI/gDlCRxIsKDBgwgTKlzI8CC8b93cNZw4jpmuW9kmLnQXrReuXsGYCQv2TqPBbr527fKFyMcCAgFmmRw4zherSF5MBNgJM4Aqk+yiqYrTo8HOABhUDGGDgMGxhuB8RTqz4ugCHWAW+YIWzFIAId4UMpP05YaGox+6WNKVraS8breuBLjjlqC7WmhSUDBwNIWaX93OGdRm60OAUAXhaeq5M0IRQbCuwUuoTVUAD8EKqpMRgECNOJl8BWvGbqG3OQGGoCv4jhIBCZOC9ToGDmqOAGoOhpMTwMCecXUXajOgoJTBc79qxQmAwJLGWgEuVDNYjlYuYXsCLIA0EU6AGwi7wnn85UZ7p4YxAsBJ2M5Zr19rAig4tbCaUVQLyR37lUY+/YSbGMAANAzB440xZ8jHSUJcBNBDRg25k80b8gkyWUHr2BAAHtSY5E4hzM2RzYUC+ZJBAKhEM5M8jjB3BzDhDOSaCLwQuGKLBvhRizHouCNGAF/sYuOKjRiQ4y668KKhKbkMORM8jRDg2zGLGCDBME2uSFAj8hUSSQA+2JKllgO1iEAHAaBRy5hkCtRib75Qw0w7bRL0iANMaFPnQcvEqFBAACH5BAEFAP8ALAAAAAAgACAAAAj+AOUJHEiwoMGDCBMqXMiwocOHECOaOxcxoTtvzXzp0jWu4sB357Id04VLFy+S4gyiG5arpcuXuGSJkqRI0SJGjCyBetQolq5yBFEFGEq0qNGjRvEQ5DSUDRsvWKJaqXJFDBw7d7JqtUMGi5YHAb4Q9HYjwJJgtWjNojWM2jh069i1m0uX3S9fbggESCnQWzA7BgJMGgYt3DuG7nKNQhFg0UB4xW4BKwsDYrdaYwKEYEdQmy5itBAQiPSQGScHAVgZ9HwsS4AV2hz+IhLACdDVu2JJCMCnYbpGASbUSui5T4AOxxh2sxAgy0JtsmgEUKNuoZwAF6AplzR0mEJvYN+pOKTWJAARdwnDBMCA3uEt5qEQ8poQwFLEN8GrqXRtw1vEcBsEkARFBNEylCftVGRJAAhswpc84wgRwBbBeCRPCwHM8Es4An0SQAWcWGPhMQzyEUw44VAQwBm3EOgRGwG8cIoyYASQAivBtOeRNh0EcEgkBBiACC/NwGOhQJkEcIIHAbQwjC2xHSlPN0AQZQkvu5gjpUCeBHbGOb0wk+CW7CBSBkXo6IhQQAAh+QQBBQD/ACwAAAAAIAAgAAAI/gDlCRxIsKDBgwgTKlzIsKHDhw2t1YLYMBoDAguOWAJHESEtAgEMBBjpIQ6wceneUXyHThwCA3agmKAwMgCCI490NdN2rmc5cuV+lnNHEFwuYDECwDkWa9KaIikQ1NTAI0wgTrl64aJFq1Y1gt1w9SIUQAg4a9m0VRPmSlKaFTURgNiBplOzY7+iEXR3DJevACvCHVTnDVqmKFIDEHCgwYebawW98eq1QcJEhfDkBZNzoqZiIuoIKts1JcAhiMrm+ABJ4RfBc70aBchCtGE6Yb0WSfVSeyA1VgRe6G0IrRYbkGlCF3yXqwYBXA3L5Yojks86hN7KBIDUkJickXqUwR+ENyqAlXMLtc0ZuSbdQmgdIljDvGdkmHYMz2kJUEqhopFfPPSfF96MB4lIZfTG0CwOnPCLSgVJIpUa7j10DQwBzAJNQZuMtMU4HUURACDAoDOQKSNFMRxFiAQwxC/KCJTJSEXscl1HwDzAwC+/eCMJSEfQ0k1HA4UQACu4zCEVFbQcoyBFVwSQByEgqUFLLwUSKRAoAUgg1Ri65HKMlgOJA1IATcySiy7okSlQEhV8kU0vt6zo5jvDEJVNNBAyFBAAIfkEAQUA/wAsAAAAACAAIAAACP4A5QkcSLCgwYMIEypcWBAdqk3gGEocOCxAgBydJi5cVy6XxQAKchDTeDBdr12OApC5YtHAmHMkCZLTpatRgCu8RI0gEEBDqXQxBfbqVSpAF16+fM3xYPHILXQxlfEaFYBOOG3RnLHaUsGil1jl2k3slitSgDvuBLJD940WGIsOrMiilq3cQne4GJ0V23DZEbhoegULxqwbX4PEFu1NqCqDxQ2PfuXKpUsZPIPWFC1O6E5OA4tQXlH+Zc6guUSbFTqL4iCAhTajqh189yj1wlQ+LJawBNPgJ9sKwcHyMyMAgUAHXwFH2G2XsE0ULKY56PHNOobecuG2SCDOO+oBwKlAVehNFZwFARAEyZbQY5VxCqn9WWExR6qF7qkldAXE4gpH4jDkkRXCHKSNF60ZMIg1E3mExSzfEeRHawFIEU1aDQaAhSzhDLQLCBZlMEpQHm1BCzTyMLOFRRF4wUxQ8ni0xi+iHIJeA0J0og2MMQZgBhofWAREIrlYcxmMHj3A0wmawFLkkTDq8lEauexyi5E8ClQOHl94w8tk0UCZ5UDL/ILimAf1FlNAACH5BAEFAP8ALAAAAAAgACAAAAj+AOUJHEhQ3jt17woqXMhwYCMalhpKVPgOnLd0AQIYgARvosdzuXxBCtBAYyKPE8nVCrYkABU7GRWhbFiOlrYQARrtshJz5sJyt1pJIMBsly4mBAJM8lmwHC86BJLI61aMV5GMizoyleeUSABNAttlA/ZEo8yt5k6hCOCNoDpoXjQCcsf0XKIGJ7QSFPcmIxpwPtOtCSCHobu+AcwcM4fy25EAtiSOSTpGV7R1E6GBQKBtYpqMYGgB04aZYbAASch51BOAgBlbtop1S1gQnqYAgehOhCeo9Zxjt3RdU7gOS4BRM9kBylgm2K1oCstRuIDL57kwoLMtXBZARzOU7rrEBevlJKmhhYECaOm2e1yzWqMoGVoQYMEwhTEM/Onc0N0wSWo0gQICGQXABHsEnRPABqQMt9A1jjAxwgQFSvCEJbzwR5ApAdQAjDV6yaMLHSY4YECBJ+SxyzjohEiQcXP0Qo074mgSBYEFMpBEJ+fMBAECmigShgkFGhABCmK0shUxGVFQoAYvPFHHKg5udUxGCLRwBiGYtBJMNIxtJRA8vowSTCm9/JILMeLQJiZB5tSCiy7auPimQO5UA41ud/bp550BAQA7");background-repeat:no-repeat;bottom:0;display:inline-block;height:32px;left:0;margin:auto;position:absolute;right:0;top:0;width:32px}#bootstrap-theme .table.table-transparent{background-color:transparent;border:1px solid #d3dee2}#bootstrap-theme .table.table-transparent th{background-color:transparent}#bootstrap-theme .crm_wizard__body, #bootstrap-theme .crm_wizard__title{margin-bottom:30px}#bootstrap-theme .crm_wizard__title .crm_wizard__title__number{border:2px solid;border-radius:50px;display:inline-block;height:32px;line-height:28px;margin-right:5px;text-align:center;width:32px}#bootstrap-theme .crm_wizard__title .nav-pills{padding:0}#bootstrap-theme .crm_wizard__title .nav-pills a, #bootstrap-theme .crm_wizard__title .nav-pills a:active, #bootstrap-theme .crm_wizard__title .nav-pills a:hover{color:#0071bd;padding:15px 20px}#bootstrap-theme .crm_wizard__title .nav-pills li.active a{background:#f3f6f7;color:#0071bd;position:relative}#bootstrap-theme .crm_wizard__title .nav-pills li.active a:after, #bootstrap-theme .crm_wizard__title .nav-pills li.active a:before{border-color:transparent;border-style:solid;border-width:30px 0 30px 8px;bottom:0;content:'';height:100%;position:absolute;top:0;width:0}#bootstrap-theme .crm_wizard__title .nav-pills li.active a:after{border-left-color:#f3f6f7;right:-7px}#bootstrap-theme .crm_wizard__title .nav-pills li.active a:before{border-left-color:#fff;left:0}#bootstrap-theme .crm_wizard__title .nav-pills li.active:first-child a:before{display:none}#bootstrap-theme .crm_wizard__title .nav-pills li:not(.active) a{color:#464354}#bootstrap-theme .crm_wizard__title .nav-pills li:not(.active) a:after, #bootstrap-theme .crm_wizard__title .nav-pills li:not(.active) a:before{background:#f3f6f7;content:'';height:31px;position:absolute;right:-9px;width:1px}#bootstrap-theme .crm_wizard__title .nav-pills li:not(.active) a:after{-webkit-transform:skewX(-15deg);-ms-transform:skewX(-15deg);-moz-transform:skewX(-15deg);transform:skewX(-15deg);bottom:0}#bootstrap-theme .crm_wizard__title .nav-pills li:not(.active) a:before{-webkit-transform:skewX(15deg);-ms-transform:skewX(15deg);-moz-transform:skewX(15deg);transform:skewX(15deg);top:0}#bootstrap-theme .crm_wizard__title .nav-pills li:not(.active) a:hover{background:none;color:#0071bd}#bootstrap-theme .crm_wizard__title .nav-pills li.completed a{color:#00B0B9}#bootstrap-theme .crm_wizard__title .panel-body{padding:0}#bootstrap-theme .crm_wizard__body .form-group, #bootstrap-theme .crm_wizard__body .form-group-lg{max-width:550px}#bootstrap-theme .crm_wizard__body .form-group-lg .form-control{min-width:100%;margin-bottom:15px}#bootstrap-theme .crm_wizard__body .form-control, #bootstrap-theme .crm_wizard__body .form-group .select2-container{max-width:370px}#bootstrap-theme .crm_wizard__body .select2-container{height:auto}#bootstrap-theme .crm_wizard .panel-body{border-radius:2px}#bootstrap-theme .chr_wysiwyg{border-bottom:none !important}#bootstrap-theme .chr_wysiwyg [text-angular-toolbar] .btn[disabled]{opacity:1}#bootstrap-theme .chr_wysiwyg .placeholder-text{opacity:0.6}#bootstrap-theme .chr_wysiwyg__action{background-color:#fff;border:1px solid #e8eef0;border-top:none;padding:5px 0;text-align:right}#bootstrap-theme .chr_wysiwyg__action hr{margin:0 10px}#bootstrap-theme .chr_wysiwyg__action .btn-link{margin-top:5px}#bootstrap-theme .chr_wysiwyg__action .btn-link[disabled]{opacity:0.6}#bootstrap-theme .chr_wysiwyg__action .fa{margin-right:5px}#bootstrap-theme .crm_collapsible-content{padding:10px}#bootstrap-theme .crm_collapsible-content .crm_collapsible-content__title{margin-bottom:10px;text-transform:uppercase}#bootstrap-theme .crm_collapsible-content .crm_collapsible-content__title .fa{color:#464354;margin-right:10px}#bootstrap-theme .crm_notification-badge{background:#0071bd;border-radius:2px;color:#fff;display:inline-block;font-size:13px;line-height:14px;padding:5px 8px;text-align:center;vertical-align:middle;white-space:nowrap}#bootstrap-theme .crm_notification-badge:hover{color:#fff;opacity:0.8;text-decoration:none}#bootstrap-theme .crm_notification-badge__info{background:#0071bd;color:#fff}#bootstrap-theme .crm_notification-badge__success{background:#44cb7e;color:#464354}#bootstrap-theme .crm_notification-badge__warning{background:#e6ab5e;color:#464354}#bootstrap-theme .crm_notification-badge__danger{background:#cf3458;color:#fff}#bootstrap-theme .pointer{cursor:pointer !important} .crm-container.ui-dialog{z-index:2001} .ui-widget-overlay.ui-front{z-index:2000} .mobile [type='date'][uib-datepicker-popup]{line-height:normal} .mobile [type='date'][uib-datepicker-popup]::-webkit-inner-spin-button, .mobile [type='date'][uib-datepicker-popup]::-webkit-clear-button{-webkit-appearance:none;appearance:none;display:none} .mobile [type='date'][uib-datepicker-popup]::-webkit-calendar-picker-indicator{background:transparent;bottom:0;color:transparent;height:auto;left:0;position:absolute;right:-50px;top:0;width:auto} .mobile [type='date'][uib-datepicker-popup]+.input-group-addon{border-left:1px solid #c2cfd8 !important;height:30px !important;line-height:30px !important;padding:0 !important;pointer-events:none;position:absolute !important;right:0 !important;width:38px !important;z-index:3}
diff --git a/www/crm/wp-content/plugins/civicrm/civicrm/ext/api4/lib/shoreditch/dropdown.js b/www/crm/wp-content/plugins/civicrm/civicrm/ext/api4/lib/shoreditch/dropdown.js
new file mode 100644
index 00000000..4ded8501
--- /dev/null
+++ b/www/crm/wp-content/plugins/civicrm/civicrm/ext/api4/lib/shoreditch/dropdown.js
@@ -0,0 +1,165 @@
+/* ========================================================================
+ * Bootstrap: dropdown.js v3.4.1
+ * https://getbootstrap.com/docs/3.4/javascript/#dropdowns
+ * ========================================================================
+ * Copyright 2011-2019 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ * ======================================================================== */
+
+
++function ($) {
+ 'use strict';
+
+ // DROPDOWN CLASS DEFINITION
+ // =========================
+
+ var backdrop = '.dropdown-backdrop'
+ var toggle = '[data-toggle="dropdown"]'
+ var Dropdown = function (element) {
+ $(element).on('click.bs.dropdown', this.toggle)
+ }
+
+ Dropdown.VERSION = '3.4.1'
+
+ function getParent($this) {
+ var selector = $this.attr('data-target')
+
+ if (!selector) {
+ selector = $this.attr('href')
+ selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
+ }
+
+ var $parent = selector !== '#' ? $(document).find(selector) : null
+
+ return $parent && $parent.length ? $parent : $this.parent()
+ }
+
+ function clearMenus(e) {
+ if (e && e.which === 3) return
+ $(backdrop).remove()
+ $(toggle).each(function () {
+ var $this = $(this)
+ var $parent = getParent($this)
+ var relatedTarget = { relatedTarget: this }
+
+ if (!$parent.hasClass('open')) return
+
+ if (e && e.type == 'click' && /input|textarea/i.test(e.target.tagName) && $.contains($parent[0], e.target)) return
+
+ $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
+
+ if (e.isDefaultPrevented()) return
+
+ $this.attr('aria-expanded', 'false')
+ $parent.removeClass('open').trigger($.Event('hidden.bs.dropdown', relatedTarget))
+ })
+ }
+
+ Dropdown.prototype.toggle = function (e) {
+ var $this = $(this)
+
+ if ($this.is('.disabled, :disabled')) return
+
+ var $parent = getParent($this)
+ var isActive = $parent.hasClass('open')
+
+ clearMenus()
+
+ if (!isActive) {
+ if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
+ // if mobile we use a backdrop because click events don't delegate
+ $(document.createElement('div'))
+ .addClass('dropdown-backdrop')
+ .insertAfter($(this))
+ .on('click', clearMenus)
+ }
+
+ var relatedTarget = { relatedTarget: this }
+ $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
+
+ if (e.isDefaultPrevented()) return
+
+ $this
+ .trigger('focus')
+ .attr('aria-expanded', 'true')
+
+ $parent
+ .toggleClass('open')
+ .trigger($.Event('shown.bs.dropdown', relatedTarget))
+ }
+
+ return false
+ }
+
+ Dropdown.prototype.keydown = function (e) {
+ if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return
+
+ var $this = $(this)
+
+ e.preventDefault()
+ e.stopPropagation()
+
+ if ($this.is('.disabled, :disabled')) return
+
+ var $parent = getParent($this)
+ var isActive = $parent.hasClass('open')
+
+ if (!isActive && e.which != 27 || isActive && e.which == 27) {
+ if (e.which == 27) $parent.find(toggle).trigger('focus')
+ return $this.trigger('click')
+ }
+
+ var desc = ' li:not(.disabled):visible a'
+ var $items = $parent.find('.dropdown-menu' + desc)
+
+ if (!$items.length) return
+
+ var index = $items.index(e.target)
+
+ if (e.which == 38 && index > 0) index-- // up
+ if (e.which == 40 && index < $items.length - 1) index++ // down
+ if (!~index) index = 0
+
+ $items.eq(index).trigger('focus')
+ }
+
+
+ // DROPDOWN PLUGIN DEFINITION
+ // ==========================
+
+ function Plugin(option) {
+ return this.each(function () {
+ var $this = $(this)
+ var data = $this.data('bs.dropdown')
+
+ if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
+ if (typeof option == 'string') data[option].call($this)
+ })
+ }
+
+ var old = $.fn.dropdown
+
+ $.fn.dropdown = Plugin
+ $.fn.dropdown.Constructor = Dropdown
+
+
+ // DROPDOWN NO CONFLICT
+ // ====================
+
+ $.fn.dropdown.noConflict = function () {
+ $.fn.dropdown = old
+ return this
+ }
+
+
+ // APPLY TO STANDARD DROPDOWN ELEMENTS
+ // ===================================
+
+ $(document)
+ .on('click.bs.dropdown.data-api', clearMenus)
+ .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
+ .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
+ .on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown)
+ .on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown)
+
+}(jQuery);