.\n\n.list-group {\n // No need to set list-style: none; since .list-group-item is block level\n margin-bottom: 20px;\n padding-left: 0; // reset padding because ul and ol\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n // Place the border on the list items and negative margin up for better styling\n margin-bottom: -1px;\n background-color: @list-group-bg;\n border: 1px solid @list-group-border;\n\n // Round the first and last items\n &:first-child {\n .border-top-radius(@list-group-border-radius);\n }\n &:last-child {\n margin-bottom: 0;\n .border-bottom-radius(@list-group-border-radius);\n }\n}\n\n\n// Interactive list items\n//\n// Use anchor or button elements instead of `li`s or `div`s to create interactive items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item,\nbutton.list-group-item {\n color: @list-group-link-color;\n\n .list-group-item-heading {\n color: @list-group-link-heading-color;\n }\n\n // Hover state\n &:hover,\n &:focus {\n text-decoration: none;\n color: @list-group-link-hover-color;\n background-color: @list-group-hover-bg;\n }\n}\n\nbutton.list-group-item {\n width: 100%;\n text-align: left;\n}\n\n.list-group-item {\n // Disabled state\n &.disabled,\n &.disabled:hover,\n &.disabled:focus {\n background-color: @list-group-disabled-bg;\n color: @list-group-disabled-color;\n cursor: @cursor-disabled;\n\n // Force color to inherit for custom content\n .list-group-item-heading {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-disabled-text-color;\n }\n }\n\n // Active class on item itself, not parent\n &.active,\n &.active:hover,\n &.active:focus {\n z-index: 2; // Place active items above their siblings for proper border styling\n color: @list-group-active-color;\n background-color: @list-group-active-bg;\n border-color: @list-group-active-border;\n\n // Force color to inherit for custom content\n .list-group-item-heading,\n .list-group-item-heading > small,\n .list-group-item-heading > .small {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-active-text-color;\n }\n }\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n\n// Custom content options\n//\n// Extra classes for creating well-formatted content within `.list-group-item`s.\n\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n","// List Groups\n\n.list-group-item-variant(@state; @background; @color) {\n .list-group-item-@{state} {\n color: @color;\n background-color: @background;\n\n a&,\n button& {\n color: @color;\n\n .list-group-item-heading {\n color: inherit;\n }\n\n &:hover,\n &:focus {\n color: @color;\n background-color: darken(@background, 5%);\n }\n &.active,\n &.active:hover,\n &.active:focus {\n color: #fff;\n background-color: @color;\n border-color: @color;\n }\n }\n }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n margin-bottom: @line-height-computed;\n background-color: @panel-bg;\n border: 1px solid transparent;\n border-radius: @panel-border-radius;\n .box-shadow(0 1px 1px rgba(0,0,0,.05));\n}\n\n// Panel contents\n.panel-body {\n padding: @panel-body-padding;\n &:extend(.clearfix all);\n}\n\n// Optional heading\n.panel-heading {\n padding: @panel-heading-padding;\n border-bottom: 1px solid transparent;\n .border-top-radius((@panel-border-radius - 1));\n\n > .dropdown .dropdown-toggle {\n color: inherit;\n }\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: ceil((@font-size-base * 1.125));\n color: inherit;\n\n > a,\n > small,\n > .small,\n > small > a,\n > .small > a {\n color: inherit;\n }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n padding: @panel-footer-padding;\n background-color: @panel-footer-bg;\n border-top: 1px solid @panel-inner-border;\n .border-bottom-radius((@panel-border-radius - 1));\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n > .list-group,\n > .panel-collapse > .list-group {\n margin-bottom: 0;\n\n .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n }\n\n // Add border top radius for first one\n &:first-child {\n .list-group-item:first-child {\n border-top: 0;\n .border-top-radius((@panel-border-radius - 1));\n }\n }\n\n // Add border bottom radius for last one\n &:last-child {\n .list-group-item:last-child {\n border-bottom: 0;\n .border-bottom-radius((@panel-border-radius - 1));\n }\n }\n }\n > .panel-heading + .panel-collapse > .list-group {\n .list-group-item:first-child {\n .border-top-radius(0);\n }\n }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n .list-group-item:first-child {\n border-top-width: 0;\n }\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n > .table,\n > .table-responsive > .table,\n > .panel-collapse > .table {\n margin-bottom: 0;\n\n caption {\n padding-left: @panel-body-padding;\n padding-right: @panel-body-padding;\n }\n }\n // Add border top radius for first one\n > .table:first-child,\n > .table-responsive:first-child > .table:first-child {\n .border-top-radius((@panel-border-radius - 1));\n\n > thead:first-child,\n > tbody:first-child {\n > tr:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n border-top-right-radius: (@panel-border-radius - 1);\n\n td:first-child,\n th:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-top-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n // Add border bottom radius for last one\n > .table:last-child,\n > .table-responsive:last-child > .table:last-child {\n .border-bottom-radius((@panel-border-radius - 1));\n\n > tbody:last-child,\n > tfoot:last-child {\n > tr:last-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n border-bottom-right-radius: (@panel-border-radius - 1);\n\n td:first-child,\n th:first-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-bottom-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n > .panel-body + .table,\n > .panel-body + .table-responsive,\n > .table + .panel-body,\n > .table-responsive + .panel-body {\n border-top: 1px solid @table-border-color;\n }\n > .table > tbody:first-child > tr:first-child th,\n > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n }\n > .table-bordered,\n > .table-responsive > .table-bordered {\n border: 0;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n > thead,\n > tbody {\n > tr:first-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n > tbody,\n > tfoot {\n > tr:last-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n }\n > .table-responsive {\n border: 0;\n margin-bottom: 0;\n }\n}\n\n\n// Collapsable panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n margin-bottom: @line-height-computed;\n\n // Tighten up margin so it's only between panels\n .panel {\n margin-bottom: 0;\n border-radius: @panel-border-radius;\n\n + .panel {\n margin-top: 5px;\n }\n }\n\n .panel-heading {\n border-bottom: 0;\n\n + .panel-collapse > .panel-body,\n + .panel-collapse > .list-group {\n border-top: 1px solid @panel-inner-border;\n }\n }\n\n .panel-footer {\n border-top: 0;\n + .panel-collapse .panel-body {\n border-bottom: 1px solid @panel-inner-border;\n }\n }\n}\n\n\n// Contextual variations\n.panel-default {\n .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n","// Panels\n\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n border-color: @border;\n\n & > .panel-heading {\n color: @heading-text-color;\n background-color: @heading-bg-color;\n border-color: @heading-border;\n\n + .panel-collapse > .panel-body {\n border-top-color: @border;\n }\n .badge {\n color: @heading-bg-color;\n background-color: @heading-text-color;\n }\n }\n & > .panel-footer {\n + .panel-collapse > .panel-body {\n border-bottom-color: @border;\n }\n }\n}\n","// Embeds responsive\n//\n// Credit: Nicolas Gallagher and SUIT CSS.\n\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n\n .embed-responsive-item,\n iframe,\n embed,\n object,\n video {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n height: 100%;\n width: 100%;\n border: 0;\n }\n}\n\n// Modifier class for 16:9 aspect ratio\n.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n}\n\n// Modifier class for 4:3 aspect ratio\n.embed-responsive-4by3 {\n padding-bottom: 75%;\n}\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: @well-bg;\n border: 1px solid @well-border;\n border-radius: @border-radius-base;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));\n blockquote {\n border-color: #ddd;\n border-color: rgba(0,0,0,.15);\n }\n}\n\n// Sizes\n.well-lg {\n padding: 24px;\n border-radius: @border-radius-large;\n}\n.well-sm {\n padding: 9px;\n border-radius: @border-radius-small;\n}\n","//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n float: right;\n font-size: (@font-size-base * 1.5);\n font-weight: @close-font-weight;\n line-height: 1;\n color: @close-color;\n text-shadow: @close-text-shadow;\n .opacity(.2);\n\n &:hover,\n &:focus {\n color: @close-color;\n text-decoration: none;\n cursor: pointer;\n .opacity(.5);\n }\n\n // Additional properties for button version\n // iOS requires the button element instead of an anchor tag.\n // If you want the anchor version, it requires `href=\"#\"`.\n // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n button& {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open - body class for killing the scroll\n// .modal - container to scroll within\n// .modal-dialog - positioning shell for the actual modal\n// .modal-content - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n overflow: hidden;\n}\n\n// Container that the modal scrolls within\n.modal {\n display: none;\n overflow: hidden;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal;\n -webkit-overflow-scrolling: touch;\n\n // Prevent Chrome on Windows from adding a focus outline. For details, see\n // https://github.com/twbs/bootstrap/pull/10951.\n outline: 0;\n\n // When fading in the modal, animate it to slide down\n &.fade .modal-dialog {\n .translate(0, -25%);\n .transition-transform(~\"0.3s ease-out\");\n }\n &.in .modal-dialog { .translate(0, 0) }\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n\n// Actual modal\n.modal-content {\n position: relative;\n background-color: @modal-content-bg;\n border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n border: 1px solid @modal-content-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 3px 9px rgba(0,0,0,.5));\n background-clip: padding-box;\n // Remove focus outline from opened modal\n outline: 0;\n}\n\n// Modal background\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal-background;\n background-color: @modal-backdrop-bg;\n // Fade for backdrop\n &.fade { .opacity(0); }\n &.in { .opacity(@modal-backdrop-opacity); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n padding: @modal-title-padding;\n border-bottom: 1px solid @modal-header-border-color;\n min-height: (@modal-title-padding + @modal-title-line-height);\n}\n// Close icon\n.modal-header .close {\n margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n margin: 0;\n line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n position: relative;\n padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n padding: @modal-inner-padding;\n text-align: right; // right align buttons\n border-top: 1px solid @modal-footer-border-color;\n &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\n\n // Properly space out buttons\n .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n }\n // but override that for button groups\n .btn-group .btn + .btn {\n margin-left: -1px;\n }\n // and override it for block buttons as well\n .btn-block + .btn-block {\n margin-left: 0;\n }\n}\n\n// Measure scrollbar width for padding body during modal show/hide\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n\n// Scale up the modal\n@media (min-width: @screen-sm-min) {\n // Automatically set modal's width for larger viewports\n .modal-dialog {\n width: @modal-md;\n margin: 30px auto;\n }\n .modal-content {\n .box-shadow(0 5px 15px rgba(0,0,0,.5));\n }\n\n // Modal sizes\n .modal-sm { width: @modal-sm; }\n}\n\n@media (min-width: @screen-md-min) {\n .modal-lg { width: @modal-lg; }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n position: absolute;\n z-index: @zindex-tooltip;\n display: block;\n // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\n // So reset our font and text properties to avoid inheriting weird values.\n .reset-text();\n font-size: @font-size-small;\n\n .opacity(0);\n\n &.in { .opacity(@tooltip-opacity); }\n &.top { margin-top: -3px; padding: @tooltip-arrow-width 0; }\n &.right { margin-left: 3px; padding: 0 @tooltip-arrow-width; }\n &.bottom { margin-top: 3px; padding: @tooltip-arrow-width 0; }\n &.left { margin-left: -3px; padding: 0 @tooltip-arrow-width; }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n max-width: @tooltip-max-width;\n padding: 3px 8px;\n color: @tooltip-color;\n text-align: center;\n background-color: @tooltip-bg;\n border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1\n.tooltip {\n &.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-left .tooltip-arrow {\n bottom: 0;\n right: @tooltip-arrow-width;\n margin-bottom: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-right .tooltip-arrow {\n bottom: 0;\n left: @tooltip-arrow-width;\n margin-bottom: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n border-right-color: @tooltip-arrow-color;\n }\n &.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-left-color: @tooltip-arrow-color;\n }\n &.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-left .tooltip-arrow {\n top: 0;\n right: @tooltip-arrow-width;\n margin-top: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-right .tooltip-arrow {\n top: 0;\n left: @tooltip-arrow-width;\n margin-top: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n}\n",".reset-text() {\n font-family: @font-family-base;\n // We deliberately do NOT reset font-size.\n font-style: normal;\n font-weight: normal;\n letter-spacing: normal;\n line-break: auto;\n line-height: @line-height-base;\n text-align: left; // Fallback for where `start` is not supported\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n white-space: normal;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: @zindex-popover;\n display: none;\n max-width: @popover-max-width;\n padding: 1px;\n // Our parent element can be arbitrary since popovers are by default inserted as a sibling of their target element.\n // So reset our font and text properties to avoid inheriting weird values.\n .reset-text();\n font-size: @font-size-base;\n\n background-color: @popover-bg;\n background-clip: padding-box;\n border: 1px solid @popover-fallback-border-color;\n border: 1px solid @popover-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 5px 10px rgba(0,0,0,.2));\n\n // Offset the popover to account for the popover arrow\n &.top { margin-top: -@popover-arrow-width; }\n &.right { margin-left: @popover-arrow-width; }\n &.bottom { margin-top: @popover-arrow-width; }\n &.left { margin-left: -@popover-arrow-width; }\n}\n\n.popover-title {\n margin: 0; // reset heading margin\n padding: 8px 14px;\n font-size: @font-size-base;\n background-color: @popover-title-bg;\n border-bottom: 1px solid darken(@popover-title-bg, 5%);\n border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;\n}\n\n.popover-content {\n padding: 9px 14px;\n}\n\n// Arrows\n//\n// .arrow is outer, .arrow:after is inner\n\n.popover > .arrow {\n &,\n &:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n }\n}\n.popover > .arrow {\n border-width: @popover-arrow-outer-width;\n}\n.popover > .arrow:after {\n border-width: @popover-arrow-width;\n content: \"\";\n}\n\n.popover {\n &.top > .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-top-color: @popover-arrow-outer-color;\n bottom: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n bottom: 1px;\n margin-left: -@popover-arrow-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-color;\n }\n }\n &.right > .arrow {\n top: 50%;\n left: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-right-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n left: 1px;\n bottom: -@popover-arrow-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-color;\n }\n }\n &.bottom > .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-bottom-color: @popover-arrow-outer-color;\n top: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n top: 1px;\n margin-left: -@popover-arrow-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-color;\n }\n }\n\n &.left > .arrow {\n top: 50%;\n right: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-right-width: 0;\n border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-left-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: @popover-arrow-color;\n bottom: -@popover-arrow-width;\n }\n }\n}\n","//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n position: relative;\n}\n\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n\n > .item {\n display: none;\n position: relative;\n .transition(.6s ease-in-out left);\n\n // Account for jankitude on images\n > img,\n > a > img {\n &:extend(.img-responsive);\n line-height: 1;\n }\n\n // WebKit CSS3 transforms for supported devices\n @media all and (transform-3d), (-webkit-transform-3d) {\n .transition-transform(~'0.6s ease-in-out');\n .backface-visibility(~'hidden');\n .perspective(1000px);\n\n &.next,\n &.active.right {\n .translate3d(100%, 0, 0);\n left: 0;\n }\n &.prev,\n &.active.left {\n .translate3d(-100%, 0, 0);\n left: 0;\n }\n &.next.left,\n &.prev.right,\n &.active {\n .translate3d(0, 0, 0);\n left: 0;\n }\n }\n }\n\n > .active,\n > .next,\n > .prev {\n display: block;\n }\n\n > .active {\n left: 0;\n }\n\n > .next,\n > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n }\n\n > .next {\n left: 100%;\n }\n > .prev {\n left: -100%;\n }\n > .next.left,\n > .prev.right {\n left: 0;\n }\n\n > .active.left {\n left: -100%;\n }\n > .active.right {\n left: 100%;\n }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: @carousel-control-width;\n .opacity(@carousel-control-opacity);\n font-size: @carousel-control-font-size;\n color: @carousel-control-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n // We can't have this transition here because WebKit cancels the carousel\n // animation if you trip this while in the middle of another animation.\n\n // Set gradients for backgrounds\n &.left {\n #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n }\n &.right {\n left: auto;\n right: 0;\n #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n }\n\n // Hover/focus state\n &:hover,\n &:focus {\n outline: 0;\n color: @carousel-control-color;\n text-decoration: none;\n .opacity(.9);\n }\n\n // Toggles\n .icon-prev,\n .icon-next,\n .glyphicon-chevron-left,\n .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n margin-top: -10px;\n z-index: 5;\n display: inline-block;\n }\n .icon-prev,\n .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n }\n .icon-next,\n .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n }\n .icon-prev,\n .icon-next {\n width: 20px;\n height: 20px;\n line-height: 1;\n font-family: serif;\n }\n\n\n .icon-prev {\n &:before {\n content: '\\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n }\n }\n .icon-next {\n &:before {\n content: '\\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n }\n }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n\n li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid @carousel-indicator-border-color;\n border-radius: 10px;\n cursor: pointer;\n\n // IE8-9 hack for event handling\n //\n // Internet Explorer 8-9 does not support clicks on elements without a set\n // `background-color`. We cannot use `filter` since that's not viewed as a\n // background color by the browser. Thus, a hack is needed.\n // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer\n //\n // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\n // set alpha transparency for the best results possible.\n background-color: #000 \\9; // IE8\n background-color: rgba(0,0,0,0); // IE9\n }\n .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: @carousel-indicator-active-bg;\n }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: @carousel-caption-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n & .btn {\n text-shadow: none; // No shadow for button elements in carousel-caption\n }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n // Scale up the controls a smidge\n .carousel-control {\n .glyphicon-chevron-left,\n .glyphicon-chevron-right,\n .icon-prev,\n .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -15px;\n font-size: 30px;\n }\n .glyphicon-chevron-left,\n .icon-prev {\n margin-left: -15px;\n }\n .glyphicon-chevron-right,\n .icon-next {\n margin-right: -15px;\n }\n }\n\n // Show and left align the captions\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n\n // Move up the indicators\n .carousel-indicators {\n bottom: 20px;\n }\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n// contenteditable attribute is included anywhere else in the document.\n// Otherwise it causes space to appear at the top and bottom of elements\n// that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n// `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n &:before,\n &:after {\n content: \" \"; // 1\n display: table; // 2\n }\n &:after {\n clear: both;\n }\n}\n","// Center-align a block level element\n\n.center-block() {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n","// CSS image replacement\n//\n// Heads up! v3 launched with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (will be removed in v4)\n.hide-text() {\n font: ~\"0/0\" a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n\n// New mixin to use as of v3.0.1\n.text-hide() {\n .hide-text();\n}\n","//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: http://getbootstrap.com/getting-started/#support-ie10-width\n// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/\n// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n width: device-width;\n}\n\n\n// Visibility utilities\n// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n .responsive-invisibility();\n}\n\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n\n.visible-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-visibility();\n }\n}\n.visible-xs-block {\n @media (max-width: @screen-xs-max) {\n display: block !important;\n }\n}\n.visible-xs-inline {\n @media (max-width: @screen-xs-max) {\n display: inline !important;\n }\n}\n.visible-xs-inline-block {\n @media (max-width: @screen-xs-max) {\n display: inline-block !important;\n }\n}\n\n.visible-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-visibility();\n }\n}\n.visible-sm-block {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: block !important;\n }\n}\n.visible-sm-inline {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: inline !important;\n }\n}\n.visible-sm-inline-block {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: inline-block !important;\n }\n}\n\n.visible-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-visibility();\n }\n}\n.visible-md-block {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: block !important;\n }\n}\n.visible-md-inline {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: inline !important;\n }\n}\n.visible-md-inline-block {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: inline-block !important;\n }\n}\n\n.visible-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-visibility();\n }\n}\n.visible-lg-block {\n @media (min-width: @screen-lg-min) {\n display: block !important;\n }\n}\n.visible-lg-inline {\n @media (min-width: @screen-lg-min) {\n display: inline !important;\n }\n}\n.visible-lg-inline-block {\n @media (min-width: @screen-lg-min) {\n display: inline-block !important;\n }\n}\n\n.hidden-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-invisibility();\n }\n}\n.hidden-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-invisibility();\n }\n}\n.hidden-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-invisibility();\n }\n}\n.hidden-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-invisibility();\n }\n}\n\n\n// Print utilities\n//\n// Media queries are placed on the inside to be mixin-friendly.\n\n// Note: Deprecated .visible-print as of v3.2.0\n.visible-print {\n .responsive-invisibility();\n\n @media print {\n .responsive-visibility();\n }\n}\n.visible-print-block {\n display: none !important;\n\n @media print {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n\n @media print {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n\n @media print {\n display: inline-block !important;\n }\n}\n\n.hidden-print {\n @media print {\n .responsive-invisibility();\n }\n}\n","// Responsive utilities\n\n//\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n display: block !important;\n table& { display: table !important; }\n tr& { display: table-row !important; }\n th&,\n td& { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n display: none !important;\n}\n"]}
\ No newline at end of file
diff --git a/data/interfaces/default/css/bootstrap3/bootstrap.min.css b/data/interfaces/default/css/bootstrap3/bootstrap.min.css
deleted file mode 100644
index c5887780..00000000
--- a/data/interfaces/default/css/bootstrap3/bootstrap.min.css
+++ /dev/null
@@ -1,5 +0,0 @@
-/*!
- * Bootstrap v3.3.5 (http://getbootstrap.com)
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../../fonts/bootstrap3/glyphicons-halflings-regular.eot);src:url(../../fonts/bootstrap3/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../../fonts/bootstrap3/glyphicons-halflings-regular.woff2) format('woff2'),url(../../fonts/bootstrap3/glyphicons-halflings-regular.woff) format('woff'),url(../../fonts/bootstrap3/glyphicons-halflings-regular.ttf) format('truetype'),url(../../fonts/bootstrap3/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{font-family:'Open Sans',sans-serif;font-size:14px;line-height:1.42857143;color:#fff;background-color:#1f1f1f}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}.uneditable-input,input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],textarea{margin-top:5px;color:#fff;border:0 solid #444;background:#333;height:30px;padding:2px 5px 2px 12px;background-color:#3a3a3a;border-radius:14.5px;transition:background-color .3s}.uneditable-input:focus,input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,textarea:focus{outline:0;color:#555;background-color:#fff;transition:background-color .3s}a{text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.333333px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:3;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.in{opacity:.5}.modal-header{min-height:16.42857143px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;opacity:0;line-break:auto}.tooltip.in{opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
\ No newline at end of file
diff --git a/data/interfaces/default/css/dataTables.bootstrap.min.css b/data/interfaces/default/css/dataTables.bootstrap.min.css
deleted file mode 100644
index 1d319758..00000000
--- a/data/interfaces/default/css/dataTables.bootstrap.min.css
+++ /dev/null
@@ -1 +0,0 @@
-td.dt-control{background:url("https://www.datatables.net/examples/resources/details_open.png") no-repeat center center;cursor:pointer}tr.dt-hasChild td.dt-control{background:url("https://www.datatables.net/examples/resources/details_close.png") no-repeat center center}table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}table.dataTable{clear:both;margin-top:6px !important;margin-bottom:6px !important;max-width:none !important;border-collapse:separate !important}table.dataTable td,table.dataTable th{-webkit-box-sizing:content-box;box-sizing:content-box}table.dataTable td.dataTables_empty,table.dataTable th.dataTables_empty{text-align:center}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}div.dataTables_wrapper div.dataTables_length label{font-weight:normal;text-align:left;white-space:nowrap}div.dataTables_wrapper div.dataTables_length select{width:75px;display:inline-block}div.dataTables_wrapper div.dataTables_filter{text-align:right}div.dataTables_wrapper div.dataTables_filter label{font-weight:normal;white-space:nowrap;text-align:left}div.dataTables_wrapper div.dataTables_filter input{margin-left:.5em;display:inline-block;width:auto}div.dataTables_wrapper div.dataTables_info{padding-top:8px;white-space:nowrap}div.dataTables_wrapper div.dataTables_paginate{margin:0;white-space:nowrap;text-align:right}div.dataTables_wrapper div.dataTables_paginate ul.pagination{margin:2px 0;white-space:nowrap}div.dataTables_wrapper div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;margin-left:-100px;margin-top:-26px;text-align:center;padding:1em 0}table.dataTable thead>tr>th.sorting_asc,table.dataTable thead>tr>th.sorting_desc,table.dataTable thead>tr>th.sorting,table.dataTable thead>tr>td.sorting_asc,table.dataTable thead>tr>td.sorting_desc,table.dataTable thead>tr>td.sorting{padding-right:30px}table.dataTable thead>tr>th:active,table.dataTable thead>tr>td:active{outline:none}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;position:relative}table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after{position:absolute;bottom:8px;right:8px;display:block;font-family:"Glyphicons Halflings";opacity:.5}table.dataTable thead .sorting:after{opacity:.2;content:""}table.dataTable thead .sorting_asc:after{opacity:.5;content:""}table.dataTable thead .sorting_desc:after{opacity:.5;content:""}table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after{color:#eee}div.dataTables_scrollHead table.dataTable{margin-bottom:0 !important}div.dataTables_scrollBody>table{border-top:none;margin-top:0 !important;margin-bottom:0 !important}div.dataTables_scrollBody>table>thead .sorting:after,div.dataTables_scrollBody>table>thead .sorting_asc:after,div.dataTables_scrollBody>table>thead .sorting_desc:after{display:none}div.dataTables_scrollBody>table>tbody>tr:first-child>th,div.dataTables_scrollBody>table>tbody>tr:first-child>td{border-top:none}div.dataTables_scrollFoot>.dataTables_scrollFootInner{box-sizing:content-box}div.dataTables_scrollFoot>.dataTables_scrollFootInner>table{margin-top:0 !important;border-top:none}@media screen and (max-width: 767px){div.dataTables_wrapper div.dataTables_length,div.dataTables_wrapper div.dataTables_filter,div.dataTables_wrapper div.dataTables_info,div.dataTables_wrapper div.dataTables_paginate{text-align:center}}table.dataTable.table-condensed>thead>tr>th{padding-right:20px}table.dataTable.table-condensed .sorting:after,table.dataTable.table-condensed .sorting_asc:after,table.dataTable.table-condensed .sorting_desc:after{top:6px;right:6px}table.table-bordered.dataTable{border-right-width:0}table.table-bordered.dataTable th,table.table-bordered.dataTable td{border-left-width:0}table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable td:last-child,table.table-bordered.dataTable td:last-child{border-right-width:1px}table.table-bordered.dataTable tbody th,table.table-bordered.dataTable tbody td{border-bottom-width:0}div.dataTables_scrollHead table.table-bordered{border-bottom-width:0}div.table-responsive>div.dataTables_wrapper>div.row{margin:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:first-child{padding-left:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:last-child{padding-right:0}
diff --git a/data/interfaces/default/css/dataTables.colVis.css b/data/interfaces/default/css/dataTables.colVis.css
deleted file mode 100644
index dcbfa76f..00000000
--- a/data/interfaces/default/css/dataTables.colVis.css
+++ /dev/null
@@ -1,131 +0,0 @@
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * ColVis styles
- */
-div.ColVis {
- float: right;
-}
-
-button.ColVis_Button,
-ul.ColVis_collection li {
- position: relative;
- float: left;
- color: #fff;
- margin-right: 3px;
- padding: 5px 8px;
- cursor: pointer;
- *cursor: hand;
- font-size: 0.88em;
- white-space: nowrap;
-}
-
-.ColVis_Button:hover,
-ul.ColVis_collection li:hover {
- color: #E5A00D;
-}
-
-button.ColVis_Button {
- padding: 4px 12px;
- margin-bottom: 0;
- font-size: 14px;
- font-weight: normal;
- line-height: 1.42857143;
- text-align: center;
- white-space: nowrap;
- vertical-align: middle;
- -ms-touch-action: manipulation;
- touch-action: manipulation;
- cursor: pointer;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- background-image: none;
- background-color: #444;
- border: 1px solid transparent;
- border-radius: 3px;
- outline:0px !important;
- -webkit-appearance:none;
-}
-
-button.ColVis_Button::-moz-focus-inner {
- border: none !important;
- padding: 0;
-}
-
-button.ColVis_Button:active {
- outline: none;
-}
-
-div.ColVis_collectionBackground {
- position: fixed;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
- background-color: black;
- z-index: 1100;
-}
-
-ul.ColVis_collection {
- list-style: none;
- width: 150px;
- padding: 8px 8px 4px 8px;
- margin: 10px 0px 10px 0px;
- background-color: #444;
- overflow: hidden;
- z-index: 2002;
- border-radius: 4px;
-}
-
-ul.ColVis_collection li {
- position: relative;
- height: auto;
- left: 0;
- right: 0;
- display: block;
- float: none;
- padding: 0;
-}
-
-ul.ColVis_collection li {
- text-align: left;
-}
-
-ul.ColVis_collection li.ColVis_Button:hover {
- border: 1px solid #999;
-}
-
-ul.ColVis_collection li span {
- display: inline-block;
- padding-left: 0.5em;
- line-height: 1em;
- cursor: pointer;
-}
-
-
-ul.ColVis_collection li.ColVis_Special {
-}
-
-ul.ColVis_collection li.ColVis_Special:hover {
-}
-
-span.ColVis_radio {
- display: inline-block;
- width: 20px;
-}
-
-div.ColVis_catcher {
- position: absolute;
- z-index: 1101;
-}
-
-.disabled {
- color: #999;
-}
-
-ul.ColVis_collection label {
- display: block;
- padding: 0.5em;
- cursor: pointer;
-}
\ No newline at end of file
diff --git a/data/interfaces/default/css/font-awesome.all.min.css b/data/interfaces/default/css/font-awesome.all.min.css
deleted file mode 100644
index 92613e20..00000000
--- a/data/interfaces/default/css/font-awesome.all.min.css
+++ /dev/null
@@ -1,5 +0,0 @@
-/*!
- * Font Awesome Free 5.1.0 by @fontawesome - https://fontawesome.com
- * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
- */
-.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:a 2s infinite linear}.fa-pulse{animation:a 1s infinite steps(8)}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blind:before{content:"\f29d"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-open:before{content:"\f518"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-certificate:before{content:"\f0a3"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-concierge-bell:before{content:"\f562"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-deviantart:before{content:"\f1bd"}.fa-diagnoses:before{content:"\f470"}.fa-dice:before{content:"\f522"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-gift:before{content:"\f06b"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hashtag:before{content:"\f292"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-internet-explorer:before{content:"\f26b"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mercury:before{content:"\f223"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-motorcycle:before{content:"\f21c"}.fa-mouse-pointer:before{content:"\f245"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-old-republic:before{content:"\f510"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poo:before{content:"\f2fe"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-r-project:before{content:"\f4f7"}.fa-random:before{content:"\f074"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-rendact:before{content:"\f3e4"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-retweet:before{content:"\f079"}.fa-ribbon:before{content:"\f4d6"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-search:before{content:"\f002"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skull:before{content:"\f54c"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowflake:before{content:"\f2dc"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-train:before{content:"\f238"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-moving:before{content:"\f4df"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;src:url(../fonts/font-awesome/fa-brands-400.eot);src:url(../fonts/font-awesome/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../fonts/font-awesome/fa-brands-400.woff2) format("woff2"),url(../fonts/font-awesome/fa-brands-400.woff) format("woff"),url(../fonts/font-awesome/fa-brands-400.ttf) format("truetype"),url(../fonts/font-awesome/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;src:url(../fonts/font-awesome/fa-regular-400.eot);src:url(../fonts/font-awesome/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../fonts/font-awesome/fa-regular-400.woff2) format("woff2"),url(../fonts/font-awesome/fa-regular-400.woff) format("woff"),url(../fonts/font-awesome/fa-regular-400.ttf) format("truetype"),url(../fonts/font-awesome/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;src:url(../fonts/font-awesome/fa-solid-900.eot);src:url(../fonts/font-awesome/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../fonts/font-awesome/fa-solid-900.woff2) format("woff2"),url(../fonts/font-awesome/fa-solid-900.woff) format("woff"),url(../fonts/font-awesome/fa-solid-900.ttf) format("truetype"),url(../fonts/font-awesome/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}
\ No newline at end of file
diff --git a/data/interfaces/default/css/font-awesome.v4-shims.min.css b/data/interfaces/default/css/font-awesome.v4-shims.min.css
deleted file mode 100644
index a47c8e25..00000000
--- a/data/interfaces/default/css/font-awesome.v4-shims.min.css
+++ /dev/null
@@ -1,5 +0,0 @@
-/*!
- * Font Awesome Free 5.1.0 by @fontawesome - https://fontawesome.com
- * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
- */
-.fa.fa-glass:before{content:"\f000"}.fa.fa-meetup{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-star-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-file-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-pencil:before{content:"\f303"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-share-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart:before{content:"\f080"}.fa.fa-bar-chart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart-o:before{content:"\f080"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-lemon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-scissors:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f3fd"}.fa.fa-comment-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard,.fa.fa-paste{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paste:before{content:"\f328"}.fa.fa-lightbulb-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f381"}.fa.fa-cloud-upload:before{content:"\f382"}.fa.fa-bell-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-o:before{content:"\f089"}.fa.fa-star-half-empty{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-empty:before{content:"\f089"}.fa.fa-star-half-full{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-full:before{content:"\f089"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before{content:"\f127"}.fa.fa-shield:before{content:"\f3ed"}.fa.fa-calendar-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ticket:before{content:"\f3ff"}.fa.fa-minus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\f155"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\f156"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f15e"}.fa.fa-sort-amount-asc:before{content:"\f160"}.fa.fa-sort-amount-desc:before{content:"\f161"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f163"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\f195"}.fa.fa-plus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-spoon:before{content:"\f2e5"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-steam,.fa.fa-steam-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-cab:before{content:"\f1ba"}.fa.fa-envelope-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-deviantart,.fa.fa-soundcloud{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-life-bouy,.fa.fa-life-ring{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-bouy:before{content:"\f1cd"}.fa.fa-life-buoy{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-buoy:before{content:"\f1cd"}.fa.fa-life-saver{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-saver:before{content:"\f1cd"}.fa.fa-support{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-sliders:before{content:"\f1de"}.fa.fa-futbol-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-meanpath{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-meanpath:before{content:"\f2b4"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before{content:"\f224"}.fa.fa-facebook-official{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-clone,.fa.fa-hourglass-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hourglass-o:before{content:"\f254"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before{content:"\f252"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-tripadvisor,.fa.fa-wikipedia-w{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-yoast{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-spotify,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 5 Brands";font-weight:400}
\ No newline at end of file
diff --git a/data/interfaces/default/css/jquery-ui.min.css b/data/interfaces/default/css/jquery-ui.min.css
deleted file mode 100755
index efccc476..00000000
--- a/data/interfaces/default/css/jquery-ui.min.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*! jQuery UI - v1.11.4 - 2015-03-11
-* http://jqueryui.com
-* Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
-* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
-* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */
-
-.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;min-height:0;font-size:100%}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-dialog{overflow:hidden;position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:none}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{position:relative;margin:0;padding:3px 1em 3px .4em;cursor:pointer;min-height:0;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,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");height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-button{display:inline-block;overflow:hidden;position:relative;text-decoration:none;cursor:pointer}.ui-selectmenu-button span.ui-icon{right:0.5em;left:auto;margin-top:-8px;position:absolute;top:50%}.ui-selectmenu-button span.ui-selectmenu-text{text-align:left;padding:0.4em 2.1em 0.4em 1em;display:block;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #ddd;background:#eee url("images/ui-bg_highlight-soft_100_eeeeee_1x100.png") 50% top repeat-x;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #e78f08;background:#f6a828 url("images/ui-bg_gloss-wave_35_f6a828_500x100.png") 50% 50% repeat-x;color:#fff;font-weight:bold}.ui-widget-header a{color:#fff}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #ccc;background:#f6f6f6 url("images/ui-bg_glass_100_f6f6f6_1x400.png") 50% 50% repeat-x;font-weight:bold;color:#1c94c4}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#1c94c4;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #fbcb09;background:#fdf5ce url("images/ui-bg_glass_100_fdf5ce_1x400.png") 50% 50% repeat-x;font-weight:bold;color:#c77405}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited{color:#c77405;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #fbd850;background:#fff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;font-weight:bold;color:#eb8f00}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#eb8f00;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fed22f;background:#ffe45c url("images/ui-bg_highlight-soft_75_ffe45c_1x100.png") 50% top repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#b81900 url("images/ui-bg_diagonals-thick_18_b81900_40x40.png") 50% 50% repeat;color:#fff}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#fff}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#fff}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-default .ui-icon{background-image:url("images/ui-icons_ef8c08_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url("images/ui-icons_ef8c08_256x240.png")}.ui-state-active .ui-icon{background-image:url("images/ui-icons_ef8c08_256x240.png")}.ui-state-highlight .ui-icon{background-image:url("images/ui-icons_228ef1_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_ffd27a_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#666 url("images/ui-bg_diagonals-thick_20_666666_40x40.png") 50% 50% repeat;opacity:.5;filter:Alpha(Opacity=50)}.ui-widget-shadow{margin:-5px 0 0 -5px;padding:5px;background:#000 url("images/ui-bg_flat_10_000000_40x100.png") 50% 50% repeat-x;opacity:.2;filter:Alpha(Opacity=20);border-radius:5px}
\ No newline at end of file
diff --git a/data/interfaces/default/css/jquery.dataTables.css b/data/interfaces/default/css/jquery.dataTables.css
deleted file mode 100644
index eec02ef5..00000000
--- a/data/interfaces/default/css/jquery.dataTables.css
+++ /dev/null
@@ -1,455 +0,0 @@
-/*
- * Table styles
- */
-table.dataTable {
- width: 100%;
- margin: 0 auto;
- clear: both;
- border-collapse: separate;
- border-spacing: 0;
- /*
- * Header and footer styles
- */
- /*
- * Body styles
- */
-}
-table.dataTable thead th,
-table.dataTable tfoot th {
- font-weight: bold;
-}
-table.dataTable thead th,
-table.dataTable thead td {
- padding: 10px 18px;
- border-bottom: 1px solid #111;
-}
-table.dataTable thead th:active,
-table.dataTable thead td:active {
- outline: none;
-}
-table.dataTable tfoot th,
-table.dataTable tfoot td {
- padding: 10px 18px 6px 18px;
- border-top: 1px solid #111;
-}
-table.dataTable thead .sorting,
-table.dataTable thead .sorting_asc,
-table.dataTable thead .sorting_desc {
- cursor: pointer;
- *cursor: hand;
-}
-table.dataTable thead .sorting,
-table.dataTable thead .sorting_asc,
-table.dataTable thead .sorting_desc,
-table.dataTable thead .sorting_asc_disabled,
-table.dataTable thead .sorting_desc_disabled {
- background-repeat: no-repeat;
- background-position: center right;
-}
-table.dataTable thead .sorting {
- background-image: url("../images/sort_both.png");
-}
-table.dataTable thead .sorting_asc {
- background-image: url("../images/sort_asc.png");
-}
-table.dataTable thead .sorting_desc {
- background-image: url("../images/sort_desc.png");
-}
-table.dataTable thead .sorting_asc_disabled {
- background-image: url("../images/sort_asc_disabled.png");
-}
-table.dataTable thead .sorting_desc_disabled {
- background-image: url("../images/sort_desc_disabled.png");
-}
-table.dataTable tbody tr {
- background-color: #ffffff;
-}
-table.dataTable tbody tr.selected {
- background-color: #B0BED9;
-}
-table.dataTable tbody th,
-table.dataTable tbody td {
- padding: 8px 10px;
-}
-table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
- border-top: 1px solid #ddd;
-}
-table.dataTable.row-border tbody tr:first-child th,
-table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
-table.dataTable.display tbody tr:first-child td {
- border-top: none;
-}
-table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
- border-top: 1px solid #ddd;
- border-right: 1px solid #ddd;
-}
-table.dataTable.cell-border tbody tr th:first-child,
-table.dataTable.cell-border tbody tr td:first-child {
- border-left: 1px solid #ddd;
-}
-table.dataTable.cell-border tbody tr:first-child th,
-table.dataTable.cell-border tbody tr:first-child td {
- border-top: none;
-}
-table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
- background-color: #f9f9f9;
-}
-table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
- background-color: #abb9d3;
-}
-table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
- background-color: whitesmoke;
-}
-table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected {
- background-color: #a9b7d1;
-}
-table.dataTable.order-column tbody tr > .sorting_1,
-table.dataTable.order-column tbody tr > .sorting_2,
-table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
-table.dataTable.display tbody tr > .sorting_2,
-table.dataTable.display tbody tr > .sorting_3 {
- background-color: #f9f9f9;
-}
-table.dataTable.order-column tbody tr.selected > .sorting_1,
-table.dataTable.order-column tbody tr.selected > .sorting_2,
-table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
-table.dataTable.display tbody tr.selected > .sorting_2,
-table.dataTable.display tbody tr.selected > .sorting_3 {
- background-color: #acbad4;
-}
-table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
- background-color: #f1f1f1;
-}
-table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
- background-color: #f3f3f3;
-}
-table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
- background-color: whitesmoke;
-}
-table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
- background-color: #a6b3cd;
-}
-table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
- background-color: #a7b5ce;
-}
-table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
- background-color: #a9b6d0;
-}
-table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
- background-color: #f9f9f9;
-}
-table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
- background-color: #fbfbfb;
-}
-table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
- background-color: #fdfdfd;
-}
-table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
- background-color: #acbad4;
-}
-table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
- background-color: #adbbd6;
-}
-table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
- background-color: #afbdd8;
-}
-table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
- background-color: #eaeaea;
-}
-table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
- background-color: #ebebeb;
-}
-table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
- background-color: #eeeeee;
-}
-table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
- background-color: #a1aec7;
-}
-table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
- background-color: #a2afc8;
-}
-table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
- background-color: #a4b2cb;
-}
-table.dataTable.no-footer {
- border-bottom: 1px solid #111;
-}
-table.dataTable.nowrap th, table.dataTable.nowrap td {
- white-space: nowrap;
-}
-table.dataTable.compact thead th,
-table.dataTable.compact thead td {
- padding: 4px 17px 4px 4px;
-}
-table.dataTable.compact tfoot th,
-table.dataTable.compact tfoot td {
- padding: 4px;
-}
-table.dataTable.compact tbody th,
-table.dataTable.compact tbody td {
- padding: 4px;
-}
-table.dataTable th.dt-left,
-table.dataTable td.dt-left {
- text-align: left;
-}
-table.dataTable th.dt-center,
-table.dataTable td.dt-center,
-table.dataTable td.dataTables_empty {
- text-align: center;
-}
-table.dataTable th.dt-right,
-table.dataTable td.dt-right {
- text-align: right;
-}
-table.dataTable th.dt-justify,
-table.dataTable td.dt-justify {
- text-align: justify;
-}
-table.dataTable th.dt-nowrap,
-table.dataTable td.dt-nowrap {
- white-space: nowrap;
-}
-table.dataTable thead th.dt-head-left,
-table.dataTable thead td.dt-head-left,
-table.dataTable tfoot th.dt-head-left,
-table.dataTable tfoot td.dt-head-left {
- text-align: left;
-}
-table.dataTable thead th.dt-head-center,
-table.dataTable thead td.dt-head-center,
-table.dataTable tfoot th.dt-head-center,
-table.dataTable tfoot td.dt-head-center {
- text-align: center;
-}
-table.dataTable thead th.dt-head-right,
-table.dataTable thead td.dt-head-right,
-table.dataTable tfoot th.dt-head-right,
-table.dataTable tfoot td.dt-head-right {
- text-align: right;
-}
-table.dataTable thead th.dt-head-justify,
-table.dataTable thead td.dt-head-justify,
-table.dataTable tfoot th.dt-head-justify,
-table.dataTable tfoot td.dt-head-justify {
- text-align: justify;
-}
-table.dataTable thead th.dt-head-nowrap,
-table.dataTable thead td.dt-head-nowrap,
-table.dataTable tfoot th.dt-head-nowrap,
-table.dataTable tfoot td.dt-head-nowrap {
- white-space: nowrap;
-}
-table.dataTable tbody th.dt-body-left,
-table.dataTable tbody td.dt-body-left {
- text-align: left;
-}
-table.dataTable tbody th.dt-body-center,
-table.dataTable tbody td.dt-body-center {
- text-align: center;
-}
-table.dataTable tbody th.dt-body-right,
-table.dataTable tbody td.dt-body-right {
- text-align: right;
-}
-table.dataTable tbody th.dt-body-justify,
-table.dataTable tbody td.dt-body-justify {
- text-align: justify;
-}
-table.dataTable tbody th.dt-body-nowrap,
-table.dataTable tbody td.dt-body-nowrap {
- white-space: nowrap;
-}
-
-table.dataTable,
-table.dataTable th,
-table.dataTable td {
- -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
- box-sizing: content-box;
-}
-
-/*
- * Control feature layout
- */
-.dataTables_wrapper {
- position: relative;
- clear: both;
- *zoom: 1;
- zoom: 1;
-}
-.dataTables_wrapper .dataTables_length {
- float: left;
-}
-.dataTables_wrapper .dataTables_filter {
- float: right;
- text-align: right;
-}
-.dataTables_wrapper .dataTables_filter input {
- margin-left: 0.5em;
-}
-.dataTables_wrapper .dataTables_info {
- clear: both;
- float: left;
- padding-top: 0.755em;
-}
-.dataTables_wrapper .dataTables_paginate {
- float: right;
- text-align: right;
- padding-top: 0.25em;
-}
-.dataTables_wrapper .dataTables_paginate .paginate_button {
- box-sizing: border-box;
- display: inline-block;
- min-width: 1.5em;
- padding: 0.5em 1em;
- margin-left: 2px;
- text-align: center;
- text-decoration: none !important;
- cursor: pointer;
- *cursor: hand;
- color: #333 !important;
- border: 1px solid transparent;
-}
-.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
- color: #333 !important;
- border: 1px solid #cacaca;
- background-color: white;
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #dcdcdc));
- /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, white 0%, #dcdcdc 100%);
- /* Chrome10+,Safari5.1+ */
- background: -moz-linear-gradient(top, white 0%, #dcdcdc 100%);
- /* FF3.6+ */
- background: -ms-linear-gradient(top, white 0%, #dcdcdc 100%);
- /* IE10+ */
- background: -o-linear-gradient(top, white 0%, #dcdcdc 100%);
- /* Opera 11.10+ */
- background: linear-gradient(to bottom, white 0%, #dcdcdc 100%);
- /* W3C */
-}
-.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
- cursor: default;
- color: #666 !important;
- border: 1px solid transparent;
- background: transparent;
- box-shadow: none;
-}
-.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
- color: white !important;
- border: 1px solid #111;
- background-color: #585858;
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
- /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #585858 0%, #111 100%);
- /* Chrome10+,Safari5.1+ */
- background: -moz-linear-gradient(top, #585858 0%, #111 100%);
- /* FF3.6+ */
- background: -ms-linear-gradient(top, #585858 0%, #111 100%);
- /* IE10+ */
- background: -o-linear-gradient(top, #585858 0%, #111 100%);
- /* Opera 11.10+ */
- background: linear-gradient(to bottom, #585858 0%, #111 100%);
- /* W3C */
-}
-.dataTables_wrapper .dataTables_paginate .paginate_button:active {
- outline: none;
- background-color: #2b2b2b;
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
- /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
- /* Chrome10+,Safari5.1+ */
- background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
- /* FF3.6+ */
- background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
- /* IE10+ */
- background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
- /* Opera 11.10+ */
- background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
- /* W3C */
- box-shadow: inset 0 0 3px #111;
-}
-.dataTables_wrapper .dataTables_paginate .ellipsis {
- padding: 0 1em;
-}
-.dataTables_wrapper .dataTables_processing {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 100%;
- height: 40px;
- margin-left: -50%;
- margin-top: -25px;
- padding-top: 20px;
- text-align: center;
- font-size: 1.2em;
- background-color: white;
- background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
- /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
- /* Chrome10+,Safari5.1+ */
- background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
- /* FF3.6+ */
- background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
- /* IE10+ */
- background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
- /* Opera 11.10+ */
- background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
- /* W3C */
-}
-.dataTables_wrapper .dataTables_length,
-.dataTables_wrapper .dataTables_filter,
-.dataTables_wrapper .dataTables_info,
-.dataTables_wrapper .dataTables_processing,
-.dataTables_wrapper .dataTables_paginate {
- color: #333;
-}
-.dataTables_wrapper .dataTables_scroll {
- clear: both;
-}
-.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
- *margin-top: -1px;
- -webkit-overflow-scrolling: touch;
-}
-.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th > div.dataTables_sizing,
-.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td > div.dataTables_sizing {
- height: 0;
- overflow: hidden;
- margin: 0 !important;
- padding: 0 !important;
-}
-.dataTables_wrapper.no-footer .dataTables_scrollBody {
- border-bottom: 1px solid #111;
-}
-.dataTables_wrapper.no-footer div.dataTables_scrollHead table,
-.dataTables_wrapper.no-footer div.dataTables_scrollBody table {
- border-bottom: none;
-}
-.dataTables_wrapper:after {
- visibility: hidden;
- display: block;
- content: "";
- clear: both;
- height: 0;
-}
-
-@media screen and (max-width: 767px) {
- .dataTables_wrapper .dataTables_info,
- .dataTables_wrapper .dataTables_paginate {
- float: none;
- text-align: center;
- }
- .dataTables_wrapper .dataTables_paginate {
- margin-top: 0.5em;
- }
-}
-@media screen and (max-width: 640px) {
- .dataTables_wrapper .dataTables_length,
- .dataTables_wrapper .dataTables_filter {
- float: none;
- text-align: center;
- }
- .dataTables_wrapper .dataTables_filter {
- margin-top: 0.5em;
- }
-}
diff --git a/data/interfaces/default/css/jquery.scrollbar.css b/data/interfaces/default/css/jquery.scrollbar.css
deleted file mode 100644
index e0a7df51..00000000
--- a/data/interfaces/default/css/jquery.scrollbar.css
+++ /dev/null
@@ -1,904 +0,0 @@
-/*************** SCROLLBAR BASE CSS ***************/
-.scroll-wrapper {
- overflow: hidden !important;
- padding: 0 !important;
- position: relative;
-}
-.scroll-wrapper > .scroll-content {
- border: none !important;
- box-sizing: content-box !important;
- height: auto;
- left: 0;
- margin: 0;
- max-height: none;
- max-width: none !important;
- overflow: scroll !important;
- padding: 0;
- position: relative !important;
- top: 0;
- width: auto !important;
-}
-.scroll-wrapper > .scroll-content::-webkit-scrollbar {
- height: 0;
- width: 0;
-}
-.scroll-wrapper.scroll--rtl {
- direction: rtl;
-}
-
-.scroll-element {
- box-sizing: content-box;
- display: none;
-}
-.scroll-element div {
- box-sizing: content-box;
-}
-.scroll-element .scroll-bar,
-.scroll-element .scroll-arrow {
- cursor: default;
-}
-.scroll-element.scroll-x.scroll-scrollx_visible, .scroll-element.scroll-y.scroll-scrolly_visible {
- display: block;
-}
-
-.scroll-textarea {
- border: 1px solid #cccccc;
- border-top-color: #999999;
-}
-.scroll-textarea > .scroll-content {
- overflow: hidden !important;
-}
-.scroll-textarea > .scroll-content > textarea {
- border: none !important;
- box-sizing: border-box;
- height: 100% !important;
- margin: 0;
- max-height: none !important;
- max-width: none !important;
- overflow: scroll !important;
- outline: none;
- padding: 2px;
- position: relative !important;
- top: 0;
- width: 100% !important;
-}
-.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
- height: 0;
- width: 0;
-}
-
-/*************** SIMPLE INNER SCROLLBAR ***************/
-.scrollbar-inner > .scroll-element,
-.scrollbar-inner > .scroll-element div {
- border: none;
- margin: 0;
- padding: 0;
- position: absolute;
- z-index: 10;
-}
-
-.scrollbar-inner > .scroll-element div {
- display: block;
- height: 100%;
- left: 0;
- top: 0;
- width: 100%;
-}
-
-.scrollbar-inner > .scroll-element.scroll-x {
- bottom: 2px;
- height: 8px;
- left: 0;
- width: 100%;
-}
-
-.scrollbar-inner > .scroll-element.scroll-y {
- height: 100%;
- right: 2px;
- top: 0;
- width: 8px;
-}
-
-.scrollbar-inner > .scroll-element .scroll-element_outer {
- overflow: hidden;
-}
-
-.scrollbar-inner > .scroll-element .scroll-element_outer,
-.scrollbar-inner > .scroll-element .scroll-element_track,
-.scrollbar-inner > .scroll-element .scroll-bar {
- -webkit-border-radius: 8px;
- -moz-border-radius: 8px;
- border-radius: 8px;
-}
-
-.scrollbar-inner > .scroll-element .scroll-element_track,
-.scrollbar-inner > .scroll-element .scroll-bar {
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
- filter: alpha(opacity=40);
- opacity: 0.4;
-}
-
-.scrollbar-inner > .scroll-element .scroll-element_track {
- background-color: #e0e0e0;
-}
-
-.scrollbar-inner > .scroll-element .scroll-bar {
- background-color: #c2c2c2;
-}
-
-.scrollbar-inner > .scroll-element:hover .scroll-bar {
- background-color: #919191;
-}
-
-.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
- background-color: #919191;
-}
-
-/* update scrollbar offset if both scrolls are visible */
-.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
- left: -12px;
-}
-
-.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
- top: -12px;
-}
-
-.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
- left: -12px;
-}
-
-.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
- top: -12px;
-}
-
-/*************** SIMPLE OUTER SCROLLBAR ***************/
-.scrollbar-outer > .scroll-element,
-.scrollbar-outer > .scroll-element div {
- border: none;
- margin: 0;
- padding: 0;
- position: absolute;
- z-index: 10;
-}
-
-.scrollbar-outer > .scroll-element {
- background-color: #ffffff;
-}
-
-.scrollbar-outer > .scroll-element div {
- display: block;
- height: 100%;
- left: 0;
- top: 0;
- width: 100%;
-}
-
-.scrollbar-outer > .scroll-element.scroll-x {
- bottom: 0;
- height: 12px;
- left: 0;
- width: 100%;
-}
-
-.scrollbar-outer > .scroll-element.scroll-y {
- height: 100%;
- right: 0;
- top: 0;
- width: 12px;
-}
-
-.scrollbar-outer > .scroll-element.scroll-x .scroll-element_outer {
- height: 8px;
- top: 2px;
-}
-
-.scrollbar-outer > .scroll-element.scroll-y .scroll-element_outer {
- left: 2px;
- width: 8px;
-}
-
-.scrollbar-outer > .scroll-element .scroll-element_outer {
- overflow: hidden;
-}
-
-.scrollbar-outer > .scroll-element .scroll-element_track {
- background-color: #eeeeee;
-}
-
-.scrollbar-outer > .scroll-element .scroll-element_outer,
-.scrollbar-outer > .scroll-element .scroll-element_track,
-.scrollbar-outer > .scroll-element .scroll-bar {
- -webkit-border-radius: 8px;
- -moz-border-radius: 8px;
- border-radius: 8px;
-}
-
-.scrollbar-outer > .scroll-element .scroll-bar {
- background-color: #d9d9d9;
-}
-
-.scrollbar-outer > .scroll-element .scroll-bar:hover {
- background-color: #c2c2c2;
-}
-
-.scrollbar-outer > .scroll-element.scroll-draggable .scroll-bar {
- background-color: #919191;
-}
-
-/* scrollbar height/width & offset from container borders */
-.scrollbar-outer > .scroll-content.scroll-scrolly_visible {
- left: -12px;
- margin-left: 12px;
-}
-
-.scrollbar-outer > .scroll-content.scroll-scrollx_visible {
- top: -12px;
- margin-top: 12px;
-}
-
-.scrollbar-outer > .scroll-element.scroll-x .scroll-bar {
- min-width: 10px;
-}
-
-.scrollbar-outer > .scroll-element.scroll-y .scroll-bar {
- min-height: 10px;
-}
-
-/* update scrollbar offset if both scrolls are visible */
-.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
- left: -14px;
-}
-
-.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
- top: -14px;
-}
-
-.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
- left: -14px;
-}
-
-.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
- top: -14px;
-}
-
-/*************** SCROLLBAR MAC OS X ***************/
-.scrollbar-macosx > .scroll-element,
-.scrollbar-macosx > .scroll-element div {
- background: none;
- border: none;
- margin: 0;
- padding: 0;
- position: absolute;
- z-index: 10;
-}
-
-.scrollbar-macosx > .scroll-element div {
- display: block;
- height: 100%;
- left: 0;
- top: 0;
- width: 100%;
-}
-
-.scrollbar-macosx > .scroll-element .scroll-element_track {
- display: none;
-}
-
-.scrollbar-macosx > .scroll-element .scroll-bar {
- background-color: #6C6E71;
- display: block;
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
- filter: alpha(opacity=0);
- opacity: 0;
- -webkit-border-radius: 7px;
- -moz-border-radius: 7px;
- border-radius: 7px;
- -webkit-transition: opacity 0.2s linear;
- -moz-transition: opacity 0.2s linear;
- -o-transition: opacity 0.2s linear;
- -ms-transition: opacity 0.2s linear;
- transition: opacity 0.2s linear;
-}
-
-.scrollbar-macosx:hover > .scroll-element .scroll-bar,
-.scrollbar-macosx > .scroll-element.scroll-draggable .scroll-bar {
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
- filter: alpha(opacity=70);
- opacity: 0.7;
-}
-
-.scrollbar-macosx > .scroll-element.scroll-x {
- bottom: 0px;
- height: 0px;
- left: 0;
- min-width: 100%;
- overflow: visible;
- width: 100%;
-}
-
-.scrollbar-macosx > .scroll-element.scroll-y {
- height: 100%;
- min-height: 100%;
- right: 0px;
- top: 0;
- width: 0px;
-}
-
-/* scrollbar height/width & offset from container borders */
-.scrollbar-macosx > .scroll-element.scroll-x .scroll-bar {
- height: 7px;
- min-width: 10px;
- top: -9px;
-}
-
-.scrollbar-macosx > .scroll-element.scroll-y .scroll-bar {
- left: -9px;
- min-height: 10px;
- width: 7px;
-}
-
-.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_outer {
- left: 2px;
-}
-
-.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_size {
- left: -4px;
-}
-
-.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_outer {
- top: 2px;
-}
-
-.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_size {
- top: -4px;
-}
-
-/* update scrollbar offset if both scrolls are visible */
-.scrollbar-macosx > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
- left: -11px;
-}
-
-.scrollbar-macosx > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
- top: -11px;
-}
-
-/*************** SCROLLBAR LIGHT ***************/
-.scrollbar-light > .scroll-element,
-.scrollbar-light > .scroll-element div {
- border: none;
- margin: 0;
- overflow: hidden;
- padding: 0;
- position: absolute;
- z-index: 10;
-}
-
-.scrollbar-light > .scroll-element {
- background-color: #ffffff;
-}
-
-.scrollbar-light > .scroll-element div {
- display: block;
- height: 100%;
- left: 0;
- top: 0;
- width: 100%;
-}
-
-.scrollbar-light > .scroll-element .scroll-element_outer {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-
-.scrollbar-light > .scroll-element .scroll-element_size {
- background: #dbdbdb;
- background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RiZGJkYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
- background: -moz-linear-gradient(left, #dbdbdb 0%, #e8e8e8 100%);
- background: -webkit-gradient(linear, left top, right top, color-stop(0%, #dbdbdb), color-stop(100%, #e8e8e8));
- background: -webkit-linear-gradient(left, #dbdbdb 0%, #e8e8e8 100%);
- background: -o-linear-gradient(left, #dbdbdb 0%, #e8e8e8 100%);
- background: -ms-linear-gradient(left, #dbdbdb 0%, #e8e8e8 100%);
- background: linear-gradient(to right, #dbdbdb 0%, #e8e8e8 100%);
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-
-.scrollbar-light > .scroll-element.scroll-x {
- bottom: 0;
- height: 17px;
- left: 0;
- min-width: 100%;
- width: 100%;
-}
-
-.scrollbar-light > .scroll-element.scroll-y {
- height: 100%;
- min-height: 100%;
- right: 0;
- top: 0;
- width: 17px;
-}
-
-.scrollbar-light > .scroll-element .scroll-bar {
- background: #fefefe;
- background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZlZmVmZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
- background: -moz-linear-gradient(left, #fefefe 0%, #f5f5f5 100%);
- background: -webkit-gradient(linear, left top, right top, color-stop(0%, #fefefe), color-stop(100%, #f5f5f5));
- background: -webkit-linear-gradient(left, #fefefe 0%, #f5f5f5 100%);
- background: -o-linear-gradient(left, #fefefe 0%, #f5f5f5 100%);
- background: -ms-linear-gradient(left, #fefefe 0%, #f5f5f5 100%);
- background: linear-gradient(to right, #fefefe 0%, #f5f5f5 100%);
- border: 1px solid #dbdbdb;
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
-}
-
-/* scrollbar height/width & offset from container borders */
-.scrollbar-light > .scroll-content.scroll-scrolly_visible {
- left: -17px;
- margin-left: 17px;
-}
-
-.scrollbar-light > .scroll-content.scroll-scrollx_visible {
- top: -17px;
- margin-top: 17px;
-}
-
-.scrollbar-light > .scroll-element.scroll-x .scroll-bar {
- height: 10px;
- min-width: 10px;
- top: 0px;
-}
-
-.scrollbar-light > .scroll-element.scroll-y .scroll-bar {
- left: 0px;
- min-height: 10px;
- width: 10px;
-}
-
-.scrollbar-light > .scroll-element.scroll-x .scroll-element_outer {
- height: 12px;
- left: 2px;
- top: 2px;
-}
-
-.scrollbar-light > .scroll-element.scroll-x .scroll-element_size {
- left: -4px;
-}
-
-.scrollbar-light > .scroll-element.scroll-y .scroll-element_outer {
- left: 2px;
- top: 2px;
- width: 12px;
-}
-
-.scrollbar-light > .scroll-element.scroll-y .scroll-element_size {
- top: -4px;
-}
-
-/* update scrollbar offset if both scrolls are visible */
-.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
- left: -19px;
-}
-
-.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
- top: -19px;
-}
-
-.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
- left: -19px;
-}
-
-.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
- top: -19px;
-}
-
-/*************** SCROLLBAR RAIL ***************/
-.scrollbar-rail > .scroll-element,
-.scrollbar-rail > .scroll-element div {
- border: none;
- margin: 0;
- overflow: hidden;
- padding: 0;
- position: absolute;
- z-index: 10;
-}
-
-.scrollbar-rail > .scroll-element {
- background-color: #ffffff;
-}
-
-.scrollbar-rail > .scroll-element div {
- display: block;
- height: 100%;
- left: 0;
- top: 0;
- width: 100%;
-}
-
-.scrollbar-rail > .scroll-element .scroll-element_size {
- background-color: #999;
- background-color: rgba(0, 0, 0, 0.3);
-}
-
-.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-element_size {
- background-color: #666;
- background-color: rgba(0, 0, 0, 0.5);
-}
-
-.scrollbar-rail > .scroll-element.scroll-x {
- bottom: 0;
- height: 12px;
- left: 0;
- min-width: 100%;
- padding: 3px 0 2px;
- width: 100%;
-}
-
-.scrollbar-rail > .scroll-element.scroll-y {
- height: 100%;
- min-height: 100%;
- padding: 0 2px 0 3px;
- right: 0;
- top: 0;
- width: 12px;
-}
-
-.scrollbar-rail > .scroll-element .scroll-bar {
- background-color: #d0b9a0;
- -webkit-border-radius: 2px;
- -moz-border-radius: 2px;
- border-radius: 2px;
- box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
-}
-
-.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-bar {
- box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
-}
-
-/* scrollbar height/width & offset from container borders */
-.scrollbar-rail > .scroll-content.scroll-scrolly_visible {
- left: -17px;
- margin-left: 17px;
-}
-
-.scrollbar-rail > .scroll-content.scroll-scrollx_visible {
- margin-top: 17px;
- top: -17px;
-}
-
-.scrollbar-rail > .scroll-element.scroll-x .scroll-bar {
- height: 10px;
- min-width: 10px;
- top: 1px;
-}
-
-.scrollbar-rail > .scroll-element.scroll-y .scroll-bar {
- left: 1px;
- min-height: 10px;
- width: 10px;
-}
-
-.scrollbar-rail > .scroll-element.scroll-x .scroll-element_outer {
- height: 15px;
- left: 5px;
-}
-
-.scrollbar-rail > .scroll-element.scroll-x .scroll-element_size {
- height: 2px;
- left: -10px;
- top: 5px;
-}
-
-.scrollbar-rail > .scroll-element.scroll-y .scroll-element_outer {
- top: 5px;
- width: 15px;
-}
-
-.scrollbar-rail > .scroll-element.scroll-y .scroll-element_size {
- left: 5px;
- top: -10px;
- width: 2px;
-}
-
-/* update scrollbar offset if both scrolls are visible */
-.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
- left: -25px;
-}
-
-.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
- top: -25px;
-}
-
-.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
- left: -25px;
-}
-
-.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
- top: -25px;
-}
-
-/*************** SCROLLBAR DYNAMIC ***************/
-.scrollbar-dynamic > .scroll-element,
-.scrollbar-dynamic > .scroll-element div {
- background: none;
- border: none;
- margin: 0;
- padding: 0;
- position: absolute;
- z-index: 10;
-}
-
-.scrollbar-dynamic > .scroll-element div {
- display: block;
- height: 100%;
- left: 0;
- top: 0;
- width: 100%;
-}
-
-.scrollbar-dynamic > .scroll-element.scroll-x {
- bottom: 2px;
- height: 7px;
- left: 0;
- min-width: 100%;
- width: 100%;
-}
-
-.scrollbar-dynamic > .scroll-element.scroll-y {
- height: 100%;
- min-height: 100%;
- right: 2px;
- top: 0;
- width: 7px;
-}
-
-.scrollbar-dynamic > .scroll-element .scroll-element_outer {
- opacity: 0.3;
- -webkit-border-radius: 12px;
- -moz-border-radius: 12px;
- border-radius: 12px;
-}
-
-.scrollbar-dynamic > .scroll-element .scroll-element_size {
- background-color: #cccccc;
- opacity: 0;
- -webkit-border-radius: 12px;
- -moz-border-radius: 12px;
- border-radius: 12px;
- -webkit-transition: opacity 0.2s;
- -moz-transition: opacity 0.2s;
- -o-transition: opacity 0.2s;
- -ms-transition: opacity 0.2s;
- transition: opacity 0.2s;
-}
-
-.scrollbar-dynamic > .scroll-element .scroll-bar {
- background-color: #6c6e71;
- -webkit-border-radius: 7px;
- -moz-border-radius: 7px;
- border-radius: 7px;
-}
-
-/* scrollbar height/width & offset from container borders */
-.scrollbar-dynamic > .scroll-element.scroll-x .scroll-bar {
- bottom: 0;
- height: 7px;
- min-width: 24px;
- top: auto;
-}
-
-.scrollbar-dynamic > .scroll-element.scroll-y .scroll-bar {
- left: auto;
- min-height: 24px;
- right: 0;
- width: 7px;
-}
-
-.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_outer {
- bottom: 0;
- top: auto;
- left: 2px;
- -webkit-transition: height 0.2s;
- -moz-transition: height 0.2s;
- -o-transition: height 0.2s;
- -ms-transition: height 0.2s;
- transition: height 0.2s;
-}
-
-.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_outer {
- left: auto;
- right: 0;
- top: 2px;
- -webkit-transition: width 0.2s;
- -moz-transition: width 0.2s;
- -o-transition: width 0.2s;
- -ms-transition: width 0.2s;
- transition: width 0.2s;
-}
-
-.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_size {
- left: -4px;
-}
-
-.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_size {
- top: -4px;
-}
-
-/* update scrollbar offset if both scrolls are visible */
-.scrollbar-dynamic > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
- left: -11px;
-}
-
-.scrollbar-dynamic > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
- top: -11px;
-}
-
-/* hover & drag */
-.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer,
-.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer {
- overflow: hidden;
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
- filter: alpha(opacity=70);
- opacity: 0.7;
-}
-
-.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-element_size,
-.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-element_size {
- opacity: 1;
-}
-
-.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-bar,
-.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-bar {
- height: 100%;
- width: 100%;
- -webkit-border-radius: 12px;
- -moz-border-radius: 12px;
- border-radius: 12px;
-}
-
-.scrollbar-dynamic > .scroll-element.scroll-x:hover .scroll-element_outer,
-.scrollbar-dynamic > .scroll-element.scroll-x.scroll-draggable .scroll-element_outer {
- height: 20px;
- min-height: 7px;
-}
-
-.scrollbar-dynamic > .scroll-element.scroll-y:hover .scroll-element_outer,
-.scrollbar-dynamic > .scroll-element.scroll-y.scroll-draggable .scroll-element_outer {
- min-width: 7px;
- width: 20px;
-}
-
-/*************** SCROLLBAR GOOGLE CHROME ***************/
-.scrollbar-chrome > .scroll-element,
-.scrollbar-chrome > .scroll-element div {
- border: none;
- margin: 0;
- overflow: hidden;
- padding: 0;
- position: absolute;
- z-index: 10;
-}
-
-.scrollbar-chrome > .scroll-element {
- background-color: #ffffff;
-}
-
-.scrollbar-chrome > .scroll-element div {
- display: block;
- height: 100%;
- left: 0;
- top: 0;
- width: 100%;
-}
-
-.scrollbar-chrome > .scroll-element .scroll-element_track {
- background: #f1f1f1;
- border: 1px solid #dbdbdb;
-}
-
-.scrollbar-chrome > .scroll-element.scroll-x {
- bottom: 0;
- height: 16px;
- left: 0;
- min-width: 100%;
- width: 100%;
-}
-
-.scrollbar-chrome > .scroll-element.scroll-y {
- height: 100%;
- min-height: 100%;
- right: 0;
- top: 0;
- width: 16px;
-}
-
-.scrollbar-chrome > .scroll-element .scroll-bar {
- background-color: #d9d9d9;
- border: 1px solid #bdbdbd;
- cursor: default;
- -webkit-border-radius: 2px;
- -moz-border-radius: 2px;
- border-radius: 2px;
-}
-
-.scrollbar-chrome > .scroll-element .scroll-bar:hover {
- background-color: #c2c2c2;
- border-color: #a9a9a9;
-}
-
-.scrollbar-chrome > .scroll-element.scroll-draggable .scroll-bar {
- background-color: #919191;
- border-color: #7e7e7e;
-}
-
-/* scrollbar height/width & offset from container borders */
-.scrollbar-chrome > .scroll-content.scroll-scrolly_visible {
- left: -16px;
- margin-left: 16px;
-}
-
-.scrollbar-chrome > .scroll-content.scroll-scrollx_visible {
- top: -16px;
- margin-top: 16px;
-}
-
-.scrollbar-chrome > .scroll-element.scroll-x .scroll-bar {
- height: 8px;
- min-width: 10px;
- top: 3px;
-}
-
-.scrollbar-chrome > .scroll-element.scroll-y .scroll-bar {
- left: 3px;
- min-height: 10px;
- width: 8px;
-}
-
-.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_outer {
- border-left: 1px solid #dbdbdb;
-}
-
-.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_track {
- height: 14px;
- left: -3px;
-}
-
-.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_size {
- height: 14px;
- left: -4px;
-}
-
-.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_outer {
- border-top: 1px solid #dbdbdb;
-}
-
-.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_track {
- top: -3px;
- width: 14px;
-}
-
-.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_size {
- top: -4px;
- width: 14px;
-}
-
-/* update scrollbar offset if both scrolls are visible */
-.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
- left: -19px;
-}
-
-.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
- top: -19px;
-}
-
-.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
- left: -19px;
-}
-
-.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
- top: -19px;
-}
diff --git a/data/interfaces/default/css/opensans.min.css b/data/interfaces/default/css/opensans.min.css
deleted file mode 100644
index 6d4f3a9c..00000000
--- a/data/interfaces/default/css/opensans.min.css
+++ /dev/null
@@ -1 +0,0 @@
-@font-face{font-family:'Open Sans';font-weight:400;font-style:normal;src:url(../fonts/Open-Sans-regular/Open-Sans-regular.eot);src:url(../fonts/Open-Sans-regular/Open-Sans-regular.eot?#iefix) format('embedded-opentype'),local('Open Sans'),local('Open-Sans-regular'),url(../fonts/Open-Sans-regular/Open-Sans-regular.woff2) format('woff2'),url(../fonts/Open-Sans-regular/Open-Sans-regular.woff) format('woff'),url(../fonts/Open-Sans-regular/Open-Sans-regular.ttf) format('truetype'),url(../fonts/Open-Sans-regular/Open-Sans-regular.svg#OpenSans) format('svg')}@font-face{font-family:'Open Sans';font-weight:600;font-style:normal;src:url(../fonts/Open-Sans-600/Open-Sans-600.eot);src:url(../fonts/Open-Sans-600/Open-Sans-600.eot?#iefix) format('embedded-opentype'),local('Open Sans Semibold'),local('Open-Sans-600'),url(../fonts/Open-Sans-600/Open-Sans-600.woff2) format('woff2'),url(../fonts/Open-Sans-600/Open-Sans-600.woff) format('woff'),url(../fonts/Open-Sans-600/Open-Sans-600.ttf) format('truetype'),url(../fonts/Open-Sans-600/Open-Sans-600.svg#OpenSans) format('svg')}
\ No newline at end of file
diff --git a/data/interfaces/default/css/pnotify.custom.min.css b/data/interfaces/default/css/pnotify.custom.min.css
deleted file mode 100644
index 2d6056a2..00000000
--- a/data/interfaces/default/css/pnotify.custom.min.css
+++ /dev/null
@@ -1 +0,0 @@
-.ui-pnotify{top:36px;right:36px;position:absolute;height:auto;z-index:2}body>.ui-pnotify{position:fixed;z-index:100040}.ui-pnotify-modal-overlay{background-color:rgba(0,0,0,.4);top:0;left:0;position:absolute;height:100%;width:100%;z-index:1}body>.ui-pnotify-modal-overlay{position:fixed;z-index:100039}.ui-pnotify.ui-pnotify-in{display:block!important}.ui-pnotify.ui-pnotify-move{transition:left .5s ease,top .5s ease,right .5s ease,bottom .5s ease}.ui-pnotify.ui-pnotify-fade-slow{transition:opacity .6s linear;opacity:0}.ui-pnotify.ui-pnotify-fade-slow.ui-pnotify.ui-pnotify-move{transition:opacity .6s linear,left .5s ease,top .5s ease,right .5s ease,bottom .5s ease}.ui-pnotify.ui-pnotify-fade-normal{transition:opacity .4s linear;opacity:0}.ui-pnotify.ui-pnotify-fade-normal.ui-pnotify.ui-pnotify-move{transition:opacity .4s linear,left .5s ease,top .5s ease,right .5s ease,bottom .5s ease}.ui-pnotify.ui-pnotify-fade-fast{transition:opacity .2s linear;opacity:0}.ui-pnotify.ui-pnotify-fade-fast.ui-pnotify.ui-pnotify-move{transition:opacity .2s linear,left .5s ease,top .5s ease,right .5s ease,bottom .5s ease}.ui-pnotify.ui-pnotify-fade-in{opacity:1}.ui-pnotify .ui-pnotify-shadow{-webkit-box-shadow:0 6px 28px 0 rgba(0,0,0,.1);-moz-box-shadow:0 6px 28px 0 rgba(0,0,0,.1);box-shadow:0 6px 28px 0 rgba(0,0,0,.1)}.ui-pnotify-container{background-position:0 0;padding:.8em;height:100%;margin:0}.ui-pnotify-container:after{content:" ";visibility:hidden;display:block;height:0;clear:both}.ui-pnotify-container.ui-pnotify-sharp{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.ui-pnotify-title{display:block;margin-bottom:.4em;margin-top:0}.ui-pnotify-text{display:block}.ui-pnotify-icon,.ui-pnotify-icon span{display:block;float:left;margin-right:.2em}.ui-pnotify.stack-bottomleft,.ui-pnotify.stack-topleft{left:25px;right:auto}.ui-pnotify.stack-bottomleft,.ui-pnotify.stack-bottomright{bottom:25px;top:auto}.ui-pnotify.stack-modal{left:50%;right:auto;margin-left:-150px}.ui-pnotify-closer,.ui-pnotify-sticker{float:right;margin-left:.2em}.ui-pnotify-container{position:relative;left:0}@media (max-width:480px){.ui-pnotify-mobile-able.ui-pnotify{position:fixed;top:0;right:0;left:0;width:auto!important;font-size:1.2em;-webkit-font-smoothing:antialiased;-moz-font-smoothing:antialiased;-ms-font-smoothing:antialiased;font-smoothing:antialiased}.ui-pnotify-mobile-able.ui-pnotify .ui-pnotify-shadow{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-bottom-width:5px}.ui-pnotify-mobile-able .ui-pnotify-container{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.ui-pnotify-mobile-able.ui-pnotify.stack-bottomleft,.ui-pnotify-mobile-able.ui-pnotify.stack-topleft{left:0;right:0}.ui-pnotify-mobile-able.ui-pnotify.stack-bottomleft,.ui-pnotify-mobile-able.ui-pnotify.stack-bottomright{left:0;right:0;bottom:0;top:auto}.ui-pnotify-mobile-able.ui-pnotify.stack-bottomleft .ui-pnotify-shadow,.ui-pnotify-mobile-able.ui-pnotify.stack-bottomright .ui-pnotify-shadow{border-top-width:5px;border-bottom-width:1px}}
\ No newline at end of file
diff --git a/data/interfaces/default/css/selectize.bootstrap3.css b/data/interfaces/default/css/selectize.bootstrap3.css
deleted file mode 100644
index cfb2bfa2..00000000
--- a/data/interfaces/default/css/selectize.bootstrap3.css
+++ /dev/null
@@ -1,401 +0,0 @@
-/**
- * selectize.bootstrap3.css (v0.12.1) - Bootstrap 3 Theme
- * Copyright (c) 2013–2015 Brian Reavis & contributors
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
- * file except in compliance with the License. You may obtain a copy of the License at:
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software distributed under
- * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
- * ANY KIND, either express or implied. See the License for the specific language
- * governing permissions and limitations under the License.
- *
- * @author Brian Reavis
- */
-.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
- visibility: visible !important;
- background: #f2f2f2 !important;
- background: rgba(0, 0, 0, 0.06) !important;
- border: 0 none !important;
- -webkit-box-shadow: inset 0 0 12px 4px #ffffff;
- box-shadow: inset 0 0 12px 4px #ffffff;
-}
-.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
- content: '!';
- visibility: hidden;
-}
-.selectize-control.plugin-drag_drop .ui-sortable-helper {
- -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
-}
-.selectize-dropdown-header {
- position: relative;
- padding: 3px 12px;
- border-bottom: 1px solid #d0d0d0;
- background: #f8f8f8;
- -webkit-border-radius: 4px 4px 0 0;
- -moz-border-radius: 4px 4px 0 0;
- border-radius: 4px 4px 0 0;
-}
-.selectize-dropdown-header-close {
- position: absolute;
- right: 12px;
- top: 50%;
- color: #333333;
- opacity: 0.4;
- margin-top: -12px;
- line-height: 20px;
- font-size: 20px !important;
-}
-.selectize-dropdown-header-close:hover {
- color: #000000;
-}
-.selectize-dropdown.plugin-optgroup_columns .optgroup {
- border-right: 1px solid #f2f2f2;
- border-top: 0 none;
- float: left;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
-}
-.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
- border-right: 0 none;
-}
-.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
- display: none;
-}
-.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
- border-top: 0 none;
-}
-.selectize-control.plugin-remove_button [data-value] {
- position: relative;
- padding-right: 24px !important;
-}
-.selectize-control.plugin-remove_button [data-value] .remove {
- z-index: 1;
- /* fixes ie bug (see #392) */
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- width: 17px;
- text-align: center;
- font-weight: bold;
- font-size: 12px;
- color: inherit;
- text-decoration: none;
- vertical-align: middle;
- display: inline-block;
- padding: 1px 0 0 0;
- border-left: 1px solid rgba(0, 0, 0, 0);
- -webkit-border-radius: 0 2px 2px 0;
- -moz-border-radius: 0 2px 2px 0;
- border-radius: 0 2px 2px 0;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
-}
-.selectize-control.plugin-remove_button [data-value] .remove:hover {
- background: rgba(0, 0, 0, 0.05);
-}
-.selectize-control.plugin-remove_button [data-value].active .remove {
- border-left-color: rgba(0, 0, 0, 0);
-}
-.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
- background: none;
-}
-.selectize-control.plugin-remove_button .disabled [data-value] .remove {
- border-left-color: rgba(77, 77, 77, 0);
-}
-.selectize-control {
- position: relative;
-}
-.selectize-dropdown,
-.selectize-input,
-.selectize-input input {
- color: #333333;
- font-family: inherit;
- font-size: inherit;
- line-height: 20px;
- -webkit-font-smoothing: inherit;
-}
-.selectize-input,
-.selectize-control.single .selectize-input.input-active {
- background: #ffffff;
- cursor: text;
- display: inline-block;
-}
-.selectize-input {
- border: 1px solid #cccccc;
- padding: 6px 12px;
- display: inline-block;
- width: 100%;
- overflow: hidden;
- position: relative;
- z-index: 1;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- -webkit-box-shadow: none;
- box-shadow: none;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.selectize-control.multi .selectize-input.has-items {
- padding: 5px 12px 2px;
-}
-.selectize-input.full {
- background-color: #ffffff;
-}
-.selectize-input.disabled,
-.selectize-input.disabled * {
- cursor: default !important;
-}
-.selectize-input.focus {
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
-}
-.selectize-input.dropdown-active {
- -webkit-border-radius: 4px 4px 0 0;
- -moz-border-radius: 4px 4px 0 0;
- border-radius: 4px 4px 0 0;
-}
-.selectize-input > * {
- vertical-align: baseline;
- display: -moz-inline-stack;
- display: inline-block;
- zoom: 1;
- *display: inline;
-}
-.selectize-control.multi .selectize-input > div {
- cursor: pointer;
- margin: 0 3px 3px 0;
- padding: 1px 3px;
- background: #efefef;
- color: #333333;
- border: 0 solid rgba(0, 0, 0, 0);
-}
-.selectize-control.multi .selectize-input > div.active {
- background: #428bca;
- color: #ffffff;
- border: 0 solid rgba(0, 0, 0, 0);
-}
-.selectize-control.multi .selectize-input.disabled > div,
-.selectize-control.multi .selectize-input.disabled > div.active {
- color: #808080;
- background: #ffffff;
- border: 0 solid rgba(77, 77, 77, 0);
-}
-.selectize-input > input {
- display: inline-block !important;
- padding: 0 !important;
- min-height: 0 !important;
- max-height: none !important;
- max-width: 100% !important;
- margin: 0 !important;
- text-indent: 0 !important;
- border: 0 none !important;
- background: none !important;
- line-height: inherit !important;
- -webkit-user-select: auto !important;
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
-}
-.selectize-input > input::-ms-clear {
- display: none;
-}
-.selectize-input > input:focus {
- outline: none !important;
-}
-.selectize-input::after {
- content: ' ';
- display: block;
- clear: left;
-}
-.selectize-input.dropdown-active::before {
- content: ' ';
- display: block;
- position: absolute;
- background: #ffffff;
- height: 1px;
- bottom: 0;
- left: 0;
- right: 0;
-}
-.selectize-dropdown {
- position: absolute;
- z-index: 10;
- border: 1px solid #d0d0d0;
- background: #ffffff;
- margin: -1px 0 0 0;
- border-top: 0 none;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
- -webkit-border-radius: 0 0 4px 4px;
- -moz-border-radius: 0 0 4px 4px;
- border-radius: 0 0 4px 4px;
-}
-.selectize-dropdown [data-selectable] {
- cursor: pointer;
- overflow: hidden;
-}
-.selectize-dropdown [data-selectable] .highlight {
- background: rgba(255, 237, 40, 0.4);
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
-}
-.selectize-dropdown [data-selectable],
-.selectize-dropdown .optgroup-header {
- padding: 3px 12px;
-}
-.selectize-dropdown .optgroup:first-child .optgroup-header {
- border-top: 0 none;
-}
-.selectize-dropdown .optgroup-header {
- color: #777777;
- background: #ffffff;
- cursor: default;
-}
-.selectize-dropdown .active {
- background-color: #f5f5f5;
- color: #262626;
-}
-.selectize-dropdown .active.create {
- color: #262626;
-}
-.selectize-dropdown .create {
- color: rgba(51, 51, 51, 0.5);
-}
-.selectize-dropdown-content {
- overflow-y: auto;
- overflow-x: hidden;
- max-height: 200px;
-}
-.selectize-control.single .selectize-input,
-.selectize-control.single .selectize-input input {
- cursor: pointer;
-}
-.selectize-control.single .selectize-input.input-active,
-.selectize-control.single .selectize-input.input-active input {
- cursor: text;
-}
-.selectize-control.single .selectize-input:after {
- content: ' ';
- display: block;
- position: absolute;
- top: 50%;
- right: 17px;
- margin-top: -3px;
- width: 0;
- height: 0;
- border-style: solid;
- border-width: 5px 5px 0 5px;
- border-color: #333333 transparent transparent transparent;
-}
-.selectize-control.single .selectize-input.dropdown-active:after {
- margin-top: -4px;
- border-width: 0 5px 5px 5px;
- border-color: transparent transparent #333333 transparent;
-}
-.selectize-control.rtl.single .selectize-input:after {
- left: 17px;
- right: auto;
-}
-.selectize-control.rtl .selectize-input > input {
- margin: 0 4px 0 -2px !important;
-}
-.selectize-control .selectize-input.disabled {
- opacity: 0.5;
- background-color: #ffffff;
-}
-.selectize-dropdown,
-.selectize-dropdown.form-control {
- height: auto;
- padding: 0;
- margin: 2px 0 0 0;
- z-index: 1000;
- background: #ffffff;
- border: 1px solid #cccccc;
- border: 1px solid rgba(0, 0, 0, 0.15);
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- 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);
-}
-.selectize-dropdown .optgroup-header {
- font-size: 12px;
- line-height: 1.42857143;
-}
-.selectize-dropdown .optgroup:first-child:before {
- display: none;
-}
-.selectize-dropdown .optgroup:before {
- content: ' ';
- display: block;
- height: 1px;
- margin: 9px 0;
- overflow: hidden;
- background-color: #e5e5e5;
- margin-left: -12px;
- margin-right: -12px;
-}
-.selectize-dropdown-content {
- padding: 5px 0;
-}
-.selectize-dropdown-header {
- padding: 6px 12px;
-}
-.selectize-input {
- min-height: 34px;
-}
-.selectize-input.dropdown-active {
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.selectize-input.dropdown-active::before {
- display: none;
-}
-.selectize-input.focus {
- border-color: #66afe9;
- outline: 0;
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
-}
-.has-error .selectize-input {
- 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);
-}
-.has-error .selectize-input: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;
-}
-.selectize-control.multi .selectize-input.has-items {
- padding-left: 9px;
- padding-right: 9px;
-}
-.selectize-control.multi .selectize-input > div {
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
-}
-.form-control.selectize-control {
- padding: 0;
- height: auto;
- border: none;
- background: none;
- -webkit-box-shadow: none;
- box-shadow: none;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
-}
diff --git a/data/interfaces/default/css/selectize.min.css b/data/interfaces/default/css/selectize.min.css
deleted file mode 100644
index 0b3ba701..00000000
--- a/data/interfaces/default/css/selectize.min.css
+++ /dev/null
@@ -1 +0,0 @@
-.react-selectize{color:#000}.react-selectize.root-node{position:relative;width:300px;}.react-selectize.root-node.disabled{pointer-events:none}.react-selectize.root-node .react-selectize-control{cursor:pointer;display:-webkit-box;display:-moz-box;display:-webkit-flex;display:-ms-flexbox;display:box;display:flex;-webkit-box-align:start;-moz-box-align:start;-o-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start;position:relative;padding:2px;}.react-selectize.root-node .react-selectize-control .react-selectize-placeholder{display:block;line-height:30px;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;vertical-align:middle;white-space:nowrap;position:absolute;max-width:calc(100% - 56px)}.react-selectize.root-node .react-selectize-control .react-selectize-search-field-and-selected-values{display:-webkit-box;display:-moz-box;display:-webkit-flex;display:-ms-flexbox;display:box;display:flex;min-height:30px;-webkit-box-flex:1;-moz-box-flex:1;-o-box-flex:1;-ms-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-box-lines:multiple;-moz-box-lines:multiple;-o-box-lines:multiple;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}.react-selectize.root-node .react-selectize-control .react-selectize-search-field-and-selected-values .resizable-input{background:none;border:none;outline:none;font-size:1em;margin:2px;padding:4px 0;vertical-align:middle;width:0}.react-selectize.root-node .react-selectize-control .react-selectize-search-field-and-selected-values .value-wrapper{display:-webkit-box;display:-moz-box;display:-webkit-flex;display:-ms-flexbox;display:box;display:flex;-webkit-box-align:center;-moz-box-align:center;-o-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.react-selectize.root-node .react-selectize-control .react-selectize-reset-button-container,.react-selectize.root-node .react-selectize-control .react-selectize-toggle-button-container{-webkit-box-flex:0;-moz-box-flex:0;-o-box-flex:0;-ms-box-flex:0;box-flex:0;-webkit-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;flex-shrink:0;cursor:pointer;display:-webkit-box;display:-moz-box;display:-webkit-flex;display:-ms-flexbox;display:box;display:flex;-webkit-box-align:center;-moz-box-align:center;-o-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-moz-box-pack:center;-o-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;height:30px}.react-selectize.root-node .react-selectize-control .react-selectize-reset-button-container{width:16px}.react-selectize.root-node .react-selectize-control .react-selectize-toggle-button-container{width:32px}.react-selectize.root-node .react-selectize-control .react-selectize-reset-button-container:hover .react-selectize-reset-button path{stroke:#c0392b}.react-selectize.root-node .react-selectize-control .react-selectize-reset-button path{-webkit-transition:stroke 0.5s 0s ease;-moz-transition:stroke 0.5s 0s ease;-o-transition:stroke 0.5s 0s ease;-ms-transition:stroke 0.5s 0s ease;transition:stroke 0.5s 0s ease;stroke:#999;stroke-linecap:square;stroke-linejoin:mitter}.react-selectize.root-node .react-selectize-control .react-selectize-toggle-button path{fill:#999}.react-selectize.dropdown-menu-wrapper{position:absolute;}.react-selectize.dropdown-menu-wrapper.tethered{min-width:300px}.react-selectize.dropdown-menu-wrapper:not(.tethered){width:100%}.react-selectize.dropdown-menu{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;overflow:auto;position:absolute;max-height:200px;z-index:10;}.react-selectize.dropdown-menu.tethered{min-width:300px}.react-selectize.dropdown-menu:not(.tethered){width:100%}.react-selectize.dropdown-menu .groups.as-columns{display:-webkit-box;display:-moz-box;display:-webkit-flex;display:-ms-flexbox;display:box;display:flex;}.react-selectize.dropdown-menu .groups.as-columns > div{-webkit-box-flex:1;-moz-box-flex:1;-o-box-flex:1;box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.react-selectize.dropdown-menu .option-wrapper{cursor:pointer;outline:none}.multi-select.react-selectize.root-node .simple-value{display:inline-block;margin:2px;vertical-align:middle;}.multi-select.react-selectize.root-node .simple-value span{display:inline-block;padding:2px 5px 4px;vertical-align:center}.simple-select.react-selectize.root-node .simple-value{margin:2px;}.simple-select.react-selectize.root-node .simple-value span{display:inline-block;vertical-align:center}.react-selectize.default{font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.react-selectize.default.root-node .react-selectize-control{background-color:#fff;border:1px solid;border-color:#d9d9d9 #ccc #b3b3b3;-webkit-border-radius:4px;border-radius:4px;font-size:1em;}.react-selectize.default.root-node .react-selectize-control .react-selectize-placeholder{color:#aaa;text-indent:8px}.react-selectize.default.root-node .react-selectize-control .react-selectize-search-field-and-selected-values{padding-left:5px}.react-selectize.default.root-node.open.flipped .react-selectize-control{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-top-left-radius:0;border-top-right-radius:0}.react-selectize.default.root-node.open:not(.flipped) .react-selectize-control{border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:4px;border-top-right-radius:4px}.react-selectize.dropdown-menu-wrapper.default{overflow:hidden;}.react-selectize.dropdown-menu-wrapper.default .dropdown-menu.custom-enter-active,.react-selectize.dropdown-menu-wrapper.default .dropdown-menu.custom-leave-active{-webkit-transition:-webkit-transform 0.2s 0s ease;-moz-transition:-moz-transform 0.2s 0s ease;-o-transition:-o-transform 0.2s 0s ease;-ms-transition:-ms-transform 0.2s 0s ease;transition:transform 0.2s 0s ease}.react-selectize.dropdown-menu-wrapper.default .dropdown-menu.flipped.custom-enter{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-o-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%)}.react-selectize.dropdown-menu-wrapper.default .dropdown-menu.flipped.custom-enter-active{-webkit-transform:translateY(0%);-moz-transform:translateY(0%);-o-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%)}.react-selectize.dropdown-menu-wrapper.default .dropdown-menu.flipped.custom-leave{-webkit-transform:translateY(0%);-moz-transform:translateY(0%);-o-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%)}.react-selectize.dropdown-menu-wrapper.default .dropdown-menu.flipped.custom-leave-active{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-o-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%)}.react-selectize.dropdown-menu-wrapper.default .dropdown-menu:not(.flipped).custom-enter{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-o-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.react-selectize.dropdown-menu-wrapper.default .dropdown-menu:not(.flipped).custom-enter-active{-webkit-transform:translateY(0%);-moz-transform:translateY(0%);-o-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%)}.react-selectize.dropdown-menu-wrapper.default .dropdown-menu:not(.flipped).custom-leave{-webkit-transform:translateY(0%);-moz-transform:translateY(0%);-o-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%)}.react-selectize.dropdown-menu-wrapper.default .dropdown-menu:not(.flipped).custom-leave-active{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-o-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.react-selectize.dropdown-menu.default{background:#fff;border:1px solid #ccc;margin-top:-1px;}.react-selectize.dropdown-menu.default.flipped{border-top-left-radius:4px;border-top-right-radius:4px}.react-selectize.dropdown-menu.default:not(.flipped){border-color:#b3b3b3 #ccc #d9d9d9;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.react-selectize.dropdown-menu.default .no-results-found{color:#aaa !important;font-style:oblique;padding:8px 10px}.react-selectize.dropdown-menu.default .simple-group-title{background-color:#fafafa;padding:8px 8px}.react-selectize.dropdown-menu.default .option-wrapper.highlight{background:#f2f9fc;color:#333}.react-selectize.dropdown-menu.default .option-wrapper .simple-option{color:#666;cursor:pointer;padding:8px 10px;}.react-selectize.dropdown-menu.default .option-wrapper .simple-option.not-selectable{background-color:#f8f8f8;color:#999;cursor:default;font-style:oblique;text-shadow:0 1px 0 #fff}.multi-select.react-selectize.default.root-node .simple-value{background:#f2f9fc;border:1px solid #c9e6f2;-webkit-border-radius:2px;border-radius:2px;color:#08c}.simple-select.react-selectize.default.root-node.open .react-selectize-control{background-color:#fff}.simple-select.react-selectize.default.root-node:not(.open) .react-selectize-control{background-color:#f9f9f9;background-image:-webkit-linear-gradient(top, #fefefe, #f2f2f2);background-image:-moz-linear-gradient(top, #fefefe, #f2f2f2);background-image:-o-linear-gradient(top, #fefefe, #f2f2f2);background-image:-ms-linear-gradient(top, #fefefe, #f2f2f2);background-image:linear-gradient(to bottom, #fefefe, #f2f2f2)}.react-selectize.bootstrap3{font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.react-selectize.bootstrap3.root-node.open .react-selectize-control{background-color:#fff;border:1px solid #66afe9;-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)}.react-selectize.bootstrap3.root-node .react-selectize-control{border:1px solid;border-color:#d9d9d9 #ccc #b3b3b3;-webkit-border-radius:4px;border-radius:4px;font-size:1em;}.react-selectize.bootstrap3.root-node .react-selectize-control .react-selectize-placeholder{color:#aaa;text-indent:8px}.react-selectize.bootstrap3.root-node .react-selectize-control .react-selectize-search-field-and-selected-values{padding-left:5px}.react-selectize.bootstrap3.dropdown-menu-wrapper.flipped{margin-bottom:5px}.react-selectize.bootstrap3.dropdown-menu-wrapper:not(.flipped){margin-top:5px}.react-selectize.bootstrap3.dropdown-menu-wrapper .dropdown-menu.custom-enter-active,.react-selectize.bootstrap3.dropdown-menu-wrapper .dropdown-menu.custom-leave-active{-webkit-transition:opacity 0.2s 0s ease;-moz-transition:opacity 0.2s 0s ease;-o-transition:opacity 0.2s 0s ease;-ms-transition:opacity 0.2s 0s ease;transition:opacity 0.2s 0s ease}.react-selectize.bootstrap3.dropdown-menu-wrapper .dropdown-menu.custom-enter{opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0)}.react-selectize.bootstrap3.dropdown-menu-wrapper .dropdown-menu.custom-enter-active{opacity:1;-ms-filter:none;filter:none}.react-selectize.bootstrap3.dropdown-menu-wrapper .dropdown-menu.custom-leave{opacity:1;-ms-filter:none;filter:none}.react-selectize.bootstrap3.dropdown-menu-wrapper .dropdown-menu.custom-leave-active{opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0)}.react-selectize.bootstrap3.dropdown-menu{background:#fff;border:1px solid #ccc;-webkit-border-radius:4px;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);}.react-selectize.bootstrap3.dropdown-menu.flipped{margin-bottom:5px}.react-selectize.bootstrap3.dropdown-menu:not(.flipped){margin-top:5px}.react-selectize.bootstrap3.dropdown-menu .no-results-found{color:#aaa !important;font-style:oblique;padding:8px 10px}.react-selectize.bootstrap3.dropdown-menu .groups:not(.as-columns) > div:not(:first-child){border-top:1px solid #e5e5e5;margin:12px 0 0 0}.react-selectize.bootstrap3.dropdown-menu .simple-group-title{background-color:#fff;color:#999;padding:8px 8px;text-shadow:0 1px 0 rgba(0,0,0,0.05)}.react-selectize.bootstrap3.dropdown-menu .option-wrapper.highlight{background:#428bca;}.react-selectize.bootstrap3.dropdown-menu .option-wrapper.highlight .simple-option{color:#fff}.react-selectize.bootstrap3.dropdown-menu .option-wrapper .simple-option{color:#333;cursor:pointer;padding:8px 10px;}.react-selectize.bootstrap3.dropdown-menu .option-wrapper .simple-option.not-selectable{background-color:#f8f8f8;color:#999;cursor:default;font-style:oblique;text-shadow:0 1px 0 #fff}.multi-select.react-selectize.bootstrap3.root-node .simple-value{background:#efefef;-webkit-border-radius:4px;border-radius:4px;color:#333}.react-selectize.material{font-family:Roboto,sans-serif}.react-selectize.material.root-node.open .react-selectize-control:after{-webkit-transform:scaleX(1);-moz-transform:scaleX(1);-o-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.react-selectize.material.root-node .react-selectize-control{border-bottom:1px solid rgba(0,0,0,0.3);}.react-selectize.material.root-node .react-selectize-control:after{background-color:#00bcd4;content:"";-webkit-transform:scaleX(0);-moz-transform:scaleX(0);-o-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transition:-webkit-transform 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;-moz-transition:-moz-transform 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;-o-transition:-o-transform 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;-ms-transition:-ms-transform 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;transition:transform 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;position:absolute;left:0;bottom:-1px;width:100%;height:2px}.react-selectize.material.root-node .react-selectize-control .react-selectize-placeholder{color:rgba(0,0,0,0.3);text-indent:4px}.react-selectize.material.dropdown-menu-wrapper.flipped{margin-bottom:8px;}.react-selectize.material.dropdown-menu-wrapper.flipped .dropdown-menu{-webkit-transform-origin:100% 100%;-moz-transform-origin:100% 100%;-o-transform-origin:100% 100%;-ms-transform-origin:100% 100%;transform-origin:100% 100%}.react-selectize.material.dropdown-menu-wrapper:not(.flipped){margin-top:8px;}.react-selectize.material.dropdown-menu-wrapper:not(.flipped) .dropdown-menu{-webkit-transform-origin:0% 0%;-moz-transform-origin:0% 0%;-o-transform-origin:0% 0%;-ms-transform-origin:0% 0%;transform-origin:0% 0%}.react-selectize.material.dropdown-menu-wrapper .dropdown-menu.custom-enter-active,.react-selectize.material.dropdown-menu-wrapper .dropdown-menu.custom-leave-active{-webkit-transition:-webkit-transform 250ms cubic-bezier(0.23, 1, 0.32, 1) 0ms, opacity 250ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;-moz-transition:-moz-transform 250ms cubic-bezier(0.23, 1, 0.32, 1) 0ms, opacity 250ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;-o-transition:-o-transform 250ms cubic-bezier(0.23, 1, 0.32, 1) 0ms, opacity 250ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;-ms-transition:-ms-transform 250ms cubic-bezier(0.23, 1, 0.32, 1) 0ms, opacity 250ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;transition:transform 250ms cubic-bezier(0.23, 1, 0.32, 1) 0ms, opacity 250ms cubic-bezier(0.23, 1, 0.32, 1) 0ms}.react-selectize.material.dropdown-menu-wrapper .dropdown-menu.custom-enter{opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-o-transform:scale(0,0);-ms-transform:scale(0,0);transform:scale(0,0)}.react-selectize.material.dropdown-menu-wrapper .dropdown-menu.custom-enter-active{opacity:1;-ms-filter:none;filter:none;-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-o-transform:scale(1,1);-ms-transform:scale(1,1);transform:scale(1,1)}.react-selectize.material.dropdown-menu-wrapper .dropdown-menu.custom-leave{opacity:1;-ms-filter:none;filter:none;-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-o-transform:scale(1,1);-ms-transform:scale(1,1);transform:scale(1,1)}.react-selectize.material.dropdown-menu-wrapper .dropdown-menu.custom-leave-active{opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0)}.react-selectize.material.dropdown-menu{background-color:#fff;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:rgba(0,0,0,0.118) 0 1px 6px,rgba(0,0,0,0.118) 0 1px 4px;box-shadow:rgba(0,0,0,0.118) 0 1px 6px,rgba(0,0,0,0.118) 0 1px 4px;max-height:250px;padding:8px 0;}.react-selectize.material.dropdown-menu.flipped{margin-bottom:8px}.react-selectize.material.dropdown-menu:not(.flipped){margin-top:8px}.react-selectize.material.dropdown-menu .no-results-found{font-style:oblique;font-size:16px;height:32px;padding:0 16px;display:-webkit-box;display:-moz-box;display:-webkit-flex;display:-ms-flexbox;display:box;display:flex;-webkit-box-align:center;-moz-box-align:center;-o-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.react-selectize.material.dropdown-menu .groups:not(.as-columns) > div:not(:last-child){border-bottom:1px solid #e5e5e5}.react-selectize.material.dropdown-menu .simple-group-title{color:#8f8f8f;display:-webkit-box;display:-moz-box;display:-webkit-flex;display:-ms-flexbox;display:box;display:flex;-webkit-box-align:center;-moz-box-align:center;-o-box-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center;font-size:14px;height:48px;padding:0 10px}.react-selectize.material.dropdown-menu .option-wrapper.highlight{background-color:rgba(0,0,0,0.098)}.react-selectize.material.dropdown-menu .option-wrapper .simple-option{color:rgba(0,0,0,0.875);cursor:pointer;display:-webkit-box;display:-moz-box;display:-webkit-flex;display:-ms-flexbox;display:box;display:flex;-webkit-box-orient:vertical;-moz-box-orient:vertical;-o-box-orient:vertical;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-moz-box-align:start;-o-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start;-webkit-box-pack:center;-moz-box-pack:center;-o-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;font-size:16px;height:48px;padding:0 16px;}.react-selectize.material.dropdown-menu .option-wrapper .simple-option.not-selectable{background-color:#f8f8f8;color:#999;cursor:default;font-style:oblique;text-shadow:0 1px 0 #fff}.multi-select.react-selectize.material.root-node .simple-value span{padding:0;}.multi-select.react-selectize.material.root-node .simple-value span:after{content:","}.simple-select.react-selectize.material.root-node .simple-value{margin:4px 3px 3px 2px}
\ No newline at end of file
diff --git a/data/interfaces/default/css/tautulli-dataTables.css b/data/interfaces/default/css/tautulli-dataTables.css
deleted file mode 100644
index 248a7de8..00000000
--- a/data/interfaces/default/css/tautulli-dataTables.css
+++ /dev/null
@@ -1,419 +0,0 @@
-/*
- * File: demo_table.css
- * CVS: $Id$
- * Description: CSS descriptions for DataTables demo pages
- * Author: Allan Jardine
- * Created: Tue May 12 06:47:22 BST 2009
- * Modified: $Date$ by $Author$
- * Language: CSS
- * Project: DataTables
- *
- * Copyright 2009 Allan Jardine. All Rights Reserved.
- *
- * ***************************************************************************
- * DESCRIPTION
- *
- * The styles given here are suitable for the demos that are used with the standard DataTables
- * distribution (see www.datatables.net). You will most likely wish to modify these styles to
- * meet the layout requirements of your site.
- *
- * Common issues:
- * 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
- * no conflict between the two pagination types. If you want to use full_numbers pagination
- * ensure that you either have "example_alt_pagination" as a body class name, or better yet,
- * modify that selector.
- * Note that the path used for Images is relative. All images are by default located in
- * ../images/ - relative to this CSS file.
- */
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables display
- */
-table.display {
- margin: 0 auto;
- clear: both;
- width: 100%;
- font-size: 12px;
- line-height: 25px;
- /* Note Firefox 3.5 and before have a bug with border-collapse
- * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
- * border-spacing: 0; is one possible option. Conditional-css.com is
- * useful for this kind of thing
- *
- * Further note IE 6/7 has problems when calculating widths with border width.
- * It subtracts one px relative to the other browsers from the first column, and
- * adds one to the end...
- *
- * If you want that effect I'd suggest setting a border-top/left on th/td's and
- * then filling in the gaps with other borders.
- */
-}
-table.display thead th {
- white-space:nowrap;
- padding: 0px 0px 0px 5px;
- cursor: pointer;
- color: #999;
- background-color: #212121;
- font-size: 11px;
-}
-table.display thead th i {
- margin-top: -1px;
-}
-table.display thead .sorting,
-table.display thead .sorting_asc,
-table.display thead .sorting_desc {
- cursor: pointer;
- *cursor: hand;
- height: 35px;
-}
-table.display thead .sorting,
-table.display thead .sorting_asc,
-table.display thead .sorting_desc,
-table.display thead .sorting_asc_disabled,
-table.display thead .sorting_desc_disabled {
- background-repeat: no-repeat;
- background-position: left;
-}
-table.display tfoot th {
- padding: 3px 18px 3px 10px;
- border-top: 1px solid black;
- font-weight: bold;
-}
-table.display tr.heading2 td {
- border-bottom: 1px solid #aaa;
-}
-table.display td {
- padding: 5px 0 5px 5px;
-}
-table.display td.title {
- padding: 5px;
- white-space: normal;
- min-width: 400px;
-}
-table.display td.center {
- text-align: center;
-}
-table.display tr:hover {
- background-color: rgba(255,255,255,0.075);
-}
-table.display tr:hover a {
- text-decoration:none;
-}
-table.display td:hover a {
- color: #E5A00D;
-}
-table.display thead tr:hover {
- background-color: #212121;
-}
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * DataTables row classes
- */
-table.display tr.odd.gradeA {
- background-color: #ddffdd;
-}
-table.display tr.even.gradeA {
- background-color: #eeffee;
-}
-table.display tr.odd.gradeC {
- background-color: #ddddff;
-}
-table.display tr.even.gradeC {
- background-color: #eeeeff;
-}
-table.display tr.odd.gradeX {
- background-color: #ffdddd;
-}
-table.display tr.even.gradeX {
- background-color: #ffeeee;
-}
-table.display tr.odd.gradeU {
- background-color: #ddd;
-}
-table.display tr.even.gradeU {
- background-color: #eee;
-}
-tr.odd {
- border-top: 0px solid #343434;
- border-bottom: 0px solid #343434;
- background-color: rgba(255,255,255,0.010);
-}
-tr.even {
- border-top: 0px solid #343434;
- border-bottom: 0px solid #343434;
- background-color: rgba(255,255,255,0.035);
-}
-
-
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * Misc
- */
-.dataTables_scroll {
- clear: both;
-}
-.dataTables_scrollBody {
- *margin-top: -1px;
- -webkit-overflow-scrolling: touch;
-}
-tfoot input {
- margin: 0.5em 0;
- width: 100%;
- color: #444;
-}
-tfoot input.search_init {
- color: #999;
-}
-td.group {
- background-color: #d1cfd0;
- border-bottom: 2px solid #A19B9E;
- border-top: 2px solid #A19B9E;
-}
-td.details {
- background-color: #d1cfd0;
- border: 2px solid #A19B9E;
-}
-table.display tr.even.row_selected td {
- background-color: #B0BED9;
-}
-table.display tr.odd.row_selected td {
- background-color: #9FAFD1;
-}
-.dataTables_empty {
- text-align: center;
-}
-/* For the Conditional-CSS grading rows */
-/*
- Colour calculations (based off the main row colours)
- Level 1:
- dd > c4
- ee > d5
- Level 2:
- dd > d1
- ee > e2
- */
-tr.odd.gradeA td.sorting_1 {
- background-color: #c4ffc4;
-}
-tr.odd.gradeA td.sorting_2 {
- background-color: #d1ffd1;
-}
-tr.odd.gradeA td.sorting_3 {
- background-color: #d1ffd1;
-}
-tr.even.gradeA td.sorting_1 {
- background-color: #d5ffd5;
-}
-tr.even.gradeA td.sorting_2 {
- background-color: #e2ffe2;
-}
-tr.even.gradeA td.sorting_3 {
- background-color: #e2ffe2;
-}
-tr.odd.gradeC td.sorting_1 {
- background-color: #c4c4ff;
-}
-tr.odd.gradeC td.sorting_2 {
- background-color: #d1d1ff;
-}
-tr.odd.gradeC td.sorting_3 {
- background-color: #d1d1ff;
-}
-tr.even.gradeC td.sorting_1 {
- background-color: #d5d5ff;
-}
-tr.even.gradeC td.sorting_2 {
- background-color: #e2e2ff;
-}
-tr.even.gradeC td.sorting_3 {
- background-color: #e2e2ff;
-}
-tr.odd.gradeX td.sorting_1 {
- background-color: #ffc4c4;
-}
-tr.odd.gradeX td.sorting_2 {
- background-color: #ffd1d1;
-}
-tr.odd.gradeX td.sorting_3 {
- background-color: #ffd1d1;
-}
-tr.even.gradeX td.sorting_1 {
- background-color: #ffd5d5;
-}
-tr.even.gradeX td.sorting_2 {
- background-color: #ffe2e2;
-}
-tr.even.gradeX td.sorting_3 {
- background-color: #ffe2e2;
-}
-tr.odd.gradeU td.sorting_1 {
- background-color: #c4c4c4;
-}
-tr.odd.gradeU td.sorting_2 {
- background-color: #d1d1d1;
-}
-tr.odd.gradeU td.sorting_3 {
- background-color: #d1d1d1;
-}
-tr.even.gradeU td.sorting_1 {
- background-color: #d5d5d5;
-}
-tr.even.gradeU td.sorting_2 {
- background-color: #e2e2e2;
-}
-tr.even.gradeU td.sorting_3 {
- background-color: #e2e2e2;
-}
-
-
-/*
- * Row highlighting example
- */
-.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
- background-color: #ECFFB3;
-}
-.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
- background-color: #E6FF99;
-}
-.ex_highlight_row #example tr.even:hover {
- background-color: #ECFFB3;
-}
-.ex_highlight_row #example tr.even:hover td.sorting_1 {
- background-color: #DDFF75;
-}
-.ex_highlight_row #example tr.even:hover td.sorting_2 {
- background-color: #E7FF9E;
-}
-.ex_highlight_row #example tr.even:hover td.sorting_3 {
- background-color: #E2FF89;
-}
-.ex_highlight_row #example tr.odd:hover {
- background-color: #E6FF99;
-}
-.ex_highlight_row #example tr.odd:hover td.sorting_1 {
- background-color: #D6FF5C;
-}
-.ex_highlight_row #example tr.odd:hover td.sorting_2 {
- background-color: #E0FF84;
-}
-.ex_highlight_row #example tr.odd:hover td.sorting_3 {
- background-color: #DBFF70;
-}
-
-
-/*
- * KeyTable
- */
-table.KeyTable td {
- border: 3px solid transparent;
-}
-table.KeyTable td.focus {
- border: 3px solid #3366FF;
-}
-table.display tr.gradeA {
- background-color: #eeffee;
-}
-table.display tr.gradeC {
- background-color: #ddddff;
-}
-table.display tr.gradeX {
- background-color: #ffdddd;
-}
-table.display tr.gradeU {
- background-color: #ddd;
-}
-div.box {
- height: 100px;
- padding: 10px;
- overflow: auto;
- border: 1px solid #8080FF;
- background-color: #E5E5FF;
-}
-td.no-wrap, th.no-wrap {
- white-space:nowrap;
-}
-
-
-
-/*
- * Custom styles
- */
-
-table.display,
-table.display tr.shown + tr table[id^='history_child'],
-table.display tr.shown + tr table[id^='media_info_child'],
-table.display tr.shown + tr table[id^='media_info_child'] tr.shown + tr table[id^='media_info_child'] {
- table-layout: auto;
-}
-table.display tr.shown + tr div.slider {
- display: none;
-}
-table.display tr.shown + tr > td {
- padding-top: 0;
- padding-bottom: 0;
- padding-left: 0;
-}
-table.display tr.shown + tr:hover {
- background-color: rgba(255,255,255,0);
-}
-table.display tr.shown + tr:hover a,
-table.display tr.shown + tr td:hover a,
-table.display tr.shown + tr td:hover a .fa,
-table.display tr.shown + tr .pagination > .active > a,
-table.display tr.shown + tr .pagination > .active > a:hover {
- color: #fff;
-}
-table.display tr.shown + tr table[id^='history_child'] td:hover a,
-table.display tr.shown + tr table[id^='history_child'] td:hover a .fa,
-table.display tr.shown + tr table[id^='media_info_child'] > tr > td:hover a,
-table.display tr.shown + tr table[id^='media_info_child'] tr.shown + tr table[id^='media_info_child'] td:hover a {
- color: #cc7b19;
-}
-table.display tr.shown + tr .pagination > .disabled > a,
-table.display tr.shown + tr .pagination > .disabled > a:hover {
- color: #444444;
-}
-table.display tr.shown + tr .pagination > li > a:hover {
- color: #e9a049;
-}
-table.display tr.odd td,
-table.display tr.even td {
- padding: 5px 10px !important;
-}
-table[id^='history_child'] {
- margin-top: 0;
- opacity: .6;
-}
-table[id^='media_info_child'] {
- margin-top: 0;
-}
-div[id^='history_child'] thead th,
-div[id^='media_info_child'] thead th {
- line-height: 0;
- height: 0 !important;
- overflow: hidden;
-}
-div[id^='history_child'] div.row,
-div[id^='media_info_child'] div.row {
- margin: 0;
-}
-div[id^='history_child'] div.col-sm-12,
-div[id^='media_info_child'] div.col-sm-12 {
- padding: 0;
-}
-div[id^='history_child'] div.dataTables_scrollBody,
-div[id^='media_info_child'] div.dataTables_scrollBody {
- overflow: hidden !important;
-}
-div[id^='media_info_child'] div[id^='media_info_child'] div.dataTables_scrollHead thead th {
- line-height: 25px;
- height: 35px !important;
- overflow: hidden;
-}
-.current-activity-row {
- background-color: rgba(255,255,255,.1) !important;
-}
-.current-activity-row:hover {
- background-color: rgba(255,255,255,0.125) !important;
-}
diff --git a/data/interfaces/default/css/tautulli.css b/data/interfaces/default/css/tautulli.css
deleted file mode 100644
index 514975c3..00000000
--- a/data/interfaces/default/css/tautulli.css
+++ /dev/null
@@ -1,4549 +0,0 @@
-body {
- font-family: 'Open Sans', Arial, sans-serif;
- color: #eee;
- margin-top: 50px;
- overflow: hidden;
-}
-a {
- color: #eee;
-}
-a:hover,
-a:focus {
- color: #e9a049;
- text-decoration: none;
- outline: none;
-}
-select, .react-selectize.bootstrap3.root-node .react-selectize-control {
- margin: 5px 0 5px 0;
- border: 2px solid #444;
- background: #333;
- -webkit-border-radius: 2px;
- -moz-border-radius: 2px;
- border-radius: 2px;
- color: #999;
- outline: none;
-}
-select.input-sm {
- margin: 5px 0 5px 0;
- border: 2px solid #444;
- background: #333;
- -webkit-border-radius: 2px;
- -moz-border-radius: 2px;
- border-radius: 2px;
- color: #999;
- outline: none;
-}
-select[multiple] {
- height: 125px;
- margin: 5px 0 5px 0;
- color: #eee;
- border: 0px solid #444;
- background: #555;
- padding: 2px 2px;
- background-color: #555;
- border-radius: 3px;
- transition: background-color .3s;
-}
-select[multiple]:focus {
- outline: 0;
- outline: thin dotted \9;
- color: #555;
- background-color: #eee;
- transition: background-color .3s;
-}
-select[multiple]:focus::-webkit-scrollbar-thumb {
- background-color: rgba(0,0,0,.15);
-}
-select[multiple] option {
- padding: 6px 10px;
- -webkit-border-radius: 2px;
- -moz-border-radius: 2px;
- border-radius: 2px;
-}
-select.form-control,
-div.form-control .selectize-input {
- margin: 5px 0 5px 0;
- color: #eee;
- border: 0px solid #444;
- background: #555;
- padding: 6px 12px;
- background-color: #555;
- border-radius: 3px;
- transition: background-color .3s;
-}
-select.form-control {
- height: 32px !important;
-}
-.react-selectize.root-node .react-selectize-control,
-.selectize-control.form-control .selectize-input {
- color: #eee !important;
- border: 0px solid #444 !important;
- background: #555 !important;
- padding: 1px 2px;
- transition: background-color .3s;
-}
-.selectize-control.form-control .selectize-input {
- display: flex !important;
- align-items: center;
- flex-wrap: wrap;
- margin-bottom: 4px;
- padding-left: 5px;
-}
-.selectize-control.form-control.selectize-pms-ip .selectize-input {
- padding-left: 12px !important;
- border-top-left-radius: 3px;
- border-bottom-left-radius: 3px;
- min-height: 32px !important;
- height: 32px !important;
-}
-.input-group .selectize-control.form-control.selectize-pms-ip .selectize-input > div {
- max-width: 450px;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-.wizard-input-section p.welcome-message {
- margin: 20px 0;
-}
-.wizard-input-section .selectize-control.form-control.selectize-pms-ip .selectize-input > div {
- max-width: 360px;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-#selectize-pms-ip-container .selectize-dropdown.form-control.selectize-pms-ip {
- margin-left: 15px;
-}
-.wizard-input-section .selectize-control.form-control.selectize-pms-ip .selectize-dropdown .selectize-dropdown-content {
- max-height: 150px;
-}
-.wizard-input-section .selectize-dropdown.form-control.selectize-pms-ip {
- margin-top: 0 !important;
-}
-#condition-widget .fa-plus,
-#condition-widget .fa-minus {
- cursor: pointer;
-}
-.react-selectize.root-node .react-selectize-control .react-selectize-placeholder {
- color: #eee !important;
-}
-.react-selectize.root-node .react-selectize-control .react-selectize-toggle-button path {
- fill: #eee !important;
-}
-.react-selectize.root-node .simple-value,
-.selectize-control.multi .selectize-input > div {
- background: #444 !important;
- color: #eee !important;
- padding-bottom: 2px !important;
- transition: background-color .3s;
-}
-.react-selectize.root-node .simple-value span,
-.selectize-control.multi .selectize-input > div {
- padding-bottom: 2px !important;
- padding-left: 5px !important;
-}
-.react-selectize.root-node .react-selectize-control .react-selectize-search-field-and-selected-values .value-wrapper:not(:first-child):before {
- content: "or";
- padding: 0 3px;
- text-transform: uppercase;
- font-size: 10px;
-}
-.react-selectize.root-node .react-selectize-control .react-selectize-search-field-and-selected-values .resizable-input {
- padding-top: 3px !important;
- padding-bottom: 3px !important;
-}
-select.form-control:focus,
-.react-selectize.root-node.open .react-selectize-control,
-.selectize-control.form-control .selectize-input.focus {
- outline: 0;
- outline: thin dotted \9;
- color: #555 !important;
- background-color: #eee !important;
- transition: background-color .3s;
-}
-.react-selectize.root-node.open .simple-value,
-.selectize-control.multi .selectize-input.focus > div,
-.selectize-control.multi .selectize-input > div.active {
- background: #efefef !important;
- color: #333333 !important;
- transition: background-color .3s;
-}
-.react-selectize.root-node.open .react-selectize-control .react-selectize-toggle-button path {
- fill: #999 !important;
-}
-.selectize-input > div .item-text {
- white-space: nowrap;
-}
-.selectize-input > div .item-value {
- opacity: 0.8;
- font-size: 12px;
- white-space: nowrap;
-}
-.selectize-input > div .item-text + .item-value {
- margin-left: 5px;
-}
-.selectize-input > div .item-value:before {
- content: '<';
- opacity: 0.8;
- font-size: 12px;
-}
-.selectize-input > div .item-value:after {
- content: '>';
- opacity: 0.8;
- font-size: 12px;
-}
-.selectize-dropdown .caption {
- font-size: 12px;
- display: block;
- color: #a0a0a0;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-.selectize-dropdown .select-all,
-.selectize-dropdown .remove-all {
- font-weight: bold;
-}
-.selectize-dropdown .border-all {
- pointer-events: none;
- display: block;
- height: 1px;
- margin: 9px -12px 9px -12px;
- padding: 0 !important;
- overflow: hidden;
- background-color: #e5e5e5;
-}
-.selectize-dropdown .border-all:last-child {
- display: none;
-}
-.selectize-dropdown .optgroup-header {
- font-weight: bold;
-}
-.selectize-dropdown [data-selectable].option-disabled {
- color: #aaa;
- cursor: default;
-}
-select.form-control option {
- color: #555;
- background-color: #eee;
-}
-select.btn {
- text-align: left;
-}
-img {
- -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
- box-sizing: content-box;
-}
-object {
- pointer-events: none;
-}
-.navbar {
- background: #000;
- -webkit-box-shadow: 0 0 0 3px rgba(0,0,0,.2);
- -moz-box-shadow: 0 0 0 3px rgba(0,0,0,.2);
- box-shadow: 0 0 0 3px rgba(0,0,0,.2);
-}
-.navbar-brand {
- padding: 3px 3px;
-}
-.nav > li > a {
- color: #999;
- -webkit-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- transition: all 0.3s ease;
-}
-.nav > li > a:hover,
-.nav > li > a:focus {
- text-decoration: none;
- background-color: #282828;
- color: #eee;
-}
-.nav > li.active > a,
-.nav > li.active > a:hover,
-.nav > li.active > a:focus {
- color: #f9be03;
- background-color: #282828;
-}
-.navbar-toggle {
- background-color: #282828;
-}
-.navbar-toggle:hover,
-.navbar-toggle:focus {
- background-color: #2f2f2f;
-}
-.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
- background-color: #2f2f2f;
- border-color: unset;
-}
-.dropdown-menu {
- background-color: #282828;
-}
-.dropdown-menu .divider {
- background-color: #777;
-}
-.dropdown-menu > li > a {
- color: #999;
-}
-.dropdown-menu > li > a:hover,
-.dropdown-menu > li > a:focus {
- color: #eee;
- background-color: #2f2f2f;
-}
-.dropdown-menu > .active > a,
-.dropdown-menu > .active > a:hover,
-.dropdown-menu > .active > a:focus {
- color: #eee;
- background-color: #2f2f2f;
-}
-.dropdown-menu > .disabled > a,
-.dropdown-menu > .disabled > a:hover,
-.dropdown-menu > .disabled > a:focus {
- color: #999;
-}
-.icon-bar {
- background-color: #999;
-}
-.padded-header {
- margin: 25px 0 25px 0;
-}
-.padded-header h1,h2,h3,h4,h5,h6 {
- color: #eee;
-}
-.padded-header h3 {
- font-size: 16px;
- font-weight: bold;
- text-transform: uppercase;
-}
-.padded-header h3 small {
- font-size: 13px;
- text-transform: none;
-}
-.btn {
- outline:0px !important;
-}
-.btn:not(select) {
- -webkit-appearance:none;
-}
-.btn-dark {
- color: #d7d7d7;
- background-color: #3B3B3B;
- border-color: transparent;
-}
-.btn-dark:focus,
-.btn-dark.focus {
- color: #d7d7d7;
- background-color: #3B3B3B;
-}
-.btn-dark:hover {
- color: #eee;
- background-color: #333;
- border-color: #444;
-}
-.btn-dark:active,
-.btn-dark.active,
-.open > .dropdown-toggle.btn-dark {
- color: #eee;
- background-color: #333;
- border-color: #444;
-}
-.btn-dark:active:hover,
-.btn-dark.active:hover,
-.open > .dropdown-toggle.btn-dark:hover,
-.btn-dark:active:focus,
-.btn-dark.active:focus,
-.open > .dropdown-toggle.btn-dark:focus,
-.btn-dark:active.focus,
-.btn-dark.active.focus,
-.open > .dropdown-toggle.btn-dark.focus {
- color: #eee;
- background-color: #333;
-}
-.btn-dark:active,
-.btn-dark.active,
-.open > .dropdown-toggle.btn-dark {
- background-image: none;
-}
-.btn-dark.disabled,
-.btn-dark[disabled],
-fieldset[disabled] .btn-dark,
-.btn-dark.disabled:hover,
-.btn-dark[disabled]:hover,
-fieldset[disabled] .btn-dark:hover,
-.btn-dark.disabled:focus,
-.btn-dark[disabled]:focus,
-fieldset[disabled] .btn-dark:focus,
-.btn-dark.disabled.focus,
-.btn-dark[disabled].focus,
-fieldset[disabled] .btn-dark.focus,
-.btn-dark.disabled:active,
-.btn-dark[disabled]:active,
-fieldset[disabled] .btn-dark:active,
-.btn-dark.disabled.active,
-.btn-dark[disabled].active,
-fieldset[disabled] .btn-dark.active {
- background-color: #333;
- color: #aaa;
-}
-.btn-dark.inactive:hover {
- color: #d7d7d7;
- background-color: #3B3B3B;
- border-color: transparent;
- cursor: default;
-}
-.btn-dark .badge {
- color: #e5e5e5;
- background-color: #3B3B3B;
-}
-.btn-bright {
- color: #eee;
- background-color: #cc7b19;
- box-shadow: inset 0 1px 0 #e7993b;
-}
-.btn-bright:focus,
-.btn-bright.focus {
- color: #eee;
- background-color: #eb8600;
-}
-.btn-bright:hover {
- color: #eee;
- background-color: #e59029;
- box-shadow: inset 0 1px 0 #ebac60;
-}
-.btn-bright:active,
-.btn-bright.active,
-.open > .dropdown-toggle.btn-bright {
- color: #eee;
- background-color: #cc7b19;
- box-shadow: inset 0 1px 0 #e7993b;
-}
-.btn-bright:active:hover,
-.btn-bright.active:hover,
-.open > .dropdown-toggle.btn-bright:hover,
-.btn-bright:active:focus,
-.btn-bright.active:focus,
-.open > .dropdown-toggle.btn-bright:focus,
-.btn-bright:active.focus,
-.btn-bright.active.focus,
-.open > .dropdown-toggle.btn-bright.focus {
- color: #eee;
- background-color: #cc7b19;
- box-shadow: inset 0 1px 0 #e7993b;
-}
-.btn-bright:active,
-.btn-bright.active,
-.open > .dropdown-toggle.btn-bright {
- background-image: none;
-}
-.btn-bright.disabled,
-.btn-bright[disabled],
-fieldset[disabled] .btn-bright,
-.btn-bright.disabled:hover,
-.btn-bright[disabled]:hover,
-fieldset[disabled] .btn-bright:hover,
-.btn-bright.disabled:focus,
-.btn-bright[disabled]:focus,
-fieldset[disabled] .btn-bright:focus,
-.btn-bright.disabled.focus,
-.btn-bright[disabled].focus,
-fieldset[disabled] .btn-bright.focus,
-.btn-bright.disabled:active,
-.btn-bright[disabled]:active,
-fieldset[disabled] .btn-bright:active,
-.btn-bright.disabled.active,
-.btn-bright[disabled].active,
-fieldset[disabled] .btn-bright.active {
- background-color: #cc7b19;
- border-color: #b56d16;
-}
-.btn-bright .badge {
- color: #eee;
- background-color: #cc7b19;
- box-shadow: inset 0 1px 0 #e7993b;
-}
-.btn-danger.btn-edit {
- color: #d7d7d7;
- background-color: #3B3B3B;
- border-color: transparent;
- float: right;
-}
-.btn-danger.btn-edit:hover {
- color: #eee;
- background-color: #c9302c;
- border-color: #ac2925;
-}
-.btn-danger.btn-edit.active {
- color: #eee;
- background-color: #c9302c;
- border-color: #ac2925;
-}
-.btn-danger.btn-edit.active:hover {
- color: #eee;
- background-color: #ac2925;
- border-color: #761c19;
-}
-.btn-group select {
- margin-top: 0;
- height: 34px;
-}
-.btn-group label {
- margin-bottom: 0;
-}
-.input-group-addon-form {
- display: inline-block;
- line-height: 1.42857143;
- color: #e5e5e5;
- background-color: #3B3B3B;
- border: 1px solid transparent;
- border-top-right-radius: 3px !important;
- border-bottom-right-radius: 3px !important;
- height: 32px;
- width: 100%;
- margin-top: 5px;
-}
-.alert-edit {
- display: none;
- float: left;
- margin-bottom: 0;
- /*margin-right: 5px;*/
- padding: 6px 15px;
-}
-.modal-header {
- padding: 15px 20px;
- background-color: #323232;
- border-radius: 3px 3px 0 0;
- border-bottom: 1px solid #1C1C1C;
-}
-.modal-body {
- position: relative;
- overflow-y: auto;
- max-height: 600px;
- padding: 15px;
- background-color: #222222;
-}
-.modal-body table {
- color: #eee;
-}
-.modal-body li {
- margin-top: 7px;
- margin-left: 4px;
- color: #aaa;
-}
-.modal-body li strong {
- color: #eee;
-}
-.modal-body i {
- color: #E5A00D;
-}
-.modal-body i.fa {
- color: #eee;
-}
-.modal-body td:hover a .fa,
-.modal-body a:focus i.fa {
- color: #f9aa03;
-}
-.modal-body strong,
-.modal-body strong i.fa {
- color: #E5A00D;
-}
-.modal-footer {
- padding: 15px 20px;
- margin-top: 0;
- background-color: #323232;
- border-radius: 0 0 3px 3px;
- border-top: 1px solid #1C1C1C;
-}
-textarea,
-input[type="text"],
-input[type="password"],
-input[type="datetime"],
-input[type="datetime-local"],
-input[type="date"],
-input[type="month"],
-input[type="time"],
-input[type="week"],
-input[type="number"],
-input[type="email"],
-input[type="url"],
-input[type="search"],
-input[type="tel"],
-input[type="color"],
-.uneditable-input {
- margin: 5px 0 5px 0;
- color: #eee;
- border: 0px solid #444;
- background: #555;
- height: 32px;
- padding: 6px 12px;
- background-color: #555;
- border-radius: 3px;
- transition: background-color .3s;
-}
-textarea.form-control {
- height: initial;
- margin: 5px 0 5px 0;
- color: #eee;
- border: 0px solid #444;
- background: #555;
- padding: 6px 12px;
- background-color: #555;
- border-radius: 3px;
- transition: background-color .3s;
- resize: none;
-}
-textarea.form-control:focus {
- outline: 0;
- color: #555;
- background-color: #eee;
- transition: background-color .3s;
-}
-.pagination > li > a,
-.pagination > li > span {
- position: relative;
- float: left;
- padding: 6px 12px;
- margin-left: -1px;
- line-height: 1.42857143;
- color: #eee;
- text-decoration: none;
- background-color: #262626;
- border: 1px solid #444444;
-}
-.pagination > li > a:hover,
-.pagination > li > span:hover,
-.pagination > li > a:focus,
-.pagination > li > span:focus {
- background-color: #cc7b19;
- border: 1px solid #444444;
-}
-.pagination > .active > a,
-.pagination > .active > span,
-.pagination > .active > a:hover,
-.pagination > .active > span:hover,
-.pagination > .active > a:focus,
-.pagination > .active > span:focus {
- z-index: 2;
- color: #eee;
- cursor: default;
- background-color: #cc7b19;
- border-color: #444444;
-}
-.pagination > .disabled > span,
-.pagination > .disabled > span:hover,
-.pagination > .disabled > span:focus,
-.pagination > .disabled > a,
-.pagination > .disabled > a:hover,
-.pagination > .disabled > a:focus {
- color: #444444;
- cursor: not-allowed;
- background-color: #262626;
- border-color: #444444;
-}
-.nav-pills > li.active > a,
-.nav-pills > li.active > a:hover,
-.nav-pills > li.active > a:focus {
- color: #eee;
- background-color: #cc7b19;
-}
-.nav-pills > li > a {
- border-radius: 3px;
- padding: 5px 10px;
- margin: 0 0 20px 0;
-}
-.btn-form {
- padding: 4px 12px;
- margin: 5px 0 5px 0;
- font-size: 14px;
- font-weight: normal;
- height: 32px;
- line-height: 1.42857143;
- text-align: center;
- white-space: nowrap;
- vertical-align: middle;
- -ms-touch-action: manipulation;
- touch-action: manipulation;
- cursor: pointer;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- background-image: none;
- background-color: #3B3B3B;
- color: #e5e5e5;
- border: 1px solid transparent;
- border-radius: 3px;
- outline:0px !important;
- -webkit-appearance:none;
-}
-.btn-form:hover {
- color: #eee;
- background-color: #333;
-}
-.btn-form:focus {
- color: #eee;
-}
-.btn-filter.active,
-.btn-filter.active.focus {
- background-color: #b7800a !important;
-}
-.btn-filter.active:hover {
- background-color: #896007 !important;
-}
-.form-control-feedback {
- color: #E5A00D;
- margin: 5px 40px 5px 0;
-}
-.form-control[disabled],
-.form-control[readonly],
-fieldset[disabled] .form-control {
- background-color: #555;
-}
-.form-control[readonly]:focus {
- background-color: #eee;
-}
-.poster {
- position: relative;
- height: 225px;
-}
-.poster-face {
- background-position: center;
- background-size: cover;
- height: 225px;
- width: 150px;
- position: relative;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- overflow: hidden;
-}
-.cover-face {
- background-position: center;
- background-size: cover;
- height: 150px;
- width: 150px;
- position: absolute;
- bottom: 0;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
-}
-.users-poster-face {
- float: left;
- background-size: cover;
- background-position: center;
- height: 40px;
- width: 40px;
- -webkit-border-radius: 50%;
- -moz-border-radius: 50%;
- border-radius: 50%;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
-}
-.libraries-poster-face {
- overflow: hidden;
- float: left;
- background-size: cover;
- background-position: center;
- height: 40px;
- width: 40px;
- /*-webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);*/
-}
-a .poster-face:hover,
-a .cover-face:hover,
-a .users-poster-face:hover {
- -webkit-box-shadow: inset 0 0 0 2px #e9a049;
- -moz-box-shadow: inset 0 0 0 2px #e9a049;
- box-shadow: inset 0 0 0 2px #e9a049;
-}
-.users-name {
- position: relative;
-}
-#dashboard-checking-activity,
-#dashboard-no-activity,
-#dashboard-checking-recently-added,
-#dashboard-no-recently-added {
- margin-bottom: 20px;
-}
-.dashboard-activity-instance {
- float: left;
- position: relative;
- height: 290px;
- max-width: 500px;
- margin-left: 25px;
- margin-bottom: 25px;
-}
-.dashboard-activity-container {
- height: 240px;
- width: 100%;
- position: relative;
- margin-bottom: 5px;
- padding: 0px;
- -webkit-transition: all .2s ease-in-out;
- transition: all .2s ease-in-out;
- overflow: hidden;
-}
-.dashboard-activity-background {
- background-color: #282828;
- background-position: center;
- background-size: cover;
- display: -webkit-flex;
- display: flex;
- -webkit-flex-wrap: nowrap;
- flex-wrap: nowrap;
- height: 235px;
- width: 100%;
- padding: 5px;
- overflow: hidden;
- -webkit-transition: background 1s linear;
- transition: background 1s linear;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
-}
-.dashboard-activity-poster-container {
- background-color: #282828;
- height: 225px;
- width: 150px;
- margin-right: 5px;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
- z-index: 1;
-}
-.dashboard-activity-poster {
- background-position: center;
- background-size: cover;
- height: 225px;
- width: 150px;
- -webkit-transition: background 1s linear;
- transition: background 1s linear;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- z-index: 2;
-}
-.dashboard-activity-poster-blur {
- background-color: #282828;
- background-position: center;
- background-size: cover;
- height: 225px;
- width: 150px;
- opacity: 0.60;
- -webkit-filter: blur(3px);
- -moz-filter: blur(3px);
- filter: blur(3px);
- -webkit-transition: background .2s ease-in-out;
- transition: background .2s ease-in-out;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- z-index: 2;
-}
-.dashboard-activity-cover {
- background-position: center;
- background-size: cover;
- height: 150px;
- width: 150px;
- margin-top: 37.5px;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- -webkit-transition: background 1s linear;
- transition: background 1s linear;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- position: absolute;
- top: 0;
- z-index: 3;
-}
-.dashboard-activity-info-icon {
- width: 50px;
- height: 50px;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- position: absolute;
- top: 10px;
- right: 10px;
- overflow: hidden;
- z-index: 2;
-}
-.dashboard-activity-info-platform {
- background-position: center;
- background-size: cover;
- width: 50px;
- height: 50px;
- opacity: 1;
- -webkit-transition: all .2s ease-in-out;
- transition: all .2s ease-in-out;
-}
-.dashboard-activity-info-platform-no-terminate {
- background-position: center;
- background-size: cover;
- width: 50px;
- height: 50px;
- opacity: 1;
- -webkit-transition: all .2s ease-in-out;
- transition: all .2s ease-in-out;
-}
-.dashboard-activity-terminate-session {
- width: 100%;
- height: 100%;
- font-size: 31px;
- color: #eee;
- text-align: center;
- opacity: 0;
- position: absolute;
- top: 0;
- left: 0;
- -webkit-transition: all .2s ease-in-out;
- transition: all .2s ease-in-out;
-}
-.dashboard-activity-terminate-session:hover {
- color: #e9a049;
-}
-.dashboard-activity-info-container {
- display: -webkit-flex;
- display: flex;
- flex-direction: column;
- height: 225px;
- width: 385px;
- overflow: hidden;
-}
-.dashboard-activity-info-scroller {
- height: 225px;
- width: 100%;
- -webkit-flex-grow: 1;
- flex-grow: 1;
- z-index: 1;
-}
-.dashboard-activity-info-scroller.scrollbar-macosx > .scroll-element.scroll-y {
- left: 10px;
-}
-.dashboard-activity-info-scroller.scrollbar-macosx > .scroll-element .scroll-bar {
- background-color: #999;
-}
-.dashboard-activity-info {
- width: 100%;
- font-size: 12px;
- padding: 5px 5px 5px 15px;
- position: relative;
-}
-.dashboard-activity-info-list {
- margin-bottom: 20px;
- padding-right: 0;
-}
-.dashboard-activity-info-list:last-of-type {
- margin-bottom: 0;
-}
-.dashboard-activity-info-item {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- align-items: baseline;
- width: 100%;
- margin-bottom: 5px;
-}
-.dashboard-activity-info-item:last-of-type {
- margin-bottom: 0;
-}
-.dashboard-activity-info-item .sub-heading {
- height: 100%;
- width: 60px;
- color: #aaa;
- font-size: 10px;
- text-align: right;
- text-transform: uppercase;
- line-height: 14px;
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
-}
-.dashboard-activity-info-item .sub-value {
- margin-left: 10px;
- text-align: left;
- line-height: 14px;
- -webkit-flex-grow: 1;
- flex-grow: 1;
-}
-.dashboard-activity-info-item .sub-value.platform-right {
- margin-right: 55px;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
-}
-.dashboard-activity-info-item .sub-value.time-right {
- margin-right: 60px;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
-}
-.dashboard-activity-info-item .sub-value .ip-container {
- display: inline-flex;
-}
-.dashboard-activity-info-item .sub-value .ip-address {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- max-width: 125px;
-}
-.dashboard-activity-info-time {
- position: absolute;
- top: 200px;
- right: 10px;
- text-align: right;
- font-size: 10px;
- z-index: 2;
-}
-.dashboard-activity-progress {
- width: 100%;
- height: 5px;
- -webkit-transition: all .2s ease-in-out;
- transition: all .2s ease-in-out;
- transform-origin: top;
- overflow: hidden;
-}
-.dashboard-activity-progress-bar {
- background-color: #111;
- height: 100%;
- width: 100%;
- position: relative;
- overflow: hidden;
-}
-.dashboard-activity-progress .buffer-bar {
- padding-right: 3px;
- font-size: x-small;
- text-align: right;
- line-height: 14px;
- color: rgba(255, 255, 255, 0);
- background-color: #444;
- position: absolute;
- height: 100%;
- max-width: 100%;
- overflow: hidden;
-}
-.dashboard-activity-progress .progress-bar {
- padding-right: 3px;
- font-size: x-small;
- text-align: right;
- line-height: 14px;
- color: rgba(255, 255, 255, 0);
- background-color: #faa732;
- background-image: -moz-linear-gradient(top, #fbb450, #f89406);
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
- background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
- background-image: -o-linear-gradient(top, #fbb450, #f89406);
- background-image: linear-gradient(to bottom, #fbb450, #f89406);
- background-repeat: repeat-x;
- position: absolute;
- height: 100%;
- max-width: 100%;
- overflow: hidden;
-}
-.dashboard-activity-container:hover {
- height: 249px;
-}
-.dashboard-activity-container:hover .dashboard-activity-progress {
- height: 14px;
-}
-.dashboard-activity-container:hover .progress-bar {
- color: rgba(255, 255, 255, 1);
- background-image: -webkit-linear-gradient(left,rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 50px);
- background-image: -moz-linear-gradient(left,rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 50px);
- background-image: linear-gradient(to left,rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 50px);
-}
-.dashboard-activity-container:hover .buffer-bar {
- color: rgba(255, 255, 255, 1);
- background-image: -webkit-linear-gradient(left,rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 50px);
- background-image: -moz-linear-gradient(left,rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 50px);
- background-image: linear-gradient(to left,rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 50px);
-}
-a:hover .dashboard-activity-poster,
-a:hover .dashboard-activity-cover {
- -webkit-box-shadow: inset 0 0 0 2px #e9a049;
- -moz-box-shadow: inset 0 0 0 2px #e9a049;
- box-shadow: inset 0 0 0 2px #e9a049;
-}
-.dashboard-activity-container:hover .dashboard-activity-info-platform {
- opacity: 0;
-}
-.dashboard-activity-container:hover .dashboard-activity-terminate-session {
- background-color: rgba(0, 0, 0, 0.25);
- opacity: 1;
- cursor: pointer;
-}
-.dashboard-activity-metadata-wrapper {
- position: relative;
- width: 100%;
- height: 50px;
- font-size: 13px;
- padding: 0px 3px 0 3px;
-}
-.dashboard-activity-metadata-title-container {
- display: flex;
- flex-direction: row;
- font-size: 13px;
- font-weight: bold;
- line-height: 25px;
- color: #eee;
-}
-.dashboard-activity-metadata-play_state-icon {
- flex-basis: 25px;
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
-}
-.dashboard-activity-metadata-title {
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- width: 350px;
- -webkit-flex-grow: 1;
- flex-grow: 1;
-}
-.dashboard-activity-metadata-subtitle-container {
- display: flex;
- flex-direction: row;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- font-size: 13px;
- font-weight: bold;
- line-height: 25px;
- color: #999;
-}
-.dashboard-activity-metadata-media_type-icon {
- flex-basis: 25px;
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
-}
-.dashboard-activity-metadata-subtitle {
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- -webkit-flex-grow: 1;
- flex-grow: 1;
-}
-.dashboard-activity-metadata-user {
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- text-align: right;
- max-width: 124px;
- flex-basis: 124px;
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
-}
-.dashboard-activity-metadata-user-thumb {
- background-color: #282828;
- background-position: center;
- background-size: cover;
- margin-top: 5px;
- margin-left: 10px;
- height: 40px;
- width: 40px;
- position: relative;
- -webkit-border-radius: 50%;
- -moz-border-radius: 50%;
- border-radius: 50%;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- overflow: hidden;
- float: right;
-}
-a .dashboard-activity-metadata-user-thumb:hover {
- -webkit-box-shadow: inset 0 0 0 2px #e9a049;
- -moz-box-shadow: inset 0 0 0 2px #e9a049;
- box-shadow: inset 0 0 0 2px #e9a049;
-}
-.dashboard-activity-metadata-user a {
- color: #999;
-}
-.dashboard-activity-metadata-user a:hover {
- color: #e9a049;
-}
-.dashboard-activity-metadata-title a:hover {
- color: #e9a049;
-}
-.dashboard-stats-instance {
- float: left;
- position: relative;
- height: 160px;
- max-width: 500px;
- margin-left: 25px;
- margin-bottom: 25px;
-}
-.dashboard-stats-container {
- height: 160px;
- width: 100%;
- position: relative;
- padding: 0px;
- -webkit-transition: all .2s ease-in-out;
- transition: all .2s ease-in-out;
- overflow: hidden;
-}
-.dashboard-stats-background {
- background-color: #282828;
- background-position: center;
- background-size: cover;
- display: -webkit-flex;
- display: flex;
- -webkit-flex-wrap: nowrap;
- flex-wrap: nowrap;
- height: 160px;
- width: 100%;
- padding: 5px;
- overflow: hidden;
- -webkit-transition: background .2s ease-in-out;
- transition: background .2s ease-in-out;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
-}
-.dashboard-stats-background.flat {
- opacity: 1;
-}
-.dashboard-stats-poster-container {
- background-color: #282828;
- height: 150px;
- width: 100px;
- margin-right: 5px;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
- position: relative;
- overflow: hidden;
- z-index: 1;
-}
-.dashboard-stats-poster {
- background-color: #282828;
- background-position: center;
- background-size: cover;
- height: 150px;
- width: 100px;
- -webkit-transition: background .2s ease-in-out;
- transition: background .2s ease-in-out;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- z-index: 2;
-}
-.dashboard-stats-cover {
- background-position: center;
- background-size: cover;
- height: 100px;
- width: 100px;
- margin-top: 25px;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- -webkit-transition: background .2s ease-in-out;
- transition: background .2s ease-in-out;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- position: absolute;
- top: 0;
- z-index: 3;
-}
-.dashboard-stats-circle {
- background-position: center;
- background-size: cover;
- height: 100px;
- width: 100px;
- margin-top: 25px;
- margin-right: 5px;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
- -webkit-transition: background .2s ease-in-out;
- transition: background .2s ease-in-out;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- z-index: 1;
- -webkit-border-radius: 50%;
- -moz-border-radius: 50%;
- border-radius: 350%;
- overflow: hidden;
-}
-.dashboard-stats-square {
- background-position: center;
- background-size: cover;
- height: 100px;
- width: 100px;
- margin-top: 25px;
- margin-right: 5px;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
- -webkit-transition: background .2s ease-in-out;
- transition: background .2s ease-in-out;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- z-index: 1;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- overflow: hidden;
-}
-.dashboard-stats-flat {
- background-position: center;
- background-size: cover;
- height: 100px;
- width: 100px;
- margin-top: 25px;
- margin-right: 5px;
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
- -webkit-transition: background .2s ease-in-out;
- transition: background .2s ease-in-out;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- z-index: 1;
- overflow: hidden;
-}
-.dashboard-stats-info-container {
- display: -webkit-flex;
- display: flex;
- flex-direction: column;
- height: 150px;
- width: 385px;
- overflow: hidden;
-}
-.dashboard-stats-info-title {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- align-items: baseline;
- height: 30px;
- width: 100%;
- padding: 5px 5px 5px 10px;
- line-height: 20px;
- text-transform: uppercase;
- border-bottom: 1px solid rgba(255,255,255,.1);
- -webkit-flex-grow: 1;
- flex-grow: 1;
- z-index: 1;
-}
-.dashboard-stats-info-title h4 {
- margin: 0;
- font-size: 15px;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- -webkit-flex-grow: 1;
- flex-grow: 1;
-}
-.dashboard-stats-info-title .dashboard-stats-stats-units {
- color: #aaa;
- font-size: 12px;
- text-align: right;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
-}
-.dashboard-stats-info-scroller {
- height: 120px;
- width: 100%;
- -webkit-flex-grow: 1;
- flex-grow: 1;
- z-index: 1;
-}
-.dashboard-stats-info-scroller.scrollbar-macosx > .scroll-element.scroll-y {
- left: 10px;
-}
-.dashboard-stats-info-scroller.scrollbar-macosx > .scroll-element .scroll-bar {
- background-color: #999;
-}
-.dashboard-stats-info {
- width: 100%;
- font-size: 12px;
- padding: 3px 0 0 15px;
- position: relative;
-}
-.dashboard-stats-info-list {
- margin-bottom: 20px;
- padding-right: 0;
-}
-.dashboard-stats-info-list:last-of-type {
- margin-bottom: 0;
-}
-.dashboard-stats-info-item {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- align-items: baseline;
- width: 100%;
- padding: 2.5px 5px;
- line-height: 14px;
- border-bottom: 1px solid rgba(255,255,255,0.05);
- cursor: default;
-}
-.dashboard-stats-info-item:last-of-type {
- margin-bottom: 0;
-}
-.dashboard-stats-info-item .sub-list {
- height: 100%;
- width: 15px;
- color: #aaa;
- font-size: 10px;
- text-align: left;
- text-transform: uppercase;
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
-}
-.dashboard-stats-info-item .sub-value {
- height: 100%;
- font-size: 12px;
- text-align: left;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-flex-grow: 1;
- flex-grow: 1;
-}
-.dashboard-stats-info-item .sub-count {
- height: 100%;
- margin-left: 5px;
- color: #f9be03;
- font-size: 12px;
- text-align: right;
- white-space: nowrap;
- overflow: hidden;
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
-}
-.dashboard-stats-info-item .sub-divider {
- height: 100%;
- margin-left: 5px;
- color: #aaa;
- font-size: 12px;
- text-align: left;
- text-transform: uppercase;
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
-}
-.dashboard-stats-info-item.expanded {
- padding: 5px 5px;
- line-height: 20px;
-}
-.dashboard-stats-info-item.expanded .sub-heading {
- font-size: 13px;
-}
-.dashboard-stats-info-item.expanded .sub-value {
- font-size: 16px;
-}
-.dashboard-stats-info-item.expanded .sub-count {
- font-size: 16px;
-}
-.dashboard-stats-info-item.expanded .sub-divider {
- font-size: 16px;
-}
-.dashboard-stats-info-item:hover {
- background-color: rgba(255,255,255,0.05);
-}
-a:hover .dashboard-stats-poster,
-a:hover .dashboard-stats-cover,
-a:hover .dashboard-stats-circle,
-a:hover .dashboard-stats-square {
- -webkit-box-shadow: inset 0 0 0 2px #e9a049;
- -moz-box-shadow: inset 0 0 0 2px #e9a049;
- box-shadow: inset 0 0 0 2px #e9a049;
-}
-.dashboard-recent-media-row {
- width: 100%;
- margin: 0 auto;
- text-align: center;
- position: relative;
- z-index: 0;
- overflow: hidden;
-}
-.dashboard-recent-media {
- width: 100%;
- margin: auto;
- list-style: none;
-}
-.dashboard-recent-media li {
- float: left;
- position: relative;
- left: 0px;
- margin-right: 25px;
- margin-bottom: 25px;
-}
-.dashboard-recent-media-poster {
- position: relative;
- float: left;
-}
-.dashboard-recent-media-cover {
- position: relative;
- margin-top: 75px;
- float: left;
-}
-a:hover .dashboard-recent-media-poster,
-a:hover .dashboard-recent-media-cover {
- webkit-box-shadow: inset 0 0 0 2px #e9a049;
- -moz-box-shadow: inset 0 0 0 2px #e9a049;
- box-shadow: inset 0 0 0 2px #e9a049;
-}
-.dashboard-recent-media-poster-face {
- background-position: center;
- background-size: cover;
- height: 225px;
- width: 150px;
- position: relative;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- z-index: -2;
-}
-.dashboard-recent-media-cover-face {
- background-position: center;
- background-size: cover;
- height: 150px;
- width: 150px;
- position: relative;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- z-index: -2;
-}
-.dashboard-recent-media-overlay {
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- text-align: left;
- background: -moz-linear-gradient(top, rgba(0,0,0,0) 30%, rgba(0,0,0,1) 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(30%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,1)));
- background: -webkit-linear-gradient(top, rgba(0,0,0,0) 30%,rgba(0,0,0,1) 100%);
- background: -o-linear-gradient(top, rgba(0,0,0,0) 30%,rgba(0,0,0,1) 100%);
- background: -ms-linear-gradient(top, rgba(0,0,0,0) 30%,rgba(0,0,0,1) 100%);
- background: linear-gradient(to bottom, rgba(0,0,0,0) 30%,rgba(0,0,0,1) 100%);
- height: 100%;
- z-index: -1;
-}
-.dashboard-recent-media-overlay-text {
- color: #aaa;
- font-size: 12px;
- font-weight: bold;
- float: left;
- position: absolute;
- left: 8px;
- bottom: 5px;
-}
-.dashboard-recent-media-metacontainer {
- width: 150px;
- font-size: 13px;
- clear: both;
-}
-.dashboard-recent-media-metacontainer h3 {
- padding: 5px 3px 0 3px;
- color: #eee;
- text-overflow: ellipsis;
- overflow: hidden;
- position: relative;
- font-size: 13px;
- font-weight: bold;
- margin: 0;
- line-height: 16px;
- width: 150px;
- white-space: nowrap;
- text-align: left;
- clear: both;
-}
-.dashboard-recent-media-metacontainer h3.text-muted {
- color: #777;
-}
-.dashboard-recent-media-metacontainer h3.text-muted a {
- color: #777;
-}
-.dashboard-recent-media-metacontainer h3.text-muted a:hover {
- color: #e9a049;
-}
-.art-face {
- background-repeat: no-repeat;
- background-position: center center;
- background-attachment: scroll;
- background-size: cover;
- opacity: 0;
- position: fixed;
- top: 0;
- bottom: 0;
- width: 100%;
-}
-.art-music-face {
- background-repeat: no-repeat;
- background-position: center;
- background-size: cover;
- width: 250px;
- position: relative;
- top: 0;
- bottom: 0;
-}
-.summary-container {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- overflow-x: hidden;
- overflow-y: auto;
- -webkit-overflow-scrolling: touch;
-}
-.summary-container .table-card-header,
-.summary-container .table-card-back {
- background: rgba(40,40,40, 0.9);
-}
-.summary-navbar {
- background-color: rgba(255,255,255,.03);
- height: 50px;
- line-height: 50px;
- max-height: 50px;
- overflow: hidden;
-}
-.summary-navbar-list {
- padding: 0 25px;
- color: #999;
- white-space: nowrap;
- overflow: hidden;
-}
-.summary-navbar-list .breadcrumb {
- padding: 0;
- margin: 0;
- background: none;
-}
-.summary-navbar-list .breadcrumb > .breadcrumb-arrow {
- color: #444;
- padding: 0 15px;
-}
-.summary-navbar-list .breadcrumb > .active {
- color: #eee;
-}
-.summary-navbar-list .breadcrumb a {
- color: #999;
-}
-.summary-navbar-list .breadcrumb a:hover {
- color: #f9be03;
-}
-.summary-content-title-wrapper {
- height: 150px;
- padding-top: 50px;
-}
-.summary-content-title {
- overflow: hidden;
- position: relative;
- max-height: 100px;
-}
-.summary-content-title h1 {
- margin-top: 0;
- margin-bottom: 10px;
- color: #f9be03;
- font-size: 28px;
- line-height: 40px;
- float: left;
- clear: left;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- width: 100%;
-}
-.summary-content-title h1 a {
- color: #f9be03;
-}
-.summary-content-title h1 a:hover {
- color: #eee;
-}
-.summary-content-title h2 {
- margin-top: 0;
- margin-bottom: 10px;
- color: #eee;
- font-size: 28px;
- line-height: 40px;
- float: left;
- clear: left;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- width: 100%;
-}
-.summary-content-title h3 {
- margin-top: 0;
- margin-bottom: 10px;
- color: #999;
- font-size: 28px;
- line-height: 40px;
- position: absolute;
- bottom: 0;
- right: 0;
-}
-.summary-content-title h3 a:hover {
- text-decoration: underline;
-}
-.summary-content-title h3 a {
- color: #999;
-}
-.summary-content-wrapper {
- background: rgba(0,0,0,.4);
- background: -webkit-linear-gradient(top, rgba(0,0,0,.4), rgba(10,10,10,.4));
- background: -o-linear-gradient(bottom, rgba(0,0,0,.4), rgba(10,10,10,.4));
- background: -moz-linear-gradient(bottom, rgba(0,0,0,.4), rgba(10,10,10,.4));
- background: linear-gradient(to bottom, rgba(0,0,0,.4), rgba(10,10,10,.4));
- background-clip: content-box;
- min-height: calc(100% - 200px);
- position: inherit;
- width: 100%;
-}
-.summary-content-poster {
- float: left;
- width: 250px;
- margin: 0 40px 0 25px;
- height: 100px;
- overflow: visible;
- position: relative;
-}
-.summary-poster-face {
- background-position: center;
- background-size: cover;
- height: 375px;
- width: 250px;
- position: relative;
- webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- overflow: hidden;
- z-index: 1;
-}
-.summary-poster-face-episode {
- background-position: center;
- background-size: cover;
- height: 140px;
- width: 250px;
- position: relative;
- webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- overflow: hidden;
- z-index: 1;
-}
-.summary-poster-face-track {
- background-position: center;
- background-size: cover;
- height: 250px;
- width: 250px;
- position: relative;
- webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- overflow: hidden;
- z-index: 1;
-}
-.summary-poster-face-overlay {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- background-image: -webkit-gradient(linear,left 0,left 100%,from(rgba(0,0,0,.7)),to(rgba(0,0,0,.9)));
- background-image: -webkit-linear-gradient(top,rgba(0,0,0,.7) 0,rgba(0,0,0,.9) 100%);
- background-image: -moz-linear-gradient(top,rgba(0,0,0,.7) 0,rgba(0,0,0,.9) 100%);
- background-image: linear-gradient(to bottom,rgba(0,0,0,.7) 0,rgba(0,0,0,.9) 100%);
- background-repeat: repeat-x;
- webkit-box-shadow: inset 0 0 0 2px #e9a049;
- -moz-box-shadow: inset 0 0 0 2px #e9a049;
- box-shadow: inset 0 0 0 2px #e9a049;
- opacity: 0;
- transition: opacity .2s;
- z-index: 2;
-}
-.summary-poster-face-overlay span {
- display: block;
- width: 100%;
- height: 100%;
- background-image: url(../images/plex-logo-light.svg);
- background-size: 100px;
- background-repeat: no-repeat;
- background-position: center;
- opacity: 0;
- transition: opacity .3s;
-}
-.summary-poster-face-overlay span:before {
- content: "View On";
- color: #999;
- font-size: 13px;
- font-weight: bold;
- text-transform: uppercase;
- text-align: center;
- display: block;
- position: absolute;
- top: calc(50% - 34px);
- width: 100%;
-}
-a:hover .summary-poster-face .summary-poster-face-overlay,
-a:hover .summary-poster-face-episode .summary-poster-face-overlay,
-a:hover .summary-poster-face-track .summary-poster-face-overlay,
-a:hover .summary-poster-face .summary-poster-face-overlay span,
-a:hover .summary-poster-face-episode .summary-poster-face-overlay span,
-a:hover .summary-poster-face-track .summary-poster-face-overlay span {
- opacity: 1;
-}
-.summary-content-padding {
- float: left;
- width: 250px;
- height: 1px;
- margin: 0 40px 20px 25px;
- position: relative;
-}
-.summary-content {
- position: relative;
- color: #999;
- overflow: hidden;
- padding-right: 10px;
- margin-bottom: 20px;
-}
-.summary-content-details-wrapper {
- width: 100%;
- padding: 10px 0 15px 0;
- position: relative;
- float: left;
-}
-.summary-content-details-tag {
- float: left;
- line-height: 24px;
-}
-.summary-content-details-tag strong {
- color: #eee;
- margin-left: 2px;
- margin-right: 10px;
-}
-.summary-content-media-info-wrapper {
- width: 100%;
- position: absolute;
- bottom: 0;
- left: 0;
- text-align: center;
-}
-.summary-content-media-flag {
- width: auto;
- height: auto;
- max-width: 75pt;
- max-height: 15px;
- margin: 0 5px;
-}
-.summary-content-text {
- overflow: hidden;
- color: #eee;
- float: left;
- position: relative;
- clear: both;
- padding-bottom: 0;
-}
-.summary-content-tagline {
- font-weight: bold;
-}
-.summary-content-summary {
- height: 60px;
-}
-.summary-content-summary p {
- margin-bottom: 0;
-}
-.summary-toggle {
- display: none;
- margin-top: 10px;
- font-size: 12px;
- font-weight: bold;
- text-transform: uppercase;
-}
-.summary-toggle a {
- color: #999;
-}
-.summary-content-people-wrapper {
- margin-right: 20px;
- float: left;
-}
-.summary-content-people-wrapper hidden-phone hidden-tablet {
- overflow: hidden;
- height: auto;
- min-height: 0px;
-}
-.summary-content-actors {
- margin-top: 13px;
- font-size: 12px;
- line-height: 18px;
- color: #999;
- overflow: hidden;
-}
-.summary-content-actors ul {
- padding-left:20px;
- margin-bottom: 0;
-}
-.summary-content-actors li {
- list-style: none;
- list-style-image: none;
- display: block;
- font-size: 12px;
- line-height: 18px;
- color: #eee;
-}
-.summary-content-genres {
- margin-top: 13px;
- font-size: 12px;
- line-height: 18px;
- color: #999;
- overflow: hidden;
-}
-.summary-content-genres ul {
- padding-left:20px;
- margin-bottom: 0;
-}
-.summary-content-genres li {
- list-style: none;
- list-style-image: none;
- display: block;
- font-size: 12px;
- line-height: 18px;
- color: #eee;
-}
-.summary-content-writers {
- margin-top: 13px;
- font-size: 12px;
- line-height: 18px;
- color: #999;
- overflow: hidden;
-}
-.summary-content-writers ul {
- padding-left: 20px;
- margin-bottom: 0;
-}
-.summary-content-writers li {
- list-style: none;
- list-style-image: none;
- display: block;
- font-size: 12px;
- line-height: 18px;
- color: #eee;
-}
-.star-rating {
- display: inline-block;
- font-size: 15px;
- overflow: hidden;
- white-space: nowrap;
- margin-top: 3px;
- height: 21px;
- float: right;
-}
-.star-rating .star-icon {
- width: auto;
- margin-left: 2px;
- color: #f9be03;
-}
-.star-rating .star-icon-o {
- width: auto;
- margin-left: 2px;
- color: #999;
-}
-.critic-rating {
- display: flex;
- font-size: 14px;
- overflow: hidden;
- white-space: nowrap;
- margin-top: 2px;
- height: 20px;
- line-height: 20px;
- float: right;
-}
-.children-list,
-.search-results-list {
- position: relative;
- z-index: 0;
-}
-.item-children-wrapper {
-}
-.item-children-section-title {
- position: relative;
- padding: 10px;
- background-color: #2c2c2c;
- border-bottom: 1px solid #3d3d3d;
- border-top: 1px solid #282828;
- height: 50px;
- line-height: 22px;
- padding: 13px 20px;
- margin: 20px 0;
-}
-.item-children-section-title h4 {
- position: relative;
- margin: 0;
- line-height: 22px;
- color: #eee;
- font-size: 16px;
- text-align: center;
- text-transform: uppercase;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
-}
-.item-children-instance {
- list-style: none;
- margin: 0;
- overflow: auto;
-}
-.item-children-instance.max-height {
- max-height: 700px;
-}
-.item-children-instance li {
- float: left;
- position: relative;
- left: 0px;
- margin-right: 25px;
- margin-bottom: 25px;
-}
-.item-children-instance li.item-children-list-item {
- width: 100%;
- height: 35px;
- margin-right: 0;
- margin-bottom: 0;
-}
-.item-children-poster {
- float: left;
- position: relative;
- left: 0px;
-}
-a:hover .item-children-poster {
- webkit-box-shadow: inset 0 0 0 2px #e9a049;
- -moz-box-shadow: inset 0 0 0 2px #e9a049;
- box-shadow: inset 0 0 0 2px #e9a049;
-}
-.item-children-poster-face {
- background-position: center;
- background-size: cover;
- position: relative;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- z-index: -2;
-}
-.item-children-poster-face.poster-item {
- width: 150px;
- height: 225px;
-}
-.item-children-poster-face.episode-item {
- width: 250px;
- height: 140px;
-}
-.item-children-poster-face.cover-item {
- width: 150px;
- height: 150px;
-}
-.item-children-card-overlay {
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- text-align: left;
- background: -moz-linear-gradient(top, rgba(0,0,0,0) 30%, rgba(0,0,0,1) 100%);
- background: -webkit-gradient(linear, left top, left bottom, color-stop(30%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,1)));
- background: -webkit-linear-gradient(top, rgba(0,0,0,0) 30%,rgba(0,0,0,1) 100%);
- background: -o-linear-gradient(top, rgba(0,0,0,0) 30%,rgba(0,0,0,1) 100%);
- background: -ms-linear-gradient(top, rgba(0,0,0,0) 30%,rgba(0,0,0,1) 100%);
- background: linear-gradient(to bottom, rgba(0,0,0,0) 30%,rgba(0,0,0,1) 100%);
- height: 100%;
- z-index: -1;
-}
-.item-children-overlay-text {
- color: #aaa;
- font-size: 12px;
- font-weight: bold;
- float: left;
- position: absolute;
- left: 8px;
- bottom: 5px;
-}
-.item-children-instance-text-wrapper {
- font-size: 13px;
- margin-bottom: 20px;
- clear: both;
-}
-.item-children-instance-text-wrapper.poster-item,
-.item-children-instance-text-wrapper.cover-item {
- width: 150px;
-}
-.item-children-instance-text-wrapper.episode-item {
- width: 250px;
-}
-.item-children-instance-text-wrapper h3 {
- width: 100%;
- padding: 5px 3px 0 3px;
- color: #eee;
- text-overflow: ellipsis;
- overflow: hidden;
- position: relative;
- font-size: 13px;
- font-weight: bold;
- margin: 0;
- line-height: 16px;
- white-space: nowrap;
- text-align: left;
- clear: both;
-}
-.item-children-instance-text-wrapper h3.text-muted {
- color: #777;
-}
-.item-children-instance-text-wrapper h3.text-muted a {
- color: #777;
-}
-.item-children-instance-text-wrapper h3.text-muted a:hover {
- color: #e9a049;
-}
-.item-children-list-item-odd {
- border-top: 0px solid #343434;
- border-bottom: 0px solid #343434;
- background-color: rgba(255,255,255,0.010);
- height: 100%;
- font-size: 13px;
- padding-top: 10px;
-}
-.item-children-list-item-even {
- border-top: 0px solid #343434;
- border-bottom: 0px solid #343434;
- background-color: rgba(255,255,255,0.035);
- height: 100%;
- font-size: 13px;
- padding-top: 10px;
-}
-.item-children-list-item-odd:hover,
-.item-children-list-item-even:hover {
- background-color: rgba(255,255,255,0.075);
-}
-.item-children-list-item-index {
- float: left;
- color: #777;
- text-align: right;
- display: inline-block;
- width: 35px;
- margin-right: 10px;
-}
-.item-children-list-item-title {
- display: inline-block;
- width: calc(100% - 125px);
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
-}
-.item-children-list-item-duration {
- float: right;
- color: #777;
- text-align: right;
- display: inline-block;
- width: 60px;
- margin-right: 20px;
-}
-.nav-list {
- float: left;
- list-style: none;
- padding: 0;
-}
-.nav-list.nav-pills > li > a {
- margin-bottom: 0;
-}
-#new_title h3 {
- color: #E5A00D;
- font-size: 14px;
- line-height: 1.42857143;
- font-weight: bold;
- margin: 0;
-}
-.settings-alert {
- float: left;
- padding: 0;
- margin: 5px 0;
- border: 0;
- position: relative;
-}
-.settings-alert ul {
- padding: 0;
-}
-.settings-alert ul li {
- list-style: none;
- padding: 5px 12px;
- margin: 0;
- border: 1px solid #ebccd1;
- border-radius: 4px;
-}
-.settings-alert ul li:before {
- content: "\f071";
- font-family: "Font Awesome 5 Free";
- font-weight: 900;
- margin-right: 5px;
-}
-.settings-warning {
- color: #eb8600;
-}
-span.settings-warning {
- padding-left: 10px;
-}
-#menu_link_show_advanced_settings.active {
- color: #eee;
- background-color: #cc7b19;
-}
-#configUpdate .form-group,
-#configUpdate .checkbox{
- padding-left: 10px;
- margin-left: -10px;
-}
-.hidden-settings {
- overflow: hidden;
- padding-left: 10px;
- margin-left: -10px;
-}
-#newsletter_agent_options.hidden-settings {
- padding-left: 15px;
- margin-left: 0;
-}
-.advanced-setting {
- display: none;
-}
-div.advanced-setting {
- border-left: 1px solid #cc7b19;
-}
-li.advanced-setting {
- border-left: 1px solid #cc7b19;
-}
-.setting-message {
- color: #cc7b19;
- margin-left: 10px;
-}
-.user-info-wrapper {
-}
-.user-info-poster-face {
- float: left;
- margin: 15px 15px 15px 0;
- background-size: cover;
- background-position: center;
- height: 80px;
- width: 80px;
- -webkit-border-radius: 50%;
- -moz-border-radius: 50%;
- border-radius: 50%;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
-}
-.user-info-username {
- font-size: 24px;
- color: #eee;
- padding-top: 15px;
- padding-left: 105px;
-}
-.user-info-nav {
- margin-top: 15px;
- padding-left: 105px;
-}
-.nav-tabs > .active > a:hover,
-.nav-tabs > .active > a:focus {
- color: #e9a049;
-}
-.user-overview-stats-wrapper {
-}
-.user-overview-stats-wrapper ul {
- list-style: none;
- padding: 0;
- margin: 0px 0px 0px 0px;
-}
-.user-overview-stats-instance {
- float: left;
- width: 400px;
- height: 80px;
- margin-bottom: 25px;
-}
-.user-overview-stats-instance-device_icon {
- float: left;
- padding-right: 15px;
-}
-.user-overview-stats-instance-device_icon img{
-}
-.user-overview-stats-instance li {
- float: left;
- list-style: none;
- width: 100%;
- height: 90px;
-}
-.user-overview-stats-instance-text {
- position: relative;
- top: 0px;
- left: 0px;
-}
-.user-overview-stats-instance p {
- color: #aaa;
- font-size: 12px;
- float: left;
- position: relative;
- top: 15px;
- left: 0px;
-}
-.user-overview-stats-instance h3 strong{
- color: #eee;
-}
-.user-overview-stats-instance h3 {
- font-size: 30px;
- font-weight: bold;
- color: #f9be03;
- line-height: 22px;
- position: relative;
- top: 5px;
- margin: 0 5px 0 10px;
- float: left;
-}
-.user-overview-stats-instance h4 {
- color: #eee;
- margin-bottom: 25px;
-}
-.user-overview-stats-instance h1 {
- font-size: 54px;
- font-weight: normal;
- float: left;
- color: #333;
- color: rgba(255,255,255,0.05);
- text-shadow: none;
- position: relative;
- top: 3px;
- left: 3px;
-}
-.user-player ul {
- list-style: none;
- margin: 0;
-}
-.user-player-instance {
- float: left;
- width: 240px;
- height: 80px;
- margin-bottom: 25px;
-}
-.user-player-instance li {
-}
-.user-player-instance-box {
- float: left;
- border-radius: 3px;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- background-size: contain;
- position: relative;
- height: 80px;
- width: 80px;
-}
-.user-player-instance-name {
- float: left;
- padding-top: 14px;
- color: #eee;
- text-overflow: ellipsis;
- overflow: hidden;
- position: relative;
- font-size: 14px;
- line-height: 16px;
- font-weight: normal;
- width: 140px;
- margin-left: 10px;
- margin-bottom: 10px;
- white-space: nowrap;
-}
-.user-player-instance-playcount h3 {
- font-size: 30px;
- font-weight: bold;
- color: #f9be03;
- line-height: 22px;
- position: relative;
- top: 5px;
- margin: 0 5px 0 10px;
- float: left;
-}
-.user-player-instance-playcount p {
- color: #aaa;
- font-size: 12px;
- float: left;
- position: relative;
- top: 15px;
- left: 0px;
-}
-.library-info-poster-face {
- float: left;
- margin: 15px 15px 15px 0;
- background-size: cover;
- background-position: center;
- height: 80px;
- width: 80px;
- /*-webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);*/
-}
-.library-user-instance-box {
- float: left;
- -webkit-border-radius: 50%;
- -moz-border-radius: 50%;
- border-radius: 50%;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- background-size: contain;
- position: relative;
- height: 80px;
- width: 80px;
-}
-a .library-user-instance-box:hover {
- -webkit-box-shadow: inset 0 0 0 2px #e9a049;
- -moz-box-shadow: inset 0 0 0 2px #e9a049;
- box-shadow: inset 0 0 0 2px #e9a049;
-}
-.home-padded-header {
- margin: 25px 0;
- height: 34px;
-}
-.home-padded-header h3 {
- margin-top: 9px;
- width: 175px;
-}
-.home-padded-header .button-bar {
- float: left;
-}
-.home-platforms {
-}
-.home-platforms ul,
-.library-platforms ul {
- list-style: none;
- margin: 0;
-}
-.home-platforms-instance {
- position: relative;
- float: left;
- width: 340px;
- padding: 5px;
- margin-right: 20px;
- margin-bottom: 20px;
- -webkit-box-sizing: content-box;
- box-sizing: content-box;
- white-space: nowrap;
-}
-.home-platforms-instance-overlay {
- height: 130px;
- width: 100%;
- padding: 5px;
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- overflow: hidden;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- z-index: 0;
-}
-.home-platforms-instance-background {
- background-color: #282828;
- background-position: center;
- background-size: cover;
- height: 130px;
- width: 100%;
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- opacity: 0.15;
- -webkit-filter: blur(3px);
- -moz-filter: blur(3px);
- filter: blur(3px);
- -webkit-transition: background 1s linear;
- transition: background 1s linear;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- z-index: -1;
-}
-.home-platforms-instance li {
- position: relative;
-}
-.home-platforms-instance-info {
- float: left;
- position: relative;
- padding-left: 80px;
- width: 100%;
- height: 120px;
- overflow: hidden;
-}
-.home-platforms-instance-name {
- color: #eee;
- text-overflow: ellipsis;
- overflow: hidden;
- position: relative;
- font-size: 14px;
- line-height: 16px;
- font-weight: bold;
- width: 100%;
- padding: 0 0 0 20px;
-}
-.home-platforms-instance-name h4 {
- margin: 10px 0 4px 0;
-}
-.home-platforms-instance-playcount {
- display: inline-block;
- position: relative;
- padding: 6px 0 0 20px;
- max-width: 100%;
-}
-.home-platforms-instance-playcount h4 {
- font-size: 14px;
- line-height: 16px;
- margin: 10px 0 10px 0;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-.home-platforms-instance-playcount h3 {
- font-size: 30px;
- font-weight: bold;
- color: #f9be03;
- line-height: 22px;
- position: relative;
- top: 5px;
- margin: 0 5px 0 0;
- float: left;
-}
-.home-platforms-instance-playcount p {
- color: #aaa;
- font-size: 12px;
- float: left;
- position: relative;
- top: 15px;
- left: 0px;
- margin-right: 5px;
-}
-.home-platforms-instance-last-user {
- float: left;
- position: relative;
- padding: 6px 0 0 20px;
- width: 100%;
-}
-.home-platforms-instance-last-user h4 {
- font-size: 14px;
- line-height: 16px;
- margin: 10px 0 10px 0;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-.home-platforms-instance-last-user h5 {
- font-size: 12px;
- position: relative;
- margin: 0 0 2px 0;
- float: left;
-}
-.home-platforms-instance-last-user p {
- color: #aaa;
- font-size: 12px;
- float: left;
- clear: left;
- position: relative;
- width: 100%;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-.home-platforms-instance-poster {
- margin-left: 0px;
- position: absolute;
- overflow: hidden;
-}
-.home-platforms-instance-cover {
- margin-left: 0px;
- position: absolute;
- top: 20px;
- overflow: hidden;
-}
-.home-platforms-instance-poster .home-platforms-poster-face {
- background-position: center;
- background-size: cover;
- height: 120px;
- width: 80px;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
-}
-.home-platforms-instance-cover .home-platforms-cover-face {
- background-position: center;
- background-size: cover;
- height: 80px;
- width: 80px;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
-}
-.home-platforms-instance-poster .home-platforms-library-thumb {
- background-position: center;
- background-size: cover;
- height: 80px;
- width: 80px;
- margin-top: 20px;
-}
-.home-platforms-instance-box {
- background-position: center;
- background-size: cover;
- margin: 20px 0 0 0px;
- height: 80px;
- width: 80px;
- position: relative;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- overflow: hidden;
-}
-.home-platforms-instance-oval {
- background-position: center;
- background-size: cover;
- margin: 20px 0 0 0px;
- height: 80px;
- width: 80px;
- position: relative;
- -webkit-border-radius: 50%;
- -moz-border-radius: 50%;
- border-radius: 50%;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- overflow: hidden;
-}
-.home-platforms-instance-list {
- float: left;
- position: relative;
- width: 100%;
- padding: 0 10px 25px 10px;
-}
-.home-platforms-instance-list li {
- margin-top: 25px;
- position: relative;
- height: 60px;
-}
-.home-platforms-instance-list-number {
- background-color: #f9be03;
- float: left;
- position: absolute;
- top: -10px;
- left: 10px;
- height: 20px;
- width: 20px;
- display: block;
- text-align: center;
- padding-top: 1px;
- -webkit-border-radius: 50%;
- -moz-border-radius: 50%;
- border-radius: 50%;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
-}
-.home-platforms-instance-list-number h4 {
- color: #000;
- font-size: 15px;
- font-weight: bold;
- margin: 0;
-}
-.home-platforms-instance-list-info {
- float: left;
- position: relative;
- padding-left: 75px;
- width: 100%;
- height: 60px;
-}
-.home-platforms-instance-list-name {
- float: left;
- color: #eee;
- text-overflow: ellipsis;
- overflow: hidden;
- position: relative;
- font-size: 13px;
- line-height: 15px;
- font-weight: bold;
- width: 100%;
- padding: 2px 0 0 10px;
-}
-.home-platforms-instance-list-name h5 {
- margin: 5px 0px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-.home-platforms-instance-list-playcount {
- float: left;
- position: relative;
- padding: 4px 0 0 10px;
- width: 100%;
-}
-.home-platforms-instance-list-playcount h3 {
- font-size: 20px;
- font-weight: bold;
- color: #f9be03;
- line-height: 22px;
- position: relative;
- margin: 0 5px 0 0;
- float: left;
-}
-.home-platforms-instance-list-playcount p {
- color: #aaa;
- font-size: 12px;
- float: left;
- position: relative;
- top: 5px;
- left: 0px;
- margin-right: 5px;
-}
-.home-platforms-instance-list-last-user {
- float: left;
- position: relative;
- padding: 0 0 0 10px;
- width: 100%;
-}
-.home-platforms-instance-list-last-user h5 {
- font-size: 12px;
- position: relative;
- margin: 0 0 2px 0;
- float: left;
-}
-.home-platforms-instance-list-last-user p {
- color: #aaa;
- font-size: 12px;
- float: left;
- clear: left;
- position: relative;
- width: 100%;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-.home-platforms-instance-list-poster {
- position: absolute;
- left: 20px;
- overflow: hidden;
-}
-.home-platforms-instance-list-cover {
- position: absolute;
- top: 10px;
- left: 20px;
- overflow: hidden;
-}
-.home-platforms-instance-list-poster .home-platforms-list-poster-face {
- background-position: center;
- background-size: cover;
- height: 60px;
- width: 40px;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
-}
-.home-platforms-instance-list-cover .home-platforms-list-cover-face {
- background-position: center;
- background-size: cover;
- height: 40px;
- width: 40px;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
-}
-.home-platforms-instance-list-box {
- background-position: center;
- background-size: cover;
- margin: 10px 0 0 20px;
- height: 40px;
- width: 40px;
- position: relative;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- overflow: hidden;
-}
-.home-platforms-instance-list-oval {
- background-position: center;
- background-size: cover;
- margin: 10px 0 0 20px;
- height: 40px;
- width: 40px;
- position: relative;
- -webkit-border-radius: 50%;
- -moz-border-radius: 50%;
- border-radius: 50%;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- overflow: hidden;
-}
-.home-platforms-instance-list-chevron {
- position: absolute;
- top: 100px;
- right: 5px;
- cursor: pointer;
-}
-.home-platforms-instance-list-chevron i {
- color: #999;
- font-size: 16px;
- -webkit-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- transition: all 0.3s ease;
-}
-.home-platforms-instance-list-chevron i:hover {
- color: #f9be03;
-}
-.home-platforms-instance-list-chevron.active i.fa-chevron-down{
- color: #f9be03;
- -webkit-transform: rotate(180deg);
- -ms-transform: rotate(180deg);
- -o-transform: rotate(180deg);
- transform: rotate(180deg);
-}
-a .home-platforms-instance-box:hover,
-a .home-platforms-instance-oval:hover,
-a .home-platforms-instance-list-box:hover,
-a .home-platforms-instance-list-oval:hover,
-a .home-platforms-poster-face:hover,
-a .home-platforms-cover-face:hover,
-a .home-platforms-list-poster-face:hover,
-a .home-platforms-list-cover-face:hover
- {
- -webkit-box-shadow: inset 0 0 0 2px #e9a049;
- -moz-box-shadow: inset 0 0 0 2px #e9a049;
- box-shadow: inset 0 0 0 2px #e9a049;
-}
-.home-platforms-instance .slider {
- background-color: #2d2d2d;
- width: calc(100% + 20px);
- display: none;
- position: absolute;
- top: 124px;
- left: -5px;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.1);
- z-index: 1;
- clip: rect(1px, 350px, 1000px, -2px);
-}
-.history-table-title {
- text-overflow: ellipsis;
- overflow: hidden;
- max-width: 350px;
-}
-#graph-tabs {
- padding-bottom: 10px;
- float: none;
-}
-.graphs-instance {
- height: 330px;
- padding: 20px;
- background-color: #333;
- margin-bottom: 20px;
- border-radius: 8px;
-}
-.watch-chart {
- margin-top: 10px;
- height: 300px;
- width: 100%;
-}
-.graphs-load {
- color: #999999;
- text-align: center;
- line-height: 300px;
-}
-.card-back {
- padding: 16px;
- background-color: #282828;
- margin-left: auto;
- margin-right: auto;
- margin-top: 20px;
- margin-bottom: 20px;
- width: 80%;
- overflow: hidden;
-}
-.card-back-full {
- padding: 20px;
- background-color: #282828;
- margin-top: 20px;
- margin-bottom: 20px;
- overflow: hidden;
-}
-.table-card-back {
- padding: 16px 16px 16px 16px;
- background-color: #282828;
- margin-left: auto;
- margin-right: auto;
- margin-top: 20px;
- margin-bottom: 20px;
- width: 100%;
- max-width: 1750px;
- overflow: hidden;
-}
-.table-card-header {
- padding: 16px 16px 16px 16px;
- background-color: #2c2c2c;
- border-bottom: 1px solid #3d3d3d;
- border-top: 1px solid #282828;
- margin-left: auto;
- margin-right: auto;
- margin-top: 20px;
- margin-bottom: -20px;
- width: 100%;
- max-width: 1750px;
- overflow: hidden;
-}
-.table-card-back td {
- font-size: 12px;
-}
-.header-bar {
- float: left;
-}
-.header-bar span {
- font-size: 22px;
- font-weight: bold;
- line-height: 34px;
-}
-.button-bar {
- float: right;
-}
-.colvis-button-bar,
-.refresh-users-button,
-.refresh-libraries-button {
- /*float: right;*/
-}
-.refresh-users-button,
-.refresh-libraries-button {
- /*margin-right: 5px;*/
-}
-.nav-settings,
-.nav-settings ul {
- margin: 0px 0px 20px 0px;
-}
-.nav-settings > li {
- list-style: none;
- background-color: #282828;
- width: 100%;
- max-width: 340px;
- min-width: 200px;
- border-top: 1px solid #2d2d2d;
-}
-.nav-settings > li > a {
- border-bottom: 1px solid #232323;
- display: block;
- padding: 15px 15px 15px 15px;
- color: #999;
- -webkit-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- transition: all 0.3s ease;
-}
-.nav-settings > li > a:hover,
-.nav-settings > li > a:focus {
- color: #eee;
- background-color: #2f2f2f;
-}
-.nav-settings > .active > a,
-.nav-settings > .active > a:hover,
-.nav-settings > .active > a:focus {
- color: #f9be03;
- background-color: #2f2f2f;
-}
-.stacked-configs,
-.stacked-configs ul {
- margin: 0px 0px 20px 0px;
-}
-.stacked-configs > li {
- margin: 0;
- list-style: none;
- background-color: #282828;
- width: 100%;
- min-width: 320px;
- max-width: 900px;
-}
-.stacked-configs > li > span {
- display: block;
- padding: 8px 20px 8px 15px;
- color: #eee;
- border-left: 2px solid #444;
- border-top: 1px solid #2d2d2d;
- -webkit-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- transition: all 0.3s ease;
-}
-.stacked-configs > li > span:hover,
-.stacked-configs > li > span:focus {
- color: #eee;
- background-color: #2f2f2f;
-}
-.stacked-configs > li > span > a.toggle-right,
-.stacked-configs > li > span > span.toggle-right {
- float: right;
- color: #999;
- padding-left: 10px;
-}
-.stacked-configs > li > span > a.toggle-left,
-.stacked-configs > li > span > span.toggle-left {
- float: left;
- color: #444;
- padding-right: 8px;
-}
-.stacked-configs > li > span > a:hover {
- color: #eee;
-}
-.stacked-configs > li > span > a.active,
-.stacked-configs > li > span > span.active {
- color: #f9be03;
-}
-.stacked-configs > li.mobile-device > span > a.toggle-left,
-.stacked-configs > li.mobile-device > span > span.toggle-left {
- color: #999;
-}
-.accordion {
- width: 100%;
- max-width: 900px;
- margin: 0px 0px 20px 0px;
- background: #282828;
- list-style: none;
-}
-.accordion li {
- margin: 0;
-}
-.accordion li .link {
- cursor: pointer;
- display: block;
- padding: 8px 12px 8px 12px;
- color: #999;
- border-bottom: 1px solid #2d2d2d;
- position: relative;
- -webkit-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- transition: all 0.3s ease;
-}
-.accordion li .link:hover,
-.accordion li .link:hover i.fa {
- background: #2f2f2f;
-}
-.accordion li .link i.fa {
- color: #999;
-}
-.accordion li .link span.toggle-left {
- padding-right: 5px;
-}
-.accordion li .link span.toggle-right {
- float: right;
- padding-left: 10px;
-}
-.accordion li:last-child .link {
- border-bottom: 0;
-}
-.accordion li .fa-chevron-down {
- color: #999;
- -webkit-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- transition: all 0.3s ease;
-}
-.accordion li.open .link,
-.accordion li.open .link i.fa {
- color: #f9be03;
-}
-.accordion li.open .fa-chevron-down {
- color: #f9be03;
- -webkit-transform: rotate(180deg);
- -ms-transform: rotate(180deg);
- -o-transform: rotate(180deg);
- transform: rotate(180deg);
-}
-.submenu {
- display: none;
- background: #2d2d2d;
- list-style: none;
- margin: 0px;
- padding: 20px;
-}
-.submenu li {
- border-bottom: 1px solid #2f2f2f;
-}
-.submenu a {
- display: block;
- text-decoration: none;
- color: #d9d9d9;
- padding: 12px;
- -webkit-transition: all 0.25s ease;
- -o-transition: all 0.25s ease;
- transition: all 0.25s ease;
-}
-.submenu a:hover {
- background: #f9be03;
- color: #eee;
-}
-.ajaxMsg {
- background-color: rgba(255,255,255,0.075);
- color: #999999;
- display: none;
- font-size: 14px;
- right: 10px;
- padding: 10px 10px;
- position: fixed;
- text-align: center;
- bottom: 10px;
- min-height: 32px;
- width: 400px;
- z-index: 9999;
-}
-.ajaxMsg .msg {
- line-height: normal;
- padding-left: 20px;
-}
-.ajaxMsg .loader {
- position: relative;
- top: 2px;
-}
-.ajaxMsg .success {
- text-align: left;
-}
-.ajaxMsg .error {
- background-color: rgba(255,0,0,0.5);
- font-size: 20px;
- text-align: left;
-}
-.ajaxMsg .ui-icon {
- display: inline-block;
- margin-left: -20px;
- top: 2px;
- position: relative;
- margin-right: 3px;
-}
-.dataTables_processing {
- background-color: grey;
- display: none;
- font-size: 14px;
- right: 10px;
- padding: 10px 10px;
- position: fixed;
- text-align: center;
- bottom: 10px;
- min-height: 32px;
- width: 250px;
- z-index: 9999;
-}
-.dataTables_paginate li {
- margin: 0;
-}
-div.dataTables_info {
- white-space: normal !important;
-}
-.tooltip.top .tooltip-arrow {
- border-top-color: #eee;
-}
-.tooltip.right .tooltip-arrow {
- border-right-color: #eee;
-}
-.tooltip.bottom .tooltip-arrow {
- border-bottom-color: #eee;
-}
-.tooltip.left .tooltip-arrow {
- border-left-color: #eee;
-}
-.tooltip-inner {
- max-width: 250px;
- color: #000;
- background: #eee;
- border: 0;
- font-weight: bold;
- border-radius: 2px;
-}
-.inactive-library-tooltip,
-.inactive-user-tooltip {
- display: inline-block;
- position: relative;
- width: 100%;
- height: 100%;
-}
-.inactive-library-tooltip i.fa,
-.inactive-user-tooltip i.fa {
- color: #E5A00D;
- position: absolute;
- right: 0;
- bottom: 0;
- text-shadow: 0 0 2px rgba(0,0,0,.5);
-}
-.sign-out-tooltip:hover {
- color: #E5A00D;
- cursor: pointer;
-}
-.history-thumbnail-popover {
- z-index: 2000;
- padding: 0;
- border: 0;
-}
-.history-thumbnail-popover.popover.left {
- margin-left: -15px;
-}
-.history-thumbnail-popover.popover.right {
- margin-left: 15px;
-}
-.history-thumbnail-popover .popover-content {
- color: #000;
- padding: 0;
-}
-.history-thumbnail {
- background-position: center;
- background-size: cover;
- width: 80px;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- -webkit-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- -moz-box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
- box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1);
-}
-.channel-thumbnail-popover {
- z-index: 2000;
- padding: 0;
- border: 0;
-}
-.channel-thumbnail-popover.popover.left {
- margin-left: -15px;
-}
-.channel-thumbnail-popover.popover.right {
- margin-left: 15px;
-}
-.channel-thumbnail-popover .popover-content {
- color: #000;
- padding: 0;
-}
-.channel-thumbnail {
- background-color: #868b8b;
- background-position: center;
- background-size: contain;
- background-origin: content-box;
- background-repeat: no-repeat;
- height: 50px;
- width: 50px;
- padding: 3px;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
-}
-.channel-thumbnail-popover .arrow:after {
- border-right-color: #868b8b !important;
-}
-.edit-user-toggles,
-.edit-library-toggles {
- padding-right: 10px;
-}
-.edit-user-toggles > input[type='checkbox'],
-.edit-library-toggles > input[type='checkbox'] {
- display: none;
-}
-.edit-user-toggles > input[type='checkbox'] + label,
-.edit-library-toggles > input[type='checkbox'] + label {
- color: #444;
- cursor: pointer;
-}
-.edit-user-toggles > input[type='checkbox']:checked + label,
-.edit-library-toggles > input[type='checkbox']:checked + label {
- color: #eee;
- cursor: pointer;
-}
-.edit-user-name > input[type='text'] {
- margin: 0;
-}
-.noTransition
-{
- -moz-transition: none !important;
- -webkit-transition: none !important;
- -o-transition: none !important;
- transition: none !important;
-}
-#users-to-delete > li,
-#users-to-purge > li,
-#libraries-to-delete > li,
-#libraries-to-purge > li {
- color: #e9a049;
-}
-#updatebar, #token_error_bar {
- background-color: #444;
- opacity: 0.95;
- color: #999999;
- font-size: 14px;
- right: 10px;
- padding: 10px 10px;
- position: fixed;
- text-align: center;
- bottom: 10px;
- min-height: 22px;
- width: 400px;
- z-index: 9999;
- display: block;
-}
-#updatebar .msg, #token_error_bar .msg {
- line-height: normal;
- padding-left: 20px;
-}
-#updatebar .loader, #token_error_bar .loader {
- position: relative;
- top: 2px;
-}
-#updatebar.success, #token_error_bar.success {
- padding: 15px 10px;
- text-align: left;
-}
-#updatebar.error, #token_error_bar.error {
- padding: 15px 10px;
- text-align: left;
-}
-#updatebar .ui-icon, #token_error_bar .ui-icon {
- display: inline-block;
- margin-left: -20px;
- top: 2px;
- position: relative;
- margin-right: 3px;
-}
-#updatebar a:hover, #token_error_bar a:hover {
- color: #e9a049;
-}
-#token_error_bar {
- background-color: rgba(255,0,0,0.5) !important;
-}
-.body-container {
- position: absolute;
- top: 50px;
- right: 0;
- bottom: 0;
- left: 0;
- overflow: auto;
- -webkit-overflow-scrolling: touch;
-}
-::-webkit-scrollbar {
- width: 15px;
-}
-::-webkit-scrollbar-track {
- background-color: rgba(0,0,0,.2);
-}
-::-webkit-scrollbar-thumb {
- min-height: 50px;
- background-color: rgba(255,255,255,.15);
- border: 3px solid transparent;
- border-radius: 8px;
- background-clip: padding-box;
-}
-pre::-webkit-scrollbar-track {
- background-color: rgba(255,255,255,.2);
-}
-pre::-webkit-scrollbar-thumb {
- background-color: rgba(0,0,0,.15);
-}
-#currentActivity,
-#home-stats,
-#library-stats {
- margin-left: -25px;
-}
-#currentActivity > *,
-#home-stats > *,
-#library-stats > * {
- margin-left: 25px;
-}
-
-@media only screen
- and (min-width: 300px)
- and (max-width: 450px) {
- .home-platforms-instance {
- width: calc(100% - 20px);
- }
- .dashboard-activity-instance,
- .dashboard-stats-instance {
- width: 100%;
- }
- #currentActivity,
- #home-stats,
- #library-stats {
- margin-right: 25px;
- }
-}
-@media only screen
- and (min-width: 300px)
- and (max-width: 740px) {
- .header-bar {
- display: block;
- float: none !important;
- }
- .button-bar {
- float: left !important;
- clear: both;
- margin-top: 5px;
- }
- .button-bar > div,
- .button-bar > button,
- .button-bar > span {
- float: left !important;
- clear: both !important;
- margin-top: 10px;
- }
- .button-bar > div > button.btn {
- float: left !important;
- clear: both !important;
- }
- .home-padded-header .button-bar {
- margin-top: 0;
- margin-bottom: 15px;
- }
-}
-@media only screen
- and (min-width: 740px)
- and (max-width: 1280px) {
- .header-bar {
- display: block;
- float: none !important;
- }
- .button-bar {
- float: left !important;
- clear: both;
- margin-top: 5px;
- }
- .button-bar .btn-group,
- .button-bar > button.btn {
- margin-right: 3px;
- }
- .button-bar > div,
- .button-bar > button,
- .button-bar > span {
- float: left !important;
- margin-top: 10px;
- }
- .button-bar > div > button.btn {
- float: left !important;
- clear: both !important;
- }
- .home-padded-header .button-bar {
- float: left !important;
- margin-top: 0;
- margin-bottom: 15px;
- }
-}
-#search_form {
- width: 270px;
- padding: 8px 15px;
-}
-#search_form span.input-textbox {
- overflow: hidden;
- width: 200px;
- height: 34px;
- display: inline-flex;
- float: right;
-}
-#search_form #query {
- width: 0;
- height: 34px;
- margin-top: 0;
- float: right;
- position: relative;
- right: -200px;
- border-radius: 3px 0 0 3px;
-}
-#search_form #query.active {
- width: 200px;
- right: 0px;
-}
-#search_form #search_button.btn-inactive {
- background-color: #000;
- border: 1px solid rgba(0,0,0,0);
- -webkit-transition: background 0.3s;
- -moz-transition: background 0.3s;
- -ms-transition: background 0.3s;
- -o-transition: background 0.3s;
- transition: background 0.3s;
-}
-@media (max-width: 767px) {
- #search_form {
- width: 100%;
- }
- #search_form span.input-textbox {
- width: 100%;
- }
- #search_form #query {
- width: 100%;
- right: 0;
- }
- #search_form #query.active {
- width: 100%;
- right: 0px;
- }
-}
-#update_search_form div.input-group {
- display: inline-table;
- vertical-align: middle;
- max-width: 250px;
-}
-#update_search_form #update_query {
- margin: 5px 0 0 0.5em;
-}
-.notification-params {
- width: 100%;
- margin-top: 10px;
- background-color: #282828;
-}
-.notification-params th {
- padding-left: 10px;
- height: 30px;
-}
-.notification-params td {
- height: 25px;
-}
-.notification-params td:first-child {
- padding-left: 10px;
- width: 250px;
-}
-.notification-params.time-options td:first-child {
- padding-left: 10px;
- width: 125px;
-}
-.notification-params.time-options td:nth-child(2) {
- padding-left: 10px;
- width: 275px;
-}
-.notification-params td:not(:first-child) {
- padding-right: 10px;
-}
-.notification-params tr:nth-child(odd) td {
- background-color: rgba(255,255,255,0.035);
-}
-.notification-params tr:nth-child(even) td {
- background-color: rgba(255,255,255,0.010);
-}
-.activity-queue {
- width: 100%;
- margin-top: 10px;
- background-color: #282828;
-}
-.activity-queue th {
- padding-left: 10px;
- height: 30px;
-}
-.activity-queue th:first-child {
- width: 268px;
-}
-.activity-queue th:nth-child(2) {
- width: 125px;
-}
-.activity-queue th:nth-child(3) {
- width: 175px;
-}
-.activity-queue td {
- height: 25px;
- padding: 5px 10px;
-}
-.activity-queue tr:nth-child(odd) td {
- background-color: rgba(255,255,255,0.035);
-}
-.activity-queue tr:nth-child(even) td {
- background-color: rgba(255,255,255,0.010);
-}
-.card-sortable {
- height: 36px;
- padding: 0 20px 0 0;
- line-height: 34px;
- cursor: move;
- cursor: -webkit-grab;
- cursor: grab;
- border-bottom: 1px solid #232323;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- -o-user-select: none;
- user-select: none;
-}
-.card {
- position: relative;
- background-color: #282828;
- border-top: 1px solid #2d2d2d;
-}
-.card label {
- font-weight: normal;
-}
-.card-handle {
- display: inline-block;
- width: 30px;
- margin-right: 10px;
- color: #444;
- text-align: center;
- background-color: #2f2f2f;
-}
-.selectize-input input[type='text'] {
- height: 20px;
-}
-.selectize-input.disabled, .selectize-input.disabled * {
- cursor: not-allowed !important;
-}
-.small-muted {
- font-size: small;
- color: #777;
-}
-.config-info-table,
-.config-scheduler-table {
- width: 100%
-}
-.config-info-table td,
-.config-info-table th,
-.config-scheduler-table td,
-.config-scheduler-table th {
- padding-bottom: 5px;
-}
-.config-info-table td:first-child {
- width: 150px;
-}
-.config-scheduler-table td:first-child {
- width: 225px;
-}
-.config-scheduler-table th {
- color: #eee;
-}
-a.no-highlight {
- color: #777;
-}
-a.no-highlight:hover {
- color: #eee;
-}
-.top-line {
- border-top: 1px dotted #777;
- padding-top: 5px;
-}
-.help-bold {
- font-weight: bold;
- color: #eee;
-}
-.save-button {
- margin-top: 15px;
-}
-.nav-dashboard > li {
- float: left;
-}
-.btn-gray.disabled,
-.btn-gray.disabled:focus,
-.btn-gray.disabled:hover,
-.btn-gray.disabled:active {
- color: #323232;
- cursor: default;
-}
-.nav-header > li > a:focus,
-.nav-header > li > a:hover {
- background-color: transparent;
-}
-#recently-added-row-scroller,
-#recently-watched-row-scroller {
- position: relative;
- height: 265px;
- margin-bottom: 25px;
-}
-
-@media (min-width: 768px) {
- .login-container {
- max-width: 750px;
- }
- .modal.wide .modal-dialog {
- width: 750px;
- }
-}
-@media (min-width: 992px) {
- .login-container {
- max-width: 970px;
- }
-}
-@media (min-width: 1200px) {
- .login-container {
- max-width: 1170px;
- }
-}
-.login-body-container {
- margin: 50px 0;
-}
-.login-container {
- margin-right: auto;
- margin-left: auto;
- padding-left: 15px;
- padding-right: 15px;
-}
-.login {
- margin: 0 auto;
-}
-.login-logo {
- margin: 0 auto 50px auto;
- text-align: center;
-}
-.login-container .login-method-header {
- text-align: center;
- font-weight: 600;
- text-transform: uppercase;
-}
-.login-container .form-group {
- margin-bottom: 20px;
-}
-.login-container .form-control {
- height: 38px;
- line-height: 1.5em;
-}
-.login-container .form-footer {
- margin-top: 40px;
-}
-.login-container .login-button {
- float: right;
- text-transform: uppercase;
- text-shadow: 0 -1px 1px rgba(0,0,0,.4),0 0 15px rgba(0,0,0,.2);
-}
-.login-container .remember-group {
- color: #999;
- display: inline-block;
- margin-top: 7.5px;
-}
-.login-container .remember-group .control-label {
- display: inline;
- margin-bottom: 0;
- font-weight: 400;
- cursor: pointer;
-}
-.login-divider {
- text-align: center;
- border-bottom: 1px solid #555;
- line-height: 0.1em;
- margin: 50px auto;
- max-width: 400px;
- text-transform: uppercase;
-}
-.login-divider span {
- background: #1f1f1f;
- padding: 0 15px;
- color: #999;
-}
-.login-button-plex {
- text-align: center;
-}
-.login-button-plex .remember-group {
- margin-top: 20px;
-}
-.login-button-plex button#sign-in-plex {
- float: none;
-}
-.login-alert {
- text-align: center;
- padding: 8px;
- display: none;
-}
-#admin-login-modal .form-group label {
- font-weight: 400;
- color: #999;
-}
-#admin-login-modal .remember-group {
- float: left;
- color: #999;
-}
-#admin-login-modal .remember-group .control-label {
- display: inline;
- margin-bottom: 0;
- font-weight: 400;
- cursor: pointer;
-}
-.datatable-wrap {
- min-width: 150px;
- max-width: 250px;
-}
-.inline-pre {
- font-family: monospace;
- margin: 0 2px;
- padding: 2px 5px;
- font-size: 13px;
- color: #eee;
- background-color: #555;
- border: 0px solid #444;
- border-radius: 3px;
-}
-.overlay-refresh-image {
- opacity: 0;
- color: #000;
- font-size: 16px;
- float: left;
- position: absolute;
- top: 0px;
- right: 10px;
- z-index: 1;
- transition: all .1s cubic-bezier(.4,0,1,1);
- -webkit-transition: all .1s cubic-bezier(.4,0,1,1);
- -moz-transition: all .1s cubic-bezier(.4,0,1,1);
- -o-transition: all .1s cubic-bezier(.4,0,1,1);
- text-shadow: -1px -1px 0 #eee, 1px -1px 0 #eee, -1px 1px 0 #eee, 1px 1px 0 #eee;
-}
-.overlay-refresh-image.left {
- left: 10px;
-}
-.overlay-refresh-image.info-art {
- color: #999;
- top: 15px;
- right: 25px;
- opacity: 1;
- text-shadow: none;
- cursor: pointer;
-}
-.overlay-refresh-image.info-art:hover {
- color: #eee;
- text-shadow: none;
-}
-a:hover .overlay-refresh-image {
- opacity: .25;
- top: 8px;
-}
-a:hover .overlay-refresh-image:hover {
- opacity: .9;
-}
-.smart-collection-image,
-.smart-playlist-image {
- float: left;
- position: absolute;
- top: 5px;
- left: 5px;
- background-color: #8e6191;
- border-radius: 4px;
- color: #fff;
- font-size: 16px;
- z-index: 1;
- width: 32px;
- padding: 5px;
- text-align: center;
-}
-#ip_error, #isp_error {
- color: #aaa;
- display: none;
- text-align: center;
- padding-top: 10px;
- padding-bottom: 10px;
-}
-#plexpy-notifiers-table .friendly_name,
-#notifier-config-modal span.notifier_id,
-#plexpy-newsletters-table .friendly_name,
-#newsletter-config-modal span.newsletter_id,
-#plexpy-mobile-devices-table .friendly_name,
-#mobile-device-config-modal span.notifier_id {
- color: #777;
-}
-#notifier-config-modal .nav-tabs,
-#newsletter-config-modal .nav-tabs {
- margin-bottom: 10px;
- padding-left: 15px;
- border-bottom: 1px solid #444;
-}
-#notifier-config-modal .nav-tabs > li,
-#newsletter-config-modal .nav-tabs > li {
- margin: 0 0 -1px 0;
-}
-#notifier-config-modal .nav-tabs > li > a,
-#newsletter-config-modal .nav-tabs > li > a {
- padding: 5px 10px;
- color: #737373;
-}
-#notifier-config-modal .nav-tabs > li > a:hover,
-#newsletter-config-modal .nav-tabs > li > a:hover {
- border-color: #444;
- background: #222;
-}
-#notifier-config-modal .nav-tabs > li.active > a,
-#notifier-config-modal .nav-tabs > li.active > a:hover,
-#notifier-config-modal .nav-tabs > li.active > a:focus,
-#newsletter-config-modal .nav-tabs > li.active > a,
-#newsletter-config-modal .nav-tabs > li.active > a:hover,
-#newsletter-config-modal .nav-tabs > li.active > a:focus {
- color: #eee;
- background: #222;
-}
-#notifier-config-modal .nav-tabs > li.active > a,
-#notifier-config-modal .nav-tabs > li.active > a:hover,
-#notifier-config-modal .nav-tabs > li.active > a:focus,
-#newsletter-config-modal .nav-tabs > li.active > a,
-#newsletter-config-modal .nav-tabs > li.active > a:hover,
-#newsletter-config-modal .nav-tabs > li.active > a:focus {
- border: 1px solid #444;
- border-bottom-color: transparent;
-}
-#newsletter-config-modal #custom_cron {
- display: inline-block;
- width: initial;
- height: 32px;
- margin-right: 5px;
- margin-top: 4px;
-}
-#newsletter-config-modal #cron-widget {
- display: inline-block;
- margin-top: 1px;
-}
-#newsletter-config-modal #cron-widget select.cron-select {
- width: initial;
- display: inline;
- height: 32px;
- margin-top: 4px;
-}
-#newsletter-config-modal #cron-widget select.cron-select[name=cron-period] option[value=minute],
-#newsletter-config-modal #cron-widget select.cron-select[name=cron-period] option[value=hour] {
- display: none !important;
-}
-.git-group input.form-control {
- width: 50%;
-}
-.git-group select.form-control {
- width: 50%;
- height: 32px;
-}
-#changelog-modal .modal-body > h2 {
- margin-bottom: 10px;
- padding-bottom: 10px;
- border-bottom: 1px solid #444;
- font-size: 18px;
-}
-#changelog-modal .modal-body > ul {
- padding-left: 25px;
- margin-bottom: 30px;
-}
-#changelog-modal ul {
- padding-left: 20px;
-}
-.app-badge {
- float: left;
- display: inline-block;
- height: 46px;
- margin-right: 10px;
- margin-bottom: 5px;
-}
-.app-badge img {
- height: 46px;
- vertical-align: middle;
-}
-
-.svg-icon {
- background-size: calc(100% - 20px) calc(100% - 20px) !important;
- background-origin: content-box !important;
- background-repeat: no-repeat !important;
- background-position: center !important;
-}
-.platform-alexa {
- background-color: #00caff;
- background-image: url(../images/platforms/alexa.svg);
-}
-.platform-android {
- background-color: #3ddc84;
- background-image: url(../images/platforms/android.svg);
-}
-.platform-atv {
- background-color: #a2aaad;
- background-image: url(../images/platforms/atv.svg);
-}
-.platform-chrome {
- background-color: #db4437;
- background-image: url(../images/platforms/chrome.svg);
-}
-.platform-chromecast {
- background-color: #4285f4;
- background-image: url(../images/platforms/chromecast.svg);
-}
-.platform-default {
- background-color: #e5a00d;
- background-image: url(../images/platforms/default.svg);
-}
-.platform-dlna {
- background-color: #4ba32f;
- background-image: url(../images/platforms/dlna.svg);
-}
-.platform-firefox {
- background-color: #ff7139;
- background-image: url(../images/platforms/firefox.svg);
-}
-.platform-gtv {
- background-color: #008bcf;
- background-image: url(../images/platforms/gtv.svg);
-}
-.platform-ie {
- background-color: #18bcef;
- background-image: url(../images/platforms/ie.svg);
-}
-.platform-ios {
- background-color: #a2aaad;
- background-image: url(../images/platforms/ios.svg);
-}
-.platform-kodi {
- background-color: #30aada;
- background-image: url(../images/platforms/kodi.svg);
-}
-.platform-lg {
- background-color: #990033;
- background-image: url(../images/platforms/lg.svg);
-}
-.platform-linux {
- background-color: #0099cc;
- background-image: url(../images/platforms/linux.svg);
-}
-.platform-macos {
- background-color: #a2aaad;
- background-image: url(../images/platforms/macos.svg);
-}
-.platform-msedge {
- background-color: #0078d7;
- background-image: url(../images/platforms/msedge.svg);
-}
-.platform-opera {
- background-color: #fa1e4e;
- background-image: url(../images/platforms/opera.svg);
-}
-.platform-playstation {
- background-color: #003087;
- background-image: url(../images/platforms/playstation.svg);
-}
-.platform-plex {
- background-color: #e5a00d;
- background-image: url(../images/platforms/plex.svg);
-}
-.platform-plexamp {
- background-color: #e5a00d;
- background-image: url(../images/platforms/plexamp.svg);
-}
-.platform-roku {
- background-color: #673293;
- background-image: url(../images/platforms/roku.svg);
-}
-.platform-safari {
- background-color: #00d3f9;
- background-image: url(../images/platforms/safari.svg);
-}
-.platform-samsung {
- background-color: #034ea2;
- background-image: url(../images/platforms/samsung.svg);
-}
-.platform-synclounge {
- background-color: #151924;
- background-image: url(../images/platforms/synclounge.svg);
-}
-.platform-tivo {
- background-color: #00a7e1;
- background-image: url(../images/platforms/tivo.svg);
-}
-.platform-wiiu {
- background-color: #03a9f4;
- background-image: url(../images/platforms/wiiu.svg);
-}
-.platform-windows {
- background-color: #0078d7;
- background-image: url(../images/platforms/windows.svg);
-}
-.platform-wp {
- background-color: #68217a;
- background-image: url(../images/platforms/windows.svg);
-}
-.platform-xbmc {
- background-color: #3b4872;
- background-image: url(../images/platforms/kodi.svg);
-}
-.platform-xbox {
- background-color: #107c10;
- background-image: url(../images/platforms/xbox.svg);
-}
-.platform-alexa-rgba {
- background-color: rgba(0, 202, 255, 0.40);
-}
-.platform-android-rgba {
- background-color: rgba(61, 220, 132, 0.40);
-}
-.platform-atv-rgba {
- background-color: rgba(162, 170, 173, 0.40);
-}
-.platform-chrome-rgba {
- background-color: rgba(219, 68, 55, 0.40);
-}
-.platform-chromecast-rgba {
- background-color: rgba(66, 133, 244, 0.40);
-}
-.platform-default-rgba {
- background-color: rgba(229, 160, 13, 0.40);
-}
-.platform-dlna-rgba {
- background-color: rgba(75, 163, 47, 0.40);
-}
-.platform-firefox-rgba {
- background-color: rgba(255, 113, 57, 0.40);
-}
-.platform-gtv-rgba {
- background-color: rgba(0, 139, 207, 0.40);
-}
-.platform-ie-rgba {
- background-color: rgba(24, 188, 239, 0.40);
-}
-.platform-ios-rgba {
- background-color: rgba(162, 170, 173, 0.40);
-}
-.platform-kodi-rgba {
- background-color: rgba(48, 170, 218, 0.40);
-}
-.platform-lg-rgba {
- background-color: rgba(153, 0, 51, 0.40);
-}
-.platform-linux-rgba {
- background-color: rgba(0, 153, 204, 0.40);
-}
-.platform-macos-rgba {
- background-color: rgba(162, 170, 173, 0.40);
-}
-.platform-msedge-rgba {
- background-color: rgba(0, 120, 215, 0.40);
-}
-.platform-opera-rgba {
- background-color: rgba(250, 30, 78, 0.40);
-}
-.platform-playstation-rgba {
- background-color: rgba(0, 48, 135, 0.40);
-}
-.platform-plex-rgba {
- background-color: rgba(229, 160, 13, 0.40);
-}
-.platform-plexamp-rgba {
- background-color: rgba(229, 160, 13, 0.40);
-}
-.platform-roku-rgba {
- background-color: rgba(103, 50, 147, 0.40);
-}
-.platform-safari-rgba {
- background-color: rgba(0, 211, 249, 0.40);
-}
-.platform-samsung-rgba {
- background-color: rgba(3, 78, 162, 0.40);
-}
-.platform-synclounge-rgba {
- background-color: rgba(21, 25, 36, 0.40);
-}
-.platform-tivo-rgba {
- background-color: rgba(0, 167, 225, 0.40);
-}
-.platform-wiiu-rgba {
- background-color: rgba(3, 169, 244, 0.40);
-}
-.platform-windows-rgba {
- background-color: rgba(0, 120, 215, 0.40);
-}
-.platform-wp-rgba {
- background-color: rgba(104, 33, 122, 0.40);
-}
-.platform-xbmc-rgba {
- background-color: rgba(59, 72, 114, 0.40);
-}
-.platform-xbox-rgba {
- background-color: rgba(16, 124, 16, 0.40);
-}
-.library-movie {
- background-image: url(../images/libraries/movie.svg);
-}
-.library-show {
- background-image: url(../images/libraries/show.svg);
-}
-.library-artist {
- background-image: url(../images/libraries/artist.svg);
-}
-.library-photo {
- background-image: url(../images/libraries/photo.svg);
-}
-.library-video {
- background-image: url(../images/libraries/video.svg);
-}
-.library-live {
- background-image: url(../images/libraries/live.svg);
-}
-.stats-most_concurrent {
- background-image: url(../images/icons/most-concurrent-streams.svg);
-}
-.rating-image {
- height: 20px;
- margin-left: 10px;
- margin-right: 5px;
- display: inline-block;
- background-origin: content-box !important;
- background-repeat: no-repeat !important;
- background-position: left !important;
-}
-.rating-imdb {
- width: 36px;
- background-image: url(../images/rating/imdb.svg);
- background-size: auto 20px;
-}
-.rating-themoviedb {
- width: 38px;
- background-image: url(../images/rating/themoviedb.svg);
- background-size: auto 16px;
-}
-.rating-thetvdb {
- width: 36px;
- background-image: url(../images/rating/thetvdb.svg);
- background-size: auto 36px;
-}
-.rating-rottentomatos-ripe {
- width: 17px;
- background-image: url(../images/rating/tomato-ripe.svg);
- background-size: auto 20px;
-}
-.rating-rottentomatos-rotten {
- width: 17px;
- background-image: url(../images/rating/tomato-rotten.svg);
- background-size: auto 20px;
-}
-.rating-rottentomatos-upright {
- width: 16px;
- background-image: url(../images/rating/popcorn-upright.svg);
- background-size: auto 20px;
-}
-.rating-rottentomatos-spilled {
- width: 19px;
- background-image: url(../images/rating/popcorn-spilled.svg);
- background-size: auto 20px;
-}
-.transparent {
- background-color: transparent !important;
-}
-.no-image {
- background-image: none !important;
-}
-#info-modal .stream-info-current {
- color: #aaa;
- text-align: center;
- padding-bottom: 10px;
-}
-#info-modal .stream-info-item {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- align-items: baseline;
- width: 100%;
- margin-bottom: 5px;
-}
-#info-modal .stream-info-item .sub-heading {
- height: 100%;
- width: 75px;
- color: #aaa;
- font-size: 10px;
- text-align: right;
- text-transform: uppercase;
- line-height: 14px;
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
-}
-#info-modal .stream-info-item .sub-value {
- color: #eee;
- font-weight: bold;
- margin-left: 10px;
- text-align: left;
- line-height: 14px;
- -webkit-flex-grow: 1;
- flex-grow: 1;
-}
-.stream-info {
- width: 100%;
- margin-top: 10px;
- background-color: #282828;
- table-layout: fixed;
-}
-.stream-info .heading {
- color: #E5A00D;
- text-transform: uppercase;
- font-size: 15px;
- font-weight: bold !important;
-}
-.stream-info th:first-child {
- width: 125px;
- height: 30px;
- color: #eee;
- font-size: 12px;
- text-align: right;
- text-transform: uppercase;
-}
-.stream-info th:not(:first-child) {
- text-align: center;
- font-weight: normal;
-}
-.stream-info td {
- height: 25px;
-}
-.stream-info td:first-child {
- color: #aaa;
- font-size: 10px;
- text-align: right;
- text-transform: uppercase;
-}
-.stream-info td:not(:first-child) {
- text-align: center;
-}
-.stream-info tr:nth-child(odd) td {
- background-color: rgba(255,255,255,0.035);
-}
-.stream-info tr:nth-child(even) td {
- background-color: rgba(255,255,255,0.010);
-}
-.number-input {
- margin: 0 !important;
- width: 55px !important;
- height: 34px !important;
- -moz-appearance: textfield;
-}
-.number-input::-webkit-inner-spin-button,
-.number-input::-webkit-outer-spin-button {
- -webkit-appearance: none;
- margin: 0;
-}
-.newsletter-time_frame .input-group-addon {
- height: 32px;
- width: 52px;
- margin-top: 5px;
- line-height: 1.42857143;
-}
-.newsletter-time_frame input.form-control {
- width: calc(50% - 37px);
-}
-.newsletter-time_frame select.form-control {
- width: calc(50% - 15px);
- height: 32px;
-}
-.newsletter-loader-container {
- font-family: 'Open Sans', Arial, sans-serif;
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
-}
-.newsletter-loader-message {
- color: #282A2D;
- text-align: center;
- position: absolute;
- left: 50%;
- top: 25%;
- transform: translate(-50%, -50%);
-}
-.newsletter-loader {
- border: 5px solid #ccc;
- -webkit-animation: spin 1s linear infinite;
- animation: spin 1s linear infinite;
- border-top: 5px solid #282A2D;
- border-radius: 50%;
- width: 50px;
- height: 50px;
- position: relative;
- left: calc(50% - 25px);
-}
-@keyframes spin {
- 0% { transform: rotate(0deg); }
- 100% { transform: rotate(360deg); }
-}
-a[data-tab-destination] {
- cursor: pointer;
-}
-.modal-config-section {
- margin-top: 10px !important;
- padding-top: 10px;
- border-top: 1px solid #444;
-}
-.newsletter-logo {
- margin: 0 auto 50px auto;
- text-align: center;
-}
-.pointer {
- cursor: pointer;
-}
-
-.iframe-container {
- width: 100%;
- height: calc(100vh - 200px);
- position: relative;
-}
-.iframe-overlay {
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- background: url(../images/discord-overlay.png) no-repeat;
- background-size: cover;
- border: 1px solid #36393e;
-}
-.iframe-button-container {
- margin: 0;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
-}
-.iframe-button {
- color: #eee;
- border-radius: 20px;
- text-align: center;
- cursor: pointer;
- font-size: 15px;
- height: 28px;
- line-height: 28px;
- min-width: 200px;
- transition: box-shadow 0.3s ease;
- padding: 0 15px;
- background: rgba(114, 137, 218, 0.4);
- text-transform: uppercase;
- text-decoration: none;
- display: block;
-}
-.iframe-button:hover,
-.iframe-button:focus {
- color: #eee;
- box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 99999px inset, rgba(0, 0, 0, 0.2) 0px 1px 5px 0px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 3px 1px -2px;
-}
-.iframe-button:active {
- box-shadow: rgba(255, 255, 255, 0.1) 0px 0px 0px 99999px inset, rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px;
-}
-.iframe {
- width: 100%;
- height: 100%;
- position: inherit;
- display: block;
- border: 0;
-}
-.fa-blank {
- visibility: hidden;
-}
-
-#browser-warning {
- height: 25px;
- width: 100%;
- background: #cc7b19;
- text-align: center;
- font-weight: bold;
- padding: 2px 10px;
- position: absolute;
- top: 0;
- z-index: 9999;
-}
-
-.help-block li {
- margin-top: 0;
- color: #737373;
-}
-
-#browse-path-list > li > span > i.fa {
- color: #999;
-}
-
-#tautulli-news .open .news-title,
-#tautulli-news .open .news-date,
-#tautulli-news .accordion li.open .link i.fa {
- color: #eee;
-}
-.news-title,
-.news-date {
- color: #999;
- padding-left: 5px;
-}
-.news-subtitle {
- display: block;
- color: #aaa;
- font-weight: bold;
- margin-bottom: 10px;
-}
-.news-body {
- display: block;
- color: #aaa;
-}
-.news-body p:last-of-type {
- margin-bottom: 0;
-}
-.news-body a {
- display: inline !important;
- background: none !important;
- padding: 0 !important;
- color: #eee;
-}
-.news-body a:hover {
- color: #f9be03;
-}
-
-a.donate-with-crypto,
-a.donate-with-crypto > span {
- background: none;
- border: none;
- border-radius: 0;
- box-sizing: border-box;
- clear: none;
- clip: auto;
- cursor: default;
- display: block;
- float: none;
- height: auto;
- margin: 0;
- max-height: none;
- min-height: none;
- padding: 0;
- opacity: 1;
- text-shadow: none;
- vertical-align: baseline;
- visibility: visible;
- width: auto;
-}
-a.donate-with-crypto {
- user-select: none;
- user-drag: none;
- -webkit-user-drag: none;
- text-decoration: none;
- background: #1652f0 linear-gradient(#1652f0, #0655ab);
- cursor: pointer;
- transition: background 0.2s ease-in-out, padding 0.2s;
- border-radius: 6px;
- display: inline-block;
- height: 40px;
- padding: 9px 15px 11px 15px;
- position: relative;
- min-width: 160px;
-}
-a.donate-with-crypto:hover {
- background: #1652f0;
-}
-a.donate-with-crypto > span {
- color: white;
- font: normal 500 14px/20px -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', 'San Francisco', 'Roboto', 'Segoe UI', 'Helvetica Neue', 'Lucida Grande', sans-serif;
- letter-spacing: 0;
- overflow: hidden;
- text-align: center;
- text-overflow: ellipsis;
- text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
- white-space: nowrap;
-}
-a.donate-with-crypto::after {
- border-radius: 6px;
- box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
- content: '';
- display: block;
- width: 100%;
- height: 100%;
- position: absolute;
- opacity: 1;
- top: 0;
- left: 0;
-}
-
-#api_qr_code {
- width: 100%;
- padding: 0;
- margin: 0 0 10px;
- line-height: 1;
- text-align: center;
- background-color: #eee;
- border: 1px solid #ccc;
- border-radius: 4px;
-}
-
-.docker-mount {
- margin: 20px auto 0 auto;
- position: relative;
-}
\ No newline at end of file
diff --git a/data/interfaces/default/current_activity_header.html b/data/interfaces/default/current_activity_header.html
deleted file mode 100644
index 042450b1..00000000
--- a/data/interfaces/default/current_activity_header.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<%doc>
-USAGE DOCUMENTATION :: PLEASE LEAVE THIS AT THE TOP OF THIS FILE
-
-For Mako templating syntax documentation please visit: http://docs.makotemplates.org/en/latest/
-
-Filename: current_activity_header.html
-Version: 0.1
-Variable names: data [string]
-
-data :: Usable parameters
-
-data Returns the current number of active streams
-
-DOCUMENTATION :: END
-%doc>
-
-% if data != None:
-<%
- s = '('
- if data['direct_play']:
- s += str(data['direct_play']) + ' direct play' + ('s' if data['direct_play'] > 1 else '') + ', '
- if data['direct_stream']:
- s += str(data['direct_stream']) + ' direct stream' + ('s' if data['direct_stream'] > 1 else '') + ', '
- if data['transcode']:
- s += str(data['transcode']) + ' transcode' + ('s' if data['transcode'] > 1 else '') + ', '
- s = s.rstrip(', ')
- s += ')'
-%>
- % if data['stream_count'] == '0':
- Activity
- % elif data['stream_count'] == '1':
- Activity ${data['stream_count']} stream ${s}
- % else:
- Activity ${data['stream_count']} streams ${s}
- % endif
-% else:
-Activity
-% endif
diff --git a/data/interfaces/default/current_activity_instance.html b/data/interfaces/default/current_activity_instance.html
deleted file mode 100644
index e9838b8a..00000000
--- a/data/interfaces/default/current_activity_instance.html
+++ /dev/null
@@ -1,537 +0,0 @@
-<%doc>
-USAGE DOCUMENTATION :: PLEASE LEAVE THIS AT THE TOP OF THIS FILE
-
-For Mako templating syntax documentation please visit: http://docs.makotemplates.org/en/latest/
-
-Filename: current_activity_instance.html
-Version: 0.1
-Variable names: data {dict}
-
-data :: Usable parameters
-
-== Global keys ==
-session_key Returns a unique session id for the active stream
-rating_key Returns the unique identifier for the media item.
-media_index Returns the index of the media item.
-parent_media_index Returns the index of the media item's parent.
-media_type Returns the type of session. Either 'track', 'episode' or 'movie'.
-thumb Returns the location of the item's thumbnail. Use with pms_image_proxy.
-bif_thumb Returns the location of the item's bif thumbnail. Use with pms_image_proxy.
-art Returns the location of the item's artwork
-progress_percent Returns the current progress of the item. 0 to 100.
-user Returns the name of the user owning the session.
-user_id Returns the Plex user id if available.
-machine_id Returns the machine id of the players being used.
-friendly_name Returns the friendlly name of the user owning the session.
-user_thumb Returns the profile picture of the user owning the session.
-state Returns the state of the current session. Either 'playing', 'paused' or 'buffering'.
-title Returns the name of the episode, movie or music track.
-year Returns the year of the episode, movie, or clip.
-ip_address Returns the ip address of the stream.
-player Returns the name of the platform used to play the stream.
-platform Returns the type of platform used to play the stream.
-transcode_throttled Returns true if the transcode session is throttled.
-transcode_progress Returns the current transcode progress of the item. 0 to 100.
-transcode_speed Returns the current transcode speed of the item.
-audio_decision Returns the audio transcode decision. Either 'transcode', 'copy' or 'direct play'.
-audio_codec Returns the name of the audio codec.
-audio_channels Returns the number of audio channels.
-grandparent_title Returns the title of the item's grandparent.
-parent_title Returns the title of the item's parent.
-video_decision Returns the video transcode decision. Either 'transcode', 'copy' or 'direct play'.
-video_codec Returns the name of the video codec.
-height Returns the value of the video height.
-width Returns the value of the video width.
-container Returns the value of the media container.
-bitrate Returns the value of the media bitrate.
-video_resolution Returns the value of the video resolution.
-video_framerate Returns the value of the video framerate.
-video_aspect_ratio Returns the value of the video aspect ratio.
-transcode_audio_channels Returns the amount of audio channels if there is a transcode session.
-transcode_audio_codec Returns the name of the audio codec if there is a transcode session.
-transcode_video_codec Returns the name of the video codec if there is a transcode session.
-transcode_width Returns the video width if there is a transcode session.
-transcode_height Returns the video height if there is a transcode session.
-transcode_container Returns the value of media container if there is a transcode session.
-transcode_protocol Returns the value of media protocol if there is a transcode session.
-indexes Returns true if the media has media indexes and are enabled
-
-DOCUMENTATION :: END
-%doc>
-
-% if session is not None:
-<%
- from collections import defaultdict
- from plexpy.helpers import cast_to_int, get_percent, page, short_season
- from plexpy.common import VIDEO_RESOLUTION_OVERRIDES, AUDIO_CODEC_OVERRIDES, EXTRA_TYPES
- import plexpy
-%>
-<%
- data = defaultdict(lambda: 'Unknown', **session)
- sk = data['session_key']
-
- href = page('info', data['rating_key'])
- parent_href = page('info', data['parent_rating_key'])
- grandparent_href = page('info', data['grandparent_rating_key'])
- user_href = page('user', data['user_id']) if data['user_id'] else '#'
- season = short_season(data['parent_title'])
-%>
-
-
- <%
- if data['live']:
- background_url = page('pms_image_proxy', data['art'], data['rating_key'], 500, 280, 40, '282828', 3, fallback='art-live', refresh=True)
- elif data['channel_stream'] == 0:
- background_url = page('pms_image_proxy', data['art'], data['rating_key'], 500, 280, 40, '282828', 3, fallback='art', refresh=True)
- else:
- background_url = page('pms_image_proxy', data['art'] or data['thumb'], data['rating_key'], 500, 280, 40, '282828', 3, fallback='art', refresh=True, clip=True)
- %>
-
-
- % if data['media_type'] == 'track':
-
- % endif
- % if data['live']:
- % if data['media_type'] == 'movie':
-
-
-
- % elif data['media_type'] == 'episode':
-
-
-
- % else:
-
- % endif
- % elif data['channel_stream'] == 0:
- % if data['media_type'] == 'movie':
-
-
-
- % elif data['media_type'] == 'episode':
-
-
-
- % elif data['media_type'] == 'track':
-
-
-
- % elif data['media_type'] in ('photo', 'clip'):
- % if data['parent_thumb']:
-
- % else:
-
- % endif
- % else:
-
- % endif
- % else:
-
-
- % endif
-
-
- <%
- if not _session['user_group'] == 'admin' or not data['session_id']:
- no_terminate = '-no-terminate'
- else:
- no_terminate = ''
- %>
-
- % if _session['user_group'] == 'admin' and plexpy.CONFIG.PMS_PLEXPASS and data['session_id']:
-
-
-
- % endif
-
-
-
- % if data['media_type'] != 'photo':
-
- % if data['live']:
- ${data['channel_call_sign']} ${data['channel_identifier']}
- % elif data['view_offset']:
- ETA:
-
-
-
-
- /
-
-
- % else:
- ETA: Unknown 0:00 /
-
-
- % endif
-
- % endif
-
-
-
-
- % if data['live']:
-
Live
- % else:
- <% transcode_progress = get_percent(data['transcode_max_offset_available'] * 1000, data['duration']) or data['transcode_progress'] %>
-
${transcode_progress}%
-
${data['progress_percent']}%
- % endif
-
-
-
-
-
-% endif
\ No newline at end of file
diff --git a/data/interfaces/default/edit_library.html b/data/interfaces/default/edit_library.html
deleted file mode 100644
index 8e6d38b1..00000000
--- a/data/interfaces/default/edit_library.html
+++ /dev/null
@@ -1,127 +0,0 @@
-<%doc>
-USAGE DOCUMENTATION :: PLEASE LEAVE THIS AT THE TOP OF THIS FILE
-
-For Mako templating syntax documentation please visit: http://docs.makotemplates.org/en/latest/
-
-Filename: edit_library.html
-Version: 0.1
-Variable names: data [list]
-
-data :: Usable parameters
-
-== Global keys ==
-section_id Returns the library id of the library.
-section_name Returns the name of the library.
-section_type Returns the type of the library.
-library_thumb Returns the thumbnail for the library.
-custom_thumb Returns the custom thumbnail for the library.
-library_art Returns the artwork for the library.
-count Returns the item count for the library.
-parent_count Returns the parent item count for the library.
-child_count Returns the child item count for the library.
-do_notify Returns bool value for whether to send notifications for the library.
-keep_history Returns bool value for whether to keep history for the library.
-deleted_section Returns bool value for whether the library is marked as deleted.
-
-DOCUMENTATION :: END
-%doc>
-
-<%!
- from plexpy import helpers
-%>
-
-% if data != None:
-
-
-
-
-
-
-
-
-
- Keep history
-
-
Uncheck this if you do not want to keep any history on this library's activity.
-
- % if data['section_id']:
-
- % endif
- % if data['deleted_section']:
-
- % endif
-
-
-
-
-
-
-% endif
\ No newline at end of file
diff --git a/data/interfaces/default/edit_user.html b/data/interfaces/default/edit_user.html
deleted file mode 100644
index ebb18867..00000000
--- a/data/interfaces/default/edit_user.html
+++ /dev/null
@@ -1,138 +0,0 @@
-<%doc>
-USAGE DOCUMENTATION :: PLEASE LEAVE THIS AT THE TOP OF THIS FILE
-
-For Mako templating syntax documentation please visit: http://docs.makotemplates.org/en/latest/
-
-Filename: edit_user.html
-Version: 0.1
-Variable names: data [list]
-
-data :: Usable parameters
-
-== Global keys ==
-user_id Returns the user id of the user.
-username Returns the user's username.
-friendly_name Returns the friendly name of the user.
-email Returns the user's email address.
-user_thumb Returns the thumbnail for the user.
-is_home_user Returns bool value for whether the user is part of a Plex Home.
-is_allow_sync Returns bool value for whether the user has sync rights.
-is_restricted Returns bool value for whether the user account is restricted.
-do_notify Returns bool value for whether to send notifications for the user.
-keep_history Returns bool value for whether to keep history for the user.
-allow_guest Returns bool value for whether to allow guest access for the user.
-deleted_user Returns bool value for whether the user is marked as deleted.
-
-DOCUMENTATION :: END
-%doc>
-
-<%!
- from plexpy import helpers
-%>
-
-% if data != None:
-
-
-
-
-
-
-
-
-
- Keep history
-
-
Uncheck this if you do not want to keep any history on this user's activity.
-
-
-
- Allow Guest Access
-
-
Uncheck this if you do not want to allow this user to login to Tautulli.
-
- % if data['user_id']:
-
- % endif
- % if data['deleted_user']:
-
- % endif
-
-
-
-
-
-
-% endif
\ No newline at end of file
diff --git a/data/interfaces/default/export_modal.html b/data/interfaces/default/export_modal.html
deleted file mode 100644
index bdda847a..00000000
--- a/data/interfaces/default/export_modal.html
+++ /dev/null
@@ -1,289 +0,0 @@
-<%doc>
-USAGE DOCUMENTATION :: PLEASE LEAVE THIS AT THE TOP OF THIS FILE
-
-For Mako templating syntax documentation please visit: http://docs.makotemplates.org/en/latest/
-
-Filename: export_modal.html
-Version: 0.1
-Variable names: data [list]
-
-data :: Usable parameters
-
-== Global keys ==
-
-DOCUMENTATION :: END
-%doc>
-<%
- import plexpy
- from plexpy import exporter
- from plexpy.helpers import anon_url
- export = exporter.Export()
- thumb_media_types = ', '.join([export.PLURAL_MEDIA_TYPES[k] for k, v in export.MEDIA_TYPES.items() if v[0]])
- art_media_types = ', '.join([export.PLURAL_MEDIA_TYPES[k] for k, v in export.MEDIA_TYPES.items() if v[1]])
-%>
-
-
-
\ No newline at end of file
diff --git a/data/interfaces/default/fonts/Open-Sans-600/LICENSE.txt b/data/interfaces/default/fonts/Open-Sans-600/LICENSE.txt
deleted file mode 100644
index d6456956..00000000
--- a/data/interfaces/default/fonts/Open-Sans-600/LICENSE.txt
+++ /dev/null
@@ -1,202 +0,0 @@
-
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright [yyyy] [name of copyright owner]
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
diff --git a/data/interfaces/default/fonts/Open-Sans-600/Open-Sans-600.eot b/data/interfaces/default/fonts/Open-Sans-600/Open-Sans-600.eot
deleted file mode 100644
index cbbfa5b0d81e3694403669711a6d0dfc41d6bf64..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 18805
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
QwMQ!xk#yF0e1vDvyA*O)c>n+a
diff --git a/data/interfaces/default/fonts/Open-Sans-600/Open-Sans-600.svg b/data/interfaces/default/fonts/Open-Sans-600/Open-Sans-600.svg
deleted file mode 100644
index 7a3f2dd9..00000000
--- a/data/interfaces/default/fonts/Open-Sans-600/Open-Sans-600.svg
+++ /dev/null
@@ -1,1637 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/data/interfaces/default/fonts/Open-Sans-600/Open-Sans-600.ttf b/data/interfaces/default/fonts/Open-Sans-600/Open-Sans-600.ttf
deleted file mode 100644
index 314e983a4bce3320b1ebeea9d21aeea88eaab52e..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 35240
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
diff --git a/data/interfaces/default/fonts/Open-Sans-600/Open-Sans-600.woff b/data/interfaces/default/fonts/Open-Sans-600/Open-Sans-600.woff
deleted file mode 100644
index c7cdaffa00c690658764b5131ed5fe953ace493e..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 14344
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