.xterm.fullscreen {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    height: auto;
    z-index: 255;
}

/**
 * xterm.js: xterm, in the browser
 * Copyright (c) 2014-2016, SourceLair Private Company (www.sourcelair.com (MIT License)
 * Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
 * https://github.com/chjj/term.js
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 *
 * Originally forked from (with the author's permission):
 *   Fabrice Bellard's javascript vt100 for jslinux:
 *   http://bellard.org/jslinux/
 *   Copyright (c) 2011 Fabrice Bellard
 *   The original design remains. The terminal itself
 *   has been extended to include xterm CSI codes, among
 *   other features.
 */

/*
 *  Default style for xterm.js
 */

.terminal {
    background-color: #000;
    color: #fff;
    font-family: courier-new, courier, monospace;
    font-feature-settings: "liga" 0;
    position: relative;
    user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}

.terminal.focus,
.terminal:focus {
    outline: none;
}

.terminal .xterm-helpers {
    position: absolute;
    top: 0;
}

.terminal .xterm-helper-textarea {
    /*
     * HACK: to fix IE's blinking cursor
     * Move textarea out of the screen to the far left, so that the cursor is not visible.
     */
    position: absolute;
    opacity: 0;
    left: -9999em;
    top: 0;
    width: 0;
    height: 0;
    z-index: -10;
    /** Prevent wrapping so the IME appears against the textarea at the correct position */
    white-space: nowrap;
    overflow: hidden;
    resize: none;
}

.terminal a {
    color: inherit;
    text-decoration: none;
}

.terminal a:hover {
    cursor: pointer;
    text-decoration: underline;
}

.terminal a.xterm-invalid-link:hover {
    cursor: text;
    text-decoration: none;
}

.terminal.focus:not(.xterm-cursor-style-underline):not(.xterm-cursor-style-bar) .terminal-cursor {
    background-color: #fff;
    color: #000;
}

.terminal:not(.focus) .terminal-cursor {
    outline: 1px solid #fff;
    outline-offset: -1px;
    background-color: transparent;
}

.terminal:not(.xterm-cursor-style-underline):not(.xterm-cursor-style-bar).focus.xterm-cursor-blink-on .terminal-cursor {
    background-color: transparent;
    color: inherit;
}

.terminal.xterm-cursor-style-bar .terminal-cursor,
.terminal.xterm-cursor-style-underline .terminal-cursor {
    position: relative;
}
.terminal.xterm-cursor-style-bar .terminal-cursor::before,
.terminal.xterm-cursor-style-underline .terminal-cursor::before {
    content: "";
    display: block;
    position: absolute;
    background-color: #fff;
}
.terminal.xterm-cursor-style-bar .terminal-cursor::before {
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
}
.terminal.xterm-cursor-style-underline .terminal-cursor::before {
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
}
.terminal.xterm-cursor-style-bar.focus.xterm-cursor-blink.xterm-cursor-blink-on .terminal-cursor::before,
.terminal.xterm-cursor-style-underline.focus.xterm-cursor-blink.xterm-cursor-blink-on .terminal-cursor::before {
    background-color: transparent;
}
.terminal.xterm-cursor-style-bar.focus.xterm-cursor-blink .terminal-cursor::before,
.terminal.xterm-cursor-style-underline.focus.xterm-cursor-blink .terminal-cursor::before {
    background-color: #fff;
}

.terminal .composition-view {
    background: #000;
    color: #FFF;
    display: none;
    position: absolute;
    white-space: nowrap;
    z-index: 1;
}

.terminal .composition-view.active {
    display: block;
}

.terminal .xterm-viewport {
    /* On OS X this is required in order for the scroll bar to appear fully opaque */
    background-color: #000;
    overflow-y: scroll;
}

.terminal .xterm-wide-char,
.terminal .xterm-normal-char {
    display: inline-block;
}

.terminal .xterm-rows {
    position: absolute;
    left: 0;
    top: 0;
}

.terminal .xterm-rows > div {
    /* Lines containing spans and text nodes ocassionally wrap despite being the same width (#327) */
    white-space: nowrap;
}

.terminal .xterm-scroll-area {
    visibility: hidden;
}

.terminal .xterm-char-measure-element {
    display: inline-block;
    visibility: hidden;
    position: absolute;
    left: -9999em;
}

.terminal.enable-mouse-events {
    /* When mouse events are enabled (eg. tmux), revert to the standard pointer cursor */
    cursor: default;
}

.terminal .xterm-selection {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

.terminal .xterm-selection div {
    position: absolute;
    background-color: #fff;
}

/*
 *  Determine default colors for xterm.js
 */
.terminal .xterm-bold {
    font-weight: bold;
}

.terminal .xterm-underline {
    text-decoration: underline;
}

.terminal .xterm-blink {
    text-decoration: blink;
}

.terminal .xterm-hidden {
    visibility: hidden;
}

.terminal .xterm-color-0 {
    color: #2e3436;
}

.terminal .xterm-bg-color-0 {
    background-color: #2e3436;
}

.terminal .xterm-color-1 {
    color: #cc0000;
}

.terminal .xterm-bg-color-1 {
    background-color: #cc0000;
}

.terminal .xterm-color-2 {
    color: #4e9a06;
}

.terminal .xterm-bg-color-2 {
    background-color: #4e9a06;
}

.terminal .xterm-color-3 {
    color: #c4a000;
}

.terminal .xterm-bg-color-3 {
    background-color: #c4a000;
}

.terminal .xterm-color-4 {
    color: #3465a4;
}

.terminal .xterm-bg-color-4 {
    background-color: #3465a4;
}

.terminal .xterm-color-5 {
    color: #75507b;
}

.terminal .xterm-bg-color-5 {
    background-color: #75507b;
}

.terminal .xterm-color-6 {
    color: #06989a;
}

.terminal .xterm-bg-color-6 {
    background-color: #06989a;
}

.terminal .xterm-color-7 {
    color: #d3d7cf;
}

.terminal .xterm-bg-color-7 {
    background-color: #d3d7cf;
}

.terminal .xterm-color-8 {
    color: #555753;
}

.terminal .xterm-bg-color-8 {
    background-color: #555753;
}

.terminal .xterm-color-9 {
    color: #ef2929;
}

.terminal .xterm-bg-color-9 {
    background-color: #ef2929;
}

.terminal .xterm-color-10 {
    color: #8ae234;
}

.terminal .xterm-bg-color-10 {
    background-color: #8ae234;
}

.terminal .xterm-color-11 {
    color: #fce94f;
}

.terminal .xterm-bg-color-11 {
    background-color: #fce94f;
}

.terminal .xterm-color-12 {
    color: #729fcf;
}

.terminal .xterm-bg-color-12 {
    background-color: #729fcf;
}

.terminal .xterm-color-13 {
    color: #ad7fa8;
}

.terminal .xterm-bg-color-13 {
    background-color: #ad7fa8;
}

.terminal .xterm-color-14 {
    color: #34e2e2;
}

.terminal .xterm-bg-color-14 {
    background-color: #34e2e2;
}

.terminal .xterm-color-15 {
    color: #eeeeec;
}

.terminal .xterm-bg-color-15 {
    background-color: #eeeeec;
}

.terminal .xterm-color-16 {
    color: #000000;
}

.terminal .xterm-bg-color-16 {
    background-color: #000000;
}

.terminal .xterm-color-17 {
    color: #00005f;
}

.terminal .xterm-bg-color-17 {
    background-color: #00005f;
}

.terminal .xterm-color-18 {
    color: #000087;
}

.terminal .xterm-bg-color-18 {
    background-color: #000087;
}

.terminal .xterm-color-19 {
    color: #0000af;
}

.terminal .xterm-bg-color-19 {
    background-color: #0000af;
}

.terminal .xterm-color-20 {
    color: #0000d7;
}

.terminal .xterm-bg-color-20 {
    background-color: #0000d7;
}

.terminal .xterm-color-21 {
    color: #0000ff;
}

.terminal .xterm-bg-color-21 {
    background-color: #0000ff;
}

.terminal .xterm-color-22 {
    color: #005f00;
}

.terminal .xterm-bg-color-22 {
    background-color: #005f00;
}

.terminal .xterm-color-23 {
    color: #005f5f;
}

.terminal .xterm-bg-color-23 {
    background-color: #005f5f;
}

.terminal .xterm-color-24 {
    color: #005f87;
}

.terminal .xterm-bg-color-24 {
    background-color: #005f87;
}

.terminal .xterm-color-25 {
    color: #005faf;
}

.terminal .xterm-bg-color-25 {
    background-color: #005faf;
}

.terminal .xterm-color-26 {
    color: #005fd7;
}

.terminal .xterm-bg-color-26 {
    background-color: #005fd7;
}

.terminal .xterm-color-27 {
    color: #005fff;
}

.terminal .xterm-bg-color-27 {
    background-color: #005fff;
}

.terminal .xterm-color-28 {
    color: #008700;
}

.terminal .xterm-bg-color-28 {
    background-color: #008700;
}

.terminal .xterm-color-29 {
    color: #00875f;
}

.terminal .xterm-bg-color-29 {
    background-color: #00875f;
}

.terminal .xterm-color-30 {
    color: #008787;
}

.terminal .xterm-bg-color-30 {
    background-color: #008787;
}

.terminal .xterm-color-31 {
    color: #0087af;
}

.terminal .xterm-bg-color-31 {
    background-color: #0087af;
}

.terminal .xterm-color-32 {
    color: #0087d7;
}

.terminal .xterm-bg-color-32 {
    background-color: #0087d7;
}

.terminal .xterm-color-33 {
    color: #0087ff;
}

.terminal .xterm-bg-color-33 {
    background-color: #0087ff;
}

.terminal .xterm-color-34 {
    color: #00af00;
}

.terminal .xterm-bg-color-34 {
    background-color: #00af00;
}

.terminal .xterm-color-35 {
    color: #00af5f;
}

.terminal .xterm-bg-color-35 {
    background-color: #00af5f;
}

.terminal .xterm-color-36 {
    color: #00af87;
}

.terminal .xterm-bg-color-36 {
    background-color: #00af87;
}

.terminal .xterm-color-37 {
    color: #00afaf;
}

.terminal .xterm-bg-color-37 {
    background-color: #00afaf;
}

.terminal .xterm-color-38 {
    color: #00afd7;
}

.terminal .xterm-bg-color-38 {
    background-color: #00afd7;
}

.terminal .xterm-color-39 {
    color: #00afff;
}

.terminal .xterm-bg-color-39 {
    background-color: #00afff;
}

.terminal .xterm-color-40 {
    color: #00d700;
}

.terminal .xterm-bg-color-40 {
    background-color: #00d700;
}

.terminal .xterm-color-41 {
    color: #00d75f;
}

.terminal .xterm-bg-color-41 {
    background-color: #00d75f;
}

.terminal .xterm-color-42 {
    color: #00d787;
}

.terminal .xterm-bg-color-42 {
    background-color: #00d787;
}

.terminal .xterm-color-43 {
    color: #00d7af;
}

.terminal .xterm-bg-color-43 {
    background-color: #00d7af;
}

.terminal .xterm-color-44 {
    color: #00d7d7;
}

.terminal .xterm-bg-color-44 {
    background-color: #00d7d7;
}

.terminal .xterm-color-45 {
    color: #00d7ff;
}

.terminal .xterm-bg-color-45 {
    background-color: #00d7ff;
}

.terminal .xterm-color-46 {
    color: #00ff00;
}

.terminal .xterm-bg-color-46 {
    background-color: #00ff00;
}

.terminal .xterm-color-47 {
    color: #00ff5f;
}

.terminal .xterm-bg-color-47 {
    background-color: #00ff5f;
}

.terminal .xterm-color-48 {
    color: #00ff87;
}

.terminal .xterm-bg-color-48 {
    background-color: #00ff87;
}

.terminal .xterm-color-49 {
    color: #00ffaf;
}

.terminal .xterm-bg-color-49 {
    background-color: #00ffaf;
}

.terminal .xterm-color-50 {
    color: #00ffd7;
}

.terminal .xterm-bg-color-50 {
    background-color: #00ffd7;
}

.terminal .xterm-color-51 {
    color: #00ffff;
}

.terminal .xterm-bg-color-51 {
    background-color: #00ffff;
}

.terminal .xterm-color-52 {
    color: #5f0000;
}

.terminal .xterm-bg-color-52 {
    background-color: #5f0000;
}

.terminal .xterm-color-53 {
    color: #5f005f;
}

.terminal .xterm-bg-color-53 {
    background-color: #5f005f;
}

.terminal .xterm-color-54 {
    color: #5f0087;
}

.terminal .xterm-bg-color-54 {
    background-color: #5f0087;
}

.terminal .xterm-color-55 {
    color: #5f00af;
}

.terminal .xterm-bg-color-55 {
    background-color: #5f00af;
}

.terminal .xterm-color-56 {
    color: #5f00d7;
}

.terminal .xterm-bg-color-56 {
    background-color: #5f00d7;
}

.terminal .xterm-color-57 {
    color: #5f00ff;
}

.terminal .xterm-bg-color-57 {
    background-color: #5f00ff;
}

.terminal .xterm-color-58 {
    color: #5f5f00;
}

.terminal .xterm-bg-color-58 {
    background-color: #5f5f00;
}

.terminal .xterm-color-59 {
    color: #5f5f5f;
}

.terminal .xterm-bg-color-59 {
    background-color: #5f5f5f;
}

.terminal .xterm-color-60 {
    color: #5f5f87;
}

.terminal .xterm-bg-color-60 {
    background-color: #5f5f87;
}

.terminal .xterm-color-61 {
    color: #5f5faf;
}

.terminal .xterm-bg-color-61 {
    background-color: #5f5faf;
}

.terminal .xterm-color-62 {
    color: #5f5fd7;
}

.terminal .xterm-bg-color-62 {
    background-color: #5f5fd7;
}

.terminal .xterm-color-63 {
    color: #5f5fff;
}

.terminal .xterm-bg-color-63 {
    background-color: #5f5fff;
}

.terminal .xterm-color-64 {
    color: #5f8700;
}

.terminal .xterm-bg-color-64 {
    background-color: #5f8700;
}

.terminal .xterm-color-65 {
    color: #5f875f;
}

.terminal .xterm-bg-color-65 {
    background-color: #5f875f;
}

.terminal .xterm-color-66 {
    color: #5f8787;
}

.terminal .xterm-bg-color-66 {
    background-color: #5f8787;
}

.terminal .xterm-color-67 {
    color: #5f87af;
}

.terminal .xterm-bg-color-67 {
    background-color: #5f87af;
}

.terminal .xterm-color-68 {
    color: #5f87d7;
}

.terminal .xterm-bg-color-68 {
    background-color: #5f87d7;
}

.terminal .xterm-color-69 {
    color: #5f87ff;
}

.terminal .xterm-bg-color-69 {
    background-color: #5f87ff;
}

.terminal .xterm-color-70 {
    color: #5faf00;
}

.terminal .xterm-bg-color-70 {
    background-color: #5faf00;
}

.terminal .xterm-color-71 {
    color: #5faf5f;
}

.terminal .xterm-bg-color-71 {
    background-color: #5faf5f;
}

.terminal .xterm-color-72 {
    color: #5faf87;
}

.terminal .xterm-bg-color-72 {
    background-color: #5faf87;
}

.terminal .xterm-color-73 {
    color: #5fafaf;
}

.terminal .xterm-bg-color-73 {
    background-color: #5fafaf;
}

.terminal .xterm-color-74 {
    color: #5fafd7;
}

.terminal .xterm-bg-color-74 {
    background-color: #5fafd7;
}

.terminal .xterm-color-75 {
    color: #5fafff;
}

.terminal .xterm-bg-color-75 {
    background-color: #5fafff;
}

.terminal .xterm-color-76 {
    color: #5fd700;
}

.terminal .xterm-bg-color-76 {
    background-color: #5fd700;
}

.terminal .xterm-color-77 {
    color: #5fd75f;
}

.terminal .xterm-bg-color-77 {
    background-color: #5fd75f;
}

.terminal .xterm-color-78 {
    color: #5fd787;
}

.terminal .xterm-bg-color-78 {
    background-color: #5fd787;
}

.terminal .xterm-color-79 {
    color: #5fd7af;
}

.terminal .xterm-bg-color-79 {
    background-color: #5fd7af;
}

.terminal .xterm-color-80 {
    color: #5fd7d7;
}

.terminal .xterm-bg-color-80 {
    background-color: #5fd7d7;
}

.terminal .xterm-color-81 {
    color: #5fd7ff;
}

.terminal .xterm-bg-color-81 {
    background-color: #5fd7ff;
}

.terminal .xterm-color-82 {
    color: #5fff00;
}

.terminal .xterm-bg-color-82 {
    background-color: #5fff00;
}

.terminal .xterm-color-83 {
    color: #5fff5f;
}

.terminal .xterm-bg-color-83 {
    background-color: #5fff5f;
}

.terminal .xterm-color-84 {
    color: #5fff87;
}

.terminal .xterm-bg-color-84 {
    background-color: #5fff87;
}

.terminal .xterm-color-85 {
    color: #5fffaf;
}

.terminal .xterm-bg-color-85 {
    background-color: #5fffaf;
}

.terminal .xterm-color-86 {
    color: #5fffd7;
}

.terminal .xterm-bg-color-86 {
    background-color: #5fffd7;
}

.terminal .xterm-color-87 {
    color: #5fffff;
}

.terminal .xterm-bg-color-87 {
    background-color: #5fffff;
}

.terminal .xterm-color-88 {
    color: #870000;
}

.terminal .xterm-bg-color-88 {
    background-color: #870000;
}

.terminal .xterm-color-89 {
    color: #87005f;
}

.terminal .xterm-bg-color-89 {
    background-color: #87005f;
}

.terminal .xterm-color-90 {
    color: #870087;
}

.terminal .xterm-bg-color-90 {
    background-color: #870087;
}

.terminal .xterm-color-91 {
    color: #8700af;
}

.terminal .xterm-bg-color-91 {
    background-color: #8700af;
}

.terminal .xterm-color-92 {
    color: #8700d7;
}

.terminal .xterm-bg-color-92 {
    background-color: #8700d7;
}

.terminal .xterm-color-93 {
    color: #8700ff;
}

.terminal .xterm-bg-color-93 {
    background-color: #8700ff;
}

.terminal .xterm-color-94 {
    color: #875f00;
}

.terminal .xterm-bg-color-94 {
    background-color: #875f00;
}

.terminal .xterm-color-95 {
    color: #875f5f;
}

.terminal .xterm-bg-color-95 {
    background-color: #875f5f;
}

.terminal .xterm-color-96 {
    color: #875f87;
}

.terminal .xterm-bg-color-96 {
    background-color: #875f87;
}

.terminal .xterm-color-97 {
    color: #875faf;
}

.terminal .xterm-bg-color-97 {
    background-color: #875faf;
}

.terminal .xterm-color-98 {
    color: #875fd7;
}

.terminal .xterm-bg-color-98 {
    background-color: #875fd7;
}

.terminal .xterm-color-99 {
    color: #875fff;
}

.terminal .xterm-bg-color-99 {
    background-color: #875fff;
}

.terminal .xterm-color-100 {
    color: #878700;
}

.terminal .xterm-bg-color-100 {
    background-color: #878700;
}

.terminal .xterm-color-101 {
    color: #87875f;
}

.terminal .xterm-bg-color-101 {
    background-color: #87875f;
}

.terminal .xterm-color-102 {
    color: #878787;
}

.terminal .xterm-bg-color-102 {
    background-color: #878787;
}

.terminal .xterm-color-103 {
    color: #8787af;
}

.terminal .xterm-bg-color-103 {
    background-color: #8787af;
}

.terminal .xterm-color-104 {
    color: #8787d7;
}

.terminal .xterm-bg-color-104 {
    background-color: #8787d7;
}

.terminal .xterm-color-105 {
    color: #8787ff;
}

.terminal .xterm-bg-color-105 {
    background-color: #8787ff;
}

.terminal .xterm-color-106 {
    color: #87af00;
}

.terminal .xterm-bg-color-106 {
    background-color: #87af00;
}

.terminal .xterm-color-107 {
    color: #87af5f;
}

.terminal .xterm-bg-color-107 {
    background-color: #87af5f;
}

.terminal .xterm-color-108 {
    color: #87af87;
}

.terminal .xterm-bg-color-108 {
    background-color: #87af87;
}

.terminal .xterm-color-109 {
    color: #87afaf;
}

.terminal .xterm-bg-color-109 {
    background-color: #87afaf;
}

.terminal .xterm-color-110 {
    color: #87afd7;
}

.terminal .xterm-bg-color-110 {
    background-color: #87afd7;
}

.terminal .xterm-color-111 {
    color: #87afff;
}

.terminal .xterm-bg-color-111 {
    background-color: #87afff;
}

.terminal .xterm-color-112 {
    color: #87d700;
}

.terminal .xterm-bg-color-112 {
    background-color: #87d700;
}

.terminal .xterm-color-113 {
    color: #87d75f;
}

.terminal .xterm-bg-color-113 {
    background-color: #87d75f;
}

.terminal .xterm-color-114 {
    color: #87d787;
}

.terminal .xterm-bg-color-114 {
    background-color: #87d787;
}

.terminal .xterm-color-115 {
    color: #87d7af;
}

.terminal .xterm-bg-color-115 {
    background-color: #87d7af;
}

.terminal .xterm-color-116 {
    color: #87d7d7;
}

.terminal .xterm-bg-color-116 {
    background-color: #87d7d7;
}

.terminal .xterm-color-117 {
    color: #87d7ff;
}

.terminal .xterm-bg-color-117 {
    background-color: #87d7ff;
}

.terminal .xterm-color-118 {
    color: #87ff00;
}

.terminal .xterm-bg-color-118 {
    background-color: #87ff00;
}

.terminal .xterm-color-119 {
    color: #87ff5f;
}

.terminal .xterm-bg-color-119 {
    background-color: #87ff5f;
}

.terminal .xterm-color-120 {
    color: #87ff87;
}

.terminal .xterm-bg-color-120 {
    background-color: #87ff87;
}

.terminal .xterm-color-121 {
    color: #87ffaf;
}

.terminal .xterm-bg-color-121 {
    background-color: #87ffaf;
}

.terminal .xterm-color-122 {
    color: #87ffd7;
}

.terminal .xterm-bg-color-122 {
    background-color: #87ffd7;
}

.terminal .xterm-color-123 {
    color: #87ffff;
}

.terminal .xterm-bg-color-123 {
    background-color: #87ffff;
}

.terminal .xterm-color-124 {
    color: #af0000;
}

.terminal .xterm-bg-color-124 {
    background-color: #af0000;
}

.terminal .xterm-color-125 {
    color: #af005f;
}

.terminal .xterm-bg-color-125 {
    background-color: #af005f;
}

.terminal .xterm-color-126 {
    color: #af0087;
}

.terminal .xterm-bg-color-126 {
    background-color: #af0087;
}

.terminal .xterm-color-127 {
    color: #af00af;
}

.terminal .xterm-bg-color-127 {
    background-color: #af00af;
}

.terminal .xterm-color-128 {
    color: #af00d7;
}

.terminal .xterm-bg-color-128 {
    background-color: #af00d7;
}

.terminal .xterm-color-129 {
    color: #af00ff;
}

.terminal .xterm-bg-color-129 {
    background-color: #af00ff;
}

.terminal .xterm-color-130 {
    color: #af5f00;
}

.terminal .xterm-bg-color-130 {
    background-color: #af5f00;
}

.terminal .xterm-color-131 {
    color: #af5f5f;
}

.terminal .xterm-bg-color-131 {
    background-color: #af5f5f;
}

.terminal .xterm-color-132 {
    color: #af5f87;
}

.terminal .xterm-bg-color-132 {
    background-color: #af5f87;
}

.terminal .xterm-color-133 {
    color: #af5faf;
}

.terminal .xterm-bg-color-133 {
    background-color: #af5faf;
}

.terminal .xterm-color-134 {
    color: #af5fd7;
}

.terminal .xterm-bg-color-134 {
    background-color: #af5fd7;
}

.terminal .xterm-color-135 {
    color: #af5fff;
}

.terminal .xterm-bg-color-135 {
    background-color: #af5fff;
}

.terminal .xterm-color-136 {
    color: #af8700;
}

.terminal .xterm-bg-color-136 {
    background-color: #af8700;
}

.terminal .xterm-color-137 {
    color: #af875f;
}

.terminal .xterm-bg-color-137 {
    background-color: #af875f;
}

.terminal .xterm-color-138 {
    color: #af8787;
}

.terminal .xterm-bg-color-138 {
    background-color: #af8787;
}

.terminal .xterm-color-139 {
    color: #af87af;
}

.terminal .xterm-bg-color-139 {
    background-color: #af87af;
}

.terminal .xterm-color-140 {
    color: #af87d7;
}

.terminal .xterm-bg-color-140 {
    background-color: #af87d7;
}

.terminal .xterm-color-141 {
    color: #af87ff;
}

.terminal .xterm-bg-color-141 {
    background-color: #af87ff;
}

.terminal .xterm-color-142 {
    color: #afaf00;
}

.terminal .xterm-bg-color-142 {
    background-color: #afaf00;
}

.terminal .xterm-color-143 {
    color: #afaf5f;
}

.terminal .xterm-bg-color-143 {
    background-color: #afaf5f;
}

.terminal .xterm-color-144 {
    color: #afaf87;
}

.terminal .xterm-bg-color-144 {
    background-color: #afaf87;
}

.terminal .xterm-color-145 {
    color: #afafaf;
}

.terminal .xterm-bg-color-145 {
    background-color: #afafaf;
}

.terminal .xterm-color-146 {
    color: #afafd7;
}

.terminal .xterm-bg-color-146 {
    background-color: #afafd7;
}

.terminal .xterm-color-147 {
    color: #afafff;
}

.terminal .xterm-bg-color-147 {
    background-color: #afafff;
}

.terminal .xterm-color-148 {
    color: #afd700;
}

.terminal .xterm-bg-color-148 {
    background-color: #afd700;
}

.terminal .xterm-color-149 {
    color: #afd75f;
}

.terminal .xterm-bg-color-149 {
    background-color: #afd75f;
}

.terminal .xterm-color-150 {
    color: #afd787;
}

.terminal .xterm-bg-color-150 {
    background-color: #afd787;
}

.terminal .xterm-color-151 {
    color: #afd7af;
}

.terminal .xterm-bg-color-151 {
    background-color: #afd7af;
}

.terminal .xterm-color-152 {
    color: #afd7d7;
}

.terminal .xterm-bg-color-152 {
    background-color: #afd7d7;
}

.terminal .xterm-color-153 {
    color: #afd7ff;
}

.terminal .xterm-bg-color-153 {
    background-color: #afd7ff;
}

.terminal .xterm-color-154 {
    color: #afff00;
}

.terminal .xterm-bg-color-154 {
    background-color: #afff00;
}

.terminal .xterm-color-155 {
    color: #afff5f;
}

.terminal .xterm-bg-color-155 {
    background-color: #afff5f;
}

.terminal .xterm-color-156 {
    color: #afff87;
}

.terminal .xterm-bg-color-156 {
    background-color: #afff87;
}

.terminal .xterm-color-157 {
    color: #afffaf;
}

.terminal .xterm-bg-color-157 {
    background-color: #afffaf;
}

.terminal .xterm-color-158 {
    color: #afffd7;
}

.terminal .xterm-bg-color-158 {
    background-color: #afffd7;
}

.terminal .xterm-color-159 {
    color: #afffff;
}

.terminal .xterm-bg-color-159 {
    background-color: #afffff;
}

.terminal .xterm-color-160 {
    color: #d70000;
}

.terminal .xterm-bg-color-160 {
    background-color: #d70000;
}

.terminal .xterm-color-161 {
    color: #d7005f;
}

.terminal .xterm-bg-color-161 {
    background-color: #d7005f;
}

.terminal .xterm-color-162 {
    color: #d70087;
}

.terminal .xterm-bg-color-162 {
    background-color: #d70087;
}

.terminal .xterm-color-163 {
    color: #d700af;
}

.terminal .xterm-bg-color-163 {
    background-color: #d700af;
}

.terminal .xterm-color-164 {
    color: #d700d7;
}

.terminal .xterm-bg-color-164 {
    background-color: #d700d7;
}

.terminal .xterm-color-165 {
    color: #d700ff;
}

.terminal .xterm-bg-color-165 {
    background-color: #d700ff;
}

.terminal .xterm-color-166 {
    color: #d75f00;
}

.terminal .xterm-bg-color-166 {
    background-color: #d75f00;
}

.terminal .xterm-color-167 {
    color: #d75f5f;
}

.terminal .xterm-bg-color-167 {
    background-color: #d75f5f;
}

.terminal .xterm-color-168 {
    color: #d75f87;
}

.terminal .xterm-bg-color-168 {
    background-color: #d75f87;
}

.terminal .xterm-color-169 {
    color: #d75faf;
}

.terminal .xterm-bg-color-169 {
    background-color: #d75faf;
}

.terminal .xterm-color-170 {
    color: #d75fd7;
}

.terminal .xterm-bg-color-170 {
    background-color: #d75fd7;
}

.terminal .xterm-color-171 {
    color: #d75fff;
}

.terminal .xterm-bg-color-171 {
    background-color: #d75fff;
}

.terminal .xterm-color-172 {
    color: #d78700;
}

.terminal .xterm-bg-color-172 {
    background-color: #d78700;
}

.terminal .xterm-color-173 {
    color: #d7875f;
}

.terminal .xterm-bg-color-173 {
    background-color: #d7875f;
}

.terminal .xterm-color-174 {
    color: #d78787;
}

.terminal .xterm-bg-color-174 {
    background-color: #d78787;
}

.terminal .xterm-color-175 {
    color: #d787af;
}

.terminal .xterm-bg-color-175 {
    background-color: #d787af;
}

.terminal .xterm-color-176 {
    color: #d787d7;
}

.terminal .xterm-bg-color-176 {
    background-color: #d787d7;
}

.terminal .xterm-color-177 {
    color: #d787ff;
}

.terminal .xterm-bg-color-177 {
    background-color: #d787ff;
}

.terminal .xterm-color-178 {
    color: #d7af00;
}

.terminal .xterm-bg-color-178 {
    background-color: #d7af00;
}

.terminal .xterm-color-179 {
    color: #d7af5f;
}

.terminal .xterm-bg-color-179 {
    background-color: #d7af5f;
}

.terminal .xterm-color-180 {
    color: #d7af87;
}

.terminal .xterm-bg-color-180 {
    background-color: #d7af87;
}

.terminal .xterm-color-181 {
    color: #d7afaf;
}

.terminal .xterm-bg-color-181 {
    background-color: #d7afaf;
}

.terminal .xterm-color-182 {
    color: #d7afd7;
}

.terminal .xterm-bg-color-182 {
    background-color: #d7afd7;
}

.terminal .xterm-color-183 {
    color: #d7afff;
}

.terminal .xterm-bg-color-183 {
    background-color: #d7afff;
}

.terminal .xterm-color-184 {
    color: #d7d700;
}

.terminal .xterm-bg-color-184 {
    background-color: #d7d700;
}

.terminal .xterm-color-185 {
    color: #d7d75f;
}

.terminal .xterm-bg-color-185 {
    background-color: #d7d75f;
}

.terminal .xterm-color-186 {
    color: #d7d787;
}

.terminal .xterm-bg-color-186 {
    background-color: #d7d787;
}

.terminal .xterm-color-187 {
    color: #d7d7af;
}

.terminal .xterm-bg-color-187 {
    background-color: #d7d7af;
}

.terminal .xterm-color-188 {
    color: #d7d7d7;
}

.terminal .xterm-bg-color-188 {
    background-color: #d7d7d7;
}

.terminal .xterm-color-189 {
    color: #d7d7ff;
}

.terminal .xterm-bg-color-189 {
    background-color: #d7d7ff;
}

.terminal .xterm-color-190 {
    color: #d7ff00;
}

.terminal .xterm-bg-color-190 {
    background-color: #d7ff00;
}

.terminal .xterm-color-191 {
    color: #d7ff5f;
}

.terminal .xterm-bg-color-191 {
    background-color: #d7ff5f;
}

.terminal .xterm-color-192 {
    color: #d7ff87;
}

.terminal .xterm-bg-color-192 {
    background-color: #d7ff87;
}

.terminal .xterm-color-193 {
    color: #d7ffaf;
}

.terminal .xterm-bg-color-193 {
    background-color: #d7ffaf;
}

.terminal .xterm-color-194 {
    color: #d7ffd7;
}

.terminal .xterm-bg-color-194 {
    background-color: #d7ffd7;
}

.terminal .xterm-color-195 {
    color: #d7ffff;
}

.terminal .xterm-bg-color-195 {
    background-color: #d7ffff;
}

.terminal .xterm-color-196 {
    color: #ff0000;
}

.terminal .xterm-bg-color-196 {
    background-color: #ff0000;
}

.terminal .xterm-color-197 {
    color: #ff005f;
}

.terminal .xterm-bg-color-197 {
    background-color: #ff005f;
}

.terminal .xterm-color-198 {
    color: #ff0087;
}

.terminal .xterm-bg-color-198 {
    background-color: #ff0087;
}

.terminal .xterm-color-199 {
    color: #ff00af;
}

.terminal .xterm-bg-color-199 {
    background-color: #ff00af;
}

.terminal .xterm-color-200 {
    color: #ff00d7;
}

.terminal .xterm-bg-color-200 {
    background-color: #ff00d7;
}

.terminal .xterm-color-201 {
    color: #ff00ff;
}

.terminal .xterm-bg-color-201 {
    background-color: #ff00ff;
}

.terminal .xterm-color-202 {
    color: #ff5f00;
}

.terminal .xterm-bg-color-202 {
    background-color: #ff5f00;
}

.terminal .xterm-color-203 {
    color: #ff5f5f;
}

.terminal .xterm-bg-color-203 {
    background-color: #ff5f5f;
}

.terminal .xterm-color-204 {
    color: #ff5f87;
}

.terminal .xterm-bg-color-204 {
    background-color: #ff5f87;
}

.terminal .xterm-color-205 {
    color: #ff5faf;
}

.terminal .xterm-bg-color-205 {
    background-color: #ff5faf;
}

.terminal .xterm-color-206 {
    color: #ff5fd7;
}

.terminal .xterm-bg-color-206 {
    background-color: #ff5fd7;
}

.terminal .xterm-color-207 {
    color: #ff5fff;
}

.terminal .xterm-bg-color-207 {
    background-color: #ff5fff;
}

.terminal .xterm-color-208 {
    color: #ff8700;
}

.terminal .xterm-bg-color-208 {
    background-color: #ff8700;
}

.terminal .xterm-color-209 {
    color: #ff875f;
}

.terminal .xterm-bg-color-209 {
    background-color: #ff875f;
}

.terminal .xterm-color-210 {
    color: #ff8787;
}

.terminal .xterm-bg-color-210 {
    background-color: #ff8787;
}

.terminal .xterm-color-211 {
    color: #ff87af;
}

.terminal .xterm-bg-color-211 {
    background-color: #ff87af;
}

.terminal .xterm-color-212 {
    color: #ff87d7;
}

.terminal .xterm-bg-color-212 {
    background-color: #ff87d7;
}

.terminal .xterm-color-213 {
    color: #ff87ff;
}

.terminal .xterm-bg-color-213 {
    background-color: #ff87ff;
}

.terminal .xterm-color-214 {
    color: #ffaf00;
}

.terminal .xterm-bg-color-214 {
    background-color: #ffaf00;
}

.terminal .xterm-color-215 {
    color: #ffaf5f;
}

.terminal .xterm-bg-color-215 {
    background-color: #ffaf5f;
}

.terminal .xterm-color-216 {
    color: #ffaf87;
}

.terminal .xterm-bg-color-216 {
    background-color: #ffaf87;
}

.terminal .xterm-color-217 {
    color: #ffafaf;
}

.terminal .xterm-bg-color-217 {
    background-color: #ffafaf;
}

.terminal .xterm-color-218 {
    color: #ffafd7;
}

.terminal .xterm-bg-color-218 {
    background-color: #ffafd7;
}

.terminal .xterm-color-219 {
    color: #ffafff;
}

.terminal .xterm-bg-color-219 {
    background-color: #ffafff;
}

.terminal .xterm-color-220 {
    color: #ffd700;
}

.terminal .xterm-bg-color-220 {
    background-color: #ffd700;
}

.terminal .xterm-color-221 {
    color: #ffd75f;
}

.terminal .xterm-bg-color-221 {
    background-color: #ffd75f;
}

.terminal .xterm-color-222 {
    color: #ffd787;
}

.terminal .xterm-bg-color-222 {
    background-color: #ffd787;
}

.terminal .xterm-color-223 {
    color: #ffd7af;
}

.terminal .xterm-bg-color-223 {
    background-color: #ffd7af;
}

.terminal .xterm-color-224 {
    color: #ffd7d7;
}

.terminal .xterm-bg-color-224 {
    background-color: #ffd7d7;
}

.terminal .xterm-color-225 {
    color: #ffd7ff;
}

.terminal .xterm-bg-color-225 {
    background-color: #ffd7ff;
}

.terminal .xterm-color-226 {
    color: #ffff00;
}

.terminal .xterm-bg-color-226 {
    background-color: #ffff00;
}

.terminal .xterm-color-227 {
    color: #ffff5f;
}

.terminal .xterm-bg-color-227 {
    background-color: #ffff5f;
}

.terminal .xterm-color-228 {
    color: #ffff87;
}

.terminal .xterm-bg-color-228 {
    background-color: #ffff87;
}

.terminal .xterm-color-229 {
    color: #ffffaf;
}

.terminal .xterm-bg-color-229 {
    background-color: #ffffaf;
}

.terminal .xterm-color-230 {
    color: #ffffd7;
}

.terminal .xterm-bg-color-230 {
    background-color: #ffffd7;
}

.terminal .xterm-color-231 {
    color: #ffffff;
}

.terminal .xterm-bg-color-231 {
    background-color: #ffffff;
}

.terminal .xterm-color-232 {
    color: #080808;
}

.terminal .xterm-bg-color-232 {
    background-color: #080808;
}

.terminal .xterm-color-233 {
    color: #121212;
}

.terminal .xterm-bg-color-233 {
    background-color: #121212;
}

.terminal .xterm-color-234 {
    color: #1c1c1c;
}

.terminal .xterm-bg-color-234 {
    background-color: #1c1c1c;
}

.terminal .xterm-color-235 {
    color: #262626;
}

.terminal .xterm-bg-color-235 {
    background-color: #262626;
}

.terminal .xterm-color-236 {
    color: #303030;
}

.terminal .xterm-bg-color-236 {
    background-color: #303030;
}

.terminal .xterm-color-237 {
    color: #3a3a3a;
}

.terminal .xterm-bg-color-237 {
    background-color: #3a3a3a;
}

.terminal .xterm-color-238 {
    color: #444444;
}

.terminal .xterm-bg-color-238 {
    background-color: #444444;
}

.terminal .xterm-color-239 {
    color: #4e4e4e;
}

.terminal .xterm-bg-color-239 {
    background-color: #4e4e4e;
}

.terminal .xterm-color-240 {
    color: #585858;
}

.terminal .xterm-bg-color-240 {
    background-color: #585858;
}

.terminal .xterm-color-241 {
    color: #626262;
}

.terminal .xterm-bg-color-241 {
    background-color: #626262;
}

.terminal .xterm-color-242 {
    color: #6c6c6c;
}

.terminal .xterm-bg-color-242 {
    background-color: #6c6c6c;
}

.terminal .xterm-color-243 {
    color: #767676;
}

.terminal .xterm-bg-color-243 {
    background-color: #767676;
}

.terminal .xterm-color-244 {
    color: #808080;
}

.terminal .xterm-bg-color-244 {
    background-color: #808080;
}

.terminal .xterm-color-245 {
    color: #8a8a8a;
}

.terminal .xterm-bg-color-245 {
    background-color: #8a8a8a;
}

.terminal .xterm-color-246 {
    color: #949494;
}

.terminal .xterm-bg-color-246 {
    background-color: #949494;
}

.terminal .xterm-color-247 {
    color: #9e9e9e;
}

.terminal .xterm-bg-color-247 {
    background-color: #9e9e9e;
}

.terminal .xterm-color-248 {
    color: #a8a8a8;
}

.terminal .xterm-bg-color-248 {
    background-color: #a8a8a8;
}

.terminal .xterm-color-249 {
    color: #b2b2b2;
}

.terminal .xterm-bg-color-249 {
    background-color: #b2b2b2;
}

.terminal .xterm-color-250 {
    color: #bcbcbc;
}

.terminal .xterm-bg-color-250 {
    background-color: #bcbcbc;
}

.terminal .xterm-color-251 {
    color: #c6c6c6;
}

.terminal .xterm-bg-color-251 {
    background-color: #c6c6c6;
}

.terminal .xterm-color-252 {
    color: #d0d0d0;
}

.terminal .xterm-bg-color-252 {
    background-color: #d0d0d0;
}

.terminal .xterm-color-253 {
    color: #dadada;
}

.terminal .xterm-bg-color-253 {
    background-color: #dadada;
}

.terminal .xterm-color-254 {
    color: #e4e4e4;
}

.terminal .xterm-bg-color-254 {
    background-color: #e4e4e4;
}

.terminal .xterm-color-255 {
    color: #eeeeee;
}

.terminal .xterm-bg-color-255 {
    background-color: #eeeeee;
}

@charset "UTF-8";
#ex-debug-toolbar {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #333333;
  background-color: #fff;
  /*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  /**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */
  /* Code blocks */
  /* Inline code */ }
  #ex-debug-toolbar html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%; }
  #ex-debug-toolbar body {
    margin: 0; }
  #ex-debug-toolbar article,
  #ex-debug-toolbar aside,
  #ex-debug-toolbar details,
  #ex-debug-toolbar figcaption,
  #ex-debug-toolbar figure,
  #ex-debug-toolbar footer,
  #ex-debug-toolbar header,
  #ex-debug-toolbar hgroup,
  #ex-debug-toolbar main,
  #ex-debug-toolbar menu,
  #ex-debug-toolbar nav,
  #ex-debug-toolbar section,
  #ex-debug-toolbar summary {
    display: block; }
  #ex-debug-toolbar audio,
  #ex-debug-toolbar canvas,
  #ex-debug-toolbar progress,
  #ex-debug-toolbar video {
    display: inline-block;
    vertical-align: baseline; }
  #ex-debug-toolbar audio:not([controls]) {
    display: none;
    height: 0; }
  #ex-debug-toolbar [hidden],
  #ex-debug-toolbar template {
    display: none; }
  #ex-debug-toolbar a, #ex-debug-toolbar .navbar-nav.nav > li > span {
    background-color: transparent; }
  #ex-debug-toolbar a:active, #ex-debug-toolbar .navbar-nav.nav > li > span:active,
  #ex-debug-toolbar a:hover, #ex-debug-toolbar .navbar-nav.nav > li > span:hover {
    outline: 0; }
  #ex-debug-toolbar abbr[title] {
    border-bottom: 1px dotted; }
  #ex-debug-toolbar b,
  #ex-debug-toolbar strong {
    font-weight: bold; }
  #ex-debug-toolbar dfn {
    font-style: italic; }
  #ex-debug-toolbar h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #ex-debug-toolbar mark {
    background: #ff0;
    color: #000; }
  #ex-debug-toolbar small {
    font-size: 80%; }
  #ex-debug-toolbar sub,
  #ex-debug-toolbar sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #ex-debug-toolbar sup {
    top: -0.5em; }
  #ex-debug-toolbar sub {
    bottom: -0.25em; }
  #ex-debug-toolbar img {
    border: 0; }
  #ex-debug-toolbar svg:not(:root) {
    overflow: hidden; }
  #ex-debug-toolbar figure {
    margin: 1em 40px; }
  #ex-debug-toolbar hr {
    box-sizing: content-box;
    height: 0; }
  #ex-debug-toolbar pre {
    overflow: auto; }
  #ex-debug-toolbar code,
  #ex-debug-toolbar kbd,
  #ex-debug-toolbar pre,
  #ex-debug-toolbar samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #ex-debug-toolbar button,
  #ex-debug-toolbar input,
  #ex-debug-toolbar optgroup,
  #ex-debug-toolbar select,
  #ex-debug-toolbar textarea {
    color: inherit;
    font: inherit;
    margin: 0; }
  #ex-debug-toolbar button {
    overflow: visible; }
  #ex-debug-toolbar button,
  #ex-debug-toolbar select {
    text-transform: none; }
  #ex-debug-toolbar button,
  #ex-debug-toolbar html input[type="button"],
  #ex-debug-toolbar input[type="reset"],
  #ex-debug-toolbar input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer; }
  #ex-debug-toolbar button[disabled],
  #ex-debug-toolbar html input[disabled] {
    cursor: default; }
  #ex-debug-toolbar button::-moz-focus-inner,
  #ex-debug-toolbar input::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #ex-debug-toolbar input {
    line-height: normal; }
  #ex-debug-toolbar input[type="checkbox"],
  #ex-debug-toolbar input[type="radio"] {
    box-sizing: border-box;
    padding: 0; }
  #ex-debug-toolbar input[type="number"]::-webkit-inner-spin-button,
  #ex-debug-toolbar input[type="number"]::-webkit-outer-spin-button {
    height: auto; }
  #ex-debug-toolbar input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box; }
  #ex-debug-toolbar input[type="search"]::-webkit-search-cancel-button,
  #ex-debug-toolbar input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }
  #ex-debug-toolbar fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #ex-debug-toolbar legend {
    border: 0;
    padding: 0; }
  #ex-debug-toolbar textarea {
    overflow: auto; }
  #ex-debug-toolbar optgroup {
    font-weight: bold; }
  #ex-debug-toolbar table {
    border-collapse: collapse;
    border-spacing: 0; }
  #ex-debug-toolbar td,
  #ex-debug-toolbar th {
    padding: 0; }
  @media print {
    #ex-debug-toolbar *,
    #ex-debug-toolbar *:before,
    #ex-debug-toolbar *:after {
      background: transparent !important;
      color: #000 !important;
      box-shadow: none !important;
      text-shadow: none !important; }
    #ex-debug-toolbar a, #ex-debug-toolbar .navbar-nav.nav > li > span,
    #ex-debug-toolbar a:visited, #ex-debug-toolbar .navbar-nav.nav > li > span:visited {
      text-decoration: underline; }
    #ex-debug-toolbar a[href]:after, #ex-debug-toolbar .navbar-nav.nav > li > span[href]:after {
      content: " (" attr(href) ")"; }
    #ex-debug-toolbar abbr[title]:after {
      content: " (" attr(title) ")"; }
    #ex-debug-toolbar a[href^="#"]:after, #ex-debug-toolbar .navbar-nav.nav > li > span[href^="#"]:after,
    #ex-debug-toolbar a[href^="javascript:"]:after, #ex-debug-toolbar .navbar-nav.nav > li > span[href^="javascript:"]:after {
      content: ""; }
    #ex-debug-toolbar pre,
    #ex-debug-toolbar blockquote {
      border: 1px solid #999;
      page-break-inside: avoid; }
    #ex-debug-toolbar thead {
      display: table-header-group; }
    #ex-debug-toolbar tr,
    #ex-debug-toolbar img {
      page-break-inside: avoid; }
    #ex-debug-toolbar img {
      max-width: 100% !important; }
    #ex-debug-toolbar p,
    #ex-debug-toolbar h2,
    #ex-debug-toolbar h3 {
      orphans: 3;
      widows: 3; }
    #ex-debug-toolbar h2,
    #ex-debug-toolbar h3 {
      page-break-after: avoid; }
    #ex-debug-toolbar .navbar {
      display: none; }
    #ex-debug-toolbar .btn > .caret,
    #ex-debug-toolbar .dropup > .btn > .caret {
      border-top-color: #000 !important; }
    #ex-debug-toolbar .label {
      border: 1px solid #000; }
    #ex-debug-toolbar .table {
      border-collapse: collapse !important; }
      #ex-debug-toolbar .table td,
      #ex-debug-toolbar .table th {
        background-color: #fff !important; }
    #ex-debug-toolbar .table-bordered th,
    #ex-debug-toolbar .table-bordered td {
      border: 1px solid #ddd !important; } }

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot");
  src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); }
  #ex-debug-toolbar .glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #ex-debug-toolbar .glyphicon-asterisk:before {
    content: "\002a"; }
  #ex-debug-toolbar .glyphicon-plus:before {
    content: "\002b"; }
  #ex-debug-toolbar .glyphicon-euro:before,
  #ex-debug-toolbar .glyphicon-eur:before {
    content: "\20ac"; }
  #ex-debug-toolbar .glyphicon-minus:before {
    content: "\2212"; }
  #ex-debug-toolbar .glyphicon-cloud:before {
    content: "\2601"; }
  #ex-debug-toolbar .glyphicon-envelope:before {
    content: "\2709"; }
  #ex-debug-toolbar .glyphicon-pencil:before {
    content: "\270f"; }
  #ex-debug-toolbar .glyphicon-glass:before {
    content: "\e001"; }
  #ex-debug-toolbar .glyphicon-music:before {
    content: "\e002"; }
  #ex-debug-toolbar .glyphicon-search:before {
    content: "\e003"; }
  #ex-debug-toolbar .glyphicon-heart:before {
    content: "\e005"; }
  #ex-debug-toolbar .glyphicon-star:before {
    content: "\e006"; }
  #ex-debug-toolbar .glyphicon-star-empty:before {
    content: "\e007"; }
  #ex-debug-toolbar .glyphicon-user:before {
    content: "\e008"; }
  #ex-debug-toolbar .glyphicon-film:before {
    content: "\e009"; }
  #ex-debug-toolbar .glyphicon-th-large:before {
    content: "\e010"; }
  #ex-debug-toolbar .glyphicon-th:before {
    content: "\e011"; }
  #ex-debug-toolbar .glyphicon-th-list:before {
    content: "\e012"; }
  #ex-debug-toolbar .glyphicon-ok:before {
    content: "\e013"; }
  #ex-debug-toolbar .glyphicon-remove:before {
    content: "\e014"; }
  #ex-debug-toolbar .glyphicon-zoom-in:before {
    content: "\e015"; }
  #ex-debug-toolbar .glyphicon-zoom-out:before {
    content: "\e016"; }
  #ex-debug-toolbar .glyphicon-off:before {
    content: "\e017"; }
  #ex-debug-toolbar .glyphicon-signal:before {
    content: "\e018"; }
  #ex-debug-toolbar .glyphicon-cog:before {
    content: "\e019"; }
  #ex-debug-toolbar .glyphicon-trash:before {
    content: "\e020"; }
  #ex-debug-toolbar .glyphicon-home:before {
    content: "\e021"; }
  #ex-debug-toolbar .glyphicon-file:before {
    content: "\e022"; }
  #ex-debug-toolbar .glyphicon-time:before {
    content: "\e023"; }
  #ex-debug-toolbar .glyphicon-road:before {
    content: "\e024"; }
  #ex-debug-toolbar .glyphicon-download-alt:before {
    content: "\e025"; }
  #ex-debug-toolbar .glyphicon-download:before {
    content: "\e026"; }
  #ex-debug-toolbar .glyphicon-upload:before {
    content: "\e027"; }
  #ex-debug-toolbar .glyphicon-inbox:before {
    content: "\e028"; }
  #ex-debug-toolbar .glyphicon-play-circle:before {
    content: "\e029"; }
  #ex-debug-toolbar .glyphicon-repeat:before {
    content: "\e030"; }
  #ex-debug-toolbar .glyphicon-refresh:before {
    content: "\e031"; }
  #ex-debug-toolbar .glyphicon-list-alt:before {
    content: "\e032"; }
  #ex-debug-toolbar .glyphicon-lock:before {
    content: "\e033"; }
  #ex-debug-toolbar .glyphicon-flag:before {
    content: "\e034"; }
  #ex-debug-toolbar .glyphicon-headphones:before {
    content: "\e035"; }
  #ex-debug-toolbar .glyphicon-volume-off:before {
    content: "\e036"; }
  #ex-debug-toolbar .glyphicon-volume-down:before {
    content: "\e037"; }
  #ex-debug-toolbar .glyphicon-volume-up:before {
    content: "\e038"; }
  #ex-debug-toolbar .glyphicon-qrcode:before {
    content: "\e039"; }
  #ex-debug-toolbar .glyphicon-barcode:before {
    content: "\e040"; }
  #ex-debug-toolbar .glyphicon-tag:before {
    content: "\e041"; }
  #ex-debug-toolbar .glyphicon-tags:before {
    content: "\e042"; }
  #ex-debug-toolbar .glyphicon-book:before {
    content: "\e043"; }
  #ex-debug-toolbar .glyphicon-bookmark:before {
    content: "\e044"; }
  #ex-debug-toolbar .glyphicon-print:before {
    content: "\e045"; }
  #ex-debug-toolbar .glyphicon-camera:before {
    content: "\e046"; }
  #ex-debug-toolbar .glyphicon-font:before {
    content: "\e047"; }
  #ex-debug-toolbar .glyphicon-bold:before {
    content: "\e048"; }
  #ex-debug-toolbar .glyphicon-italic:before {
    content: "\e049"; }
  #ex-debug-toolbar .glyphicon-text-height:before {
    content: "\e050"; }
  #ex-debug-toolbar .glyphicon-text-width:before {
    content: "\e051"; }
  #ex-debug-toolbar .glyphicon-align-left:before {
    content: "\e052"; }
  #ex-debug-toolbar .glyphicon-align-center:before {
    content: "\e053"; }
  #ex-debug-toolbar .glyphicon-align-right:before {
    content: "\e054"; }
  #ex-debug-toolbar .glyphicon-align-justify:before {
    content: "\e055"; }
  #ex-debug-toolbar .glyphicon-list:before {
    content: "\e056"; }
  #ex-debug-toolbar .glyphicon-indent-left:before {
    content: "\e057"; }
  #ex-debug-toolbar .glyphicon-indent-right:before {
    content: "\e058"; }
  #ex-debug-toolbar .glyphicon-facetime-video:before {
    content: "\e059"; }
  #ex-debug-toolbar .glyphicon-picture:before {
    content: "\e060"; }
  #ex-debug-toolbar .glyphicon-map-marker:before {
    content: "\e062"; }
  #ex-debug-toolbar .glyphicon-adjust:before {
    content: "\e063"; }
  #ex-debug-toolbar .glyphicon-tint:before {
    content: "\e064"; }
  #ex-debug-toolbar .glyphicon-edit:before {
    content: "\e065"; }
  #ex-debug-toolbar .glyphicon-share:before {
    content: "\e066"; }
  #ex-debug-toolbar .glyphicon-check:before {
    content: "\e067"; }
  #ex-debug-toolbar .glyphicon-move:before {
    content: "\e068"; }
  #ex-debug-toolbar .glyphicon-step-backward:before {
    content: "\e069"; }
  #ex-debug-toolbar .glyphicon-fast-backward:before {
    content: "\e070"; }
  #ex-debug-toolbar .glyphicon-backward:before {
    content: "\e071"; }
  #ex-debug-toolbar .glyphicon-play:before {
    content: "\e072"; }
  #ex-debug-toolbar .glyphicon-pause:before {
    content: "\e073"; }
  #ex-debug-toolbar .glyphicon-stop:before {
    content: "\e074"; }
  #ex-debug-toolbar .glyphicon-forward:before {
    content: "\e075"; }
  #ex-debug-toolbar .glyphicon-fast-forward:before {
    content: "\e076"; }
  #ex-debug-toolbar .glyphicon-step-forward:before {
    content: "\e077"; }
  #ex-debug-toolbar .glyphicon-eject:before {
    content: "\e078"; }
  #ex-debug-toolbar .glyphicon-chevron-left:before {
    content: "\e079"; }
  #ex-debug-toolbar .glyphicon-chevron-right:before {
    content: "\e080"; }
  #ex-debug-toolbar .glyphicon-plus-sign:before {
    content: "\e081"; }
  #ex-debug-toolbar .glyphicon-minus-sign:before {
    content: "\e082"; }
  #ex-debug-toolbar .glyphicon-remove-sign:before {
    content: "\e083"; }
  #ex-debug-toolbar .glyphicon-ok-sign:before {
    content: "\e084"; }
  #ex-debug-toolbar .glyphicon-question-sign:before {
    content: "\e085"; }
  #ex-debug-toolbar .glyphicon-info-sign:before {
    content: "\e086"; }
  #ex-debug-toolbar .glyphicon-screenshot:before {
    content: "\e087"; }
  #ex-debug-toolbar .glyphicon-remove-circle:before {
    content: "\e088"; }
  #ex-debug-toolbar .glyphicon-ok-circle:before {
    content: "\e089"; }
  #ex-debug-toolbar .glyphicon-ban-circle:before {
    content: "\e090"; }
  #ex-debug-toolbar .glyphicon-arrow-left:before {
    content: "\e091"; }
  #ex-debug-toolbar .glyphicon-arrow-right:before {
    content: "\e092"; }
  #ex-debug-toolbar .glyphicon-arrow-up:before {
    content: "\e093"; }
  #ex-debug-toolbar .glyphicon-arrow-down:before {
    content: "\e094"; }
  #ex-debug-toolbar .glyphicon-share-alt:before {
    content: "\e095"; }
  #ex-debug-toolbar .glyphicon-resize-full:before {
    content: "\e096"; }
  #ex-debug-toolbar .glyphicon-resize-small:before {
    content: "\e097"; }
  #ex-debug-toolbar .glyphicon-exclamation-sign:before {
    content: "\e101"; }
  #ex-debug-toolbar .glyphicon-gift:before {
    content: "\e102"; }
  #ex-debug-toolbar .glyphicon-leaf:before {
    content: "\e103"; }
  #ex-debug-toolbar .glyphicon-fire:before {
    content: "\e104"; }
  #ex-debug-toolbar .glyphicon-eye-open:before {
    content: "\e105"; }
  #ex-debug-toolbar .glyphicon-eye-close:before {
    content: "\e106"; }
  #ex-debug-toolbar .glyphicon-warning-sign:before {
    content: "\e107"; }
  #ex-debug-toolbar .glyphicon-plane:before {
    content: "\e108"; }
  #ex-debug-toolbar .glyphicon-calendar:before {
    content: "\e109"; }
  #ex-debug-toolbar .glyphicon-random:before {
    content: "\e110"; }
  #ex-debug-toolbar .glyphicon-comment:before {
    content: "\e111"; }
  #ex-debug-toolbar .glyphicon-magnet:before {
    content: "\e112"; }
  #ex-debug-toolbar .glyphicon-chevron-up:before {
    content: "\e113"; }
  #ex-debug-toolbar .glyphicon-chevron-down:before {
    content: "\e114"; }
  #ex-debug-toolbar .glyphicon-retweet:before {
    content: "\e115"; }
  #ex-debug-toolbar .glyphicon-shopping-cart:before {
    content: "\e116"; }
  #ex-debug-toolbar .glyphicon-folder-close:before {
    content: "\e117"; }
  #ex-debug-toolbar .glyphicon-folder-open:before {
    content: "\e118"; }
  #ex-debug-toolbar .glyphicon-resize-vertical:before {
    content: "\e119"; }
  #ex-debug-toolbar .glyphicon-resize-horizontal:before {
    content: "\e120"; }
  #ex-debug-toolbar .glyphicon-hdd:before {
    content: "\e121"; }
  #ex-debug-toolbar .glyphicon-bullhorn:before {
    content: "\e122"; }
  #ex-debug-toolbar .glyphicon-bell:before {
    content: "\e123"; }
  #ex-debug-toolbar .glyphicon-certificate:before {
    content: "\e124"; }
  #ex-debug-toolbar .glyphicon-thumbs-up:before {
    content: "\e125"; }
  #ex-debug-toolbar .glyphicon-thumbs-down:before {
    content: "\e126"; }
  #ex-debug-toolbar .glyphicon-hand-right:before {
    content: "\e127"; }
  #ex-debug-toolbar .glyphicon-hand-left:before {
    content: "\e128"; }
  #ex-debug-toolbar .glyphicon-hand-up:before {
    content: "\e129"; }
  #ex-debug-toolbar .glyphicon-hand-down:before {
    content: "\e130"; }
  #ex-debug-toolbar .glyphicon-circle-arrow-right:before {
    content: "\e131"; }
  #ex-debug-toolbar .glyphicon-circle-arrow-left:before {
    content: "\e132"; }
  #ex-debug-toolbar .glyphicon-circle-arrow-up:before {
    content: "\e133"; }
  #ex-debug-toolbar .glyphicon-circle-arrow-down:before {
    content: "\e134"; }
  #ex-debug-toolbar .glyphicon-globe:before {
    content: "\e135"; }
  #ex-debug-toolbar .glyphicon-wrench:before {
    content: "\e136"; }
  #ex-debug-toolbar .glyphicon-tasks:before {
    content: "\e137"; }
  #ex-debug-toolbar .glyphicon-filter:before {
    content: "\e138"; }
  #ex-debug-toolbar .glyphicon-briefcase:before {
    content: "\e139"; }
  #ex-debug-toolbar .glyphicon-fullscreen:before {
    content: "\e140"; }
  #ex-debug-toolbar .glyphicon-dashboard:before {
    content: "\e141"; }
  #ex-debug-toolbar .glyphicon-paperclip:before {
    content: "\e142"; }
  #ex-debug-toolbar .glyphicon-heart-empty:before {
    content: "\e143"; }
  #ex-debug-toolbar .glyphicon-link:before {
    content: "\e144"; }
  #ex-debug-toolbar .glyphicon-phone:before {
    content: "\e145"; }
  #ex-debug-toolbar .glyphicon-pushpin:before {
    content: "\e146"; }
  #ex-debug-toolbar .glyphicon-usd:before {
    content: "\e148"; }
  #ex-debug-toolbar .glyphicon-gbp:before {
    content: "\e149"; }
  #ex-debug-toolbar .glyphicon-sort:before {
    content: "\e150"; }
  #ex-debug-toolbar .glyphicon-sort-by-alphabet:before {
    content: "\e151"; }
  #ex-debug-toolbar .glyphicon-sort-by-alphabet-alt:before {
    content: "\e152"; }
  #ex-debug-toolbar .glyphicon-sort-by-order:before {
    content: "\e153"; }
  #ex-debug-toolbar .glyphicon-sort-by-order-alt:before {
    content: "\e154"; }
  #ex-debug-toolbar .glyphicon-sort-by-attributes:before {
    content: "\e155"; }
  #ex-debug-toolbar .glyphicon-sort-by-attributes-alt:before {
    content: "\e156"; }
  #ex-debug-toolbar .glyphicon-unchecked:before {
    content: "\e157"; }
  #ex-debug-toolbar .glyphicon-expand:before {
    content: "\e158"; }
  #ex-debug-toolbar .glyphicon-collapse-down:before {
    content: "\e159"; }
  #ex-debug-toolbar .glyphicon-collapse-up:before {
    content: "\e160"; }
  #ex-debug-toolbar .glyphicon-log-in:before {
    content: "\e161"; }
  #ex-debug-toolbar .glyphicon-flash:before {
    content: "\e162"; }
  #ex-debug-toolbar .glyphicon-log-out:before {
    content: "\e163"; }
  #ex-debug-toolbar .glyphicon-new-window:before {
    content: "\e164"; }
  #ex-debug-toolbar .glyphicon-record:before {
    content: "\e165"; }
  #ex-debug-toolbar .glyphicon-save:before {
    content: "\e166"; }
  #ex-debug-toolbar .glyphicon-open:before {
    content: "\e167"; }
  #ex-debug-toolbar .glyphicon-saved:before {
    content: "\e168"; }
  #ex-debug-toolbar .glyphicon-import:before {
    content: "\e169"; }
  #ex-debug-toolbar .glyphicon-export:before {
    content: "\e170"; }
  #ex-debug-toolbar .glyphicon-send:before {
    content: "\e171"; }
  #ex-debug-toolbar .glyphicon-floppy-disk:before {
    content: "\e172"; }
  #ex-debug-toolbar .glyphicon-floppy-saved:before {
    content: "\e173"; }
  #ex-debug-toolbar .glyphicon-floppy-remove:before {
    content: "\e174"; }
  #ex-debug-toolbar .glyphicon-floppy-save:before {
    content: "\e175"; }
  #ex-debug-toolbar .glyphicon-floppy-open:before {
    content: "\e176"; }
  #ex-debug-toolbar .glyphicon-credit-card:before {
    content: "\e177"; }
  #ex-debug-toolbar .glyphicon-transfer:before {
    content: "\e178"; }
  #ex-debug-toolbar .glyphicon-cutlery:before {
    content: "\e179"; }
  #ex-debug-toolbar .glyphicon-header:before {
    content: "\e180"; }
  #ex-debug-toolbar .glyphicon-compressed:before {
    content: "\e181"; }
  #ex-debug-toolbar .glyphicon-earphone:before {
    content: "\e182"; }
  #ex-debug-toolbar .glyphicon-phone-alt:before {
    content: "\e183"; }
  #ex-debug-toolbar .glyphicon-tower:before {
    content: "\e184"; }
  #ex-debug-toolbar .glyphicon-stats:before {
    content: "\e185"; }
  #ex-debug-toolbar .glyphicon-sd-video:before {
    content: "\e186"; }
  #ex-debug-toolbar .glyphicon-hd-video:before {
    content: "\e187"; }
  #ex-debug-toolbar .glyphicon-subtitles:before {
    content: "\e188"; }
  #ex-debug-toolbar .glyphicon-sound-stereo:before {
    content: "\e189"; }
  #ex-debug-toolbar .glyphicon-sound-dolby:before {
    content: "\e190"; }
  #ex-debug-toolbar .glyphicon-sound-5-1:before {
    content: "\e191"; }
  #ex-debug-toolbar .glyphicon-sound-6-1:before {
    content: "\e192"; }
  #ex-debug-toolbar .glyphicon-sound-7-1:before {
    content: "\e193"; }
  #ex-debug-toolbar .glyphicon-copyright-mark:before {
    content: "\e194"; }
  #ex-debug-toolbar .glyphicon-registration-mark:before {
    content: "\e195"; }
  #ex-debug-toolbar .glyphicon-cloud-download:before {
    content: "\e197"; }
  #ex-debug-toolbar .glyphicon-cloud-upload:before {
    content: "\e198"; }
  #ex-debug-toolbar .glyphicon-tree-conifer:before {
    content: "\e199"; }
  #ex-debug-toolbar .glyphicon-tree-deciduous:before {
    content: "\e200"; }
  #ex-debug-toolbar .glyphicon-cd:before {
    content: "\e201"; }
  #ex-debug-toolbar .glyphicon-save-file:before {
    content: "\e202"; }
  #ex-debug-toolbar .glyphicon-open-file:before {
    content: "\e203"; }
  #ex-debug-toolbar .glyphicon-level-up:before {
    content: "\e204"; }
  #ex-debug-toolbar .glyphicon-copy:before {
    content: "\e205"; }
  #ex-debug-toolbar .glyphicon-paste:before {
    content: "\e206"; }
  #ex-debug-toolbar .glyphicon-alert:before {
    content: "\e209"; }
  #ex-debug-toolbar .glyphicon-equalizer:before {
    content: "\e210"; }
  #ex-debug-toolbar .glyphicon-king:before {
    content: "\e211"; }
  #ex-debug-toolbar .glyphicon-queen:before {
    content: "\e212"; }
  #ex-debug-toolbar .glyphicon-pawn:before {
    content: "\e213"; }
  #ex-debug-toolbar .glyphicon-bishop:before {
    content: "\e214"; }
  #ex-debug-toolbar .glyphicon-knight:before {
    content: "\e215"; }
  #ex-debug-toolbar .glyphicon-baby-formula:before {
    content: "\e216"; }
  #ex-debug-toolbar .glyphicon-tent:before {
    content: "\26fa"; }
  #ex-debug-toolbar .glyphicon-blackboard:before {
    content: "\e218"; }
  #ex-debug-toolbar .glyphicon-bed:before {
    content: "\e219"; }
  #ex-debug-toolbar .glyphicon-apple:before {
    content: "\f8ff"; }
  #ex-debug-toolbar .glyphicon-erase:before {
    content: "\e221"; }
  #ex-debug-toolbar .glyphicon-hourglass:before {
    content: "\231b"; }
  #ex-debug-toolbar .glyphicon-lamp:before {
    content: "\e223"; }
  #ex-debug-toolbar .glyphicon-duplicate:before {
    content: "\e224"; }
  #ex-debug-toolbar .glyphicon-piggy-bank:before {
    content: "\e225"; }
  #ex-debug-toolbar .glyphicon-scissors:before {
    content: "\e226"; }
  #ex-debug-toolbar .glyphicon-bitcoin:before {
    content: "\e227"; }
  #ex-debug-toolbar .glyphicon-btc:before {
    content: "\e227"; }
  #ex-debug-toolbar .glyphicon-xbt:before {
    content: "\e227"; }
  #ex-debug-toolbar .glyphicon-yen:before {
    content: "\00a5"; }
  #ex-debug-toolbar .glyphicon-jpy:before {
    content: "\00a5"; }
  #ex-debug-toolbar .glyphicon-ruble:before {
    content: "\20bd"; }
  #ex-debug-toolbar .glyphicon-rub:before {
    content: "\20bd"; }
  #ex-debug-toolbar .glyphicon-scale:before {
    content: "\e230"; }
  #ex-debug-toolbar .glyphicon-ice-lolly:before {
    content: "\e231"; }
  #ex-debug-toolbar .glyphicon-ice-lolly-tasted:before {
    content: "\e232"; }
  #ex-debug-toolbar .glyphicon-education:before {
    content: "\e233"; }
  #ex-debug-toolbar .glyphicon-option-horizontal:before {
    content: "\e234"; }
  #ex-debug-toolbar .glyphicon-option-vertical:before {
    content: "\e235"; }
  #ex-debug-toolbar .glyphicon-menu-hamburger:before {
    content: "\e236"; }
  #ex-debug-toolbar .glyphicon-modal-window:before {
    content: "\e237"; }
  #ex-debug-toolbar .glyphicon-oil:before {
    content: "\e238"; }
  #ex-debug-toolbar .glyphicon-grain:before {
    content: "\e239"; }
  #ex-debug-toolbar .glyphicon-sunglasses:before {
    content: "\e240"; }
  #ex-debug-toolbar .glyphicon-text-size:before {
    content: "\e241"; }
  #ex-debug-toolbar .glyphicon-text-color:before {
    content: "\e242"; }
  #ex-debug-toolbar .glyphicon-text-background:before {
    content: "\e243"; }
  #ex-debug-toolbar .glyphicon-object-align-top:before {
    content: "\e244"; }
  #ex-debug-toolbar .glyphicon-object-align-bottom:before {
    content: "\e245"; }
  #ex-debug-toolbar .glyphicon-object-align-horizontal:before {
    content: "\e246"; }
  #ex-debug-toolbar .glyphicon-object-align-left:before {
    content: "\e247"; }
  #ex-debug-toolbar .glyphicon-object-align-vertical:before {
    content: "\e248"; }
  #ex-debug-toolbar .glyphicon-object-align-right:before {
    content: "\e249"; }
  #ex-debug-toolbar .glyphicon-triangle-right:before {
    content: "\e250"; }
  #ex-debug-toolbar .glyphicon-triangle-left:before {
    content: "\e251"; }
  #ex-debug-toolbar .glyphicon-triangle-bottom:before {
    content: "\e252"; }
  #ex-debug-toolbar .glyphicon-triangle-top:before {
    content: "\e253"; }
  #ex-debug-toolbar .glyphicon-console:before {
    content: "\e254"; }
  #ex-debug-toolbar .glyphicon-superscript:before {
    content: "\e255"; }
  #ex-debug-toolbar .glyphicon-subscript:before {
    content: "\e256"; }
  #ex-debug-toolbar .glyphicon-menu-left:before {
    content: "\e257"; }
  #ex-debug-toolbar .glyphicon-menu-right:before {
    content: "\e258"; }
  #ex-debug-toolbar .glyphicon-menu-down:before {
    content: "\e259"; }
  #ex-debug-toolbar .glyphicon-menu-up:before {
    content: "\e260"; }
  #ex-debug-toolbar * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  #ex-debug-toolbar *:before,
  #ex-debug-toolbar *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  #ex-debug-toolbar html {
    font-size: 10px;
    -webkit-tap-highlight-color: transparent; }
  #ex-debug-toolbar body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857;
    color: #333333;
    background-color: #fff; }
  #ex-debug-toolbar input,
  #ex-debug-toolbar button,
  #ex-debug-toolbar select,
  #ex-debug-toolbar textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit; }
  #ex-debug-toolbar a, #ex-debug-toolbar .navbar-nav.nav > li > span {
    color: #337ab7;
    text-decoration: none; }
    #ex-debug-toolbar a:hover, #ex-debug-toolbar .navbar-nav.nav > li > span:hover, #ex-debug-toolbar a:focus, #ex-debug-toolbar .navbar-nav.nav > li > span:focus {
      color: #23527c;
      text-decoration: underline; }
    #ex-debug-toolbar a:focus, #ex-debug-toolbar .navbar-nav.nav > li > span:focus {
      outline: 5px auto -webkit-focus-ring-color;
      outline-offset: -2px; }
  #ex-debug-toolbar figure {
    margin: 0; }
  #ex-debug-toolbar img {
    vertical-align: middle; }
  #ex-debug-toolbar .img-responsive {
    display: block;
    max-width: 100%;
    height: auto; }
  #ex-debug-toolbar .img-rounded {
    border-radius: 6px; }
  #ex-debug-toolbar .img-thumbnail {
    padding: 4px;
    line-height: 1.42857;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -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; }
  #ex-debug-toolbar .img-circle {
    border-radius: 50%; }
  #ex-debug-toolbar hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eeeeee; }
  #ex-debug-toolbar .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0; }
  #ex-debug-toolbar .sr-only-focusable:active, #ex-debug-toolbar .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto; }
  #ex-debug-toolbar [role="button"] {
    cursor: pointer; }
  #ex-debug-toolbar h1, #ex-debug-toolbar h2, #ex-debug-toolbar h3, #ex-debug-toolbar h4, #ex-debug-toolbar h5, #ex-debug-toolbar h6,
  #ex-debug-toolbar .h1, #ex-debug-toolbar .h2, #ex-debug-toolbar .h3, #ex-debug-toolbar .h4, #ex-debug-toolbar .h5, #ex-debug-toolbar .h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit; }
    #ex-debug-toolbar h1 small,
    #ex-debug-toolbar h1 .small, #ex-debug-toolbar h2 small,
    #ex-debug-toolbar h2 .small, #ex-debug-toolbar h3 small,
    #ex-debug-toolbar h3 .small, #ex-debug-toolbar h4 small,
    #ex-debug-toolbar h4 .small, #ex-debug-toolbar h5 small,
    #ex-debug-toolbar h5 .small, #ex-debug-toolbar h6 small,
    #ex-debug-toolbar h6 .small,
    #ex-debug-toolbar .h1 small,
    #ex-debug-toolbar .h1 .small, #ex-debug-toolbar .h2 small,
    #ex-debug-toolbar .h2 .small, #ex-debug-toolbar .h3 small,
    #ex-debug-toolbar .h3 .small, #ex-debug-toolbar .h4 small,
    #ex-debug-toolbar .h4 .small, #ex-debug-toolbar .h5 small,
    #ex-debug-toolbar .h5 .small, #ex-debug-toolbar .h6 small,
    #ex-debug-toolbar .h6 .small {
      font-weight: normal;
      line-height: 1;
      color: #777777; }
  #ex-debug-toolbar h1, #ex-debug-toolbar .h1,
  #ex-debug-toolbar h2, #ex-debug-toolbar .h2,
  #ex-debug-toolbar h3, #ex-debug-toolbar .h3 {
    margin-top: 20px;
    margin-bottom: 10px; }
    #ex-debug-toolbar h1 small,
    #ex-debug-toolbar h1 .small, #ex-debug-toolbar .h1 small,
    #ex-debug-toolbar .h1 .small,
    #ex-debug-toolbar h2 small,
    #ex-debug-toolbar h2 .small, #ex-debug-toolbar .h2 small,
    #ex-debug-toolbar .h2 .small,
    #ex-debug-toolbar h3 small,
    #ex-debug-toolbar h3 .small, #ex-debug-toolbar .h3 small,
    #ex-debug-toolbar .h3 .small {
      font-size: 65%; }
  #ex-debug-toolbar h4, #ex-debug-toolbar .h4,
  #ex-debug-toolbar h5, #ex-debug-toolbar .h5,
  #ex-debug-toolbar h6, #ex-debug-toolbar .h6 {
    margin-top: 10px;
    margin-bottom: 10px; }
    #ex-debug-toolbar h4 small,
    #ex-debug-toolbar h4 .small, #ex-debug-toolbar .h4 small,
    #ex-debug-toolbar .h4 .small,
    #ex-debug-toolbar h5 small,
    #ex-debug-toolbar h5 .small, #ex-debug-toolbar .h5 small,
    #ex-debug-toolbar .h5 .small,
    #ex-debug-toolbar h6 small,
    #ex-debug-toolbar h6 .small, #ex-debug-toolbar .h6 small,
    #ex-debug-toolbar .h6 .small {
      font-size: 75%; }
  #ex-debug-toolbar h1, #ex-debug-toolbar .h1 {
    font-size: 36px; }
  #ex-debug-toolbar h2, #ex-debug-toolbar .h2 {
    font-size: 30px; }
  #ex-debug-toolbar h3, #ex-debug-toolbar .h3 {
    font-size: 24px; }
  #ex-debug-toolbar h4, #ex-debug-toolbar .h4 {
    font-size: 18px; }
  #ex-debug-toolbar h5, #ex-debug-toolbar .h5 {
    font-size: 14px; }
  #ex-debug-toolbar h6, #ex-debug-toolbar .h6 {
    font-size: 12px; }
  #ex-debug-toolbar p {
    margin: 0 0 10px; }
  #ex-debug-toolbar .lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4; }
    @media (min-width: 768px) {
      #ex-debug-toolbar .lead {
        font-size: 21px; } }
  #ex-debug-toolbar small,
  #ex-debug-toolbar .small {
    font-size: 85%; }
  #ex-debug-toolbar mark,
  #ex-debug-toolbar .mark {
    background-color: #fcf8e3;
    padding: .2em; }
  #ex-debug-toolbar .text-left {
    text-align: left; }
  #ex-debug-toolbar .text-right {
    text-align: right; }
  #ex-debug-toolbar .text-center {
    text-align: center; }
  #ex-debug-toolbar .text-justify {
    text-align: justify; }
  #ex-debug-toolbar .text-nowrap {
    white-space: nowrap; }
  #ex-debug-toolbar .text-lowercase {
    text-transform: lowercase; }
  #ex-debug-toolbar .text-uppercase, #ex-debug-toolbar .initialism {
    text-transform: uppercase; }
  #ex-debug-toolbar .text-capitalize {
    text-transform: capitalize; }
  #ex-debug-toolbar .text-muted {
    color: #777777; }
  #ex-debug-toolbar .text-primary {
    color: #337ab7; }
  #ex-debug-toolbar a.text-primary:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.text-primary:hover,
  #ex-debug-toolbar a.text-primary:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.text-primary:focus {
    color: #286090; }
  #ex-debug-toolbar .text-success {
    color: #3c763d; }
  #ex-debug-toolbar a.text-success:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.text-success:hover,
  #ex-debug-toolbar a.text-success:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.text-success:focus {
    color: #2b542c; }
  #ex-debug-toolbar .text-info {
    color: #31708f; }
  #ex-debug-toolbar a.text-info:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.text-info:hover,
  #ex-debug-toolbar a.text-info:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.text-info:focus {
    color: #245269; }
  #ex-debug-toolbar .text-warning {
    color: #8a6d3b; }
  #ex-debug-toolbar a.text-warning:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.text-warning:hover,
  #ex-debug-toolbar a.text-warning:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.text-warning:focus {
    color: #66512c; }
  #ex-debug-toolbar .text-danger {
    color: #a94442; }
  #ex-debug-toolbar a.text-danger:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.text-danger:hover,
  #ex-debug-toolbar a.text-danger:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.text-danger:focus {
    color: #843534; }
  #ex-debug-toolbar .bg-primary {
    color: #fff; }
  #ex-debug-toolbar .bg-primary {
    background-color: #337ab7; }
  #ex-debug-toolbar a.bg-primary:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.bg-primary:hover,
  #ex-debug-toolbar a.bg-primary:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.bg-primary:focus {
    background-color: #286090; }
  #ex-debug-toolbar .bg-success {
    background-color: #dff0d8; }
  #ex-debug-toolbar a.bg-success:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.bg-success:hover,
  #ex-debug-toolbar a.bg-success:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.bg-success:focus {
    background-color: #c1e2b3; }
  #ex-debug-toolbar .bg-info {
    background-color: #d9edf7; }
  #ex-debug-toolbar a.bg-info:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.bg-info:hover,
  #ex-debug-toolbar a.bg-info:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.bg-info:focus {
    background-color: #afd9ee; }
  #ex-debug-toolbar .bg-warning {
    background-color: #fcf8e3; }
  #ex-debug-toolbar a.bg-warning:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.bg-warning:hover,
  #ex-debug-toolbar a.bg-warning:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.bg-warning:focus {
    background-color: #f7ecb5; }
  #ex-debug-toolbar .bg-danger {
    background-color: #f2dede; }
  #ex-debug-toolbar a.bg-danger:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.bg-danger:hover,
  #ex-debug-toolbar a.bg-danger:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.bg-danger:focus {
    background-color: #e4b9b9; }
  #ex-debug-toolbar .page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eeeeee; }
  #ex-debug-toolbar ul,
  #ex-debug-toolbar ol {
    margin-top: 0;
    margin-bottom: 10px; }
    #ex-debug-toolbar ul ul,
    #ex-debug-toolbar ul ol,
    #ex-debug-toolbar ol ul,
    #ex-debug-toolbar ol ol {
      margin-bottom: 0; }
  #ex-debug-toolbar .list-unstyled {
    padding-left: 0;
    list-style: none; }
  #ex-debug-toolbar .list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px; }
    #ex-debug-toolbar .list-inline > li {
      display: inline-block;
      padding-left: 5px;
      padding-right: 5px; }
  #ex-debug-toolbar dl {
    margin-top: 0;
    margin-bottom: 20px; }
  #ex-debug-toolbar dt,
  #ex-debug-toolbar dd {
    line-height: 1.42857; }
  #ex-debug-toolbar dt {
    font-weight: bold; }
  #ex-debug-toolbar dd {
    margin-left: 0; }
  #ex-debug-toolbar .dl-horizontal dd:before, #ex-debug-toolbar .dl-horizontal dd:after {
    content: " ";
    display: table; }
  #ex-debug-toolbar .dl-horizontal dd:after {
    clear: both; }
  @media (min-width: 768px) {
    #ex-debug-toolbar .dl-horizontal dt {
      float: left;
      width: 160px;
      clear: left;
      text-align: right;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    #ex-debug-toolbar .dl-horizontal dd {
      margin-left: 180px; } }
  #ex-debug-toolbar abbr[title],
  #ex-debug-toolbar abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #777777; }
  #ex-debug-toolbar .initialism {
    font-size: 90%; }
  #ex-debug-toolbar blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eeeeee; }
    #ex-debug-toolbar blockquote p:last-child,
    #ex-debug-toolbar blockquote ul:last-child,
    #ex-debug-toolbar blockquote ol:last-child {
      margin-bottom: 0; }
    #ex-debug-toolbar blockquote footer,
    #ex-debug-toolbar blockquote small,
    #ex-debug-toolbar blockquote .small {
      display: block;
      font-size: 80%;
      line-height: 1.42857;
      color: #777777; }
      #ex-debug-toolbar blockquote footer:before,
      #ex-debug-toolbar blockquote small:before,
      #ex-debug-toolbar blockquote .small:before {
        content: '\2014 \00A0'; }
  #ex-debug-toolbar .blockquote-reverse,
  #ex-debug-toolbar blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eeeeee;
    border-left: 0;
    text-align: right; }
    #ex-debug-toolbar .blockquote-reverse footer:before,
    #ex-debug-toolbar .blockquote-reverse small:before,
    #ex-debug-toolbar .blockquote-reverse .small:before,
    #ex-debug-toolbar blockquote.pull-right footer:before,
    #ex-debug-toolbar blockquote.pull-right small:before,
    #ex-debug-toolbar blockquote.pull-right .small:before {
      content: ''; }
    #ex-debug-toolbar .blockquote-reverse footer:after,
    #ex-debug-toolbar .blockquote-reverse small:after,
    #ex-debug-toolbar .blockquote-reverse .small:after,
    #ex-debug-toolbar blockquote.pull-right footer:after,
    #ex-debug-toolbar blockquote.pull-right small:after,
    #ex-debug-toolbar blockquote.pull-right .small:after {
      content: '\00A0 \2014'; }
  #ex-debug-toolbar address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857; }
  #ex-debug-toolbar code,
  #ex-debug-toolbar kbd,
  #ex-debug-toolbar pre,
  #ex-debug-toolbar samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }
  #ex-debug-toolbar code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px; }
  #ex-debug-toolbar kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }
    #ex-debug-toolbar kbd kbd {
      padding: 0;
      font-size: 100%;
      font-weight: bold;
      box-shadow: none; }
  #ex-debug-toolbar pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857;
    word-break: break-all;
    word-wrap: break-word;
    color: #333333;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px; }
    #ex-debug-toolbar pre code {
      padding: 0;
      font-size: inherit;
      color: inherit;
      white-space: pre-wrap;
      background-color: transparent;
      border-radius: 0; }
  #ex-debug-toolbar .pre-scrollable {
    max-height: 340px;
    overflow-y: scroll; }
  #ex-debug-toolbar .container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px; }
    #ex-debug-toolbar .container:before, #ex-debug-toolbar .container:after {
      content: " ";
      display: table; }
    #ex-debug-toolbar .container:after {
      clear: both; }
    @media (min-width: 768px) {
      #ex-debug-toolbar .container {
        width: 750px; } }
    @media (min-width: 992px) {
      #ex-debug-toolbar .container {
        width: 970px; } }
    @media (min-width: 1200px) {
      #ex-debug-toolbar .container {
        width: 1170px; } }
  #ex-debug-toolbar .container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px; }
    #ex-debug-toolbar .container-fluid:before, #ex-debug-toolbar .container-fluid:after {
      content: " ";
      display: table; }
    #ex-debug-toolbar .container-fluid:after {
      clear: both; }
  #ex-debug-toolbar .row {
    margin-left: -15px;
    margin-right: -15px; }
    #ex-debug-toolbar .row:before, #ex-debug-toolbar .row:after {
      content: " ";
      display: table; }
    #ex-debug-toolbar .row:after {
      clear: both; }
  #ex-debug-toolbar .col-xs-1, #ex-debug-toolbar .col-sm-1, #ex-debug-toolbar .col-md-1, #ex-debug-toolbar .col-lg-1, #ex-debug-toolbar .col-xs-2, #ex-debug-toolbar .col-sm-2, #ex-debug-toolbar .col-md-2, #ex-debug-toolbar .col-lg-2, #ex-debug-toolbar .col-xs-3, #ex-debug-toolbar .col-sm-3, #ex-debug-toolbar .col-md-3, #ex-debug-toolbar .col-lg-3, #ex-debug-toolbar .col-xs-4, #ex-debug-toolbar .col-sm-4, #ex-debug-toolbar .col-md-4, #ex-debug-toolbar .col-lg-4, #ex-debug-toolbar .col-xs-5, #ex-debug-toolbar .col-sm-5, #ex-debug-toolbar .col-md-5, #ex-debug-toolbar .col-lg-5, #ex-debug-toolbar .col-xs-6, #ex-debug-toolbar .col-sm-6, #ex-debug-toolbar .col-md-6, #ex-debug-toolbar .col-lg-6, #ex-debug-toolbar .col-xs-7, #ex-debug-toolbar .col-sm-7, #ex-debug-toolbar .col-md-7, #ex-debug-toolbar .col-lg-7, #ex-debug-toolbar .col-xs-8, #ex-debug-toolbar .col-sm-8, #ex-debug-toolbar .col-md-8, #ex-debug-toolbar .col-lg-8, #ex-debug-toolbar .col-xs-9, #ex-debug-toolbar .col-sm-9, #ex-debug-toolbar .col-md-9, #ex-debug-toolbar .col-lg-9, #ex-debug-toolbar .col-xs-10, #ex-debug-toolbar .col-sm-10, #ex-debug-toolbar .col-md-10, #ex-debug-toolbar .col-lg-10, #ex-debug-toolbar .col-xs-11, #ex-debug-toolbar .col-sm-11, #ex-debug-toolbar .col-md-11, #ex-debug-toolbar .col-lg-11, #ex-debug-toolbar .col-xs-12, #ex-debug-toolbar .col-sm-12, #ex-debug-toolbar .col-md-12, #ex-debug-toolbar .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px; }
  #ex-debug-toolbar .col-xs-1, #ex-debug-toolbar .col-xs-2, #ex-debug-toolbar .col-xs-3, #ex-debug-toolbar .col-xs-4, #ex-debug-toolbar .col-xs-5, #ex-debug-toolbar .col-xs-6, #ex-debug-toolbar .col-xs-7, #ex-debug-toolbar .col-xs-8, #ex-debug-toolbar .col-xs-9, #ex-debug-toolbar .col-xs-10, #ex-debug-toolbar .col-xs-11, #ex-debug-toolbar .col-xs-12 {
    float: left; }
  #ex-debug-toolbar .col-xs-1 {
    width: 8.33333%; }
  #ex-debug-toolbar .col-xs-2 {
    width: 16.66667%; }
  #ex-debug-toolbar .col-xs-3 {
    width: 25%; }
  #ex-debug-toolbar .col-xs-4 {
    width: 33.33333%; }
  #ex-debug-toolbar .col-xs-5 {
    width: 41.66667%; }
  #ex-debug-toolbar .col-xs-6 {
    width: 50%; }
  #ex-debug-toolbar .col-xs-7 {
    width: 58.33333%; }
  #ex-debug-toolbar .col-xs-8 {
    width: 66.66667%; }
  #ex-debug-toolbar .col-xs-9 {
    width: 75%; }
  #ex-debug-toolbar .col-xs-10 {
    width: 83.33333%; }
  #ex-debug-toolbar .col-xs-11 {
    width: 91.66667%; }
  #ex-debug-toolbar .col-xs-12 {
    width: 100%; }
  #ex-debug-toolbar .col-xs-pull-0 {
    right: auto; }
  #ex-debug-toolbar .col-xs-pull-1 {
    right: 8.33333%; }
  #ex-debug-toolbar .col-xs-pull-2 {
    right: 16.66667%; }
  #ex-debug-toolbar .col-xs-pull-3 {
    right: 25%; }
  #ex-debug-toolbar .col-xs-pull-4 {
    right: 33.33333%; }
  #ex-debug-toolbar .col-xs-pull-5 {
    right: 41.66667%; }
  #ex-debug-toolbar .col-xs-pull-6 {
    right: 50%; }
  #ex-debug-toolbar .col-xs-pull-7 {
    right: 58.33333%; }
  #ex-debug-toolbar .col-xs-pull-8 {
    right: 66.66667%; }
  #ex-debug-toolbar .col-xs-pull-9 {
    right: 75%; }
  #ex-debug-toolbar .col-xs-pull-10 {
    right: 83.33333%; }
  #ex-debug-toolbar .col-xs-pull-11 {
    right: 91.66667%; }
  #ex-debug-toolbar .col-xs-pull-12 {
    right: 100%; }
  #ex-debug-toolbar .col-xs-push-0 {
    left: auto; }
  #ex-debug-toolbar .col-xs-push-1 {
    left: 8.33333%; }
  #ex-debug-toolbar .col-xs-push-2 {
    left: 16.66667%; }
  #ex-debug-toolbar .col-xs-push-3 {
    left: 25%; }
  #ex-debug-toolbar .col-xs-push-4 {
    left: 33.33333%; }
  #ex-debug-toolbar .col-xs-push-5 {
    left: 41.66667%; }
  #ex-debug-toolbar .col-xs-push-6 {
    left: 50%; }
  #ex-debug-toolbar .col-xs-push-7 {
    left: 58.33333%; }
  #ex-debug-toolbar .col-xs-push-8 {
    left: 66.66667%; }
  #ex-debug-toolbar .col-xs-push-9 {
    left: 75%; }
  #ex-debug-toolbar .col-xs-push-10 {
    left: 83.33333%; }
  #ex-debug-toolbar .col-xs-push-11 {
    left: 91.66667%; }
  #ex-debug-toolbar .col-xs-push-12 {
    left: 100%; }
  #ex-debug-toolbar .col-xs-offset-0 {
    margin-left: 0%; }
  #ex-debug-toolbar .col-xs-offset-1 {
    margin-left: 8.33333%; }
  #ex-debug-toolbar .col-xs-offset-2 {
    margin-left: 16.66667%; }
  #ex-debug-toolbar .col-xs-offset-3 {
    margin-left: 25%; }
  #ex-debug-toolbar .col-xs-offset-4 {
    margin-left: 33.33333%; }
  #ex-debug-toolbar .col-xs-offset-5 {
    margin-left: 41.66667%; }
  #ex-debug-toolbar .col-xs-offset-6 {
    margin-left: 50%; }
  #ex-debug-toolbar .col-xs-offset-7 {
    margin-left: 58.33333%; }
  #ex-debug-toolbar .col-xs-offset-8 {
    margin-left: 66.66667%; }
  #ex-debug-toolbar .col-xs-offset-9 {
    margin-left: 75%; }
  #ex-debug-toolbar .col-xs-offset-10 {
    margin-left: 83.33333%; }
  #ex-debug-toolbar .col-xs-offset-11 {
    margin-left: 91.66667%; }
  #ex-debug-toolbar .col-xs-offset-12 {
    margin-left: 100%; }
  @media (min-width: 768px) {
    #ex-debug-toolbar .col-sm-1, #ex-debug-toolbar .col-sm-2, #ex-debug-toolbar .col-sm-3, #ex-debug-toolbar .col-sm-4, #ex-debug-toolbar .col-sm-5, #ex-debug-toolbar .col-sm-6, #ex-debug-toolbar .col-sm-7, #ex-debug-toolbar .col-sm-8, #ex-debug-toolbar .col-sm-9, #ex-debug-toolbar .col-sm-10, #ex-debug-toolbar .col-sm-11, #ex-debug-toolbar .col-sm-12 {
      float: left; }
    #ex-debug-toolbar .col-sm-1 {
      width: 8.33333%; }
    #ex-debug-toolbar .col-sm-2 {
      width: 16.66667%; }
    #ex-debug-toolbar .col-sm-3 {
      width: 25%; }
    #ex-debug-toolbar .col-sm-4 {
      width: 33.33333%; }
    #ex-debug-toolbar .col-sm-5 {
      width: 41.66667%; }
    #ex-debug-toolbar .col-sm-6 {
      width: 50%; }
    #ex-debug-toolbar .col-sm-7 {
      width: 58.33333%; }
    #ex-debug-toolbar .col-sm-8 {
      width: 66.66667%; }
    #ex-debug-toolbar .col-sm-9 {
      width: 75%; }
    #ex-debug-toolbar .col-sm-10 {
      width: 83.33333%; }
    #ex-debug-toolbar .col-sm-11 {
      width: 91.66667%; }
    #ex-debug-toolbar .col-sm-12 {
      width: 100%; }
    #ex-debug-toolbar .col-sm-pull-0 {
      right: auto; }
    #ex-debug-toolbar .col-sm-pull-1 {
      right: 8.33333%; }
    #ex-debug-toolbar .col-sm-pull-2 {
      right: 16.66667%; }
    #ex-debug-toolbar .col-sm-pull-3 {
      right: 25%; }
    #ex-debug-toolbar .col-sm-pull-4 {
      right: 33.33333%; }
    #ex-debug-toolbar .col-sm-pull-5 {
      right: 41.66667%; }
    #ex-debug-toolbar .col-sm-pull-6 {
      right: 50%; }
    #ex-debug-toolbar .col-sm-pull-7 {
      right: 58.33333%; }
    #ex-debug-toolbar .col-sm-pull-8 {
      right: 66.66667%; }
    #ex-debug-toolbar .col-sm-pull-9 {
      right: 75%; }
    #ex-debug-toolbar .col-sm-pull-10 {
      right: 83.33333%; }
    #ex-debug-toolbar .col-sm-pull-11 {
      right: 91.66667%; }
    #ex-debug-toolbar .col-sm-pull-12 {
      right: 100%; }
    #ex-debug-toolbar .col-sm-push-0 {
      left: auto; }
    #ex-debug-toolbar .col-sm-push-1 {
      left: 8.33333%; }
    #ex-debug-toolbar .col-sm-push-2 {
      left: 16.66667%; }
    #ex-debug-toolbar .col-sm-push-3 {
      left: 25%; }
    #ex-debug-toolbar .col-sm-push-4 {
      left: 33.33333%; }
    #ex-debug-toolbar .col-sm-push-5 {
      left: 41.66667%; }
    #ex-debug-toolbar .col-sm-push-6 {
      left: 50%; }
    #ex-debug-toolbar .col-sm-push-7 {
      left: 58.33333%; }
    #ex-debug-toolbar .col-sm-push-8 {
      left: 66.66667%; }
    #ex-debug-toolbar .col-sm-push-9 {
      left: 75%; }
    #ex-debug-toolbar .col-sm-push-10 {
      left: 83.33333%; }
    #ex-debug-toolbar .col-sm-push-11 {
      left: 91.66667%; }
    #ex-debug-toolbar .col-sm-push-12 {
      left: 100%; }
    #ex-debug-toolbar .col-sm-offset-0 {
      margin-left: 0%; }
    #ex-debug-toolbar .col-sm-offset-1 {
      margin-left: 8.33333%; }
    #ex-debug-toolbar .col-sm-offset-2 {
      margin-left: 16.66667%; }
    #ex-debug-toolbar .col-sm-offset-3 {
      margin-left: 25%; }
    #ex-debug-toolbar .col-sm-offset-4 {
      margin-left: 33.33333%; }
    #ex-debug-toolbar .col-sm-offset-5 {
      margin-left: 41.66667%; }
    #ex-debug-toolbar .col-sm-offset-6 {
      margin-left: 50%; }
    #ex-debug-toolbar .col-sm-offset-7 {
      margin-left: 58.33333%; }
    #ex-debug-toolbar .col-sm-offset-8 {
      margin-left: 66.66667%; }
    #ex-debug-toolbar .col-sm-offset-9 {
      margin-left: 75%; }
    #ex-debug-toolbar .col-sm-offset-10 {
      margin-left: 83.33333%; }
    #ex-debug-toolbar .col-sm-offset-11 {
      margin-left: 91.66667%; }
    #ex-debug-toolbar .col-sm-offset-12 {
      margin-left: 100%; } }
  @media (min-width: 992px) {
    #ex-debug-toolbar .col-md-1, #ex-debug-toolbar .col-md-2, #ex-debug-toolbar .col-md-3, #ex-debug-toolbar .col-md-4, #ex-debug-toolbar .col-md-5, #ex-debug-toolbar .col-md-6, #ex-debug-toolbar .col-md-7, #ex-debug-toolbar .col-md-8, #ex-debug-toolbar .col-md-9, #ex-debug-toolbar .col-md-10, #ex-debug-toolbar .col-md-11, #ex-debug-toolbar .col-md-12 {
      float: left; }
    #ex-debug-toolbar .col-md-1 {
      width: 8.33333%; }
    #ex-debug-toolbar .col-md-2 {
      width: 16.66667%; }
    #ex-debug-toolbar .col-md-3 {
      width: 25%; }
    #ex-debug-toolbar .col-md-4 {
      width: 33.33333%; }
    #ex-debug-toolbar .col-md-5 {
      width: 41.66667%; }
    #ex-debug-toolbar .col-md-6 {
      width: 50%; }
    #ex-debug-toolbar .col-md-7 {
      width: 58.33333%; }
    #ex-debug-toolbar .col-md-8 {
      width: 66.66667%; }
    #ex-debug-toolbar .col-md-9 {
      width: 75%; }
    #ex-debug-toolbar .col-md-10 {
      width: 83.33333%; }
    #ex-debug-toolbar .col-md-11 {
      width: 91.66667%; }
    #ex-debug-toolbar .col-md-12 {
      width: 100%; }
    #ex-debug-toolbar .col-md-pull-0 {
      right: auto; }
    #ex-debug-toolbar .col-md-pull-1 {
      right: 8.33333%; }
    #ex-debug-toolbar .col-md-pull-2 {
      right: 16.66667%; }
    #ex-debug-toolbar .col-md-pull-3 {
      right: 25%; }
    #ex-debug-toolbar .col-md-pull-4 {
      right: 33.33333%; }
    #ex-debug-toolbar .col-md-pull-5 {
      right: 41.66667%; }
    #ex-debug-toolbar .col-md-pull-6 {
      right: 50%; }
    #ex-debug-toolbar .col-md-pull-7 {
      right: 58.33333%; }
    #ex-debug-toolbar .col-md-pull-8 {
      right: 66.66667%; }
    #ex-debug-toolbar .col-md-pull-9 {
      right: 75%; }
    #ex-debug-toolbar .col-md-pull-10 {
      right: 83.33333%; }
    #ex-debug-toolbar .col-md-pull-11 {
      right: 91.66667%; }
    #ex-debug-toolbar .col-md-pull-12 {
      right: 100%; }
    #ex-debug-toolbar .col-md-push-0 {
      left: auto; }
    #ex-debug-toolbar .col-md-push-1 {
      left: 8.33333%; }
    #ex-debug-toolbar .col-md-push-2 {
      left: 16.66667%; }
    #ex-debug-toolbar .col-md-push-3 {
      left: 25%; }
    #ex-debug-toolbar .col-md-push-4 {
      left: 33.33333%; }
    #ex-debug-toolbar .col-md-push-5 {
      left: 41.66667%; }
    #ex-debug-toolbar .col-md-push-6 {
      left: 50%; }
    #ex-debug-toolbar .col-md-push-7 {
      left: 58.33333%; }
    #ex-debug-toolbar .col-md-push-8 {
      left: 66.66667%; }
    #ex-debug-toolbar .col-md-push-9 {
      left: 75%; }
    #ex-debug-toolbar .col-md-push-10 {
      left: 83.33333%; }
    #ex-debug-toolbar .col-md-push-11 {
      left: 91.66667%; }
    #ex-debug-toolbar .col-md-push-12 {
      left: 100%; }
    #ex-debug-toolbar .col-md-offset-0 {
      margin-left: 0%; }
    #ex-debug-toolbar .col-md-offset-1 {
      margin-left: 8.33333%; }
    #ex-debug-toolbar .col-md-offset-2 {
      margin-left: 16.66667%; }
    #ex-debug-toolbar .col-md-offset-3 {
      margin-left: 25%; }
    #ex-debug-toolbar .col-md-offset-4 {
      margin-left: 33.33333%; }
    #ex-debug-toolbar .col-md-offset-5 {
      margin-left: 41.66667%; }
    #ex-debug-toolbar .col-md-offset-6 {
      margin-left: 50%; }
    #ex-debug-toolbar .col-md-offset-7 {
      margin-left: 58.33333%; }
    #ex-debug-toolbar .col-md-offset-8 {
      margin-left: 66.66667%; }
    #ex-debug-toolbar .col-md-offset-9 {
      margin-left: 75%; }
    #ex-debug-toolbar .col-md-offset-10 {
      margin-left: 83.33333%; }
    #ex-debug-toolbar .col-md-offset-11 {
      margin-left: 91.66667%; }
    #ex-debug-toolbar .col-md-offset-12 {
      margin-left: 100%; } }
  @media (min-width: 1200px) {
    #ex-debug-toolbar .col-lg-1, #ex-debug-toolbar .col-lg-2, #ex-debug-toolbar .col-lg-3, #ex-debug-toolbar .col-lg-4, #ex-debug-toolbar .col-lg-5, #ex-debug-toolbar .col-lg-6, #ex-debug-toolbar .col-lg-7, #ex-debug-toolbar .col-lg-8, #ex-debug-toolbar .col-lg-9, #ex-debug-toolbar .col-lg-10, #ex-debug-toolbar .col-lg-11, #ex-debug-toolbar .col-lg-12 {
      float: left; }
    #ex-debug-toolbar .col-lg-1 {
      width: 8.33333%; }
    #ex-debug-toolbar .col-lg-2 {
      width: 16.66667%; }
    #ex-debug-toolbar .col-lg-3 {
      width: 25%; }
    #ex-debug-toolbar .col-lg-4 {
      width: 33.33333%; }
    #ex-debug-toolbar .col-lg-5 {
      width: 41.66667%; }
    #ex-debug-toolbar .col-lg-6 {
      width: 50%; }
    #ex-debug-toolbar .col-lg-7 {
      width: 58.33333%; }
    #ex-debug-toolbar .col-lg-8 {
      width: 66.66667%; }
    #ex-debug-toolbar .col-lg-9 {
      width: 75%; }
    #ex-debug-toolbar .col-lg-10 {
      width: 83.33333%; }
    #ex-debug-toolbar .col-lg-11 {
      width: 91.66667%; }
    #ex-debug-toolbar .col-lg-12 {
      width: 100%; }
    #ex-debug-toolbar .col-lg-pull-0 {
      right: auto; }
    #ex-debug-toolbar .col-lg-pull-1 {
      right: 8.33333%; }
    #ex-debug-toolbar .col-lg-pull-2 {
      right: 16.66667%; }
    #ex-debug-toolbar .col-lg-pull-3 {
      right: 25%; }
    #ex-debug-toolbar .col-lg-pull-4 {
      right: 33.33333%; }
    #ex-debug-toolbar .col-lg-pull-5 {
      right: 41.66667%; }
    #ex-debug-toolbar .col-lg-pull-6 {
      right: 50%; }
    #ex-debug-toolbar .col-lg-pull-7 {
      right: 58.33333%; }
    #ex-debug-toolbar .col-lg-pull-8 {
      right: 66.66667%; }
    #ex-debug-toolbar .col-lg-pull-9 {
      right: 75%; }
    #ex-debug-toolbar .col-lg-pull-10 {
      right: 83.33333%; }
    #ex-debug-toolbar .col-lg-pull-11 {
      right: 91.66667%; }
    #ex-debug-toolbar .col-lg-pull-12 {
      right: 100%; }
    #ex-debug-toolbar .col-lg-push-0 {
      left: auto; }
    #ex-debug-toolbar .col-lg-push-1 {
      left: 8.33333%; }
    #ex-debug-toolbar .col-lg-push-2 {
      left: 16.66667%; }
    #ex-debug-toolbar .col-lg-push-3 {
      left: 25%; }
    #ex-debug-toolbar .col-lg-push-4 {
      left: 33.33333%; }
    #ex-debug-toolbar .col-lg-push-5 {
      left: 41.66667%; }
    #ex-debug-toolbar .col-lg-push-6 {
      left: 50%; }
    #ex-debug-toolbar .col-lg-push-7 {
      left: 58.33333%; }
    #ex-debug-toolbar .col-lg-push-8 {
      left: 66.66667%; }
    #ex-debug-toolbar .col-lg-push-9 {
      left: 75%; }
    #ex-debug-toolbar .col-lg-push-10 {
      left: 83.33333%; }
    #ex-debug-toolbar .col-lg-push-11 {
      left: 91.66667%; }
    #ex-debug-toolbar .col-lg-push-12 {
      left: 100%; }
    #ex-debug-toolbar .col-lg-offset-0 {
      margin-left: 0%; }
    #ex-debug-toolbar .col-lg-offset-1 {
      margin-left: 8.33333%; }
    #ex-debug-toolbar .col-lg-offset-2 {
      margin-left: 16.66667%; }
    #ex-debug-toolbar .col-lg-offset-3 {
      margin-left: 25%; }
    #ex-debug-toolbar .col-lg-offset-4 {
      margin-left: 33.33333%; }
    #ex-debug-toolbar .col-lg-offset-5 {
      margin-left: 41.66667%; }
    #ex-debug-toolbar .col-lg-offset-6 {
      margin-left: 50%; }
    #ex-debug-toolbar .col-lg-offset-7 {
      margin-left: 58.33333%; }
    #ex-debug-toolbar .col-lg-offset-8 {
      margin-left: 66.66667%; }
    #ex-debug-toolbar .col-lg-offset-9 {
      margin-left: 75%; }
    #ex-debug-toolbar .col-lg-offset-10 {
      margin-left: 83.33333%; }
    #ex-debug-toolbar .col-lg-offset-11 {
      margin-left: 91.66667%; }
    #ex-debug-toolbar .col-lg-offset-12 {
      margin-left: 100%; } }
  #ex-debug-toolbar table {
    background-color: transparent; }
  #ex-debug-toolbar caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777777;
    text-align: left; }
  #ex-debug-toolbar th {
    text-align: left; }
  #ex-debug-toolbar .table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px; }
    #ex-debug-toolbar .table > thead > tr > th,
    #ex-debug-toolbar .table > thead > tr > td,
    #ex-debug-toolbar .table > tbody > tr > th,
    #ex-debug-toolbar .table > tbody > tr > td,
    #ex-debug-toolbar .table > tfoot > tr > th,
    #ex-debug-toolbar .table > tfoot > tr > td {
      padding: 8px;
      line-height: 1.42857;
      vertical-align: top;
      border-top: 1px solid #ddd; }
    #ex-debug-toolbar .table > thead > tr > th {
      vertical-align: bottom;
      border-bottom: 2px solid #ddd; }
    #ex-debug-toolbar .table > caption + thead > tr:first-child > th,
    #ex-debug-toolbar .table > caption + thead > tr:first-child > td,
    #ex-debug-toolbar .table > colgroup + thead > tr:first-child > th,
    #ex-debug-toolbar .table > colgroup + thead > tr:first-child > td,
    #ex-debug-toolbar .table > thead:first-child > tr:first-child > th,
    #ex-debug-toolbar .table > thead:first-child > tr:first-child > td {
      border-top: 0; }
    #ex-debug-toolbar .table > tbody + tbody {
      border-top: 2px solid #ddd; }
    #ex-debug-toolbar .table .table {
      background-color: #fff; }
  #ex-debug-toolbar .table-condensed > thead > tr > th,
  #ex-debug-toolbar .table-condensed > thead > tr > td,
  #ex-debug-toolbar .table-condensed > tbody > tr > th,
  #ex-debug-toolbar .table-condensed > tbody > tr > td,
  #ex-debug-toolbar .table-condensed > tfoot > tr > th,
  #ex-debug-toolbar .table-condensed > tfoot > tr > td {
    padding: 5px; }
  #ex-debug-toolbar .table-bordered {
    border: 1px solid #ddd; }
    #ex-debug-toolbar .table-bordered > thead > tr > th,
    #ex-debug-toolbar .table-bordered > thead > tr > td,
    #ex-debug-toolbar .table-bordered > tbody > tr > th,
    #ex-debug-toolbar .table-bordered > tbody > tr > td,
    #ex-debug-toolbar .table-bordered > tfoot > tr > th,
    #ex-debug-toolbar .table-bordered > tfoot > tr > td {
      border: 1px solid #ddd; }
    #ex-debug-toolbar .table-bordered > thead > tr > th,
    #ex-debug-toolbar .table-bordered > thead > tr > td {
      border-bottom-width: 2px; }
  #ex-debug-toolbar .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9; }
  #ex-debug-toolbar .table-hover > tbody > tr:hover {
    background-color: #f5f5f5; }
  #ex-debug-toolbar table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column; }
  #ex-debug-toolbar table td[class*="col-"],
  #ex-debug-toolbar table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell; }
  #ex-debug-toolbar .table > thead > tr > td.active,
  #ex-debug-toolbar .table > thead > tr > th.active,
  #ex-debug-toolbar .table > thead > tr.active > td,
  #ex-debug-toolbar .table > thead > tr.active > th,
  #ex-debug-toolbar .table > tbody > tr > td.active,
  #ex-debug-toolbar .table > tbody > tr > th.active,
  #ex-debug-toolbar .table > tbody > tr.active > td,
  #ex-debug-toolbar .table > tbody > tr.active > th,
  #ex-debug-toolbar .table > tfoot > tr > td.active,
  #ex-debug-toolbar .table > tfoot > tr > th.active,
  #ex-debug-toolbar .table > tfoot > tr.active > td,
  #ex-debug-toolbar .table > tfoot > tr.active > th {
    background-color: #f5f5f5; }
  #ex-debug-toolbar .table-hover > tbody > tr > td.active:hover,
  #ex-debug-toolbar .table-hover > tbody > tr > th.active:hover,
  #ex-debug-toolbar .table-hover > tbody > tr.active:hover > td,
  #ex-debug-toolbar .table-hover > tbody > tr:hover > .active,
  #ex-debug-toolbar .table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8; }
  #ex-debug-toolbar .table > thead > tr > td.success,
  #ex-debug-toolbar .table > thead > tr > th.success,
  #ex-debug-toolbar .table > thead > tr.success > td,
  #ex-debug-toolbar .table > thead > tr.success > th,
  #ex-debug-toolbar .table > tbody > tr > td.success,
  #ex-debug-toolbar .table > tbody > tr > th.success,
  #ex-debug-toolbar .table > tbody > tr.success > td,
  #ex-debug-toolbar .table > tbody > tr.success > th,
  #ex-debug-toolbar .table > tfoot > tr > td.success,
  #ex-debug-toolbar .table > tfoot > tr > th.success,
  #ex-debug-toolbar .table > tfoot > tr.success > td,
  #ex-debug-toolbar .table > tfoot > tr.success > th {
    background-color: #dff0d8; }
  #ex-debug-toolbar .table-hover > tbody > tr > td.success:hover,
  #ex-debug-toolbar .table-hover > tbody > tr > th.success:hover,
  #ex-debug-toolbar .table-hover > tbody > tr.success:hover > td,
  #ex-debug-toolbar .table-hover > tbody > tr:hover > .success,
  #ex-debug-toolbar .table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6; }
  #ex-debug-toolbar .table > thead > tr > td.info,
  #ex-debug-toolbar .table > thead > tr > th.info,
  #ex-debug-toolbar .table > thead > tr.info > td,
  #ex-debug-toolbar .table > thead > tr.info > th,
  #ex-debug-toolbar .table > tbody > tr > td.info,
  #ex-debug-toolbar .table > tbody > tr > th.info,
  #ex-debug-toolbar .table > tbody > tr.info > td,
  #ex-debug-toolbar .table > tbody > tr.info > th,
  #ex-debug-toolbar .table > tfoot > tr > td.info,
  #ex-debug-toolbar .table > tfoot > tr > th.info,
  #ex-debug-toolbar .table > tfoot > tr.info > td,
  #ex-debug-toolbar .table > tfoot > tr.info > th {
    background-color: #d9edf7; }
  #ex-debug-toolbar .table-hover > tbody > tr > td.info:hover,
  #ex-debug-toolbar .table-hover > tbody > tr > th.info:hover,
  #ex-debug-toolbar .table-hover > tbody > tr.info:hover > td,
  #ex-debug-toolbar .table-hover > tbody > tr:hover > .info,
  #ex-debug-toolbar .table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3; }
  #ex-debug-toolbar .table > thead > tr > td.warning,
  #ex-debug-toolbar .table > thead > tr > th.warning,
  #ex-debug-toolbar .table > thead > tr.warning > td,
  #ex-debug-toolbar .table > thead > tr.warning > th,
  #ex-debug-toolbar .table > tbody > tr > td.warning,
  #ex-debug-toolbar .table > tbody > tr > th.warning,
  #ex-debug-toolbar .table > tbody > tr.warning > td,
  #ex-debug-toolbar .table > tbody > tr.warning > th,
  #ex-debug-toolbar .table > tfoot > tr > td.warning,
  #ex-debug-toolbar .table > tfoot > tr > th.warning,
  #ex-debug-toolbar .table > tfoot > tr.warning > td,
  #ex-debug-toolbar .table > tfoot > tr.warning > th {
    background-color: #fcf8e3; }
  #ex-debug-toolbar .table-hover > tbody > tr > td.warning:hover,
  #ex-debug-toolbar .table-hover > tbody > tr > th.warning:hover,
  #ex-debug-toolbar .table-hover > tbody > tr.warning:hover > td,
  #ex-debug-toolbar .table-hover > tbody > tr:hover > .warning,
  #ex-debug-toolbar .table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc; }
  #ex-debug-toolbar .table > thead > tr > td.danger,
  #ex-debug-toolbar .table > thead > tr > th.danger,
  #ex-debug-toolbar .table > thead > tr.danger > td,
  #ex-debug-toolbar .table > thead > tr.danger > th,
  #ex-debug-toolbar .table > tbody > tr > td.danger,
  #ex-debug-toolbar .table > tbody > tr > th.danger,
  #ex-debug-toolbar .table > tbody > tr.danger > td,
  #ex-debug-toolbar .table > tbody > tr.danger > th,
  #ex-debug-toolbar .table > tfoot > tr > td.danger,
  #ex-debug-toolbar .table > tfoot > tr > th.danger,
  #ex-debug-toolbar .table > tfoot > tr.danger > td,
  #ex-debug-toolbar .table > tfoot > tr.danger > th {
    background-color: #f2dede; }
  #ex-debug-toolbar .table-hover > tbody > tr > td.danger:hover,
  #ex-debug-toolbar .table-hover > tbody > tr > th.danger:hover,
  #ex-debug-toolbar .table-hover > tbody > tr.danger:hover > td,
  #ex-debug-toolbar .table-hover > tbody > tr:hover > .danger,
  #ex-debug-toolbar .table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc; }
  #ex-debug-toolbar .table-responsive {
    overflow-x: auto;
    min-height: 0.01%; }
    @media screen and (max-width: 767px) {
      #ex-debug-toolbar .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd; }
        #ex-debug-toolbar .table-responsive > .table {
          margin-bottom: 0; }
          #ex-debug-toolbar .table-responsive > .table > thead > tr > th,
          #ex-debug-toolbar .table-responsive > .table > thead > tr > td,
          #ex-debug-toolbar .table-responsive > .table > tbody > tr > th,
          #ex-debug-toolbar .table-responsive > .table > tbody > tr > td,
          #ex-debug-toolbar .table-responsive > .table > tfoot > tr > th,
          #ex-debug-toolbar .table-responsive > .table > tfoot > tr > td {
            white-space: nowrap; }
        #ex-debug-toolbar .table-responsive > .table-bordered {
          border: 0; }
          #ex-debug-toolbar .table-responsive > .table-bordered > thead > tr > th:first-child,
          #ex-debug-toolbar .table-responsive > .table-bordered > thead > tr > td:first-child,
          #ex-debug-toolbar .table-responsive > .table-bordered > tbody > tr > th:first-child,
          #ex-debug-toolbar .table-responsive > .table-bordered > tbody > tr > td:first-child,
          #ex-debug-toolbar .table-responsive > .table-bordered > tfoot > tr > th:first-child,
          #ex-debug-toolbar .table-responsive > .table-bordered > tfoot > tr > td:first-child {
            border-left: 0; }
          #ex-debug-toolbar .table-responsive > .table-bordered > thead > tr > th:last-child,
          #ex-debug-toolbar .table-responsive > .table-bordered > thead > tr > td:last-child,
          #ex-debug-toolbar .table-responsive > .table-bordered > tbody > tr > th:last-child,
          #ex-debug-toolbar .table-responsive > .table-bordered > tbody > tr > td:last-child,
          #ex-debug-toolbar .table-responsive > .table-bordered > tfoot > tr > th:last-child,
          #ex-debug-toolbar .table-responsive > .table-bordered > tfoot > tr > td:last-child {
            border-right: 0; }
          #ex-debug-toolbar .table-responsive > .table-bordered > tbody > tr:last-child > th,
          #ex-debug-toolbar .table-responsive > .table-bordered > tbody > tr:last-child > td,
          #ex-debug-toolbar .table-responsive > .table-bordered > tfoot > tr:last-child > th,
          #ex-debug-toolbar .table-responsive > .table-bordered > tfoot > tr:last-child > td {
            border-bottom: 0; } }
  #ex-debug-toolbar fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0; }
  #ex-debug-toolbar legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333333;
    border: 0;
    border-bottom: 1px solid #e5e5e5; }
  #ex-debug-toolbar label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold; }
  #ex-debug-toolbar input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  #ex-debug-toolbar input[type="radio"],
  #ex-debug-toolbar input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal; }
  #ex-debug-toolbar input[type="file"] {
    display: block; }
  #ex-debug-toolbar input[type="range"] {
    display: block;
    width: 100%; }
  #ex-debug-toolbar select[multiple],
  #ex-debug-toolbar select[size] {
    height: auto; }
  #ex-debug-toolbar input[type="file"]:focus,
  #ex-debug-toolbar input[type="radio"]:focus,
  #ex-debug-toolbar input[type="checkbox"]:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  #ex-debug-toolbar output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857;
    color: #555555; }
  #ex-debug-toolbar .form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    color: #555555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -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; }
    #ex-debug-toolbar .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); }
    #ex-debug-toolbar .form-control::-moz-placeholder {
      color: #999;
      opacity: 1; }
    #ex-debug-toolbar .form-control:-ms-input-placeholder {
      color: #999; }
    #ex-debug-toolbar .form-control::-webkit-input-placeholder {
      color: #999; }
    #ex-debug-toolbar .form-control::-ms-expand {
      border: 0;
      background-color: transparent; }
    #ex-debug-toolbar .form-control[disabled], #ex-debug-toolbar .form-control[readonly],
    fieldset[disabled] #ex-debug-toolbar .form-control {
      background-color: #eeeeee;
      opacity: 1; }
    #ex-debug-toolbar .form-control[disabled],
    fieldset[disabled] #ex-debug-toolbar .form-control {
      cursor: not-allowed; }
  #ex-debug-toolbar textarea.form-control {
    height: auto; }
  #ex-debug-toolbar input[type="search"] {
    -webkit-appearance: none; }
  @media screen and (-webkit-min-device-pixel-ratio: 0) {
    #ex-debug-toolbar input[type="date"].form-control,
    #ex-debug-toolbar input[type="time"].form-control,
    #ex-debug-toolbar input[type="datetime-local"].form-control,
    #ex-debug-toolbar input[type="month"].form-control {
      line-height: 34px; }
    #ex-debug-toolbar input[type="date"].input-sm, #ex-debug-toolbar .input-group-sm > input[type="date"].form-control, #ex-debug-toolbar .input-group-sm > input[type="date"].input-group-addon, #ex-debug-toolbar .input-group-sm > .input-group-btn > input[type="date"].btn,
    .input-group-sm #ex-debug-toolbar input[type="date"],
    #ex-debug-toolbar input[type="time"].input-sm, #ex-debug-toolbar .input-group-sm > input[type="time"].form-control, #ex-debug-toolbar .input-group-sm > input[type="time"].input-group-addon, #ex-debug-toolbar .input-group-sm > .input-group-btn > input[type="time"].btn,
    .input-group-sm
    #ex-debug-toolbar input[type="time"],
    #ex-debug-toolbar input[type="datetime-local"].input-sm, #ex-debug-toolbar .input-group-sm > input[type="datetime-local"].form-control, #ex-debug-toolbar .input-group-sm > input[type="datetime-local"].input-group-addon, #ex-debug-toolbar .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
    .input-group-sm
    #ex-debug-toolbar input[type="datetime-local"],
    #ex-debug-toolbar input[type="month"].input-sm, #ex-debug-toolbar .input-group-sm > input[type="month"].form-control, #ex-debug-toolbar .input-group-sm > input[type="month"].input-group-addon, #ex-debug-toolbar .input-group-sm > .input-group-btn > input[type="month"].btn,
    .input-group-sm
    #ex-debug-toolbar input[type="month"] {
      line-height: 30px; }
    #ex-debug-toolbar input[type="date"].input-lg, #ex-debug-toolbar .input-group-lg > input[type="date"].form-control, #ex-debug-toolbar .input-group-lg > input[type="date"].input-group-addon, #ex-debug-toolbar .input-group-lg > .input-group-btn > input[type="date"].btn,
    .input-group-lg #ex-debug-toolbar input[type="date"],
    #ex-debug-toolbar input[type="time"].input-lg, #ex-debug-toolbar .input-group-lg > input[type="time"].form-control, #ex-debug-toolbar .input-group-lg > input[type="time"].input-group-addon, #ex-debug-toolbar .input-group-lg > .input-group-btn > input[type="time"].btn,
    .input-group-lg
    #ex-debug-toolbar input[type="time"],
    #ex-debug-toolbar input[type="datetime-local"].input-lg, #ex-debug-toolbar .input-group-lg > input[type="datetime-local"].form-control, #ex-debug-toolbar .input-group-lg > input[type="datetime-local"].input-group-addon, #ex-debug-toolbar .input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
    .input-group-lg
    #ex-debug-toolbar input[type="datetime-local"],
    #ex-debug-toolbar input[type="month"].input-lg, #ex-debug-toolbar .input-group-lg > input[type="month"].form-control, #ex-debug-toolbar .input-group-lg > input[type="month"].input-group-addon, #ex-debug-toolbar .input-group-lg > .input-group-btn > input[type="month"].btn,
    .input-group-lg
    #ex-debug-toolbar input[type="month"] {
      line-height: 46px; } }
  #ex-debug-toolbar .form-group {
    margin-bottom: 15px; }
  #ex-debug-toolbar .radio,
  #ex-debug-toolbar .checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px; }
    #ex-debug-toolbar .radio label,
    #ex-debug-toolbar .checkbox label {
      min-height: 20px;
      padding-left: 20px;
      margin-bottom: 0;
      font-weight: normal;
      cursor: pointer; }
  #ex-debug-toolbar .radio input[type="radio"],
  #ex-debug-toolbar .radio-inline input[type="radio"],
  #ex-debug-toolbar .checkbox input[type="checkbox"],
  #ex-debug-toolbar .checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px \9; }
  #ex-debug-toolbar .radio + .radio,
  #ex-debug-toolbar .checkbox + .checkbox {
    margin-top: -5px; }
  #ex-debug-toolbar .radio-inline,
  #ex-debug-toolbar .checkbox-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: normal;
    cursor: pointer; }
  #ex-debug-toolbar .radio-inline + .radio-inline,
  #ex-debug-toolbar .checkbox-inline + .checkbox-inline {
    margin-top: 0;
    margin-left: 10px; }
  #ex-debug-toolbar input[type="radio"][disabled], #ex-debug-toolbar input[type="radio"].disabled,
  fieldset[disabled] #ex-debug-toolbar input[type="radio"],
  #ex-debug-toolbar input[type="checkbox"][disabled],
  #ex-debug-toolbar input[type="checkbox"].disabled,
  fieldset[disabled]
  #ex-debug-toolbar input[type="checkbox"] {
    cursor: not-allowed; }
  #ex-debug-toolbar .radio-inline.disabled,
  fieldset[disabled] #ex-debug-toolbar .radio-inline,
  #ex-debug-toolbar .checkbox-inline.disabled,
  fieldset[disabled]
  #ex-debug-toolbar .checkbox-inline {
    cursor: not-allowed; }
  #ex-debug-toolbar .radio.disabled label,
  fieldset[disabled] #ex-debug-toolbar .radio label,
  #ex-debug-toolbar .checkbox.disabled label,
  fieldset[disabled]
  #ex-debug-toolbar .checkbox label {
    cursor: not-allowed; }
  #ex-debug-toolbar .form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
    min-height: 34px; }
    #ex-debug-toolbar .form-control-static.input-lg, #ex-debug-toolbar .input-group-lg > .form-control-static.form-control, #ex-debug-toolbar .input-group-lg > .form-control-static.input-group-addon, #ex-debug-toolbar .input-group-lg > .input-group-btn > .form-control-static.btn, #ex-debug-toolbar .form-control-static.input-sm, #ex-debug-toolbar .input-group-sm > .form-control-static.form-control, #ex-debug-toolbar .input-group-sm > .form-control-static.input-group-addon, #ex-debug-toolbar .input-group-sm > .input-group-btn > .form-control-static.btn {
      padding-left: 0;
      padding-right: 0; }
  #ex-debug-toolbar .input-sm, #ex-debug-toolbar .input-group-sm > .form-control, #ex-debug-toolbar .input-group-sm > .input-group-addon, #ex-debug-toolbar .input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px; }
  #ex-debug-toolbar select.input-sm, #ex-debug-toolbar .input-group-sm > select.form-control, #ex-debug-toolbar .input-group-sm > select.input-group-addon, #ex-debug-toolbar .input-group-sm > .input-group-btn > select.btn {
    height: 30px;
    line-height: 30px; }
  #ex-debug-toolbar textarea.input-sm, #ex-debug-toolbar .input-group-sm > textarea.form-control, #ex-debug-toolbar .input-group-sm > textarea.input-group-addon, #ex-debug-toolbar .input-group-sm > .input-group-btn > textarea.btn,
  #ex-debug-toolbar select[multiple].input-sm, #ex-debug-toolbar .input-group-sm > select[multiple].form-control, #ex-debug-toolbar .input-group-sm > select[multiple].input-group-addon, #ex-debug-toolbar .input-group-sm > .input-group-btn > select[multiple].btn {
    height: auto; }
  #ex-debug-toolbar .form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px; }
  #ex-debug-toolbar .form-group-sm select.form-control {
    height: 30px;
    line-height: 30px; }
  #ex-debug-toolbar .form-group-sm textarea.form-control,
  #ex-debug-toolbar .form-group-sm select[multiple].form-control {
    height: auto; }
  #ex-debug-toolbar .form-group-sm .form-control-static {
    height: 30px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5; }
  #ex-debug-toolbar .input-lg, #ex-debug-toolbar .input-group-lg > .form-control, #ex-debug-toolbar .input-group-lg > .input-group-addon, #ex-debug-toolbar .input-group-lg > .input-group-btn > .btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 6px; }
  #ex-debug-toolbar select.input-lg, #ex-debug-toolbar .input-group-lg > select.form-control, #ex-debug-toolbar .input-group-lg > select.input-group-addon, #ex-debug-toolbar .input-group-lg > .input-group-btn > select.btn {
    height: 46px;
    line-height: 46px; }
  #ex-debug-toolbar textarea.input-lg, #ex-debug-toolbar .input-group-lg > textarea.form-control, #ex-debug-toolbar .input-group-lg > textarea.input-group-addon, #ex-debug-toolbar .input-group-lg > .input-group-btn > textarea.btn,
  #ex-debug-toolbar select[multiple].input-lg, #ex-debug-toolbar .input-group-lg > select[multiple].form-control, #ex-debug-toolbar .input-group-lg > select[multiple].input-group-addon, #ex-debug-toolbar .input-group-lg > .input-group-btn > select[multiple].btn {
    height: auto; }
  #ex-debug-toolbar .form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 6px; }
  #ex-debug-toolbar .form-group-lg select.form-control {
    height: 46px;
    line-height: 46px; }
  #ex-debug-toolbar .form-group-lg textarea.form-control,
  #ex-debug-toolbar .form-group-lg select[multiple].form-control {
    height: auto; }
  #ex-debug-toolbar .form-group-lg .form-control-static {
    height: 46px;
    min-height: 38px;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1.33333; }
  #ex-debug-toolbar .has-feedback {
    position: relative; }
    #ex-debug-toolbar .has-feedback .form-control {
      padding-right: 42.5px; }
  #ex-debug-toolbar .form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none; }
  #ex-debug-toolbar .input-lg + .form-control-feedback, #ex-debug-toolbar .input-group-lg > .form-control + .form-control-feedback, #ex-debug-toolbar .input-group-lg > .input-group-addon + .form-control-feedback, #ex-debug-toolbar .input-group-lg > .input-group-btn > .btn + .form-control-feedback,
  #ex-debug-toolbar .input-group-lg + .form-control-feedback,
  #ex-debug-toolbar .form-group-lg .form-control + .form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px; }
  #ex-debug-toolbar .input-sm + .form-control-feedback, #ex-debug-toolbar .input-group-sm > .form-control + .form-control-feedback, #ex-debug-toolbar .input-group-sm > .input-group-addon + .form-control-feedback, #ex-debug-toolbar .input-group-sm > .input-group-btn > .btn + .form-control-feedback,
  #ex-debug-toolbar .input-group-sm + .form-control-feedback,
  #ex-debug-toolbar .form-group-sm .form-control + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px; }
  #ex-debug-toolbar .has-success .help-block,
  #ex-debug-toolbar .has-success .control-label,
  #ex-debug-toolbar .has-success .radio,
  #ex-debug-toolbar .has-success .checkbox,
  #ex-debug-toolbar .has-success .radio-inline,
  #ex-debug-toolbar .has-success .checkbox-inline,
  #ex-debug-toolbar .has-success.radio label,
  #ex-debug-toolbar .has-success.checkbox label,
  #ex-debug-toolbar .has-success.radio-inline label,
  #ex-debug-toolbar .has-success.checkbox-inline label {
    color: #3c763d; }
  #ex-debug-toolbar .has-success .form-control {
    border-color: #3c763d;
    -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); }
    #ex-debug-toolbar .has-success .form-control:focus {
      border-color: #2b542c;
      -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }
  #ex-debug-toolbar .has-success .input-group-addon {
    color: #3c763d;
    border-color: #3c763d;
    background-color: #dff0d8; }
  #ex-debug-toolbar .has-success .form-control-feedback {
    color: #3c763d; }
  #ex-debug-toolbar .has-warning .help-block,
  #ex-debug-toolbar .has-warning .control-label,
  #ex-debug-toolbar .has-warning .radio,
  #ex-debug-toolbar .has-warning .checkbox,
  #ex-debug-toolbar .has-warning .radio-inline,
  #ex-debug-toolbar .has-warning .checkbox-inline,
  #ex-debug-toolbar .has-warning.radio label,
  #ex-debug-toolbar .has-warning.checkbox label,
  #ex-debug-toolbar .has-warning.radio-inline label,
  #ex-debug-toolbar .has-warning.checkbox-inline label {
    color: #8a6d3b; }
  #ex-debug-toolbar .has-warning .form-control {
    border-color: #8a6d3b;
    -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); }
    #ex-debug-toolbar .has-warning .form-control:focus {
      border-color: #66512c;
      -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }
  #ex-debug-toolbar .has-warning .input-group-addon {
    color: #8a6d3b;
    border-color: #8a6d3b;
    background-color: #fcf8e3; }
  #ex-debug-toolbar .has-warning .form-control-feedback {
    color: #8a6d3b; }
  #ex-debug-toolbar .has-error .help-block,
  #ex-debug-toolbar .has-error .control-label,
  #ex-debug-toolbar .has-error .radio,
  #ex-debug-toolbar .has-error .checkbox,
  #ex-debug-toolbar .has-error .radio-inline,
  #ex-debug-toolbar .has-error .checkbox-inline,
  #ex-debug-toolbar .has-error.radio label,
  #ex-debug-toolbar .has-error.checkbox label,
  #ex-debug-toolbar .has-error.radio-inline label,
  #ex-debug-toolbar .has-error.checkbox-inline label {
    color: #a94442; }
  #ex-debug-toolbar .has-error .form-control {
    border-color: #a94442;
    -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); }
    #ex-debug-toolbar .has-error .form-control:focus {
      border-color: #843534;
      -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }
  #ex-debug-toolbar .has-error .input-group-addon {
    color: #a94442;
    border-color: #a94442;
    background-color: #f2dede; }
  #ex-debug-toolbar .has-error .form-control-feedback {
    color: #a94442; }
  #ex-debug-toolbar .has-feedback label ~ .form-control-feedback {
    top: 25px; }
  #ex-debug-toolbar .has-feedback label.sr-only ~ .form-control-feedback {
    top: 0; }
  #ex-debug-toolbar .help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373; }
  @media (min-width: 768px) {
    #ex-debug-toolbar .form-inline .form-group {
      display: inline-block;
      margin-bottom: 0;
      vertical-align: middle; }
    #ex-debug-toolbar .form-inline .form-control {
      display: inline-block;
      width: auto;
      vertical-align: middle; }
    #ex-debug-toolbar .form-inline .form-control-static {
      display: inline-block; }
    #ex-debug-toolbar .form-inline .input-group {
      display: inline-table;
      vertical-align: middle; }
      #ex-debug-toolbar .form-inline .input-group .input-group-addon,
      #ex-debug-toolbar .form-inline .input-group .input-group-btn,
      #ex-debug-toolbar .form-inline .input-group .form-control {
        width: auto; }
    #ex-debug-toolbar .form-inline .input-group > .form-control {
      width: 100%; }
    #ex-debug-toolbar .form-inline .control-label {
      margin-bottom: 0;
      vertical-align: middle; }
    #ex-debug-toolbar .form-inline .radio,
    #ex-debug-toolbar .form-inline .checkbox {
      display: inline-block;
      margin-top: 0;
      margin-bottom: 0;
      vertical-align: middle; }
      #ex-debug-toolbar .form-inline .radio label,
      #ex-debug-toolbar .form-inline .checkbox label {
        padding-left: 0; }
    #ex-debug-toolbar .form-inline .radio input[type="radio"],
    #ex-debug-toolbar .form-inline .checkbox input[type="checkbox"] {
      position: relative;
      margin-left: 0; }
    #ex-debug-toolbar .form-inline .has-feedback .form-control-feedback {
      top: 0; } }
  #ex-debug-toolbar .form-horizontal .radio,
  #ex-debug-toolbar .form-horizontal .checkbox,
  #ex-debug-toolbar .form-horizontal .radio-inline,
  #ex-debug-toolbar .form-horizontal .checkbox-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px; }
  #ex-debug-toolbar .form-horizontal .radio,
  #ex-debug-toolbar .form-horizontal .checkbox {
    min-height: 27px; }
  #ex-debug-toolbar .form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px; }
    #ex-debug-toolbar .form-horizontal .form-group:before, #ex-debug-toolbar .form-horizontal .form-group:after {
      content: " ";
      display: table; }
    #ex-debug-toolbar .form-horizontal .form-group:after {
      clear: both; }
  @media (min-width: 768px) {
    #ex-debug-toolbar .form-horizontal .control-label {
      text-align: right;
      margin-bottom: 0;
      padding-top: 7px; } }
  #ex-debug-toolbar .form-horizontal .has-feedback .form-control-feedback {
    right: 15px; }
  @media (min-width: 768px) {
    #ex-debug-toolbar .form-horizontal .form-group-lg .control-label {
      padding-top: 11px;
      font-size: 18px; } }
  @media (min-width: 768px) {
    #ex-debug-toolbar .form-horizontal .form-group-sm .control-label {
      padding-top: 6px;
      font-size: 12px; } }
  #ex-debug-toolbar .btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #ex-debug-toolbar .btn:focus, #ex-debug-toolbar .btn.focus, #ex-debug-toolbar .btn:active:focus, #ex-debug-toolbar .btn:active.focus, #ex-debug-toolbar .btn.active:focus, #ex-debug-toolbar .btn.active.focus {
      outline: 5px auto -webkit-focus-ring-color;
      outline-offset: -2px; }
    #ex-debug-toolbar .btn:hover, #ex-debug-toolbar .btn:focus, #ex-debug-toolbar .btn.focus {
      color: #333;
      text-decoration: none; }
    #ex-debug-toolbar .btn:active, #ex-debug-toolbar .btn.active {
      outline: 0;
      background-image: none;
      -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); }
    #ex-debug-toolbar .btn.disabled, #ex-debug-toolbar .btn[disabled],
    fieldset[disabled] #ex-debug-toolbar .btn {
      cursor: not-allowed;
      opacity: 0.65;
      filter: alpha(opacity=65);
      -webkit-box-shadow: none;
      box-shadow: none; }
  #ex-debug-toolbar a.btn.disabled, #ex-debug-toolbar .navbar-nav.nav > li > span.btn.disabled,
  fieldset[disabled] #ex-debug-toolbar a.btn,
  fieldset[disabled] #ex-debug-toolbar .navbar-nav.nav > li > span.btn {
    pointer-events: none; }
  #ex-debug-toolbar .btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc; }
    #ex-debug-toolbar .btn-default:focus, #ex-debug-toolbar .btn-default.focus {
      color: #333;
      background-color: #e6e6e6;
      border-color: #8c8c8c; }
    #ex-debug-toolbar .btn-default:hover {
      color: #333;
      background-color: #e6e6e6;
      border-color: #adadad; }
    #ex-debug-toolbar .btn-default:active, #ex-debug-toolbar .btn-default.active,
    .open > #ex-debug-toolbar .btn-default.dropdown-toggle {
      color: #333;
      background-color: #e6e6e6;
      border-color: #adadad; }
      #ex-debug-toolbar .btn-default:active:hover, #ex-debug-toolbar .btn-default:active:focus, #ex-debug-toolbar .btn-default:active.focus, #ex-debug-toolbar .btn-default.active:hover, #ex-debug-toolbar .btn-default.active:focus, #ex-debug-toolbar .btn-default.active.focus,
      .open > #ex-debug-toolbar .btn-default.dropdown-toggle:hover,
      .open > #ex-debug-toolbar .btn-default.dropdown-toggle:focus,
      .open > #ex-debug-toolbar .btn-default.dropdown-toggle.focus {
        color: #333;
        background-color: #d4d4d4;
        border-color: #8c8c8c; }
    #ex-debug-toolbar .btn-default:active, #ex-debug-toolbar .btn-default.active,
    .open > #ex-debug-toolbar .btn-default.dropdown-toggle {
      background-image: none; }
    #ex-debug-toolbar .btn-default.disabled:hover, #ex-debug-toolbar .btn-default.disabled:focus, #ex-debug-toolbar .btn-default.disabled.focus, #ex-debug-toolbar .btn-default[disabled]:hover, #ex-debug-toolbar .btn-default[disabled]:focus, #ex-debug-toolbar .btn-default[disabled].focus,
    fieldset[disabled] #ex-debug-toolbar .btn-default:hover,
    fieldset[disabled] #ex-debug-toolbar .btn-default:focus,
    fieldset[disabled] #ex-debug-toolbar .btn-default.focus {
      background-color: #fff;
      border-color: #ccc; }
    #ex-debug-toolbar .btn-default .badge {
      color: #fff;
      background-color: #333; }
  #ex-debug-toolbar .btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4; }
    #ex-debug-toolbar .btn-primary:focus, #ex-debug-toolbar .btn-primary.focus {
      color: #fff;
      background-color: #286090;
      border-color: #122b40; }
    #ex-debug-toolbar .btn-primary:hover {
      color: #fff;
      background-color: #286090;
      border-color: #204d74; }
    #ex-debug-toolbar .btn-primary:active, #ex-debug-toolbar .btn-primary.active,
    .open > #ex-debug-toolbar .btn-primary.dropdown-toggle {
      color: #fff;
      background-color: #286090;
      border-color: #204d74; }
      #ex-debug-toolbar .btn-primary:active:hover, #ex-debug-toolbar .btn-primary:active:focus, #ex-debug-toolbar .btn-primary:active.focus, #ex-debug-toolbar .btn-primary.active:hover, #ex-debug-toolbar .btn-primary.active:focus, #ex-debug-toolbar .btn-primary.active.focus,
      .open > #ex-debug-toolbar .btn-primary.dropdown-toggle:hover,
      .open > #ex-debug-toolbar .btn-primary.dropdown-toggle:focus,
      .open > #ex-debug-toolbar .btn-primary.dropdown-toggle.focus {
        color: #fff;
        background-color: #204d74;
        border-color: #122b40; }
    #ex-debug-toolbar .btn-primary:active, #ex-debug-toolbar .btn-primary.active,
    .open > #ex-debug-toolbar .btn-primary.dropdown-toggle {
      background-image: none; }
    #ex-debug-toolbar .btn-primary.disabled:hover, #ex-debug-toolbar .btn-primary.disabled:focus, #ex-debug-toolbar .btn-primary.disabled.focus, #ex-debug-toolbar .btn-primary[disabled]:hover, #ex-debug-toolbar .btn-primary[disabled]:focus, #ex-debug-toolbar .btn-primary[disabled].focus,
    fieldset[disabled] #ex-debug-toolbar .btn-primary:hover,
    fieldset[disabled] #ex-debug-toolbar .btn-primary:focus,
    fieldset[disabled] #ex-debug-toolbar .btn-primary.focus {
      background-color: #337ab7;
      border-color: #2e6da4; }
    #ex-debug-toolbar .btn-primary .badge {
      color: #337ab7;
      background-color: #fff; }
  #ex-debug-toolbar .btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c; }
    #ex-debug-toolbar .btn-success:focus, #ex-debug-toolbar .btn-success.focus {
      color: #fff;
      background-color: #449d44;
      border-color: #255625; }
    #ex-debug-toolbar .btn-success:hover {
      color: #fff;
      background-color: #449d44;
      border-color: #398439; }
    #ex-debug-toolbar .btn-success:active, #ex-debug-toolbar .btn-success.active,
    .open > #ex-debug-toolbar .btn-success.dropdown-toggle {
      color: #fff;
      background-color: #449d44;
      border-color: #398439; }
      #ex-debug-toolbar .btn-success:active:hover, #ex-debug-toolbar .btn-success:active:focus, #ex-debug-toolbar .btn-success:active.focus, #ex-debug-toolbar .btn-success.active:hover, #ex-debug-toolbar .btn-success.active:focus, #ex-debug-toolbar .btn-success.active.focus,
      .open > #ex-debug-toolbar .btn-success.dropdown-toggle:hover,
      .open > #ex-debug-toolbar .btn-success.dropdown-toggle:focus,
      .open > #ex-debug-toolbar .btn-success.dropdown-toggle.focus {
        color: #fff;
        background-color: #398439;
        border-color: #255625; }
    #ex-debug-toolbar .btn-success:active, #ex-debug-toolbar .btn-success.active,
    .open > #ex-debug-toolbar .btn-success.dropdown-toggle {
      background-image: none; }
    #ex-debug-toolbar .btn-success.disabled:hover, #ex-debug-toolbar .btn-success.disabled:focus, #ex-debug-toolbar .btn-success.disabled.focus, #ex-debug-toolbar .btn-success[disabled]:hover, #ex-debug-toolbar .btn-success[disabled]:focus, #ex-debug-toolbar .btn-success[disabled].focus,
    fieldset[disabled] #ex-debug-toolbar .btn-success:hover,
    fieldset[disabled] #ex-debug-toolbar .btn-success:focus,
    fieldset[disabled] #ex-debug-toolbar .btn-success.focus {
      background-color: #5cb85c;
      border-color: #4cae4c; }
    #ex-debug-toolbar .btn-success .badge {
      color: #5cb85c;
      background-color: #fff; }
  #ex-debug-toolbar .btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da; }
    #ex-debug-toolbar .btn-info:focus, #ex-debug-toolbar .btn-info.focus {
      color: #fff;
      background-color: #31b0d5;
      border-color: #1b6d85; }
    #ex-debug-toolbar .btn-info:hover {
      color: #fff;
      background-color: #31b0d5;
      border-color: #269abc; }
    #ex-debug-toolbar .btn-info:active, #ex-debug-toolbar .btn-info.active,
    .open > #ex-debug-toolbar .btn-info.dropdown-toggle {
      color: #fff;
      background-color: #31b0d5;
      border-color: #269abc; }
      #ex-debug-toolbar .btn-info:active:hover, #ex-debug-toolbar .btn-info:active:focus, #ex-debug-toolbar .btn-info:active.focus, #ex-debug-toolbar .btn-info.active:hover, #ex-debug-toolbar .btn-info.active:focus, #ex-debug-toolbar .btn-info.active.focus,
      .open > #ex-debug-toolbar .btn-info.dropdown-toggle:hover,
      .open > #ex-debug-toolbar .btn-info.dropdown-toggle:focus,
      .open > #ex-debug-toolbar .btn-info.dropdown-toggle.focus {
        color: #fff;
        background-color: #269abc;
        border-color: #1b6d85; }
    #ex-debug-toolbar .btn-info:active, #ex-debug-toolbar .btn-info.active,
    .open > #ex-debug-toolbar .btn-info.dropdown-toggle {
      background-image: none; }
    #ex-debug-toolbar .btn-info.disabled:hover, #ex-debug-toolbar .btn-info.disabled:focus, #ex-debug-toolbar .btn-info.disabled.focus, #ex-debug-toolbar .btn-info[disabled]:hover, #ex-debug-toolbar .btn-info[disabled]:focus, #ex-debug-toolbar .btn-info[disabled].focus,
    fieldset[disabled] #ex-debug-toolbar .btn-info:hover,
    fieldset[disabled] #ex-debug-toolbar .btn-info:focus,
    fieldset[disabled] #ex-debug-toolbar .btn-info.focus {
      background-color: #5bc0de;
      border-color: #46b8da; }
    #ex-debug-toolbar .btn-info .badge {
      color: #5bc0de;
      background-color: #fff; }
  #ex-debug-toolbar .btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236; }
    #ex-debug-toolbar .btn-warning:focus, #ex-debug-toolbar .btn-warning.focus {
      color: #fff;
      background-color: #ec971f;
      border-color: #985f0d; }
    #ex-debug-toolbar .btn-warning:hover {
      color: #fff;
      background-color: #ec971f;
      border-color: #d58512; }
    #ex-debug-toolbar .btn-warning:active, #ex-debug-toolbar .btn-warning.active,
    .open > #ex-debug-toolbar .btn-warning.dropdown-toggle {
      color: #fff;
      background-color: #ec971f;
      border-color: #d58512; }
      #ex-debug-toolbar .btn-warning:active:hover, #ex-debug-toolbar .btn-warning:active:focus, #ex-debug-toolbar .btn-warning:active.focus, #ex-debug-toolbar .btn-warning.active:hover, #ex-debug-toolbar .btn-warning.active:focus, #ex-debug-toolbar .btn-warning.active.focus,
      .open > #ex-debug-toolbar .btn-warning.dropdown-toggle:hover,
      .open > #ex-debug-toolbar .btn-warning.dropdown-toggle:focus,
      .open > #ex-debug-toolbar .btn-warning.dropdown-toggle.focus {
        color: #fff;
        background-color: #d58512;
        border-color: #985f0d; }
    #ex-debug-toolbar .btn-warning:active, #ex-debug-toolbar .btn-warning.active,
    .open > #ex-debug-toolbar .btn-warning.dropdown-toggle {
      background-image: none; }
    #ex-debug-toolbar .btn-warning.disabled:hover, #ex-debug-toolbar .btn-warning.disabled:focus, #ex-debug-toolbar .btn-warning.disabled.focus, #ex-debug-toolbar .btn-warning[disabled]:hover, #ex-debug-toolbar .btn-warning[disabled]:focus, #ex-debug-toolbar .btn-warning[disabled].focus,
    fieldset[disabled] #ex-debug-toolbar .btn-warning:hover,
    fieldset[disabled] #ex-debug-toolbar .btn-warning:focus,
    fieldset[disabled] #ex-debug-toolbar .btn-warning.focus {
      background-color: #f0ad4e;
      border-color: #eea236; }
    #ex-debug-toolbar .btn-warning .badge {
      color: #f0ad4e;
      background-color: #fff; }
  #ex-debug-toolbar .btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a; }
    #ex-debug-toolbar .btn-danger:focus, #ex-debug-toolbar .btn-danger.focus {
      color: #fff;
      background-color: #c9302c;
      border-color: #761c19; }
    #ex-debug-toolbar .btn-danger:hover {
      color: #fff;
      background-color: #c9302c;
      border-color: #ac2925; }
    #ex-debug-toolbar .btn-danger:active, #ex-debug-toolbar .btn-danger.active,
    .open > #ex-debug-toolbar .btn-danger.dropdown-toggle {
      color: #fff;
      background-color: #c9302c;
      border-color: #ac2925; }
      #ex-debug-toolbar .btn-danger:active:hover, #ex-debug-toolbar .btn-danger:active:focus, #ex-debug-toolbar .btn-danger:active.focus, #ex-debug-toolbar .btn-danger.active:hover, #ex-debug-toolbar .btn-danger.active:focus, #ex-debug-toolbar .btn-danger.active.focus,
      .open > #ex-debug-toolbar .btn-danger.dropdown-toggle:hover,
      .open > #ex-debug-toolbar .btn-danger.dropdown-toggle:focus,
      .open > #ex-debug-toolbar .btn-danger.dropdown-toggle.focus {
        color: #fff;
        background-color: #ac2925;
        border-color: #761c19; }
    #ex-debug-toolbar .btn-danger:active, #ex-debug-toolbar .btn-danger.active,
    .open > #ex-debug-toolbar .btn-danger.dropdown-toggle {
      background-image: none; }
    #ex-debug-toolbar .btn-danger.disabled:hover, #ex-debug-toolbar .btn-danger.disabled:focus, #ex-debug-toolbar .btn-danger.disabled.focus, #ex-debug-toolbar .btn-danger[disabled]:hover, #ex-debug-toolbar .btn-danger[disabled]:focus, #ex-debug-toolbar .btn-danger[disabled].focus,
    fieldset[disabled] #ex-debug-toolbar .btn-danger:hover,
    fieldset[disabled] #ex-debug-toolbar .btn-danger:focus,
    fieldset[disabled] #ex-debug-toolbar .btn-danger.focus {
      background-color: #d9534f;
      border-color: #d43f3a; }
    #ex-debug-toolbar .btn-danger .badge {
      color: #d9534f;
      background-color: #fff; }
  #ex-debug-toolbar .btn-link {
    color: #337ab7;
    font-weight: normal;
    border-radius: 0; }
    #ex-debug-toolbar .btn-link, #ex-debug-toolbar .btn-link:active, #ex-debug-toolbar .btn-link.active, #ex-debug-toolbar .btn-link[disabled],
    fieldset[disabled] #ex-debug-toolbar .btn-link {
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none; }
    #ex-debug-toolbar .btn-link, #ex-debug-toolbar .btn-link:hover, #ex-debug-toolbar .btn-link:focus, #ex-debug-toolbar .btn-link:active {
      border-color: transparent; }
    #ex-debug-toolbar .btn-link:hover, #ex-debug-toolbar .btn-link:focus {
      color: #23527c;
      text-decoration: underline;
      background-color: transparent; }
    #ex-debug-toolbar .btn-link[disabled]:hover, #ex-debug-toolbar .btn-link[disabled]:focus,
    fieldset[disabled] #ex-debug-toolbar .btn-link:hover,
    fieldset[disabled] #ex-debug-toolbar .btn-link:focus {
      color: #777777;
      text-decoration: none; }
  #ex-debug-toolbar .btn-lg, #ex-debug-toolbar .btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 6px; }
  #ex-debug-toolbar .btn-sm, #ex-debug-toolbar .btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px; }
  #ex-debug-toolbar .btn-xs, #ex-debug-toolbar .btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px; }
  #ex-debug-toolbar .btn-block {
    display: block;
    width: 100%; }
  #ex-debug-toolbar .btn-block + .btn-block {
    margin-top: 5px; }
  #ex-debug-toolbar input[type="submit"].btn-block,
  #ex-debug-toolbar input[type="reset"].btn-block,
  #ex-debug-toolbar input[type="button"].btn-block {
    width: 100%; }
  #ex-debug-toolbar .fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear; }
    #ex-debug-toolbar .fade.in {
      opacity: 1; }
  #ex-debug-toolbar .collapse {
    display: none; }
    #ex-debug-toolbar .collapse.in {
      display: block; }
  #ex-debug-toolbar tr.collapse.in {
    display: table-row; }
  #ex-debug-toolbar tbody.collapse.in {
    display: table-row-group; }
  #ex-debug-toolbar .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; }
  #ex-debug-toolbar .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; }
  #ex-debug-toolbar .dropup,
  #ex-debug-toolbar .dropdown {
    position: relative; }
  #ex-debug-toolbar .dropdown-toggle:focus {
    outline: 0; }
  #ex-debug-toolbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box; }
    #ex-debug-toolbar .dropdown-menu.pull-right {
      right: 0;
      left: auto; }
    #ex-debug-toolbar .dropdown-menu .divider {
      height: 1px;
      margin: 9px 0;
      overflow: hidden;
      background-color: #e5e5e5; }
    #ex-debug-toolbar .dropdown-menu > li > a, #ex-debug-toolbar .navbar-nav.nav.dropdown-menu > li > span {
      display: block;
      padding: 3px 20px;
      clear: both;
      font-weight: normal;
      line-height: 1.42857;
      color: #333333;
      white-space: nowrap; }
  #ex-debug-toolbar .dropdown-menu > li > a:hover, #ex-debug-toolbar .navbar-nav.nav.dropdown-menu > li > span:hover, #ex-debug-toolbar .dropdown-menu > li > a:focus, #ex-debug-toolbar .navbar-nav.nav.dropdown-menu > li > span:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5; }
  #ex-debug-toolbar .dropdown-menu > .active > a, #ex-debug-toolbar .navbar-nav.nav.dropdown-menu > li.active > span, #ex-debug-toolbar .dropdown-menu > .active > a:hover, #ex-debug-toolbar .navbar-nav.nav.dropdown-menu > li.active > span:hover, #ex-debug-toolbar .dropdown-menu > .active > a:focus, #ex-debug-toolbar .navbar-nav.nav.dropdown-menu > li.active > span:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #337ab7; }
  #ex-debug-toolbar .dropdown-menu > .disabled > a, #ex-debug-toolbar .navbar-nav.nav.dropdown-menu > li.disabled > span, #ex-debug-toolbar .dropdown-menu > .disabled > a:hover, #ex-debug-toolbar .navbar-nav.nav.dropdown-menu > li.disabled > span:hover, #ex-debug-toolbar .dropdown-menu > .disabled > a:focus, #ex-debug-toolbar .navbar-nav.nav.dropdown-menu > li.disabled > span:focus {
    color: #777777; }
  #ex-debug-toolbar .dropdown-menu > .disabled > a:hover, #ex-debug-toolbar .navbar-nav.nav.dropdown-menu > li.disabled > span:hover, #ex-debug-toolbar .dropdown-menu > .disabled > a:focus, #ex-debug-toolbar .navbar-nav.nav.dropdown-menu > li.disabled > span:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    cursor: not-allowed; }
  #ex-debug-toolbar .open > .dropdown-menu {
    display: block; }
  #ex-debug-toolbar .open > a, #ex-debug-toolbar .navbar-nav.nav > li.open > span {
    outline: 0; }
  #ex-debug-toolbar .dropdown-menu-right {
    left: auto;
    right: 0; }
  #ex-debug-toolbar .dropdown-menu-left {
    left: 0;
    right: auto; }
  #ex-debug-toolbar .dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857;
    color: #777777;
    white-space: nowrap; }
  #ex-debug-toolbar .dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990; }
  #ex-debug-toolbar .pull-right > .dropdown-menu {
    right: 0;
    left: auto; }
  #ex-debug-toolbar .dropup .caret,
  #ex-debug-toolbar .navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9;
    content: ""; }
  #ex-debug-toolbar .dropup .dropdown-menu,
  #ex-debug-toolbar .navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px; }
  @media (min-width: 768px) {
    #ex-debug-toolbar .navbar-right .dropdown-menu {
      right: 0;
      left: auto; }
    #ex-debug-toolbar .navbar-right .dropdown-menu-left {
      left: 0;
      right: auto; } }
  #ex-debug-toolbar .btn-group,
  #ex-debug-toolbar .btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle; }
    #ex-debug-toolbar .btn-group > .btn,
    #ex-debug-toolbar .btn-group-vertical > .btn {
      position: relative;
      float: left; }
      #ex-debug-toolbar .btn-group > .btn:hover, #ex-debug-toolbar .btn-group > .btn:focus, #ex-debug-toolbar .btn-group > .btn:active, #ex-debug-toolbar .btn-group > .btn.active,
      #ex-debug-toolbar .btn-group-vertical > .btn:hover,
      #ex-debug-toolbar .btn-group-vertical > .btn:focus,
      #ex-debug-toolbar .btn-group-vertical > .btn:active,
      #ex-debug-toolbar .btn-group-vertical > .btn.active {
        z-index: 2; }
  #ex-debug-toolbar .btn-group .btn + .btn,
  #ex-debug-toolbar .btn-group .btn + .btn-group,
  #ex-debug-toolbar .btn-group .btn-group + .btn,
  #ex-debug-toolbar .btn-group .btn-group + .btn-group {
    margin-left: -1px; }
  #ex-debug-toolbar .btn-toolbar {
    margin-left: -5px; }
    #ex-debug-toolbar .btn-toolbar:before, #ex-debug-toolbar .btn-toolbar:after {
      content: " ";
      display: table; }
    #ex-debug-toolbar .btn-toolbar:after {
      clear: both; }
    #ex-debug-toolbar .btn-toolbar .btn,
    #ex-debug-toolbar .btn-toolbar .btn-group,
    #ex-debug-toolbar .btn-toolbar .input-group {
      float: left; }
    #ex-debug-toolbar .btn-toolbar > .btn,
    #ex-debug-toolbar .btn-toolbar > .btn-group,
    #ex-debug-toolbar .btn-toolbar > .input-group {
      margin-left: 5px; }
  #ex-debug-toolbar .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0; }
  #ex-debug-toolbar .btn-group > .btn:first-child {
    margin-left: 0; }
    #ex-debug-toolbar .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
      border-bottom-right-radius: 0;
      border-top-right-radius: 0; }
  #ex-debug-toolbar .btn-group > .btn:last-child:not(:first-child),
  #ex-debug-toolbar .btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0; }
  #ex-debug-toolbar .btn-group > .btn-group {
    float: left; }
  #ex-debug-toolbar .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0; }
  #ex-debug-toolbar .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  #ex-debug-toolbar .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0; }
  #ex-debug-toolbar .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0; }
  #ex-debug-toolbar .btn-group .dropdown-toggle:active,
  #ex-debug-toolbar .btn-group.open .dropdown-toggle {
    outline: 0; }
  #ex-debug-toolbar .btn-group > .btn + .dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px; }
  #ex-debug-toolbar .btn-group > .btn-lg + .dropdown-toggle, #ex-debug-toolbar .btn-group-lg.btn-group > .btn + .dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px; }
  #ex-debug-toolbar .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); }
    #ex-debug-toolbar .btn-group.open .dropdown-toggle.btn-link {
      -webkit-box-shadow: none;
      box-shadow: none; }
  #ex-debug-toolbar .btn .caret {
    margin-left: 0; }
  #ex-debug-toolbar .btn-lg .caret, #ex-debug-toolbar .btn-group-lg > .btn .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0; }
  #ex-debug-toolbar .dropup .btn-lg .caret, #ex-debug-toolbar .dropup .btn-group-lg > .btn .caret {
    border-width: 0 5px 5px; }
  #ex-debug-toolbar .btn-group-vertical > .btn,
  #ex-debug-toolbar .btn-group-vertical > .btn-group,
  #ex-debug-toolbar .btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%; }
  #ex-debug-toolbar .btn-group-vertical > .btn-group:before, #ex-debug-toolbar .btn-group-vertical > .btn-group:after {
    content: " ";
    display: table; }
  #ex-debug-toolbar .btn-group-vertical > .btn-group:after {
    clear: both; }
  #ex-debug-toolbar .btn-group-vertical > .btn-group > .btn {
    float: none; }
  #ex-debug-toolbar .btn-group-vertical > .btn + .btn,
  #ex-debug-toolbar .btn-group-vertical > .btn + .btn-group,
  #ex-debug-toolbar .btn-group-vertical > .btn-group + .btn,
  #ex-debug-toolbar .btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0; }
  #ex-debug-toolbar .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
    border-radius: 0; }
  #ex-debug-toolbar .btn-group-vertical > .btn:first-child:not(:last-child) {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  #ex-debug-toolbar .btn-group-vertical > .btn:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px; }
  #ex-debug-toolbar .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0; }
  #ex-debug-toolbar .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  #ex-debug-toolbar .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  #ex-debug-toolbar .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0; }
  #ex-debug-toolbar .btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate; }
    #ex-debug-toolbar .btn-group-justified > .btn,
    #ex-debug-toolbar .btn-group-justified > .btn-group {
      float: none;
      display: table-cell;
      width: 1%; }
    #ex-debug-toolbar .btn-group-justified > .btn-group .btn {
      width: 100%; }
    #ex-debug-toolbar .btn-group-justified > .btn-group .dropdown-menu {
      left: auto; }
  #ex-debug-toolbar [data-toggle="buttons"] > .btn input[type="radio"],
  #ex-debug-toolbar [data-toggle="buttons"] > .btn input[type="checkbox"],
  #ex-debug-toolbar [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  #ex-debug-toolbar [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none; }
  #ex-debug-toolbar .input-group {
    position: relative;
    display: table;
    border-collapse: separate; }
    #ex-debug-toolbar .input-group[class*="col-"] {
      float: none;
      padding-left: 0;
      padding-right: 0; }
    #ex-debug-toolbar .input-group .form-control {
      position: relative;
      z-index: 2;
      float: left;
      width: 100%;
      margin-bottom: 0; }
      #ex-debug-toolbar .input-group .form-control:focus {
        z-index: 3; }
  #ex-debug-toolbar .input-group-addon,
  #ex-debug-toolbar .input-group-btn,
  #ex-debug-toolbar .input-group .form-control {
    display: table-cell; }
    #ex-debug-toolbar .input-group-addon:not(:first-child):not(:last-child),
    #ex-debug-toolbar .input-group-btn:not(:first-child):not(:last-child),
    #ex-debug-toolbar .input-group .form-control:not(:first-child):not(:last-child) {
      border-radius: 0; }
  #ex-debug-toolbar .input-group-addon,
  #ex-debug-toolbar .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle; }
  #ex-debug-toolbar .input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #555555;
    text-align: center;
    background-color: #eeeeee;
    border: 1px solid #ccc;
    border-radius: 4px; }
    #ex-debug-toolbar .input-group-addon.input-sm, #ex-debug-toolbar .input-group-sm > .input-group-addon, #ex-debug-toolbar .input-group-sm > .input-group-btn > .input-group-addon.btn {
      padding: 5px 10px;
      font-size: 12px;
      border-radius: 3px; }
    #ex-debug-toolbar .input-group-addon.input-lg, #ex-debug-toolbar .input-group-lg > .input-group-addon, #ex-debug-toolbar .input-group-lg > .input-group-btn > .input-group-addon.btn {
      padding: 10px 16px;
      font-size: 18px;
      border-radius: 6px; }
    #ex-debug-toolbar .input-group-addon input[type="radio"],
    #ex-debug-toolbar .input-group-addon input[type="checkbox"] {
      margin-top: 0; }
  #ex-debug-toolbar .input-group .form-control:first-child,
  #ex-debug-toolbar .input-group-addon:first-child,
  #ex-debug-toolbar .input-group-btn:first-child > .btn,
  #ex-debug-toolbar .input-group-btn:first-child > .btn-group > .btn,
  #ex-debug-toolbar .input-group-btn:first-child > .dropdown-toggle,
  #ex-debug-toolbar .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  #ex-debug-toolbar .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0; }
  #ex-debug-toolbar .input-group-addon:first-child {
    border-right: 0; }
  #ex-debug-toolbar .input-group .form-control:last-child,
  #ex-debug-toolbar .input-group-addon:last-child,
  #ex-debug-toolbar .input-group-btn:last-child > .btn,
  #ex-debug-toolbar .input-group-btn:last-child > .btn-group > .btn,
  #ex-debug-toolbar .input-group-btn:last-child > .dropdown-toggle,
  #ex-debug-toolbar .input-group-btn:first-child > .btn:not(:first-child),
  #ex-debug-toolbar .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0; }
  #ex-debug-toolbar .input-group-addon:last-child {
    border-left: 0; }
  #ex-debug-toolbar .input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap; }
    #ex-debug-toolbar .input-group-btn > .btn {
      position: relative; }
      #ex-debug-toolbar .input-group-btn > .btn + .btn {
        margin-left: -1px; }
      #ex-debug-toolbar .input-group-btn > .btn:hover, #ex-debug-toolbar .input-group-btn > .btn:focus, #ex-debug-toolbar .input-group-btn > .btn:active {
        z-index: 2; }
    #ex-debug-toolbar .input-group-btn:first-child > .btn,
    #ex-debug-toolbar .input-group-btn:first-child > .btn-group {
      margin-right: -1px; }
    #ex-debug-toolbar .input-group-btn:last-child > .btn,
    #ex-debug-toolbar .input-group-btn:last-child > .btn-group {
      z-index: 2;
      margin-left: -1px; }
  #ex-debug-toolbar .nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none; }
    #ex-debug-toolbar .nav:before, #ex-debug-toolbar .nav:after {
      content: " ";
      display: table; }
    #ex-debug-toolbar .nav:after {
      clear: both; }
    #ex-debug-toolbar .nav > li {
      position: relative;
      display: block; }
      #ex-debug-toolbar .nav > li > a, #ex-debug-toolbar .navbar-nav.nav > li > span {
        position: relative;
        display: block;
        padding: 10px 15px; }
        #ex-debug-toolbar .nav > li > a:hover, #ex-debug-toolbar .navbar-nav.nav > li > span:hover, #ex-debug-toolbar .nav > li > a:focus, #ex-debug-toolbar .navbar-nav.nav > li > span:focus {
          text-decoration: none;
          background-color: #eeeeee; }
      #ex-debug-toolbar .nav > li.disabled > a, #ex-debug-toolbar .navbar-nav.nav > li.disabled > span {
        color: #777777; }
        #ex-debug-toolbar .nav > li.disabled > a:hover, #ex-debug-toolbar .navbar-nav.nav > li.disabled > span:hover, #ex-debug-toolbar .nav > li.disabled > a:focus, #ex-debug-toolbar .navbar-nav.nav > li.disabled > span:focus {
          color: #777777;
          text-decoration: none;
          background-color: transparent;
          cursor: not-allowed; }
    #ex-debug-toolbar .nav .open > a, #ex-debug-toolbar .navbar-nav.nav > li.open > span, #ex-debug-toolbar .nav .open > a:hover, #ex-debug-toolbar .navbar-nav.nav > li.open > span:hover, #ex-debug-toolbar .nav .open > a:focus, #ex-debug-toolbar .navbar-nav.nav > li.open > span:focus {
      background-color: #eeeeee;
      border-color: #337ab7; }
    #ex-debug-toolbar .nav .nav-divider {
      height: 1px;
      margin: 9px 0;
      overflow: hidden;
      background-color: #e5e5e5; }
    #ex-debug-toolbar .nav > li > a > img, #ex-debug-toolbar .navbar-nav.nav > li > span > img {
      max-width: none; }
  #ex-debug-toolbar .nav-tabs {
    border-bottom: 1px solid #ddd; }
    #ex-debug-toolbar .nav-tabs > li {
      float: left;
      margin-bottom: -1px; }
      #ex-debug-toolbar .nav-tabs > li > a, #ex-debug-toolbar .navbar-nav.nav.nav-tabs > li > span {
        margin-right: 2px;
        line-height: 1.42857;
        border: 1px solid transparent;
        border-radius: 4px 4px 0 0; }
        #ex-debug-toolbar .nav-tabs > li > a:hover, #ex-debug-toolbar .navbar-nav.nav.nav-tabs > li > span:hover {
          border-color: #eeeeee #eeeeee #ddd; }
      #ex-debug-toolbar .nav-tabs > li.active > a, #ex-debug-toolbar .navbar-nav.nav.nav-tabs > li.active > span, #ex-debug-toolbar .nav-tabs > li.active > a:hover, #ex-debug-toolbar .navbar-nav.nav.nav-tabs > li.active > span:hover, #ex-debug-toolbar .nav-tabs > li.active > a:focus, #ex-debug-toolbar .navbar-nav.nav.nav-tabs > li.active > span:focus {
        color: #555555;
        background-color: #fff;
        border: 1px solid #ddd;
        border-bottom-color: transparent;
        cursor: default; }
  #ex-debug-toolbar .nav-pills > li {
    float: left; }
    #ex-debug-toolbar .nav-pills > li > a, #ex-debug-toolbar .navbar-nav.nav.nav-pills > li > span {
      border-radius: 4px; }
    #ex-debug-toolbar .nav-pills > li + li {
      margin-left: 2px; }
    #ex-debug-toolbar .nav-pills > li.active > a, #ex-debug-toolbar .navbar-nav.nav.nav-pills > li.active > span, #ex-debug-toolbar .nav-pills > li.active > a:hover, #ex-debug-toolbar .navbar-nav.nav.nav-pills > li.active > span:hover, #ex-debug-toolbar .nav-pills > li.active > a:focus, #ex-debug-toolbar .navbar-nav.nav.nav-pills > li.active > span:focus {
      color: #fff;
      background-color: #337ab7; }
  #ex-debug-toolbar .nav-stacked > li {
    float: none; }
    #ex-debug-toolbar .nav-stacked > li + li {
      margin-top: 2px;
      margin-left: 0; }
  #ex-debug-toolbar .nav-justified, #ex-debug-toolbar .nav-tabs.nav-justified {
    width: 100%; }
    #ex-debug-toolbar .nav-justified > li, #ex-debug-toolbar .nav-tabs.nav-justified > li {
      float: none; }
      #ex-debug-toolbar .nav-justified > li > a, #ex-debug-toolbar .nav-tabs.nav-justified > li > a, #ex-debug-toolbar .navbar-nav.nav.nav-justified > li > span {
        text-align: center;
        margin-bottom: 5px; }
    #ex-debug-toolbar .nav-justified > .dropdown .dropdown-menu {
      top: auto;
      left: auto; }
    @media (min-width: 768px) {
      #ex-debug-toolbar .nav-justified > li, #ex-debug-toolbar .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%; }
        #ex-debug-toolbar .nav-justified > li > a, #ex-debug-toolbar .nav-tabs.nav-justified > li > a, #ex-debug-toolbar .navbar-nav.nav.nav-justified > li > span {
          margin-bottom: 0; } }
  #ex-debug-toolbar .nav-tabs-justified, #ex-debug-toolbar .nav-tabs.nav-justified {
    border-bottom: 0; }
    #ex-debug-toolbar .nav-tabs-justified > li > a, #ex-debug-toolbar .nav-tabs.nav-justified > li > a, #ex-debug-toolbar .navbar-nav.nav.nav-tabs-justified > li > span, #ex-debug-toolbar .navbar-nav.nav.nav-tabs.nav-justified > li > span {
      margin-right: 0;
      border-radius: 4px; }
    #ex-debug-toolbar .nav-tabs-justified > .active > a, #ex-debug-toolbar .nav-tabs.nav-justified > .active > a, #ex-debug-toolbar .navbar-nav.nav.nav-tabs-justified > li.active > span, #ex-debug-toolbar .navbar-nav.nav.nav-tabs.nav-justified > li.active > span,
    #ex-debug-toolbar .nav-tabs-justified > .active > a:hover, #ex-debug-toolbar .nav-tabs.nav-justified > .active > a:hover, #ex-debug-toolbar .navbar-nav.nav.nav-tabs-justified > li.active > span:hover, #ex-debug-toolbar .navbar-nav.nav.nav-tabs.nav-justified > li.active > span:hover,
    #ex-debug-toolbar .nav-tabs-justified > .active > a:focus, #ex-debug-toolbar .nav-tabs.nav-justified > .active > a:focus, #ex-debug-toolbar .navbar-nav.nav.nav-tabs-justified > li.active > span:focus, #ex-debug-toolbar .navbar-nav.nav.nav-tabs.nav-justified > li.active > span:focus {
      border: 1px solid #ddd; }
    @media (min-width: 768px) {
      #ex-debug-toolbar .nav-tabs-justified > li > a, #ex-debug-toolbar .nav-tabs.nav-justified > li > a, #ex-debug-toolbar .navbar-nav.nav.nav-tabs-justified > li > span, #ex-debug-toolbar .navbar-nav.nav.nav-tabs.nav-justified > li > span {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0; }
      #ex-debug-toolbar .nav-tabs-justified > .active > a, #ex-debug-toolbar .nav-tabs.nav-justified > .active > a, #ex-debug-toolbar .navbar-nav.nav.nav-tabs-justified > li.active > span, #ex-debug-toolbar .navbar-nav.nav.nav-tabs.nav-justified > li.active > span,
      #ex-debug-toolbar .nav-tabs-justified > .active > a:hover, #ex-debug-toolbar .nav-tabs.nav-justified > .active > a:hover, #ex-debug-toolbar .navbar-nav.nav.nav-tabs-justified > li.active > span:hover, #ex-debug-toolbar .navbar-nav.nav.nav-tabs.nav-justified > li.active > span:hover,
      #ex-debug-toolbar .nav-tabs-justified > .active > a:focus, #ex-debug-toolbar .nav-tabs.nav-justified > .active > a:focus, #ex-debug-toolbar .navbar-nav.nav.nav-tabs-justified > li.active > span:focus, #ex-debug-toolbar .navbar-nav.nav.nav-tabs.nav-justified > li.active > span:focus {
        border-bottom-color: #fff; } }
  #ex-debug-toolbar .tab-content > .tab-pane {
    display: none; }
  #ex-debug-toolbar .tab-content > .active {
    display: block; }
  #ex-debug-toolbar .nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0; }
  #ex-debug-toolbar .navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent; }
    #ex-debug-toolbar .navbar:before, #ex-debug-toolbar .navbar:after {
      content: " ";
      display: table; }
    #ex-debug-toolbar .navbar:after {
      clear: both; }
    @media (min-width: 768px) {
      #ex-debug-toolbar .navbar {
        border-radius: 4px; } }
  #ex-debug-toolbar .navbar-header:before, #ex-debug-toolbar .navbar-header:after {
    content: " ";
    display: table; }
  #ex-debug-toolbar .navbar-header:after {
    clear: both; }
  @media (min-width: 768px) {
    #ex-debug-toolbar .navbar-header {
      float: left; } }
  #ex-debug-toolbar .navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch; }
    #ex-debug-toolbar .navbar-collapse:before, #ex-debug-toolbar .navbar-collapse:after {
      content: " ";
      display: table; }
    #ex-debug-toolbar .navbar-collapse:after {
      clear: both; }
    #ex-debug-toolbar .navbar-collapse.in {
      overflow-y: auto; }
    @media (min-width: 768px) {
      #ex-debug-toolbar .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none; }
        #ex-debug-toolbar .navbar-collapse.collapse {
          display: block !important;
          height: auto !important;
          padding-bottom: 0;
          overflow: visible !important; }
        #ex-debug-toolbar .navbar-collapse.in {
          overflow-y: visible; }
        .navbar-fixed-top #ex-debug-toolbar .navbar-collapse,
        .navbar-static-top #ex-debug-toolbar .navbar-collapse,
        .navbar-fixed-bottom #ex-debug-toolbar .navbar-collapse {
          padding-left: 0;
          padding-right: 0; } }
  #ex-debug-toolbar .navbar-fixed-top .navbar-collapse,
  #ex-debug-toolbar .navbar-fixed-bottom .navbar-collapse {
    max-height: 340px; }
    @media (max-device-width: 480px) and (orientation: landscape) {
      #ex-debug-toolbar .navbar-fixed-top .navbar-collapse,
      #ex-debug-toolbar .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px; } }
  #ex-debug-toolbar .container > .navbar-header,
  #ex-debug-toolbar .container > .navbar-collapse,
  #ex-debug-toolbar .container-fluid > .navbar-header,
  #ex-debug-toolbar .container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px; }
    @media (min-width: 768px) {
      #ex-debug-toolbar .container > .navbar-header,
      #ex-debug-toolbar .container > .navbar-collapse,
      #ex-debug-toolbar .container-fluid > .navbar-header,
      #ex-debug-toolbar .container-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0; } }
  #ex-debug-toolbar .navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px; }
    @media (min-width: 768px) {
      #ex-debug-toolbar .navbar-static-top {
        border-radius: 0; } }
  #ex-debug-toolbar .navbar-fixed-top,
  #ex-debug-toolbar .navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030; }
    @media (min-width: 768px) {
      #ex-debug-toolbar .navbar-fixed-top,
      #ex-debug-toolbar .navbar-fixed-bottom {
        border-radius: 0; } }
  #ex-debug-toolbar .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px; }
  #ex-debug-toolbar .navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0; }
  #ex-debug-toolbar .navbar-brand {
    float: left;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
    height: 50px; }
    #ex-debug-toolbar .navbar-brand:hover, #ex-debug-toolbar .navbar-brand:focus {
      text-decoration: none; }
    #ex-debug-toolbar .navbar-brand > img {
      display: block; }
    @media (min-width: 768px) {
      .navbar > .container #ex-debug-toolbar .navbar-brand,
      .navbar > .container-fluid #ex-debug-toolbar .navbar-brand {
        margin-left: -15px; } }
  #ex-debug-toolbar .navbar-toggle {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px; }
    #ex-debug-toolbar .navbar-toggle:focus {
      outline: 0; }
    #ex-debug-toolbar .navbar-toggle .icon-bar {
      display: block;
      width: 22px;
      height: 2px;
      border-radius: 1px; }
    #ex-debug-toolbar .navbar-toggle .icon-bar + .icon-bar {
      margin-top: 4px; }
    @media (min-width: 768px) {
      #ex-debug-toolbar .navbar-toggle {
        display: none; } }
  #ex-debug-toolbar .navbar-nav {
    margin: 7.5px -15px; }
    #ex-debug-toolbar .navbar-nav > li > a, #ex-debug-toolbar .navbar-nav.nav > li > span {
      padding-top: 10px;
      padding-bottom: 10px;
      line-height: 20px; }
    @media (max-width: 767px) {
      #ex-debug-toolbar .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none; }
        #ex-debug-toolbar .navbar-nav .open .dropdown-menu > li > a, #ex-debug-toolbar .navbar-nav .open .navbar-nav.nav.dropdown-menu > li > span,
        #ex-debug-toolbar .navbar-nav .open .dropdown-menu .dropdown-header {
          padding: 5px 15px 5px 25px; }
        #ex-debug-toolbar .navbar-nav .open .dropdown-menu > li > a, #ex-debug-toolbar .navbar-nav .open .navbar-nav.nav.dropdown-menu > li > span {
          line-height: 20px; }
          #ex-debug-toolbar .navbar-nav .open .dropdown-menu > li > a:hover, #ex-debug-toolbar .navbar-nav .open .navbar-nav.nav.dropdown-menu > li > span:hover, #ex-debug-toolbar .navbar-nav .open .dropdown-menu > li > a:focus, #ex-debug-toolbar .navbar-nav .open .navbar-nav.nav.dropdown-menu > li > span:focus {
            background-image: none; } }
    @media (min-width: 768px) {
      #ex-debug-toolbar .navbar-nav {
        float: left;
        margin: 0; }
        #ex-debug-toolbar .navbar-nav > li {
          float: left; }
          #ex-debug-toolbar .navbar-nav > li > a, #ex-debug-toolbar .navbar-nav.nav > li > span {
            padding-top: 15px;
            padding-bottom: 15px; } }
  #ex-debug-toolbar .navbar-form {
    margin-left: -15px;
    margin-right: -15px;
    padding: 10px 15px;
    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: 8px;
    margin-bottom: 8px; }
    @media (min-width: 768px) {
      #ex-debug-toolbar .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle; }
      #ex-debug-toolbar .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle; }
      #ex-debug-toolbar .navbar-form .form-control-static {
        display: inline-block; }
      #ex-debug-toolbar .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle; }
        #ex-debug-toolbar .navbar-form .input-group .input-group-addon,
        #ex-debug-toolbar .navbar-form .input-group .input-group-btn,
        #ex-debug-toolbar .navbar-form .input-group .form-control {
          width: auto; }
      #ex-debug-toolbar .navbar-form .input-group > .form-control {
        width: 100%; }
      #ex-debug-toolbar .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle; }
      #ex-debug-toolbar .navbar-form .radio,
      #ex-debug-toolbar .navbar-form .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle; }
        #ex-debug-toolbar .navbar-form .radio label,
        #ex-debug-toolbar .navbar-form .checkbox label {
          padding-left: 0; }
      #ex-debug-toolbar .navbar-form .radio input[type="radio"],
      #ex-debug-toolbar .navbar-form .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0; }
      #ex-debug-toolbar .navbar-form .has-feedback .form-control-feedback {
        top: 0; } }
    @media (max-width: 767px) {
      #ex-debug-toolbar .navbar-form .form-group {
        margin-bottom: 5px; }
        #ex-debug-toolbar .navbar-form .form-group:last-child {
          margin-bottom: 0; } }
    @media (min-width: 768px) {
      #ex-debug-toolbar .navbar-form {
        width: auto;
        border: 0;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        -webkit-box-shadow: none;
        box-shadow: none; } }
  #ex-debug-toolbar .navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0; }
  #ex-debug-toolbar .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    margin-bottom: 0;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  #ex-debug-toolbar .navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px; }
    #ex-debug-toolbar .navbar-btn.btn-sm, #ex-debug-toolbar .btn-group-sm > .navbar-btn.btn {
      margin-top: 10px;
      margin-bottom: 10px; }
    #ex-debug-toolbar .navbar-btn.btn-xs, #ex-debug-toolbar .btn-group-xs > .navbar-btn.btn {
      margin-top: 14px;
      margin-bottom: 14px; }
  #ex-debug-toolbar .navbar-text {
    margin-top: 15px;
    margin-bottom: 15px; }
    @media (min-width: 768px) {
      #ex-debug-toolbar .navbar-text {
        float: left;
        margin-left: 15px;
        margin-right: 15px; } }
  @media (min-width: 768px) {
    #ex-debug-toolbar .navbar-left {
      float: left !important; }
    #ex-debug-toolbar .navbar-right {
      float: right !important;
      margin-right: -15px; }
      #ex-debug-toolbar .navbar-right ~ .navbar-right {
        margin-right: 0; } }
  #ex-debug-toolbar .navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7; }
    #ex-debug-toolbar .navbar-default .navbar-brand {
      color: #777; }
      #ex-debug-toolbar .navbar-default .navbar-brand:hover, #ex-debug-toolbar .navbar-default .navbar-brand:focus {
        color: #5e5e5e;
        background-color: transparent; }
    #ex-debug-toolbar .navbar-default .navbar-text {
      color: #777; }
    #ex-debug-toolbar .navbar-default .navbar-nav > li > a, #ex-debug-toolbar .navbar-default .navbar-nav.nav > li > span {
      color: #777; }
      #ex-debug-toolbar .navbar-default .navbar-nav > li > a:hover, #ex-debug-toolbar .navbar-default .navbar-nav.nav > li > span:hover, #ex-debug-toolbar .navbar-default .navbar-nav > li > a:focus, #ex-debug-toolbar .navbar-default .navbar-nav.nav > li > span:focus {
        color: #333;
        background-color: transparent; }
    #ex-debug-toolbar .navbar-default .navbar-nav > .active > a, #ex-debug-toolbar .navbar-default .navbar-nav.nav > li.active > span, #ex-debug-toolbar .navbar-default .navbar-nav > .active > a:hover, #ex-debug-toolbar .navbar-default .navbar-nav.nav > li.active > span:hover, #ex-debug-toolbar .navbar-default .navbar-nav > .active > a:focus, #ex-debug-toolbar .navbar-default .navbar-nav.nav > li.active > span:focus {
      color: #555;
      background-color: #e7e7e7; }
    #ex-debug-toolbar .navbar-default .navbar-nav > .disabled > a, #ex-debug-toolbar .navbar-default .navbar-nav.nav > li.disabled > span, #ex-debug-toolbar .navbar-default .navbar-nav > .disabled > a:hover, #ex-debug-toolbar .navbar-default .navbar-nav.nav > li.disabled > span:hover, #ex-debug-toolbar .navbar-default .navbar-nav > .disabled > a:focus, #ex-debug-toolbar .navbar-default .navbar-nav.nav > li.disabled > span:focus {
      color: #ccc;
      background-color: transparent; }
    #ex-debug-toolbar .navbar-default .navbar-toggle {
      border-color: #ddd; }
      #ex-debug-toolbar .navbar-default .navbar-toggle:hover, #ex-debug-toolbar .navbar-default .navbar-toggle:focus {
        background-color: #ddd; }
      #ex-debug-toolbar .navbar-default .navbar-toggle .icon-bar {
        background-color: #888; }
    #ex-debug-toolbar .navbar-default .navbar-collapse,
    #ex-debug-toolbar .navbar-default .navbar-form {
      border-color: #e7e7e7; }
    #ex-debug-toolbar .navbar-default .navbar-nav > .open > a, #ex-debug-toolbar .navbar-default .navbar-nav.nav > li.open > span, #ex-debug-toolbar .navbar-default .navbar-nav > .open > a:hover, #ex-debug-toolbar .navbar-default .navbar-nav.nav > li.open > span:hover, #ex-debug-toolbar .navbar-default .navbar-nav > .open > a:focus, #ex-debug-toolbar .navbar-default .navbar-nav.nav > li.open > span:focus {
      background-color: #e7e7e7;
      color: #555; }
    @media (max-width: 767px) {
      #ex-debug-toolbar .navbar-default .navbar-nav .open .dropdown-menu > li > a, #ex-debug-toolbar .navbar-default .navbar-nav .open .navbar-nav.nav.dropdown-menu > li > span {
        color: #777; }
        #ex-debug-toolbar .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, #ex-debug-toolbar .navbar-default .navbar-nav .open .navbar-nav.nav.dropdown-menu > li > span:hover, #ex-debug-toolbar .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus, #ex-debug-toolbar .navbar-default .navbar-nav .open .navbar-nav.nav.dropdown-menu > li > span:focus {
          color: #333;
          background-color: transparent; }
      #ex-debug-toolbar .navbar-default .navbar-nav .open .dropdown-menu > .active > a, #ex-debug-toolbar .navbar-default .navbar-nav .open .navbar-nav.nav.dropdown-menu > li.active > span, #ex-debug-toolbar .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, #ex-debug-toolbar .navbar-default .navbar-nav .open .navbar-nav.nav.dropdown-menu > li.active > span:hover, #ex-debug-toolbar .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus, #ex-debug-toolbar .navbar-default .navbar-nav .open .navbar-nav.nav.dropdown-menu > li.active > span:focus {
        color: #555;
        background-color: #e7e7e7; }
      #ex-debug-toolbar .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, #ex-debug-toolbar .navbar-default .navbar-nav .open .navbar-nav.nav.dropdown-menu > li.disabled > span, #ex-debug-toolbar .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, #ex-debug-toolbar .navbar-default .navbar-nav .open .navbar-nav.nav.dropdown-menu > li.disabled > span:hover, #ex-debug-toolbar .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus, #ex-debug-toolbar .navbar-default .navbar-nav .open .navbar-nav.nav.dropdown-menu > li.disabled > span:focus {
        color: #ccc;
        background-color: transparent; } }
    #ex-debug-toolbar .navbar-default .navbar-link {
      color: #777; }
      #ex-debug-toolbar .navbar-default .navbar-link:hover {
        color: #333; }
    #ex-debug-toolbar .navbar-default .btn-link {
      color: #777; }
      #ex-debug-toolbar .navbar-default .btn-link:hover, #ex-debug-toolbar .navbar-default .btn-link:focus {
        color: #333; }
      #ex-debug-toolbar .navbar-default .btn-link[disabled]:hover, #ex-debug-toolbar .navbar-default .btn-link[disabled]:focus,
      fieldset[disabled] #ex-debug-toolbar .navbar-default .btn-link:hover,
      fieldset[disabled] #ex-debug-toolbar .navbar-default .btn-link:focus {
        color: #ccc; }
  #ex-debug-toolbar .navbar-inverse {
    background-color: #222;
    border-color: #090909; }
    #ex-debug-toolbar .navbar-inverse .navbar-brand {
      color: #9d9d9d; }
      #ex-debug-toolbar .navbar-inverse .navbar-brand:hover, #ex-debug-toolbar .navbar-inverse .navbar-brand:focus {
        color: #fff;
        background-color: transparent; }
    #ex-debug-toolbar .navbar-inverse .navbar-text {
      color: #9d9d9d; }
    #ex-debug-toolbar .navbar-inverse .navbar-nav > li > a, #ex-debug-toolbar .navbar-inverse .navbar-nav.nav > li > span {
      color: #9d9d9d; }
      #ex-debug-toolbar .navbar-inverse .navbar-nav > li > a:hover, #ex-debug-toolbar .navbar-inverse .navbar-nav.nav > li > span:hover, #ex-debug-toolbar .navbar-inverse .navbar-nav > li > a:focus, #ex-debug-toolbar .navbar-inverse .navbar-nav.nav > li > span:focus {
        color: #fff;
        background-color: transparent; }
    #ex-debug-toolbar .navbar-inverse .navbar-nav > .active > a, #ex-debug-toolbar .navbar-inverse .navbar-nav.nav > li.active > span, #ex-debug-toolbar .navbar-inverse .navbar-nav > .active > a:hover, #ex-debug-toolbar .navbar-inverse .navbar-nav.nav > li.active > span:hover, #ex-debug-toolbar .navbar-inverse .navbar-nav > .active > a:focus, #ex-debug-toolbar .navbar-inverse .navbar-nav.nav > li.active > span:focus {
      color: #fff;
      background-color: #090909; }
    #ex-debug-toolbar .navbar-inverse .navbar-nav > .disabled > a, #ex-debug-toolbar .navbar-inverse .navbar-nav.nav > li.disabled > span, #ex-debug-toolbar .navbar-inverse .navbar-nav > .disabled > a:hover, #ex-debug-toolbar .navbar-inverse .navbar-nav.nav > li.disabled > span:hover, #ex-debug-toolbar .navbar-inverse .navbar-nav > .disabled > a:focus, #ex-debug-toolbar .navbar-inverse .navbar-nav.nav > li.disabled > span:focus {
      color: #444;
      background-color: transparent; }
    #ex-debug-toolbar .navbar-inverse .navbar-toggle {
      border-color: #333; }
      #ex-debug-toolbar .navbar-inverse .navbar-toggle:hover, #ex-debug-toolbar .navbar-inverse .navbar-toggle:focus {
        background-color: #333; }
      #ex-debug-toolbar .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #fff; }
    #ex-debug-toolbar .navbar-inverse .navbar-collapse,
    #ex-debug-toolbar .navbar-inverse .navbar-form {
      border-color: #101010; }
    #ex-debug-toolbar .navbar-inverse .navbar-nav > .open > a, #ex-debug-toolbar .navbar-inverse .navbar-nav.nav > li.open > span, #ex-debug-toolbar .navbar-inverse .navbar-nav > .open > a:hover, #ex-debug-toolbar .navbar-inverse .navbar-nav.nav > li.open > span:hover, #ex-debug-toolbar .navbar-inverse .navbar-nav > .open > a:focus, #ex-debug-toolbar .navbar-inverse .navbar-nav.nav > li.open > span:focus {
      background-color: #090909;
      color: #fff; }
    @media (max-width: 767px) {
      #ex-debug-toolbar .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #090909; }
      #ex-debug-toolbar .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #090909; }
      #ex-debug-toolbar .navbar-inverse .navbar-nav .open .dropdown-menu > li > a, #ex-debug-toolbar .navbar-inverse .navbar-nav .open .navbar-nav.nav.dropdown-menu > li > span {
        color: #9d9d9d; }
        #ex-debug-toolbar .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, #ex-debug-toolbar .navbar-inverse .navbar-nav .open .navbar-nav.nav.dropdown-menu > li > span:hover, #ex-debug-toolbar .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus, #ex-debug-toolbar .navbar-inverse .navbar-nav .open .navbar-nav.nav.dropdown-menu > li > span:focus {
          color: #fff;
          background-color: transparent; }
      #ex-debug-toolbar .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, #ex-debug-toolbar .navbar-inverse .navbar-nav .open .navbar-nav.nav.dropdown-menu > li.active > span, #ex-debug-toolbar .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, #ex-debug-toolbar .navbar-inverse .navbar-nav .open .navbar-nav.nav.dropdown-menu > li.active > span:hover, #ex-debug-toolbar .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus, #ex-debug-toolbar .navbar-inverse .navbar-nav .open .navbar-nav.nav.dropdown-menu > li.active > span:focus {
        color: #fff;
        background-color: #090909; }
      #ex-debug-toolbar .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, #ex-debug-toolbar .navbar-inverse .navbar-nav .open .navbar-nav.nav.dropdown-menu > li.disabled > span, #ex-debug-toolbar .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, #ex-debug-toolbar .navbar-inverse .navbar-nav .open .navbar-nav.nav.dropdown-menu > li.disabled > span:hover, #ex-debug-toolbar .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus, #ex-debug-toolbar .navbar-inverse .navbar-nav .open .navbar-nav.nav.dropdown-menu > li.disabled > span:focus {
        color: #444;
        background-color: transparent; } }
    #ex-debug-toolbar .navbar-inverse .navbar-link {
      color: #9d9d9d; }
      #ex-debug-toolbar .navbar-inverse .navbar-link:hover {
        color: #fff; }
    #ex-debug-toolbar .navbar-inverse .btn-link {
      color: #9d9d9d; }
      #ex-debug-toolbar .navbar-inverse .btn-link:hover, #ex-debug-toolbar .navbar-inverse .btn-link:focus {
        color: #fff; }
      #ex-debug-toolbar .navbar-inverse .btn-link[disabled]:hover, #ex-debug-toolbar .navbar-inverse .btn-link[disabled]:focus,
      fieldset[disabled] #ex-debug-toolbar .navbar-inverse .btn-link:hover,
      fieldset[disabled] #ex-debug-toolbar .navbar-inverse .btn-link:focus {
        color: #444; }
  #ex-debug-toolbar .breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px; }
    #ex-debug-toolbar .breadcrumb > li {
      display: inline-block; }
      #ex-debug-toolbar .breadcrumb > li + li:before {
        content: "/ ";
        padding: 0 5px;
        color: #ccc; }
    #ex-debug-toolbar .breadcrumb > .active {
      color: #777777; }
  #ex-debug-toolbar .pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px; }
    #ex-debug-toolbar .pagination > li {
      display: inline; }
      #ex-debug-toolbar .pagination > li > a, #ex-debug-toolbar .navbar-nav.nav.pagination > li > span,
      #ex-debug-toolbar .pagination > li > span {
        position: relative;
        float: left;
        padding: 6px 12px;
        line-height: 1.42857;
        text-decoration: none;
        color: #337ab7;
        background-color: #fff;
        border: 1px solid #ddd;
        margin-left: -1px; }
      #ex-debug-toolbar .pagination > li:first-child > a, #ex-debug-toolbar .navbar-nav.nav.pagination > li:first-child > span,
      #ex-debug-toolbar .pagination > li:first-child > span {
        margin-left: 0;
        border-bottom-left-radius: 4px;
        border-top-left-radius: 4px; }
      #ex-debug-toolbar .pagination > li:last-child > a, #ex-debug-toolbar .navbar-nav.nav.pagination > li:last-child > span,
      #ex-debug-toolbar .pagination > li:last-child > span {
        border-bottom-right-radius: 4px;
        border-top-right-radius: 4px; }
    #ex-debug-toolbar .pagination > li > a:hover, #ex-debug-toolbar .navbar-nav.nav.pagination > li > span:hover, #ex-debug-toolbar .pagination > li > a:focus, #ex-debug-toolbar .navbar-nav.nav.pagination > li > span:focus,
    #ex-debug-toolbar .pagination > li > span:hover,
    #ex-debug-toolbar .pagination > li > span:focus {
      z-index: 2;
      color: #23527c;
      background-color: #eeeeee;
      border-color: #ddd; }
    #ex-debug-toolbar .pagination > .active > a, #ex-debug-toolbar .navbar-nav.nav.pagination > li.active > span, #ex-debug-toolbar .pagination > .active > a:hover, #ex-debug-toolbar .navbar-nav.nav.pagination > li.active > span:hover, #ex-debug-toolbar .pagination > .active > a:focus, #ex-debug-toolbar .navbar-nav.nav.pagination > li.active > span:focus,
    #ex-debug-toolbar .pagination > .active > span,
    #ex-debug-toolbar .pagination > .active > span:hover,
    #ex-debug-toolbar .pagination > .active > span:focus {
      z-index: 3;
      color: #fff;
      background-color: #337ab7;
      border-color: #337ab7;
      cursor: default; }
    #ex-debug-toolbar .pagination > .disabled > span,
    #ex-debug-toolbar .pagination > .disabled > span:hover,
    #ex-debug-toolbar .pagination > .disabled > span:focus,
    #ex-debug-toolbar .pagination > .disabled > a, #ex-debug-toolbar .navbar-nav.nav.pagination > li.disabled > span,
    #ex-debug-toolbar .pagination > .disabled > a:hover, #ex-debug-toolbar .navbar-nav.nav.pagination > li.disabled > span:hover,
    #ex-debug-toolbar .pagination > .disabled > a:focus, #ex-debug-toolbar .navbar-nav.nav.pagination > li.disabled > span:focus {
      color: #777777;
      background-color: #fff;
      border-color: #ddd;
      cursor: not-allowed; }
  #ex-debug-toolbar .pagination-lg > li > a, #ex-debug-toolbar .navbar-nav.nav.pagination-lg > li > span,
  #ex-debug-toolbar .pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333; }
  #ex-debug-toolbar .pagination-lg > li:first-child > a, #ex-debug-toolbar .navbar-nav.nav.pagination-lg > li:first-child > span,
  #ex-debug-toolbar .pagination-lg > li:first-child > span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px; }
  #ex-debug-toolbar .pagination-lg > li:last-child > a, #ex-debug-toolbar .navbar-nav.nav.pagination-lg > li:last-child > span,
  #ex-debug-toolbar .pagination-lg > li:last-child > span {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px; }
  #ex-debug-toolbar .pagination-sm > li > a, #ex-debug-toolbar .navbar-nav.nav.pagination-sm > li > span,
  #ex-debug-toolbar .pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5; }
  #ex-debug-toolbar .pagination-sm > li:first-child > a, #ex-debug-toolbar .navbar-nav.nav.pagination-sm > li:first-child > span,
  #ex-debug-toolbar .pagination-sm > li:first-child > span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px; }
  #ex-debug-toolbar .pagination-sm > li:last-child > a, #ex-debug-toolbar .navbar-nav.nav.pagination-sm > li:last-child > span,
  #ex-debug-toolbar .pagination-sm > li:last-child > span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px; }
  #ex-debug-toolbar .pager {
    padding-left: 0;
    margin: 20px 0;
    list-style: none;
    text-align: center; }
    #ex-debug-toolbar .pager:before, #ex-debug-toolbar .pager:after {
      content: " ";
      display: table; }
    #ex-debug-toolbar .pager:after {
      clear: both; }
    #ex-debug-toolbar .pager li {
      display: inline; }
      #ex-debug-toolbar .pager li > a, #ex-debug-toolbar .pager .navbar-nav.nav > li > span,
      #ex-debug-toolbar .pager li > span {
        display: inline-block;
        padding: 5px 14px;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 15px; }
      #ex-debug-toolbar .pager li > a:hover, #ex-debug-toolbar .pager .navbar-nav.nav > li > span:hover,
      #ex-debug-toolbar .pager li > a:focus, #ex-debug-toolbar .pager .navbar-nav.nav > li > span:focus {
        text-decoration: none;
        background-color: #eeeeee; }
    #ex-debug-toolbar .pager .next > a, #ex-debug-toolbar .pager .navbar-nav.nav > li.next > span,
    #ex-debug-toolbar .pager .next > span {
      float: right; }
    #ex-debug-toolbar .pager .previous > a, #ex-debug-toolbar .pager .navbar-nav.nav > li.previous > span,
    #ex-debug-toolbar .pager .previous > span {
      float: left; }
    #ex-debug-toolbar .pager .disabled > a, #ex-debug-toolbar .pager .navbar-nav.nav > li.disabled > span,
    #ex-debug-toolbar .pager .disabled > a:hover, #ex-debug-toolbar .pager .navbar-nav.nav > li.disabled > span:hover,
    #ex-debug-toolbar .pager .disabled > a:focus, #ex-debug-toolbar .pager .navbar-nav.nav > li.disabled > span:focus,
    #ex-debug-toolbar .pager .disabled > span {
      color: #777777;
      background-color: #fff;
      cursor: not-allowed; }
  #ex-debug-toolbar .label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em; }
    #ex-debug-toolbar .label:empty {
      display: none; }
    .btn #ex-debug-toolbar .label {
      position: relative;
      top: -1px; }
  #ex-debug-toolbar a.label:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.label:hover, #ex-debug-toolbar a.label:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.label:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer; }
  #ex-debug-toolbar .label-default {
    background-color: #777777; }
    #ex-debug-toolbar .label-default[href]:hover, #ex-debug-toolbar .label-default[href]:focus {
      background-color: #5e5e5e; }
  #ex-debug-toolbar .label-primary {
    background-color: #337ab7; }
    #ex-debug-toolbar .label-primary[href]:hover, #ex-debug-toolbar .label-primary[href]:focus {
      background-color: #286090; }
  #ex-debug-toolbar .label-success {
    background-color: #5cb85c; }
    #ex-debug-toolbar .label-success[href]:hover, #ex-debug-toolbar .label-success[href]:focus {
      background-color: #449d44; }
  #ex-debug-toolbar .label-info {
    background-color: #5bc0de; }
    #ex-debug-toolbar .label-info[href]:hover, #ex-debug-toolbar .label-info[href]:focus {
      background-color: #31b0d5; }
  #ex-debug-toolbar .label-warning {
    background-color: #f0ad4e; }
    #ex-debug-toolbar .label-warning[href]:hover, #ex-debug-toolbar .label-warning[href]:focus {
      background-color: #ec971f; }
  #ex-debug-toolbar .label-danger {
    background-color: #d9534f; }
    #ex-debug-toolbar .label-danger[href]:hover, #ex-debug-toolbar .label-danger[href]:focus {
      background-color: #c9302c; }
  #ex-debug-toolbar .badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    background-color: #777777;
    border-radius: 10px; }
    #ex-debug-toolbar .badge:empty {
      display: none; }
    .btn #ex-debug-toolbar .badge {
      position: relative;
      top: -1px; }
    .btn-xs #ex-debug-toolbar .badge, #ex-debug-toolbar .btn-group-xs > .btn #ex-debug-toolbar .badge,
    .btn-group-xs > .btn #ex-debug-toolbar .badge {
      top: 0;
      padding: 1px 5px; }
    .list-group-item.active > #ex-debug-toolbar .badge,
    .nav-pills > .active > a > #ex-debug-toolbar .badge, #ex-debug-toolbar
    .navbar-nav.nav.nav-pills > li.active > span > #ex-debug-toolbar .badge {
      color: #337ab7;
      background-color: #fff; }
    .list-group-item > #ex-debug-toolbar .badge {
      float: right; }
    .list-group-item > #ex-debug-toolbar .badge + #ex-debug-toolbar .badge {
      margin-right: 5px; }
    .nav-pills > li > a > #ex-debug-toolbar .badge, #ex-debug-toolbar .navbar-nav.nav.nav-pills > li > span > #ex-debug-toolbar .badge {
      margin-left: 3px; }
  #ex-debug-toolbar a.badge:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.badge:hover, #ex-debug-toolbar a.badge:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer; }
  #ex-debug-toolbar .jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eeeeee; }
    #ex-debug-toolbar .jumbotron h1,
    #ex-debug-toolbar .jumbotron .h1 {
      color: inherit; }
    #ex-debug-toolbar .jumbotron p {
      margin-bottom: 15px;
      font-size: 21px;
      font-weight: 200; }
    #ex-debug-toolbar .jumbotron > hr {
      border-top-color: #d5d5d5; }
    .container #ex-debug-toolbar .jumbotron,
    .container-fluid #ex-debug-toolbar .jumbotron {
      border-radius: 6px;
      padding-left: 15px;
      padding-right: 15px; }
    #ex-debug-toolbar .jumbotron .container {
      max-width: 100%; }
    @media screen and (min-width: 768px) {
      #ex-debug-toolbar .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px; }
        .container #ex-debug-toolbar .jumbotron,
        .container-fluid #ex-debug-toolbar .jumbotron {
          padding-left: 60px;
          padding-right: 60px; }
        #ex-debug-toolbar .jumbotron h1,
        #ex-debug-toolbar .jumbotron .h1 {
          font-size: 63px; } }
  #ex-debug-toolbar .thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: border 0.2s ease-in-out;
    -o-transition: border 0.2s ease-in-out;
    transition: border 0.2s ease-in-out; }
    #ex-debug-toolbar .thumbnail > img,
    #ex-debug-toolbar .thumbnail a > img, #ex-debug-toolbar .thumbnail .navbar-nav.nav > li > span > img {
      display: block;
      max-width: 100%;
      height: auto;
      margin-left: auto;
      margin-right: auto; }
    #ex-debug-toolbar .thumbnail .caption {
      padding: 9px;
      color: #333333; }
  #ex-debug-toolbar a.thumbnail:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.thumbnail:hover,
  #ex-debug-toolbar a.thumbnail:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.thumbnail:focus,
  #ex-debug-toolbar a.thumbnail.active, #ex-debug-toolbar .navbar-nav.nav > li > span.thumbnail.active {
    border-color: #337ab7; }
  #ex-debug-toolbar .alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px; }
    #ex-debug-toolbar .alert h4 {
      margin-top: 0;
      color: inherit; }
    #ex-debug-toolbar .alert .alert-link {
      font-weight: bold; }
    #ex-debug-toolbar .alert > p,
    #ex-debug-toolbar .alert > ul {
      margin-bottom: 0; }
    #ex-debug-toolbar .alert > p + p {
      margin-top: 5px; }
  #ex-debug-toolbar .alert-dismissable,
  #ex-debug-toolbar .alert-dismissible {
    padding-right: 35px; }
    #ex-debug-toolbar .alert-dismissable .close,
    #ex-debug-toolbar .alert-dismissible .close {
      position: relative;
      top: -2px;
      right: -21px;
      color: inherit; }
  #ex-debug-toolbar .alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d; }
    #ex-debug-toolbar .alert-success hr {
      border-top-color: #c9e2b3; }
    #ex-debug-toolbar .alert-success .alert-link {
      color: #2b542c; }
  #ex-debug-toolbar .alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f; }
    #ex-debug-toolbar .alert-info hr {
      border-top-color: #a6e1ec; }
    #ex-debug-toolbar .alert-info .alert-link {
      color: #245269; }
  #ex-debug-toolbar .alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b; }
    #ex-debug-toolbar .alert-warning hr {
      border-top-color: #f7e1b5; }
    #ex-debug-toolbar .alert-warning .alert-link {
      color: #66512c; }
  #ex-debug-toolbar .alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442; }
    #ex-debug-toolbar .alert-danger hr {
      border-top-color: #e4b9c0; }
    #ex-debug-toolbar .alert-danger .alert-link {
      color: #843534; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }
  #ex-debug-toolbar .progress {
    overflow: hidden;
    height: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    -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); }
  #ex-debug-toolbar .progress-bar {
    float: left;
    width: 0%;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #337ab7;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 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; }
  #ex-debug-toolbar .progress-striped .progress-bar,
  #ex-debug-toolbar .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; }
  #ex-debug-toolbar .progress.active .progress-bar,
  #ex-debug-toolbar .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; }
  #ex-debug-toolbar .progress-bar-success {
    background-color: #5cb85c; }
    .progress-striped #ex-debug-toolbar .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); }
  #ex-debug-toolbar .progress-bar-info {
    background-color: #5bc0de; }
    .progress-striped #ex-debug-toolbar .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); }
  #ex-debug-toolbar .progress-bar-warning {
    background-color: #f0ad4e; }
    .progress-striped #ex-debug-toolbar .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); }
  #ex-debug-toolbar .progress-bar-danger {
    background-color: #d9534f; }
    .progress-striped #ex-debug-toolbar .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); }
  #ex-debug-toolbar .media {
    margin-top: 15px; }
    #ex-debug-toolbar .media:first-child {
      margin-top: 0; }
  #ex-debug-toolbar .media,
  #ex-debug-toolbar .media-body {
    zoom: 1;
    overflow: hidden; }
  #ex-debug-toolbar .media-body {
    width: 10000px; }
  #ex-debug-toolbar .media-object {
    display: block; }
    #ex-debug-toolbar .media-object.img-thumbnail {
      max-width: none; }
  #ex-debug-toolbar .media-right,
  #ex-debug-toolbar .media > .pull-right {
    padding-left: 10px; }
  #ex-debug-toolbar .media-left,
  #ex-debug-toolbar .media > .pull-left {
    padding-right: 10px; }
  #ex-debug-toolbar .media-left,
  #ex-debug-toolbar .media-right,
  #ex-debug-toolbar .media-body {
    display: table-cell;
    vertical-align: top; }
  #ex-debug-toolbar .media-middle {
    vertical-align: middle; }
  #ex-debug-toolbar .media-bottom {
    vertical-align: bottom; }
  #ex-debug-toolbar .media-heading {
    margin-top: 0;
    margin-bottom: 5px; }
  #ex-debug-toolbar .media-list {
    padding-left: 0;
    list-style: none; }
  #ex-debug-toolbar .list-group {
    margin-bottom: 20px;
    padding-left: 0; }
  #ex-debug-toolbar .list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd; }
    #ex-debug-toolbar .list-group-item:first-child {
      border-top-right-radius: 4px;
      border-top-left-radius: 4px; }
    #ex-debug-toolbar .list-group-item:last-child {
      margin-bottom: 0;
      border-bottom-right-radius: 4px;
      border-bottom-left-radius: 4px; }
  #ex-debug-toolbar a.list-group-item, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item,
  #ex-debug-toolbar button.list-group-item {
    color: #555; }
    #ex-debug-toolbar a.list-group-item .list-group-item-heading, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item .list-group-item-heading,
    #ex-debug-toolbar button.list-group-item .list-group-item-heading {
      color: #333; }
    #ex-debug-toolbar a.list-group-item:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item:hover, #ex-debug-toolbar a.list-group-item:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item:focus,
    #ex-debug-toolbar button.list-group-item:hover,
    #ex-debug-toolbar button.list-group-item:focus {
      text-decoration: none;
      color: #555;
      background-color: #f5f5f5; }
  #ex-debug-toolbar button.list-group-item {
    width: 100%;
    text-align: left; }
  #ex-debug-toolbar .list-group-item.disabled, #ex-debug-toolbar .list-group-item.disabled:hover, #ex-debug-toolbar .list-group-item.disabled:focus {
    background-color: #eeeeee;
    color: #777777;
    cursor: not-allowed; }
    #ex-debug-toolbar .list-group-item.disabled .list-group-item-heading, #ex-debug-toolbar .list-group-item.disabled:hover .list-group-item-heading, #ex-debug-toolbar .list-group-item.disabled:focus .list-group-item-heading {
      color: inherit; }
    #ex-debug-toolbar .list-group-item.disabled .list-group-item-text, #ex-debug-toolbar .list-group-item.disabled:hover .list-group-item-text, #ex-debug-toolbar .list-group-item.disabled:focus .list-group-item-text {
      color: #777777; }
  #ex-debug-toolbar .list-group-item.active, #ex-debug-toolbar .list-group-item.active:hover, #ex-debug-toolbar .list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7; }
    #ex-debug-toolbar .list-group-item.active .list-group-item-heading,
    #ex-debug-toolbar .list-group-item.active .list-group-item-heading > small,
    #ex-debug-toolbar .list-group-item.active .list-group-item-heading > .small, #ex-debug-toolbar .list-group-item.active:hover .list-group-item-heading,
    #ex-debug-toolbar .list-group-item.active:hover .list-group-item-heading > small,
    #ex-debug-toolbar .list-group-item.active:hover .list-group-item-heading > .small, #ex-debug-toolbar .list-group-item.active:focus .list-group-item-heading,
    #ex-debug-toolbar .list-group-item.active:focus .list-group-item-heading > small,
    #ex-debug-toolbar .list-group-item.active:focus .list-group-item-heading > .small {
      color: inherit; }
    #ex-debug-toolbar .list-group-item.active .list-group-item-text, #ex-debug-toolbar .list-group-item.active:hover .list-group-item-text, #ex-debug-toolbar .list-group-item.active:focus .list-group-item-text {
      color: #c7ddef; }
  #ex-debug-toolbar .list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8; }
  #ex-debug-toolbar a.list-group-item-success, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-success,
  #ex-debug-toolbar button.list-group-item-success {
    color: #3c763d; }
    #ex-debug-toolbar a.list-group-item-success .list-group-item-heading, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-success .list-group-item-heading,
    #ex-debug-toolbar button.list-group-item-success .list-group-item-heading {
      color: inherit; }
    #ex-debug-toolbar a.list-group-item-success:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-success:hover, #ex-debug-toolbar a.list-group-item-success:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-success:focus,
    #ex-debug-toolbar button.list-group-item-success:hover,
    #ex-debug-toolbar button.list-group-item-success:focus {
      color: #3c763d;
      background-color: #d0e9c6; }
    #ex-debug-toolbar a.list-group-item-success.active, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-success.active, #ex-debug-toolbar a.list-group-item-success.active:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-success.active:hover, #ex-debug-toolbar a.list-group-item-success.active:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-success.active:focus,
    #ex-debug-toolbar button.list-group-item-success.active,
    #ex-debug-toolbar button.list-group-item-success.active:hover,
    #ex-debug-toolbar button.list-group-item-success.active:focus {
      color: #fff;
      background-color: #3c763d;
      border-color: #3c763d; }
  #ex-debug-toolbar .list-group-item-info {
    color: #31708f;
    background-color: #d9edf7; }
  #ex-debug-toolbar a.list-group-item-info, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-info,
  #ex-debug-toolbar button.list-group-item-info {
    color: #31708f; }
    #ex-debug-toolbar a.list-group-item-info .list-group-item-heading, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-info .list-group-item-heading,
    #ex-debug-toolbar button.list-group-item-info .list-group-item-heading {
      color: inherit; }
    #ex-debug-toolbar a.list-group-item-info:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-info:hover, #ex-debug-toolbar a.list-group-item-info:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-info:focus,
    #ex-debug-toolbar button.list-group-item-info:hover,
    #ex-debug-toolbar button.list-group-item-info:focus {
      color: #31708f;
      background-color: #c4e3f3; }
    #ex-debug-toolbar a.list-group-item-info.active, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-info.active, #ex-debug-toolbar a.list-group-item-info.active:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-info.active:hover, #ex-debug-toolbar a.list-group-item-info.active:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-info.active:focus,
    #ex-debug-toolbar button.list-group-item-info.active,
    #ex-debug-toolbar button.list-group-item-info.active:hover,
    #ex-debug-toolbar button.list-group-item-info.active:focus {
      color: #fff;
      background-color: #31708f;
      border-color: #31708f; }
  #ex-debug-toolbar .list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3; }
  #ex-debug-toolbar a.list-group-item-warning, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-warning,
  #ex-debug-toolbar button.list-group-item-warning {
    color: #8a6d3b; }
    #ex-debug-toolbar a.list-group-item-warning .list-group-item-heading, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-warning .list-group-item-heading,
    #ex-debug-toolbar button.list-group-item-warning .list-group-item-heading {
      color: inherit; }
    #ex-debug-toolbar a.list-group-item-warning:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-warning:hover, #ex-debug-toolbar a.list-group-item-warning:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-warning:focus,
    #ex-debug-toolbar button.list-group-item-warning:hover,
    #ex-debug-toolbar button.list-group-item-warning:focus {
      color: #8a6d3b;
      background-color: #faf2cc; }
    #ex-debug-toolbar a.list-group-item-warning.active, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-warning.active, #ex-debug-toolbar a.list-group-item-warning.active:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-warning.active:hover, #ex-debug-toolbar a.list-group-item-warning.active:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-warning.active:focus,
    #ex-debug-toolbar button.list-group-item-warning.active,
    #ex-debug-toolbar button.list-group-item-warning.active:hover,
    #ex-debug-toolbar button.list-group-item-warning.active:focus {
      color: #fff;
      background-color: #8a6d3b;
      border-color: #8a6d3b; }
  #ex-debug-toolbar .list-group-item-danger {
    color: #a94442;
    background-color: #f2dede; }
  #ex-debug-toolbar a.list-group-item-danger, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-danger,
  #ex-debug-toolbar button.list-group-item-danger {
    color: #a94442; }
    #ex-debug-toolbar a.list-group-item-danger .list-group-item-heading, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-danger .list-group-item-heading,
    #ex-debug-toolbar button.list-group-item-danger .list-group-item-heading {
      color: inherit; }
    #ex-debug-toolbar a.list-group-item-danger:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-danger:hover, #ex-debug-toolbar a.list-group-item-danger:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-danger:focus,
    #ex-debug-toolbar button.list-group-item-danger:hover,
    #ex-debug-toolbar button.list-group-item-danger:focus {
      color: #a94442;
      background-color: #ebcccc; }
    #ex-debug-toolbar a.list-group-item-danger.active, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-danger.active, #ex-debug-toolbar a.list-group-item-danger.active:hover, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-danger.active:hover, #ex-debug-toolbar a.list-group-item-danger.active:focus, #ex-debug-toolbar .navbar-nav.nav > li > span.list-group-item-danger.active:focus,
    #ex-debug-toolbar button.list-group-item-danger.active,
    #ex-debug-toolbar button.list-group-item-danger.active:hover,
    #ex-debug-toolbar button.list-group-item-danger.active:focus {
      color: #fff;
      background-color: #a94442;
      border-color: #a94442; }
  #ex-debug-toolbar .list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px; }
  #ex-debug-toolbar .list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3; }
  #ex-debug-toolbar .panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }
  #ex-debug-toolbar .panel-body {
    padding: 15px; }
    #ex-debug-toolbar .panel-body:before, #ex-debug-toolbar .panel-body:after {
      content: " ";
      display: table; }
    #ex-debug-toolbar .panel-body:after {
      clear: both; }
  #ex-debug-toolbar .panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px; }
    #ex-debug-toolbar .panel-heading > .dropdown .dropdown-toggle {
      color: inherit; }
  #ex-debug-toolbar .panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit; }
    #ex-debug-toolbar .panel-title > a, #ex-debug-toolbar .navbar-nav.nav > li.panel-title > span,
    #ex-debug-toolbar .panel-title > small,
    #ex-debug-toolbar .panel-title > .small,
    #ex-debug-toolbar .panel-title > small > a,
    #ex-debug-toolbar .panel-title > .small > a, #ex-debug-toolbar .navbar-nav.nav.panel-title > li.small > span {
      color: inherit; }
  #ex-debug-toolbar .panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px; }
  #ex-debug-toolbar .panel > .list-group,
  #ex-debug-toolbar .panel > .panel-collapse > .list-group {
    margin-bottom: 0; }
    #ex-debug-toolbar .panel > .list-group .list-group-item,
    #ex-debug-toolbar .panel > .panel-collapse > .list-group .list-group-item {
      border-width: 1px 0;
      border-radius: 0; }
    #ex-debug-toolbar .panel > .list-group:first-child .list-group-item:first-child,
    #ex-debug-toolbar .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
      border-top: 0;
      border-top-right-radius: 3px;
      border-top-left-radius: 3px; }
    #ex-debug-toolbar .panel > .list-group:last-child .list-group-item:last-child,
    #ex-debug-toolbar .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
      border-bottom: 0;
      border-bottom-right-radius: 3px;
      border-bottom-left-radius: 3px; }
  #ex-debug-toolbar .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0; }
  #ex-debug-toolbar .panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0; }
  #ex-debug-toolbar .list-group + .panel-footer {
    border-top-width: 0; }
  #ex-debug-toolbar .panel > .table,
  #ex-debug-toolbar .panel > .table-responsive > .table,
  #ex-debug-toolbar .panel > .panel-collapse > .table {
    margin-bottom: 0; }
    #ex-debug-toolbar .panel > .table caption,
    #ex-debug-toolbar .panel > .table-responsive > .table caption,
    #ex-debug-toolbar .panel > .panel-collapse > .table caption {
      padding-left: 15px;
      padding-right: 15px; }
  #ex-debug-toolbar .panel > .table:first-child,
  #ex-debug-toolbar .panel > .table-responsive:first-child > .table:first-child {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px; }
    #ex-debug-toolbar .panel > .table:first-child > thead:first-child > tr:first-child,
    #ex-debug-toolbar .panel > .table:first-child > tbody:first-child > tr:first-child,
    #ex-debug-toolbar .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
    #ex-debug-toolbar .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
      border-top-left-radius: 3px;
      border-top-right-radius: 3px; }
      #ex-debug-toolbar .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
      #ex-debug-toolbar .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
      #ex-debug-toolbar .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
      #ex-debug-toolbar .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
      #ex-debug-toolbar .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
      #ex-debug-toolbar .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
      #ex-debug-toolbar .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
      #ex-debug-toolbar .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
        border-top-left-radius: 3px; }
      #ex-debug-toolbar .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
      #ex-debug-toolbar .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
      #ex-debug-toolbar .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
      #ex-debug-toolbar .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
      #ex-debug-toolbar .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
      #ex-debug-toolbar .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
      #ex-debug-toolbar .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
      #ex-debug-toolbar .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
        border-top-right-radius: 3px; }
  #ex-debug-toolbar .panel > .table:last-child,
  #ex-debug-toolbar .panel > .table-responsive:last-child > .table:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px; }
    #ex-debug-toolbar .panel > .table:last-child > tbody:last-child > tr:last-child,
    #ex-debug-toolbar .panel > .table:last-child > tfoot:last-child > tr:last-child,
    #ex-debug-toolbar .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
    #ex-debug-toolbar .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
      border-bottom-left-radius: 3px;
      border-bottom-right-radius: 3px; }
      #ex-debug-toolbar .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
      #ex-debug-toolbar .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
      #ex-debug-toolbar .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
      #ex-debug-toolbar .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
      #ex-debug-toolbar .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
      #ex-debug-toolbar .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
      #ex-debug-toolbar .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
      #ex-debug-toolbar .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
        border-bottom-left-radius: 3px; }
      #ex-debug-toolbar .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
      #ex-debug-toolbar .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
      #ex-debug-toolbar .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
      #ex-debug-toolbar .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
      #ex-debug-toolbar .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
      #ex-debug-toolbar .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
      #ex-debug-toolbar .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
      #ex-debug-toolbar .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
        border-bottom-right-radius: 3px; }
  #ex-debug-toolbar .panel > .panel-body + .table,
  #ex-debug-toolbar .panel > .panel-body + .table-responsive,
  #ex-debug-toolbar .panel > .table + .panel-body,
  #ex-debug-toolbar .panel > .table-responsive + .panel-body {
    border-top: 1px solid #ddd; }
  #ex-debug-toolbar .panel > .table > tbody:first-child > tr:first-child th,
  #ex-debug-toolbar .panel > .table > tbody:first-child > tr:first-child td {
    border-top: 0; }
  #ex-debug-toolbar .panel > .table-bordered,
  #ex-debug-toolbar .panel > .table-responsive > .table-bordered {
    border: 0; }
    #ex-debug-toolbar .panel > .table-bordered > thead > tr > th:first-child,
    #ex-debug-toolbar .panel > .table-bordered > thead > tr > td:first-child,
    #ex-debug-toolbar .panel > .table-bordered > tbody > tr > th:first-child,
    #ex-debug-toolbar .panel > .table-bordered > tbody > tr > td:first-child,
    #ex-debug-toolbar .panel > .table-bordered > tfoot > tr > th:first-child,
    #ex-debug-toolbar .panel > .table-bordered > tfoot > tr > td:first-child,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
      border-left: 0; }
    #ex-debug-toolbar .panel > .table-bordered > thead > tr > th:last-child,
    #ex-debug-toolbar .panel > .table-bordered > thead > tr > td:last-child,
    #ex-debug-toolbar .panel > .table-bordered > tbody > tr > th:last-child,
    #ex-debug-toolbar .panel > .table-bordered > tbody > tr > td:last-child,
    #ex-debug-toolbar .panel > .table-bordered > tfoot > tr > th:last-child,
    #ex-debug-toolbar .panel > .table-bordered > tfoot > tr > td:last-child,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
      border-right: 0; }
    #ex-debug-toolbar .panel > .table-bordered > thead > tr:first-child > td,
    #ex-debug-toolbar .panel > .table-bordered > thead > tr:first-child > th,
    #ex-debug-toolbar .panel > .table-bordered > tbody > tr:first-child > td,
    #ex-debug-toolbar .panel > .table-bordered > tbody > tr:first-child > th,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
      border-bottom: 0; }
    #ex-debug-toolbar .panel > .table-bordered > tbody > tr:last-child > td,
    #ex-debug-toolbar .panel > .table-bordered > tbody > tr:last-child > th,
    #ex-debug-toolbar .panel > .table-bordered > tfoot > tr:last-child > td,
    #ex-debug-toolbar .panel > .table-bordered > tfoot > tr:last-child > th,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
    #ex-debug-toolbar .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
      border-bottom: 0; }
  #ex-debug-toolbar .panel > .table-responsive {
    border: 0;
    margin-bottom: 0; }
  #ex-debug-toolbar .panel-group {
    margin-bottom: 20px; }
    #ex-debug-toolbar .panel-group .panel {
      margin-bottom: 0;
      border-radius: 4px; }
      #ex-debug-toolbar .panel-group .panel + .panel {
        margin-top: 5px; }
    #ex-debug-toolbar .panel-group .panel-heading {
      border-bottom: 0; }
      #ex-debug-toolbar .panel-group .panel-heading + .panel-collapse > .panel-body,
      #ex-debug-toolbar .panel-group .panel-heading + .panel-collapse > .list-group {
        border-top: 1px solid #ddd; }
    #ex-debug-toolbar .panel-group .panel-footer {
      border-top: 0; }
      #ex-debug-toolbar .panel-group .panel-footer + .panel-collapse .panel-body {
        border-bottom: 1px solid #ddd; }
  #ex-debug-toolbar .panel-default {
    border-color: #ddd; }
    #ex-debug-toolbar .panel-default > .panel-heading {
      color: #333333;
      background-color: #f5f5f5;
      border-color: #ddd; }
      #ex-debug-toolbar .panel-default > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #ddd; }
      #ex-debug-toolbar .panel-default > .panel-heading .badge {
        color: #f5f5f5;
        background-color: #333333; }
    #ex-debug-toolbar .panel-default > .panel-footer + .panel-collapse > .panel-body {
      border-bottom-color: #ddd; }
  #ex-debug-toolbar .panel-primary {
    border-color: #337ab7; }
    #ex-debug-toolbar .panel-primary > .panel-heading {
      color: #fff;
      background-color: #337ab7;
      border-color: #337ab7; }
      #ex-debug-toolbar .panel-primary > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #337ab7; }
      #ex-debug-toolbar .panel-primary > .panel-heading .badge {
        color: #337ab7;
        background-color: #fff; }
    #ex-debug-toolbar .panel-primary > .panel-footer + .panel-collapse > .panel-body {
      border-bottom-color: #337ab7; }
  #ex-debug-toolbar .panel-success {
    border-color: #d6e9c6; }
    #ex-debug-toolbar .panel-success > .panel-heading {
      color: #3c763d;
      background-color: #dff0d8;
      border-color: #d6e9c6; }
      #ex-debug-toolbar .panel-success > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #d6e9c6; }
      #ex-debug-toolbar .panel-success > .panel-heading .badge {
        color: #dff0d8;
        background-color: #3c763d; }
    #ex-debug-toolbar .panel-success > .panel-footer + .panel-collapse > .panel-body {
      border-bottom-color: #d6e9c6; }
  #ex-debug-toolbar .panel-info {
    border-color: #bce8f1; }
    #ex-debug-toolbar .panel-info > .panel-heading {
      color: #31708f;
      background-color: #d9edf7;
      border-color: #bce8f1; }
      #ex-debug-toolbar .panel-info > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #bce8f1; }
      #ex-debug-toolbar .panel-info > .panel-heading .badge {
        color: #d9edf7;
        background-color: #31708f; }
    #ex-debug-toolbar .panel-info > .panel-footer + .panel-collapse > .panel-body {
      border-bottom-color: #bce8f1; }
  #ex-debug-toolbar .panel-warning {
    border-color: #faebcc; }
    #ex-debug-toolbar .panel-warning > .panel-heading {
      color: #8a6d3b;
      background-color: #fcf8e3;
      border-color: #faebcc; }
      #ex-debug-toolbar .panel-warning > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #faebcc; }
      #ex-debug-toolbar .panel-warning > .panel-heading .badge {
        color: #fcf8e3;
        background-color: #8a6d3b; }
    #ex-debug-toolbar .panel-warning > .panel-footer + .panel-collapse > .panel-body {
      border-bottom-color: #faebcc; }
  #ex-debug-toolbar .panel-danger {
    border-color: #ebccd1; }
    #ex-debug-toolbar .panel-danger > .panel-heading {
      color: #a94442;
      background-color: #f2dede;
      border-color: #ebccd1; }
      #ex-debug-toolbar .panel-danger > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #ebccd1; }
      #ex-debug-toolbar .panel-danger > .panel-heading .badge {
        color: #f2dede;
        background-color: #a94442; }
    #ex-debug-toolbar .panel-danger > .panel-footer + .panel-collapse > .panel-body {
      border-bottom-color: #ebccd1; }
  #ex-debug-toolbar .embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden; }
    #ex-debug-toolbar .embed-responsive .embed-responsive-item,
    #ex-debug-toolbar .embed-responsive iframe,
    #ex-debug-toolbar .embed-responsive embed,
    #ex-debug-toolbar .embed-responsive object,
    #ex-debug-toolbar .embed-responsive video {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      height: 100%;
      width: 100%;
      border: 0; }
  #ex-debug-toolbar .embed-responsive-16by9 {
    padding-bottom: 56.25%; }
  #ex-debug-toolbar .embed-responsive-4by3 {
    padding-bottom: 75%; }
  #ex-debug-toolbar .well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
    #ex-debug-toolbar .well blockquote {
      border-color: #ddd;
      border-color: rgba(0, 0, 0, 0.15); }
  #ex-debug-toolbar .well-lg {
    padding: 24px;
    border-radius: 6px; }
  #ex-debug-toolbar .well-sm {
    padding: 9px;
    border-radius: 3px; }
  #ex-debug-toolbar .close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.2;
    filter: alpha(opacity=20); }
    #ex-debug-toolbar .close:hover, #ex-debug-toolbar .close:focus {
      color: #000;
      text-decoration: none;
      cursor: pointer;
      opacity: 0.5;
      filter: alpha(opacity=50); }
  #ex-debug-toolbar button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none; }
  #ex-debug-toolbar .modal-open {
    overflow: hidden; }
  #ex-debug-toolbar .modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0; }
    #ex-debug-toolbar .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; }
    #ex-debug-toolbar .modal.in .modal-dialog {
      -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -o-transform: translate(0, 0);
      transform: translate(0, 0); }
  #ex-debug-toolbar .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto; }
  #ex-debug-toolbar .modal-dialog {
    position: relative;
    width: auto;
    margin: 10px; }
  #ex-debug-toolbar .modal-content {
    position: relative;
    background-color: #fff;
    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);
    background-clip: padding-box;
    outline: 0; }
  #ex-debug-toolbar .modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000; }
    #ex-debug-toolbar .modal-backdrop.fade {
      opacity: 0;
      filter: alpha(opacity=0); }
    #ex-debug-toolbar .modal-backdrop.in {
      opacity: 0.5;
      filter: alpha(opacity=50); }
  #ex-debug-toolbar .modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5; }
    #ex-debug-toolbar .modal-header:before, #ex-debug-toolbar .modal-header:after {
      content: " ";
      display: table; }
    #ex-debug-toolbar .modal-header:after {
      clear: both; }
  #ex-debug-toolbar .modal-header .close {
    margin-top: -2px; }
  #ex-debug-toolbar .modal-title {
    margin: 0;
    line-height: 1.42857; }
  #ex-debug-toolbar .modal-body {
    position: relative;
    padding: 15px; }
  #ex-debug-toolbar .modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5; }
    #ex-debug-toolbar .modal-footer:before, #ex-debug-toolbar .modal-footer:after {
      content: " ";
      display: table; }
    #ex-debug-toolbar .modal-footer:after {
      clear: both; }
    #ex-debug-toolbar .modal-footer .btn + .btn {
      margin-left: 5px;
      margin-bottom: 0; }
    #ex-debug-toolbar .modal-footer .btn-group .btn + .btn {
      margin-left: -1px; }
    #ex-debug-toolbar .modal-footer .btn-block + .btn-block {
      margin-left: 0; }
  #ex-debug-toolbar .modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll; }
  @media (min-width: 768px) {
    #ex-debug-toolbar .modal-dialog {
      width: 600px;
      margin: 30px auto; }
    #ex-debug-toolbar .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); }
    #ex-debug-toolbar .modal-sm {
      width: 300px; } }
  @media (min-width: 992px) {
    #ex-debug-toolbar .modal-lg {
      width: 900px; } }
  #ex-debug-toolbar .tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 12px;
    opacity: 0;
    filter: alpha(opacity=0); }
    #ex-debug-toolbar .tooltip.in {
      opacity: 0.9;
      filter: alpha(opacity=90); }
    #ex-debug-toolbar .tooltip.top {
      margin-top: -3px;
      padding: 5px 0; }
    #ex-debug-toolbar .tooltip.right {
      margin-left: 3px;
      padding: 0 5px; }
    #ex-debug-toolbar .tooltip.bottom {
      margin-top: 3px;
      padding: 5px 0; }
    #ex-debug-toolbar .tooltip.left {
      margin-left: -3px;
      padding: 0 5px; }
  #ex-debug-toolbar .tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px; }
  #ex-debug-toolbar .tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid; }
  #ex-debug-toolbar .tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000; }
  #ex-debug-toolbar .tooltip.top-left .tooltip-arrow {
    bottom: 0;
    right: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000; }
  #ex-debug-toolbar .tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000; }
  #ex-debug-toolbar .tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000; }
  #ex-debug-toolbar .tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000; }
  #ex-debug-toolbar .tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000; }
  #ex-debug-toolbar .tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000; }
  #ex-debug-toolbar .tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000; }
  #ex-debug-toolbar .popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 14px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
    #ex-debug-toolbar .popover.top {
      margin-top: -10px; }
    #ex-debug-toolbar .popover.right {
      margin-left: 10px; }
    #ex-debug-toolbar .popover.bottom {
      margin-top: 10px; }
    #ex-debug-toolbar .popover.left {
      margin-left: -10px; }
  #ex-debug-toolbar .popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0; }
  #ex-debug-toolbar .popover-content {
    padding: 9px 14px; }
  #ex-debug-toolbar .popover > .arrow, #ex-debug-toolbar .popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid; }
  #ex-debug-toolbar .popover > .arrow {
    border-width: 11px; }
  #ex-debug-toolbar .popover > .arrow:after {
    border-width: 10px;
    content: ""; }
  #ex-debug-toolbar .popover.top > .arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #999999;
    border-top-color: rgba(0, 0, 0, 0.25);
    bottom: -11px; }
    #ex-debug-toolbar .popover.top > .arrow:after {
      content: " ";
      bottom: 1px;
      margin-left: -10px;
      border-bottom-width: 0;
      border-top-color: #fff; }
  #ex-debug-toolbar .popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999999;
    border-right-color: rgba(0, 0, 0, 0.25); }
    #ex-debug-toolbar .popover.right > .arrow:after {
      content: " ";
      left: 1px;
      bottom: -10px;
      border-left-width: 0;
      border-right-color: #fff; }
  #ex-debug-toolbar .popover.bottom > .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999999;
    border-bottom-color: rgba(0, 0, 0, 0.25);
    top: -11px; }
    #ex-debug-toolbar .popover.bottom > .arrow:after {
      content: " ";
      top: 1px;
      margin-left: -10px;
      border-top-width: 0;
      border-bottom-color: #fff; }
  #ex-debug-toolbar .popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999999;
    border-left-color: rgba(0, 0, 0, 0.25); }
    #ex-debug-toolbar .popover.left > .arrow:after {
      content: " ";
      right: 1px;
      border-right-width: 0;
      border-left-color: #fff;
      bottom: -10px; }
  #ex-debug-toolbar .carousel {
    position: relative; }
  #ex-debug-toolbar .carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%; }
    #ex-debug-toolbar .carousel-inner > .item {
      display: none;
      position: relative;
      -webkit-transition: 0.6s ease-in-out left;
      -o-transition: 0.6s ease-in-out left;
      transition: 0.6s ease-in-out left; }
      #ex-debug-toolbar .carousel-inner > .item > img,
      #ex-debug-toolbar .carousel-inner > .item > a > img, #ex-debug-toolbar .navbar-nav.nav.carousel-inner > li.item > span > img {
        display: block;
        max-width: 100%;
        height: auto;
        line-height: 1; }
      @media all and (transform-3d), (-webkit-transform-3d) {
        #ex-debug-toolbar .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; }
          #ex-debug-toolbar .carousel-inner > .item.next, #ex-debug-toolbar .carousel-inner > .item.active.right {
            -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
            left: 0; }
          #ex-debug-toolbar .carousel-inner > .item.prev, #ex-debug-toolbar .carousel-inner > .item.active.left {
            -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
            left: 0; }
          #ex-debug-toolbar .carousel-inner > .item.next.left, #ex-debug-toolbar .carousel-inner > .item.prev.right, #ex-debug-toolbar .carousel-inner > .item.active {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
            left: 0; } }
    #ex-debug-toolbar .carousel-inner > .active,
    #ex-debug-toolbar .carousel-inner > .next,
    #ex-debug-toolbar .carousel-inner > .prev {
      display: block; }
    #ex-debug-toolbar .carousel-inner > .active {
      left: 0; }
    #ex-debug-toolbar .carousel-inner > .next,
    #ex-debug-toolbar .carousel-inner > .prev {
      position: absolute;
      top: 0;
      width: 100%; }
    #ex-debug-toolbar .carousel-inner > .next {
      left: 100%; }
    #ex-debug-toolbar .carousel-inner > .prev {
      left: -100%; }
    #ex-debug-toolbar .carousel-inner > .next.left,
    #ex-debug-toolbar .carousel-inner > .prev.right {
      left: 0; }
    #ex-debug-toolbar .carousel-inner > .active.left {
      left: -100%; }
    #ex-debug-toolbar .carousel-inner > .active.right {
      left: 100%; }
  #ex-debug-toolbar .carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: 0.5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    background-color: transparent; }
    #ex-debug-toolbar .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%);
      background-repeat: repeat-x;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
    #ex-debug-toolbar .carousel-control.right {
      left: auto;
      right: 0;
      background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
      background-image: -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%);
      background-repeat: repeat-x;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
    #ex-debug-toolbar .carousel-control:hover, #ex-debug-toolbar .carousel-control:focus {
      outline: 0;
      color: #fff;
      text-decoration: none;
      opacity: 0.9;
      filter: alpha(opacity=90); }
    #ex-debug-toolbar .carousel-control .icon-prev,
    #ex-debug-toolbar .carousel-control .icon-next,
    #ex-debug-toolbar .carousel-control .glyphicon-chevron-left,
    #ex-debug-toolbar .carousel-control .glyphicon-chevron-right {
      position: absolute;
      top: 50%;
      margin-top: -10px;
      z-index: 5;
      display: inline-block; }
    #ex-debug-toolbar .carousel-control .icon-prev,
    #ex-debug-toolbar .carousel-control .glyphicon-chevron-left {
      left: 50%;
      margin-left: -10px; }
    #ex-debug-toolbar .carousel-control .icon-next,
    #ex-debug-toolbar .carousel-control .glyphicon-chevron-right {
      right: 50%;
      margin-right: -10px; }
    #ex-debug-toolbar .carousel-control .icon-prev,
    #ex-debug-toolbar .carousel-control .icon-next {
      width: 20px;
      height: 20px;
      line-height: 1;
      font-family: serif; }
    #ex-debug-toolbar .carousel-control .icon-prev:before {
      content: '\2039'; }
    #ex-debug-toolbar .carousel-control .icon-next:before {
      content: '\203a'; }
  #ex-debug-toolbar .carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center; }
    #ex-debug-toolbar .carousel-indicators li {
      display: inline-block;
      width: 10px;
      height: 10px;
      margin: 1px;
      text-indent: -999px;
      border: 1px solid #fff;
      border-radius: 10px;
      cursor: pointer;
      background-color: #000 \9;
      background-color: transparent; }
    #ex-debug-toolbar .carousel-indicators .active {
      margin: 0;
      width: 12px;
      height: 12px;
      background-color: #fff; }
  #ex-debug-toolbar .carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
    #ex-debug-toolbar .carousel-caption .btn {
      text-shadow: none; }
  @media screen and (min-width: 768px) {
    #ex-debug-toolbar .carousel-control .glyphicon-chevron-left,
    #ex-debug-toolbar .carousel-control .glyphicon-chevron-right,
    #ex-debug-toolbar .carousel-control .icon-prev,
    #ex-debug-toolbar .carousel-control .icon-next {
      width: 30px;
      height: 30px;
      margin-top: -10px;
      font-size: 30px; }
    #ex-debug-toolbar .carousel-control .glyphicon-chevron-left,
    #ex-debug-toolbar .carousel-control .icon-prev {
      margin-left: -10px; }
    #ex-debug-toolbar .carousel-control .glyphicon-chevron-right,
    #ex-debug-toolbar .carousel-control .icon-next {
      margin-right: -10px; }
    #ex-debug-toolbar .carousel-caption {
      left: 20%;
      right: 20%;
      padding-bottom: 30px; }
    #ex-debug-toolbar .carousel-indicators {
      bottom: 20px; } }
  #ex-debug-toolbar .clearfix:before, #ex-debug-toolbar .clearfix:after {
    content: " ";
    display: table; }
  #ex-debug-toolbar .clearfix:after {
    clear: both; }
  #ex-debug-toolbar .center-block {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  #ex-debug-toolbar .pull-right {
    float: right !important; }
  #ex-debug-toolbar .pull-left {
    float: left !important; }
  #ex-debug-toolbar .hide {
    display: none !important; }
  #ex-debug-toolbar .show {
    display: block !important; }
  #ex-debug-toolbar .invisible {
    visibility: hidden; }
  #ex-debug-toolbar .text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0; }
  #ex-debug-toolbar .hidden {
    display: none !important; }
  #ex-debug-toolbar .affix {
    position: fixed; }

@-ms-viewport {
  width: device-width; }
  #ex-debug-toolbar .visible-xs {
    display: none !important; }
  #ex-debug-toolbar .visible-sm {
    display: none !important; }
  #ex-debug-toolbar .visible-md {
    display: none !important; }
  #ex-debug-toolbar .visible-lg {
    display: none !important; }
  #ex-debug-toolbar .visible-xs-block,
  #ex-debug-toolbar .visible-xs-inline,
  #ex-debug-toolbar .visible-xs-inline-block,
  #ex-debug-toolbar .visible-sm-block,
  #ex-debug-toolbar .visible-sm-inline,
  #ex-debug-toolbar .visible-sm-inline-block,
  #ex-debug-toolbar .visible-md-block,
  #ex-debug-toolbar .visible-md-inline,
  #ex-debug-toolbar .visible-md-inline-block,
  #ex-debug-toolbar .visible-lg-block,
  #ex-debug-toolbar .visible-lg-inline,
  #ex-debug-toolbar .visible-lg-inline-block {
    display: none !important; }
  @media (max-width: 767px) {
    #ex-debug-toolbar .visible-xs {
      display: block !important; }
    #ex-debug-toolbar table.visible-xs {
      display: table !important; }
    #ex-debug-toolbar tr.visible-xs {
      display: table-row !important; }
    #ex-debug-toolbar th.visible-xs,
    #ex-debug-toolbar td.visible-xs {
      display: table-cell !important; } }
  @media (max-width: 767px) {
    #ex-debug-toolbar .visible-xs-block {
      display: block !important; } }
  @media (max-width: 767px) {
    #ex-debug-toolbar .visible-xs-inline {
      display: inline !important; } }
  @media (max-width: 767px) {
    #ex-debug-toolbar .visible-xs-inline-block {
      display: inline-block !important; } }
  @media (min-width: 768px) and (max-width: 991px) {
    #ex-debug-toolbar .visible-sm {
      display: block !important; }
    #ex-debug-toolbar table.visible-sm {
      display: table !important; }
    #ex-debug-toolbar tr.visible-sm {
      display: table-row !important; }
    #ex-debug-toolbar th.visible-sm,
    #ex-debug-toolbar td.visible-sm {
      display: table-cell !important; } }
  @media (min-width: 768px) and (max-width: 991px) {
    #ex-debug-toolbar .visible-sm-block {
      display: block !important; } }
  @media (min-width: 768px) and (max-width: 991px) {
    #ex-debug-toolbar .visible-sm-inline {
      display: inline !important; } }
  @media (min-width: 768px) and (max-width: 991px) {
    #ex-debug-toolbar .visible-sm-inline-block {
      display: inline-block !important; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    #ex-debug-toolbar .visible-md {
      display: block !important; }
    #ex-debug-toolbar table.visible-md {
      display: table !important; }
    #ex-debug-toolbar tr.visible-md {
      display: table-row !important; }
    #ex-debug-toolbar th.visible-md,
    #ex-debug-toolbar td.visible-md {
      display: table-cell !important; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    #ex-debug-toolbar .visible-md-block {
      display: block !important; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    #ex-debug-toolbar .visible-md-inline {
      display: inline !important; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    #ex-debug-toolbar .visible-md-inline-block {
      display: inline-block !important; } }
  @media (min-width: 1200px) {
    #ex-debug-toolbar .visible-lg {
      display: block !important; }
    #ex-debug-toolbar table.visible-lg {
      display: table !important; }
    #ex-debug-toolbar tr.visible-lg {
      display: table-row !important; }
    #ex-debug-toolbar th.visible-lg,
    #ex-debug-toolbar td.visible-lg {
      display: table-cell !important; } }
  @media (min-width: 1200px) {
    #ex-debug-toolbar .visible-lg-block {
      display: block !important; } }
  @media (min-width: 1200px) {
    #ex-debug-toolbar .visible-lg-inline {
      display: inline !important; } }
  @media (min-width: 1200px) {
    #ex-debug-toolbar .visible-lg-inline-block {
      display: inline-block !important; } }
  @media (max-width: 767px) {
    #ex-debug-toolbar .hidden-xs {
      display: none !important; } }
  @media (min-width: 768px) and (max-width: 991px) {
    #ex-debug-toolbar .hidden-sm {
      display: none !important; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    #ex-debug-toolbar .hidden-md {
      display: none !important; } }
  @media (min-width: 1200px) {
    #ex-debug-toolbar .hidden-lg {
      display: none !important; } }
  #ex-debug-toolbar .visible-print {
    display: none !important; }
  @media print {
    #ex-debug-toolbar .visible-print {
      display: block !important; }
    #ex-debug-toolbar table.visible-print {
      display: table !important; }
    #ex-debug-toolbar tr.visible-print {
      display: table-row !important; }
    #ex-debug-toolbar th.visible-print,
    #ex-debug-toolbar td.visible-print {
      display: table-cell !important; } }
  #ex-debug-toolbar .visible-print-block {
    display: none !important; }
    @media print {
      #ex-debug-toolbar .visible-print-block {
        display: block !important; } }
  #ex-debug-toolbar .visible-print-inline {
    display: none !important; }
    @media print {
      #ex-debug-toolbar .visible-print-inline {
        display: inline !important; } }
  #ex-debug-toolbar .visible-print-inline-block {
    display: none !important; }
    @media print {
      #ex-debug-toolbar .visible-print-inline-block {
        display: inline-block !important; } }
  @media print {
    #ex-debug-toolbar .hidden-print {
      display: none !important; } }
  #ex-debug-toolbar code[class*="language-"],
  #ex-debug-toolbar pre[class*="language-"] {
    color: black;
    background: none;
    text-shadow: 0 1px white;
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none; }
  #ex-debug-toolbar pre[class*="language-"]::-moz-selection, #ex-debug-toolbar pre[class*="language-"] ::-moz-selection,
  #ex-debug-toolbar code[class*="language-"]::-moz-selection, #ex-debug-toolbar code[class*="language-"] ::-moz-selection {
    text-shadow: none;
    background: #b3d4fc; }
  #ex-debug-toolbar pre[class*="language-"]::selection, #ex-debug-toolbar pre[class*="language-"] ::selection,
  #ex-debug-toolbar code[class*="language-"]::selection, #ex-debug-toolbar code[class*="language-"] ::selection {
    text-shadow: none;
    background: #b3d4fc; }
  @media print {
    #ex-debug-toolbar code[class*="language-"],
    #ex-debug-toolbar pre[class*="language-"] {
      text-shadow: none; } }
  #ex-debug-toolbar pre[class*="language-"] {
    padding: 1em;
    margin: .5em 0;
    overflow: auto; }
  #ex-debug-toolbar :not(pre) > code[class*="language-"],
  #ex-debug-toolbar pre[class*="language-"] {
    background: #f5f2f0; }
  #ex-debug-toolbar :not(pre) > code[class*="language-"] {
    padding: .1em;
    border-radius: .3em;
    white-space: normal; }
  #ex-debug-toolbar .token.comment,
  #ex-debug-toolbar .token.prolog,
  #ex-debug-toolbar .token.doctype,
  #ex-debug-toolbar .token.cdata {
    color: slategray; }
  #ex-debug-toolbar .token.punctuation {
    color: #999; }
  #ex-debug-toolbar .namespace {
    opacity: .7; }
  #ex-debug-toolbar .token.property,
  #ex-debug-toolbar .token.tag,
  #ex-debug-toolbar .token.boolean,
  #ex-debug-toolbar .token.number,
  #ex-debug-toolbar .token.constant,
  #ex-debug-toolbar .token.symbol,
  #ex-debug-toolbar .token.deleted {
    color: #905; }
  #ex-debug-toolbar .token.selector,
  #ex-debug-toolbar .token.attr-name,
  #ex-debug-toolbar .token.string,
  #ex-debug-toolbar .token.char,
  #ex-debug-toolbar .token.builtin,
  #ex-debug-toolbar .token.inserted {
    color: #690; }
  #ex-debug-toolbar .token.operator,
  #ex-debug-toolbar .token.entity,
  #ex-debug-toolbar .token.url,
  #ex-debug-toolbar .language-css .token.string,
  #ex-debug-toolbar .style .token.string {
    color: #a67f59;
    background: rgba(255, 255, 255, 0.5); }
  #ex-debug-toolbar .token.atrule,
  #ex-debug-toolbar .token.attr-value,
  #ex-debug-toolbar .token.keyword {
    color: #07a; }
  #ex-debug-toolbar .token.function {
    color: #DD4A68; }
  #ex-debug-toolbar .token.regex,
  #ex-debug-toolbar .token.important,
  #ex-debug-toolbar .token.variable {
    color: #e90; }
  #ex-debug-toolbar .token.important,
  #ex-debug-toolbar .token.bold {
    font-weight: bold; }
  #ex-debug-toolbar .token.italic {
    font-style: italic; }
  #ex-debug-toolbar .token.entity {
    cursor: help; }
  #ex-debug-toolbar pre.line-numbers {
    position: relative;
    padding-left: 3.8em;
    counter-reset: linenumber; }
  #ex-debug-toolbar pre.line-numbers > code {
    position: relative; }
  #ex-debug-toolbar .line-numbers .line-numbers-rows {
    position: absolute;
    pointer-events: none;
    top: 0;
    font-size: 100%;
    left: -3.8em;
    width: 3em;
    /* works for line-numbers below 1000 lines */
    letter-spacing: -1px;
    border-right: 1px solid #999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #ex-debug-toolbar .line-numbers-rows > span {
    pointer-events: none;
    display: block;
    counter-increment: linenumber; }
  #ex-debug-toolbar .line-numbers-rows > span:before {
    content: counter(linenumber);
    color: #999;
    display: block;
    padding-right: 0.8em;
    text-align: right; }
  #ex-debug-toolbar pre[data-line] {
    position: relative;
    padding: 1em 0 1em 3em; }
  #ex-debug-toolbar .line-highlight {
    position: absolute;
    left: 0;
    right: 0;
    padding: inherit 0;
    margin-top: 1em;
    /* Same as .prism’s padding-top */
    background: rgba(153, 122, 102, 0.08);
    background: linear-gradient(to right, rgba(153, 122, 102, 0.1) 70%, rgba(153, 122, 102, 0));
    pointer-events: none;
    line-height: inherit;
    white-space: pre; }
  #ex-debug-toolbar .line-highlight:before,
  #ex-debug-toolbar .line-highlight[data-end]:after {
    content: attr(data-start);
    position: absolute;
    top: .4em;
    left: .6em;
    min-width: 1em;
    padding: 0 .5em;
    background-color: rgba(153, 122, 102, 0.4);
    color: #f5f2f0;
    font: bold 65%/1.5 sans-serif;
    text-align: center;
    vertical-align: .3em;
    border-radius: 999px;
    text-shadow: none;
    box-shadow: 0 1px white; }
  #ex-debug-toolbar .line-highlight[data-end]:after {
    content: attr(data-end);
    top: auto;
    bottom: .4em; }
  #ex-debug-toolbar .navbar {
    min-height: 30px;
    height: 30px; }
  #ex-debug-toolbar .navbar-nav.nav > li > span {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    cursor: pointer; }
    #ex-debug-toolbar .navbar-nav.nav > li > span > i {
      margin-right: 5px; }
  #ex-debug-toolbar .navbar-brand {
    padding: 2px 2px;
    height: 30px; }
    #ex-debug-toolbar .navbar-brand img {
      height: 100%; }
  #ex-debug-toolbar .toolbar-item {
    margin-right: 5px; }
    #ex-debug-toolbar .toolbar-item .label {
      position: relative;
      top: -2px; }
  #ex-debug-toolbar .panel {
    margin-bottom: 0;
    bottom: 30px;
    display: none; }
    #ex-debug-toolbar .panel .panel-body {
      padding: 5px 15px;
      max-height: 200px;
      overflow-y: auto; }
    #ex-debug-toolbar .panel .panel-heading {
      padding: 5px 15px; }
    #ex-debug-toolbar .panel .table {
      margin-top: 0;
      margin-bottom: 0; }
      #ex-debug-toolbar .panel .table caption {
        padding-top: 4px;
        padding-bottom: 4px; }
      #ex-debug-toolbar .panel .table td, #ex-debug-toolbar .panel .table th {
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 1px;
        padding-bottom: 1px; }
        #ex-debug-toolbar .panel .table td p, #ex-debug-toolbar .panel .table th p {
          margin: 0; }
  #ex-debug-toolbar .nowrap {
    white-space: nowrap; }
  #ex-debug-toolbar table .hljs {
    background: unset;
    padding: unset; }
  #ex-debug-toolbar .pointer {
    cursor: pointer; }
  #ex-debug-toolbar #terminal-container {
    width: auto;
    height: 480px; }
  #ex-debug-toolbar .modal-top-action {
    margin-right: 10px; }
  #ex-debug-toolbar .fullscreen .modal-dialog {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0; }
  #ex-debug-toolbar .fullscreen .modal-content {
    height: auto;
    min-height: 100%;
    border-radius: 0; }
  #ex-debug-toolbar .fullscreen #terminal-container {
    height: 100%; }
  #ex-debug-toolbar .xterm.fullscreen {
    top: 55px; }
  #ex-debug-toolbar #code-snippet-container {
    margin-top: 40px; }
  #ex-debug-toolbar #breakpoint .panel-body {
    height: 200px; }


/*# sourceMappingURL=toolbar.css.map*/