##// END OF EJS Templates
Merge pull request #7242 from jdfreder/terminal-fixes...
Brian E. Granger -
r19701:10bcecd7 merge
parent child Browse files
Show More
@@ -0,0 +1,7 b''
1 /*This file contains any manual css for this page that needs to override the global styles.
2 This is only required when different pages style the same element differently. This is just
3 a hack to deal with our current css styles and no new styling should be added in this file.*/
4
5 body {
6 overflow: hidden;
7 }
@@ -1,55 +1,58 b''
1 // Copyright (c) IPython Development Team.
1 // Copyright (c) IPython Development Team.
2 // Distributed under the terms of the Modified BSD License.
2 // Distributed under the terms of the Modified BSD License.
3
3
4 define([
4 define([
5 'base/js/namespace',
5 'base/js/namespace',
6 'jquery',
6 'jquery',
7 'base/js/events',
7 'base/js/events',
8 ], function(IPython, $, events){
8 ], function(IPython, $, events){
9 "use strict";
9 "use strict";
10
10
11 var Page = function () {
11 var Page = function () {
12 this.bind_events();
12 this.bind_events();
13 this._resize_header();
13
14 // When the page is ready, resize the header.
15 var that = this;
16 $(function() { that._resize_header(); });
14 };
17 };
15
18
16 Page.prototype.bind_events = function () {
19 Page.prototype.bind_events = function () {
17 events.on('resize-header.Page', $.proxy(this._resize_header, this));
20 events.on('resize-header.Page', $.proxy(this._resize_header, this));
18 };
21 };
19
22
20 Page.prototype.show = function () {
23 Page.prototype.show = function () {
21 /**
24 /**
22 * The header and site divs start out hidden to prevent FLOUC.
25 * The header and site divs start out hidden to prevent FLOUC.
23 * Main scripts should call this method after styling everything.
26 * Main scripts should call this method after styling everything.
24 */
27 */
25 this.show_header();
28 this.show_header();
26 this.show_site();
29 this.show_site();
27 };
30 };
28
31
29 Page.prototype.show_header = function () {
32 Page.prototype.show_header = function () {
30 /**
33 /**
31 * The header and site divs start out hidden to prevent FLOUC.
34 * The header and site divs start out hidden to prevent FLOUC.
32 * Main scripts should call this method after styling everything.
35 * Main scripts should call this method after styling everything.
33 * TODO: selector are hardcoded, pass as constructor argument
36 * TODO: selector are hardcoded, pass as constructor argument
34 */
37 */
35 $('div#header').css('display','block');
38 $('div#header').css('display','block');
36 };
39 };
37
40
38 Page.prototype.show_site = function () {
41 Page.prototype.show_site = function () {
39 /**
42 /**
40 * The header and site divs start out hidden to prevent FLOUC.
43 * The header and site divs start out hidden to prevent FLOUC.
41 * Main scripts should call this method after styling everything.
44 * Main scripts should call this method after styling everything.
42 * TODO: selector are hardcoded, pass as constructor argument
45 * TODO: selector are hardcoded, pass as constructor argument
43 */
46 */
44 $('div#site').css('display','block');
47 $('div#site').css('display','block');
45 };
48 };
46
49
47 Page.prototype._resize_header = function() {
50 Page.prototype._resize_header = function() {
48 // Update the header's size.
51 // Update the header's size.
49 $('#header-spacer').height($('#header').height());
52 $('#header-spacer').height($('#header').height());
50 };
53 };
51
54
52 // Register self in the global namespace for convenience.
55 // Register self in the global namespace for convenience.
53 IPython.Page = Page;
56 IPython.Page = Page;
54 return {'Page': Page};
57 return {'Page': Page};
55 });
58 });
@@ -1,129 +1,128 b''
1 /**
1 /**
2 * Primary styles
2 * Primary styles
3 *
3 *
4 * Author: IPython Development Team
4 * Author: IPython Development Team
5 */
5 */
6
6
7
7
8 body {
8 body {
9 background-color: white;
9 background-color: @body-bg;
10 /* This makes sure that the body covers the entire window and needs to
10 /* This makes sure that the body covers the entire window and needs to
11 be in a different element than the display: box in wrapper below */
11 be in a different element than the display: box in wrapper below */
12 position: absolute;
12 position: absolute;
13 left: 0px;
13 left: 0px;
14 right: 0px;
14 right: 0px;
15 top: 0px;
15 top: 0px;
16 bottom: 0px;
16 bottom: 0px;
17 overflow: visible;
17 overflow: visible;
18 }
18 }
19
19
20 div#header {
20 div#header {
21 /* Initially hidden to prevent FLOUC */
21 /* Initially hidden to prevent FLOUC */
22 display: none;
22 display: none;
23 background-color: @body-bg;
23 background-color: @body-bg;
24
24
25 /* Display over codemirror */
25 /* Display over codemirror */
26 z-index: 100;
26 z-index: 100;
27
27
28 #header-container {
28 #header-container {
29 padding-left: 30px;
30 padding-bottom: 5px;
29 padding-bottom: 5px;
31 padding-top: 5px;
30 padding-top: 5px;
32 .border-box-sizing();
31 .border-box-sizing();
33 }
32 }
34
33
35 .header-bar {
34 .header-bar {
36 width: 100%;
35 width: 100%;
37 height: 0px;
36 height: 0px;
38 border-bottom: 1px solid @navbar-default-border;
37 border-bottom: 1px solid @navbar-default-border;
39 }
38 }
40
39
41 @media print {
40 @media print {
42 display: none !important;
41 display: none !important;
43 }
42 }
44 }
43 }
45
44
46 #header-spacer {
45 #header-spacer {
47 width: 100%;
46 width: 100%;
48 visibility: hidden;
47 visibility: hidden;
49
48
50 @media print {
49 @media print {
51 display: none;
50 display: none;
52 }
51 }
53 }
52 }
54
53
55 #ipython_notebook {
54 #ipython_notebook {
56 padding-left: 0px;
55 padding-left: 0px;
57 padding-top: (@navbar-height - @logo_height) / 2;
56 padding-top: (@navbar-height - @logo_height) / 2;
58 padding-bottom: (@navbar-height - @logo_height) / 2;
57 padding-bottom: (@navbar-height - @logo_height) / 2;
59 }
58 }
60
59
61 #noscript {
60 #noscript {
62 width: auto;
61 width: auto;
63 padding-top: 16px;
62 padding-top: 16px;
64 padding-bottom: 16px;
63 padding-bottom: 16px;
65 text-align: center;
64 text-align: center;
66 font-size: 22px;
65 font-size: 22px;
67 color: red;
66 color: red;
68 font-weight: bold;
67 font-weight: bold;
69 }
68 }
70
69
71 #ipython_notebook img {
70 #ipython_notebook img {
72 height: @logo_height;
71 height: @logo_height;
73 }
72 }
74
73
75 #site {
74 #site {
76 width: 100%;
75 width: 100%;
77 display: none;
76 display: none;
78 .border-box-sizing();
77 .border-box-sizing();
79 }
78 }
80
79
81 /* Smaller buttons */
80 /* Smaller buttons */
82 .ui-button .ui-button-text {
81 .ui-button .ui-button-text {
83 padding: 0.2em 0.8em;
82 padding: 0.2em 0.8em;
84 font-size: 77%;
83 font-size: 77%;
85 }
84 }
86
85
87 input.ui-button {
86 input.ui-button {
88 padding: 0.3em 0.9em;
87 padding: 0.3em 0.9em;
89 }
88 }
90
89
91 span#login_widget {
90 span#login_widget {
92 float: right;
91 float: right;
93 }
92 }
94
93
95 span#login_widget > .button,
94 span#login_widget > .button,
96 #logout
95 #logout
97 {
96 {
98 .btn-default();
97 .btn-default();
99 }
98 }
100
99
101 .nav-header {
100 .nav-header {
102 text-transform: none;
101 text-transform: none;
103 }
102 }
104
103
105 #header > span {
104 #header > span {
106 margin-top: 10px;
105 margin-top: 10px;
107 }
106 }
108
107
109 // class for stretching dialogs to fill the screen
108 // class for stretching dialogs to fill the screen
110 .modal_stretch .modal-dialog {
109 .modal_stretch .modal-dialog {
111 .vbox();
110 .vbox();
112 min-height: 80%;
111 min-height: 80%;
113 .modal-body {
112 .modal-body {
114 max-height: none;
113 max-height: none;
115 flex: 1;
114 flex: 1;
116 }
115 }
117 }
116 }
118
117
119 @media (min-width: 768px) {
118 @media (min-width: 768px) {
120 .modal .modal-dialog {
119 .modal .modal-dialog {
121 width: 700px;
120 width: 700px;
122 }
121 }
123 }
122 }
124
123
125 // less mixin to be sure to add the right class to get icons with font awesome.
124 // less mixin to be sure to add the right class to get icons with font awesome.
126 .icon(@ico){
125 .icon(@ico){
127 .fa();
126 .fa();
128 content: @ico;
127 content: @ico;
129 }
128 }
@@ -1,40 +1,52 b''
1 // Our customizations to bootstrap go here.
1 // Our customizations to bootstrap go here.
2
2
3 @black: #000;
3 @black: #000;
4 @text-color: @black;
4 @text-color: @black;
5 @font-size-base: 13px;
5 @font-size-base: 13px;
6 @font-family-monospace: monospace; // to allow user to customize their fonts
6 @font-family-monospace: monospace; // to allow user to customize their fonts
7 @navbar-height: 30px;
7 @navbar-height: 30px;
8 @breadcrumb-color: darken(@border_color, 30%);
8 @breadcrumb-color: darken(@border_color, 30%);
9 @blockquote-font-size: inherit;
9 @blockquote-font-size: inherit;
10 @modal-inner-padding: 15px;
10 @modal-inner-padding: 15px;
11 @grid-float-breakpoint: 540px;
11 @grid-float-breakpoint: 540px;
12 @logo_height: 28px;
12 @logo_height: 28px;
13 @border-radius-base: 2px;
14 @border-radius-small: 2px;
15 @grid-gutter-width: 0px;
13
16
14 // Disable modal slide-in from top animation.
17 // Disable modal slide-in from top animation.
15 .modal {
18 .modal {
16 &.fade .modal-dialog {
19 &.fade .modal-dialog {
17 .translate(0, 0);
20 .translate(0, 0);
18 }
21 }
19 }
22 }
20
23
21 // Set the default code color.
24 // Set the default code color.
22 code {
25 code {
23 color: @black; // default code color in bootstrap is #d14 (crimson / amaranth)
26 color: @black; // default code color in bootstrap is #d14 (crimson / amaranth)
24 }
27 }
25
28
26 // Override bootstrap pre element styling.
29 // Override bootstrap pre element styling.
27 pre {
30 pre {
28 // bootstrap has pre defaults that we don't want to inherit.
31 // bootstrap has pre defaults that we don't want to inherit.
29 // start pre tag defaults based on the surrounding context instead.
32 // start pre tag defaults based on the surrounding context instead.
30 font-size: inherit;
33 font-size: inherit;
31 line-height: inherit;
34 line-height: inherit;
32 }
35 }
33
36
34 // Disable bold labels in BS3
37 // Disable bold labels in BS3
35 label {
38 label {
36 font-weight: normal;
39 font-weight: normal;
37 }
40 }
38
41
39 // Our own global variables for all pages go here
42 // Our own global variables for all pages go here
40
43 @global-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
44 @global-shadow-dark: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
45 @page-header-padding: 20px;
46 /* Make the page background atleast 100% the height of the view port */
47 @page-backdrop-height: 100vh;
48 /* Make the page itself atleast 70% the height of the view port */
49 @page-min-height: 70vh;
50 @page-backdrop-color: #EEE;
51 @page-color: @body-bg;
52 @page-padding: 15px; No newline at end of file
@@ -1,9 +1,34 b''
1 #texteditor-container {
2 border-bottom: 1px solid #ccc;
3 }
4
1
5 #filename {
2 #filename {
6 font-size: 16pt;
3 font-size: 16pt;
7 display: table;
4 display: table;
8 padding: 0px 5px;
5 padding: 0px 5px;
9 }
6 }
7
8 #texteditor-backdrop {
9 padding-top: @page-header-padding;
10 padding-bottom: @page-header-padding;
11
12 @media not print{
13 min-height: @page-backdrop-height;
14 background-color: @page-backdrop-color;
15 }
16
17 #texteditor-container {
18 .CodeMirror-gutter, .CodeMirror-gutters {
19 @media print {
20 background-color: @body-bg;
21 }
22 @media not print {
23 background-color: @page-color;
24 }
25 }
26
27 @media not print{
28 padding: 0px;
29 background-color : @page-color;
30 min-height: @page-min-height;
31 .box-shadow(@global-shadow);
32 }
33 }
34 }
@@ -1,14 +1,30 b''
1 .selected-keymap {
1 .selected-keymap {
2 i.fa {
2 i.fa {
3 padding: 0px 5px;
3 padding: 0px 5px;
4 }
4 }
5 i.fa:before {
5 i.fa:before {
6 content: @fa-var-check;
6 content: @fa-var-check;
7 }
7 }
8 }
8 }
9
9
10 #mode-menu {
10 #mode-menu {
11 // truncate mode-menu, so it doesn't get longer than the screen
11 // truncate mode-menu, so it doesn't get longer than the screen
12 overflow: auto;
12 overflow: auto;
13 max-height: 20em;
13 max-height: 20em;
14 } No newline at end of file
14 }
15
16 #current-mode {
17 margin-right: @padding-large-horizontal;
18 }
19
20 .edit_app {
21 #header {
22 .box-shadow(@global-shadow);
23 }
24
25 #menubar .navbar {
26 /* Use a negative 1 bottom margin, so the border overlaps the border of the
27 header */
28 margin-bottom: -1px;
29 }
30 }
@@ -1,7 +1,7 b''
1 /*This file contains any manual css for this page that needs to override the global styles.
1 /*This file contains any manual css for this page that needs to override the global styles.
2 This is only required when different pages style the same element differently. This is just
2 This is only required when different pages style the same element differently. This is just
3 a hack to deal with our current css styles and no new styling should be added in this file.*/
3 a hack to deal with our current css styles and no new styling should be added in this file.*/
4
4
5 #ipython-main-app {
5 #ipython-main-app {
6 position: relative;
6 position: relative;
7 } No newline at end of file
7 }
@@ -1,54 +1,58 b''
1 /* CSS for the cell toolbar */
1 /* CSS for the cell toolbar */
2 @celltoolbar-height: 29px;
2 @celltoolbar-height: 29px;
3
3
4 .celltoolbar {
4 .celltoolbar {
5 border: thin solid #CFCFCF;
5 border: thin solid #CFCFCF;
6 border-bottom: none;
6 border-bottom: none;
7 background : #EEE;
7 background : #EEE;
8 border-radius : @border-radius-base @border-radius-base 0px 0px;
8 border-radius : @border-radius-base @border-radius-base 0px 0px;
9 width:100%;
9 width:100%;
10 -webkit-box-pack: end;
10 -webkit-box-pack: end;
11 height: @celltoolbar-height;
11 height: @celltoolbar-height;
12 padding-right: 4px;
12 padding-right: 4px;
13 .hbox();
13 .hbox();
14 .end();
14 .end();
15 @media print{
16 display: none;
17 }
15 }
18 }
16
19
20
17 .ctb_hideshow {
21 .ctb_hideshow {
18 display:none;
22 display:none;
19 vertical-align:bottom;
23 vertical-align:bottom;
20 }
24 }
21
25
22 /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
26 /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
23 Cell toolbars are only shown when the ctb_global_show class is also set.
27 Cell toolbars are only shown when the ctb_global_show class is also set.
24 */
28 */
25 .ctb_global_show .ctb_show.ctb_hideshow {
29 .ctb_global_show .ctb_show.ctb_hideshow {
26 display: block;
30 display: block;
27 }
31 }
28
32
29 .ctb_global_show .ctb_show + .input_area,
33 .ctb_global_show .ctb_show + .input_area,
30 .ctb_global_show .ctb_show + div.text_cell_input
34 .ctb_global_show .ctb_show + div.text_cell_input
31 {
35 {
32 border-top-right-radius: 0px;
36 border-top-right-radius: 0px;
33 border-top-left-radius: 0px;
37 border-top-left-radius: 0px;
34 }
38 }
35
39
36 .celltoolbar {
40 .celltoolbar {
37 font-size: 87%;
41 font-size: 87%;
38 padding-top: 3px;
42 padding-top: 3px;
39 }
43 }
40
44
41 .celltoolbar select {
45 .celltoolbar select {
42 .form-control();
46 .form-control();
43 .input-sm();
47 .input-sm();
44 width: inherit;
48 width: inherit;
45 font-size: 87%;
49 font-size: 87%;
46 height: 22px;
50 height: 22px;
47 display: inline-block;
51 display: inline-block;
48
52
49 }
53 }
50
54
51 .celltoolbar label {
55 .celltoolbar label {
52 margin-left: 5px;
56 margin-left: 5px;
53 margin-right: 5px;
57 margin-right: 5px;
54 }
58 }
@@ -1,57 +1,58 b''
1 /* The following gets added to the <head> if it is detected that the user has a
1 /* The following gets added to the <head> if it is detected that the user has a
2 * monospace font with inconsistent normal/bold/italic height. See
2 * monospace font with inconsistent normal/bold/italic height. See
3 * notebookmain.js. Such fonts will have keywords vertically offset with
3 * notebookmain.js. Such fonts will have keywords vertically offset with
4 * respect to the rest of the text. The user should select a better font.
4 * respect to the rest of the text. The user should select a better font.
5 * See: https://github.com/ipython/ipython/issues/1503
5 * See: https://github.com/ipython/ipython/issues/1503
6 *
6 *
7 * .CodeMirror span {
7 * .CodeMirror span {
8 * vertical-align: bottom;
8 * vertical-align: bottom;
9 * }
9 * }
10 */
10 */
11
11
12 .CodeMirror {
12 .CodeMirror {
13 line-height: @code_line_height; /* Changed from 1em to our global default */
13 line-height: @code_line_height; /* Changed from 1em to our global default */
14 font-size: @notebook_font_size;
14 height: auto; /* Changed to auto to autogrow */
15 height: auto; /* Changed to auto to autogrow */
15 background: none; /* Changed from white to allow our bg to show through */
16 background: none; /* Changed from white to allow our bg to show through */
16 }
17 }
17
18
18 .CodeMirror-scroll {
19 .CodeMirror-scroll {
19 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
20 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
20 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
21 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
21 overflow-y: hidden;
22 overflow-y: hidden;
22 overflow-x: auto;
23 overflow-x: auto;
23 }
24 }
24
25
25 .CodeMirror-lines {
26 .CodeMirror-lines {
26 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
27 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
27 /* we have set a different line-height and want this to scale with that. */
28 /* we have set a different line-height and want this to scale with that. */
28 padding: @code_padding;
29 padding: @code_padding;
29 }
30 }
30
31
31 .CodeMirror-linenumber {
32 .CodeMirror-linenumber {
32 // This is needed to fine tune the position of the line numbers because we use the 0.4em in @code_padding
33 // This is needed to fine tune the position of the line numbers because we use the 0.4em in @code_padding
33 // spacing in various places. Fine tuned to look right.
34 // spacing in various places. Fine tuned to look right.
34 padding: 0 8px 0 4px;
35 padding: 0 8px 0 4px;
35 }
36 }
36
37
37 .CodeMirror-gutters {
38 .CodeMirror-gutters {
38 // This is needed because our cell has rounded corners, otherwise the gutter area square
39 // This is needed because our cell has rounded corners, otherwise the gutter area square
39 // corner cuts into the rounded cell border.
40 // corner cuts into the rounded cell border.
40 border-bottom-left-radius: @border-radius-base;
41 border-bottom-left-radius: @border-radius-base;
41 border-top-left-radius: @border-radius-base;
42 border-top-left-radius: @border-radius-base;
42 }
43 }
43
44
44 .CodeMirror pre {
45 .CodeMirror pre {
45 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
46 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
46 /* .CodeMirror-lines */
47 /* .CodeMirror-lines */
47 padding: 0;
48 padding: 0;
48 border: 0;
49 border: 0;
49 .border-radius(0)
50 .border-radius(0)
50 }
51 }
51
52
52 // FIXME: This is a horrible workaround for CodeMirror bug #2562.
53 // FIXME: This is a horrible workaround for CodeMirror bug #2562.
53 // Let's try not to release 3.0 with this.
54 // Let's try not to release 3.0 with this.
54
55
55 .CodeMirror-vscrollbar, .CodeMirror-hscrollbar {
56 .CodeMirror-vscrollbar, .CodeMirror-hscrollbar {
56 display: none !important;
57 display: none !important;
57 }
58 }
@@ -1,11 +1,10 b''
1 #kernel_logo_widget {
1 #kernel_logo_widget {
2 margin-right: 1em;
3 .pull-right();
2 .pull-right();
4
3
5 .current_kernel_logo {
4 .current_kernel_logo {
6 display: none;
5 display: none;
7 .navbar-vertical-align(32px);
6 .navbar-vertical-align(32px);
8 width: 32px;
7 width: 32px;
9 height: 32px;
8 height: 32px;
10 }
9 }
11 }
10 }
@@ -1,79 +1,88 b''
1
2 body {
3 background-color: @body-bg;
4 }
5
6 @media (max-width: 767px) {
1 @media (max-width: 767px) {
7 // remove bootstrap-responsive's body padding on small screens
2 // remove bootstrap-responsive's body padding on small screens
8 body.notebook_app {
3 body.notebook_app {
9 padding-left: 0px;
4 padding-left: 0px;
10 padding-right: 0px;
5 padding-right: 0px;
11 }
6 }
12 }
7 }
13
8
14 #ipython-main-app {
9 #ipython-main-app {
15 .border-box-sizing();
10 .border-box-sizing();
16 }
11 }
17
12
18 div#notebook_panel {
13 div#notebook_panel {
19 margin: 0px 0px 0px 0px;
14 margin: 0px;
20 padding: 0px;
15 padding: 0px;
21 .border-box-sizing();
16 .border-box-sizing();
17 @media not print {
18 background-color: @page-backdrop-color;
19 min-height: @page-backdrop-height;
20 }
22 }
21 }
23 div#notebook {
22 div#notebook {
24 font-size: @notebook_font_size;
23 font-size: @notebook_font_size;
25 line-height: @notebook_line_height;
24 line-height: @notebook_line_height;
26 overflow-y: hidden;
25 overflow-y: hidden;
27 overflow-x: auto;
26 overflow-x: auto;
28 width: 100%;
27 width: 100%;
29 /* This spaces the cell away from the edge of the notebook area */
28 /* This spaces the page away from the edge of the notebook area */
30 padding: 2em 0 2em 0;
29 padding-top: @page-header-padding;
30 padding-bottom: @page-header-padding;
31 margin: 0px;
31 margin: 0px;
32 outline: none;
32 outline: none;
33 .border-box-sizing();
33 .border-box-sizing();
34 }
34 }
35
35
36 #notebook-container{
37 @media not print{
38 padding: @page-padding;
39 background-color : @page-color;
40 min-height: @page-min-height;
41 .box-shadow(@global-shadow);
42 }
43 }
44
36 div.ui-widget-content {
45 div.ui-widget-content {
37 border: 1px solid @border_color;
46 border: 1px solid @border_color;
38 outline: none;
47 outline: none;
39 }
48 }
40
49
41 pre.dialog {
50 pre.dialog {
42 background-color: @cell_background;
51 background-color: @cell_background;
43 border: 1px solid #ddd;
52 border: 1px solid #ddd;
44 .corner-all;
53 .corner-all;
45 padding: 0.4em;
54 padding: 0.4em;
46 padding-left: 2em;
55 padding-left: 2em;
47 }
56 }
48
57
49 p.dialog {
58 p.dialog {
50 padding : 0.2em;
59 padding : 0.2em;
51 }
60 }
52
61
53 /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
62 /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
54 to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
63 to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
55 */
64 */
56 pre, code, kbd, samp { white-space: pre-wrap; }
65 pre, code, kbd, samp { white-space: pre-wrap; }
57
66
58 #fonttest {
67 #fonttest {
59 font-family: @font-family-monospace;
68 font-family: @font-family-monospace;
60 }
69 }
61
70
62 p {
71 p {
63 margin-bottom:0;
72 margin-bottom:0;
64 }
73 }
65
74
66 .end_space {
75 .end_space {
67 height: 200px;
76 height: 200px;
68 }
77 }
69
78
70 .lower-header-bar {
79 .lower-header-bar {
71 width: 100%;
80 width: 100%;
72 height: 0px;
81 height: 0px;
73 border-bottom: 1px solid @navbar-default-border;
82 border-bottom: 1px solid @navbar-default-border;
74 margin-bottom: -1px;
83 margin-bottom: -1px;
75 }
84 }
76
85
77 .notebook_app #header {
86 .notebook_app #header {
78 .box-shadow(@notebook-shadow);
87 .box-shadow(@global-shadow);
79 }
88 }
@@ -1,72 +1,69 b''
1 div#pager {
1 div#pager {
2 background-color: @body-bg;
2 background-color: @body-bg;
3 font-size: @notebook_font_size;
3 font-size: @notebook_font_size;
4 line-height: @notebook_line_height;
4 line-height: @notebook_line_height;
5 overflow: hidden;
5 overflow: hidden;
6 display: none;
6 display: none;
7 position: fixed;
7 position: fixed;
8 bottom: 0px;
8 bottom: 0px;
9 width: 100%;
9 width: 100%;
10 max-height: 50%;
10 max-height: 50%;
11 padding-top: 8px;
11 padding-top: 8px;
12
12
13 .box-shadow(@global-shadow);
14
13 /* Display over codemirror */
15 /* Display over codemirror */
14 z-index: 100;
16 z-index: 100;
15
17
16 /* Hack which prevents jquery ui resizable from changing top. */
18 /* Hack which prevents jquery ui resizable from changing top. */
17 top: inherit !important;
19 top: inherit !important;
18
20
19 pre {
21 pre {
20 line-height: @code_line_height;
22 line-height: @code_line_height;
21 color: @text-color;
23 color: @text-color;
22 background-color: @cell_background;
24 background-color: @cell_background;
23 padding: @code_padding;
25 padding: @code_padding;
24 }
26 }
25
27
26 #pager-button-area {
28 #pager-button-area {
27 position: absolute;
29 position: absolute;
28 top: 8px;
30 top: 8px;
29 right: 20px;
31 right: 20px;
30 }
32 }
31
33
32 #pager-contents {
34 #pager-contents {
33 position: relative;
35 position: relative;
34 overflow: auto;
36 overflow: auto;
35 width: 100%;
37 width: 100%;
36 height: 100%;
38 height: 100%;
37
39
38 #pager-container {
40 #pager-container {
39 position: relative;
41 position: relative;
40 padding: 15px 0px;
42 padding: 15px 0px;
41 .border-box-sizing();
43 .border-box-sizing();
42 }
44 }
43 }
45 }
44
46
45 .ui-resizable-handle {
47 .ui-resizable-handle {
46 top: 0px;
48 top: 0px;
47 height: 8px;
49 height: 8px;
48 background: @cell_background;
50 background: @cell_background;
49 border-top: 1px solid @light_border_color;
51 border-top: 1px solid @light_border_color;
50 border-bottom: 1px solid @light_border_color;
52 border-bottom: 1px solid @light_border_color;
51
53
52 /* Similar to the notebook header's shadow, but not
53 exactly the same. The settings had to be adjusted
54 to get the shadow to show. */
55 .box-shadow(1px 4px 9px -3px rgba(0, 0, 0, 0.15));
56
57 /* This injects handle bars (a short, wide = symbol) for
54 /* This injects handle bars (a short, wide = symbol) for
58 the resize handle. */
55 the resize handle. */
59 &::after {
56 &::after {
60 content: '';
57 content: '';
61
58
62 top: 2px;
59 top: 2px;
63 left: 50%;
60 left: 50%;
64 height: 3px;
61 height: 3px;
65 width: 30px;
62 width: 30px;
66 margin-left: -15px;
63 margin-left: -15px;
67 position: absolute;
64 position: absolute;
68
65
69 border-top: 1px solid @light_border_color;
66 border-top: 1px solid @light_border_color;
70 }
67 }
71 }
68 }
72 }
69 }
@@ -1,41 +1,42 b''
1 span.save_widget {
1 span.save_widget {
2 margin-top: 6px;
2 margin-top: 6px;
3
3
4 span.filename {
4 span.filename {
5 height: 1em;
5 height: 1em;
6 line-height: 1em;
6 line-height: 1em;
7 padding: 3px;
7 padding: 3px;
8 margin-left: @padding-large-horizontal;
8 border: none;
9 border: none;
9 font-size: 146.5%;
10 font-size: 146.5%;
10 &:hover{
11 &:hover{
11 // ensure body is lighter on dark palette,
12 // ensure body is lighter on dark palette,
12 // and vice versa
13 // and vice versa
13 background-color:contrast(@body-bg, lighten(@body-bg,30%), darken(@body-bg,10%));
14 background-color:contrast(@body-bg, lighten(@body-bg,30%), darken(@body-bg,10%));
14 }
15 }
15 .corner-all;
16 .corner-all;
16 }
17 }
17 }
18 }
18
19
19 span.checkpoint_status, span.autosave_status {
20 span.checkpoint_status, span.autosave_status {
20 font-size: small;
21 font-size: small;
21 }
22 }
22
23
23 @media (max-width: 767px) {
24 @media (max-width: 767px) {
24 span.save_widget {
25 span.save_widget {
25 font-size: small;
26 font-size: small;
26 }
27 }
27 span.checkpoint_status, span.autosave_status {
28 span.checkpoint_status, span.autosave_status {
28 display: none;
29 display: none;
29 }
30 }
30 }
31 }
31
32
32 @media (min-width: 768px) and (max-width: 979px) {
33 @media (min-width: 768px) and (max-width: 979px) {
33 span.checkpoint_status {
34 span.checkpoint_status {
34 display: none;
35 display: none;
35 }
36 }
36 span.autosave_status {
37 span.autosave_status {
37 font-size: x-small;
38 font-size: x-small;
38 }
39 }
39 }
40 }
40
41
41
42
@@ -1,52 +1,52 b''
1 .toolbar {
1 .toolbar {
2 padding: 0px;
2 padding: 0px;
3 margin-left: -5px;
3 margin-left: -5px;
4 margin-top: -5px;
4 margin-top: -5px;
5 margin-bottom: 5px;
5 margin-bottom: 5px;
6
6
7 select, label {
7 select, label {
8 width: auto;
8 width: auto;
9 vertical-align:middle;
9 vertical-align:middle;
10 margin-right:2px;
10 margin-right:2px;
11 margin-bottom:0px;
11 margin-bottom:0px;
12 display: inline;
12 display: inline;
13 font-size: 92%;
13 font-size: 92%;
14 margin-left:0.3em;
14 margin-left:0.3em;
15 margin-right:0.3em;
15 margin-right:0.3em;
16 padding: 0px;
16 padding: 0px;
17 padding-top: 3px;
17 padding-top: 3px;
18 }
18 }
19 .btn {
19 .btn {
20 padding: 2px 8px;
20 padding: 2px 8px;
21 }
21 }
22
22
23 .border-box-sizing();
23 .border-box-sizing();
24 }
24 }
25
25
26 .toolbar .btn-group {
26 .toolbar .btn-group {
27 margin-top: 0px;
27 margin-top: 0px;
28 margin-left: 5px;
28 margin-left: 5px;
29 }
29 }
30
30
31 #maintoolbar {
31 #maintoolbar {
32 margin-bottom: -3px;
32 margin-bottom: -3px;
33 margin-top: -8px;
33 margin-top: -8px;
34 border: 0px;
34 border: 0px;
35 min-height: 27px;
35 min-height: 27px;
36 margin-left: 32px;
36 margin-left: 0px;
37 padding-top: 11px;
37 padding-top: 11px;
38 padding-bottom: 3px;
38 padding-bottom: 3px;
39
39
40 .navbar-text {
40 .navbar-text {
41 float: none;
41 float: none;
42 vertical-align: middle;
42 vertical-align: middle;
43 text-align: right;
43 text-align: right;
44 margin-left: 5px;
44 margin-left: 5px;
45 margin-right: 0px;
45 margin-right: 0px;
46 margin-top: 0px;
46 margin-top: 0px;
47 }
47 }
48 }
48 }
49
49
50 .select-xs {
50 .select-xs {
51 height: @btn_small_height;
51 height: @btn_small_height;
52 }
52 }
@@ -1,18 +1,17 b''
1
1
2 // Our own variables for this page
2 // Our own variables for this page
3
3
4 @cell_selected_background: darken(@body-bg, 2%);
4 @cell_selected_background: darken(@body-bg, 2%);
5 @cell_background: darken(@body-bg, 3.2%);
5 @cell_background: darken(@body-bg, 3.2%);
6 @border_color: darken(@cell_selected_background, 31%);
6 @border_color: darken(@cell_selected_background, 31%);
7 @light_border_color: darken(@cell_selected_background, 17%);
7 @light_border_color: darken(@cell_selected_background, 17%);
8 @border_width: 1px;
8 @border_width: 1px;
9 @notebook_font_size: 14px;
9 @notebook_font_size: 14px;
10 @notebook_line_height: 20px;
10 @notebook_line_height: 20px;
11 @code_line_height: 1.21429em; // changed from 1.231 to get 17px even
11 @code_line_height: 1.21429em; // changed from 1.231 to get 17px even
12 @code_padding: 0.4em; // 5.6 px
12 @code_padding: 0.4em; // 5.6 px
13 @notebook-shadow: 1px 4px 9px -6px rgba(0,0,0,.25);
14 @rendered_html_border_color: black;
13 @rendered_html_border_color: black;
15 @input_prompt_color: navy;
14 @input_prompt_color: navy;
16 @output_prompt_color: darkred;
15 @output_prompt_color: darkred;
17 @output_pre_color: black;
16 @output_pre_color: black;
18 @notification_widget_bg: rgba(240, 240, 240, 0.5);
17 @notification_widget_bg: rgba(240, 240, 240, 0.5);
@@ -1,1586 +1,1589 b''
1 /*!
1 /*!
2 *
2 *
3 * IPython base
3 * IPython base
4 *
4 *
5 */
5 */
6 .modal.fade .modal-dialog {
6 .modal.fade .modal-dialog {
7 -webkit-transform: translate(0, 0);
7 -webkit-transform: translate(0, 0);
8 -ms-transform: translate(0, 0);
8 -ms-transform: translate(0, 0);
9 transform: translate(0, 0);
9 transform: translate(0, 0);
10 }
10 }
11 code {
11 code {
12 color: #000000;
12 color: #000000;
13 }
13 }
14 pre {
14 pre {
15 font-size: inherit;
15 font-size: inherit;
16 line-height: inherit;
16 line-height: inherit;
17 }
17 }
18 label {
18 label {
19 font-weight: normal;
19 font-weight: normal;
20 }
20 }
21 /* Make the page background atleast 100% the height of the view port */
22 /* Make the page itself atleast 70% the height of the view port */
21 .border-box-sizing {
23 .border-box-sizing {
22 box-sizing: border-box;
24 box-sizing: border-box;
23 -moz-box-sizing: border-box;
25 -moz-box-sizing: border-box;
24 -webkit-box-sizing: border-box;
26 -webkit-box-sizing: border-box;
25 }
27 }
26 .corner-all {
28 .corner-all {
27 border-radius: 4px;
29 border-radius: 2px;
28 }
30 }
29 .no-padding {
31 .no-padding {
30 padding: 0px;
32 padding: 0px;
31 }
33 }
32 /* Flexible box model classes */
34 /* Flexible box model classes */
33 /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
35 /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
34 /* This file is a compatability layer. It allows the usage of flexible box
36 /* This file is a compatability layer. It allows the usage of flexible box
35 model layouts accross multiple browsers, including older browsers. The newest,
37 model layouts accross multiple browsers, including older browsers. The newest,
36 universal implementation of the flexible box model is used when available (see
38 universal implementation of the flexible box model is used when available (see
37 `Modern browsers` comments below). Browsers that are known to implement this
39 `Modern browsers` comments below). Browsers that are known to implement this
38 new spec completely include:
40 new spec completely include:
39
41
40 Firefox 28.0+
42 Firefox 28.0+
41 Chrome 29.0+
43 Chrome 29.0+
42 Internet Explorer 11+
44 Internet Explorer 11+
43 Opera 17.0+
45 Opera 17.0+
44
46
45 Browsers not listed, including Safari, are supported via the styling under the
47 Browsers not listed, including Safari, are supported via the styling under the
46 `Old browsers` comments below.
48 `Old browsers` comments below.
47 */
49 */
48 .hbox {
50 .hbox {
49 /* Old browsers */
51 /* Old browsers */
50 display: -webkit-box;
52 display: -webkit-box;
51 -webkit-box-orient: horizontal;
53 -webkit-box-orient: horizontal;
52 -webkit-box-align: stretch;
54 -webkit-box-align: stretch;
53 display: -moz-box;
55 display: -moz-box;
54 -moz-box-orient: horizontal;
56 -moz-box-orient: horizontal;
55 -moz-box-align: stretch;
57 -moz-box-align: stretch;
56 display: box;
58 display: box;
57 box-orient: horizontal;
59 box-orient: horizontal;
58 box-align: stretch;
60 box-align: stretch;
59 /* Modern browsers */
61 /* Modern browsers */
60 display: flex;
62 display: flex;
61 flex-direction: row;
63 flex-direction: row;
62 align-items: stretch;
64 align-items: stretch;
63 }
65 }
64 .hbox > * {
66 .hbox > * {
65 /* Old browsers */
67 /* Old browsers */
66 -webkit-box-flex: 0;
68 -webkit-box-flex: 0;
67 -moz-box-flex: 0;
69 -moz-box-flex: 0;
68 box-flex: 0;
70 box-flex: 0;
69 /* Modern browsers */
71 /* Modern browsers */
70 flex: none;
72 flex: none;
71 }
73 }
72 .vbox {
74 .vbox {
73 /* Old browsers */
75 /* Old browsers */
74 display: -webkit-box;
76 display: -webkit-box;
75 -webkit-box-orient: vertical;
77 -webkit-box-orient: vertical;
76 -webkit-box-align: stretch;
78 -webkit-box-align: stretch;
77 display: -moz-box;
79 display: -moz-box;
78 -moz-box-orient: vertical;
80 -moz-box-orient: vertical;
79 -moz-box-align: stretch;
81 -moz-box-align: stretch;
80 display: box;
82 display: box;
81 box-orient: vertical;
83 box-orient: vertical;
82 box-align: stretch;
84 box-align: stretch;
83 /* Modern browsers */
85 /* Modern browsers */
84 display: flex;
86 display: flex;
85 flex-direction: column;
87 flex-direction: column;
86 align-items: stretch;
88 align-items: stretch;
87 }
89 }
88 .vbox > * {
90 .vbox > * {
89 /* Old browsers */
91 /* Old browsers */
90 -webkit-box-flex: 0;
92 -webkit-box-flex: 0;
91 -moz-box-flex: 0;
93 -moz-box-flex: 0;
92 box-flex: 0;
94 box-flex: 0;
93 /* Modern browsers */
95 /* Modern browsers */
94 flex: none;
96 flex: none;
95 }
97 }
96 .hbox.reverse,
98 .hbox.reverse,
97 .vbox.reverse,
99 .vbox.reverse,
98 .reverse {
100 .reverse {
99 /* Old browsers */
101 /* Old browsers */
100 -webkit-box-direction: reverse;
102 -webkit-box-direction: reverse;
101 -moz-box-direction: reverse;
103 -moz-box-direction: reverse;
102 box-direction: reverse;
104 box-direction: reverse;
103 /* Modern browsers */
105 /* Modern browsers */
104 flex-direction: row-reverse;
106 flex-direction: row-reverse;
105 }
107 }
106 .hbox.box-flex0,
108 .hbox.box-flex0,
107 .vbox.box-flex0,
109 .vbox.box-flex0,
108 .box-flex0 {
110 .box-flex0 {
109 /* Old browsers */
111 /* Old browsers */
110 -webkit-box-flex: 0;
112 -webkit-box-flex: 0;
111 -moz-box-flex: 0;
113 -moz-box-flex: 0;
112 box-flex: 0;
114 box-flex: 0;
113 /* Modern browsers */
115 /* Modern browsers */
114 flex: none;
116 flex: none;
115 width: auto;
117 width: auto;
116 }
118 }
117 .hbox.box-flex1,
119 .hbox.box-flex1,
118 .vbox.box-flex1,
120 .vbox.box-flex1,
119 .box-flex1 {
121 .box-flex1 {
120 /* Old browsers */
122 /* Old browsers */
121 -webkit-box-flex: 1;
123 -webkit-box-flex: 1;
122 -moz-box-flex: 1;
124 -moz-box-flex: 1;
123 box-flex: 1;
125 box-flex: 1;
124 /* Modern browsers */
126 /* Modern browsers */
125 flex: 1;
127 flex: 1;
126 }
128 }
127 .hbox.box-flex,
129 .hbox.box-flex,
128 .vbox.box-flex,
130 .vbox.box-flex,
129 .box-flex {
131 .box-flex {
130 /* Old browsers */
132 /* Old browsers */
131 /* Old browsers */
133 /* Old browsers */
132 -webkit-box-flex: 1;
134 -webkit-box-flex: 1;
133 -moz-box-flex: 1;
135 -moz-box-flex: 1;
134 box-flex: 1;
136 box-flex: 1;
135 /* Modern browsers */
137 /* Modern browsers */
136 flex: 1;
138 flex: 1;
137 }
139 }
138 .hbox.box-flex2,
140 .hbox.box-flex2,
139 .vbox.box-flex2,
141 .vbox.box-flex2,
140 .box-flex2 {
142 .box-flex2 {
141 /* Old browsers */
143 /* Old browsers */
142 -webkit-box-flex: 2;
144 -webkit-box-flex: 2;
143 -moz-box-flex: 2;
145 -moz-box-flex: 2;
144 box-flex: 2;
146 box-flex: 2;
145 /* Modern browsers */
147 /* Modern browsers */
146 flex: 2;
148 flex: 2;
147 }
149 }
148 .box-group1 {
150 .box-group1 {
149 /* Deprecated */
151 /* Deprecated */
150 -webkit-box-flex-group: 1;
152 -webkit-box-flex-group: 1;
151 -moz-box-flex-group: 1;
153 -moz-box-flex-group: 1;
152 box-flex-group: 1;
154 box-flex-group: 1;
153 }
155 }
154 .box-group2 {
156 .box-group2 {
155 /* Deprecated */
157 /* Deprecated */
156 -webkit-box-flex-group: 2;
158 -webkit-box-flex-group: 2;
157 -moz-box-flex-group: 2;
159 -moz-box-flex-group: 2;
158 box-flex-group: 2;
160 box-flex-group: 2;
159 }
161 }
160 .hbox.start,
162 .hbox.start,
161 .vbox.start,
163 .vbox.start,
162 .start {
164 .start {
163 /* Old browsers */
165 /* Old browsers */
164 -webkit-box-pack: start;
166 -webkit-box-pack: start;
165 -moz-box-pack: start;
167 -moz-box-pack: start;
166 box-pack: start;
168 box-pack: start;
167 /* Modern browsers */
169 /* Modern browsers */
168 justify-content: flex-start;
170 justify-content: flex-start;
169 }
171 }
170 .hbox.end,
172 .hbox.end,
171 .vbox.end,
173 .vbox.end,
172 .end {
174 .end {
173 /* Old browsers */
175 /* Old browsers */
174 -webkit-box-pack: end;
176 -webkit-box-pack: end;
175 -moz-box-pack: end;
177 -moz-box-pack: end;
176 box-pack: end;
178 box-pack: end;
177 /* Modern browsers */
179 /* Modern browsers */
178 justify-content: flex-end;
180 justify-content: flex-end;
179 }
181 }
180 .hbox.center,
182 .hbox.center,
181 .vbox.center,
183 .vbox.center,
182 .center {
184 .center {
183 /* Old browsers */
185 /* Old browsers */
184 -webkit-box-pack: center;
186 -webkit-box-pack: center;
185 -moz-box-pack: center;
187 -moz-box-pack: center;
186 box-pack: center;
188 box-pack: center;
187 /* Modern browsers */
189 /* Modern browsers */
188 justify-content: center;
190 justify-content: center;
189 }
191 }
190 .hbox.baseline,
192 .hbox.baseline,
191 .vbox.baseline,
193 .vbox.baseline,
192 .baseline {
194 .baseline {
193 /* Old browsers */
195 /* Old browsers */
194 -webkit-box-pack: baseline;
196 -webkit-box-pack: baseline;
195 -moz-box-pack: baseline;
197 -moz-box-pack: baseline;
196 box-pack: baseline;
198 box-pack: baseline;
197 /* Modern browsers */
199 /* Modern browsers */
198 justify-content: baseline;
200 justify-content: baseline;
199 }
201 }
200 .hbox.stretch,
202 .hbox.stretch,
201 .vbox.stretch,
203 .vbox.stretch,
202 .stretch {
204 .stretch {
203 /* Old browsers */
205 /* Old browsers */
204 -webkit-box-pack: stretch;
206 -webkit-box-pack: stretch;
205 -moz-box-pack: stretch;
207 -moz-box-pack: stretch;
206 box-pack: stretch;
208 box-pack: stretch;
207 /* Modern browsers */
209 /* Modern browsers */
208 justify-content: stretch;
210 justify-content: stretch;
209 }
211 }
210 .hbox.align-start,
212 .hbox.align-start,
211 .vbox.align-start,
213 .vbox.align-start,
212 .align-start {
214 .align-start {
213 /* Old browsers */
215 /* Old browsers */
214 -webkit-box-align: start;
216 -webkit-box-align: start;
215 -moz-box-align: start;
217 -moz-box-align: start;
216 box-align: start;
218 box-align: start;
217 /* Modern browsers */
219 /* Modern browsers */
218 align-items: flex-start;
220 align-items: flex-start;
219 }
221 }
220 .hbox.align-end,
222 .hbox.align-end,
221 .vbox.align-end,
223 .vbox.align-end,
222 .align-end {
224 .align-end {
223 /* Old browsers */
225 /* Old browsers */
224 -webkit-box-align: end;
226 -webkit-box-align: end;
225 -moz-box-align: end;
227 -moz-box-align: end;
226 box-align: end;
228 box-align: end;
227 /* Modern browsers */
229 /* Modern browsers */
228 align-items: flex-end;
230 align-items: flex-end;
229 }
231 }
230 .hbox.align-center,
232 .hbox.align-center,
231 .vbox.align-center,
233 .vbox.align-center,
232 .align-center {
234 .align-center {
233 /* Old browsers */
235 /* Old browsers */
234 -webkit-box-align: center;
236 -webkit-box-align: center;
235 -moz-box-align: center;
237 -moz-box-align: center;
236 box-align: center;
238 box-align: center;
237 /* Modern browsers */
239 /* Modern browsers */
238 align-items: center;
240 align-items: center;
239 }
241 }
240 .hbox.align-baseline,
242 .hbox.align-baseline,
241 .vbox.align-baseline,
243 .vbox.align-baseline,
242 .align-baseline {
244 .align-baseline {
243 /* Old browsers */
245 /* Old browsers */
244 -webkit-box-align: baseline;
246 -webkit-box-align: baseline;
245 -moz-box-align: baseline;
247 -moz-box-align: baseline;
246 box-align: baseline;
248 box-align: baseline;
247 /* Modern browsers */
249 /* Modern browsers */
248 align-items: baseline;
250 align-items: baseline;
249 }
251 }
250 .hbox.align-stretch,
252 .hbox.align-stretch,
251 .vbox.align-stretch,
253 .vbox.align-stretch,
252 .align-stretch {
254 .align-stretch {
253 /* Old browsers */
255 /* Old browsers */
254 -webkit-box-align: stretch;
256 -webkit-box-align: stretch;
255 -moz-box-align: stretch;
257 -moz-box-align: stretch;
256 box-align: stretch;
258 box-align: stretch;
257 /* Modern browsers */
259 /* Modern browsers */
258 align-items: stretch;
260 align-items: stretch;
259 }
261 }
260 div.error {
262 div.error {
261 margin: 2em;
263 margin: 2em;
262 text-align: center;
264 text-align: center;
263 }
265 }
264 div.error > h1 {
266 div.error > h1 {
265 font-size: 500%;
267 font-size: 500%;
266 line-height: normal;
268 line-height: normal;
267 }
269 }
268 div.error > p {
270 div.error > p {
269 font-size: 200%;
271 font-size: 200%;
270 line-height: normal;
272 line-height: normal;
271 }
273 }
272 div.traceback-wrapper {
274 div.traceback-wrapper {
273 text-align: left;
275 text-align: left;
274 max-width: 800px;
276 max-width: 800px;
275 margin: auto;
277 margin: auto;
276 }
278 }
277 /*!
279 /*!
278 *
280 *
279 * IPython notebook
281 * IPython notebook
280 *
282 *
281 */
283 */
282 /* CSS font colors for translated ANSI colors. */
284 /* CSS font colors for translated ANSI colors. */
283 .ansibold {
285 .ansibold {
284 font-weight: bold;
286 font-weight: bold;
285 }
287 }
286 /* use dark versions for foreground, to improve visibility */
288 /* use dark versions for foreground, to improve visibility */
287 .ansiblack {
289 .ansiblack {
288 color: black;
290 color: black;
289 }
291 }
290 .ansired {
292 .ansired {
291 color: darkred;
293 color: darkred;
292 }
294 }
293 .ansigreen {
295 .ansigreen {
294 color: darkgreen;
296 color: darkgreen;
295 }
297 }
296 .ansiyellow {
298 .ansiyellow {
297 color: #c4a000;
299 color: #c4a000;
298 }
300 }
299 .ansiblue {
301 .ansiblue {
300 color: darkblue;
302 color: darkblue;
301 }
303 }
302 .ansipurple {
304 .ansipurple {
303 color: darkviolet;
305 color: darkviolet;
304 }
306 }
305 .ansicyan {
307 .ansicyan {
306 color: steelblue;
308 color: steelblue;
307 }
309 }
308 .ansigray {
310 .ansigray {
309 color: gray;
311 color: gray;
310 }
312 }
311 /* and light for background, for the same reason */
313 /* and light for background, for the same reason */
312 .ansibgblack {
314 .ansibgblack {
313 background-color: black;
315 background-color: black;
314 }
316 }
315 .ansibgred {
317 .ansibgred {
316 background-color: red;
318 background-color: red;
317 }
319 }
318 .ansibggreen {
320 .ansibggreen {
319 background-color: green;
321 background-color: green;
320 }
322 }
321 .ansibgyellow {
323 .ansibgyellow {
322 background-color: yellow;
324 background-color: yellow;
323 }
325 }
324 .ansibgblue {
326 .ansibgblue {
325 background-color: blue;
327 background-color: blue;
326 }
328 }
327 .ansibgpurple {
329 .ansibgpurple {
328 background-color: magenta;
330 background-color: magenta;
329 }
331 }
330 .ansibgcyan {
332 .ansibgcyan {
331 background-color: cyan;
333 background-color: cyan;
332 }
334 }
333 .ansibggray {
335 .ansibggray {
334 background-color: gray;
336 background-color: gray;
335 }
337 }
336 div.cell {
338 div.cell {
337 border: 1px solid transparent;
339 border: 1px solid transparent;
338 /* Old browsers */
340 /* Old browsers */
339 display: -webkit-box;
341 display: -webkit-box;
340 -webkit-box-orient: vertical;
342 -webkit-box-orient: vertical;
341 -webkit-box-align: stretch;
343 -webkit-box-align: stretch;
342 display: -moz-box;
344 display: -moz-box;
343 -moz-box-orient: vertical;
345 -moz-box-orient: vertical;
344 -moz-box-align: stretch;
346 -moz-box-align: stretch;
345 display: box;
347 display: box;
346 box-orient: vertical;
348 box-orient: vertical;
347 box-align: stretch;
349 box-align: stretch;
348 /* Modern browsers */
350 /* Modern browsers */
349 display: flex;
351 display: flex;
350 flex-direction: column;
352 flex-direction: column;
351 align-items: stretch;
353 align-items: stretch;
352 border-radius: 4px;
354 border-radius: 2px;
353 box-sizing: border-box;
355 box-sizing: border-box;
354 -moz-box-sizing: border-box;
356 -moz-box-sizing: border-box;
355 -webkit-box-sizing: border-box;
357 -webkit-box-sizing: border-box;
356 border-width: thin;
358 border-width: thin;
357 border-style: solid;
359 border-style: solid;
358 width: 100%;
360 width: 100%;
359 padding: 5px 5px 5px 0px;
361 padding: 5px 5px 5px 0px;
360 /* This acts as a spacer between cells, that is outside the border */
362 /* This acts as a spacer between cells, that is outside the border */
361 margin: 0px;
363 margin: 0px;
362 outline: none;
364 outline: none;
363 }
365 }
364 div.cell.selected {
366 div.cell.selected {
365 border-color: #ababab;
367 border-color: #ababab;
366 /* Don't border the cells when printing */
368 /* Don't border the cells when printing */
367 }
369 }
368 @media print {
370 @media print {
369 div.cell.selected {
371 div.cell.selected {
370 border-color: transparent;
372 border-color: transparent;
371 }
373 }
372 }
374 }
373 div.cell.edit_mode {
375 div.cell.edit_mode {
374 border-color: green;
376 border-color: green;
375 /* Don't border the cells when printing */
377 /* Don't border the cells when printing */
376 }
378 }
377 @media print {
379 @media print {
378 div.cell.edit_mode {
380 div.cell.edit_mode {
379 border-color: transparent;
381 border-color: transparent;
380 }
382 }
381 }
383 }
382 div.prompt {
384 div.prompt {
383 /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
385 /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
384 min-width: 15ex;
386 min-width: 15ex;
385 /* This padding is tuned to match the padding on the CodeMirror editor. */
387 /* This padding is tuned to match the padding on the CodeMirror editor. */
386 padding: 0.4em;
388 padding: 0.4em;
387 margin: 0px;
389 margin: 0px;
388 font-family: monospace;
390 font-family: monospace;
389 text-align: right;
391 text-align: right;
390 /* This has to match that of the the CodeMirror class line-height below */
392 /* This has to match that of the the CodeMirror class line-height below */
391 line-height: 1.21429em;
393 line-height: 1.21429em;
392 }
394 }
393 @media (max-width: 480px) {
395 @media (max-width: 480px) {
394 div.prompt {
396 div.prompt {
395 text-align: left;
397 text-align: left;
396 }
398 }
397 }
399 }
398 div.inner_cell {
400 div.inner_cell {
399 /* Old browsers */
401 /* Old browsers */
400 display: -webkit-box;
402 display: -webkit-box;
401 -webkit-box-orient: vertical;
403 -webkit-box-orient: vertical;
402 -webkit-box-align: stretch;
404 -webkit-box-align: stretch;
403 display: -moz-box;
405 display: -moz-box;
404 -moz-box-orient: vertical;
406 -moz-box-orient: vertical;
405 -moz-box-align: stretch;
407 -moz-box-align: stretch;
406 display: box;
408 display: box;
407 box-orient: vertical;
409 box-orient: vertical;
408 box-align: stretch;
410 box-align: stretch;
409 /* Modern browsers */
411 /* Modern browsers */
410 display: flex;
412 display: flex;
411 flex-direction: column;
413 flex-direction: column;
412 align-items: stretch;
414 align-items: stretch;
413 /* Old browsers */
415 /* Old browsers */
414 -webkit-box-flex: 1;
416 -webkit-box-flex: 1;
415 -moz-box-flex: 1;
417 -moz-box-flex: 1;
416 box-flex: 1;
418 box-flex: 1;
417 /* Modern browsers */
419 /* Modern browsers */
418 flex: 1;
420 flex: 1;
419 }
421 }
420 /* input_area and input_prompt must match in top border and margin for alignment */
422 /* input_area and input_prompt must match in top border and margin for alignment */
421 div.input_area {
423 div.input_area {
422 border: 1px solid #cfcfcf;
424 border: 1px solid #cfcfcf;
423 border-radius: 4px;
425 border-radius: 2px;
424 background: #f7f7f7;
426 background: #f7f7f7;
425 line-height: 1.21429em;
427 line-height: 1.21429em;
426 }
428 }
427 /* This is needed so that empty prompt areas can collapse to zero height when there
429 /* This is needed so that empty prompt areas can collapse to zero height when there
428 is no content in the output_subarea and the prompt. The main purpose of this is
430 is no content in the output_subarea and the prompt. The main purpose of this is
429 to make sure that empty JavaScript output_subareas have no height. */
431 to make sure that empty JavaScript output_subareas have no height. */
430 div.prompt:empty {
432 div.prompt:empty {
431 padding-top: 0;
433 padding-top: 0;
432 padding-bottom: 0;
434 padding-bottom: 0;
433 }
435 }
434 div.unrecognized_cell {
436 div.unrecognized_cell {
435 padding: 5px 5px 5px 0px;
437 padding: 5px 5px 5px 0px;
436 /* Old browsers */
438 /* Old browsers */
437 display: -webkit-box;
439 display: -webkit-box;
438 -webkit-box-orient: horizontal;
440 -webkit-box-orient: horizontal;
439 -webkit-box-align: stretch;
441 -webkit-box-align: stretch;
440 display: -moz-box;
442 display: -moz-box;
441 -moz-box-orient: horizontal;
443 -moz-box-orient: horizontal;
442 -moz-box-align: stretch;
444 -moz-box-align: stretch;
443 display: box;
445 display: box;
444 box-orient: horizontal;
446 box-orient: horizontal;
445 box-align: stretch;
447 box-align: stretch;
446 /* Modern browsers */
448 /* Modern browsers */
447 display: flex;
449 display: flex;
448 flex-direction: row;
450 flex-direction: row;
449 align-items: stretch;
451 align-items: stretch;
450 }
452 }
451 div.unrecognized_cell .inner_cell {
453 div.unrecognized_cell .inner_cell {
452 border-radius: 4px;
454 border-radius: 2px;
453 padding: 5px;
455 padding: 5px;
454 font-weight: bold;
456 font-weight: bold;
455 color: red;
457 color: red;
456 border: 1px solid #cfcfcf;
458 border: 1px solid #cfcfcf;
457 background: #eaeaea;
459 background: #eaeaea;
458 }
460 }
459 div.unrecognized_cell .inner_cell a {
461 div.unrecognized_cell .inner_cell a {
460 color: inherit;
462 color: inherit;
461 text-decoration: none;
463 text-decoration: none;
462 }
464 }
463 div.unrecognized_cell .inner_cell a:hover {
465 div.unrecognized_cell .inner_cell a:hover {
464 color: inherit;
466 color: inherit;
465 text-decoration: none;
467 text-decoration: none;
466 }
468 }
467 @media (max-width: 480px) {
469 @media (max-width: 480px) {
468 div.unrecognized_cell > div.prompt {
470 div.unrecognized_cell > div.prompt {
469 display: none;
471 display: none;
470 }
472 }
471 }
473 }
472 div.code_cell {
474 div.code_cell {
473 /* avoid page breaking on code cells when printing */
475 /* avoid page breaking on code cells when printing */
474 }
476 }
475 @media print {
477 @media print {
476 div.code_cell {
478 div.code_cell {
477 page-break-inside: avoid;
479 page-break-inside: avoid;
478 }
480 }
479 }
481 }
480 /* any special styling for code cells that are currently running goes here */
482 /* any special styling for code cells that are currently running goes here */
481 div.input {
483 div.input {
482 page-break-inside: avoid;
484 page-break-inside: avoid;
483 /* Old browsers */
485 /* Old browsers */
484 display: -webkit-box;
486 display: -webkit-box;
485 -webkit-box-orient: horizontal;
487 -webkit-box-orient: horizontal;
486 -webkit-box-align: stretch;
488 -webkit-box-align: stretch;
487 display: -moz-box;
489 display: -moz-box;
488 -moz-box-orient: horizontal;
490 -moz-box-orient: horizontal;
489 -moz-box-align: stretch;
491 -moz-box-align: stretch;
490 display: box;
492 display: box;
491 box-orient: horizontal;
493 box-orient: horizontal;
492 box-align: stretch;
494 box-align: stretch;
493 /* Modern browsers */
495 /* Modern browsers */
494 display: flex;
496 display: flex;
495 flex-direction: row;
497 flex-direction: row;
496 align-items: stretch;
498 align-items: stretch;
497 }
499 }
498 @media (max-width: 480px) {
500 @media (max-width: 480px) {
499 div.input {
501 div.input {
500 /* Old browsers */
502 /* Old browsers */
501 display: -webkit-box;
503 display: -webkit-box;
502 -webkit-box-orient: vertical;
504 -webkit-box-orient: vertical;
503 -webkit-box-align: stretch;
505 -webkit-box-align: stretch;
504 display: -moz-box;
506 display: -moz-box;
505 -moz-box-orient: vertical;
507 -moz-box-orient: vertical;
506 -moz-box-align: stretch;
508 -moz-box-align: stretch;
507 display: box;
509 display: box;
508 box-orient: vertical;
510 box-orient: vertical;
509 box-align: stretch;
511 box-align: stretch;
510 /* Modern browsers */
512 /* Modern browsers */
511 display: flex;
513 display: flex;
512 flex-direction: column;
514 flex-direction: column;
513 align-items: stretch;
515 align-items: stretch;
514 }
516 }
515 }
517 }
516 /* input_area and input_prompt must match in top border and margin for alignment */
518 /* input_area and input_prompt must match in top border and margin for alignment */
517 div.input_prompt {
519 div.input_prompt {
518 color: navy;
520 color: navy;
519 border-top: 1px solid transparent;
521 border-top: 1px solid transparent;
520 }
522 }
521 div.input_area > div.highlight {
523 div.input_area > div.highlight {
522 margin: 0.4em;
524 margin: 0.4em;
523 border: none;
525 border: none;
524 padding: 0px;
526 padding: 0px;
525 background-color: transparent;
527 background-color: transparent;
526 }
528 }
527 div.input_area > div.highlight > pre {
529 div.input_area > div.highlight > pre {
528 margin: 0px;
530 margin: 0px;
529 border: none;
531 border: none;
530 padding: 0px;
532 padding: 0px;
531 background-color: transparent;
533 background-color: transparent;
532 }
534 }
533 /* The following gets added to the <head> if it is detected that the user has a
535 /* The following gets added to the <head> if it is detected that the user has a
534 * monospace font with inconsistent normal/bold/italic height. See
536 * monospace font with inconsistent normal/bold/italic height. See
535 * notebookmain.js. Such fonts will have keywords vertically offset with
537 * notebookmain.js. Such fonts will have keywords vertically offset with
536 * respect to the rest of the text. The user should select a better font.
538 * respect to the rest of the text. The user should select a better font.
537 * See: https://github.com/ipython/ipython/issues/1503
539 * See: https://github.com/ipython/ipython/issues/1503
538 *
540 *
539 * .CodeMirror span {
541 * .CodeMirror span {
540 * vertical-align: bottom;
542 * vertical-align: bottom;
541 * }
543 * }
542 */
544 */
543 .CodeMirror {
545 .CodeMirror {
544 line-height: 1.21429em;
546 line-height: 1.21429em;
545 /* Changed from 1em to our global default */
547 /* Changed from 1em to our global default */
548 font-size: 14px;
546 height: auto;
549 height: auto;
547 /* Changed to auto to autogrow */
550 /* Changed to auto to autogrow */
548 background: none;
551 background: none;
549 /* Changed from white to allow our bg to show through */
552 /* Changed from white to allow our bg to show through */
550 }
553 }
551 .CodeMirror-scroll {
554 .CodeMirror-scroll {
552 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
555 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
553 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
556 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
554 overflow-y: hidden;
557 overflow-y: hidden;
555 overflow-x: auto;
558 overflow-x: auto;
556 }
559 }
557 .CodeMirror-lines {
560 .CodeMirror-lines {
558 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
561 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
559 /* we have set a different line-height and want this to scale with that. */
562 /* we have set a different line-height and want this to scale with that. */
560 padding: 0.4em;
563 padding: 0.4em;
561 }
564 }
562 .CodeMirror-linenumber {
565 .CodeMirror-linenumber {
563 padding: 0 8px 0 4px;
566 padding: 0 8px 0 4px;
564 }
567 }
565 .CodeMirror-gutters {
568 .CodeMirror-gutters {
566 border-bottom-left-radius: 4px;
569 border-bottom-left-radius: 2px;
567 border-top-left-radius: 4px;
570 border-top-left-radius: 2px;
568 }
571 }
569 .CodeMirror pre {
572 .CodeMirror pre {
570 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
573 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
571 /* .CodeMirror-lines */
574 /* .CodeMirror-lines */
572 padding: 0;
575 padding: 0;
573 border: 0;
576 border: 0;
574 border-radius: 0;
577 border-radius: 0;
575 }
578 }
576 .CodeMirror-vscrollbar,
579 .CodeMirror-vscrollbar,
577 .CodeMirror-hscrollbar {
580 .CodeMirror-hscrollbar {
578 display: none !important;
581 display: none !important;
579 }
582 }
580 /*
583 /*
581
584
582 Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
585 Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
583 Adapted from GitHub theme
586 Adapted from GitHub theme
584
587
585 */
588 */
586 .highlight-base {
589 .highlight-base {
587 color: #000000;
590 color: #000000;
588 }
591 }
589 .highlight-variable {
592 .highlight-variable {
590 color: #000000;
593 color: #000000;
591 }
594 }
592 .highlight-variable-2 {
595 .highlight-variable-2 {
593 color: #1a1a1a;
596 color: #1a1a1a;
594 }
597 }
595 .highlight-variable-3 {
598 .highlight-variable-3 {
596 color: #333333;
599 color: #333333;
597 }
600 }
598 .highlight-string {
601 .highlight-string {
599 color: #BA2121;
602 color: #BA2121;
600 }
603 }
601 .highlight-comment {
604 .highlight-comment {
602 color: #408080;
605 color: #408080;
603 font-style: italic;
606 font-style: italic;
604 }
607 }
605 .highlight-number {
608 .highlight-number {
606 color: #080;
609 color: #080;
607 }
610 }
608 .highlight-atom {
611 .highlight-atom {
609 color: #88F;
612 color: #88F;
610 }
613 }
611 .highlight-keyword {
614 .highlight-keyword {
612 color: #008000;
615 color: #008000;
613 font-weight: bold;
616 font-weight: bold;
614 }
617 }
615 .highlight-builtin {
618 .highlight-builtin {
616 color: #008000;
619 color: #008000;
617 }
620 }
618 .highlight-error {
621 .highlight-error {
619 color: #f00;
622 color: #f00;
620 }
623 }
621 .highlight-operator {
624 .highlight-operator {
622 color: #AA22FF;
625 color: #AA22FF;
623 font-weight: bold;
626 font-weight: bold;
624 }
627 }
625 .highlight-meta {
628 .highlight-meta {
626 color: #AA22FF;
629 color: #AA22FF;
627 }
630 }
628 /* previously not defined, copying from default codemirror */
631 /* previously not defined, copying from default codemirror */
629 .highlight-def {
632 .highlight-def {
630 color: #00f;
633 color: #00f;
631 }
634 }
632 .highlight-string-2 {
635 .highlight-string-2 {
633 color: #f50;
636 color: #f50;
634 }
637 }
635 .highlight-qualifier {
638 .highlight-qualifier {
636 color: #555;
639 color: #555;
637 }
640 }
638 .highlight-bracket {
641 .highlight-bracket {
639 color: #997;
642 color: #997;
640 }
643 }
641 .highlight-tag {
644 .highlight-tag {
642 color: #170;
645 color: #170;
643 }
646 }
644 .highlight-attribute {
647 .highlight-attribute {
645 color: #00c;
648 color: #00c;
646 }
649 }
647 .highlight-header {
650 .highlight-header {
648 color: blue;
651 color: blue;
649 }
652 }
650 .highlight-quote {
653 .highlight-quote {
651 color: #090;
654 color: #090;
652 }
655 }
653 .highlight-link {
656 .highlight-link {
654 color: #00c;
657 color: #00c;
655 }
658 }
656 /* apply the same style to codemirror */
659 /* apply the same style to codemirror */
657 .cm-s-ipython span.cm-keyword {
660 .cm-s-ipython span.cm-keyword {
658 color: #008000;
661 color: #008000;
659 font-weight: bold;
662 font-weight: bold;
660 }
663 }
661 .cm-s-ipython span.cm-atom {
664 .cm-s-ipython span.cm-atom {
662 color: #88F;
665 color: #88F;
663 }
666 }
664 .cm-s-ipython span.cm-number {
667 .cm-s-ipython span.cm-number {
665 color: #080;
668 color: #080;
666 }
669 }
667 .cm-s-ipython span.cm-def {
670 .cm-s-ipython span.cm-def {
668 color: #00f;
671 color: #00f;
669 }
672 }
670 .cm-s-ipython span.cm-variable {
673 .cm-s-ipython span.cm-variable {
671 color: #000000;
674 color: #000000;
672 }
675 }
673 .cm-s-ipython span.cm-operator {
676 .cm-s-ipython span.cm-operator {
674 color: #AA22FF;
677 color: #AA22FF;
675 font-weight: bold;
678 font-weight: bold;
676 }
679 }
677 .cm-s-ipython span.cm-variable-2 {
680 .cm-s-ipython span.cm-variable-2 {
678 color: #1a1a1a;
681 color: #1a1a1a;
679 }
682 }
680 .cm-s-ipython span.cm-variable-3 {
683 .cm-s-ipython span.cm-variable-3 {
681 color: #333333;
684 color: #333333;
682 }
685 }
683 .cm-s-ipython span.cm-comment {
686 .cm-s-ipython span.cm-comment {
684 color: #408080;
687 color: #408080;
685 font-style: italic;
688 font-style: italic;
686 }
689 }
687 .cm-s-ipython span.cm-string {
690 .cm-s-ipython span.cm-string {
688 color: #BA2121;
691 color: #BA2121;
689 }
692 }
690 .cm-s-ipython span.cm-string-2 {
693 .cm-s-ipython span.cm-string-2 {
691 color: #f50;
694 color: #f50;
692 }
695 }
693 .cm-s-ipython span.cm-meta {
696 .cm-s-ipython span.cm-meta {
694 color: #AA22FF;
697 color: #AA22FF;
695 }
698 }
696 .cm-s-ipython span.cm-qualifier {
699 .cm-s-ipython span.cm-qualifier {
697 color: #555;
700 color: #555;
698 }
701 }
699 .cm-s-ipython span.cm-builtin {
702 .cm-s-ipython span.cm-builtin {
700 color: #008000;
703 color: #008000;
701 }
704 }
702 .cm-s-ipython span.cm-bracket {
705 .cm-s-ipython span.cm-bracket {
703 color: #997;
706 color: #997;
704 }
707 }
705 .cm-s-ipython span.cm-tag {
708 .cm-s-ipython span.cm-tag {
706 color: #170;
709 color: #170;
707 }
710 }
708 .cm-s-ipython span.cm-attribute {
711 .cm-s-ipython span.cm-attribute {
709 color: #00c;
712 color: #00c;
710 }
713 }
711 .cm-s-ipython span.cm-header {
714 .cm-s-ipython span.cm-header {
712 color: blue;
715 color: blue;
713 }
716 }
714 .cm-s-ipython span.cm-quote {
717 .cm-s-ipython span.cm-quote {
715 color: #090;
718 color: #090;
716 }
719 }
717 .cm-s-ipython span.cm-link {
720 .cm-s-ipython span.cm-link {
718 color: #00c;
721 color: #00c;
719 }
722 }
720 .cm-s-ipython span.cm-error {
723 .cm-s-ipython span.cm-error {
721 color: #f00;
724 color: #f00;
722 }
725 }
723 .cm-s-ipython span.cm-tab {
726 .cm-s-ipython span.cm-tab {
724 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
727 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
725 background-position: right;
728 background-position: right;
726 background-repeat: no-repeat;
729 background-repeat: no-repeat;
727 }
730 }
728 div.output_wrapper {
731 div.output_wrapper {
729 /* this position must be relative to enable descendents to be absolute within it */
732 /* this position must be relative to enable descendents to be absolute within it */
730 position: relative;
733 position: relative;
731 /* Old browsers */
734 /* Old browsers */
732 display: -webkit-box;
735 display: -webkit-box;
733 -webkit-box-orient: vertical;
736 -webkit-box-orient: vertical;
734 -webkit-box-align: stretch;
737 -webkit-box-align: stretch;
735 display: -moz-box;
738 display: -moz-box;
736 -moz-box-orient: vertical;
739 -moz-box-orient: vertical;
737 -moz-box-align: stretch;
740 -moz-box-align: stretch;
738 display: box;
741 display: box;
739 box-orient: vertical;
742 box-orient: vertical;
740 box-align: stretch;
743 box-align: stretch;
741 /* Modern browsers */
744 /* Modern browsers */
742 display: flex;
745 display: flex;
743 flex-direction: column;
746 flex-direction: column;
744 align-items: stretch;
747 align-items: stretch;
745 }
748 }
746 /* class for the output area when it should be height-limited */
749 /* class for the output area when it should be height-limited */
747 div.output_scroll {
750 div.output_scroll {
748 /* ideally, this would be max-height, but FF barfs all over that */
751 /* ideally, this would be max-height, but FF barfs all over that */
749 height: 24em;
752 height: 24em;
750 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
753 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
751 width: 100%;
754 width: 100%;
752 overflow: auto;
755 overflow: auto;
753 border-radius: 4px;
756 border-radius: 2px;
754 -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
757 -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
755 box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
758 box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
756 display: block;
759 display: block;
757 }
760 }
758 /* output div while it is collapsed */
761 /* output div while it is collapsed */
759 div.output_collapsed {
762 div.output_collapsed {
760 margin: 0px;
763 margin: 0px;
761 padding: 0px;
764 padding: 0px;
762 /* Old browsers */
765 /* Old browsers */
763 display: -webkit-box;
766 display: -webkit-box;
764 -webkit-box-orient: vertical;
767 -webkit-box-orient: vertical;
765 -webkit-box-align: stretch;
768 -webkit-box-align: stretch;
766 display: -moz-box;
769 display: -moz-box;
767 -moz-box-orient: vertical;
770 -moz-box-orient: vertical;
768 -moz-box-align: stretch;
771 -moz-box-align: stretch;
769 display: box;
772 display: box;
770 box-orient: vertical;
773 box-orient: vertical;
771 box-align: stretch;
774 box-align: stretch;
772 /* Modern browsers */
775 /* Modern browsers */
773 display: flex;
776 display: flex;
774 flex-direction: column;
777 flex-direction: column;
775 align-items: stretch;
778 align-items: stretch;
776 }
779 }
777 div.out_prompt_overlay {
780 div.out_prompt_overlay {
778 height: 100%;
781 height: 100%;
779 padding: 0px 0.4em;
782 padding: 0px 0.4em;
780 position: absolute;
783 position: absolute;
781 border-radius: 4px;
784 border-radius: 2px;
782 }
785 }
783 div.out_prompt_overlay:hover {
786 div.out_prompt_overlay:hover {
784 /* use inner shadow to get border that is computed the same on WebKit/FF */
787 /* use inner shadow to get border that is computed the same on WebKit/FF */
785 -webkit-box-shadow: inset 0 0 1px #000000;
788 -webkit-box-shadow: inset 0 0 1px #000000;
786 box-shadow: inset 0 0 1px #000000;
789 box-shadow: inset 0 0 1px #000000;
787 background: rgba(240, 240, 240, 0.5);
790 background: rgba(240, 240, 240, 0.5);
788 }
791 }
789 div.output_prompt {
792 div.output_prompt {
790 color: darkred;
793 color: darkred;
791 }
794 }
792 /* This class is the outer container of all output sections. */
795 /* This class is the outer container of all output sections. */
793 div.output_area {
796 div.output_area {
794 padding: 0px;
797 padding: 0px;
795 page-break-inside: avoid;
798 page-break-inside: avoid;
796 /* Old browsers */
799 /* Old browsers */
797 display: -webkit-box;
800 display: -webkit-box;
798 -webkit-box-orient: horizontal;
801 -webkit-box-orient: horizontal;
799 -webkit-box-align: stretch;
802 -webkit-box-align: stretch;
800 display: -moz-box;
803 display: -moz-box;
801 -moz-box-orient: horizontal;
804 -moz-box-orient: horizontal;
802 -moz-box-align: stretch;
805 -moz-box-align: stretch;
803 display: box;
806 display: box;
804 box-orient: horizontal;
807 box-orient: horizontal;
805 box-align: stretch;
808 box-align: stretch;
806 /* Modern browsers */
809 /* Modern browsers */
807 display: flex;
810 display: flex;
808 flex-direction: row;
811 flex-direction: row;
809 align-items: stretch;
812 align-items: stretch;
810 }
813 }
811 div.output_area .MathJax_Display {
814 div.output_area .MathJax_Display {
812 text-align: left !important;
815 text-align: left !important;
813 }
816 }
814 div.output_area .rendered_html table {
817 div.output_area .rendered_html table {
815 margin-left: 0;
818 margin-left: 0;
816 margin-right: 0;
819 margin-right: 0;
817 }
820 }
818 div.output_area .rendered_html img {
821 div.output_area .rendered_html img {
819 margin-left: 0;
822 margin-left: 0;
820 margin-right: 0;
823 margin-right: 0;
821 }
824 }
822 /* This is needed to protect the pre formating from global settings such
825 /* This is needed to protect the pre formating from global settings such
823 as that of bootstrap */
826 as that of bootstrap */
824 .output {
827 .output {
825 /* Old browsers */
828 /* Old browsers */
826 display: -webkit-box;
829 display: -webkit-box;
827 -webkit-box-orient: vertical;
830 -webkit-box-orient: vertical;
828 -webkit-box-align: stretch;
831 -webkit-box-align: stretch;
829 display: -moz-box;
832 display: -moz-box;
830 -moz-box-orient: vertical;
833 -moz-box-orient: vertical;
831 -moz-box-align: stretch;
834 -moz-box-align: stretch;
832 display: box;
835 display: box;
833 box-orient: vertical;
836 box-orient: vertical;
834 box-align: stretch;
837 box-align: stretch;
835 /* Modern browsers */
838 /* Modern browsers */
836 display: flex;
839 display: flex;
837 flex-direction: column;
840 flex-direction: column;
838 align-items: stretch;
841 align-items: stretch;
839 }
842 }
840 @media (max-width: 480px) {
843 @media (max-width: 480px) {
841 div.output_area {
844 div.output_area {
842 /* Old browsers */
845 /* Old browsers */
843 display: -webkit-box;
846 display: -webkit-box;
844 -webkit-box-orient: vertical;
847 -webkit-box-orient: vertical;
845 -webkit-box-align: stretch;
848 -webkit-box-align: stretch;
846 display: -moz-box;
849 display: -moz-box;
847 -moz-box-orient: vertical;
850 -moz-box-orient: vertical;
848 -moz-box-align: stretch;
851 -moz-box-align: stretch;
849 display: box;
852 display: box;
850 box-orient: vertical;
853 box-orient: vertical;
851 box-align: stretch;
854 box-align: stretch;
852 /* Modern browsers */
855 /* Modern browsers */
853 display: flex;
856 display: flex;
854 flex-direction: column;
857 flex-direction: column;
855 align-items: stretch;
858 align-items: stretch;
856 }
859 }
857 }
860 }
858 div.output_area pre {
861 div.output_area pre {
859 margin: 0;
862 margin: 0;
860 padding: 0;
863 padding: 0;
861 border: 0;
864 border: 0;
862 vertical-align: baseline;
865 vertical-align: baseline;
863 color: black;
866 color: black;
864 background-color: transparent;
867 background-color: transparent;
865 border-radius: 0;
868 border-radius: 0;
866 }
869 }
867 /* This class is for the output subarea inside the output_area and after
870 /* This class is for the output subarea inside the output_area and after
868 the prompt div. */
871 the prompt div. */
869 div.output_subarea {
872 div.output_subarea {
870 padding: 0.4em 0.4em 0em 0.4em;
873 padding: 0.4em 0.4em 0em 0.4em;
871 /* Old browsers */
874 /* Old browsers */
872 -webkit-box-flex: 1;
875 -webkit-box-flex: 1;
873 -moz-box-flex: 1;
876 -moz-box-flex: 1;
874 box-flex: 1;
877 box-flex: 1;
875 /* Modern browsers */
878 /* Modern browsers */
876 flex: 1;
879 flex: 1;
877 }
880 }
878 /* The rest of the output_* classes are for special styling of the different
881 /* The rest of the output_* classes are for special styling of the different
879 output types */
882 output types */
880 /* all text output has this class: */
883 /* all text output has this class: */
881 div.output_text {
884 div.output_text {
882 text-align: left;
885 text-align: left;
883 color: #000000;
886 color: #000000;
884 /* This has to match that of the the CodeMirror class line-height below */
887 /* This has to match that of the the CodeMirror class line-height below */
885 line-height: 1.21429em;
888 line-height: 1.21429em;
886 }
889 }
887 /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
890 /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
888 div.output_stderr {
891 div.output_stderr {
889 background: #fdd;
892 background: #fdd;
890 /* very light red background for stderr */
893 /* very light red background for stderr */
891 }
894 }
892 div.output_latex {
895 div.output_latex {
893 text-align: left;
896 text-align: left;
894 }
897 }
895 /* Empty output_javascript divs should have no height */
898 /* Empty output_javascript divs should have no height */
896 div.output_javascript:empty {
899 div.output_javascript:empty {
897 padding: 0;
900 padding: 0;
898 }
901 }
899 .js-error {
902 .js-error {
900 color: darkred;
903 color: darkred;
901 }
904 }
902 /* raw_input styles */
905 /* raw_input styles */
903 div.raw_input_container {
906 div.raw_input_container {
904 font-family: monospace;
907 font-family: monospace;
905 padding-top: 5px;
908 padding-top: 5px;
906 }
909 }
907 span.raw_input_prompt {
910 span.raw_input_prompt {
908 /* nothing needed here */
911 /* nothing needed here */
909 }
912 }
910 input.raw_input {
913 input.raw_input {
911 font-family: inherit;
914 font-family: inherit;
912 font-size: inherit;
915 font-size: inherit;
913 color: inherit;
916 color: inherit;
914 width: auto;
917 width: auto;
915 /* make sure input baseline aligns with prompt */
918 /* make sure input baseline aligns with prompt */
916 vertical-align: baseline;
919 vertical-align: baseline;
917 /* padding + margin = 0.5em between prompt and cursor */
920 /* padding + margin = 0.5em between prompt and cursor */
918 padding: 0em 0.25em;
921 padding: 0em 0.25em;
919 margin: 0em 0.25em;
922 margin: 0em 0.25em;
920 }
923 }
921 input.raw_input:focus {
924 input.raw_input:focus {
922 box-shadow: none;
925 box-shadow: none;
923 }
926 }
924 p.p-space {
927 p.p-space {
925 margin-bottom: 10px;
928 margin-bottom: 10px;
926 }
929 }
927 div.output_unrecognized {
930 div.output_unrecognized {
928 padding: 5px;
931 padding: 5px;
929 font-weight: bold;
932 font-weight: bold;
930 color: red;
933 color: red;
931 }
934 }
932 div.output_unrecognized a {
935 div.output_unrecognized a {
933 color: inherit;
936 color: inherit;
934 text-decoration: none;
937 text-decoration: none;
935 }
938 }
936 div.output_unrecognized a:hover {
939 div.output_unrecognized a:hover {
937 color: inherit;
940 color: inherit;
938 text-decoration: none;
941 text-decoration: none;
939 }
942 }
940 .rendered_html {
943 .rendered_html {
941 color: #000000;
944 color: #000000;
942 /* any extras will just be numbers: */
945 /* any extras will just be numbers: */
943 }
946 }
944 .rendered_html em {
947 .rendered_html em {
945 font-style: italic;
948 font-style: italic;
946 }
949 }
947 .rendered_html strong {
950 .rendered_html strong {
948 font-weight: bold;
951 font-weight: bold;
949 }
952 }
950 .rendered_html u {
953 .rendered_html u {
951 text-decoration: underline;
954 text-decoration: underline;
952 }
955 }
953 .rendered_html :link {
956 .rendered_html :link {
954 text-decoration: underline;
957 text-decoration: underline;
955 }
958 }
956 .rendered_html :visited {
959 .rendered_html :visited {
957 text-decoration: underline;
960 text-decoration: underline;
958 }
961 }
959 .rendered_html h1 {
962 .rendered_html h1 {
960 font-size: 185.7%;
963 font-size: 185.7%;
961 margin: 1.08em 0 0 0;
964 margin: 1.08em 0 0 0;
962 font-weight: bold;
965 font-weight: bold;
963 line-height: 1.0;
966 line-height: 1.0;
964 }
967 }
965 .rendered_html h2 {
968 .rendered_html h2 {
966 font-size: 157.1%;
969 font-size: 157.1%;
967 margin: 1.27em 0 0 0;
970 margin: 1.27em 0 0 0;
968 font-weight: bold;
971 font-weight: bold;
969 line-height: 1.0;
972 line-height: 1.0;
970 }
973 }
971 .rendered_html h3 {
974 .rendered_html h3 {
972 font-size: 128.6%;
975 font-size: 128.6%;
973 margin: 1.55em 0 0 0;
976 margin: 1.55em 0 0 0;
974 font-weight: bold;
977 font-weight: bold;
975 line-height: 1.0;
978 line-height: 1.0;
976 }
979 }
977 .rendered_html h4 {
980 .rendered_html h4 {
978 font-size: 100%;
981 font-size: 100%;
979 margin: 2em 0 0 0;
982 margin: 2em 0 0 0;
980 font-weight: bold;
983 font-weight: bold;
981 line-height: 1.0;
984 line-height: 1.0;
982 }
985 }
983 .rendered_html h5 {
986 .rendered_html h5 {
984 font-size: 100%;
987 font-size: 100%;
985 margin: 2em 0 0 0;
988 margin: 2em 0 0 0;
986 font-weight: bold;
989 font-weight: bold;
987 line-height: 1.0;
990 line-height: 1.0;
988 font-style: italic;
991 font-style: italic;
989 }
992 }
990 .rendered_html h6 {
993 .rendered_html h6 {
991 font-size: 100%;
994 font-size: 100%;
992 margin: 2em 0 0 0;
995 margin: 2em 0 0 0;
993 font-weight: bold;
996 font-weight: bold;
994 line-height: 1.0;
997 line-height: 1.0;
995 font-style: italic;
998 font-style: italic;
996 }
999 }
997 .rendered_html h1:first-child {
1000 .rendered_html h1:first-child {
998 margin-top: 0.538em;
1001 margin-top: 0.538em;
999 }
1002 }
1000 .rendered_html h2:first-child {
1003 .rendered_html h2:first-child {
1001 margin-top: 0.636em;
1004 margin-top: 0.636em;
1002 }
1005 }
1003 .rendered_html h3:first-child {
1006 .rendered_html h3:first-child {
1004 margin-top: 0.777em;
1007 margin-top: 0.777em;
1005 }
1008 }
1006 .rendered_html h4:first-child {
1009 .rendered_html h4:first-child {
1007 margin-top: 1em;
1010 margin-top: 1em;
1008 }
1011 }
1009 .rendered_html h5:first-child {
1012 .rendered_html h5:first-child {
1010 margin-top: 1em;
1013 margin-top: 1em;
1011 }
1014 }
1012 .rendered_html h6:first-child {
1015 .rendered_html h6:first-child {
1013 margin-top: 1em;
1016 margin-top: 1em;
1014 }
1017 }
1015 .rendered_html ul {
1018 .rendered_html ul {
1016 list-style: disc;
1019 list-style: disc;
1017 margin: 0em 2em;
1020 margin: 0em 2em;
1018 padding-left: 0px;
1021 padding-left: 0px;
1019 }
1022 }
1020 .rendered_html ul ul {
1023 .rendered_html ul ul {
1021 list-style: square;
1024 list-style: square;
1022 margin: 0em 2em;
1025 margin: 0em 2em;
1023 }
1026 }
1024 .rendered_html ul ul ul {
1027 .rendered_html ul ul ul {
1025 list-style: circle;
1028 list-style: circle;
1026 margin: 0em 2em;
1029 margin: 0em 2em;
1027 }
1030 }
1028 .rendered_html ol {
1031 .rendered_html ol {
1029 list-style: decimal;
1032 list-style: decimal;
1030 margin: 0em 2em;
1033 margin: 0em 2em;
1031 padding-left: 0px;
1034 padding-left: 0px;
1032 }
1035 }
1033 .rendered_html ol ol {
1036 .rendered_html ol ol {
1034 list-style: upper-alpha;
1037 list-style: upper-alpha;
1035 margin: 0em 2em;
1038 margin: 0em 2em;
1036 }
1039 }
1037 .rendered_html ol ol ol {
1040 .rendered_html ol ol ol {
1038 list-style: lower-alpha;
1041 list-style: lower-alpha;
1039 margin: 0em 2em;
1042 margin: 0em 2em;
1040 }
1043 }
1041 .rendered_html ol ol ol ol {
1044 .rendered_html ol ol ol ol {
1042 list-style: lower-roman;
1045 list-style: lower-roman;
1043 margin: 0em 2em;
1046 margin: 0em 2em;
1044 }
1047 }
1045 .rendered_html ol ol ol ol ol {
1048 .rendered_html ol ol ol ol ol {
1046 list-style: decimal;
1049 list-style: decimal;
1047 margin: 0em 2em;
1050 margin: 0em 2em;
1048 }
1051 }
1049 .rendered_html * + ul {
1052 .rendered_html * + ul {
1050 margin-top: 1em;
1053 margin-top: 1em;
1051 }
1054 }
1052 .rendered_html * + ol {
1055 .rendered_html * + ol {
1053 margin-top: 1em;
1056 margin-top: 1em;
1054 }
1057 }
1055 .rendered_html hr {
1058 .rendered_html hr {
1056 color: black;
1059 color: black;
1057 background-color: black;
1060 background-color: black;
1058 }
1061 }
1059 .rendered_html pre {
1062 .rendered_html pre {
1060 margin: 1em 2em;
1063 margin: 1em 2em;
1061 }
1064 }
1062 .rendered_html pre,
1065 .rendered_html pre,
1063 .rendered_html code {
1066 .rendered_html code {
1064 border: 0;
1067 border: 0;
1065 background-color: #ffffff;
1068 background-color: #ffffff;
1066 color: #000000;
1069 color: #000000;
1067 font-size: 100%;
1070 font-size: 100%;
1068 padding: 0px;
1071 padding: 0px;
1069 }
1072 }
1070 .rendered_html blockquote {
1073 .rendered_html blockquote {
1071 margin: 1em 2em;
1074 margin: 1em 2em;
1072 }
1075 }
1073 .rendered_html table {
1076 .rendered_html table {
1074 margin-left: auto;
1077 margin-left: auto;
1075 margin-right: auto;
1078 margin-right: auto;
1076 border: 1px solid black;
1079 border: 1px solid black;
1077 border-collapse: collapse;
1080 border-collapse: collapse;
1078 }
1081 }
1079 .rendered_html tr,
1082 .rendered_html tr,
1080 .rendered_html th,
1083 .rendered_html th,
1081 .rendered_html td {
1084 .rendered_html td {
1082 border: 1px solid black;
1085 border: 1px solid black;
1083 border-collapse: collapse;
1086 border-collapse: collapse;
1084 margin: 1em 2em;
1087 margin: 1em 2em;
1085 }
1088 }
1086 .rendered_html td,
1089 .rendered_html td,
1087 .rendered_html th {
1090 .rendered_html th {
1088 text-align: left;
1091 text-align: left;
1089 vertical-align: middle;
1092 vertical-align: middle;
1090 padding: 4px;
1093 padding: 4px;
1091 }
1094 }
1092 .rendered_html th {
1095 .rendered_html th {
1093 font-weight: bold;
1096 font-weight: bold;
1094 }
1097 }
1095 .rendered_html * + table {
1098 .rendered_html * + table {
1096 margin-top: 1em;
1099 margin-top: 1em;
1097 }
1100 }
1098 .rendered_html p {
1101 .rendered_html p {
1099 text-align: justify;
1102 text-align: justify;
1100 }
1103 }
1101 .rendered_html * + p {
1104 .rendered_html * + p {
1102 margin-top: 1em;
1105 margin-top: 1em;
1103 }
1106 }
1104 .rendered_html img {
1107 .rendered_html img {
1105 display: block;
1108 display: block;
1106 margin-left: auto;
1109 margin-left: auto;
1107 margin-right: auto;
1110 margin-right: auto;
1108 }
1111 }
1109 .rendered_html * + img {
1112 .rendered_html * + img {
1110 margin-top: 1em;
1113 margin-top: 1em;
1111 }
1114 }
1112 div.text_cell {
1115 div.text_cell {
1113 padding: 5px 5px 5px 0px;
1116 padding: 5px 5px 5px 0px;
1114 /* Old browsers */
1117 /* Old browsers */
1115 display: -webkit-box;
1118 display: -webkit-box;
1116 -webkit-box-orient: horizontal;
1119 -webkit-box-orient: horizontal;
1117 -webkit-box-align: stretch;
1120 -webkit-box-align: stretch;
1118 display: -moz-box;
1121 display: -moz-box;
1119 -moz-box-orient: horizontal;
1122 -moz-box-orient: horizontal;
1120 -moz-box-align: stretch;
1123 -moz-box-align: stretch;
1121 display: box;
1124 display: box;
1122 box-orient: horizontal;
1125 box-orient: horizontal;
1123 box-align: stretch;
1126 box-align: stretch;
1124 /* Modern browsers */
1127 /* Modern browsers */
1125 display: flex;
1128 display: flex;
1126 flex-direction: row;
1129 flex-direction: row;
1127 align-items: stretch;
1130 align-items: stretch;
1128 }
1131 }
1129 @media (max-width: 480px) {
1132 @media (max-width: 480px) {
1130 div.text_cell > div.prompt {
1133 div.text_cell > div.prompt {
1131 display: none;
1134 display: none;
1132 }
1135 }
1133 }
1136 }
1134 div.text_cell_render {
1137 div.text_cell_render {
1135 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
1138 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
1136 outline: none;
1139 outline: none;
1137 resize: none;
1140 resize: none;
1138 width: inherit;
1141 width: inherit;
1139 border-style: none;
1142 border-style: none;
1140 padding: 0.5em 0.5em 0.5em 0.4em;
1143 padding: 0.5em 0.5em 0.5em 0.4em;
1141 color: #000000;
1144 color: #000000;
1142 box-sizing: border-box;
1145 box-sizing: border-box;
1143 -moz-box-sizing: border-box;
1146 -moz-box-sizing: border-box;
1144 -webkit-box-sizing: border-box;
1147 -webkit-box-sizing: border-box;
1145 }
1148 }
1146 a.anchor-link:link {
1149 a.anchor-link:link {
1147 text-decoration: none;
1150 text-decoration: none;
1148 padding: 0px 20px;
1151 padding: 0px 20px;
1149 visibility: hidden;
1152 visibility: hidden;
1150 }
1153 }
1151 h1:hover .anchor-link,
1154 h1:hover .anchor-link,
1152 h2:hover .anchor-link,
1155 h2:hover .anchor-link,
1153 h3:hover .anchor-link,
1156 h3:hover .anchor-link,
1154 h4:hover .anchor-link,
1157 h4:hover .anchor-link,
1155 h5:hover .anchor-link,
1158 h5:hover .anchor-link,
1156 h6:hover .anchor-link {
1159 h6:hover .anchor-link {
1157 visibility: visible;
1160 visibility: visible;
1158 }
1161 }
1159 .text_cell.rendered .input_area {
1162 .text_cell.rendered .input_area {
1160 display: none;
1163 display: none;
1161 }
1164 }
1162 .text_cell.unrendered .text_cell_render {
1165 .text_cell.unrendered .text_cell_render {
1163 display: none;
1166 display: none;
1164 }
1167 }
1165 .cm-header-1,
1168 .cm-header-1,
1166 .cm-header-2,
1169 .cm-header-2,
1167 .cm-header-3,
1170 .cm-header-3,
1168 .cm-header-4,
1171 .cm-header-4,
1169 .cm-header-5,
1172 .cm-header-5,
1170 .cm-header-6 {
1173 .cm-header-6 {
1171 font-weight: bold;
1174 font-weight: bold;
1172 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1175 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1173 }
1176 }
1174 .cm-header-1 {
1177 .cm-header-1 {
1175 font-size: 185.7%;
1178 font-size: 185.7%;
1176 }
1179 }
1177 .cm-header-2 {
1180 .cm-header-2 {
1178 font-size: 157.1%;
1181 font-size: 157.1%;
1179 }
1182 }
1180 .cm-header-3 {
1183 .cm-header-3 {
1181 font-size: 128.6%;
1184 font-size: 128.6%;
1182 }
1185 }
1183 .cm-header-4 {
1186 .cm-header-4 {
1184 font-size: 110%;
1187 font-size: 110%;
1185 }
1188 }
1186 .cm-header-5 {
1189 .cm-header-5 {
1187 font-size: 100%;
1190 font-size: 100%;
1188 font-style: italic;
1191 font-style: italic;
1189 }
1192 }
1190 .cm-header-6 {
1193 .cm-header-6 {
1191 font-size: 100%;
1194 font-size: 100%;
1192 font-style: italic;
1195 font-style: italic;
1193 }
1196 }
1194 .widget-area {
1197 .widget-area {
1195 /*
1198 /*
1196 LESS file that styles IPython notebook widgets and the area they sit in.
1199 LESS file that styles IPython notebook widgets and the area they sit in.
1197
1200
1198 The widget area typically looks something like this:
1201 The widget area typically looks something like this:
1199 +------------------------------------------+
1202 +------------------------------------------+
1200 | widget-area |
1203 | widget-area |
1201 | +--------+---------------------------+ |
1204 | +--------+---------------------------+ |
1202 | | prompt | widget-subarea | |
1205 | | prompt | widget-subarea | |
1203 | | | +--------+ +--------+ | |
1206 | | | +--------+ +--------+ | |
1204 | | | | widget | | widget | | |
1207 | | | | widget | | widget | | |
1205 | | | +--------+ +--------+ | |
1208 | | | +--------+ +--------+ | |
1206 | +--------+---------------------------+ |
1209 | +--------+---------------------------+ |
1207 +------------------------------------------+
1210 +------------------------------------------+
1208 */
1211 */
1209 page-break-inside: avoid;
1212 page-break-inside: avoid;
1210 /* Old browsers */
1213 /* Old browsers */
1211 display: -webkit-box;
1214 display: -webkit-box;
1212 -webkit-box-orient: horizontal;
1215 -webkit-box-orient: horizontal;
1213 -webkit-box-align: stretch;
1216 -webkit-box-align: stretch;
1214 display: -moz-box;
1217 display: -moz-box;
1215 -moz-box-orient: horizontal;
1218 -moz-box-orient: horizontal;
1216 -moz-box-align: stretch;
1219 -moz-box-align: stretch;
1217 display: box;
1220 display: box;
1218 box-orient: horizontal;
1221 box-orient: horizontal;
1219 box-align: stretch;
1222 box-align: stretch;
1220 /* Modern browsers */
1223 /* Modern browsers */
1221 display: flex;
1224 display: flex;
1222 flex-direction: row;
1225 flex-direction: row;
1223 align-items: stretch;
1226 align-items: stretch;
1224 }
1227 }
1225 .widget-area .widget-subarea {
1228 .widget-area .widget-subarea {
1226 padding: 0.44em 0.4em 0.4em 1px;
1229 padding: 0.44em 0.4em 0.4em 1px;
1227 margin-left: 6px;
1230 margin-left: 6px;
1228 box-sizing: border-box;
1231 box-sizing: border-box;
1229 -moz-box-sizing: border-box;
1232 -moz-box-sizing: border-box;
1230 -webkit-box-sizing: border-box;
1233 -webkit-box-sizing: border-box;
1231 /* Old browsers */
1234 /* Old browsers */
1232 display: -webkit-box;
1235 display: -webkit-box;
1233 -webkit-box-orient: vertical;
1236 -webkit-box-orient: vertical;
1234 -webkit-box-align: stretch;
1237 -webkit-box-align: stretch;
1235 display: -moz-box;
1238 display: -moz-box;
1236 -moz-box-orient: vertical;
1239 -moz-box-orient: vertical;
1237 -moz-box-align: stretch;
1240 -moz-box-align: stretch;
1238 display: box;
1241 display: box;
1239 box-orient: vertical;
1242 box-orient: vertical;
1240 box-align: stretch;
1243 box-align: stretch;
1241 /* Modern browsers */
1244 /* Modern browsers */
1242 display: flex;
1245 display: flex;
1243 flex-direction: column;
1246 flex-direction: column;
1244 align-items: stretch;
1247 align-items: stretch;
1245 /* Old browsers */
1248 /* Old browsers */
1246 -webkit-box-flex: 2;
1249 -webkit-box-flex: 2;
1247 -moz-box-flex: 2;
1250 -moz-box-flex: 2;
1248 box-flex: 2;
1251 box-flex: 2;
1249 /* Modern browsers */
1252 /* Modern browsers */
1250 flex: 2;
1253 flex: 2;
1251 /* Old browsers */
1254 /* Old browsers */
1252 -webkit-box-align: start;
1255 -webkit-box-align: start;
1253 -moz-box-align: start;
1256 -moz-box-align: start;
1254 box-align: start;
1257 box-align: start;
1255 /* Modern browsers */
1258 /* Modern browsers */
1256 align-items: flex-start;
1259 align-items: flex-start;
1257 }
1260 }
1258 .widget-area.connection-problems .prompt:after {
1261 .widget-area.connection-problems .prompt:after {
1259 content: "\f127";
1262 content: "\f127";
1260 font-family: 'FontAwesome';
1263 font-family: 'FontAwesome';
1261 color: #d9534f;
1264 color: #d9534f;
1262 font-size: 14px;
1265 font-size: 14px;
1263 top: 3px;
1266 top: 3px;
1264 padding: 3px;
1267 padding: 3px;
1265 }
1268 }
1266 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
1269 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
1267 THE WIDGET AREA). */
1270 THE WIDGET AREA). */
1268 .slide-track {
1271 .slide-track {
1269 /* Slider Track */
1272 /* Slider Track */
1270 border: 1px solid #CCCCCC;
1273 border: 1px solid #CCCCCC;
1271 background: #FFFFFF;
1274 background: #FFFFFF;
1272 border-radius: 4px;
1275 border-radius: 2px;
1273 /* Round the corners of the slide track */
1276 /* Round the corners of the slide track */
1274 }
1277 }
1275 .widget-hslider {
1278 .widget-hslider {
1276 /* Horizontal jQuery Slider
1279 /* Horizontal jQuery Slider
1277
1280
1278 Both the horizontal and vertical versions of the slider are characterized
1281 Both the horizontal and vertical versions of the slider are characterized
1279 by a styled div that contains an invisible jQuery slide div which
1282 by a styled div that contains an invisible jQuery slide div which
1280 contains a visible slider handle div. This is requred so we can control
1283 contains a visible slider handle div. This is requred so we can control
1281 how the slider is drawn and 'fix' the issue where the slide handle
1284 how the slider is drawn and 'fix' the issue where the slide handle
1282 doesn't stop at the end of the slide.
1285 doesn't stop at the end of the slide.
1283
1286
1284 Both horizontal and vertical sliders have this div nesting:
1287 Both horizontal and vertical sliders have this div nesting:
1285 +------------------------------------------+
1288 +------------------------------------------+
1286 | widget-(h/v)slider |
1289 | widget-(h/v)slider |
1287 | +--------+---------------------------+ |
1290 | +--------+---------------------------+ |
1288 | | ui-slider | |
1291 | | ui-slider | |
1289 | | +------------------+ | |
1292 | | +------------------+ | |
1290 | | | ui-slider-handle | | |
1293 | | | ui-slider-handle | | |
1291 | | +------------------+ | |
1294 | | +------------------+ | |
1292 | +--------+---------------------------+ |
1295 | +--------+---------------------------+ |
1293 +------------------------------------------+
1296 +------------------------------------------+
1294 */
1297 */
1295 /* Fix the padding of the slide track so the ui-slider is sized
1298 /* Fix the padding of the slide track so the ui-slider is sized
1296 correctly. */
1299 correctly. */
1297 padding-left: 8px;
1300 padding-left: 8px;
1298 padding-right: 5px;
1301 padding-right: 5px;
1299 overflow: visible;
1302 overflow: visible;
1300 /* Default size of the slider */
1303 /* Default size of the slider */
1301 width: 350px;
1304 width: 350px;
1302 height: 5px;
1305 height: 5px;
1303 max-height: 5px;
1306 max-height: 5px;
1304 margin-top: 13px;
1307 margin-top: 13px;
1305 margin-bottom: 10px;
1308 margin-bottom: 10px;
1306 /* Style the slider track */
1309 /* Style the slider track */
1307 /* Slider Track */
1310 /* Slider Track */
1308 border: 1px solid #CCCCCC;
1311 border: 1px solid #CCCCCC;
1309 background: #FFFFFF;
1312 background: #FFFFFF;
1310 border-radius: 4px;
1313 border-radius: 2px;
1311 /* Round the corners of the slide track */
1314 /* Round the corners of the slide track */
1312 /* Make the div a flex box (makes FF behave correctly). */
1315 /* Make the div a flex box (makes FF behave correctly). */
1313 /* Old browsers */
1316 /* Old browsers */
1314 display: -webkit-box;
1317 display: -webkit-box;
1315 -webkit-box-orient: horizontal;
1318 -webkit-box-orient: horizontal;
1316 -webkit-box-align: stretch;
1319 -webkit-box-align: stretch;
1317 display: -moz-box;
1320 display: -moz-box;
1318 -moz-box-orient: horizontal;
1321 -moz-box-orient: horizontal;
1319 -moz-box-align: stretch;
1322 -moz-box-align: stretch;
1320 display: box;
1323 display: box;
1321 box-orient: horizontal;
1324 box-orient: horizontal;
1322 box-align: stretch;
1325 box-align: stretch;
1323 /* Modern browsers */
1326 /* Modern browsers */
1324 display: flex;
1327 display: flex;
1325 flex-direction: row;
1328 flex-direction: row;
1326 align-items: stretch;
1329 align-items: stretch;
1327 }
1330 }
1328 .widget-hslider .ui-slider {
1331 .widget-hslider .ui-slider {
1329 /* Inner, invisible slide div */
1332 /* Inner, invisible slide div */
1330 border: 0px !important;
1333 border: 0px !important;
1331 background: none !important;
1334 background: none !important;
1332 /* Old browsers */
1335 /* Old browsers */
1333 display: -webkit-box;
1336 display: -webkit-box;
1334 -webkit-box-orient: horizontal;
1337 -webkit-box-orient: horizontal;
1335 -webkit-box-align: stretch;
1338 -webkit-box-align: stretch;
1336 display: -moz-box;
1339 display: -moz-box;
1337 -moz-box-orient: horizontal;
1340 -moz-box-orient: horizontal;
1338 -moz-box-align: stretch;
1341 -moz-box-align: stretch;
1339 display: box;
1342 display: box;
1340 box-orient: horizontal;
1343 box-orient: horizontal;
1341 box-align: stretch;
1344 box-align: stretch;
1342 /* Modern browsers */
1345 /* Modern browsers */
1343 display: flex;
1346 display: flex;
1344 flex-direction: row;
1347 flex-direction: row;
1345 align-items: stretch;
1348 align-items: stretch;
1346 /* Old browsers */
1349 /* Old browsers */
1347 -webkit-box-flex: 1;
1350 -webkit-box-flex: 1;
1348 -moz-box-flex: 1;
1351 -moz-box-flex: 1;
1349 box-flex: 1;
1352 box-flex: 1;
1350 /* Modern browsers */
1353 /* Modern browsers */
1351 flex: 1;
1354 flex: 1;
1352 }
1355 }
1353 .widget-hslider .ui-slider .ui-slider-handle {
1356 .widget-hslider .ui-slider .ui-slider-handle {
1354 width: 14px !important;
1357 width: 14px !important;
1355 height: 28px !important;
1358 height: 28px !important;
1356 margin-top: -8px !important;
1359 margin-top: -8px !important;
1357 }
1360 }
1358 .widget-hslider .ui-slider .ui-slider-range {
1361 .widget-hslider .ui-slider .ui-slider-range {
1359 height: 12px !important;
1362 height: 12px !important;
1360 margin-top: -4px !important;
1363 margin-top: -4px !important;
1361 }
1364 }
1362 .widget-vslider {
1365 .widget-vslider {
1363 /* Vertical jQuery Slider */
1366 /* Vertical jQuery Slider */
1364 /* Fix the padding of the slide track so the ui-slider is sized
1367 /* Fix the padding of the slide track so the ui-slider is sized
1365 correctly. */
1368 correctly. */
1366 padding-bottom: 8px;
1369 padding-bottom: 8px;
1367 overflow: visible;
1370 overflow: visible;
1368 /* Default size of the slider */
1371 /* Default size of the slider */
1369 width: 5px;
1372 width: 5px;
1370 max-width: 5px;
1373 max-width: 5px;
1371 height: 250px;
1374 height: 250px;
1372 margin-left: 12px;
1375 margin-left: 12px;
1373 /* Style the slider track */
1376 /* Style the slider track */
1374 /* Slider Track */
1377 /* Slider Track */
1375 border: 1px solid #CCCCCC;
1378 border: 1px solid #CCCCCC;
1376 background: #FFFFFF;
1379 background: #FFFFFF;
1377 border-radius: 4px;
1380 border-radius: 2px;
1378 /* Round the corners of the slide track */
1381 /* Round the corners of the slide track */
1379 /* Make the div a flex box (makes FF behave correctly). */
1382 /* Make the div a flex box (makes FF behave correctly). */
1380 /* Old browsers */
1383 /* Old browsers */
1381 display: -webkit-box;
1384 display: -webkit-box;
1382 -webkit-box-orient: vertical;
1385 -webkit-box-orient: vertical;
1383 -webkit-box-align: stretch;
1386 -webkit-box-align: stretch;
1384 display: -moz-box;
1387 display: -moz-box;
1385 -moz-box-orient: vertical;
1388 -moz-box-orient: vertical;
1386 -moz-box-align: stretch;
1389 -moz-box-align: stretch;
1387 display: box;
1390 display: box;
1388 box-orient: vertical;
1391 box-orient: vertical;
1389 box-align: stretch;
1392 box-align: stretch;
1390 /* Modern browsers */
1393 /* Modern browsers */
1391 display: flex;
1394 display: flex;
1392 flex-direction: column;
1395 flex-direction: column;
1393 align-items: stretch;
1396 align-items: stretch;
1394 }
1397 }
1395 .widget-vslider .ui-slider {
1398 .widget-vslider .ui-slider {
1396 /* Inner, invisible slide div */
1399 /* Inner, invisible slide div */
1397 border: 0px !important;
1400 border: 0px !important;
1398 background: none !important;
1401 background: none !important;
1399 margin-left: -4px;
1402 margin-left: -4px;
1400 margin-top: 5px;
1403 margin-top: 5px;
1401 /* Old browsers */
1404 /* Old browsers */
1402 display: -webkit-box;
1405 display: -webkit-box;
1403 -webkit-box-orient: vertical;
1406 -webkit-box-orient: vertical;
1404 -webkit-box-align: stretch;
1407 -webkit-box-align: stretch;
1405 display: -moz-box;
1408 display: -moz-box;
1406 -moz-box-orient: vertical;
1409 -moz-box-orient: vertical;
1407 -moz-box-align: stretch;
1410 -moz-box-align: stretch;
1408 display: box;
1411 display: box;
1409 box-orient: vertical;
1412 box-orient: vertical;
1410 box-align: stretch;
1413 box-align: stretch;
1411 /* Modern browsers */
1414 /* Modern browsers */
1412 display: flex;
1415 display: flex;
1413 flex-direction: column;
1416 flex-direction: column;
1414 align-items: stretch;
1417 align-items: stretch;
1415 /* Old browsers */
1418 /* Old browsers */
1416 -webkit-box-flex: 1;
1419 -webkit-box-flex: 1;
1417 -moz-box-flex: 1;
1420 -moz-box-flex: 1;
1418 box-flex: 1;
1421 box-flex: 1;
1419 /* Modern browsers */
1422 /* Modern browsers */
1420 flex: 1;
1423 flex: 1;
1421 }
1424 }
1422 .widget-vslider .ui-slider .ui-slider-handle {
1425 .widget-vslider .ui-slider .ui-slider-handle {
1423 width: 28px !important;
1426 width: 28px !important;
1424 height: 14px !important;
1427 height: 14px !important;
1425 margin-left: -9px;
1428 margin-left: -9px;
1426 }
1429 }
1427 .widget-vslider .ui-slider .ui-slider-range {
1430 .widget-vslider .ui-slider .ui-slider-range {
1428 width: 12px !important;
1431 width: 12px !important;
1429 margin-left: -1px !important;
1432 margin-left: -1px !important;
1430 }
1433 }
1431 .widget-text {
1434 .widget-text {
1432 /* String Textbox - used for TextBoxView and TextAreaView */
1435 /* String Textbox - used for TextBoxView and TextAreaView */
1433 width: 350px;
1436 width: 350px;
1434 margin: 0px;
1437 margin: 0px;
1435 }
1438 }
1436 .widget-listbox {
1439 .widget-listbox {
1437 /* Listbox */
1440 /* Listbox */
1438 width: 350px;
1441 width: 350px;
1439 margin-bottom: 0px;
1442 margin-bottom: 0px;
1440 }
1443 }
1441 .widget-numeric-text {
1444 .widget-numeric-text {
1442 /* Single Line Textbox - used for IntTextView and FloatTextView */
1445 /* Single Line Textbox - used for IntTextView and FloatTextView */
1443 width: 150px;
1446 width: 150px;
1444 margin: 0px;
1447 margin: 0px;
1445 }
1448 }
1446 .widget-progress {
1449 .widget-progress {
1447 /* Progress Bar */
1450 /* Progress Bar */
1448 margin-top: 6px;
1451 margin-top: 6px;
1449 width: 350px;
1452 width: 350px;
1450 }
1453 }
1451 .widget-progress .progress-bar {
1454 .widget-progress .progress-bar {
1452 /* Disable progress bar animation */
1455 /* Disable progress bar animation */
1453 -webkit-transition: none;
1456 -webkit-transition: none;
1454 -moz-transition: none;
1457 -moz-transition: none;
1455 -ms-transition: none;
1458 -ms-transition: none;
1456 -o-transition: none;
1459 -o-transition: none;
1457 transition: none;
1460 transition: none;
1458 }
1461 }
1459 .widget-combo-btn {
1462 .widget-combo-btn {
1460 /* ComboBox Main Button */
1463 /* ComboBox Main Button */
1461 min-width: 125px;
1464 min-width: 125px;
1462 }
1465 }
1463 .widget_item .dropdown-menu li a {
1466 .widget_item .dropdown-menu li a {
1464 color: inherit;
1467 color: inherit;
1465 }
1468 }
1466 .widget-hbox {
1469 .widget-hbox {
1467 /* Horizontal widgets */
1470 /* Horizontal widgets */
1468 /* Old browsers */
1471 /* Old browsers */
1469 display: -webkit-box;
1472 display: -webkit-box;
1470 -webkit-box-orient: horizontal;
1473 -webkit-box-orient: horizontal;
1471 -webkit-box-align: stretch;
1474 -webkit-box-align: stretch;
1472 display: -moz-box;
1475 display: -moz-box;
1473 -moz-box-orient: horizontal;
1476 -moz-box-orient: horizontal;
1474 -moz-box-align: stretch;
1477 -moz-box-align: stretch;
1475 display: box;
1478 display: box;
1476 box-orient: horizontal;
1479 box-orient: horizontal;
1477 box-align: stretch;
1480 box-align: stretch;
1478 /* Modern browsers */
1481 /* Modern browsers */
1479 display: flex;
1482 display: flex;
1480 flex-direction: row;
1483 flex-direction: row;
1481 align-items: stretch;
1484 align-items: stretch;
1482 }
1485 }
1483 .widget-hbox input[type="checkbox"] {
1486 .widget-hbox input[type="checkbox"] {
1484 margin-top: 9px;
1487 margin-top: 9px;
1485 margin-bottom: 10px;
1488 margin-bottom: 10px;
1486 }
1489 }
1487 .widget-hbox .widget-label {
1490 .widget-hbox .widget-label {
1488 /* Horizontal Label */
1491 /* Horizontal Label */
1489 min-width: 10ex;
1492 min-width: 10ex;
1490 padding-right: 8px;
1493 padding-right: 8px;
1491 padding-top: 5px;
1494 padding-top: 5px;
1492 text-align: right;
1495 text-align: right;
1493 vertical-align: text-top;
1496 vertical-align: text-top;
1494 }
1497 }
1495 .widget-hbox .widget-readout {
1498 .widget-hbox .widget-readout {
1496 padding-left: 8px;
1499 padding-left: 8px;
1497 padding-top: 5px;
1500 padding-top: 5px;
1498 text-align: left;
1501 text-align: left;
1499 vertical-align: text-top;
1502 vertical-align: text-top;
1500 }
1503 }
1501 .widget-vbox {
1504 .widget-vbox {
1502 /* Vertical widgets */
1505 /* Vertical widgets */
1503 /* Old browsers */
1506 /* Old browsers */
1504 display: -webkit-box;
1507 display: -webkit-box;
1505 -webkit-box-orient: vertical;
1508 -webkit-box-orient: vertical;
1506 -webkit-box-align: stretch;
1509 -webkit-box-align: stretch;
1507 display: -moz-box;
1510 display: -moz-box;
1508 -moz-box-orient: vertical;
1511 -moz-box-orient: vertical;
1509 -moz-box-align: stretch;
1512 -moz-box-align: stretch;
1510 display: box;
1513 display: box;
1511 box-orient: vertical;
1514 box-orient: vertical;
1512 box-align: stretch;
1515 box-align: stretch;
1513 /* Modern browsers */
1516 /* Modern browsers */
1514 display: flex;
1517 display: flex;
1515 flex-direction: column;
1518 flex-direction: column;
1516 align-items: stretch;
1519 align-items: stretch;
1517 }
1520 }
1518 .widget-vbox .widget-label {
1521 .widget-vbox .widget-label {
1519 /* Vertical Label */
1522 /* Vertical Label */
1520 padding-bottom: 5px;
1523 padding-bottom: 5px;
1521 text-align: center;
1524 text-align: center;
1522 vertical-align: text-bottom;
1525 vertical-align: text-bottom;
1523 }
1526 }
1524 .widget-vbox .widget-readout {
1527 .widget-vbox .widget-readout {
1525 /* Vertical Label */
1528 /* Vertical Label */
1526 padding-top: 5px;
1529 padding-top: 5px;
1527 text-align: center;
1530 text-align: center;
1528 vertical-align: text-top;
1531 vertical-align: text-top;
1529 }
1532 }
1530 .widget-modal {
1533 .widget-modal {
1531 /* Box - ModalView */
1534 /* Box - ModalView */
1532 overflow: hidden;
1535 overflow: hidden;
1533 position: absolute !important;
1536 position: absolute !important;
1534 top: 0px;
1537 top: 0px;
1535 left: 0px;
1538 left: 0px;
1536 margin-left: 0px !important;
1539 margin-left: 0px !important;
1537 }
1540 }
1538 .widget-modal-body {
1541 .widget-modal-body {
1539 /* Box - ModalView Body */
1542 /* Box - ModalView Body */
1540 max-height: none !important;
1543 max-height: none !important;
1541 }
1544 }
1542 .widget-box {
1545 .widget-box {
1543 /* Box */
1546 /* Box */
1544 box-sizing: border-box;
1547 box-sizing: border-box;
1545 -moz-box-sizing: border-box;
1548 -moz-box-sizing: border-box;
1546 -webkit-box-sizing: border-box;
1549 -webkit-box-sizing: border-box;
1547 /* Old browsers */
1550 /* Old browsers */
1548 -webkit-box-align: start;
1551 -webkit-box-align: start;
1549 -moz-box-align: start;
1552 -moz-box-align: start;
1550 box-align: start;
1553 box-align: start;
1551 /* Modern browsers */
1554 /* Modern browsers */
1552 align-items: flex-start;
1555 align-items: flex-start;
1553 }
1556 }
1554 .widget-radio-box {
1557 .widget-radio-box {
1555 /* Contains RadioButtonsWidget */
1558 /* Contains RadioButtonsWidget */
1556 /* Old browsers */
1559 /* Old browsers */
1557 display: -webkit-box;
1560 display: -webkit-box;
1558 -webkit-box-orient: vertical;
1561 -webkit-box-orient: vertical;
1559 -webkit-box-align: stretch;
1562 -webkit-box-align: stretch;
1560 display: -moz-box;
1563 display: -moz-box;
1561 -moz-box-orient: vertical;
1564 -moz-box-orient: vertical;
1562 -moz-box-align: stretch;
1565 -moz-box-align: stretch;
1563 display: box;
1566 display: box;
1564 box-orient: vertical;
1567 box-orient: vertical;
1565 box-align: stretch;
1568 box-align: stretch;
1566 /* Modern browsers */
1569 /* Modern browsers */
1567 display: flex;
1570 display: flex;
1568 flex-direction: column;
1571 flex-direction: column;
1569 align-items: stretch;
1572 align-items: stretch;
1570 box-sizing: border-box;
1573 box-sizing: border-box;
1571 -moz-box-sizing: border-box;
1574 -moz-box-sizing: border-box;
1572 -webkit-box-sizing: border-box;
1575 -webkit-box-sizing: border-box;
1573 padding-top: 4px;
1576 padding-top: 4px;
1574 }
1577 }
1575 .widget-radio-box label {
1578 .widget-radio-box label {
1576 margin-top: 0px;
1579 margin-top: 0px;
1577 }
1580 }
1578 .docked-widget-modal {
1581 .docked-widget-modal {
1579 /* Horizontal Label */
1582 /* Horizontal Label */
1580 overflow: hidden;
1583 overflow: hidden;
1581 position: relative !important;
1584 position: relative !important;
1582 top: 0px !important;
1585 top: 0px !important;
1583 left: 0px !important;
1586 left: 0px !important;
1584 margin-left: 0px !important;
1587 margin-left: 0px !important;
1585 }
1588 }
1586 /*# sourceMappingURL=ipython.min.css.map */ No newline at end of file
1589 /*# sourceMappingURL=ipython.min.css.map */
@@ -1,32 +1,33 b''
1 /*!
1 /*!
2 *
2 *
3 * Twitter Bootstrap
3 * Twitter Bootstrap
4 *
4 *
5 */
5 */
6 @import "../components/bootstrap/less/bootstrap.less";
6 @import "../components/bootstrap/less/bootstrap.less";
7
7
8 /*!
8 /*!
9 *
9 *
10 * Font Awesome
10 * Font Awesome
11 *
11 *
12 */
12 */
13 @import "../components/font-awesome/less/font-awesome.less";
13 @import "../components/font-awesome/less/font-awesome.less";
14 @fa-font-path: "../components/font-awesome/fonts";
14 @fa-font-path: "../components/font-awesome/fonts";
15
15
16 // base
16 // base
17 @import "../base/less/style.less";
17 @import "../base/less/style.less";
18 @import "../base/less/page.less";
18 @import "../base/less/page.less";
19
19
20 // auth
20 // auth
21 @import "../auth/less/style.less";
21 @import "../auth/less/style.less";
22
22
23 // tree
23 // tree
24 @import "../tree/less/style.less";
24 @import "../tree/less/style.less";
25
25
26 // edit
26 // edit
27 @import "../edit/less/style.less";
27 @import "../edit/less/style.less";
28
28
29 // notebook
29 // notebook
30 @import "../notebook/less/style.less";
30 @import "../notebook/less/style.less";
31
31
32 @import "../notebook/less/terminal.less";
32 // terminal
33 @import "../terminal/less/terminal.less";
@@ -1,10439 +1,10505 b''
1 /*!
1 /*!
2 *
2 *
3 * Twitter Bootstrap
3 * Twitter Bootstrap
4 *
4 *
5 */
5 */
6 /*! normalize.css v3.0.0 | MIT License | git.io/normalize */
6 /*! normalize.css v3.0.0 | MIT License | git.io/normalize */
7 html {
7 html {
8 font-family: sans-serif;
8 font-family: sans-serif;
9 -ms-text-size-adjust: 100%;
9 -ms-text-size-adjust: 100%;
10 -webkit-text-size-adjust: 100%;
10 -webkit-text-size-adjust: 100%;
11 }
11 }
12 body {
12 body {
13 margin: 0;
13 margin: 0;
14 }
14 }
15 article,
15 article,
16 aside,
16 aside,
17 details,
17 details,
18 figcaption,
18 figcaption,
19 figure,
19 figure,
20 footer,
20 footer,
21 header,
21 header,
22 hgroup,
22 hgroup,
23 main,
23 main,
24 nav,
24 nav,
25 section,
25 section,
26 summary {
26 summary {
27 display: block;
27 display: block;
28 }
28 }
29 audio,
29 audio,
30 canvas,
30 canvas,
31 progress,
31 progress,
32 video {
32 video {
33 display: inline-block;
33 display: inline-block;
34 vertical-align: baseline;
34 vertical-align: baseline;
35 }
35 }
36 audio:not([controls]) {
36 audio:not([controls]) {
37 display: none;
37 display: none;
38 height: 0;
38 height: 0;
39 }
39 }
40 [hidden],
40 [hidden],
41 template {
41 template {
42 display: none;
42 display: none;
43 }
43 }
44 a {
44 a {
45 background: transparent;
45 background: transparent;
46 }
46 }
47 a:active,
47 a:active,
48 a:hover {
48 a:hover {
49 outline: 0;
49 outline: 0;
50 }
50 }
51 abbr[title] {
51 abbr[title] {
52 border-bottom: 1px dotted;
52 border-bottom: 1px dotted;
53 }
53 }
54 b,
54 b,
55 strong {
55 strong {
56 font-weight: bold;
56 font-weight: bold;
57 }
57 }
58 dfn {
58 dfn {
59 font-style: italic;
59 font-style: italic;
60 }
60 }
61 h1 {
61 h1 {
62 font-size: 2em;
62 font-size: 2em;
63 margin: 0.67em 0;
63 margin: 0.67em 0;
64 }
64 }
65 mark {
65 mark {
66 background: #ff0;
66 background: #ff0;
67 color: #000;
67 color: #000;
68 }
68 }
69 small {
69 small {
70 font-size: 80%;
70 font-size: 80%;
71 }
71 }
72 sub,
72 sub,
73 sup {
73 sup {
74 font-size: 75%;
74 font-size: 75%;
75 line-height: 0;
75 line-height: 0;
76 position: relative;
76 position: relative;
77 vertical-align: baseline;
77 vertical-align: baseline;
78 }
78 }
79 sup {
79 sup {
80 top: -0.5em;
80 top: -0.5em;
81 }
81 }
82 sub {
82 sub {
83 bottom: -0.25em;
83 bottom: -0.25em;
84 }
84 }
85 img {
85 img {
86 border: 0;
86 border: 0;
87 }
87 }
88 svg:not(:root) {
88 svg:not(:root) {
89 overflow: hidden;
89 overflow: hidden;
90 }
90 }
91 figure {
91 figure {
92 margin: 1em 40px;
92 margin: 1em 40px;
93 }
93 }
94 hr {
94 hr {
95 -moz-box-sizing: content-box;
95 -moz-box-sizing: content-box;
96 box-sizing: content-box;
96 box-sizing: content-box;
97 height: 0;
97 height: 0;
98 }
98 }
99 pre {
99 pre {
100 overflow: auto;
100 overflow: auto;
101 }
101 }
102 code,
102 code,
103 kbd,
103 kbd,
104 pre,
104 pre,
105 samp {
105 samp {
106 font-family: monospace, monospace;
106 font-family: monospace, monospace;
107 font-size: 1em;
107 font-size: 1em;
108 }
108 }
109 button,
109 button,
110 input,
110 input,
111 optgroup,
111 optgroup,
112 select,
112 select,
113 textarea {
113 textarea {
114 color: inherit;
114 color: inherit;
115 font: inherit;
115 font: inherit;
116 margin: 0;
116 margin: 0;
117 }
117 }
118 button {
118 button {
119 overflow: visible;
119 overflow: visible;
120 }
120 }
121 button,
121 button,
122 select {
122 select {
123 text-transform: none;
123 text-transform: none;
124 }
124 }
125 button,
125 button,
126 html input[type="button"],
126 html input[type="button"],
127 input[type="reset"],
127 input[type="reset"],
128 input[type="submit"] {
128 input[type="submit"] {
129 -webkit-appearance: button;
129 -webkit-appearance: button;
130 cursor: pointer;
130 cursor: pointer;
131 }
131 }
132 button[disabled],
132 button[disabled],
133 html input[disabled] {
133 html input[disabled] {
134 cursor: default;
134 cursor: default;
135 }
135 }
136 button::-moz-focus-inner,
136 button::-moz-focus-inner,
137 input::-moz-focus-inner {
137 input::-moz-focus-inner {
138 border: 0;
138 border: 0;
139 padding: 0;
139 padding: 0;
140 }
140 }
141 input {
141 input {
142 line-height: normal;
142 line-height: normal;
143 }
143 }
144 input[type="checkbox"],
144 input[type="checkbox"],
145 input[type="radio"] {
145 input[type="radio"] {
146 box-sizing: border-box;
146 box-sizing: border-box;
147 padding: 0;
147 padding: 0;
148 }
148 }
149 input[type="number"]::-webkit-inner-spin-button,
149 input[type="number"]::-webkit-inner-spin-button,
150 input[type="number"]::-webkit-outer-spin-button {
150 input[type="number"]::-webkit-outer-spin-button {
151 height: auto;
151 height: auto;
152 }
152 }
153 input[type="search"] {
153 input[type="search"] {
154 -webkit-appearance: textfield;
154 -webkit-appearance: textfield;
155 -moz-box-sizing: content-box;
155 -moz-box-sizing: content-box;
156 -webkit-box-sizing: content-box;
156 -webkit-box-sizing: content-box;
157 box-sizing: content-box;
157 box-sizing: content-box;
158 }
158 }
159 input[type="search"]::-webkit-search-cancel-button,
159 input[type="search"]::-webkit-search-cancel-button,
160 input[type="search"]::-webkit-search-decoration {
160 input[type="search"]::-webkit-search-decoration {
161 -webkit-appearance: none;
161 -webkit-appearance: none;
162 }
162 }
163 fieldset {
163 fieldset {
164 border: 1px solid #c0c0c0;
164 border: 1px solid #c0c0c0;
165 margin: 0 2px;
165 margin: 0 2px;
166 padding: 0.35em 0.625em 0.75em;
166 padding: 0.35em 0.625em 0.75em;
167 }
167 }
168 legend {
168 legend {
169 border: 0;
169 border: 0;
170 padding: 0;
170 padding: 0;
171 }
171 }
172 textarea {
172 textarea {
173 overflow: auto;
173 overflow: auto;
174 }
174 }
175 optgroup {
175 optgroup {
176 font-weight: bold;
176 font-weight: bold;
177 }
177 }
178 table {
178 table {
179 border-collapse: collapse;
179 border-collapse: collapse;
180 border-spacing: 0;
180 border-spacing: 0;
181 }
181 }
182 td,
182 td,
183 th {
183 th {
184 padding: 0;
184 padding: 0;
185 }
185 }
186 @media print {
186 @media print {
187 * {
187 * {
188 text-shadow: none !important;
188 text-shadow: none !important;
189 color: #000 !important;
189 color: #000 !important;
190 background: transparent !important;
190 background: transparent !important;
191 box-shadow: none !important;
191 box-shadow: none !important;
192 }
192 }
193 a,
193 a,
194 a:visited {
194 a:visited {
195 text-decoration: underline;
195 text-decoration: underline;
196 }
196 }
197 a[href]:after {
197 a[href]:after {
198 content: " (" attr(href) ")";
198 content: " (" attr(href) ")";
199 }
199 }
200 abbr[title]:after {
200 abbr[title]:after {
201 content: " (" attr(title) ")";
201 content: " (" attr(title) ")";
202 }
202 }
203 a[href^="javascript:"]:after,
203 a[href^="javascript:"]:after,
204 a[href^="#"]:after {
204 a[href^="#"]:after {
205 content: "";
205 content: "";
206 }
206 }
207 pre,
207 pre,
208 blockquote {
208 blockquote {
209 border: 1px solid #999;
209 border: 1px solid #999;
210 page-break-inside: avoid;
210 page-break-inside: avoid;
211 }
211 }
212 thead {
212 thead {
213 display: table-header-group;
213 display: table-header-group;
214 }
214 }
215 tr,
215 tr,
216 img {
216 img {
217 page-break-inside: avoid;
217 page-break-inside: avoid;
218 }
218 }
219 img {
219 img {
220 max-width: 100% !important;
220 max-width: 100% !important;
221 }
221 }
222 p,
222 p,
223 h2,
223 h2,
224 h3 {
224 h3 {
225 orphans: 3;
225 orphans: 3;
226 widows: 3;
226 widows: 3;
227 }
227 }
228 h2,
228 h2,
229 h3 {
229 h3 {
230 page-break-after: avoid;
230 page-break-after: avoid;
231 }
231 }
232 select {
232 select {
233 background: #fff !important;
233 background: #fff !important;
234 }
234 }
235 .navbar {
235 .navbar {
236 display: none;
236 display: none;
237 }
237 }
238 .table td,
238 .table td,
239 .table th {
239 .table th {
240 background-color: #fff !important;
240 background-color: #fff !important;
241 }
241 }
242 .btn > .caret,
242 .btn > .caret,
243 .dropup > .btn > .caret {
243 .dropup > .btn > .caret {
244 border-top-color: #000 !important;
244 border-top-color: #000 !important;
245 }
245 }
246 .label {
246 .label {
247 border: 1px solid #000;
247 border: 1px solid #000;
248 }
248 }
249 .table {
249 .table {
250 border-collapse: collapse !important;
250 border-collapse: collapse !important;
251 }
251 }
252 .table-bordered th,
252 .table-bordered th,
253 .table-bordered td {
253 .table-bordered td {
254 border: 1px solid #ddd !important;
254 border: 1px solid #ddd !important;
255 }
255 }
256 }
256 }
257 * {
257 * {
258 -webkit-box-sizing: border-box;
258 -webkit-box-sizing: border-box;
259 -moz-box-sizing: border-box;
259 -moz-box-sizing: border-box;
260 box-sizing: border-box;
260 box-sizing: border-box;
261 }
261 }
262 *:before,
262 *:before,
263 *:after {
263 *:after {
264 -webkit-box-sizing: border-box;
264 -webkit-box-sizing: border-box;
265 -moz-box-sizing: border-box;
265 -moz-box-sizing: border-box;
266 box-sizing: border-box;
266 box-sizing: border-box;
267 }
267 }
268 html {
268 html {
269 font-size: 62.5%;
269 font-size: 62.5%;
270 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
270 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
271 }
271 }
272 body {
272 body {
273 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
273 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
274 font-size: 13px;
274 font-size: 13px;
275 line-height: 1.42857143;
275 line-height: 1.42857143;
276 color: #000000;
276 color: #000000;
277 background-color: #ffffff;
277 background-color: #ffffff;
278 }
278 }
279 input,
279 input,
280 button,
280 button,
281 select,
281 select,
282 textarea {
282 textarea {
283 font-family: inherit;
283 font-family: inherit;
284 font-size: inherit;
284 font-size: inherit;
285 line-height: inherit;
285 line-height: inherit;
286 }
286 }
287 a {
287 a {
288 color: #428bca;
288 color: #428bca;
289 text-decoration: none;
289 text-decoration: none;
290 }
290 }
291 a:hover,
291 a:hover,
292 a:focus {
292 a:focus {
293 color: #2a6496;
293 color: #2a6496;
294 text-decoration: underline;
294 text-decoration: underline;
295 }
295 }
296 a:focus {
296 a:focus {
297 outline: thin dotted;
297 outline: thin dotted;
298 outline: 5px auto -webkit-focus-ring-color;
298 outline: 5px auto -webkit-focus-ring-color;
299 outline-offset: -2px;
299 outline-offset: -2px;
300 }
300 }
301 figure {
301 figure {
302 margin: 0;
302 margin: 0;
303 }
303 }
304 img {
304 img {
305 vertical-align: middle;
305 vertical-align: middle;
306 }
306 }
307 .img-responsive,
307 .img-responsive,
308 .thumbnail > img,
308 .thumbnail > img,
309 .thumbnail a > img,
309 .thumbnail a > img,
310 .carousel-inner > .item > img,
310 .carousel-inner > .item > img,
311 .carousel-inner > .item > a > img {
311 .carousel-inner > .item > a > img {
312 display: block;
312 display: block;
313 max-width: 100%;
313 max-width: 100%;
314 height: auto;
314 height: auto;
315 }
315 }
316 .img-rounded {
316 .img-rounded {
317 border-radius: 6px;
317 border-radius: 6px;
318 }
318 }
319 .img-thumbnail {
319 .img-thumbnail {
320 padding: 4px;
320 padding: 4px;
321 line-height: 1.42857143;
321 line-height: 1.42857143;
322 background-color: #ffffff;
322 background-color: #ffffff;
323 border: 1px solid #dddddd;
323 border: 1px solid #dddddd;
324 border-radius: 4px;
324 border-radius: 2px;
325 -webkit-transition: all 0.2s ease-in-out;
325 -webkit-transition: all 0.2s ease-in-out;
326 transition: all 0.2s ease-in-out;
326 transition: all 0.2s ease-in-out;
327 display: inline-block;
327 display: inline-block;
328 max-width: 100%;
328 max-width: 100%;
329 height: auto;
329 height: auto;
330 }
330 }
331 .img-circle {
331 .img-circle {
332 border-radius: 50%;
332 border-radius: 50%;
333 }
333 }
334 hr {
334 hr {
335 margin-top: 18px;
335 margin-top: 18px;
336 margin-bottom: 18px;
336 margin-bottom: 18px;
337 border: 0;
337 border: 0;
338 border-top: 1px solid #eeeeee;
338 border-top: 1px solid #eeeeee;
339 }
339 }
340 .sr-only {
340 .sr-only {
341 position: absolute;
341 position: absolute;
342 width: 1px;
342 width: 1px;
343 height: 1px;
343 height: 1px;
344 margin: -1px;
344 margin: -1px;
345 padding: 0;
345 padding: 0;
346 overflow: hidden;
346 overflow: hidden;
347 clip: rect(0, 0, 0, 0);
347 clip: rect(0, 0, 0, 0);
348 border: 0;
348 border: 0;
349 }
349 }
350 h1,
350 h1,
351 h2,
351 h2,
352 h3,
352 h3,
353 h4,
353 h4,
354 h5,
354 h5,
355 h6,
355 h6,
356 .h1,
356 .h1,
357 .h2,
357 .h2,
358 .h3,
358 .h3,
359 .h4,
359 .h4,
360 .h5,
360 .h5,
361 .h6 {
361 .h6 {
362 font-family: inherit;
362 font-family: inherit;
363 font-weight: 500;
363 font-weight: 500;
364 line-height: 1.1;
364 line-height: 1.1;
365 color: inherit;
365 color: inherit;
366 }
366 }
367 h1 small,
367 h1 small,
368 h2 small,
368 h2 small,
369 h3 small,
369 h3 small,
370 h4 small,
370 h4 small,
371 h5 small,
371 h5 small,
372 h6 small,
372 h6 small,
373 .h1 small,
373 .h1 small,
374 .h2 small,
374 .h2 small,
375 .h3 small,
375 .h3 small,
376 .h4 small,
376 .h4 small,
377 .h5 small,
377 .h5 small,
378 .h6 small,
378 .h6 small,
379 h1 .small,
379 h1 .small,
380 h2 .small,
380 h2 .small,
381 h3 .small,
381 h3 .small,
382 h4 .small,
382 h4 .small,
383 h5 .small,
383 h5 .small,
384 h6 .small,
384 h6 .small,
385 .h1 .small,
385 .h1 .small,
386 .h2 .small,
386 .h2 .small,
387 .h3 .small,
387 .h3 .small,
388 .h4 .small,
388 .h4 .small,
389 .h5 .small,
389 .h5 .small,
390 .h6 .small {
390 .h6 .small {
391 font-weight: normal;
391 font-weight: normal;
392 line-height: 1;
392 line-height: 1;
393 color: #999999;
393 color: #999999;
394 }
394 }
395 h1,
395 h1,
396 .h1,
396 .h1,
397 h2,
397 h2,
398 .h2,
398 .h2,
399 h3,
399 h3,
400 .h3 {
400 .h3 {
401 margin-top: 18px;
401 margin-top: 18px;
402 margin-bottom: 9px;
402 margin-bottom: 9px;
403 }
403 }
404 h1 small,
404 h1 small,
405 .h1 small,
405 .h1 small,
406 h2 small,
406 h2 small,
407 .h2 small,
407 .h2 small,
408 h3 small,
408 h3 small,
409 .h3 small,
409 .h3 small,
410 h1 .small,
410 h1 .small,
411 .h1 .small,
411 .h1 .small,
412 h2 .small,
412 h2 .small,
413 .h2 .small,
413 .h2 .small,
414 h3 .small,
414 h3 .small,
415 .h3 .small {
415 .h3 .small {
416 font-size: 65%;
416 font-size: 65%;
417 }
417 }
418 h4,
418 h4,
419 .h4,
419 .h4,
420 h5,
420 h5,
421 .h5,
421 .h5,
422 h6,
422 h6,
423 .h6 {
423 .h6 {
424 margin-top: 9px;
424 margin-top: 9px;
425 margin-bottom: 9px;
425 margin-bottom: 9px;
426 }
426 }
427 h4 small,
427 h4 small,
428 .h4 small,
428 .h4 small,
429 h5 small,
429 h5 small,
430 .h5 small,
430 .h5 small,
431 h6 small,
431 h6 small,
432 .h6 small,
432 .h6 small,
433 h4 .small,
433 h4 .small,
434 .h4 .small,
434 .h4 .small,
435 h5 .small,
435 h5 .small,
436 .h5 .small,
436 .h5 .small,
437 h6 .small,
437 h6 .small,
438 .h6 .small {
438 .h6 .small {
439 font-size: 75%;
439 font-size: 75%;
440 }
440 }
441 h1,
441 h1,
442 .h1 {
442 .h1 {
443 font-size: 33px;
443 font-size: 33px;
444 }
444 }
445 h2,
445 h2,
446 .h2 {
446 .h2 {
447 font-size: 27px;
447 font-size: 27px;
448 }
448 }
449 h3,
449 h3,
450 .h3 {
450 .h3 {
451 font-size: 23px;
451 font-size: 23px;
452 }
452 }
453 h4,
453 h4,
454 .h4 {
454 .h4 {
455 font-size: 17px;
455 font-size: 17px;
456 }
456 }
457 h5,
457 h5,
458 .h5 {
458 .h5 {
459 font-size: 13px;
459 font-size: 13px;
460 }
460 }
461 h6,
461 h6,
462 .h6 {
462 .h6 {
463 font-size: 12px;
463 font-size: 12px;
464 }
464 }
465 p {
465 p {
466 margin: 0 0 9px;
466 margin: 0 0 9px;
467 }
467 }
468 .lead {
468 .lead {
469 margin-bottom: 18px;
469 margin-bottom: 18px;
470 font-size: 14px;
470 font-size: 14px;
471 font-weight: 200;
471 font-weight: 200;
472 line-height: 1.4;
472 line-height: 1.4;
473 }
473 }
474 @media (min-width: 768px) {
474 @media (min-width: 768px) {
475 .lead {
475 .lead {
476 font-size: 19.5px;
476 font-size: 19.5px;
477 }
477 }
478 }
478 }
479 small,
479 small,
480 .small {
480 .small {
481 font-size: 85%;
481 font-size: 85%;
482 }
482 }
483 cite {
483 cite {
484 font-style: normal;
484 font-style: normal;
485 }
485 }
486 .text-left {
486 .text-left {
487 text-align: left;
487 text-align: left;
488 }
488 }
489 .text-right {
489 .text-right {
490 text-align: right;
490 text-align: right;
491 }
491 }
492 .text-center {
492 .text-center {
493 text-align: center;
493 text-align: center;
494 }
494 }
495 .text-justify {
495 .text-justify {
496 text-align: justify;
496 text-align: justify;
497 }
497 }
498 .text-muted {
498 .text-muted {
499 color: #999999;
499 color: #999999;
500 }
500 }
501 .text-primary {
501 .text-primary {
502 color: #428bca;
502 color: #428bca;
503 }
503 }
504 a.text-primary:hover {
504 a.text-primary:hover {
505 color: #3071a9;
505 color: #3071a9;
506 }
506 }
507 .text-success {
507 .text-success {
508 color: #3c763d;
508 color: #3c763d;
509 }
509 }
510 a.text-success:hover {
510 a.text-success:hover {
511 color: #2b542c;
511 color: #2b542c;
512 }
512 }
513 .text-info {
513 .text-info {
514 color: #31708f;
514 color: #31708f;
515 }
515 }
516 a.text-info:hover {
516 a.text-info:hover {
517 color: #245269;
517 color: #245269;
518 }
518 }
519 .text-warning {
519 .text-warning {
520 color: #8a6d3b;
520 color: #8a6d3b;
521 }
521 }
522 a.text-warning:hover {
522 a.text-warning:hover {
523 color: #66512c;
523 color: #66512c;
524 }
524 }
525 .text-danger {
525 .text-danger {
526 color: #a94442;
526 color: #a94442;
527 }
527 }
528 a.text-danger:hover {
528 a.text-danger:hover {
529 color: #843534;
529 color: #843534;
530 }
530 }
531 .bg-primary {
531 .bg-primary {
532 color: #fff;
532 color: #fff;
533 background-color: #428bca;
533 background-color: #428bca;
534 }
534 }
535 a.bg-primary:hover {
535 a.bg-primary:hover {
536 background-color: #3071a9;
536 background-color: #3071a9;
537 }
537 }
538 .bg-success {
538 .bg-success {
539 background-color: #dff0d8;
539 background-color: #dff0d8;
540 }
540 }
541 a.bg-success:hover {
541 a.bg-success:hover {
542 background-color: #c1e2b3;
542 background-color: #c1e2b3;
543 }
543 }
544 .bg-info {
544 .bg-info {
545 background-color: #d9edf7;
545 background-color: #d9edf7;
546 }
546 }
547 a.bg-info:hover {
547 a.bg-info:hover {
548 background-color: #afd9ee;
548 background-color: #afd9ee;
549 }
549 }
550 .bg-warning {
550 .bg-warning {
551 background-color: #fcf8e3;
551 background-color: #fcf8e3;
552 }
552 }
553 a.bg-warning:hover {
553 a.bg-warning:hover {
554 background-color: #f7ecb5;
554 background-color: #f7ecb5;
555 }
555 }
556 .bg-danger {
556 .bg-danger {
557 background-color: #f2dede;
557 background-color: #f2dede;
558 }
558 }
559 a.bg-danger:hover {
559 a.bg-danger:hover {
560 background-color: #e4b9b9;
560 background-color: #e4b9b9;
561 }
561 }
562 .page-header {
562 .page-header {
563 padding-bottom: 8px;
563 padding-bottom: 8px;
564 margin: 36px 0 18px;
564 margin: 36px 0 18px;
565 border-bottom: 1px solid #eeeeee;
565 border-bottom: 1px solid #eeeeee;
566 }
566 }
567 ul,
567 ul,
568 ol {
568 ol {
569 margin-top: 0;
569 margin-top: 0;
570 margin-bottom: 9px;
570 margin-bottom: 9px;
571 }
571 }
572 ul ul,
572 ul ul,
573 ol ul,
573 ol ul,
574 ul ol,
574 ul ol,
575 ol ol {
575 ol ol {
576 margin-bottom: 0;
576 margin-bottom: 0;
577 }
577 }
578 .list-unstyled {
578 .list-unstyled {
579 padding-left: 0;
579 padding-left: 0;
580 list-style: none;
580 list-style: none;
581 }
581 }
582 .list-inline {
582 .list-inline {
583 padding-left: 0;
583 padding-left: 0;
584 list-style: none;
584 list-style: none;
585 margin-left: -5px;
585 margin-left: -5px;
586 }
586 }
587 .list-inline > li {
587 .list-inline > li {
588 display: inline-block;
588 display: inline-block;
589 padding-left: 5px;
589 padding-left: 5px;
590 padding-right: 5px;
590 padding-right: 5px;
591 }
591 }
592 dl {
592 dl {
593 margin-top: 0;
593 margin-top: 0;
594 margin-bottom: 18px;
594 margin-bottom: 18px;
595 }
595 }
596 dt,
596 dt,
597 dd {
597 dd {
598 line-height: 1.42857143;
598 line-height: 1.42857143;
599 }
599 }
600 dt {
600 dt {
601 font-weight: bold;
601 font-weight: bold;
602 }
602 }
603 dd {
603 dd {
604 margin-left: 0;
604 margin-left: 0;
605 }
605 }
606 @media (min-width: 540px) {
606 @media (min-width: 540px) {
607 .dl-horizontal dt {
607 .dl-horizontal dt {
608 float: left;
608 float: left;
609 width: 160px;
609 width: 160px;
610 clear: left;
610 clear: left;
611 text-align: right;
611 text-align: right;
612 overflow: hidden;
612 overflow: hidden;
613 text-overflow: ellipsis;
613 text-overflow: ellipsis;
614 white-space: nowrap;
614 white-space: nowrap;
615 }
615 }
616 .dl-horizontal dd {
616 .dl-horizontal dd {
617 margin-left: 180px;
617 margin-left: 180px;
618 }
618 }
619 }
619 }
620 abbr[title],
620 abbr[title],
621 abbr[data-original-title] {
621 abbr[data-original-title] {
622 cursor: help;
622 cursor: help;
623 border-bottom: 1px dotted #999999;
623 border-bottom: 1px dotted #999999;
624 }
624 }
625 .initialism {
625 .initialism {
626 font-size: 90%;
626 font-size: 90%;
627 text-transform: uppercase;
627 text-transform: uppercase;
628 }
628 }
629 blockquote {
629 blockquote {
630 padding: 9px 18px;
630 padding: 9px 18px;
631 margin: 0 0 18px;
631 margin: 0 0 18px;
632 font-size: inherit;
632 font-size: inherit;
633 border-left: 5px solid #eeeeee;
633 border-left: 5px solid #eeeeee;
634 }
634 }
635 blockquote p:last-child,
635 blockquote p:last-child,
636 blockquote ul:last-child,
636 blockquote ul:last-child,
637 blockquote ol:last-child {
637 blockquote ol:last-child {
638 margin-bottom: 0;
638 margin-bottom: 0;
639 }
639 }
640 blockquote footer,
640 blockquote footer,
641 blockquote small,
641 blockquote small,
642 blockquote .small {
642 blockquote .small {
643 display: block;
643 display: block;
644 font-size: 80%;
644 font-size: 80%;
645 line-height: 1.42857143;
645 line-height: 1.42857143;
646 color: #999999;
646 color: #999999;
647 }
647 }
648 blockquote footer:before,
648 blockquote footer:before,
649 blockquote small:before,
649 blockquote small:before,
650 blockquote .small:before {
650 blockquote .small:before {
651 content: '\2014 \00A0';
651 content: '\2014 \00A0';
652 }
652 }
653 .blockquote-reverse,
653 .blockquote-reverse,
654 blockquote.pull-right {
654 blockquote.pull-right {
655 padding-right: 15px;
655 padding-right: 15px;
656 padding-left: 0;
656 padding-left: 0;
657 border-right: 5px solid #eeeeee;
657 border-right: 5px solid #eeeeee;
658 border-left: 0;
658 border-left: 0;
659 text-align: right;
659 text-align: right;
660 }
660 }
661 .blockquote-reverse footer:before,
661 .blockquote-reverse footer:before,
662 blockquote.pull-right footer:before,
662 blockquote.pull-right footer:before,
663 .blockquote-reverse small:before,
663 .blockquote-reverse small:before,
664 blockquote.pull-right small:before,
664 blockquote.pull-right small:before,
665 .blockquote-reverse .small:before,
665 .blockquote-reverse .small:before,
666 blockquote.pull-right .small:before {
666 blockquote.pull-right .small:before {
667 content: '';
667 content: '';
668 }
668 }
669 .blockquote-reverse footer:after,
669 .blockquote-reverse footer:after,
670 blockquote.pull-right footer:after,
670 blockquote.pull-right footer:after,
671 .blockquote-reverse small:after,
671 .blockquote-reverse small:after,
672 blockquote.pull-right small:after,
672 blockquote.pull-right small:after,
673 .blockquote-reverse .small:after,
673 .blockquote-reverse .small:after,
674 blockquote.pull-right .small:after {
674 blockquote.pull-right .small:after {
675 content: '\00A0 \2014';
675 content: '\00A0 \2014';
676 }
676 }
677 blockquote:before,
677 blockquote:before,
678 blockquote:after {
678 blockquote:after {
679 content: "";
679 content: "";
680 }
680 }
681 address {
681 address {
682 margin-bottom: 18px;
682 margin-bottom: 18px;
683 font-style: normal;
683 font-style: normal;
684 line-height: 1.42857143;
684 line-height: 1.42857143;
685 }
685 }
686 code,
686 code,
687 kbd,
687 kbd,
688 pre,
688 pre,
689 samp {
689 samp {
690 font-family: monospace;
690 font-family: monospace;
691 }
691 }
692 code {
692 code {
693 padding: 2px 4px;
693 padding: 2px 4px;
694 font-size: 90%;
694 font-size: 90%;
695 color: #c7254e;
695 color: #c7254e;
696 background-color: #f9f2f4;
696 background-color: #f9f2f4;
697 white-space: nowrap;
697 white-space: nowrap;
698 border-radius: 4px;
698 border-radius: 2px;
699 }
699 }
700 kbd {
700 kbd {
701 padding: 2px 4px;
701 padding: 2px 4px;
702 font-size: 90%;
702 font-size: 90%;
703 color: #ffffff;
703 color: #ffffff;
704 background-color: #333333;
704 background-color: #333333;
705 border-radius: 3px;
705 border-radius: 2px;
706 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
706 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
707 }
707 }
708 pre {
708 pre {
709 display: block;
709 display: block;
710 padding: 8.5px;
710 padding: 8.5px;
711 margin: 0 0 9px;
711 margin: 0 0 9px;
712 font-size: 12px;
712 font-size: 12px;
713 line-height: 1.42857143;
713 line-height: 1.42857143;
714 word-break: break-all;
714 word-break: break-all;
715 word-wrap: break-word;
715 word-wrap: break-word;
716 color: #333333;
716 color: #333333;
717 background-color: #f5f5f5;
717 background-color: #f5f5f5;
718 border: 1px solid #cccccc;
718 border: 1px solid #cccccc;
719 border-radius: 4px;
719 border-radius: 2px;
720 }
720 }
721 pre code {
721 pre code {
722 padding: 0;
722 padding: 0;
723 font-size: inherit;
723 font-size: inherit;
724 color: inherit;
724 color: inherit;
725 white-space: pre-wrap;
725 white-space: pre-wrap;
726 background-color: transparent;
726 background-color: transparent;
727 border-radius: 0;
727 border-radius: 0;
728 }
728 }
729 .pre-scrollable {
729 .pre-scrollable {
730 max-height: 340px;
730 max-height: 340px;
731 overflow-y: scroll;
731 overflow-y: scroll;
732 }
732 }
733 .container {
733 .container {
734 margin-right: auto;
734 margin-right: auto;
735 margin-left: auto;
735 margin-left: auto;
736 padding-left: 15px;
736 padding-left: 0px;
737 padding-right: 15px;
737 padding-right: 0px;
738 }
738 }
739 @media (min-width: 768px) {
739 @media (min-width: 768px) {
740 .container {
740 .container {
741 width: 750px;
741 width: 720px;
742 }
742 }
743 }
743 }
744 @media (min-width: 992px) {
744 @media (min-width: 992px) {
745 .container {
745 .container {
746 width: 970px;
746 width: 940px;
747 }
747 }
748 }
748 }
749 @media (min-width: 1200px) {
749 @media (min-width: 1200px) {
750 .container {
750 .container {
751 width: 1170px;
751 width: 1140px;
752 }
752 }
753 }
753 }
754 .container-fluid {
754 .container-fluid {
755 margin-right: auto;
755 margin-right: auto;
756 margin-left: auto;
756 margin-left: auto;
757 padding-left: 15px;
757 padding-left: 0px;
758 padding-right: 15px;
758 padding-right: 0px;
759 }
759 }
760 .row {
760 .row {
761 margin-left: -15px;
761 margin-left: 0px;
762 margin-right: -15px;
762 margin-right: 0px;
763 }
763 }
764 .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
764 .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
765 position: relative;
765 position: relative;
766 min-height: 1px;
766 min-height: 1px;
767 padding-left: 15px;
767 padding-left: 0px;
768 padding-right: 15px;
768 padding-right: 0px;
769 }
769 }
770 .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
770 .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
771 float: left;
771 float: left;
772 }
772 }
773 .col-xs-12 {
773 .col-xs-12 {
774 width: 100%;
774 width: 100%;
775 }
775 }
776 .col-xs-11 {
776 .col-xs-11 {
777 width: 91.66666667%;
777 width: 91.66666667%;
778 }
778 }
779 .col-xs-10 {
779 .col-xs-10 {
780 width: 83.33333333%;
780 width: 83.33333333%;
781 }
781 }
782 .col-xs-9 {
782 .col-xs-9 {
783 width: 75%;
783 width: 75%;
784 }
784 }
785 .col-xs-8 {
785 .col-xs-8 {
786 width: 66.66666667%;
786 width: 66.66666667%;
787 }
787 }
788 .col-xs-7 {
788 .col-xs-7 {
789 width: 58.33333333%;
789 width: 58.33333333%;
790 }
790 }
791 .col-xs-6 {
791 .col-xs-6 {
792 width: 50%;
792 width: 50%;
793 }
793 }
794 .col-xs-5 {
794 .col-xs-5 {
795 width: 41.66666667%;
795 width: 41.66666667%;
796 }
796 }
797 .col-xs-4 {
797 .col-xs-4 {
798 width: 33.33333333%;
798 width: 33.33333333%;
799 }
799 }
800 .col-xs-3 {
800 .col-xs-3 {
801 width: 25%;
801 width: 25%;
802 }
802 }
803 .col-xs-2 {
803 .col-xs-2 {
804 width: 16.66666667%;
804 width: 16.66666667%;
805 }
805 }
806 .col-xs-1 {
806 .col-xs-1 {
807 width: 8.33333333%;
807 width: 8.33333333%;
808 }
808 }
809 .col-xs-pull-12 {
809 .col-xs-pull-12 {
810 right: 100%;
810 right: 100%;
811 }
811 }
812 .col-xs-pull-11 {
812 .col-xs-pull-11 {
813 right: 91.66666667%;
813 right: 91.66666667%;
814 }
814 }
815 .col-xs-pull-10 {
815 .col-xs-pull-10 {
816 right: 83.33333333%;
816 right: 83.33333333%;
817 }
817 }
818 .col-xs-pull-9 {
818 .col-xs-pull-9 {
819 right: 75%;
819 right: 75%;
820 }
820 }
821 .col-xs-pull-8 {
821 .col-xs-pull-8 {
822 right: 66.66666667%;
822 right: 66.66666667%;
823 }
823 }
824 .col-xs-pull-7 {
824 .col-xs-pull-7 {
825 right: 58.33333333%;
825 right: 58.33333333%;
826 }
826 }
827 .col-xs-pull-6 {
827 .col-xs-pull-6 {
828 right: 50%;
828 right: 50%;
829 }
829 }
830 .col-xs-pull-5 {
830 .col-xs-pull-5 {
831 right: 41.66666667%;
831 right: 41.66666667%;
832 }
832 }
833 .col-xs-pull-4 {
833 .col-xs-pull-4 {
834 right: 33.33333333%;
834 right: 33.33333333%;
835 }
835 }
836 .col-xs-pull-3 {
836 .col-xs-pull-3 {
837 right: 25%;
837 right: 25%;
838 }
838 }
839 .col-xs-pull-2 {
839 .col-xs-pull-2 {
840 right: 16.66666667%;
840 right: 16.66666667%;
841 }
841 }
842 .col-xs-pull-1 {
842 .col-xs-pull-1 {
843 right: 8.33333333%;
843 right: 8.33333333%;
844 }
844 }
845 .col-xs-pull-0 {
845 .col-xs-pull-0 {
846 right: 0%;
846 right: 0%;
847 }
847 }
848 .col-xs-push-12 {
848 .col-xs-push-12 {
849 left: 100%;
849 left: 100%;
850 }
850 }
851 .col-xs-push-11 {
851 .col-xs-push-11 {
852 left: 91.66666667%;
852 left: 91.66666667%;
853 }
853 }
854 .col-xs-push-10 {
854 .col-xs-push-10 {
855 left: 83.33333333%;
855 left: 83.33333333%;
856 }
856 }
857 .col-xs-push-9 {
857 .col-xs-push-9 {
858 left: 75%;
858 left: 75%;
859 }
859 }
860 .col-xs-push-8 {
860 .col-xs-push-8 {
861 left: 66.66666667%;
861 left: 66.66666667%;
862 }
862 }
863 .col-xs-push-7 {
863 .col-xs-push-7 {
864 left: 58.33333333%;
864 left: 58.33333333%;
865 }
865 }
866 .col-xs-push-6 {
866 .col-xs-push-6 {
867 left: 50%;
867 left: 50%;
868 }
868 }
869 .col-xs-push-5 {
869 .col-xs-push-5 {
870 left: 41.66666667%;
870 left: 41.66666667%;
871 }
871 }
872 .col-xs-push-4 {
872 .col-xs-push-4 {
873 left: 33.33333333%;
873 left: 33.33333333%;
874 }
874 }
875 .col-xs-push-3 {
875 .col-xs-push-3 {
876 left: 25%;
876 left: 25%;
877 }
877 }
878 .col-xs-push-2 {
878 .col-xs-push-2 {
879 left: 16.66666667%;
879 left: 16.66666667%;
880 }
880 }
881 .col-xs-push-1 {
881 .col-xs-push-1 {
882 left: 8.33333333%;
882 left: 8.33333333%;
883 }
883 }
884 .col-xs-push-0 {
884 .col-xs-push-0 {
885 left: 0%;
885 left: 0%;
886 }
886 }
887 .col-xs-offset-12 {
887 .col-xs-offset-12 {
888 margin-left: 100%;
888 margin-left: 100%;
889 }
889 }
890 .col-xs-offset-11 {
890 .col-xs-offset-11 {
891 margin-left: 91.66666667%;
891 margin-left: 91.66666667%;
892 }
892 }
893 .col-xs-offset-10 {
893 .col-xs-offset-10 {
894 margin-left: 83.33333333%;
894 margin-left: 83.33333333%;
895 }
895 }
896 .col-xs-offset-9 {
896 .col-xs-offset-9 {
897 margin-left: 75%;
897 margin-left: 75%;
898 }
898 }
899 .col-xs-offset-8 {
899 .col-xs-offset-8 {
900 margin-left: 66.66666667%;
900 margin-left: 66.66666667%;
901 }
901 }
902 .col-xs-offset-7 {
902 .col-xs-offset-7 {
903 margin-left: 58.33333333%;
903 margin-left: 58.33333333%;
904 }
904 }
905 .col-xs-offset-6 {
905 .col-xs-offset-6 {
906 margin-left: 50%;
906 margin-left: 50%;
907 }
907 }
908 .col-xs-offset-5 {
908 .col-xs-offset-5 {
909 margin-left: 41.66666667%;
909 margin-left: 41.66666667%;
910 }
910 }
911 .col-xs-offset-4 {
911 .col-xs-offset-4 {
912 margin-left: 33.33333333%;
912 margin-left: 33.33333333%;
913 }
913 }
914 .col-xs-offset-3 {
914 .col-xs-offset-3 {
915 margin-left: 25%;
915 margin-left: 25%;
916 }
916 }
917 .col-xs-offset-2 {
917 .col-xs-offset-2 {
918 margin-left: 16.66666667%;
918 margin-left: 16.66666667%;
919 }
919 }
920 .col-xs-offset-1 {
920 .col-xs-offset-1 {
921 margin-left: 8.33333333%;
921 margin-left: 8.33333333%;
922 }
922 }
923 .col-xs-offset-0 {
923 .col-xs-offset-0 {
924 margin-left: 0%;
924 margin-left: 0%;
925 }
925 }
926 @media (min-width: 768px) {
926 @media (min-width: 768px) {
927 .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
927 .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
928 float: left;
928 float: left;
929 }
929 }
930 .col-sm-12 {
930 .col-sm-12 {
931 width: 100%;
931 width: 100%;
932 }
932 }
933 .col-sm-11 {
933 .col-sm-11 {
934 width: 91.66666667%;
934 width: 91.66666667%;
935 }
935 }
936 .col-sm-10 {
936 .col-sm-10 {
937 width: 83.33333333%;
937 width: 83.33333333%;
938 }
938 }
939 .col-sm-9 {
939 .col-sm-9 {
940 width: 75%;
940 width: 75%;
941 }
941 }
942 .col-sm-8 {
942 .col-sm-8 {
943 width: 66.66666667%;
943 width: 66.66666667%;
944 }
944 }
945 .col-sm-7 {
945 .col-sm-7 {
946 width: 58.33333333%;
946 width: 58.33333333%;
947 }
947 }
948 .col-sm-6 {
948 .col-sm-6 {
949 width: 50%;
949 width: 50%;
950 }
950 }
951 .col-sm-5 {
951 .col-sm-5 {
952 width: 41.66666667%;
952 width: 41.66666667%;
953 }
953 }
954 .col-sm-4 {
954 .col-sm-4 {
955 width: 33.33333333%;
955 width: 33.33333333%;
956 }
956 }
957 .col-sm-3 {
957 .col-sm-3 {
958 width: 25%;
958 width: 25%;
959 }
959 }
960 .col-sm-2 {
960 .col-sm-2 {
961 width: 16.66666667%;
961 width: 16.66666667%;
962 }
962 }
963 .col-sm-1 {
963 .col-sm-1 {
964 width: 8.33333333%;
964 width: 8.33333333%;
965 }
965 }
966 .col-sm-pull-12 {
966 .col-sm-pull-12 {
967 right: 100%;
967 right: 100%;
968 }
968 }
969 .col-sm-pull-11 {
969 .col-sm-pull-11 {
970 right: 91.66666667%;
970 right: 91.66666667%;
971 }
971 }
972 .col-sm-pull-10 {
972 .col-sm-pull-10 {
973 right: 83.33333333%;
973 right: 83.33333333%;
974 }
974 }
975 .col-sm-pull-9 {
975 .col-sm-pull-9 {
976 right: 75%;
976 right: 75%;
977 }
977 }
978 .col-sm-pull-8 {
978 .col-sm-pull-8 {
979 right: 66.66666667%;
979 right: 66.66666667%;
980 }
980 }
981 .col-sm-pull-7 {
981 .col-sm-pull-7 {
982 right: 58.33333333%;
982 right: 58.33333333%;
983 }
983 }
984 .col-sm-pull-6 {
984 .col-sm-pull-6 {
985 right: 50%;
985 right: 50%;
986 }
986 }
987 .col-sm-pull-5 {
987 .col-sm-pull-5 {
988 right: 41.66666667%;
988 right: 41.66666667%;
989 }
989 }
990 .col-sm-pull-4 {
990 .col-sm-pull-4 {
991 right: 33.33333333%;
991 right: 33.33333333%;
992 }
992 }
993 .col-sm-pull-3 {
993 .col-sm-pull-3 {
994 right: 25%;
994 right: 25%;
995 }
995 }
996 .col-sm-pull-2 {
996 .col-sm-pull-2 {
997 right: 16.66666667%;
997 right: 16.66666667%;
998 }
998 }
999 .col-sm-pull-1 {
999 .col-sm-pull-1 {
1000 right: 8.33333333%;
1000 right: 8.33333333%;
1001 }
1001 }
1002 .col-sm-pull-0 {
1002 .col-sm-pull-0 {
1003 right: 0%;
1003 right: 0%;
1004 }
1004 }
1005 .col-sm-push-12 {
1005 .col-sm-push-12 {
1006 left: 100%;
1006 left: 100%;
1007 }
1007 }
1008 .col-sm-push-11 {
1008 .col-sm-push-11 {
1009 left: 91.66666667%;
1009 left: 91.66666667%;
1010 }
1010 }
1011 .col-sm-push-10 {
1011 .col-sm-push-10 {
1012 left: 83.33333333%;
1012 left: 83.33333333%;
1013 }
1013 }
1014 .col-sm-push-9 {
1014 .col-sm-push-9 {
1015 left: 75%;
1015 left: 75%;
1016 }
1016 }
1017 .col-sm-push-8 {
1017 .col-sm-push-8 {
1018 left: 66.66666667%;
1018 left: 66.66666667%;
1019 }
1019 }
1020 .col-sm-push-7 {
1020 .col-sm-push-7 {
1021 left: 58.33333333%;
1021 left: 58.33333333%;
1022 }
1022 }
1023 .col-sm-push-6 {
1023 .col-sm-push-6 {
1024 left: 50%;
1024 left: 50%;
1025 }
1025 }
1026 .col-sm-push-5 {
1026 .col-sm-push-5 {
1027 left: 41.66666667%;
1027 left: 41.66666667%;
1028 }
1028 }
1029 .col-sm-push-4 {
1029 .col-sm-push-4 {
1030 left: 33.33333333%;
1030 left: 33.33333333%;
1031 }
1031 }
1032 .col-sm-push-3 {
1032 .col-sm-push-3 {
1033 left: 25%;
1033 left: 25%;
1034 }
1034 }
1035 .col-sm-push-2 {
1035 .col-sm-push-2 {
1036 left: 16.66666667%;
1036 left: 16.66666667%;
1037 }
1037 }
1038 .col-sm-push-1 {
1038 .col-sm-push-1 {
1039 left: 8.33333333%;
1039 left: 8.33333333%;
1040 }
1040 }
1041 .col-sm-push-0 {
1041 .col-sm-push-0 {
1042 left: 0%;
1042 left: 0%;
1043 }
1043 }
1044 .col-sm-offset-12 {
1044 .col-sm-offset-12 {
1045 margin-left: 100%;
1045 margin-left: 100%;
1046 }
1046 }
1047 .col-sm-offset-11 {
1047 .col-sm-offset-11 {
1048 margin-left: 91.66666667%;
1048 margin-left: 91.66666667%;
1049 }
1049 }
1050 .col-sm-offset-10 {
1050 .col-sm-offset-10 {
1051 margin-left: 83.33333333%;
1051 margin-left: 83.33333333%;
1052 }
1052 }
1053 .col-sm-offset-9 {
1053 .col-sm-offset-9 {
1054 margin-left: 75%;
1054 margin-left: 75%;
1055 }
1055 }
1056 .col-sm-offset-8 {
1056 .col-sm-offset-8 {
1057 margin-left: 66.66666667%;
1057 margin-left: 66.66666667%;
1058 }
1058 }
1059 .col-sm-offset-7 {
1059 .col-sm-offset-7 {
1060 margin-left: 58.33333333%;
1060 margin-left: 58.33333333%;
1061 }
1061 }
1062 .col-sm-offset-6 {
1062 .col-sm-offset-6 {
1063 margin-left: 50%;
1063 margin-left: 50%;
1064 }
1064 }
1065 .col-sm-offset-5 {
1065 .col-sm-offset-5 {
1066 margin-left: 41.66666667%;
1066 margin-left: 41.66666667%;
1067 }
1067 }
1068 .col-sm-offset-4 {
1068 .col-sm-offset-4 {
1069 margin-left: 33.33333333%;
1069 margin-left: 33.33333333%;
1070 }
1070 }
1071 .col-sm-offset-3 {
1071 .col-sm-offset-3 {
1072 margin-left: 25%;
1072 margin-left: 25%;
1073 }
1073 }
1074 .col-sm-offset-2 {
1074 .col-sm-offset-2 {
1075 margin-left: 16.66666667%;
1075 margin-left: 16.66666667%;
1076 }
1076 }
1077 .col-sm-offset-1 {
1077 .col-sm-offset-1 {
1078 margin-left: 8.33333333%;
1078 margin-left: 8.33333333%;
1079 }
1079 }
1080 .col-sm-offset-0 {
1080 .col-sm-offset-0 {
1081 margin-left: 0%;
1081 margin-left: 0%;
1082 }
1082 }
1083 }
1083 }
1084 @media (min-width: 992px) {
1084 @media (min-width: 992px) {
1085 .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
1085 .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
1086 float: left;
1086 float: left;
1087 }
1087 }
1088 .col-md-12 {
1088 .col-md-12 {
1089 width: 100%;
1089 width: 100%;
1090 }
1090 }
1091 .col-md-11 {
1091 .col-md-11 {
1092 width: 91.66666667%;
1092 width: 91.66666667%;
1093 }
1093 }
1094 .col-md-10 {
1094 .col-md-10 {
1095 width: 83.33333333%;
1095 width: 83.33333333%;
1096 }
1096 }
1097 .col-md-9 {
1097 .col-md-9 {
1098 width: 75%;
1098 width: 75%;
1099 }
1099 }
1100 .col-md-8 {
1100 .col-md-8 {
1101 width: 66.66666667%;
1101 width: 66.66666667%;
1102 }
1102 }
1103 .col-md-7 {
1103 .col-md-7 {
1104 width: 58.33333333%;
1104 width: 58.33333333%;
1105 }
1105 }
1106 .col-md-6 {
1106 .col-md-6 {
1107 width: 50%;
1107 width: 50%;
1108 }
1108 }
1109 .col-md-5 {
1109 .col-md-5 {
1110 width: 41.66666667%;
1110 width: 41.66666667%;
1111 }
1111 }
1112 .col-md-4 {
1112 .col-md-4 {
1113 width: 33.33333333%;
1113 width: 33.33333333%;
1114 }
1114 }
1115 .col-md-3 {
1115 .col-md-3 {
1116 width: 25%;
1116 width: 25%;
1117 }
1117 }
1118 .col-md-2 {
1118 .col-md-2 {
1119 width: 16.66666667%;
1119 width: 16.66666667%;
1120 }
1120 }
1121 .col-md-1 {
1121 .col-md-1 {
1122 width: 8.33333333%;
1122 width: 8.33333333%;
1123 }
1123 }
1124 .col-md-pull-12 {
1124 .col-md-pull-12 {
1125 right: 100%;
1125 right: 100%;
1126 }
1126 }
1127 .col-md-pull-11 {
1127 .col-md-pull-11 {
1128 right: 91.66666667%;
1128 right: 91.66666667%;
1129 }
1129 }
1130 .col-md-pull-10 {
1130 .col-md-pull-10 {
1131 right: 83.33333333%;
1131 right: 83.33333333%;
1132 }
1132 }
1133 .col-md-pull-9 {
1133 .col-md-pull-9 {
1134 right: 75%;
1134 right: 75%;
1135 }
1135 }
1136 .col-md-pull-8 {
1136 .col-md-pull-8 {
1137 right: 66.66666667%;
1137 right: 66.66666667%;
1138 }
1138 }
1139 .col-md-pull-7 {
1139 .col-md-pull-7 {
1140 right: 58.33333333%;
1140 right: 58.33333333%;
1141 }
1141 }
1142 .col-md-pull-6 {
1142 .col-md-pull-6 {
1143 right: 50%;
1143 right: 50%;
1144 }
1144 }
1145 .col-md-pull-5 {
1145 .col-md-pull-5 {
1146 right: 41.66666667%;
1146 right: 41.66666667%;
1147 }
1147 }
1148 .col-md-pull-4 {
1148 .col-md-pull-4 {
1149 right: 33.33333333%;
1149 right: 33.33333333%;
1150 }
1150 }
1151 .col-md-pull-3 {
1151 .col-md-pull-3 {
1152 right: 25%;
1152 right: 25%;
1153 }
1153 }
1154 .col-md-pull-2 {
1154 .col-md-pull-2 {
1155 right: 16.66666667%;
1155 right: 16.66666667%;
1156 }
1156 }
1157 .col-md-pull-1 {
1157 .col-md-pull-1 {
1158 right: 8.33333333%;
1158 right: 8.33333333%;
1159 }
1159 }
1160 .col-md-pull-0 {
1160 .col-md-pull-0 {
1161 right: 0%;
1161 right: 0%;
1162 }
1162 }
1163 .col-md-push-12 {
1163 .col-md-push-12 {
1164 left: 100%;
1164 left: 100%;
1165 }
1165 }
1166 .col-md-push-11 {
1166 .col-md-push-11 {
1167 left: 91.66666667%;
1167 left: 91.66666667%;
1168 }
1168 }
1169 .col-md-push-10 {
1169 .col-md-push-10 {
1170 left: 83.33333333%;
1170 left: 83.33333333%;
1171 }
1171 }
1172 .col-md-push-9 {
1172 .col-md-push-9 {
1173 left: 75%;
1173 left: 75%;
1174 }
1174 }
1175 .col-md-push-8 {
1175 .col-md-push-8 {
1176 left: 66.66666667%;
1176 left: 66.66666667%;
1177 }
1177 }
1178 .col-md-push-7 {
1178 .col-md-push-7 {
1179 left: 58.33333333%;
1179 left: 58.33333333%;
1180 }
1180 }
1181 .col-md-push-6 {
1181 .col-md-push-6 {
1182 left: 50%;
1182 left: 50%;
1183 }
1183 }
1184 .col-md-push-5 {
1184 .col-md-push-5 {
1185 left: 41.66666667%;
1185 left: 41.66666667%;
1186 }
1186 }
1187 .col-md-push-4 {
1187 .col-md-push-4 {
1188 left: 33.33333333%;
1188 left: 33.33333333%;
1189 }
1189 }
1190 .col-md-push-3 {
1190 .col-md-push-3 {
1191 left: 25%;
1191 left: 25%;
1192 }
1192 }
1193 .col-md-push-2 {
1193 .col-md-push-2 {
1194 left: 16.66666667%;
1194 left: 16.66666667%;
1195 }
1195 }
1196 .col-md-push-1 {
1196 .col-md-push-1 {
1197 left: 8.33333333%;
1197 left: 8.33333333%;
1198 }
1198 }
1199 .col-md-push-0 {
1199 .col-md-push-0 {
1200 left: 0%;
1200 left: 0%;
1201 }
1201 }
1202 .col-md-offset-12 {
1202 .col-md-offset-12 {
1203 margin-left: 100%;
1203 margin-left: 100%;
1204 }
1204 }
1205 .col-md-offset-11 {
1205 .col-md-offset-11 {
1206 margin-left: 91.66666667%;
1206 margin-left: 91.66666667%;
1207 }
1207 }
1208 .col-md-offset-10 {
1208 .col-md-offset-10 {
1209 margin-left: 83.33333333%;
1209 margin-left: 83.33333333%;
1210 }
1210 }
1211 .col-md-offset-9 {
1211 .col-md-offset-9 {
1212 margin-left: 75%;
1212 margin-left: 75%;
1213 }
1213 }
1214 .col-md-offset-8 {
1214 .col-md-offset-8 {
1215 margin-left: 66.66666667%;
1215 margin-left: 66.66666667%;
1216 }
1216 }
1217 .col-md-offset-7 {
1217 .col-md-offset-7 {
1218 margin-left: 58.33333333%;
1218 margin-left: 58.33333333%;
1219 }
1219 }
1220 .col-md-offset-6 {
1220 .col-md-offset-6 {
1221 margin-left: 50%;
1221 margin-left: 50%;
1222 }
1222 }
1223 .col-md-offset-5 {
1223 .col-md-offset-5 {
1224 margin-left: 41.66666667%;
1224 margin-left: 41.66666667%;
1225 }
1225 }
1226 .col-md-offset-4 {
1226 .col-md-offset-4 {
1227 margin-left: 33.33333333%;
1227 margin-left: 33.33333333%;
1228 }
1228 }
1229 .col-md-offset-3 {
1229 .col-md-offset-3 {
1230 margin-left: 25%;
1230 margin-left: 25%;
1231 }
1231 }
1232 .col-md-offset-2 {
1232 .col-md-offset-2 {
1233 margin-left: 16.66666667%;
1233 margin-left: 16.66666667%;
1234 }
1234 }
1235 .col-md-offset-1 {
1235 .col-md-offset-1 {
1236 margin-left: 8.33333333%;
1236 margin-left: 8.33333333%;
1237 }
1237 }
1238 .col-md-offset-0 {
1238 .col-md-offset-0 {
1239 margin-left: 0%;
1239 margin-left: 0%;
1240 }
1240 }
1241 }
1241 }
1242 @media (min-width: 1200px) {
1242 @media (min-width: 1200px) {
1243 .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
1243 .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
1244 float: left;
1244 float: left;
1245 }
1245 }
1246 .col-lg-12 {
1246 .col-lg-12 {
1247 width: 100%;
1247 width: 100%;
1248 }
1248 }
1249 .col-lg-11 {
1249 .col-lg-11 {
1250 width: 91.66666667%;
1250 width: 91.66666667%;
1251 }
1251 }
1252 .col-lg-10 {
1252 .col-lg-10 {
1253 width: 83.33333333%;
1253 width: 83.33333333%;
1254 }
1254 }
1255 .col-lg-9 {
1255 .col-lg-9 {
1256 width: 75%;
1256 width: 75%;
1257 }
1257 }
1258 .col-lg-8 {
1258 .col-lg-8 {
1259 width: 66.66666667%;
1259 width: 66.66666667%;
1260 }
1260 }
1261 .col-lg-7 {
1261 .col-lg-7 {
1262 width: 58.33333333%;
1262 width: 58.33333333%;
1263 }
1263 }
1264 .col-lg-6 {
1264 .col-lg-6 {
1265 width: 50%;
1265 width: 50%;
1266 }
1266 }
1267 .col-lg-5 {
1267 .col-lg-5 {
1268 width: 41.66666667%;
1268 width: 41.66666667%;
1269 }
1269 }
1270 .col-lg-4 {
1270 .col-lg-4 {
1271 width: 33.33333333%;
1271 width: 33.33333333%;
1272 }
1272 }
1273 .col-lg-3 {
1273 .col-lg-3 {
1274 width: 25%;
1274 width: 25%;
1275 }
1275 }
1276 .col-lg-2 {
1276 .col-lg-2 {
1277 width: 16.66666667%;
1277 width: 16.66666667%;
1278 }
1278 }
1279 .col-lg-1 {
1279 .col-lg-1 {
1280 width: 8.33333333%;
1280 width: 8.33333333%;
1281 }
1281 }
1282 .col-lg-pull-12 {
1282 .col-lg-pull-12 {
1283 right: 100%;
1283 right: 100%;
1284 }
1284 }
1285 .col-lg-pull-11 {
1285 .col-lg-pull-11 {
1286 right: 91.66666667%;
1286 right: 91.66666667%;
1287 }
1287 }
1288 .col-lg-pull-10 {
1288 .col-lg-pull-10 {
1289 right: 83.33333333%;
1289 right: 83.33333333%;
1290 }
1290 }
1291 .col-lg-pull-9 {
1291 .col-lg-pull-9 {
1292 right: 75%;
1292 right: 75%;
1293 }
1293 }
1294 .col-lg-pull-8 {
1294 .col-lg-pull-8 {
1295 right: 66.66666667%;
1295 right: 66.66666667%;
1296 }
1296 }
1297 .col-lg-pull-7 {
1297 .col-lg-pull-7 {
1298 right: 58.33333333%;
1298 right: 58.33333333%;
1299 }
1299 }
1300 .col-lg-pull-6 {
1300 .col-lg-pull-6 {
1301 right: 50%;
1301 right: 50%;
1302 }
1302 }
1303 .col-lg-pull-5 {
1303 .col-lg-pull-5 {
1304 right: 41.66666667%;
1304 right: 41.66666667%;
1305 }
1305 }
1306 .col-lg-pull-4 {
1306 .col-lg-pull-4 {
1307 right: 33.33333333%;
1307 right: 33.33333333%;
1308 }
1308 }
1309 .col-lg-pull-3 {
1309 .col-lg-pull-3 {
1310 right: 25%;
1310 right: 25%;
1311 }
1311 }
1312 .col-lg-pull-2 {
1312 .col-lg-pull-2 {
1313 right: 16.66666667%;
1313 right: 16.66666667%;
1314 }
1314 }
1315 .col-lg-pull-1 {
1315 .col-lg-pull-1 {
1316 right: 8.33333333%;
1316 right: 8.33333333%;
1317 }
1317 }
1318 .col-lg-pull-0 {
1318 .col-lg-pull-0 {
1319 right: 0%;
1319 right: 0%;
1320 }
1320 }
1321 .col-lg-push-12 {
1321 .col-lg-push-12 {
1322 left: 100%;
1322 left: 100%;
1323 }
1323 }
1324 .col-lg-push-11 {
1324 .col-lg-push-11 {
1325 left: 91.66666667%;
1325 left: 91.66666667%;
1326 }
1326 }
1327 .col-lg-push-10 {
1327 .col-lg-push-10 {
1328 left: 83.33333333%;
1328 left: 83.33333333%;
1329 }
1329 }
1330 .col-lg-push-9 {
1330 .col-lg-push-9 {
1331 left: 75%;
1331 left: 75%;
1332 }
1332 }
1333 .col-lg-push-8 {
1333 .col-lg-push-8 {
1334 left: 66.66666667%;
1334 left: 66.66666667%;
1335 }
1335 }
1336 .col-lg-push-7 {
1336 .col-lg-push-7 {
1337 left: 58.33333333%;
1337 left: 58.33333333%;
1338 }
1338 }
1339 .col-lg-push-6 {
1339 .col-lg-push-6 {
1340 left: 50%;
1340 left: 50%;
1341 }
1341 }
1342 .col-lg-push-5 {
1342 .col-lg-push-5 {
1343 left: 41.66666667%;
1343 left: 41.66666667%;
1344 }
1344 }
1345 .col-lg-push-4 {
1345 .col-lg-push-4 {
1346 left: 33.33333333%;
1346 left: 33.33333333%;
1347 }
1347 }
1348 .col-lg-push-3 {
1348 .col-lg-push-3 {
1349 left: 25%;
1349 left: 25%;
1350 }
1350 }
1351 .col-lg-push-2 {
1351 .col-lg-push-2 {
1352 left: 16.66666667%;
1352 left: 16.66666667%;
1353 }
1353 }
1354 .col-lg-push-1 {
1354 .col-lg-push-1 {
1355 left: 8.33333333%;
1355 left: 8.33333333%;
1356 }
1356 }
1357 .col-lg-push-0 {
1357 .col-lg-push-0 {
1358 left: 0%;
1358 left: 0%;
1359 }
1359 }
1360 .col-lg-offset-12 {
1360 .col-lg-offset-12 {
1361 margin-left: 100%;
1361 margin-left: 100%;
1362 }
1362 }
1363 .col-lg-offset-11 {
1363 .col-lg-offset-11 {
1364 margin-left: 91.66666667%;
1364 margin-left: 91.66666667%;
1365 }
1365 }
1366 .col-lg-offset-10 {
1366 .col-lg-offset-10 {
1367 margin-left: 83.33333333%;
1367 margin-left: 83.33333333%;
1368 }
1368 }
1369 .col-lg-offset-9 {
1369 .col-lg-offset-9 {
1370 margin-left: 75%;
1370 margin-left: 75%;
1371 }
1371 }
1372 .col-lg-offset-8 {
1372 .col-lg-offset-8 {
1373 margin-left: 66.66666667%;
1373 margin-left: 66.66666667%;
1374 }
1374 }
1375 .col-lg-offset-7 {
1375 .col-lg-offset-7 {
1376 margin-left: 58.33333333%;
1376 margin-left: 58.33333333%;
1377 }
1377 }
1378 .col-lg-offset-6 {
1378 .col-lg-offset-6 {
1379 margin-left: 50%;
1379 margin-left: 50%;
1380 }
1380 }
1381 .col-lg-offset-5 {
1381 .col-lg-offset-5 {
1382 margin-left: 41.66666667%;
1382 margin-left: 41.66666667%;
1383 }
1383 }
1384 .col-lg-offset-4 {
1384 .col-lg-offset-4 {
1385 margin-left: 33.33333333%;
1385 margin-left: 33.33333333%;
1386 }
1386 }
1387 .col-lg-offset-3 {
1387 .col-lg-offset-3 {
1388 margin-left: 25%;
1388 margin-left: 25%;
1389 }
1389 }
1390 .col-lg-offset-2 {
1390 .col-lg-offset-2 {
1391 margin-left: 16.66666667%;
1391 margin-left: 16.66666667%;
1392 }
1392 }
1393 .col-lg-offset-1 {
1393 .col-lg-offset-1 {
1394 margin-left: 8.33333333%;
1394 margin-left: 8.33333333%;
1395 }
1395 }
1396 .col-lg-offset-0 {
1396 .col-lg-offset-0 {
1397 margin-left: 0%;
1397 margin-left: 0%;
1398 }
1398 }
1399 }
1399 }
1400 table {
1400 table {
1401 max-width: 100%;
1401 max-width: 100%;
1402 background-color: transparent;
1402 background-color: transparent;
1403 }
1403 }
1404 th {
1404 th {
1405 text-align: left;
1405 text-align: left;
1406 }
1406 }
1407 .table {
1407 .table {
1408 width: 100%;
1408 width: 100%;
1409 margin-bottom: 18px;
1409 margin-bottom: 18px;
1410 }
1410 }
1411 .table > thead > tr > th,
1411 .table > thead > tr > th,
1412 .table > tbody > tr > th,
1412 .table > tbody > tr > th,
1413 .table > tfoot > tr > th,
1413 .table > tfoot > tr > th,
1414 .table > thead > tr > td,
1414 .table > thead > tr > td,
1415 .table > tbody > tr > td,
1415 .table > tbody > tr > td,
1416 .table > tfoot > tr > td {
1416 .table > tfoot > tr > td {
1417 padding: 8px;
1417 padding: 8px;
1418 line-height: 1.42857143;
1418 line-height: 1.42857143;
1419 vertical-align: top;
1419 vertical-align: top;
1420 border-top: 1px solid #dddddd;
1420 border-top: 1px solid #dddddd;
1421 }
1421 }
1422 .table > thead > tr > th {
1422 .table > thead > tr > th {
1423 vertical-align: bottom;
1423 vertical-align: bottom;
1424 border-bottom: 2px solid #dddddd;
1424 border-bottom: 2px solid #dddddd;
1425 }
1425 }
1426 .table > caption + thead > tr:first-child > th,
1426 .table > caption + thead > tr:first-child > th,
1427 .table > colgroup + thead > tr:first-child > th,
1427 .table > colgroup + thead > tr:first-child > th,
1428 .table > thead:first-child > tr:first-child > th,
1428 .table > thead:first-child > tr:first-child > th,
1429 .table > caption + thead > tr:first-child > td,
1429 .table > caption + thead > tr:first-child > td,
1430 .table > colgroup + thead > tr:first-child > td,
1430 .table > colgroup + thead > tr:first-child > td,
1431 .table > thead:first-child > tr:first-child > td {
1431 .table > thead:first-child > tr:first-child > td {
1432 border-top: 0;
1432 border-top: 0;
1433 }
1433 }
1434 .table > tbody + tbody {
1434 .table > tbody + tbody {
1435 border-top: 2px solid #dddddd;
1435 border-top: 2px solid #dddddd;
1436 }
1436 }
1437 .table .table {
1437 .table .table {
1438 background-color: #ffffff;
1438 background-color: #ffffff;
1439 }
1439 }
1440 .table-condensed > thead > tr > th,
1440 .table-condensed > thead > tr > th,
1441 .table-condensed > tbody > tr > th,
1441 .table-condensed > tbody > tr > th,
1442 .table-condensed > tfoot > tr > th,
1442 .table-condensed > tfoot > tr > th,
1443 .table-condensed > thead > tr > td,
1443 .table-condensed > thead > tr > td,
1444 .table-condensed > tbody > tr > td,
1444 .table-condensed > tbody > tr > td,
1445 .table-condensed > tfoot > tr > td {
1445 .table-condensed > tfoot > tr > td {
1446 padding: 5px;
1446 padding: 5px;
1447 }
1447 }
1448 .table-bordered {
1448 .table-bordered {
1449 border: 1px solid #dddddd;
1449 border: 1px solid #dddddd;
1450 }
1450 }
1451 .table-bordered > thead > tr > th,
1451 .table-bordered > thead > tr > th,
1452 .table-bordered > tbody > tr > th,
1452 .table-bordered > tbody > tr > th,
1453 .table-bordered > tfoot > tr > th,
1453 .table-bordered > tfoot > tr > th,
1454 .table-bordered > thead > tr > td,
1454 .table-bordered > thead > tr > td,
1455 .table-bordered > tbody > tr > td,
1455 .table-bordered > tbody > tr > td,
1456 .table-bordered > tfoot > tr > td {
1456 .table-bordered > tfoot > tr > td {
1457 border: 1px solid #dddddd;
1457 border: 1px solid #dddddd;
1458 }
1458 }
1459 .table-bordered > thead > tr > th,
1459 .table-bordered > thead > tr > th,
1460 .table-bordered > thead > tr > td {
1460 .table-bordered > thead > tr > td {
1461 border-bottom-width: 2px;
1461 border-bottom-width: 2px;
1462 }
1462 }
1463 .table-striped > tbody > tr:nth-child(odd) > td,
1463 .table-striped > tbody > tr:nth-child(odd) > td,
1464 .table-striped > tbody > tr:nth-child(odd) > th {
1464 .table-striped > tbody > tr:nth-child(odd) > th {
1465 background-color: #f9f9f9;
1465 background-color: #f9f9f9;
1466 }
1466 }
1467 .table-hover > tbody > tr:hover > td,
1467 .table-hover > tbody > tr:hover > td,
1468 .table-hover > tbody > tr:hover > th {
1468 .table-hover > tbody > tr:hover > th {
1469 background-color: #f5f5f5;
1469 background-color: #f5f5f5;
1470 }
1470 }
1471 table col[class*="col-"] {
1471 table col[class*="col-"] {
1472 position: static;
1472 position: static;
1473 float: none;
1473 float: none;
1474 display: table-column;
1474 display: table-column;
1475 }
1475 }
1476 table td[class*="col-"],
1476 table td[class*="col-"],
1477 table th[class*="col-"] {
1477 table th[class*="col-"] {
1478 position: static;
1478 position: static;
1479 float: none;
1479 float: none;
1480 display: table-cell;
1480 display: table-cell;
1481 }
1481 }
1482 .table > thead > tr > td.active,
1482 .table > thead > tr > td.active,
1483 .table > tbody > tr > td.active,
1483 .table > tbody > tr > td.active,
1484 .table > tfoot > tr > td.active,
1484 .table > tfoot > tr > td.active,
1485 .table > thead > tr > th.active,
1485 .table > thead > tr > th.active,
1486 .table > tbody > tr > th.active,
1486 .table > tbody > tr > th.active,
1487 .table > tfoot > tr > th.active,
1487 .table > tfoot > tr > th.active,
1488 .table > thead > tr.active > td,
1488 .table > thead > tr.active > td,
1489 .table > tbody > tr.active > td,
1489 .table > tbody > tr.active > td,
1490 .table > tfoot > tr.active > td,
1490 .table > tfoot > tr.active > td,
1491 .table > thead > tr.active > th,
1491 .table > thead > tr.active > th,
1492 .table > tbody > tr.active > th,
1492 .table > tbody > tr.active > th,
1493 .table > tfoot > tr.active > th {
1493 .table > tfoot > tr.active > th {
1494 background-color: #f5f5f5;
1494 background-color: #f5f5f5;
1495 }
1495 }
1496 .table-hover > tbody > tr > td.active:hover,
1496 .table-hover > tbody > tr > td.active:hover,
1497 .table-hover > tbody > tr > th.active:hover,
1497 .table-hover > tbody > tr > th.active:hover,
1498 .table-hover > tbody > tr.active:hover > td,
1498 .table-hover > tbody > tr.active:hover > td,
1499 .table-hover > tbody > tr.active:hover > th {
1499 .table-hover > tbody > tr.active:hover > th {
1500 background-color: #e8e8e8;
1500 background-color: #e8e8e8;
1501 }
1501 }
1502 .table > thead > tr > td.success,
1502 .table > thead > tr > td.success,
1503 .table > tbody > tr > td.success,
1503 .table > tbody > tr > td.success,
1504 .table > tfoot > tr > td.success,
1504 .table > tfoot > tr > td.success,
1505 .table > thead > tr > th.success,
1505 .table > thead > tr > th.success,
1506 .table > tbody > tr > th.success,
1506 .table > tbody > tr > th.success,
1507 .table > tfoot > tr > th.success,
1507 .table > tfoot > tr > th.success,
1508 .table > thead > tr.success > td,
1508 .table > thead > tr.success > td,
1509 .table > tbody > tr.success > td,
1509 .table > tbody > tr.success > td,
1510 .table > tfoot > tr.success > td,
1510 .table > tfoot > tr.success > td,
1511 .table > thead > tr.success > th,
1511 .table > thead > tr.success > th,
1512 .table > tbody > tr.success > th,
1512 .table > tbody > tr.success > th,
1513 .table > tfoot > tr.success > th {
1513 .table > tfoot > tr.success > th {
1514 background-color: #dff0d8;
1514 background-color: #dff0d8;
1515 }
1515 }
1516 .table-hover > tbody > tr > td.success:hover,
1516 .table-hover > tbody > tr > td.success:hover,
1517 .table-hover > tbody > tr > th.success:hover,
1517 .table-hover > tbody > tr > th.success:hover,
1518 .table-hover > tbody > tr.success:hover > td,
1518 .table-hover > tbody > tr.success:hover > td,
1519 .table-hover > tbody > tr.success:hover > th {
1519 .table-hover > tbody > tr.success:hover > th {
1520 background-color: #d0e9c6;
1520 background-color: #d0e9c6;
1521 }
1521 }
1522 .table > thead > tr > td.info,
1522 .table > thead > tr > td.info,
1523 .table > tbody > tr > td.info,
1523 .table > tbody > tr > td.info,
1524 .table > tfoot > tr > td.info,
1524 .table > tfoot > tr > td.info,
1525 .table > thead > tr > th.info,
1525 .table > thead > tr > th.info,
1526 .table > tbody > tr > th.info,
1526 .table > tbody > tr > th.info,
1527 .table > tfoot > tr > th.info,
1527 .table > tfoot > tr > th.info,
1528 .table > thead > tr.info > td,
1528 .table > thead > tr.info > td,
1529 .table > tbody > tr.info > td,
1529 .table > tbody > tr.info > td,
1530 .table > tfoot > tr.info > td,
1530 .table > tfoot > tr.info > td,
1531 .table > thead > tr.info > th,
1531 .table > thead > tr.info > th,
1532 .table > tbody > tr.info > th,
1532 .table > tbody > tr.info > th,
1533 .table > tfoot > tr.info > th {
1533 .table > tfoot > tr.info > th {
1534 background-color: #d9edf7;
1534 background-color: #d9edf7;
1535 }
1535 }
1536 .table-hover > tbody > tr > td.info:hover,
1536 .table-hover > tbody > tr > td.info:hover,
1537 .table-hover > tbody > tr > th.info:hover,
1537 .table-hover > tbody > tr > th.info:hover,
1538 .table-hover > tbody > tr.info:hover > td,
1538 .table-hover > tbody > tr.info:hover > td,
1539 .table-hover > tbody > tr.info:hover > th {
1539 .table-hover > tbody > tr.info:hover > th {
1540 background-color: #c4e3f3;
1540 background-color: #c4e3f3;
1541 }
1541 }
1542 .table > thead > tr > td.warning,
1542 .table > thead > tr > td.warning,
1543 .table > tbody > tr > td.warning,
1543 .table > tbody > tr > td.warning,
1544 .table > tfoot > tr > td.warning,
1544 .table > tfoot > tr > td.warning,
1545 .table > thead > tr > th.warning,
1545 .table > thead > tr > th.warning,
1546 .table > tbody > tr > th.warning,
1546 .table > tbody > tr > th.warning,
1547 .table > tfoot > tr > th.warning,
1547 .table > tfoot > tr > th.warning,
1548 .table > thead > tr.warning > td,
1548 .table > thead > tr.warning > td,
1549 .table > tbody > tr.warning > td,
1549 .table > tbody > tr.warning > td,
1550 .table > tfoot > tr.warning > td,
1550 .table > tfoot > tr.warning > td,
1551 .table > thead > tr.warning > th,
1551 .table > thead > tr.warning > th,
1552 .table > tbody > tr.warning > th,
1552 .table > tbody > tr.warning > th,
1553 .table > tfoot > tr.warning > th {
1553 .table > tfoot > tr.warning > th {
1554 background-color: #fcf8e3;
1554 background-color: #fcf8e3;
1555 }
1555 }
1556 .table-hover > tbody > tr > td.warning:hover,
1556 .table-hover > tbody > tr > td.warning:hover,
1557 .table-hover > tbody > tr > th.warning:hover,
1557 .table-hover > tbody > tr > th.warning:hover,
1558 .table-hover > tbody > tr.warning:hover > td,
1558 .table-hover > tbody > tr.warning:hover > td,
1559 .table-hover > tbody > tr.warning:hover > th {
1559 .table-hover > tbody > tr.warning:hover > th {
1560 background-color: #faf2cc;
1560 background-color: #faf2cc;
1561 }
1561 }
1562 .table > thead > tr > td.danger,
1562 .table > thead > tr > td.danger,
1563 .table > tbody > tr > td.danger,
1563 .table > tbody > tr > td.danger,
1564 .table > tfoot > tr > td.danger,
1564 .table > tfoot > tr > td.danger,
1565 .table > thead > tr > th.danger,
1565 .table > thead > tr > th.danger,
1566 .table > tbody > tr > th.danger,
1566 .table > tbody > tr > th.danger,
1567 .table > tfoot > tr > th.danger,
1567 .table > tfoot > tr > th.danger,
1568 .table > thead > tr.danger > td,
1568 .table > thead > tr.danger > td,
1569 .table > tbody > tr.danger > td,
1569 .table > tbody > tr.danger > td,
1570 .table > tfoot > tr.danger > td,
1570 .table > tfoot > tr.danger > td,
1571 .table > thead > tr.danger > th,
1571 .table > thead > tr.danger > th,
1572 .table > tbody > tr.danger > th,
1572 .table > tbody > tr.danger > th,
1573 .table > tfoot > tr.danger > th {
1573 .table > tfoot > tr.danger > th {
1574 background-color: #f2dede;
1574 background-color: #f2dede;
1575 }
1575 }
1576 .table-hover > tbody > tr > td.danger:hover,
1576 .table-hover > tbody > tr > td.danger:hover,
1577 .table-hover > tbody > tr > th.danger:hover,
1577 .table-hover > tbody > tr > th.danger:hover,
1578 .table-hover > tbody > tr.danger:hover > td,
1578 .table-hover > tbody > tr.danger:hover > td,
1579 .table-hover > tbody > tr.danger:hover > th {
1579 .table-hover > tbody > tr.danger:hover > th {
1580 background-color: #ebcccc;
1580 background-color: #ebcccc;
1581 }
1581 }
1582 @media (max-width: 767px) {
1582 @media (max-width: 767px) {
1583 .table-responsive {
1583 .table-responsive {
1584 width: 100%;
1584 width: 100%;
1585 margin-bottom: 13.5px;
1585 margin-bottom: 13.5px;
1586 overflow-y: hidden;
1586 overflow-y: hidden;
1587 overflow-x: scroll;
1587 overflow-x: scroll;
1588 -ms-overflow-style: -ms-autohiding-scrollbar;
1588 -ms-overflow-style: -ms-autohiding-scrollbar;
1589 border: 1px solid #dddddd;
1589 border: 1px solid #dddddd;
1590 -webkit-overflow-scrolling: touch;
1590 -webkit-overflow-scrolling: touch;
1591 }
1591 }
1592 .table-responsive > .table {
1592 .table-responsive > .table {
1593 margin-bottom: 0;
1593 margin-bottom: 0;
1594 }
1594 }
1595 .table-responsive > .table > thead > tr > th,
1595 .table-responsive > .table > thead > tr > th,
1596 .table-responsive > .table > tbody > tr > th,
1596 .table-responsive > .table > tbody > tr > th,
1597 .table-responsive > .table > tfoot > tr > th,
1597 .table-responsive > .table > tfoot > tr > th,
1598 .table-responsive > .table > thead > tr > td,
1598 .table-responsive > .table > thead > tr > td,
1599 .table-responsive > .table > tbody > tr > td,
1599 .table-responsive > .table > tbody > tr > td,
1600 .table-responsive > .table > tfoot > tr > td {
1600 .table-responsive > .table > tfoot > tr > td {
1601 white-space: nowrap;
1601 white-space: nowrap;
1602 }
1602 }
1603 .table-responsive > .table-bordered {
1603 .table-responsive > .table-bordered {
1604 border: 0;
1604 border: 0;
1605 }
1605 }
1606 .table-responsive > .table-bordered > thead > tr > th:first-child,
1606 .table-responsive > .table-bordered > thead > tr > th:first-child,
1607 .table-responsive > .table-bordered > tbody > tr > th:first-child,
1607 .table-responsive > .table-bordered > tbody > tr > th:first-child,
1608 .table-responsive > .table-bordered > tfoot > tr > th:first-child,
1608 .table-responsive > .table-bordered > tfoot > tr > th:first-child,
1609 .table-responsive > .table-bordered > thead > tr > td:first-child,
1609 .table-responsive > .table-bordered > thead > tr > td:first-child,
1610 .table-responsive > .table-bordered > tbody > tr > td:first-child,
1610 .table-responsive > .table-bordered > tbody > tr > td:first-child,
1611 .table-responsive > .table-bordered > tfoot > tr > td:first-child {
1611 .table-responsive > .table-bordered > tfoot > tr > td:first-child {
1612 border-left: 0;
1612 border-left: 0;
1613 }
1613 }
1614 .table-responsive > .table-bordered > thead > tr > th:last-child,
1614 .table-responsive > .table-bordered > thead > tr > th:last-child,
1615 .table-responsive > .table-bordered > tbody > tr > th:last-child,
1615 .table-responsive > .table-bordered > tbody > tr > th:last-child,
1616 .table-responsive > .table-bordered > tfoot > tr > th:last-child,
1616 .table-responsive > .table-bordered > tfoot > tr > th:last-child,
1617 .table-responsive > .table-bordered > thead > tr > td:last-child,
1617 .table-responsive > .table-bordered > thead > tr > td:last-child,
1618 .table-responsive > .table-bordered > tbody > tr > td:last-child,
1618 .table-responsive > .table-bordered > tbody > tr > td:last-child,
1619 .table-responsive > .table-bordered > tfoot > tr > td:last-child {
1619 .table-responsive > .table-bordered > tfoot > tr > td:last-child {
1620 border-right: 0;
1620 border-right: 0;
1621 }
1621 }
1622 .table-responsive > .table-bordered > tbody > tr:last-child > th,
1622 .table-responsive > .table-bordered > tbody > tr:last-child > th,
1623 .table-responsive > .table-bordered > tfoot > tr:last-child > th,
1623 .table-responsive > .table-bordered > tfoot > tr:last-child > th,
1624 .table-responsive > .table-bordered > tbody > tr:last-child > td,
1624 .table-responsive > .table-bordered > tbody > tr:last-child > td,
1625 .table-responsive > .table-bordered > tfoot > tr:last-child > td {
1625 .table-responsive > .table-bordered > tfoot > tr:last-child > td {
1626 border-bottom: 0;
1626 border-bottom: 0;
1627 }
1627 }
1628 }
1628 }
1629 fieldset {
1629 fieldset {
1630 padding: 0;
1630 padding: 0;
1631 margin: 0;
1631 margin: 0;
1632 border: 0;
1632 border: 0;
1633 min-width: 0;
1633 min-width: 0;
1634 }
1634 }
1635 legend {
1635 legend {
1636 display: block;
1636 display: block;
1637 width: 100%;
1637 width: 100%;
1638 padding: 0;
1638 padding: 0;
1639 margin-bottom: 18px;
1639 margin-bottom: 18px;
1640 font-size: 19.5px;
1640 font-size: 19.5px;
1641 line-height: inherit;
1641 line-height: inherit;
1642 color: #333333;
1642 color: #333333;
1643 border: 0;
1643 border: 0;
1644 border-bottom: 1px solid #e5e5e5;
1644 border-bottom: 1px solid #e5e5e5;
1645 }
1645 }
1646 label {
1646 label {
1647 display: inline-block;
1647 display: inline-block;
1648 margin-bottom: 5px;
1648 margin-bottom: 5px;
1649 font-weight: bold;
1649 font-weight: bold;
1650 }
1650 }
1651 input[type="search"] {
1651 input[type="search"] {
1652 -webkit-box-sizing: border-box;
1652 -webkit-box-sizing: border-box;
1653 -moz-box-sizing: border-box;
1653 -moz-box-sizing: border-box;
1654 box-sizing: border-box;
1654 box-sizing: border-box;
1655 }
1655 }
1656 input[type="radio"],
1656 input[type="radio"],
1657 input[type="checkbox"] {
1657 input[type="checkbox"] {
1658 margin: 4px 0 0;
1658 margin: 4px 0 0;
1659 margin-top: 1px \9;
1659 margin-top: 1px \9;
1660 /* IE8-9 */
1660 /* IE8-9 */
1661 line-height: normal;
1661 line-height: normal;
1662 }
1662 }
1663 input[type="file"] {
1663 input[type="file"] {
1664 display: block;
1664 display: block;
1665 }
1665 }
1666 input[type="range"] {
1666 input[type="range"] {
1667 display: block;
1667 display: block;
1668 width: 100%;
1668 width: 100%;
1669 }
1669 }
1670 select[multiple],
1670 select[multiple],
1671 select[size] {
1671 select[size] {
1672 height: auto;
1672 height: auto;
1673 }
1673 }
1674 input[type="file"]:focus,
1674 input[type="file"]:focus,
1675 input[type="radio"]:focus,
1675 input[type="radio"]:focus,
1676 input[type="checkbox"]:focus {
1676 input[type="checkbox"]:focus {
1677 outline: thin dotted;
1677 outline: thin dotted;
1678 outline: 5px auto -webkit-focus-ring-color;
1678 outline: 5px auto -webkit-focus-ring-color;
1679 outline-offset: -2px;
1679 outline-offset: -2px;
1680 }
1680 }
1681 output {
1681 output {
1682 display: block;
1682 display: block;
1683 padding-top: 7px;
1683 padding-top: 7px;
1684 font-size: 13px;
1684 font-size: 13px;
1685 line-height: 1.42857143;
1685 line-height: 1.42857143;
1686 color: #555555;
1686 color: #555555;
1687 }
1687 }
1688 .form-control {
1688 .form-control {
1689 display: block;
1689 display: block;
1690 width: 100%;
1690 width: 100%;
1691 height: 32px;
1691 height: 32px;
1692 padding: 6px 12px;
1692 padding: 6px 12px;
1693 font-size: 13px;
1693 font-size: 13px;
1694 line-height: 1.42857143;
1694 line-height: 1.42857143;
1695 color: #555555;
1695 color: #555555;
1696 background-color: #ffffff;
1696 background-color: #ffffff;
1697 background-image: none;
1697 background-image: none;
1698 border: 1px solid #cccccc;
1698 border: 1px solid #cccccc;
1699 border-radius: 4px;
1699 border-radius: 2px;
1700 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1700 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1701 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1701 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1702 -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
1702 -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
1703 transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
1703 transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
1704 }
1704 }
1705 .form-control:focus {
1705 .form-control:focus {
1706 border-color: #66afe9;
1706 border-color: #66afe9;
1707 outline: 0;
1707 outline: 0;
1708 -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
1708 -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
1709 box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
1709 box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
1710 }
1710 }
1711 .form-control::-moz-placeholder {
1711 .form-control::-moz-placeholder {
1712 color: #999999;
1712 color: #999999;
1713 opacity: 1;
1713 opacity: 1;
1714 }
1714 }
1715 .form-control:-ms-input-placeholder {
1715 .form-control:-ms-input-placeholder {
1716 color: #999999;
1716 color: #999999;
1717 }
1717 }
1718 .form-control::-webkit-input-placeholder {
1718 .form-control::-webkit-input-placeholder {
1719 color: #999999;
1719 color: #999999;
1720 }
1720 }
1721 .form-control[disabled],
1721 .form-control[disabled],
1722 .form-control[readonly],
1722 .form-control[readonly],
1723 fieldset[disabled] .form-control {
1723 fieldset[disabled] .form-control {
1724 cursor: not-allowed;
1724 cursor: not-allowed;
1725 background-color: #eeeeee;
1725 background-color: #eeeeee;
1726 opacity: 1;
1726 opacity: 1;
1727 }
1727 }
1728 textarea.form-control {
1728 textarea.form-control {
1729 height: auto;
1729 height: auto;
1730 }
1730 }
1731 input[type="search"] {
1731 input[type="search"] {
1732 -webkit-appearance: none;
1732 -webkit-appearance: none;
1733 }
1733 }
1734 input[type="date"] {
1734 input[type="date"] {
1735 line-height: 32px;
1735 line-height: 32px;
1736 }
1736 }
1737 .form-group {
1737 .form-group {
1738 margin-bottom: 15px;
1738 margin-bottom: 15px;
1739 }
1739 }
1740 .radio,
1740 .radio,
1741 .checkbox {
1741 .checkbox {
1742 display: block;
1742 display: block;
1743 min-height: 18px;
1743 min-height: 18px;
1744 margin-top: 10px;
1744 margin-top: 10px;
1745 margin-bottom: 10px;
1745 margin-bottom: 10px;
1746 padding-left: 20px;
1746 padding-left: 20px;
1747 }
1747 }
1748 .radio label,
1748 .radio label,
1749 .checkbox label {
1749 .checkbox label {
1750 display: inline;
1750 display: inline;
1751 font-weight: normal;
1751 font-weight: normal;
1752 cursor: pointer;
1752 cursor: pointer;
1753 }
1753 }
1754 .radio input[type="radio"],
1754 .radio input[type="radio"],
1755 .radio-inline input[type="radio"],
1755 .radio-inline input[type="radio"],
1756 .checkbox input[type="checkbox"],
1756 .checkbox input[type="checkbox"],
1757 .checkbox-inline input[type="checkbox"] {
1757 .checkbox-inline input[type="checkbox"] {
1758 float: left;
1758 float: left;
1759 margin-left: -20px;
1759 margin-left: -20px;
1760 }
1760 }
1761 .radio + .radio,
1761 .radio + .radio,
1762 .checkbox + .checkbox {
1762 .checkbox + .checkbox {
1763 margin-top: -5px;
1763 margin-top: -5px;
1764 }
1764 }
1765 .radio-inline,
1765 .radio-inline,
1766 .checkbox-inline {
1766 .checkbox-inline {
1767 display: inline-block;
1767 display: inline-block;
1768 padding-left: 20px;
1768 padding-left: 20px;
1769 margin-bottom: 0;
1769 margin-bottom: 0;
1770 vertical-align: middle;
1770 vertical-align: middle;
1771 font-weight: normal;
1771 font-weight: normal;
1772 cursor: pointer;
1772 cursor: pointer;
1773 }
1773 }
1774 .radio-inline + .radio-inline,
1774 .radio-inline + .radio-inline,
1775 .checkbox-inline + .checkbox-inline {
1775 .checkbox-inline + .checkbox-inline {
1776 margin-top: 0;
1776 margin-top: 0;
1777 margin-left: 10px;
1777 margin-left: 10px;
1778 }
1778 }
1779 input[type="radio"][disabled],
1779 input[type="radio"][disabled],
1780 input[type="checkbox"][disabled],
1780 input[type="checkbox"][disabled],
1781 .radio[disabled],
1781 .radio[disabled],
1782 .radio-inline[disabled],
1782 .radio-inline[disabled],
1783 .checkbox[disabled],
1783 .checkbox[disabled],
1784 .checkbox-inline[disabled],
1784 .checkbox-inline[disabled],
1785 fieldset[disabled] input[type="radio"],
1785 fieldset[disabled] input[type="radio"],
1786 fieldset[disabled] input[type="checkbox"],
1786 fieldset[disabled] input[type="checkbox"],
1787 fieldset[disabled] .radio,
1787 fieldset[disabled] .radio,
1788 fieldset[disabled] .radio-inline,
1788 fieldset[disabled] .radio-inline,
1789 fieldset[disabled] .checkbox,
1789 fieldset[disabled] .checkbox,
1790 fieldset[disabled] .checkbox-inline {
1790 fieldset[disabled] .checkbox-inline {
1791 cursor: not-allowed;
1791 cursor: not-allowed;
1792 }
1792 }
1793 .input-sm {
1793 .input-sm {
1794 height: 30px;
1794 height: 30px;
1795 padding: 5px 10px;
1795 padding: 5px 10px;
1796 font-size: 12px;
1796 font-size: 12px;
1797 line-height: 1.5;
1797 line-height: 1.5;
1798 border-radius: 3px;
1798 border-radius: 2px;
1799 }
1799 }
1800 select.input-sm {
1800 select.input-sm {
1801 height: 30px;
1801 height: 30px;
1802 line-height: 30px;
1802 line-height: 30px;
1803 }
1803 }
1804 textarea.input-sm,
1804 textarea.input-sm,
1805 select[multiple].input-sm {
1805 select[multiple].input-sm {
1806 height: auto;
1806 height: auto;
1807 }
1807 }
1808 .input-lg {
1808 .input-lg {
1809 height: 45px;
1809 height: 45px;
1810 padding: 10px 16px;
1810 padding: 10px 16px;
1811 font-size: 17px;
1811 font-size: 17px;
1812 line-height: 1.33;
1812 line-height: 1.33;
1813 border-radius: 6px;
1813 border-radius: 6px;
1814 }
1814 }
1815 select.input-lg {
1815 select.input-lg {
1816 height: 45px;
1816 height: 45px;
1817 line-height: 45px;
1817 line-height: 45px;
1818 }
1818 }
1819 textarea.input-lg,
1819 textarea.input-lg,
1820 select[multiple].input-lg {
1820 select[multiple].input-lg {
1821 height: auto;
1821 height: auto;
1822 }
1822 }
1823 .has-feedback {
1823 .has-feedback {
1824 position: relative;
1824 position: relative;
1825 }
1825 }
1826 .has-feedback .form-control {
1826 .has-feedback .form-control {
1827 padding-right: 40px;
1827 padding-right: 40px;
1828 }
1828 }
1829 .has-feedback .form-control-feedback {
1829 .has-feedback .form-control-feedback {
1830 position: absolute;
1830 position: absolute;
1831 top: 23px;
1831 top: 23px;
1832 right: 0;
1832 right: 0;
1833 display: block;
1833 display: block;
1834 width: 32px;
1834 width: 32px;
1835 height: 32px;
1835 height: 32px;
1836 line-height: 32px;
1836 line-height: 32px;
1837 text-align: center;
1837 text-align: center;
1838 }
1838 }
1839 .has-success .help-block,
1839 .has-success .help-block,
1840 .has-success .control-label,
1840 .has-success .control-label,
1841 .has-success .radio,
1841 .has-success .radio,
1842 .has-success .checkbox,
1842 .has-success .checkbox,
1843 .has-success .radio-inline,
1843 .has-success .radio-inline,
1844 .has-success .checkbox-inline {
1844 .has-success .checkbox-inline {
1845 color: #3c763d;
1845 color: #3c763d;
1846 }
1846 }
1847 .has-success .form-control {
1847 .has-success .form-control {
1848 border-color: #3c763d;
1848 border-color: #3c763d;
1849 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1849 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1850 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1850 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1851 }
1851 }
1852 .has-success .form-control:focus {
1852 .has-success .form-control:focus {
1853 border-color: #2b542c;
1853 border-color: #2b542c;
1854 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1854 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1855 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1855 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1856 }
1856 }
1857 .has-success .input-group-addon {
1857 .has-success .input-group-addon {
1858 color: #3c763d;
1858 color: #3c763d;
1859 border-color: #3c763d;
1859 border-color: #3c763d;
1860 background-color: #dff0d8;
1860 background-color: #dff0d8;
1861 }
1861 }
1862 .has-success .form-control-feedback {
1862 .has-success .form-control-feedback {
1863 color: #3c763d;
1863 color: #3c763d;
1864 }
1864 }
1865 .has-warning .help-block,
1865 .has-warning .help-block,
1866 .has-warning .control-label,
1866 .has-warning .control-label,
1867 .has-warning .radio,
1867 .has-warning .radio,
1868 .has-warning .checkbox,
1868 .has-warning .checkbox,
1869 .has-warning .radio-inline,
1869 .has-warning .radio-inline,
1870 .has-warning .checkbox-inline {
1870 .has-warning .checkbox-inline {
1871 color: #8a6d3b;
1871 color: #8a6d3b;
1872 }
1872 }
1873 .has-warning .form-control {
1873 .has-warning .form-control {
1874 border-color: #8a6d3b;
1874 border-color: #8a6d3b;
1875 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1875 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1876 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1876 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1877 }
1877 }
1878 .has-warning .form-control:focus {
1878 .has-warning .form-control:focus {
1879 border-color: #66512c;
1879 border-color: #66512c;
1880 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1880 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1881 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1881 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1882 }
1882 }
1883 .has-warning .input-group-addon {
1883 .has-warning .input-group-addon {
1884 color: #8a6d3b;
1884 color: #8a6d3b;
1885 border-color: #8a6d3b;
1885 border-color: #8a6d3b;
1886 background-color: #fcf8e3;
1886 background-color: #fcf8e3;
1887 }
1887 }
1888 .has-warning .form-control-feedback {
1888 .has-warning .form-control-feedback {
1889 color: #8a6d3b;
1889 color: #8a6d3b;
1890 }
1890 }
1891 .has-error .help-block,
1891 .has-error .help-block,
1892 .has-error .control-label,
1892 .has-error .control-label,
1893 .has-error .radio,
1893 .has-error .radio,
1894 .has-error .checkbox,
1894 .has-error .checkbox,
1895 .has-error .radio-inline,
1895 .has-error .radio-inline,
1896 .has-error .checkbox-inline {
1896 .has-error .checkbox-inline {
1897 color: #a94442;
1897 color: #a94442;
1898 }
1898 }
1899 .has-error .form-control {
1899 .has-error .form-control {
1900 border-color: #a94442;
1900 border-color: #a94442;
1901 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1901 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1902 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1902 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1903 }
1903 }
1904 .has-error .form-control:focus {
1904 .has-error .form-control:focus {
1905 border-color: #843534;
1905 border-color: #843534;
1906 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1906 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1907 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1907 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1908 }
1908 }
1909 .has-error .input-group-addon {
1909 .has-error .input-group-addon {
1910 color: #a94442;
1910 color: #a94442;
1911 border-color: #a94442;
1911 border-color: #a94442;
1912 background-color: #f2dede;
1912 background-color: #f2dede;
1913 }
1913 }
1914 .has-error .form-control-feedback {
1914 .has-error .form-control-feedback {
1915 color: #a94442;
1915 color: #a94442;
1916 }
1916 }
1917 .form-control-static {
1917 .form-control-static {
1918 margin-bottom: 0;
1918 margin-bottom: 0;
1919 }
1919 }
1920 .help-block {
1920 .help-block {
1921 display: block;
1921 display: block;
1922 margin-top: 5px;
1922 margin-top: 5px;
1923 margin-bottom: 10px;
1923 margin-bottom: 10px;
1924 color: #404040;
1924 color: #404040;
1925 }
1925 }
1926 @media (min-width: 768px) {
1926 @media (min-width: 768px) {
1927 .form-inline .form-group {
1927 .form-inline .form-group {
1928 display: inline-block;
1928 display: inline-block;
1929 margin-bottom: 0;
1929 margin-bottom: 0;
1930 vertical-align: middle;
1930 vertical-align: middle;
1931 }
1931 }
1932 .form-inline .form-control {
1932 .form-inline .form-control {
1933 display: inline-block;
1933 display: inline-block;
1934 width: auto;
1934 width: auto;
1935 vertical-align: middle;
1935 vertical-align: middle;
1936 }
1936 }
1937 .form-inline .input-group > .form-control {
1937 .form-inline .input-group > .form-control {
1938 width: 100%;
1938 width: 100%;
1939 }
1939 }
1940 .form-inline .control-label {
1940 .form-inline .control-label {
1941 margin-bottom: 0;
1941 margin-bottom: 0;
1942 vertical-align: middle;
1942 vertical-align: middle;
1943 }
1943 }
1944 .form-inline .radio,
1944 .form-inline .radio,
1945 .form-inline .checkbox {
1945 .form-inline .checkbox {
1946 display: inline-block;
1946 display: inline-block;
1947 margin-top: 0;
1947 margin-top: 0;
1948 margin-bottom: 0;
1948 margin-bottom: 0;
1949 padding-left: 0;
1949 padding-left: 0;
1950 vertical-align: middle;
1950 vertical-align: middle;
1951 }
1951 }
1952 .form-inline .radio input[type="radio"],
1952 .form-inline .radio input[type="radio"],
1953 .form-inline .checkbox input[type="checkbox"] {
1953 .form-inline .checkbox input[type="checkbox"] {
1954 float: none;
1954 float: none;
1955 margin-left: 0;
1955 margin-left: 0;
1956 }
1956 }
1957 .form-inline .has-feedback .form-control-feedback {
1957 .form-inline .has-feedback .form-control-feedback {
1958 top: 0;
1958 top: 0;
1959 }
1959 }
1960 }
1960 }
1961 .form-horizontal .control-label,
1961 .form-horizontal .control-label,
1962 .form-horizontal .radio,
1962 .form-horizontal .radio,
1963 .form-horizontal .checkbox,
1963 .form-horizontal .checkbox,
1964 .form-horizontal .radio-inline,
1964 .form-horizontal .radio-inline,
1965 .form-horizontal .checkbox-inline {
1965 .form-horizontal .checkbox-inline {
1966 margin-top: 0;
1966 margin-top: 0;
1967 margin-bottom: 0;
1967 margin-bottom: 0;
1968 padding-top: 7px;
1968 padding-top: 7px;
1969 }
1969 }
1970 .form-horizontal .radio,
1970 .form-horizontal .radio,
1971 .form-horizontal .checkbox {
1971 .form-horizontal .checkbox {
1972 min-height: 25px;
1972 min-height: 25px;
1973 }
1973 }
1974 .form-horizontal .form-group {
1974 .form-horizontal .form-group {
1975 margin-left: -15px;
1975 margin-left: 0px;
1976 margin-right: -15px;
1976 margin-right: 0px;
1977 }
1977 }
1978 .form-horizontal .form-control-static {
1978 .form-horizontal .form-control-static {
1979 padding-top: 7px;
1979 padding-top: 7px;
1980 }
1980 }
1981 @media (min-width: 768px) {
1981 @media (min-width: 768px) {
1982 .form-horizontal .control-label {
1982 .form-horizontal .control-label {
1983 text-align: right;
1983 text-align: right;
1984 }
1984 }
1985 }
1985 }
1986 .form-horizontal .has-feedback .form-control-feedback {
1986 .form-horizontal .has-feedback .form-control-feedback {
1987 top: 0;
1987 top: 0;
1988 right: 15px;
1988 right: 0px;
1989 }
1989 }
1990 .btn {
1990 .btn {
1991 display: inline-block;
1991 display: inline-block;
1992 margin-bottom: 0;
1992 margin-bottom: 0;
1993 font-weight: normal;
1993 font-weight: normal;
1994 text-align: center;
1994 text-align: center;
1995 vertical-align: middle;
1995 vertical-align: middle;
1996 cursor: pointer;
1996 cursor: pointer;
1997 background-image: none;
1997 background-image: none;
1998 border: 1px solid transparent;
1998 border: 1px solid transparent;
1999 white-space: nowrap;
1999 white-space: nowrap;
2000 padding: 6px 12px;
2000 padding: 6px 12px;
2001 font-size: 13px;
2001 font-size: 13px;
2002 line-height: 1.42857143;
2002 line-height: 1.42857143;
2003 border-radius: 4px;
2003 border-radius: 2px;
2004 -webkit-user-select: none;
2004 -webkit-user-select: none;
2005 -moz-user-select: none;
2005 -moz-user-select: none;
2006 -ms-user-select: none;
2006 -ms-user-select: none;
2007 user-select: none;
2007 user-select: none;
2008 }
2008 }
2009 .btn:focus,
2009 .btn:focus,
2010 .btn:active:focus,
2010 .btn:active:focus,
2011 .btn.active:focus {
2011 .btn.active:focus {
2012 outline: thin dotted;
2012 outline: thin dotted;
2013 outline: 5px auto -webkit-focus-ring-color;
2013 outline: 5px auto -webkit-focus-ring-color;
2014 outline-offset: -2px;
2014 outline-offset: -2px;
2015 }
2015 }
2016 .btn:hover,
2016 .btn:hover,
2017 .btn:focus {
2017 .btn:focus {
2018 color: #333333;
2018 color: #333333;
2019 text-decoration: none;
2019 text-decoration: none;
2020 }
2020 }
2021 .btn:active,
2021 .btn:active,
2022 .btn.active {
2022 .btn.active {
2023 outline: 0;
2023 outline: 0;
2024 background-image: none;
2024 background-image: none;
2025 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2025 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2026 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2026 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2027 }
2027 }
2028 .btn.disabled,
2028 .btn.disabled,
2029 .btn[disabled],
2029 .btn[disabled],
2030 fieldset[disabled] .btn {
2030 fieldset[disabled] .btn {
2031 cursor: not-allowed;
2031 cursor: not-allowed;
2032 pointer-events: none;
2032 pointer-events: none;
2033 opacity: 0.65;
2033 opacity: 0.65;
2034 filter: alpha(opacity=65);
2034 filter: alpha(opacity=65);
2035 -webkit-box-shadow: none;
2035 -webkit-box-shadow: none;
2036 box-shadow: none;
2036 box-shadow: none;
2037 }
2037 }
2038 .btn-default {
2038 .btn-default {
2039 color: #333333;
2039 color: #333333;
2040 background-color: #ffffff;
2040 background-color: #ffffff;
2041 border-color: #cccccc;
2041 border-color: #cccccc;
2042 }
2042 }
2043 .btn-default:hover,
2043 .btn-default:hover,
2044 .btn-default:focus,
2044 .btn-default:focus,
2045 .btn-default:active,
2045 .btn-default:active,
2046 .btn-default.active,
2046 .btn-default.active,
2047 .open .dropdown-toggle.btn-default {
2047 .open .dropdown-toggle.btn-default {
2048 color: #333333;
2048 color: #333333;
2049 background-color: #ebebeb;
2049 background-color: #ebebeb;
2050 border-color: #adadad;
2050 border-color: #adadad;
2051 }
2051 }
2052 .btn-default:active,
2052 .btn-default:active,
2053 .btn-default.active,
2053 .btn-default.active,
2054 .open .dropdown-toggle.btn-default {
2054 .open .dropdown-toggle.btn-default {
2055 background-image: none;
2055 background-image: none;
2056 }
2056 }
2057 .btn-default.disabled,
2057 .btn-default.disabled,
2058 .btn-default[disabled],
2058 .btn-default[disabled],
2059 fieldset[disabled] .btn-default,
2059 fieldset[disabled] .btn-default,
2060 .btn-default.disabled:hover,
2060 .btn-default.disabled:hover,
2061 .btn-default[disabled]:hover,
2061 .btn-default[disabled]:hover,
2062 fieldset[disabled] .btn-default:hover,
2062 fieldset[disabled] .btn-default:hover,
2063 .btn-default.disabled:focus,
2063 .btn-default.disabled:focus,
2064 .btn-default[disabled]:focus,
2064 .btn-default[disabled]:focus,
2065 fieldset[disabled] .btn-default:focus,
2065 fieldset[disabled] .btn-default:focus,
2066 .btn-default.disabled:active,
2066 .btn-default.disabled:active,
2067 .btn-default[disabled]:active,
2067 .btn-default[disabled]:active,
2068 fieldset[disabled] .btn-default:active,
2068 fieldset[disabled] .btn-default:active,
2069 .btn-default.disabled.active,
2069 .btn-default.disabled.active,
2070 .btn-default[disabled].active,
2070 .btn-default[disabled].active,
2071 fieldset[disabled] .btn-default.active {
2071 fieldset[disabled] .btn-default.active {
2072 background-color: #ffffff;
2072 background-color: #ffffff;
2073 border-color: #cccccc;
2073 border-color: #cccccc;
2074 }
2074 }
2075 .btn-default .badge {
2075 .btn-default .badge {
2076 color: #ffffff;
2076 color: #ffffff;
2077 background-color: #333333;
2077 background-color: #333333;
2078 }
2078 }
2079 .btn-primary {
2079 .btn-primary {
2080 color: #ffffff;
2080 color: #ffffff;
2081 background-color: #428bca;
2081 background-color: #428bca;
2082 border-color: #357ebd;
2082 border-color: #357ebd;
2083 }
2083 }
2084 .btn-primary:hover,
2084 .btn-primary:hover,
2085 .btn-primary:focus,
2085 .btn-primary:focus,
2086 .btn-primary:active,
2086 .btn-primary:active,
2087 .btn-primary.active,
2087 .btn-primary.active,
2088 .open .dropdown-toggle.btn-primary {
2088 .open .dropdown-toggle.btn-primary {
2089 color: #ffffff;
2089 color: #ffffff;
2090 background-color: #3276b1;
2090 background-color: #3276b1;
2091 border-color: #285e8e;
2091 border-color: #285e8e;
2092 }
2092 }
2093 .btn-primary:active,
2093 .btn-primary:active,
2094 .btn-primary.active,
2094 .btn-primary.active,
2095 .open .dropdown-toggle.btn-primary {
2095 .open .dropdown-toggle.btn-primary {
2096 background-image: none;
2096 background-image: none;
2097 }
2097 }
2098 .btn-primary.disabled,
2098 .btn-primary.disabled,
2099 .btn-primary[disabled],
2099 .btn-primary[disabled],
2100 fieldset[disabled] .btn-primary,
2100 fieldset[disabled] .btn-primary,
2101 .btn-primary.disabled:hover,
2101 .btn-primary.disabled:hover,
2102 .btn-primary[disabled]:hover,
2102 .btn-primary[disabled]:hover,
2103 fieldset[disabled] .btn-primary:hover,
2103 fieldset[disabled] .btn-primary:hover,
2104 .btn-primary.disabled:focus,
2104 .btn-primary.disabled:focus,
2105 .btn-primary[disabled]:focus,
2105 .btn-primary[disabled]:focus,
2106 fieldset[disabled] .btn-primary:focus,
2106 fieldset[disabled] .btn-primary:focus,
2107 .btn-primary.disabled:active,
2107 .btn-primary.disabled:active,
2108 .btn-primary[disabled]:active,
2108 .btn-primary[disabled]:active,
2109 fieldset[disabled] .btn-primary:active,
2109 fieldset[disabled] .btn-primary:active,
2110 .btn-primary.disabled.active,
2110 .btn-primary.disabled.active,
2111 .btn-primary[disabled].active,
2111 .btn-primary[disabled].active,
2112 fieldset[disabled] .btn-primary.active {
2112 fieldset[disabled] .btn-primary.active {
2113 background-color: #428bca;
2113 background-color: #428bca;
2114 border-color: #357ebd;
2114 border-color: #357ebd;
2115 }
2115 }
2116 .btn-primary .badge {
2116 .btn-primary .badge {
2117 color: #428bca;
2117 color: #428bca;
2118 background-color: #ffffff;
2118 background-color: #ffffff;
2119 }
2119 }
2120 .btn-success {
2120 .btn-success {
2121 color: #ffffff;
2121 color: #ffffff;
2122 background-color: #5cb85c;
2122 background-color: #5cb85c;
2123 border-color: #4cae4c;
2123 border-color: #4cae4c;
2124 }
2124 }
2125 .btn-success:hover,
2125 .btn-success:hover,
2126 .btn-success:focus,
2126 .btn-success:focus,
2127 .btn-success:active,
2127 .btn-success:active,
2128 .btn-success.active,
2128 .btn-success.active,
2129 .open .dropdown-toggle.btn-success {
2129 .open .dropdown-toggle.btn-success {
2130 color: #ffffff;
2130 color: #ffffff;
2131 background-color: #47a447;
2131 background-color: #47a447;
2132 border-color: #398439;
2132 border-color: #398439;
2133 }
2133 }
2134 .btn-success:active,
2134 .btn-success:active,
2135 .btn-success.active,
2135 .btn-success.active,
2136 .open .dropdown-toggle.btn-success {
2136 .open .dropdown-toggle.btn-success {
2137 background-image: none;
2137 background-image: none;
2138 }
2138 }
2139 .btn-success.disabled,
2139 .btn-success.disabled,
2140 .btn-success[disabled],
2140 .btn-success[disabled],
2141 fieldset[disabled] .btn-success,
2141 fieldset[disabled] .btn-success,
2142 .btn-success.disabled:hover,
2142 .btn-success.disabled:hover,
2143 .btn-success[disabled]:hover,
2143 .btn-success[disabled]:hover,
2144 fieldset[disabled] .btn-success:hover,
2144 fieldset[disabled] .btn-success:hover,
2145 .btn-success.disabled:focus,
2145 .btn-success.disabled:focus,
2146 .btn-success[disabled]:focus,
2146 .btn-success[disabled]:focus,
2147 fieldset[disabled] .btn-success:focus,
2147 fieldset[disabled] .btn-success:focus,
2148 .btn-success.disabled:active,
2148 .btn-success.disabled:active,
2149 .btn-success[disabled]:active,
2149 .btn-success[disabled]:active,
2150 fieldset[disabled] .btn-success:active,
2150 fieldset[disabled] .btn-success:active,
2151 .btn-success.disabled.active,
2151 .btn-success.disabled.active,
2152 .btn-success[disabled].active,
2152 .btn-success[disabled].active,
2153 fieldset[disabled] .btn-success.active {
2153 fieldset[disabled] .btn-success.active {
2154 background-color: #5cb85c;
2154 background-color: #5cb85c;
2155 border-color: #4cae4c;
2155 border-color: #4cae4c;
2156 }
2156 }
2157 .btn-success .badge {
2157 .btn-success .badge {
2158 color: #5cb85c;
2158 color: #5cb85c;
2159 background-color: #ffffff;
2159 background-color: #ffffff;
2160 }
2160 }
2161 .btn-info {
2161 .btn-info {
2162 color: #ffffff;
2162 color: #ffffff;
2163 background-color: #5bc0de;
2163 background-color: #5bc0de;
2164 border-color: #46b8da;
2164 border-color: #46b8da;
2165 }
2165 }
2166 .btn-info:hover,
2166 .btn-info:hover,
2167 .btn-info:focus,
2167 .btn-info:focus,
2168 .btn-info:active,
2168 .btn-info:active,
2169 .btn-info.active,
2169 .btn-info.active,
2170 .open .dropdown-toggle.btn-info {
2170 .open .dropdown-toggle.btn-info {
2171 color: #ffffff;
2171 color: #ffffff;
2172 background-color: #39b3d7;
2172 background-color: #39b3d7;
2173 border-color: #269abc;
2173 border-color: #269abc;
2174 }
2174 }
2175 .btn-info:active,
2175 .btn-info:active,
2176 .btn-info.active,
2176 .btn-info.active,
2177 .open .dropdown-toggle.btn-info {
2177 .open .dropdown-toggle.btn-info {
2178 background-image: none;
2178 background-image: none;
2179 }
2179 }
2180 .btn-info.disabled,
2180 .btn-info.disabled,
2181 .btn-info[disabled],
2181 .btn-info[disabled],
2182 fieldset[disabled] .btn-info,
2182 fieldset[disabled] .btn-info,
2183 .btn-info.disabled:hover,
2183 .btn-info.disabled:hover,
2184 .btn-info[disabled]:hover,
2184 .btn-info[disabled]:hover,
2185 fieldset[disabled] .btn-info:hover,
2185 fieldset[disabled] .btn-info:hover,
2186 .btn-info.disabled:focus,
2186 .btn-info.disabled:focus,
2187 .btn-info[disabled]:focus,
2187 .btn-info[disabled]:focus,
2188 fieldset[disabled] .btn-info:focus,
2188 fieldset[disabled] .btn-info:focus,
2189 .btn-info.disabled:active,
2189 .btn-info.disabled:active,
2190 .btn-info[disabled]:active,
2190 .btn-info[disabled]:active,
2191 fieldset[disabled] .btn-info:active,
2191 fieldset[disabled] .btn-info:active,
2192 .btn-info.disabled.active,
2192 .btn-info.disabled.active,
2193 .btn-info[disabled].active,
2193 .btn-info[disabled].active,
2194 fieldset[disabled] .btn-info.active {
2194 fieldset[disabled] .btn-info.active {
2195 background-color: #5bc0de;
2195 background-color: #5bc0de;
2196 border-color: #46b8da;
2196 border-color: #46b8da;
2197 }
2197 }
2198 .btn-info .badge {
2198 .btn-info .badge {
2199 color: #5bc0de;
2199 color: #5bc0de;
2200 background-color: #ffffff;
2200 background-color: #ffffff;
2201 }
2201 }
2202 .btn-warning {
2202 .btn-warning {
2203 color: #ffffff;
2203 color: #ffffff;
2204 background-color: #f0ad4e;
2204 background-color: #f0ad4e;
2205 border-color: #eea236;
2205 border-color: #eea236;
2206 }
2206 }
2207 .btn-warning:hover,
2207 .btn-warning:hover,
2208 .btn-warning:focus,
2208 .btn-warning:focus,
2209 .btn-warning:active,
2209 .btn-warning:active,
2210 .btn-warning.active,
2210 .btn-warning.active,
2211 .open .dropdown-toggle.btn-warning {
2211 .open .dropdown-toggle.btn-warning {
2212 color: #ffffff;
2212 color: #ffffff;
2213 background-color: #ed9c28;
2213 background-color: #ed9c28;
2214 border-color: #d58512;
2214 border-color: #d58512;
2215 }
2215 }
2216 .btn-warning:active,
2216 .btn-warning:active,
2217 .btn-warning.active,
2217 .btn-warning.active,
2218 .open .dropdown-toggle.btn-warning {
2218 .open .dropdown-toggle.btn-warning {
2219 background-image: none;
2219 background-image: none;
2220 }
2220 }
2221 .btn-warning.disabled,
2221 .btn-warning.disabled,
2222 .btn-warning[disabled],
2222 .btn-warning[disabled],
2223 fieldset[disabled] .btn-warning,
2223 fieldset[disabled] .btn-warning,
2224 .btn-warning.disabled:hover,
2224 .btn-warning.disabled:hover,
2225 .btn-warning[disabled]:hover,
2225 .btn-warning[disabled]:hover,
2226 fieldset[disabled] .btn-warning:hover,
2226 fieldset[disabled] .btn-warning:hover,
2227 .btn-warning.disabled:focus,
2227 .btn-warning.disabled:focus,
2228 .btn-warning[disabled]:focus,
2228 .btn-warning[disabled]:focus,
2229 fieldset[disabled] .btn-warning:focus,
2229 fieldset[disabled] .btn-warning:focus,
2230 .btn-warning.disabled:active,
2230 .btn-warning.disabled:active,
2231 .btn-warning[disabled]:active,
2231 .btn-warning[disabled]:active,
2232 fieldset[disabled] .btn-warning:active,
2232 fieldset[disabled] .btn-warning:active,
2233 .btn-warning.disabled.active,
2233 .btn-warning.disabled.active,
2234 .btn-warning[disabled].active,
2234 .btn-warning[disabled].active,
2235 fieldset[disabled] .btn-warning.active {
2235 fieldset[disabled] .btn-warning.active {
2236 background-color: #f0ad4e;
2236 background-color: #f0ad4e;
2237 border-color: #eea236;
2237 border-color: #eea236;
2238 }
2238 }
2239 .btn-warning .badge {
2239 .btn-warning .badge {
2240 color: #f0ad4e;
2240 color: #f0ad4e;
2241 background-color: #ffffff;
2241 background-color: #ffffff;
2242 }
2242 }
2243 .btn-danger {
2243 .btn-danger {
2244 color: #ffffff;
2244 color: #ffffff;
2245 background-color: #d9534f;
2245 background-color: #d9534f;
2246 border-color: #d43f3a;
2246 border-color: #d43f3a;
2247 }
2247 }
2248 .btn-danger:hover,
2248 .btn-danger:hover,
2249 .btn-danger:focus,
2249 .btn-danger:focus,
2250 .btn-danger:active,
2250 .btn-danger:active,
2251 .btn-danger.active,
2251 .btn-danger.active,
2252 .open .dropdown-toggle.btn-danger {
2252 .open .dropdown-toggle.btn-danger {
2253 color: #ffffff;
2253 color: #ffffff;
2254 background-color: #d2322d;
2254 background-color: #d2322d;
2255 border-color: #ac2925;
2255 border-color: #ac2925;
2256 }
2256 }
2257 .btn-danger:active,
2257 .btn-danger:active,
2258 .btn-danger.active,
2258 .btn-danger.active,
2259 .open .dropdown-toggle.btn-danger {
2259 .open .dropdown-toggle.btn-danger {
2260 background-image: none;
2260 background-image: none;
2261 }
2261 }
2262 .btn-danger.disabled,
2262 .btn-danger.disabled,
2263 .btn-danger[disabled],
2263 .btn-danger[disabled],
2264 fieldset[disabled] .btn-danger,
2264 fieldset[disabled] .btn-danger,
2265 .btn-danger.disabled:hover,
2265 .btn-danger.disabled:hover,
2266 .btn-danger[disabled]:hover,
2266 .btn-danger[disabled]:hover,
2267 fieldset[disabled] .btn-danger:hover,
2267 fieldset[disabled] .btn-danger:hover,
2268 .btn-danger.disabled:focus,
2268 .btn-danger.disabled:focus,
2269 .btn-danger[disabled]:focus,
2269 .btn-danger[disabled]:focus,
2270 fieldset[disabled] .btn-danger:focus,
2270 fieldset[disabled] .btn-danger:focus,
2271 .btn-danger.disabled:active,
2271 .btn-danger.disabled:active,
2272 .btn-danger[disabled]:active,
2272 .btn-danger[disabled]:active,
2273 fieldset[disabled] .btn-danger:active,
2273 fieldset[disabled] .btn-danger:active,
2274 .btn-danger.disabled.active,
2274 .btn-danger.disabled.active,
2275 .btn-danger[disabled].active,
2275 .btn-danger[disabled].active,
2276 fieldset[disabled] .btn-danger.active {
2276 fieldset[disabled] .btn-danger.active {
2277 background-color: #d9534f;
2277 background-color: #d9534f;
2278 border-color: #d43f3a;
2278 border-color: #d43f3a;
2279 }
2279 }
2280 .btn-danger .badge {
2280 .btn-danger .badge {
2281 color: #d9534f;
2281 color: #d9534f;
2282 background-color: #ffffff;
2282 background-color: #ffffff;
2283 }
2283 }
2284 .btn-link {
2284 .btn-link {
2285 color: #428bca;
2285 color: #428bca;
2286 font-weight: normal;
2286 font-weight: normal;
2287 cursor: pointer;
2287 cursor: pointer;
2288 border-radius: 0;
2288 border-radius: 0;
2289 }
2289 }
2290 .btn-link,
2290 .btn-link,
2291 .btn-link:active,
2291 .btn-link:active,
2292 .btn-link[disabled],
2292 .btn-link[disabled],
2293 fieldset[disabled] .btn-link {
2293 fieldset[disabled] .btn-link {
2294 background-color: transparent;
2294 background-color: transparent;
2295 -webkit-box-shadow: none;
2295 -webkit-box-shadow: none;
2296 box-shadow: none;
2296 box-shadow: none;
2297 }
2297 }
2298 .btn-link,
2298 .btn-link,
2299 .btn-link:hover,
2299 .btn-link:hover,
2300 .btn-link:focus,
2300 .btn-link:focus,
2301 .btn-link:active {
2301 .btn-link:active {
2302 border-color: transparent;
2302 border-color: transparent;
2303 }
2303 }
2304 .btn-link:hover,
2304 .btn-link:hover,
2305 .btn-link:focus {
2305 .btn-link:focus {
2306 color: #2a6496;
2306 color: #2a6496;
2307 text-decoration: underline;
2307 text-decoration: underline;
2308 background-color: transparent;
2308 background-color: transparent;
2309 }
2309 }
2310 .btn-link[disabled]:hover,
2310 .btn-link[disabled]:hover,
2311 fieldset[disabled] .btn-link:hover,
2311 fieldset[disabled] .btn-link:hover,
2312 .btn-link[disabled]:focus,
2312 .btn-link[disabled]:focus,
2313 fieldset[disabled] .btn-link:focus {
2313 fieldset[disabled] .btn-link:focus {
2314 color: #999999;
2314 color: #999999;
2315 text-decoration: none;
2315 text-decoration: none;
2316 }
2316 }
2317 .btn-lg,
2317 .btn-lg,
2318 .btn-group-lg > .btn {
2318 .btn-group-lg > .btn {
2319 padding: 10px 16px;
2319 padding: 10px 16px;
2320 font-size: 17px;
2320 font-size: 17px;
2321 line-height: 1.33;
2321 line-height: 1.33;
2322 border-radius: 6px;
2322 border-radius: 6px;
2323 }
2323 }
2324 .btn-sm,
2324 .btn-sm,
2325 .btn-group-sm > .btn {
2325 .btn-group-sm > .btn {
2326 padding: 5px 10px;
2326 padding: 5px 10px;
2327 font-size: 12px;
2327 font-size: 12px;
2328 line-height: 1.5;
2328 line-height: 1.5;
2329 border-radius: 3px;
2329 border-radius: 2px;
2330 }
2330 }
2331 .btn-xs,
2331 .btn-xs,
2332 .btn-group-xs > .btn {
2332 .btn-group-xs > .btn {
2333 padding: 1px 5px;
2333 padding: 1px 5px;
2334 font-size: 12px;
2334 font-size: 12px;
2335 line-height: 1.5;
2335 line-height: 1.5;
2336 border-radius: 3px;
2336 border-radius: 2px;
2337 }
2337 }
2338 .btn-block {
2338 .btn-block {
2339 display: block;
2339 display: block;
2340 width: 100%;
2340 width: 100%;
2341 padding-left: 0;
2341 padding-left: 0;
2342 padding-right: 0;
2342 padding-right: 0;
2343 }
2343 }
2344 .btn-block + .btn-block {
2344 .btn-block + .btn-block {
2345 margin-top: 5px;
2345 margin-top: 5px;
2346 }
2346 }
2347 input[type="submit"].btn-block,
2347 input[type="submit"].btn-block,
2348 input[type="reset"].btn-block,
2348 input[type="reset"].btn-block,
2349 input[type="button"].btn-block {
2349 input[type="button"].btn-block {
2350 width: 100%;
2350 width: 100%;
2351 }
2351 }
2352 .fade {
2352 .fade {
2353 opacity: 0;
2353 opacity: 0;
2354 -webkit-transition: opacity 0.15s linear;
2354 -webkit-transition: opacity 0.15s linear;
2355 transition: opacity 0.15s linear;
2355 transition: opacity 0.15s linear;
2356 }
2356 }
2357 .fade.in {
2357 .fade.in {
2358 opacity: 1;
2358 opacity: 1;
2359 }
2359 }
2360 .collapse {
2360 .collapse {
2361 display: none;
2361 display: none;
2362 }
2362 }
2363 .collapse.in {
2363 .collapse.in {
2364 display: block;
2364 display: block;
2365 }
2365 }
2366 .collapsing {
2366 .collapsing {
2367 position: relative;
2367 position: relative;
2368 height: 0;
2368 height: 0;
2369 overflow: hidden;
2369 overflow: hidden;
2370 -webkit-transition: height 0.35s ease;
2370 -webkit-transition: height 0.35s ease;
2371 transition: height 0.35s ease;
2371 transition: height 0.35s ease;
2372 }
2372 }
2373 @font-face {
2373 @font-face {
2374 font-family: 'Glyphicons Halflings';
2374 font-family: 'Glyphicons Halflings';
2375 src: url('../fonts/glyphicons-halflings-regular.eot');
2375 src: url('../fonts/glyphicons-halflings-regular.eot');
2376 src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
2376 src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
2377 }
2377 }
2378 .glyphicon {
2378 .glyphicon {
2379 position: relative;
2379 position: relative;
2380 top: 1px;
2380 top: 1px;
2381 display: inline-block;
2381 display: inline-block;
2382 font-family: 'Glyphicons Halflings';
2382 font-family: 'Glyphicons Halflings';
2383 font-style: normal;
2383 font-style: normal;
2384 font-weight: normal;
2384 font-weight: normal;
2385 line-height: 1;
2385 line-height: 1;
2386 -webkit-font-smoothing: antialiased;
2386 -webkit-font-smoothing: antialiased;
2387 -moz-osx-font-smoothing: grayscale;
2387 -moz-osx-font-smoothing: grayscale;
2388 }
2388 }
2389 .glyphicon-asterisk:before {
2389 .glyphicon-asterisk:before {
2390 content: "\2a";
2390 content: "\2a";
2391 }
2391 }
2392 .glyphicon-plus:before {
2392 .glyphicon-plus:before {
2393 content: "\2b";
2393 content: "\2b";
2394 }
2394 }
2395 .glyphicon-euro:before {
2395 .glyphicon-euro:before {
2396 content: "\20ac";
2396 content: "\20ac";
2397 }
2397 }
2398 .glyphicon-minus:before {
2398 .glyphicon-minus:before {
2399 content: "\2212";
2399 content: "\2212";
2400 }
2400 }
2401 .glyphicon-cloud:before {
2401 .glyphicon-cloud:before {
2402 content: "\2601";
2402 content: "\2601";
2403 }
2403 }
2404 .glyphicon-envelope:before {
2404 .glyphicon-envelope:before {
2405 content: "\2709";
2405 content: "\2709";
2406 }
2406 }
2407 .glyphicon-pencil:before {
2407 .glyphicon-pencil:before {
2408 content: "\270f";
2408 content: "\270f";
2409 }
2409 }
2410 .glyphicon-glass:before {
2410 .glyphicon-glass:before {
2411 content: "\e001";
2411 content: "\e001";
2412 }
2412 }
2413 .glyphicon-music:before {
2413 .glyphicon-music:before {
2414 content: "\e002";
2414 content: "\e002";
2415 }
2415 }
2416 .glyphicon-search:before {
2416 .glyphicon-search:before {
2417 content: "\e003";
2417 content: "\e003";
2418 }
2418 }
2419 .glyphicon-heart:before {
2419 .glyphicon-heart:before {
2420 content: "\e005";
2420 content: "\e005";
2421 }
2421 }
2422 .glyphicon-star:before {
2422 .glyphicon-star:before {
2423 content: "\e006";
2423 content: "\e006";
2424 }
2424 }
2425 .glyphicon-star-empty:before {
2425 .glyphicon-star-empty:before {
2426 content: "\e007";
2426 content: "\e007";
2427 }
2427 }
2428 .glyphicon-user:before {
2428 .glyphicon-user:before {
2429 content: "\e008";
2429 content: "\e008";
2430 }
2430 }
2431 .glyphicon-film:before {
2431 .glyphicon-film:before {
2432 content: "\e009";
2432 content: "\e009";
2433 }
2433 }
2434 .glyphicon-th-large:before {
2434 .glyphicon-th-large:before {
2435 content: "\e010";
2435 content: "\e010";
2436 }
2436 }
2437 .glyphicon-th:before {
2437 .glyphicon-th:before {
2438 content: "\e011";
2438 content: "\e011";
2439 }
2439 }
2440 .glyphicon-th-list:before {
2440 .glyphicon-th-list:before {
2441 content: "\e012";
2441 content: "\e012";
2442 }
2442 }
2443 .glyphicon-ok:before {
2443 .glyphicon-ok:before {
2444 content: "\e013";
2444 content: "\e013";
2445 }
2445 }
2446 .glyphicon-remove:before {
2446 .glyphicon-remove:before {
2447 content: "\e014";
2447 content: "\e014";
2448 }
2448 }
2449 .glyphicon-zoom-in:before {
2449 .glyphicon-zoom-in:before {
2450 content: "\e015";
2450 content: "\e015";
2451 }
2451 }
2452 .glyphicon-zoom-out:before {
2452 .glyphicon-zoom-out:before {
2453 content: "\e016";
2453 content: "\e016";
2454 }
2454 }
2455 .glyphicon-off:before {
2455 .glyphicon-off:before {
2456 content: "\e017";
2456 content: "\e017";
2457 }
2457 }
2458 .glyphicon-signal:before {
2458 .glyphicon-signal:before {
2459 content: "\e018";
2459 content: "\e018";
2460 }
2460 }
2461 .glyphicon-cog:before {
2461 .glyphicon-cog:before {
2462 content: "\e019";
2462 content: "\e019";
2463 }
2463 }
2464 .glyphicon-trash:before {
2464 .glyphicon-trash:before {
2465 content: "\e020";
2465 content: "\e020";
2466 }
2466 }
2467 .glyphicon-home:before {
2467 .glyphicon-home:before {
2468 content: "\e021";
2468 content: "\e021";
2469 }
2469 }
2470 .glyphicon-file:before {
2470 .glyphicon-file:before {
2471 content: "\e022";
2471 content: "\e022";
2472 }
2472 }
2473 .glyphicon-time:before {
2473 .glyphicon-time:before {
2474 content: "\e023";
2474 content: "\e023";
2475 }
2475 }
2476 .glyphicon-road:before {
2476 .glyphicon-road:before {
2477 content: "\e024";
2477 content: "\e024";
2478 }
2478 }
2479 .glyphicon-download-alt:before {
2479 .glyphicon-download-alt:before {
2480 content: "\e025";
2480 content: "\e025";
2481 }
2481 }
2482 .glyphicon-download:before {
2482 .glyphicon-download:before {
2483 content: "\e026";
2483 content: "\e026";
2484 }
2484 }
2485 .glyphicon-upload:before {
2485 .glyphicon-upload:before {
2486 content: "\e027";
2486 content: "\e027";
2487 }
2487 }
2488 .glyphicon-inbox:before {
2488 .glyphicon-inbox:before {
2489 content: "\e028";
2489 content: "\e028";
2490 }
2490 }
2491 .glyphicon-play-circle:before {
2491 .glyphicon-play-circle:before {
2492 content: "\e029";
2492 content: "\e029";
2493 }
2493 }
2494 .glyphicon-repeat:before {
2494 .glyphicon-repeat:before {
2495 content: "\e030";
2495 content: "\e030";
2496 }
2496 }
2497 .glyphicon-refresh:before {
2497 .glyphicon-refresh:before {
2498 content: "\e031";
2498 content: "\e031";
2499 }
2499 }
2500 .glyphicon-list-alt:before {
2500 .glyphicon-list-alt:before {
2501 content: "\e032";
2501 content: "\e032";
2502 }
2502 }
2503 .glyphicon-lock:before {
2503 .glyphicon-lock:before {
2504 content: "\e033";
2504 content: "\e033";
2505 }
2505 }
2506 .glyphicon-flag:before {
2506 .glyphicon-flag:before {
2507 content: "\e034";
2507 content: "\e034";
2508 }
2508 }
2509 .glyphicon-headphones:before {
2509 .glyphicon-headphones:before {
2510 content: "\e035";
2510 content: "\e035";
2511 }
2511 }
2512 .glyphicon-volume-off:before {
2512 .glyphicon-volume-off:before {
2513 content: "\e036";
2513 content: "\e036";
2514 }
2514 }
2515 .glyphicon-volume-down:before {
2515 .glyphicon-volume-down:before {
2516 content: "\e037";
2516 content: "\e037";
2517 }
2517 }
2518 .glyphicon-volume-up:before {
2518 .glyphicon-volume-up:before {
2519 content: "\e038";
2519 content: "\e038";
2520 }
2520 }
2521 .glyphicon-qrcode:before {
2521 .glyphicon-qrcode:before {
2522 content: "\e039";
2522 content: "\e039";
2523 }
2523 }
2524 .glyphicon-barcode:before {
2524 .glyphicon-barcode:before {
2525 content: "\e040";
2525 content: "\e040";
2526 }
2526 }
2527 .glyphicon-tag:before {
2527 .glyphicon-tag:before {
2528 content: "\e041";
2528 content: "\e041";
2529 }
2529 }
2530 .glyphicon-tags:before {
2530 .glyphicon-tags:before {
2531 content: "\e042";
2531 content: "\e042";
2532 }
2532 }
2533 .glyphicon-book:before {
2533 .glyphicon-book:before {
2534 content: "\e043";
2534 content: "\e043";
2535 }
2535 }
2536 .glyphicon-bookmark:before {
2536 .glyphicon-bookmark:before {
2537 content: "\e044";
2537 content: "\e044";
2538 }
2538 }
2539 .glyphicon-print:before {
2539 .glyphicon-print:before {
2540 content: "\e045";
2540 content: "\e045";
2541 }
2541 }
2542 .glyphicon-camera:before {
2542 .glyphicon-camera:before {
2543 content: "\e046";
2543 content: "\e046";
2544 }
2544 }
2545 .glyphicon-font:before {
2545 .glyphicon-font:before {
2546 content: "\e047";
2546 content: "\e047";
2547 }
2547 }
2548 .glyphicon-bold:before {
2548 .glyphicon-bold:before {
2549 content: "\e048";
2549 content: "\e048";
2550 }
2550 }
2551 .glyphicon-italic:before {
2551 .glyphicon-italic:before {
2552 content: "\e049";
2552 content: "\e049";
2553 }
2553 }
2554 .glyphicon-text-height:before {
2554 .glyphicon-text-height:before {
2555 content: "\e050";
2555 content: "\e050";
2556 }
2556 }
2557 .glyphicon-text-width:before {
2557 .glyphicon-text-width:before {
2558 content: "\e051";
2558 content: "\e051";
2559 }
2559 }
2560 .glyphicon-align-left:before {
2560 .glyphicon-align-left:before {
2561 content: "\e052";
2561 content: "\e052";
2562 }
2562 }
2563 .glyphicon-align-center:before {
2563 .glyphicon-align-center:before {
2564 content: "\e053";
2564 content: "\e053";
2565 }
2565 }
2566 .glyphicon-align-right:before {
2566 .glyphicon-align-right:before {
2567 content: "\e054";
2567 content: "\e054";
2568 }
2568 }
2569 .glyphicon-align-justify:before {
2569 .glyphicon-align-justify:before {
2570 content: "\e055";
2570 content: "\e055";
2571 }
2571 }
2572 .glyphicon-list:before {
2572 .glyphicon-list:before {
2573 content: "\e056";
2573 content: "\e056";
2574 }
2574 }
2575 .glyphicon-indent-left:before {
2575 .glyphicon-indent-left:before {
2576 content: "\e057";
2576 content: "\e057";
2577 }
2577 }
2578 .glyphicon-indent-right:before {
2578 .glyphicon-indent-right:before {
2579 content: "\e058";
2579 content: "\e058";
2580 }
2580 }
2581 .glyphicon-facetime-video:before {
2581 .glyphicon-facetime-video:before {
2582 content: "\e059";
2582 content: "\e059";
2583 }
2583 }
2584 .glyphicon-picture:before {
2584 .glyphicon-picture:before {
2585 content: "\e060";
2585 content: "\e060";
2586 }
2586 }
2587 .glyphicon-map-marker:before {
2587 .glyphicon-map-marker:before {
2588 content: "\e062";
2588 content: "\e062";
2589 }
2589 }
2590 .glyphicon-adjust:before {
2590 .glyphicon-adjust:before {
2591 content: "\e063";
2591 content: "\e063";
2592 }
2592 }
2593 .glyphicon-tint:before {
2593 .glyphicon-tint:before {
2594 content: "\e064";
2594 content: "\e064";
2595 }
2595 }
2596 .glyphicon-edit:before {
2596 .glyphicon-edit:before {
2597 content: "\e065";
2597 content: "\e065";
2598 }
2598 }
2599 .glyphicon-share:before {
2599 .glyphicon-share:before {
2600 content: "\e066";
2600 content: "\e066";
2601 }
2601 }
2602 .glyphicon-check:before {
2602 .glyphicon-check:before {
2603 content: "\e067";
2603 content: "\e067";
2604 }
2604 }
2605 .glyphicon-move:before {
2605 .glyphicon-move:before {
2606 content: "\e068";
2606 content: "\e068";
2607 }
2607 }
2608 .glyphicon-step-backward:before {
2608 .glyphicon-step-backward:before {
2609 content: "\e069";
2609 content: "\e069";
2610 }
2610 }
2611 .glyphicon-fast-backward:before {
2611 .glyphicon-fast-backward:before {
2612 content: "\e070";
2612 content: "\e070";
2613 }
2613 }
2614 .glyphicon-backward:before {
2614 .glyphicon-backward:before {
2615 content: "\e071";
2615 content: "\e071";
2616 }
2616 }
2617 .glyphicon-play:before {
2617 .glyphicon-play:before {
2618 content: "\e072";
2618 content: "\e072";
2619 }
2619 }
2620 .glyphicon-pause:before {
2620 .glyphicon-pause:before {
2621 content: "\e073";
2621 content: "\e073";
2622 }
2622 }
2623 .glyphicon-stop:before {
2623 .glyphicon-stop:before {
2624 content: "\e074";
2624 content: "\e074";
2625 }
2625 }
2626 .glyphicon-forward:before {
2626 .glyphicon-forward:before {
2627 content: "\e075";
2627 content: "\e075";
2628 }
2628 }
2629 .glyphicon-fast-forward:before {
2629 .glyphicon-fast-forward:before {
2630 content: "\e076";
2630 content: "\e076";
2631 }
2631 }
2632 .glyphicon-step-forward:before {
2632 .glyphicon-step-forward:before {
2633 content: "\e077";
2633 content: "\e077";
2634 }
2634 }
2635 .glyphicon-eject:before {
2635 .glyphicon-eject:before {
2636 content: "\e078";
2636 content: "\e078";
2637 }
2637 }
2638 .glyphicon-chevron-left:before {
2638 .glyphicon-chevron-left:before {
2639 content: "\e079";
2639 content: "\e079";
2640 }
2640 }
2641 .glyphicon-chevron-right:before {
2641 .glyphicon-chevron-right:before {
2642 content: "\e080";
2642 content: "\e080";
2643 }
2643 }
2644 .glyphicon-plus-sign:before {
2644 .glyphicon-plus-sign:before {
2645 content: "\e081";
2645 content: "\e081";
2646 }
2646 }
2647 .glyphicon-minus-sign:before {
2647 .glyphicon-minus-sign:before {
2648 content: "\e082";
2648 content: "\e082";
2649 }
2649 }
2650 .glyphicon-remove-sign:before {
2650 .glyphicon-remove-sign:before {
2651 content: "\e083";
2651 content: "\e083";
2652 }
2652 }
2653 .glyphicon-ok-sign:before {
2653 .glyphicon-ok-sign:before {
2654 content: "\e084";
2654 content: "\e084";
2655 }
2655 }
2656 .glyphicon-question-sign:before {
2656 .glyphicon-question-sign:before {
2657 content: "\e085";
2657 content: "\e085";
2658 }
2658 }
2659 .glyphicon-info-sign:before {
2659 .glyphicon-info-sign:before {
2660 content: "\e086";
2660 content: "\e086";
2661 }
2661 }
2662 .glyphicon-screenshot:before {
2662 .glyphicon-screenshot:before {
2663 content: "\e087";
2663 content: "\e087";
2664 }
2664 }
2665 .glyphicon-remove-circle:before {
2665 .glyphicon-remove-circle:before {
2666 content: "\e088";
2666 content: "\e088";
2667 }
2667 }
2668 .glyphicon-ok-circle:before {
2668 .glyphicon-ok-circle:before {
2669 content: "\e089";
2669 content: "\e089";
2670 }
2670 }
2671 .glyphicon-ban-circle:before {
2671 .glyphicon-ban-circle:before {
2672 content: "\e090";
2672 content: "\e090";
2673 }
2673 }
2674 .glyphicon-arrow-left:before {
2674 .glyphicon-arrow-left:before {
2675 content: "\e091";
2675 content: "\e091";
2676 }
2676 }
2677 .glyphicon-arrow-right:before {
2677 .glyphicon-arrow-right:before {
2678 content: "\e092";
2678 content: "\e092";
2679 }
2679 }
2680 .glyphicon-arrow-up:before {
2680 .glyphicon-arrow-up:before {
2681 content: "\e093";
2681 content: "\e093";
2682 }
2682 }
2683 .glyphicon-arrow-down:before {
2683 .glyphicon-arrow-down:before {
2684 content: "\e094";
2684 content: "\e094";
2685 }
2685 }
2686 .glyphicon-share-alt:before {
2686 .glyphicon-share-alt:before {
2687 content: "\e095";
2687 content: "\e095";
2688 }
2688 }
2689 .glyphicon-resize-full:before {
2689 .glyphicon-resize-full:before {
2690 content: "\e096";
2690 content: "\e096";
2691 }
2691 }
2692 .glyphicon-resize-small:before {
2692 .glyphicon-resize-small:before {
2693 content: "\e097";
2693 content: "\e097";
2694 }
2694 }
2695 .glyphicon-exclamation-sign:before {
2695 .glyphicon-exclamation-sign:before {
2696 content: "\e101";
2696 content: "\e101";
2697 }
2697 }
2698 .glyphicon-gift:before {
2698 .glyphicon-gift:before {
2699 content: "\e102";
2699 content: "\e102";
2700 }
2700 }
2701 .glyphicon-leaf:before {
2701 .glyphicon-leaf:before {
2702 content: "\e103";
2702 content: "\e103";
2703 }
2703 }
2704 .glyphicon-fire:before {
2704 .glyphicon-fire:before {
2705 content: "\e104";
2705 content: "\e104";
2706 }
2706 }
2707 .glyphicon-eye-open:before {
2707 .glyphicon-eye-open:before {
2708 content: "\e105";
2708 content: "\e105";
2709 }
2709 }
2710 .glyphicon-eye-close:before {
2710 .glyphicon-eye-close:before {
2711 content: "\e106";
2711 content: "\e106";
2712 }
2712 }
2713 .glyphicon-warning-sign:before {
2713 .glyphicon-warning-sign:before {
2714 content: "\e107";
2714 content: "\e107";
2715 }
2715 }
2716 .glyphicon-plane:before {
2716 .glyphicon-plane:before {
2717 content: "\e108";
2717 content: "\e108";
2718 }
2718 }
2719 .glyphicon-calendar:before {
2719 .glyphicon-calendar:before {
2720 content: "\e109";
2720 content: "\e109";
2721 }
2721 }
2722 .glyphicon-random:before {
2722 .glyphicon-random:before {
2723 content: "\e110";
2723 content: "\e110";
2724 }
2724 }
2725 .glyphicon-comment:before {
2725 .glyphicon-comment:before {
2726 content: "\e111";
2726 content: "\e111";
2727 }
2727 }
2728 .glyphicon-magnet:before {
2728 .glyphicon-magnet:before {
2729 content: "\e112";
2729 content: "\e112";
2730 }
2730 }
2731 .glyphicon-chevron-up:before {
2731 .glyphicon-chevron-up:before {
2732 content: "\e113";
2732 content: "\e113";
2733 }
2733 }
2734 .glyphicon-chevron-down:before {
2734 .glyphicon-chevron-down:before {
2735 content: "\e114";
2735 content: "\e114";
2736 }
2736 }
2737 .glyphicon-retweet:before {
2737 .glyphicon-retweet:before {
2738 content: "\e115";
2738 content: "\e115";
2739 }
2739 }
2740 .glyphicon-shopping-cart:before {
2740 .glyphicon-shopping-cart:before {
2741 content: "\e116";
2741 content: "\e116";
2742 }
2742 }
2743 .glyphicon-folder-close:before {
2743 .glyphicon-folder-close:before {
2744 content: "\e117";
2744 content: "\e117";
2745 }
2745 }
2746 .glyphicon-folder-open:before {
2746 .glyphicon-folder-open:before {
2747 content: "\e118";
2747 content: "\e118";
2748 }
2748 }
2749 .glyphicon-resize-vertical:before {
2749 .glyphicon-resize-vertical:before {
2750 content: "\e119";
2750 content: "\e119";
2751 }
2751 }
2752 .glyphicon-resize-horizontal:before {
2752 .glyphicon-resize-horizontal:before {
2753 content: "\e120";
2753 content: "\e120";
2754 }
2754 }
2755 .glyphicon-hdd:before {
2755 .glyphicon-hdd:before {
2756 content: "\e121";
2756 content: "\e121";
2757 }
2757 }
2758 .glyphicon-bullhorn:before {
2758 .glyphicon-bullhorn:before {
2759 content: "\e122";
2759 content: "\e122";
2760 }
2760 }
2761 .glyphicon-bell:before {
2761 .glyphicon-bell:before {
2762 content: "\e123";
2762 content: "\e123";
2763 }
2763 }
2764 .glyphicon-certificate:before {
2764 .glyphicon-certificate:before {
2765 content: "\e124";
2765 content: "\e124";
2766 }
2766 }
2767 .glyphicon-thumbs-up:before {
2767 .glyphicon-thumbs-up:before {
2768 content: "\e125";
2768 content: "\e125";
2769 }
2769 }
2770 .glyphicon-thumbs-down:before {
2770 .glyphicon-thumbs-down:before {
2771 content: "\e126";
2771 content: "\e126";
2772 }
2772 }
2773 .glyphicon-hand-right:before {
2773 .glyphicon-hand-right:before {
2774 content: "\e127";
2774 content: "\e127";
2775 }
2775 }
2776 .glyphicon-hand-left:before {
2776 .glyphicon-hand-left:before {
2777 content: "\e128";
2777 content: "\e128";
2778 }
2778 }
2779 .glyphicon-hand-up:before {
2779 .glyphicon-hand-up:before {
2780 content: "\e129";
2780 content: "\e129";
2781 }
2781 }
2782 .glyphicon-hand-down:before {
2782 .glyphicon-hand-down:before {
2783 content: "\e130";
2783 content: "\e130";
2784 }
2784 }
2785 .glyphicon-circle-arrow-right:before {
2785 .glyphicon-circle-arrow-right:before {
2786 content: "\e131";
2786 content: "\e131";
2787 }
2787 }
2788 .glyphicon-circle-arrow-left:before {
2788 .glyphicon-circle-arrow-left:before {
2789 content: "\e132";
2789 content: "\e132";
2790 }
2790 }
2791 .glyphicon-circle-arrow-up:before {
2791 .glyphicon-circle-arrow-up:before {
2792 content: "\e133";
2792 content: "\e133";
2793 }
2793 }
2794 .glyphicon-circle-arrow-down:before {
2794 .glyphicon-circle-arrow-down:before {
2795 content: "\e134";
2795 content: "\e134";
2796 }
2796 }
2797 .glyphicon-globe:before {
2797 .glyphicon-globe:before {
2798 content: "\e135";
2798 content: "\e135";
2799 }
2799 }
2800 .glyphicon-wrench:before {
2800 .glyphicon-wrench:before {
2801 content: "\e136";
2801 content: "\e136";
2802 }
2802 }
2803 .glyphicon-tasks:before {
2803 .glyphicon-tasks:before {
2804 content: "\e137";
2804 content: "\e137";
2805 }
2805 }
2806 .glyphicon-filter:before {
2806 .glyphicon-filter:before {
2807 content: "\e138";
2807 content: "\e138";
2808 }
2808 }
2809 .glyphicon-briefcase:before {
2809 .glyphicon-briefcase:before {
2810 content: "\e139";
2810 content: "\e139";
2811 }
2811 }
2812 .glyphicon-fullscreen:before {
2812 .glyphicon-fullscreen:before {
2813 content: "\e140";
2813 content: "\e140";
2814 }
2814 }
2815 .glyphicon-dashboard:before {
2815 .glyphicon-dashboard:before {
2816 content: "\e141";
2816 content: "\e141";
2817 }
2817 }
2818 .glyphicon-paperclip:before {
2818 .glyphicon-paperclip:before {
2819 content: "\e142";
2819 content: "\e142";
2820 }
2820 }
2821 .glyphicon-heart-empty:before {
2821 .glyphicon-heart-empty:before {
2822 content: "\e143";
2822 content: "\e143";
2823 }
2823 }
2824 .glyphicon-link:before {
2824 .glyphicon-link:before {
2825 content: "\e144";
2825 content: "\e144";
2826 }
2826 }
2827 .glyphicon-phone:before {
2827 .glyphicon-phone:before {
2828 content: "\e145";
2828 content: "\e145";
2829 }
2829 }
2830 .glyphicon-pushpin:before {
2830 .glyphicon-pushpin:before {
2831 content: "\e146";
2831 content: "\e146";
2832 }
2832 }
2833 .glyphicon-usd:before {
2833 .glyphicon-usd:before {
2834 content: "\e148";
2834 content: "\e148";
2835 }
2835 }
2836 .glyphicon-gbp:before {
2836 .glyphicon-gbp:before {
2837 content: "\e149";
2837 content: "\e149";
2838 }
2838 }
2839 .glyphicon-sort:before {
2839 .glyphicon-sort:before {
2840 content: "\e150";
2840 content: "\e150";
2841 }
2841 }
2842 .glyphicon-sort-by-alphabet:before {
2842 .glyphicon-sort-by-alphabet:before {
2843 content: "\e151";
2843 content: "\e151";
2844 }
2844 }
2845 .glyphicon-sort-by-alphabet-alt:before {
2845 .glyphicon-sort-by-alphabet-alt:before {
2846 content: "\e152";
2846 content: "\e152";
2847 }
2847 }
2848 .glyphicon-sort-by-order:before {
2848 .glyphicon-sort-by-order:before {
2849 content: "\e153";
2849 content: "\e153";
2850 }
2850 }
2851 .glyphicon-sort-by-order-alt:before {
2851 .glyphicon-sort-by-order-alt:before {
2852 content: "\e154";
2852 content: "\e154";
2853 }
2853 }
2854 .glyphicon-sort-by-attributes:before {
2854 .glyphicon-sort-by-attributes:before {
2855 content: "\e155";
2855 content: "\e155";
2856 }
2856 }
2857 .glyphicon-sort-by-attributes-alt:before {
2857 .glyphicon-sort-by-attributes-alt:before {
2858 content: "\e156";
2858 content: "\e156";
2859 }
2859 }
2860 .glyphicon-unchecked:before {
2860 .glyphicon-unchecked:before {
2861 content: "\e157";
2861 content: "\e157";
2862 }
2862 }
2863 .glyphicon-expand:before {
2863 .glyphicon-expand:before {
2864 content: "\e158";
2864 content: "\e158";
2865 }
2865 }
2866 .glyphicon-collapse-down:before {
2866 .glyphicon-collapse-down:before {
2867 content: "\e159";
2867 content: "\e159";
2868 }
2868 }
2869 .glyphicon-collapse-up:before {
2869 .glyphicon-collapse-up:before {
2870 content: "\e160";
2870 content: "\e160";
2871 }
2871 }
2872 .glyphicon-log-in:before {
2872 .glyphicon-log-in:before {
2873 content: "\e161";
2873 content: "\e161";
2874 }
2874 }
2875 .glyphicon-flash:before {
2875 .glyphicon-flash:before {
2876 content: "\e162";
2876 content: "\e162";
2877 }
2877 }
2878 .glyphicon-log-out:before {
2878 .glyphicon-log-out:before {
2879 content: "\e163";
2879 content: "\e163";
2880 }
2880 }
2881 .glyphicon-new-window:before {
2881 .glyphicon-new-window:before {
2882 content: "\e164";
2882 content: "\e164";
2883 }
2883 }
2884 .glyphicon-record:before {
2884 .glyphicon-record:before {
2885 content: "\e165";
2885 content: "\e165";
2886 }
2886 }
2887 .glyphicon-save:before {
2887 .glyphicon-save:before {
2888 content: "\e166";
2888 content: "\e166";
2889 }
2889 }
2890 .glyphicon-open:before {
2890 .glyphicon-open:before {
2891 content: "\e167";
2891 content: "\e167";
2892 }
2892 }
2893 .glyphicon-saved:before {
2893 .glyphicon-saved:before {
2894 content: "\e168";
2894 content: "\e168";
2895 }
2895 }
2896 .glyphicon-import:before {
2896 .glyphicon-import:before {
2897 content: "\e169";
2897 content: "\e169";
2898 }
2898 }
2899 .glyphicon-export:before {
2899 .glyphicon-export:before {
2900 content: "\e170";
2900 content: "\e170";
2901 }
2901 }
2902 .glyphicon-send:before {
2902 .glyphicon-send:before {
2903 content: "\e171";
2903 content: "\e171";
2904 }
2904 }
2905 .glyphicon-floppy-disk:before {
2905 .glyphicon-floppy-disk:before {
2906 content: "\e172";
2906 content: "\e172";
2907 }
2907 }
2908 .glyphicon-floppy-saved:before {
2908 .glyphicon-floppy-saved:before {
2909 content: "\e173";
2909 content: "\e173";
2910 }
2910 }
2911 .glyphicon-floppy-remove:before {
2911 .glyphicon-floppy-remove:before {
2912 content: "\e174";
2912 content: "\e174";
2913 }
2913 }
2914 .glyphicon-floppy-save:before {
2914 .glyphicon-floppy-save:before {
2915 content: "\e175";
2915 content: "\e175";
2916 }
2916 }
2917 .glyphicon-floppy-open:before {
2917 .glyphicon-floppy-open:before {
2918 content: "\e176";
2918 content: "\e176";
2919 }
2919 }
2920 .glyphicon-credit-card:before {
2920 .glyphicon-credit-card:before {
2921 content: "\e177";
2921 content: "\e177";
2922 }
2922 }
2923 .glyphicon-transfer:before {
2923 .glyphicon-transfer:before {
2924 content: "\e178";
2924 content: "\e178";
2925 }
2925 }
2926 .glyphicon-cutlery:before {
2926 .glyphicon-cutlery:before {
2927 content: "\e179";
2927 content: "\e179";
2928 }
2928 }
2929 .glyphicon-header:before {
2929 .glyphicon-header:before {
2930 content: "\e180";
2930 content: "\e180";
2931 }
2931 }
2932 .glyphicon-compressed:before {
2932 .glyphicon-compressed:before {
2933 content: "\e181";
2933 content: "\e181";
2934 }
2934 }
2935 .glyphicon-earphone:before {
2935 .glyphicon-earphone:before {
2936 content: "\e182";
2936 content: "\e182";
2937 }
2937 }
2938 .glyphicon-phone-alt:before {
2938 .glyphicon-phone-alt:before {
2939 content: "\e183";
2939 content: "\e183";
2940 }
2940 }
2941 .glyphicon-tower:before {
2941 .glyphicon-tower:before {
2942 content: "\e184";
2942 content: "\e184";
2943 }
2943 }
2944 .glyphicon-stats:before {
2944 .glyphicon-stats:before {
2945 content: "\e185";
2945 content: "\e185";
2946 }
2946 }
2947 .glyphicon-sd-video:before {
2947 .glyphicon-sd-video:before {
2948 content: "\e186";
2948 content: "\e186";
2949 }
2949 }
2950 .glyphicon-hd-video:before {
2950 .glyphicon-hd-video:before {
2951 content: "\e187";
2951 content: "\e187";
2952 }
2952 }
2953 .glyphicon-subtitles:before {
2953 .glyphicon-subtitles:before {
2954 content: "\e188";
2954 content: "\e188";
2955 }
2955 }
2956 .glyphicon-sound-stereo:before {
2956 .glyphicon-sound-stereo:before {
2957 content: "\e189";
2957 content: "\e189";
2958 }
2958 }
2959 .glyphicon-sound-dolby:before {
2959 .glyphicon-sound-dolby:before {
2960 content: "\e190";
2960 content: "\e190";
2961 }
2961 }
2962 .glyphicon-sound-5-1:before {
2962 .glyphicon-sound-5-1:before {
2963 content: "\e191";
2963 content: "\e191";
2964 }
2964 }
2965 .glyphicon-sound-6-1:before {
2965 .glyphicon-sound-6-1:before {
2966 content: "\e192";
2966 content: "\e192";
2967 }
2967 }
2968 .glyphicon-sound-7-1:before {
2968 .glyphicon-sound-7-1:before {
2969 content: "\e193";
2969 content: "\e193";
2970 }
2970 }
2971 .glyphicon-copyright-mark:before {
2971 .glyphicon-copyright-mark:before {
2972 content: "\e194";
2972 content: "\e194";
2973 }
2973 }
2974 .glyphicon-registration-mark:before {
2974 .glyphicon-registration-mark:before {
2975 content: "\e195";
2975 content: "\e195";
2976 }
2976 }
2977 .glyphicon-cloud-download:before {
2977 .glyphicon-cloud-download:before {
2978 content: "\e197";
2978 content: "\e197";
2979 }
2979 }
2980 .glyphicon-cloud-upload:before {
2980 .glyphicon-cloud-upload:before {
2981 content: "\e198";
2981 content: "\e198";
2982 }
2982 }
2983 .glyphicon-tree-conifer:before {
2983 .glyphicon-tree-conifer:before {
2984 content: "\e199";
2984 content: "\e199";
2985 }
2985 }
2986 .glyphicon-tree-deciduous:before {
2986 .glyphicon-tree-deciduous:before {
2987 content: "\e200";
2987 content: "\e200";
2988 }
2988 }
2989 .caret {
2989 .caret {
2990 display: inline-block;
2990 display: inline-block;
2991 width: 0;
2991 width: 0;
2992 height: 0;
2992 height: 0;
2993 margin-left: 2px;
2993 margin-left: 2px;
2994 vertical-align: middle;
2994 vertical-align: middle;
2995 border-top: 4px solid;
2995 border-top: 4px solid;
2996 border-right: 4px solid transparent;
2996 border-right: 4px solid transparent;
2997 border-left: 4px solid transparent;
2997 border-left: 4px solid transparent;
2998 }
2998 }
2999 .dropdown {
2999 .dropdown {
3000 position: relative;
3000 position: relative;
3001 }
3001 }
3002 .dropdown-toggle:focus {
3002 .dropdown-toggle:focus {
3003 outline: 0;
3003 outline: 0;
3004 }
3004 }
3005 .dropdown-menu {
3005 .dropdown-menu {
3006 position: absolute;
3006 position: absolute;
3007 top: 100%;
3007 top: 100%;
3008 left: 0;
3008 left: 0;
3009 z-index: 1000;
3009 z-index: 1000;
3010 display: none;
3010 display: none;
3011 float: left;
3011 float: left;
3012 min-width: 160px;
3012 min-width: 160px;
3013 padding: 5px 0;
3013 padding: 5px 0;
3014 margin: 2px 0 0;
3014 margin: 2px 0 0;
3015 list-style: none;
3015 list-style: none;
3016 font-size: 13px;
3016 font-size: 13px;
3017 background-color: #ffffff;
3017 background-color: #ffffff;
3018 border: 1px solid #cccccc;
3018 border: 1px solid #cccccc;
3019 border: 1px solid rgba(0, 0, 0, 0.15);
3019 border: 1px solid rgba(0, 0, 0, 0.15);
3020 border-radius: 4px;
3020 border-radius: 2px;
3021 -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3021 -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3022 box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3022 box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3023 background-clip: padding-box;
3023 background-clip: padding-box;
3024 }
3024 }
3025 .dropdown-menu.pull-right {
3025 .dropdown-menu.pull-right {
3026 right: 0;
3026 right: 0;
3027 left: auto;
3027 left: auto;
3028 }
3028 }
3029 .dropdown-menu .divider {
3029 .dropdown-menu .divider {
3030 height: 1px;
3030 height: 1px;
3031 margin: 8px 0;
3031 margin: 8px 0;
3032 overflow: hidden;
3032 overflow: hidden;
3033 background-color: #e5e5e5;
3033 background-color: #e5e5e5;
3034 }
3034 }
3035 .dropdown-menu > li > a {
3035 .dropdown-menu > li > a {
3036 display: block;
3036 display: block;
3037 padding: 3px 20px;
3037 padding: 3px 20px;
3038 clear: both;
3038 clear: both;
3039 font-weight: normal;
3039 font-weight: normal;
3040 line-height: 1.42857143;
3040 line-height: 1.42857143;
3041 color: #333333;
3041 color: #333333;
3042 white-space: nowrap;
3042 white-space: nowrap;
3043 }
3043 }
3044 .dropdown-menu > li > a:hover,
3044 .dropdown-menu > li > a:hover,
3045 .dropdown-menu > li > a:focus {
3045 .dropdown-menu > li > a:focus {
3046 text-decoration: none;
3046 text-decoration: none;
3047 color: #262626;
3047 color: #262626;
3048 background-color: #f5f5f5;
3048 background-color: #f5f5f5;
3049 }
3049 }
3050 .dropdown-menu > .active > a,
3050 .dropdown-menu > .active > a,
3051 .dropdown-menu > .active > a:hover,
3051 .dropdown-menu > .active > a:hover,
3052 .dropdown-menu > .active > a:focus {
3052 .dropdown-menu > .active > a:focus {
3053 color: #ffffff;
3053 color: #ffffff;
3054 text-decoration: none;
3054 text-decoration: none;
3055 outline: 0;
3055 outline: 0;
3056 background-color: #428bca;
3056 background-color: #428bca;
3057 }
3057 }
3058 .dropdown-menu > .disabled > a,
3058 .dropdown-menu > .disabled > a,
3059 .dropdown-menu > .disabled > a:hover,
3059 .dropdown-menu > .disabled > a:hover,
3060 .dropdown-menu > .disabled > a:focus {
3060 .dropdown-menu > .disabled > a:focus {
3061 color: #999999;
3061 color: #999999;
3062 }
3062 }
3063 .dropdown-menu > .disabled > a:hover,
3063 .dropdown-menu > .disabled > a:hover,
3064 .dropdown-menu > .disabled > a:focus {
3064 .dropdown-menu > .disabled > a:focus {
3065 text-decoration: none;
3065 text-decoration: none;
3066 background-color: transparent;
3066 background-color: transparent;
3067 background-image: none;
3067 background-image: none;
3068 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
3068 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
3069 cursor: not-allowed;
3069 cursor: not-allowed;
3070 }
3070 }
3071 .open > .dropdown-menu {
3071 .open > .dropdown-menu {
3072 display: block;
3072 display: block;
3073 }
3073 }
3074 .open > a {
3074 .open > a {
3075 outline: 0;
3075 outline: 0;
3076 }
3076 }
3077 .dropdown-menu-right {
3077 .dropdown-menu-right {
3078 left: auto;
3078 left: auto;
3079 right: 0;
3079 right: 0;
3080 }
3080 }
3081 .dropdown-menu-left {
3081 .dropdown-menu-left {
3082 left: 0;
3082 left: 0;
3083 right: auto;
3083 right: auto;
3084 }
3084 }
3085 .dropdown-header {
3085 .dropdown-header {
3086 display: block;
3086 display: block;
3087 padding: 3px 20px;
3087 padding: 3px 20px;
3088 font-size: 12px;
3088 font-size: 12px;
3089 line-height: 1.42857143;
3089 line-height: 1.42857143;
3090 color: #999999;
3090 color: #999999;
3091 }
3091 }
3092 .dropdown-backdrop {
3092 .dropdown-backdrop {
3093 position: fixed;
3093 position: fixed;
3094 left: 0;
3094 left: 0;
3095 right: 0;
3095 right: 0;
3096 bottom: 0;
3096 bottom: 0;
3097 top: 0;
3097 top: 0;
3098 z-index: 990;
3098 z-index: 990;
3099 }
3099 }
3100 .pull-right > .dropdown-menu {
3100 .pull-right > .dropdown-menu {
3101 right: 0;
3101 right: 0;
3102 left: auto;
3102 left: auto;
3103 }
3103 }
3104 .dropup .caret,
3104 .dropup .caret,
3105 .navbar-fixed-bottom .dropdown .caret {
3105 .navbar-fixed-bottom .dropdown .caret {
3106 border-top: 0;
3106 border-top: 0;
3107 border-bottom: 4px solid;
3107 border-bottom: 4px solid;
3108 content: "";
3108 content: "";
3109 }
3109 }
3110 .dropup .dropdown-menu,
3110 .dropup .dropdown-menu,
3111 .navbar-fixed-bottom .dropdown .dropdown-menu {
3111 .navbar-fixed-bottom .dropdown .dropdown-menu {
3112 top: auto;
3112 top: auto;
3113 bottom: 100%;
3113 bottom: 100%;
3114 margin-bottom: 1px;
3114 margin-bottom: 1px;
3115 }
3115 }
3116 @media (min-width: 540px) {
3116 @media (min-width: 540px) {
3117 .navbar-right .dropdown-menu {
3117 .navbar-right .dropdown-menu {
3118 left: auto;
3118 left: auto;
3119 right: 0;
3119 right: 0;
3120 }
3120 }
3121 .navbar-right .dropdown-menu-left {
3121 .navbar-right .dropdown-menu-left {
3122 left: 0;
3122 left: 0;
3123 right: auto;
3123 right: auto;
3124 }
3124 }
3125 }
3125 }
3126 .btn-group,
3126 .btn-group,
3127 .btn-group-vertical {
3127 .btn-group-vertical {
3128 position: relative;
3128 position: relative;
3129 display: inline-block;
3129 display: inline-block;
3130 vertical-align: middle;
3130 vertical-align: middle;
3131 }
3131 }
3132 .btn-group > .btn,
3132 .btn-group > .btn,
3133 .btn-group-vertical > .btn {
3133 .btn-group-vertical > .btn {
3134 position: relative;
3134 position: relative;
3135 float: left;
3135 float: left;
3136 }
3136 }
3137 .btn-group > .btn:hover,
3137 .btn-group > .btn:hover,
3138 .btn-group-vertical > .btn:hover,
3138 .btn-group-vertical > .btn:hover,
3139 .btn-group > .btn:focus,
3139 .btn-group > .btn:focus,
3140 .btn-group-vertical > .btn:focus,
3140 .btn-group-vertical > .btn:focus,
3141 .btn-group > .btn:active,
3141 .btn-group > .btn:active,
3142 .btn-group-vertical > .btn:active,
3142 .btn-group-vertical > .btn:active,
3143 .btn-group > .btn.active,
3143 .btn-group > .btn.active,
3144 .btn-group-vertical > .btn.active {
3144 .btn-group-vertical > .btn.active {
3145 z-index: 2;
3145 z-index: 2;
3146 }
3146 }
3147 .btn-group > .btn:focus,
3147 .btn-group > .btn:focus,
3148 .btn-group-vertical > .btn:focus {
3148 .btn-group-vertical > .btn:focus {
3149 outline: none;
3149 outline: none;
3150 }
3150 }
3151 .btn-group .btn + .btn,
3151 .btn-group .btn + .btn,
3152 .btn-group .btn + .btn-group,
3152 .btn-group .btn + .btn-group,
3153 .btn-group .btn-group + .btn,
3153 .btn-group .btn-group + .btn,
3154 .btn-group .btn-group + .btn-group {
3154 .btn-group .btn-group + .btn-group {
3155 margin-left: -1px;
3155 margin-left: -1px;
3156 }
3156 }
3157 .btn-toolbar {
3157 .btn-toolbar {
3158 margin-left: -5px;
3158 margin-left: -5px;
3159 }
3159 }
3160 .btn-toolbar .btn-group,
3160 .btn-toolbar .btn-group,
3161 .btn-toolbar .input-group {
3161 .btn-toolbar .input-group {
3162 float: left;
3162 float: left;
3163 }
3163 }
3164 .btn-toolbar > .btn,
3164 .btn-toolbar > .btn,
3165 .btn-toolbar > .btn-group,
3165 .btn-toolbar > .btn-group,
3166 .btn-toolbar > .input-group {
3166 .btn-toolbar > .input-group {
3167 margin-left: 5px;
3167 margin-left: 5px;
3168 }
3168 }
3169 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
3169 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
3170 border-radius: 0;
3170 border-radius: 0;
3171 }
3171 }
3172 .btn-group > .btn:first-child {
3172 .btn-group > .btn:first-child {
3173 margin-left: 0;
3173 margin-left: 0;
3174 }
3174 }
3175 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
3175 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
3176 border-bottom-right-radius: 0;
3176 border-bottom-right-radius: 0;
3177 border-top-right-radius: 0;
3177 border-top-right-radius: 0;
3178 }
3178 }
3179 .btn-group > .btn:last-child:not(:first-child),
3179 .btn-group > .btn:last-child:not(:first-child),
3180 .btn-group > .dropdown-toggle:not(:first-child) {
3180 .btn-group > .dropdown-toggle:not(:first-child) {
3181 border-bottom-left-radius: 0;
3181 border-bottom-left-radius: 0;
3182 border-top-left-radius: 0;
3182 border-top-left-radius: 0;
3183 }
3183 }
3184 .btn-group > .btn-group {
3184 .btn-group > .btn-group {
3185 float: left;
3185 float: left;
3186 }
3186 }
3187 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
3187 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
3188 border-radius: 0;
3188 border-radius: 0;
3189 }
3189 }
3190 .btn-group > .btn-group:first-child > .btn:last-child,
3190 .btn-group > .btn-group:first-child > .btn:last-child,
3191 .btn-group > .btn-group:first-child > .dropdown-toggle {
3191 .btn-group > .btn-group:first-child > .dropdown-toggle {
3192 border-bottom-right-radius: 0;
3192 border-bottom-right-radius: 0;
3193 border-top-right-radius: 0;
3193 border-top-right-radius: 0;
3194 }
3194 }
3195 .btn-group > .btn-group:last-child > .btn:first-child {
3195 .btn-group > .btn-group:last-child > .btn:first-child {
3196 border-bottom-left-radius: 0;
3196 border-bottom-left-radius: 0;
3197 border-top-left-radius: 0;
3197 border-top-left-radius: 0;
3198 }
3198 }
3199 .btn-group .dropdown-toggle:active,
3199 .btn-group .dropdown-toggle:active,
3200 .btn-group.open .dropdown-toggle {
3200 .btn-group.open .dropdown-toggle {
3201 outline: 0;
3201 outline: 0;
3202 }
3202 }
3203 .btn-group > .btn + .dropdown-toggle {
3203 .btn-group > .btn + .dropdown-toggle {
3204 padding-left: 8px;
3204 padding-left: 8px;
3205 padding-right: 8px;
3205 padding-right: 8px;
3206 }
3206 }
3207 .btn-group > .btn-lg + .dropdown-toggle {
3207 .btn-group > .btn-lg + .dropdown-toggle {
3208 padding-left: 12px;
3208 padding-left: 12px;
3209 padding-right: 12px;
3209 padding-right: 12px;
3210 }
3210 }
3211 .btn-group.open .dropdown-toggle {
3211 .btn-group.open .dropdown-toggle {
3212 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3212 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3213 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3213 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3214 }
3214 }
3215 .btn-group.open .dropdown-toggle.btn-link {
3215 .btn-group.open .dropdown-toggle.btn-link {
3216 -webkit-box-shadow: none;
3216 -webkit-box-shadow: none;
3217 box-shadow: none;
3217 box-shadow: none;
3218 }
3218 }
3219 .btn .caret {
3219 .btn .caret {
3220 margin-left: 0;
3220 margin-left: 0;
3221 }
3221 }
3222 .btn-lg .caret {
3222 .btn-lg .caret {
3223 border-width: 5px 5px 0;
3223 border-width: 5px 5px 0;
3224 border-bottom-width: 0;
3224 border-bottom-width: 0;
3225 }
3225 }
3226 .dropup .btn-lg .caret {
3226 .dropup .btn-lg .caret {
3227 border-width: 0 5px 5px;
3227 border-width: 0 5px 5px;
3228 }
3228 }
3229 .btn-group-vertical > .btn,
3229 .btn-group-vertical > .btn,
3230 .btn-group-vertical > .btn-group,
3230 .btn-group-vertical > .btn-group,
3231 .btn-group-vertical > .btn-group > .btn {
3231 .btn-group-vertical > .btn-group > .btn {
3232 display: block;
3232 display: block;
3233 float: none;
3233 float: none;
3234 width: 100%;
3234 width: 100%;
3235 max-width: 100%;
3235 max-width: 100%;
3236 }
3236 }
3237 .btn-group-vertical > .btn-group > .btn {
3237 .btn-group-vertical > .btn-group > .btn {
3238 float: none;
3238 float: none;
3239 }
3239 }
3240 .btn-group-vertical > .btn + .btn,
3240 .btn-group-vertical > .btn + .btn,
3241 .btn-group-vertical > .btn + .btn-group,
3241 .btn-group-vertical > .btn + .btn-group,
3242 .btn-group-vertical > .btn-group + .btn,
3242 .btn-group-vertical > .btn-group + .btn,
3243 .btn-group-vertical > .btn-group + .btn-group {
3243 .btn-group-vertical > .btn-group + .btn-group {
3244 margin-top: -1px;
3244 margin-top: -1px;
3245 margin-left: 0;
3245 margin-left: 0;
3246 }
3246 }
3247 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
3247 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
3248 border-radius: 0;
3248 border-radius: 0;
3249 }
3249 }
3250 .btn-group-vertical > .btn:first-child:not(:last-child) {
3250 .btn-group-vertical > .btn:first-child:not(:last-child) {
3251 border-top-right-radius: 4px;
3251 border-top-right-radius: 2px;
3252 border-bottom-right-radius: 0;
3252 border-bottom-right-radius: 0;
3253 border-bottom-left-radius: 0;
3253 border-bottom-left-radius: 0;
3254 }
3254 }
3255 .btn-group-vertical > .btn:last-child:not(:first-child) {
3255 .btn-group-vertical > .btn:last-child:not(:first-child) {
3256 border-bottom-left-radius: 4px;
3256 border-bottom-left-radius: 2px;
3257 border-top-right-radius: 0;
3257 border-top-right-radius: 0;
3258 border-top-left-radius: 0;
3258 border-top-left-radius: 0;
3259 }
3259 }
3260 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
3260 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
3261 border-radius: 0;
3261 border-radius: 0;
3262 }
3262 }
3263 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
3263 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
3264 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
3264 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
3265 border-bottom-right-radius: 0;
3265 border-bottom-right-radius: 0;
3266 border-bottom-left-radius: 0;
3266 border-bottom-left-radius: 0;
3267 }
3267 }
3268 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
3268 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
3269 border-top-right-radius: 0;
3269 border-top-right-radius: 0;
3270 border-top-left-radius: 0;
3270 border-top-left-radius: 0;
3271 }
3271 }
3272 .btn-group-justified {
3272 .btn-group-justified {
3273 display: table;
3273 display: table;
3274 width: 100%;
3274 width: 100%;
3275 table-layout: fixed;
3275 table-layout: fixed;
3276 border-collapse: separate;
3276 border-collapse: separate;
3277 }
3277 }
3278 .btn-group-justified > .btn,
3278 .btn-group-justified > .btn,
3279 .btn-group-justified > .btn-group {
3279 .btn-group-justified > .btn-group {
3280 float: none;
3280 float: none;
3281 display: table-cell;
3281 display: table-cell;
3282 width: 1%;
3282 width: 1%;
3283 }
3283 }
3284 .btn-group-justified > .btn-group .btn {
3284 .btn-group-justified > .btn-group .btn {
3285 width: 100%;
3285 width: 100%;
3286 }
3286 }
3287 [data-toggle="buttons"] > .btn > input[type="radio"],
3287 [data-toggle="buttons"] > .btn > input[type="radio"],
3288 [data-toggle="buttons"] > .btn > input[type="checkbox"] {
3288 [data-toggle="buttons"] > .btn > input[type="checkbox"] {
3289 display: none;
3289 display: none;
3290 }
3290 }
3291 .input-group {
3291 .input-group {
3292 position: relative;
3292 position: relative;
3293 display: table;
3293 display: table;
3294 border-collapse: separate;
3294 border-collapse: separate;
3295 }
3295 }
3296 .input-group[class*="col-"] {
3296 .input-group[class*="col-"] {
3297 float: none;
3297 float: none;
3298 padding-left: 0;
3298 padding-left: 0;
3299 padding-right: 0;
3299 padding-right: 0;
3300 }
3300 }
3301 .input-group .form-control {
3301 .input-group .form-control {
3302 position: relative;
3302 position: relative;
3303 z-index: 2;
3303 z-index: 2;
3304 float: left;
3304 float: left;
3305 width: 100%;
3305 width: 100%;
3306 margin-bottom: 0;
3306 margin-bottom: 0;
3307 }
3307 }
3308 .input-group-lg > .form-control,
3308 .input-group-lg > .form-control,
3309 .input-group-lg > .input-group-addon,
3309 .input-group-lg > .input-group-addon,
3310 .input-group-lg > .input-group-btn > .btn {
3310 .input-group-lg > .input-group-btn > .btn {
3311 height: 45px;
3311 height: 45px;
3312 padding: 10px 16px;
3312 padding: 10px 16px;
3313 font-size: 17px;
3313 font-size: 17px;
3314 line-height: 1.33;
3314 line-height: 1.33;
3315 border-radius: 6px;
3315 border-radius: 6px;
3316 }
3316 }
3317 select.input-group-lg > .form-control,
3317 select.input-group-lg > .form-control,
3318 select.input-group-lg > .input-group-addon,
3318 select.input-group-lg > .input-group-addon,
3319 select.input-group-lg > .input-group-btn > .btn {
3319 select.input-group-lg > .input-group-btn > .btn {
3320 height: 45px;
3320 height: 45px;
3321 line-height: 45px;
3321 line-height: 45px;
3322 }
3322 }
3323 textarea.input-group-lg > .form-control,
3323 textarea.input-group-lg > .form-control,
3324 textarea.input-group-lg > .input-group-addon,
3324 textarea.input-group-lg > .input-group-addon,
3325 textarea.input-group-lg > .input-group-btn > .btn,
3325 textarea.input-group-lg > .input-group-btn > .btn,
3326 select[multiple].input-group-lg > .form-control,
3326 select[multiple].input-group-lg > .form-control,
3327 select[multiple].input-group-lg > .input-group-addon,
3327 select[multiple].input-group-lg > .input-group-addon,
3328 select[multiple].input-group-lg > .input-group-btn > .btn {
3328 select[multiple].input-group-lg > .input-group-btn > .btn {
3329 height: auto;
3329 height: auto;
3330 }
3330 }
3331 .input-group-sm > .form-control,
3331 .input-group-sm > .form-control,
3332 .input-group-sm > .input-group-addon,
3332 .input-group-sm > .input-group-addon,
3333 .input-group-sm > .input-group-btn > .btn {
3333 .input-group-sm > .input-group-btn > .btn {
3334 height: 30px;
3334 height: 30px;
3335 padding: 5px 10px;
3335 padding: 5px 10px;
3336 font-size: 12px;
3336 font-size: 12px;
3337 line-height: 1.5;
3337 line-height: 1.5;
3338 border-radius: 3px;
3338 border-radius: 2px;
3339 }
3339 }
3340 select.input-group-sm > .form-control,
3340 select.input-group-sm > .form-control,
3341 select.input-group-sm > .input-group-addon,
3341 select.input-group-sm > .input-group-addon,
3342 select.input-group-sm > .input-group-btn > .btn {
3342 select.input-group-sm > .input-group-btn > .btn {
3343 height: 30px;
3343 height: 30px;
3344 line-height: 30px;
3344 line-height: 30px;
3345 }
3345 }
3346 textarea.input-group-sm > .form-control,
3346 textarea.input-group-sm > .form-control,
3347 textarea.input-group-sm > .input-group-addon,
3347 textarea.input-group-sm > .input-group-addon,
3348 textarea.input-group-sm > .input-group-btn > .btn,
3348 textarea.input-group-sm > .input-group-btn > .btn,
3349 select[multiple].input-group-sm > .form-control,
3349 select[multiple].input-group-sm > .form-control,
3350 select[multiple].input-group-sm > .input-group-addon,
3350 select[multiple].input-group-sm > .input-group-addon,
3351 select[multiple].input-group-sm > .input-group-btn > .btn {
3351 select[multiple].input-group-sm > .input-group-btn > .btn {
3352 height: auto;
3352 height: auto;
3353 }
3353 }
3354 .input-group-addon,
3354 .input-group-addon,
3355 .input-group-btn,
3355 .input-group-btn,
3356 .input-group .form-control {
3356 .input-group .form-control {
3357 display: table-cell;
3357 display: table-cell;
3358 }
3358 }
3359 .input-group-addon:not(:first-child):not(:last-child),
3359 .input-group-addon:not(:first-child):not(:last-child),
3360 .input-group-btn:not(:first-child):not(:last-child),
3360 .input-group-btn:not(:first-child):not(:last-child),
3361 .input-group .form-control:not(:first-child):not(:last-child) {
3361 .input-group .form-control:not(:first-child):not(:last-child) {
3362 border-radius: 0;
3362 border-radius: 0;
3363 }
3363 }
3364 .input-group-addon,
3364 .input-group-addon,
3365 .input-group-btn {
3365 .input-group-btn {
3366 width: 1%;
3366 width: 1%;
3367 white-space: nowrap;
3367 white-space: nowrap;
3368 vertical-align: middle;
3368 vertical-align: middle;
3369 }
3369 }
3370 .input-group-addon {
3370 .input-group-addon {
3371 padding: 6px 12px;
3371 padding: 6px 12px;
3372 font-size: 13px;
3372 font-size: 13px;
3373 font-weight: normal;
3373 font-weight: normal;
3374 line-height: 1;
3374 line-height: 1;
3375 color: #555555;
3375 color: #555555;
3376 text-align: center;
3376 text-align: center;
3377 background-color: #eeeeee;
3377 background-color: #eeeeee;
3378 border: 1px solid #cccccc;
3378 border: 1px solid #cccccc;
3379 border-radius: 4px;
3379 border-radius: 2px;
3380 }
3380 }
3381 .input-group-addon.input-sm {
3381 .input-group-addon.input-sm {
3382 padding: 5px 10px;
3382 padding: 5px 10px;
3383 font-size: 12px;
3383 font-size: 12px;
3384 border-radius: 3px;
3384 border-radius: 2px;
3385 }
3385 }
3386 .input-group-addon.input-lg {
3386 .input-group-addon.input-lg {
3387 padding: 10px 16px;
3387 padding: 10px 16px;
3388 font-size: 17px;
3388 font-size: 17px;
3389 border-radius: 6px;
3389 border-radius: 6px;
3390 }
3390 }
3391 .input-group-addon input[type="radio"],
3391 .input-group-addon input[type="radio"],
3392 .input-group-addon input[type="checkbox"] {
3392 .input-group-addon input[type="checkbox"] {
3393 margin-top: 0;
3393 margin-top: 0;
3394 }
3394 }
3395 .input-group .form-control:first-child,
3395 .input-group .form-control:first-child,
3396 .input-group-addon:first-child,
3396 .input-group-addon:first-child,
3397 .input-group-btn:first-child > .btn,
3397 .input-group-btn:first-child > .btn,
3398 .input-group-btn:first-child > .btn-group > .btn,
3398 .input-group-btn:first-child > .btn-group > .btn,
3399 .input-group-btn:first-child > .dropdown-toggle,
3399 .input-group-btn:first-child > .dropdown-toggle,
3400 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
3400 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
3401 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
3401 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
3402 border-bottom-right-radius: 0;
3402 border-bottom-right-radius: 0;
3403 border-top-right-radius: 0;
3403 border-top-right-radius: 0;
3404 }
3404 }
3405 .input-group-addon:first-child {
3405 .input-group-addon:first-child {
3406 border-right: 0;
3406 border-right: 0;
3407 }
3407 }
3408 .input-group .form-control:last-child,
3408 .input-group .form-control:last-child,
3409 .input-group-addon:last-child,
3409 .input-group-addon:last-child,
3410 .input-group-btn:last-child > .btn,
3410 .input-group-btn:last-child > .btn,
3411 .input-group-btn:last-child > .btn-group > .btn,
3411 .input-group-btn:last-child > .btn-group > .btn,
3412 .input-group-btn:last-child > .dropdown-toggle,
3412 .input-group-btn:last-child > .dropdown-toggle,
3413 .input-group-btn:first-child > .btn:not(:first-child),
3413 .input-group-btn:first-child > .btn:not(:first-child),
3414 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
3414 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
3415 border-bottom-left-radius: 0;
3415 border-bottom-left-radius: 0;
3416 border-top-left-radius: 0;
3416 border-top-left-radius: 0;
3417 }
3417 }
3418 .input-group-addon:last-child {
3418 .input-group-addon:last-child {
3419 border-left: 0;
3419 border-left: 0;
3420 }
3420 }
3421 .input-group-btn {
3421 .input-group-btn {
3422 position: relative;
3422 position: relative;
3423 font-size: 0;
3423 font-size: 0;
3424 white-space: nowrap;
3424 white-space: nowrap;
3425 }
3425 }
3426 .input-group-btn > .btn {
3426 .input-group-btn > .btn {
3427 position: relative;
3427 position: relative;
3428 }
3428 }
3429 .input-group-btn > .btn + .btn {
3429 .input-group-btn > .btn + .btn {
3430 margin-left: -1px;
3430 margin-left: -1px;
3431 }
3431 }
3432 .input-group-btn > .btn:hover,
3432 .input-group-btn > .btn:hover,
3433 .input-group-btn > .btn:focus,
3433 .input-group-btn > .btn:focus,
3434 .input-group-btn > .btn:active {
3434 .input-group-btn > .btn:active {
3435 z-index: 2;
3435 z-index: 2;
3436 }
3436 }
3437 .input-group-btn:first-child > .btn,
3437 .input-group-btn:first-child > .btn,
3438 .input-group-btn:first-child > .btn-group {
3438 .input-group-btn:first-child > .btn-group {
3439 margin-right: -1px;
3439 margin-right: -1px;
3440 }
3440 }
3441 .input-group-btn:last-child > .btn,
3441 .input-group-btn:last-child > .btn,
3442 .input-group-btn:last-child > .btn-group {
3442 .input-group-btn:last-child > .btn-group {
3443 margin-left: -1px;
3443 margin-left: -1px;
3444 }
3444 }
3445 .nav {
3445 .nav {
3446 margin-bottom: 0;
3446 margin-bottom: 0;
3447 padding-left: 0;
3447 padding-left: 0;
3448 list-style: none;
3448 list-style: none;
3449 }
3449 }
3450 .nav > li {
3450 .nav > li {
3451 position: relative;
3451 position: relative;
3452 display: block;
3452 display: block;
3453 }
3453 }
3454 .nav > li > a {
3454 .nav > li > a {
3455 position: relative;
3455 position: relative;
3456 display: block;
3456 display: block;
3457 padding: 10px 15px;
3457 padding: 10px 15px;
3458 }
3458 }
3459 .nav > li > a:hover,
3459 .nav > li > a:hover,
3460 .nav > li > a:focus {
3460 .nav > li > a:focus {
3461 text-decoration: none;
3461 text-decoration: none;
3462 background-color: #eeeeee;
3462 background-color: #eeeeee;
3463 }
3463 }
3464 .nav > li.disabled > a {
3464 .nav > li.disabled > a {
3465 color: #999999;
3465 color: #999999;
3466 }
3466 }
3467 .nav > li.disabled > a:hover,
3467 .nav > li.disabled > a:hover,
3468 .nav > li.disabled > a:focus {
3468 .nav > li.disabled > a:focus {
3469 color: #999999;
3469 color: #999999;
3470 text-decoration: none;
3470 text-decoration: none;
3471 background-color: transparent;
3471 background-color: transparent;
3472 cursor: not-allowed;
3472 cursor: not-allowed;
3473 }
3473 }
3474 .nav .open > a,
3474 .nav .open > a,
3475 .nav .open > a:hover,
3475 .nav .open > a:hover,
3476 .nav .open > a:focus {
3476 .nav .open > a:focus {
3477 background-color: #eeeeee;
3477 background-color: #eeeeee;
3478 border-color: #428bca;
3478 border-color: #428bca;
3479 }
3479 }
3480 .nav .nav-divider {
3480 .nav .nav-divider {
3481 height: 1px;
3481 height: 1px;
3482 margin: 8px 0;
3482 margin: 8px 0;
3483 overflow: hidden;
3483 overflow: hidden;
3484 background-color: #e5e5e5;
3484 background-color: #e5e5e5;
3485 }
3485 }
3486 .nav > li > a > img {
3486 .nav > li > a > img {
3487 max-width: none;
3487 max-width: none;
3488 }
3488 }
3489 .nav-tabs {
3489 .nav-tabs {
3490 border-bottom: 1px solid #dddddd;
3490 border-bottom: 1px solid #dddddd;
3491 }
3491 }
3492 .nav-tabs > li {
3492 .nav-tabs > li {
3493 float: left;
3493 float: left;
3494 margin-bottom: -1px;
3494 margin-bottom: -1px;
3495 }
3495 }
3496 .nav-tabs > li > a {
3496 .nav-tabs > li > a {
3497 margin-right: 2px;
3497 margin-right: 2px;
3498 line-height: 1.42857143;
3498 line-height: 1.42857143;
3499 border: 1px solid transparent;
3499 border: 1px solid transparent;
3500 border-radius: 4px 4px 0 0;
3500 border-radius: 2px 2px 0 0;
3501 }
3501 }
3502 .nav-tabs > li > a:hover {
3502 .nav-tabs > li > a:hover {
3503 border-color: #eeeeee #eeeeee #dddddd;
3503 border-color: #eeeeee #eeeeee #dddddd;
3504 }
3504 }
3505 .nav-tabs > li.active > a,
3505 .nav-tabs > li.active > a,
3506 .nav-tabs > li.active > a:hover,
3506 .nav-tabs > li.active > a:hover,
3507 .nav-tabs > li.active > a:focus {
3507 .nav-tabs > li.active > a:focus {
3508 color: #555555;
3508 color: #555555;
3509 background-color: #ffffff;
3509 background-color: #ffffff;
3510 border: 1px solid #dddddd;
3510 border: 1px solid #dddddd;
3511 border-bottom-color: transparent;
3511 border-bottom-color: transparent;
3512 cursor: default;
3512 cursor: default;
3513 }
3513 }
3514 .nav-tabs.nav-justified {
3514 .nav-tabs.nav-justified {
3515 width: 100%;
3515 width: 100%;
3516 border-bottom: 0;
3516 border-bottom: 0;
3517 }
3517 }
3518 .nav-tabs.nav-justified > li {
3518 .nav-tabs.nav-justified > li {
3519 float: none;
3519 float: none;
3520 }
3520 }
3521 .nav-tabs.nav-justified > li > a {
3521 .nav-tabs.nav-justified > li > a {
3522 text-align: center;
3522 text-align: center;
3523 margin-bottom: 5px;
3523 margin-bottom: 5px;
3524 }
3524 }
3525 .nav-tabs.nav-justified > .dropdown .dropdown-menu {
3525 .nav-tabs.nav-justified > .dropdown .dropdown-menu {
3526 top: auto;
3526 top: auto;
3527 left: auto;
3527 left: auto;
3528 }
3528 }
3529 @media (min-width: 768px) {
3529 @media (min-width: 768px) {
3530 .nav-tabs.nav-justified > li {
3530 .nav-tabs.nav-justified > li {
3531 display: table-cell;
3531 display: table-cell;
3532 width: 1%;
3532 width: 1%;
3533 }
3533 }
3534 .nav-tabs.nav-justified > li > a {
3534 .nav-tabs.nav-justified > li > a {
3535 margin-bottom: 0;
3535 margin-bottom: 0;
3536 }
3536 }
3537 }
3537 }
3538 .nav-tabs.nav-justified > li > a {
3538 .nav-tabs.nav-justified > li > a {
3539 margin-right: 0;
3539 margin-right: 0;
3540 border-radius: 4px;
3540 border-radius: 2px;
3541 }
3541 }
3542 .nav-tabs.nav-justified > .active > a,
3542 .nav-tabs.nav-justified > .active > a,
3543 .nav-tabs.nav-justified > .active > a:hover,
3543 .nav-tabs.nav-justified > .active > a:hover,
3544 .nav-tabs.nav-justified > .active > a:focus {
3544 .nav-tabs.nav-justified > .active > a:focus {
3545 border: 1px solid #dddddd;
3545 border: 1px solid #dddddd;
3546 }
3546 }
3547 @media (min-width: 768px) {
3547 @media (min-width: 768px) {
3548 .nav-tabs.nav-justified > li > a {
3548 .nav-tabs.nav-justified > li > a {
3549 border-bottom: 1px solid #dddddd;
3549 border-bottom: 1px solid #dddddd;
3550 border-radius: 4px 4px 0 0;
3550 border-radius: 2px 2px 0 0;
3551 }
3551 }
3552 .nav-tabs.nav-justified > .active > a,
3552 .nav-tabs.nav-justified > .active > a,
3553 .nav-tabs.nav-justified > .active > a:hover,
3553 .nav-tabs.nav-justified > .active > a:hover,
3554 .nav-tabs.nav-justified > .active > a:focus {
3554 .nav-tabs.nav-justified > .active > a:focus {
3555 border-bottom-color: #ffffff;
3555 border-bottom-color: #ffffff;
3556 }
3556 }
3557 }
3557 }
3558 .nav-pills > li {
3558 .nav-pills > li {
3559 float: left;
3559 float: left;
3560 }
3560 }
3561 .nav-pills > li > a {
3561 .nav-pills > li > a {
3562 border-radius: 4px;
3562 border-radius: 2px;
3563 }
3563 }
3564 .nav-pills > li + li {
3564 .nav-pills > li + li {
3565 margin-left: 2px;
3565 margin-left: 2px;
3566 }
3566 }
3567 .nav-pills > li.active > a,
3567 .nav-pills > li.active > a,
3568 .nav-pills > li.active > a:hover,
3568 .nav-pills > li.active > a:hover,
3569 .nav-pills > li.active > a:focus {
3569 .nav-pills > li.active > a:focus {
3570 color: #ffffff;
3570 color: #ffffff;
3571 background-color: #428bca;
3571 background-color: #428bca;
3572 }
3572 }
3573 .nav-stacked > li {
3573 .nav-stacked > li {
3574 float: none;
3574 float: none;
3575 }
3575 }
3576 .nav-stacked > li + li {
3576 .nav-stacked > li + li {
3577 margin-top: 2px;
3577 margin-top: 2px;
3578 margin-left: 0;
3578 margin-left: 0;
3579 }
3579 }
3580 .nav-justified {
3580 .nav-justified {
3581 width: 100%;
3581 width: 100%;
3582 }
3582 }
3583 .nav-justified > li {
3583 .nav-justified > li {
3584 float: none;
3584 float: none;
3585 }
3585 }
3586 .nav-justified > li > a {
3586 .nav-justified > li > a {
3587 text-align: center;
3587 text-align: center;
3588 margin-bottom: 5px;
3588 margin-bottom: 5px;
3589 }
3589 }
3590 .nav-justified > .dropdown .dropdown-menu {
3590 .nav-justified > .dropdown .dropdown-menu {
3591 top: auto;
3591 top: auto;
3592 left: auto;
3592 left: auto;
3593 }
3593 }
3594 @media (min-width: 768px) {
3594 @media (min-width: 768px) {
3595 .nav-justified > li {
3595 .nav-justified > li {
3596 display: table-cell;
3596 display: table-cell;
3597 width: 1%;
3597 width: 1%;
3598 }
3598 }
3599 .nav-justified > li > a {
3599 .nav-justified > li > a {
3600 margin-bottom: 0;
3600 margin-bottom: 0;
3601 }
3601 }
3602 }
3602 }
3603 .nav-tabs-justified {
3603 .nav-tabs-justified {
3604 border-bottom: 0;
3604 border-bottom: 0;
3605 }
3605 }
3606 .nav-tabs-justified > li > a {
3606 .nav-tabs-justified > li > a {
3607 margin-right: 0;
3607 margin-right: 0;
3608 border-radius: 4px;
3608 border-radius: 2px;
3609 }
3609 }
3610 .nav-tabs-justified > .active > a,
3610 .nav-tabs-justified > .active > a,
3611 .nav-tabs-justified > .active > a:hover,
3611 .nav-tabs-justified > .active > a:hover,
3612 .nav-tabs-justified > .active > a:focus {
3612 .nav-tabs-justified > .active > a:focus {
3613 border: 1px solid #dddddd;
3613 border: 1px solid #dddddd;
3614 }
3614 }
3615 @media (min-width: 768px) {
3615 @media (min-width: 768px) {
3616 .nav-tabs-justified > li > a {
3616 .nav-tabs-justified > li > a {
3617 border-bottom: 1px solid #dddddd;
3617 border-bottom: 1px solid #dddddd;
3618 border-radius: 4px 4px 0 0;
3618 border-radius: 2px 2px 0 0;
3619 }
3619 }
3620 .nav-tabs-justified > .active > a,
3620 .nav-tabs-justified > .active > a,
3621 .nav-tabs-justified > .active > a:hover,
3621 .nav-tabs-justified > .active > a:hover,
3622 .nav-tabs-justified > .active > a:focus {
3622 .nav-tabs-justified > .active > a:focus {
3623 border-bottom-color: #ffffff;
3623 border-bottom-color: #ffffff;
3624 }
3624 }
3625 }
3625 }
3626 .tab-content > .tab-pane {
3626 .tab-content > .tab-pane {
3627 display: none;
3627 display: none;
3628 }
3628 }
3629 .tab-content > .active {
3629 .tab-content > .active {
3630 display: block;
3630 display: block;
3631 }
3631 }
3632 .nav-tabs .dropdown-menu {
3632 .nav-tabs .dropdown-menu {
3633 margin-top: -1px;
3633 margin-top: -1px;
3634 border-top-right-radius: 0;
3634 border-top-right-radius: 0;
3635 border-top-left-radius: 0;
3635 border-top-left-radius: 0;
3636 }
3636 }
3637 .navbar {
3637 .navbar {
3638 position: relative;
3638 position: relative;
3639 min-height: 30px;
3639 min-height: 30px;
3640 margin-bottom: 18px;
3640 margin-bottom: 18px;
3641 border: 1px solid transparent;
3641 border: 1px solid transparent;
3642 }
3642 }
3643 @media (min-width: 540px) {
3643 @media (min-width: 540px) {
3644 .navbar {
3644 .navbar {
3645 border-radius: 4px;
3645 border-radius: 2px;
3646 }
3646 }
3647 }
3647 }
3648 @media (min-width: 540px) {
3648 @media (min-width: 540px) {
3649 .navbar-header {
3649 .navbar-header {
3650 float: left;
3650 float: left;
3651 }
3651 }
3652 }
3652 }
3653 .navbar-collapse {
3653 .navbar-collapse {
3654 max-height: 340px;
3654 max-height: 340px;
3655 overflow-x: visible;
3655 overflow-x: visible;
3656 padding-right: 15px;
3656 padding-right: 0px;
3657 padding-left: 15px;
3657 padding-left: 0px;
3658 border-top: 1px solid transparent;
3658 border-top: 1px solid transparent;
3659 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
3659 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
3660 -webkit-overflow-scrolling: touch;
3660 -webkit-overflow-scrolling: touch;
3661 }
3661 }
3662 .navbar-collapse.in {
3662 .navbar-collapse.in {
3663 overflow-y: auto;
3663 overflow-y: auto;
3664 }
3664 }
3665 @media (min-width: 540px) {
3665 @media (min-width: 540px) {
3666 .navbar-collapse {
3666 .navbar-collapse {
3667 width: auto;
3667 width: auto;
3668 border-top: 0;
3668 border-top: 0;
3669 box-shadow: none;
3669 box-shadow: none;
3670 }
3670 }
3671 .navbar-collapse.collapse {
3671 .navbar-collapse.collapse {
3672 display: block !important;
3672 display: block !important;
3673 height: auto !important;
3673 height: auto !important;
3674 padding-bottom: 0;
3674 padding-bottom: 0;
3675 overflow: visible !important;
3675 overflow: visible !important;
3676 }
3676 }
3677 .navbar-collapse.in {
3677 .navbar-collapse.in {
3678 overflow-y: visible;
3678 overflow-y: visible;
3679 }
3679 }
3680 .navbar-fixed-top .navbar-collapse,
3680 .navbar-fixed-top .navbar-collapse,
3681 .navbar-static-top .navbar-collapse,
3681 .navbar-static-top .navbar-collapse,
3682 .navbar-fixed-bottom .navbar-collapse {
3682 .navbar-fixed-bottom .navbar-collapse {
3683 padding-left: 0;
3683 padding-left: 0;
3684 padding-right: 0;
3684 padding-right: 0;
3685 }
3685 }
3686 }
3686 }
3687 .container > .navbar-header,
3687 .container > .navbar-header,
3688 .container-fluid > .navbar-header,
3688 .container-fluid > .navbar-header,
3689 .container > .navbar-collapse,
3689 .container > .navbar-collapse,
3690 .container-fluid > .navbar-collapse {
3690 .container-fluid > .navbar-collapse {
3691 margin-right: -15px;
3691 margin-right: 0px;
3692 margin-left: -15px;
3692 margin-left: 0px;
3693 }
3693 }
3694 @media (min-width: 540px) {
3694 @media (min-width: 540px) {
3695 .container > .navbar-header,
3695 .container > .navbar-header,
3696 .container-fluid > .navbar-header,
3696 .container-fluid > .navbar-header,
3697 .container > .navbar-collapse,
3697 .container > .navbar-collapse,
3698 .container-fluid > .navbar-collapse {
3698 .container-fluid > .navbar-collapse {
3699 margin-right: 0;
3699 margin-right: 0;
3700 margin-left: 0;
3700 margin-left: 0;
3701 }
3701 }
3702 }
3702 }
3703 .navbar-static-top {
3703 .navbar-static-top {
3704 z-index: 1000;
3704 z-index: 1000;
3705 border-width: 0 0 1px;
3705 border-width: 0 0 1px;
3706 }
3706 }
3707 @media (min-width: 540px) {
3707 @media (min-width: 540px) {
3708 .navbar-static-top {
3708 .navbar-static-top {
3709 border-radius: 0;
3709 border-radius: 0;
3710 }
3710 }
3711 }
3711 }
3712 .navbar-fixed-top,
3712 .navbar-fixed-top,
3713 .navbar-fixed-bottom {
3713 .navbar-fixed-bottom {
3714 position: fixed;
3714 position: fixed;
3715 right: 0;
3715 right: 0;
3716 left: 0;
3716 left: 0;
3717 z-index: 1030;
3717 z-index: 1030;
3718 }
3718 }
3719 @media (min-width: 540px) {
3719 @media (min-width: 540px) {
3720 .navbar-fixed-top,
3720 .navbar-fixed-top,
3721 .navbar-fixed-bottom {
3721 .navbar-fixed-bottom {
3722 border-radius: 0;
3722 border-radius: 0;
3723 }
3723 }
3724 }
3724 }
3725 .navbar-fixed-top {
3725 .navbar-fixed-top {
3726 top: 0;
3726 top: 0;
3727 border-width: 0 0 1px;
3727 border-width: 0 0 1px;
3728 }
3728 }
3729 .navbar-fixed-bottom {
3729 .navbar-fixed-bottom {
3730 bottom: 0;
3730 bottom: 0;
3731 margin-bottom: 0;
3731 margin-bottom: 0;
3732 border-width: 1px 0 0;
3732 border-width: 1px 0 0;
3733 }
3733 }
3734 .navbar-brand {
3734 .navbar-brand {
3735 float: left;
3735 float: left;
3736 padding: 6px 15px;
3736 padding: 6px 0px;
3737 font-size: 17px;
3737 font-size: 17px;
3738 line-height: 18px;
3738 line-height: 18px;
3739 height: 30px;
3739 height: 30px;
3740 }
3740 }
3741 .navbar-brand:hover,
3741 .navbar-brand:hover,
3742 .navbar-brand:focus {
3742 .navbar-brand:focus {
3743 text-decoration: none;
3743 text-decoration: none;
3744 }
3744 }
3745 @media (min-width: 540px) {
3745 @media (min-width: 540px) {
3746 .navbar > .container .navbar-brand,
3746 .navbar > .container .navbar-brand,
3747 .navbar > .container-fluid .navbar-brand {
3747 .navbar > .container-fluid .navbar-brand {
3748 margin-left: -15px;
3748 margin-left: 0px;
3749 }
3749 }
3750 }
3750 }
3751 .navbar-toggle {
3751 .navbar-toggle {
3752 position: relative;
3752 position: relative;
3753 float: right;
3753 float: right;
3754 margin-right: 15px;
3754 margin-right: 0px;
3755 padding: 9px 10px;
3755 padding: 9px 10px;
3756 margin-top: -2px;
3756 margin-top: -2px;
3757 margin-bottom: -2px;
3757 margin-bottom: -2px;
3758 background-color: transparent;
3758 background-color: transparent;
3759 background-image: none;
3759 background-image: none;
3760 border: 1px solid transparent;
3760 border: 1px solid transparent;
3761 border-radius: 4px;
3761 border-radius: 2px;
3762 }
3762 }
3763 .navbar-toggle:focus {
3763 .navbar-toggle:focus {
3764 outline: none;
3764 outline: none;
3765 }
3765 }
3766 .navbar-toggle .icon-bar {
3766 .navbar-toggle .icon-bar {
3767 display: block;
3767 display: block;
3768 width: 22px;
3768 width: 22px;
3769 height: 2px;
3769 height: 2px;
3770 border-radius: 1px;
3770 border-radius: 1px;
3771 }
3771 }
3772 .navbar-toggle .icon-bar + .icon-bar {
3772 .navbar-toggle .icon-bar + .icon-bar {
3773 margin-top: 4px;
3773 margin-top: 4px;
3774 }
3774 }
3775 @media (min-width: 540px) {
3775 @media (min-width: 540px) {
3776 .navbar-toggle {
3776 .navbar-toggle {
3777 display: none;
3777 display: none;
3778 }
3778 }
3779 }
3779 }
3780 .navbar-nav {
3780 .navbar-nav {
3781 margin: 3px -15px;
3781 margin: 3px 0px;
3782 }
3782 }
3783 .navbar-nav > li > a {
3783 .navbar-nav > li > a {
3784 padding-top: 10px;
3784 padding-top: 10px;
3785 padding-bottom: 10px;
3785 padding-bottom: 10px;
3786 line-height: 18px;
3786 line-height: 18px;
3787 }
3787 }
3788 @media (max-width: 539px) {
3788 @media (max-width: 539px) {
3789 .navbar-nav .open .dropdown-menu {
3789 .navbar-nav .open .dropdown-menu {
3790 position: static;
3790 position: static;
3791 float: none;
3791 float: none;
3792 width: auto;
3792 width: auto;
3793 margin-top: 0;
3793 margin-top: 0;
3794 background-color: transparent;
3794 background-color: transparent;
3795 border: 0;
3795 border: 0;
3796 box-shadow: none;
3796 box-shadow: none;
3797 }
3797 }
3798 .navbar-nav .open .dropdown-menu > li > a,
3798 .navbar-nav .open .dropdown-menu > li > a,
3799 .navbar-nav .open .dropdown-menu .dropdown-header {
3799 .navbar-nav .open .dropdown-menu .dropdown-header {
3800 padding: 5px 15px 5px 25px;
3800 padding: 5px 15px 5px 25px;
3801 }
3801 }
3802 .navbar-nav .open .dropdown-menu > li > a {
3802 .navbar-nav .open .dropdown-menu > li > a {
3803 line-height: 18px;
3803 line-height: 18px;
3804 }
3804 }
3805 .navbar-nav .open .dropdown-menu > li > a:hover,
3805 .navbar-nav .open .dropdown-menu > li > a:hover,
3806 .navbar-nav .open .dropdown-menu > li > a:focus {
3806 .navbar-nav .open .dropdown-menu > li > a:focus {
3807 background-image: none;
3807 background-image: none;
3808 }
3808 }
3809 }
3809 }
3810 @media (min-width: 540px) {
3810 @media (min-width: 540px) {
3811 .navbar-nav {
3811 .navbar-nav {
3812 float: left;
3812 float: left;
3813 margin: 0;
3813 margin: 0;
3814 }
3814 }
3815 .navbar-nav > li {
3815 .navbar-nav > li {
3816 float: left;
3816 float: left;
3817 }
3817 }
3818 .navbar-nav > li > a {
3818 .navbar-nav > li > a {
3819 padding-top: 6px;
3819 padding-top: 6px;
3820 padding-bottom: 6px;
3820 padding-bottom: 6px;
3821 }
3821 }
3822 .navbar-nav.navbar-right:last-child {
3822 .navbar-nav.navbar-right:last-child {
3823 margin-right: -15px;
3823 margin-right: 0px;
3824 }
3824 }
3825 }
3825 }
3826 @media (min-width: 540px) {
3826 @media (min-width: 540px) {
3827 .navbar-left {
3827 .navbar-left {
3828 float: left !important;
3828 float: left !important;
3829 float: left;
3829 float: left;
3830 }
3830 }
3831 .navbar-right {
3831 .navbar-right {
3832 float: right !important;
3832 float: right !important;
3833 float: right;
3833 float: right;
3834 }
3834 }
3835 }
3835 }
3836 .navbar-form {
3836 .navbar-form {
3837 margin-left: -15px;
3837 margin-left: 0px;
3838 margin-right: -15px;
3838 margin-right: 0px;
3839 padding: 10px 15px;
3839 padding: 10px 0px;
3840 border-top: 1px solid transparent;
3840 border-top: 1px solid transparent;
3841 border-bottom: 1px solid transparent;
3841 border-bottom: 1px solid transparent;
3842 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3842 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3843 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3843 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3844 margin-top: -1px;
3844 margin-top: -1px;
3845 margin-bottom: -1px;
3845 margin-bottom: -1px;
3846 }
3846 }
3847 @media (min-width: 768px) {
3847 @media (min-width: 768px) {
3848 .navbar-form .form-group {
3848 .navbar-form .form-group {
3849 display: inline-block;
3849 display: inline-block;
3850 margin-bottom: 0;
3850 margin-bottom: 0;
3851 vertical-align: middle;
3851 vertical-align: middle;
3852 }
3852 }
3853 .navbar-form .form-control {
3853 .navbar-form .form-control {
3854 display: inline-block;
3854 display: inline-block;
3855 width: auto;
3855 width: auto;
3856 vertical-align: middle;
3856 vertical-align: middle;
3857 }
3857 }
3858 .navbar-form .input-group > .form-control {
3858 .navbar-form .input-group > .form-control {
3859 width: 100%;
3859 width: 100%;
3860 }
3860 }
3861 .navbar-form .control-label {
3861 .navbar-form .control-label {
3862 margin-bottom: 0;
3862 margin-bottom: 0;
3863 vertical-align: middle;
3863 vertical-align: middle;
3864 }
3864 }
3865 .navbar-form .radio,
3865 .navbar-form .radio,
3866 .navbar-form .checkbox {
3866 .navbar-form .checkbox {
3867 display: inline-block;
3867 display: inline-block;
3868 margin-top: 0;
3868 margin-top: 0;
3869 margin-bottom: 0;
3869 margin-bottom: 0;
3870 padding-left: 0;
3870 padding-left: 0;
3871 vertical-align: middle;
3871 vertical-align: middle;
3872 }
3872 }
3873 .navbar-form .radio input[type="radio"],
3873 .navbar-form .radio input[type="radio"],
3874 .navbar-form .checkbox input[type="checkbox"] {
3874 .navbar-form .checkbox input[type="checkbox"] {
3875 float: none;
3875 float: none;
3876 margin-left: 0;
3876 margin-left: 0;
3877 }
3877 }
3878 .navbar-form .has-feedback .form-control-feedback {
3878 .navbar-form .has-feedback .form-control-feedback {
3879 top: 0;
3879 top: 0;
3880 }
3880 }
3881 }
3881 }
3882 @media (max-width: 539px) {
3882 @media (max-width: 539px) {
3883 .navbar-form .form-group {
3883 .navbar-form .form-group {
3884 margin-bottom: 5px;
3884 margin-bottom: 5px;
3885 }
3885 }
3886 }
3886 }
3887 @media (min-width: 540px) {
3887 @media (min-width: 540px) {
3888 .navbar-form {
3888 .navbar-form {
3889 width: auto;
3889 width: auto;
3890 border: 0;
3890 border: 0;
3891 margin-left: 0;
3891 margin-left: 0;
3892 margin-right: 0;
3892 margin-right: 0;
3893 padding-top: 0;
3893 padding-top: 0;
3894 padding-bottom: 0;
3894 padding-bottom: 0;
3895 -webkit-box-shadow: none;
3895 -webkit-box-shadow: none;
3896 box-shadow: none;
3896 box-shadow: none;
3897 }
3897 }
3898 .navbar-form.navbar-right:last-child {
3898 .navbar-form.navbar-right:last-child {
3899 margin-right: -15px;
3899 margin-right: 0px;
3900 }
3900 }
3901 }
3901 }
3902 .navbar-nav > li > .dropdown-menu {
3902 .navbar-nav > li > .dropdown-menu {
3903 margin-top: 0;
3903 margin-top: 0;
3904 border-top-right-radius: 0;
3904 border-top-right-radius: 0;
3905 border-top-left-radius: 0;
3905 border-top-left-radius: 0;
3906 }
3906 }
3907 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
3907 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
3908 border-bottom-right-radius: 0;
3908 border-bottom-right-radius: 0;
3909 border-bottom-left-radius: 0;
3909 border-bottom-left-radius: 0;
3910 }
3910 }
3911 .navbar-btn {
3911 .navbar-btn {
3912 margin-top: -1px;
3912 margin-top: -1px;
3913 margin-bottom: -1px;
3913 margin-bottom: -1px;
3914 }
3914 }
3915 .navbar-btn.btn-sm {
3915 .navbar-btn.btn-sm {
3916 margin-top: 0px;
3916 margin-top: 0px;
3917 margin-bottom: 0px;
3917 margin-bottom: 0px;
3918 }
3918 }
3919 .navbar-btn.btn-xs {
3919 .navbar-btn.btn-xs {
3920 margin-top: 4px;
3920 margin-top: 4px;
3921 margin-bottom: 4px;
3921 margin-bottom: 4px;
3922 }
3922 }
3923 .navbar-text {
3923 .navbar-text {
3924 margin-top: 6px;
3924 margin-top: 6px;
3925 margin-bottom: 6px;
3925 margin-bottom: 6px;
3926 }
3926 }
3927 @media (min-width: 540px) {
3927 @media (min-width: 540px) {
3928 .navbar-text {
3928 .navbar-text {
3929 float: left;
3929 float: left;
3930 margin-left: 15px;
3930 margin-left: 0px;
3931 margin-right: 15px;
3931 margin-right: 0px;
3932 }
3932 }
3933 .navbar-text.navbar-right:last-child {
3933 .navbar-text.navbar-right:last-child {
3934 margin-right: 0;
3934 margin-right: 0;
3935 }
3935 }
3936 }
3936 }
3937 .navbar-default {
3937 .navbar-default {
3938 background-color: #f8f8f8;
3938 background-color: #f8f8f8;
3939 border-color: #e7e7e7;
3939 border-color: #e7e7e7;
3940 }
3940 }
3941 .navbar-default .navbar-brand {
3941 .navbar-default .navbar-brand {
3942 color: #777777;
3942 color: #777777;
3943 }
3943 }
3944 .navbar-default .navbar-brand:hover,
3944 .navbar-default .navbar-brand:hover,
3945 .navbar-default .navbar-brand:focus {
3945 .navbar-default .navbar-brand:focus {
3946 color: #5e5e5e;
3946 color: #5e5e5e;
3947 background-color: transparent;
3947 background-color: transparent;
3948 }
3948 }
3949 .navbar-default .navbar-text {
3949 .navbar-default .navbar-text {
3950 color: #777777;
3950 color: #777777;
3951 }
3951 }
3952 .navbar-default .navbar-nav > li > a {
3952 .navbar-default .navbar-nav > li > a {
3953 color: #777777;
3953 color: #777777;
3954 }
3954 }
3955 .navbar-default .navbar-nav > li > a:hover,
3955 .navbar-default .navbar-nav > li > a:hover,
3956 .navbar-default .navbar-nav > li > a:focus {
3956 .navbar-default .navbar-nav > li > a:focus {
3957 color: #333333;
3957 color: #333333;
3958 background-color: transparent;
3958 background-color: transparent;
3959 }
3959 }
3960 .navbar-default .navbar-nav > .active > a,
3960 .navbar-default .navbar-nav > .active > a,
3961 .navbar-default .navbar-nav > .active > a:hover,
3961 .navbar-default .navbar-nav > .active > a:hover,
3962 .navbar-default .navbar-nav > .active > a:focus {
3962 .navbar-default .navbar-nav > .active > a:focus {
3963 color: #555555;
3963 color: #555555;
3964 background-color: #e7e7e7;
3964 background-color: #e7e7e7;
3965 }
3965 }
3966 .navbar-default .navbar-nav > .disabled > a,
3966 .navbar-default .navbar-nav > .disabled > a,
3967 .navbar-default .navbar-nav > .disabled > a:hover,
3967 .navbar-default .navbar-nav > .disabled > a:hover,
3968 .navbar-default .navbar-nav > .disabled > a:focus {
3968 .navbar-default .navbar-nav > .disabled > a:focus {
3969 color: #cccccc;
3969 color: #cccccc;
3970 background-color: transparent;
3970 background-color: transparent;
3971 }
3971 }
3972 .navbar-default .navbar-toggle {
3972 .navbar-default .navbar-toggle {
3973 border-color: #dddddd;
3973 border-color: #dddddd;
3974 }
3974 }
3975 .navbar-default .navbar-toggle:hover,
3975 .navbar-default .navbar-toggle:hover,
3976 .navbar-default .navbar-toggle:focus {
3976 .navbar-default .navbar-toggle:focus {
3977 background-color: #dddddd;
3977 background-color: #dddddd;
3978 }
3978 }
3979 .navbar-default .navbar-toggle .icon-bar {
3979 .navbar-default .navbar-toggle .icon-bar {
3980 background-color: #888888;
3980 background-color: #888888;
3981 }
3981 }
3982 .navbar-default .navbar-collapse,
3982 .navbar-default .navbar-collapse,
3983 .navbar-default .navbar-form {
3983 .navbar-default .navbar-form {
3984 border-color: #e7e7e7;
3984 border-color: #e7e7e7;
3985 }
3985 }
3986 .navbar-default .navbar-nav > .open > a,
3986 .navbar-default .navbar-nav > .open > a,
3987 .navbar-default .navbar-nav > .open > a:hover,
3987 .navbar-default .navbar-nav > .open > a:hover,
3988 .navbar-default .navbar-nav > .open > a:focus {
3988 .navbar-default .navbar-nav > .open > a:focus {
3989 background-color: #e7e7e7;
3989 background-color: #e7e7e7;
3990 color: #555555;
3990 color: #555555;
3991 }
3991 }
3992 @media (max-width: 539px) {
3992 @media (max-width: 539px) {
3993 .navbar-default .navbar-nav .open .dropdown-menu > li > a {
3993 .navbar-default .navbar-nav .open .dropdown-menu > li > a {
3994 color: #777777;
3994 color: #777777;
3995 }
3995 }
3996 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
3996 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
3997 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
3997 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
3998 color: #333333;
3998 color: #333333;
3999 background-color: transparent;
3999 background-color: transparent;
4000 }
4000 }
4001 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
4001 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
4002 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
4002 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
4003 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
4003 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
4004 color: #555555;
4004 color: #555555;
4005 background-color: #e7e7e7;
4005 background-color: #e7e7e7;
4006 }
4006 }
4007 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
4007 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
4008 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4008 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4009 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4009 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4010 color: #cccccc;
4010 color: #cccccc;
4011 background-color: transparent;
4011 background-color: transparent;
4012 }
4012 }
4013 }
4013 }
4014 .navbar-default .navbar-link {
4014 .navbar-default .navbar-link {
4015 color: #777777;
4015 color: #777777;
4016 }
4016 }
4017 .navbar-default .navbar-link:hover {
4017 .navbar-default .navbar-link:hover {
4018 color: #333333;
4018 color: #333333;
4019 }
4019 }
4020 .navbar-inverse {
4020 .navbar-inverse {
4021 background-color: #222222;
4021 background-color: #222222;
4022 border-color: #080808;
4022 border-color: #080808;
4023 }
4023 }
4024 .navbar-inverse .navbar-brand {
4024 .navbar-inverse .navbar-brand {
4025 color: #999999;
4025 color: #999999;
4026 }
4026 }
4027 .navbar-inverse .navbar-brand:hover,
4027 .navbar-inverse .navbar-brand:hover,
4028 .navbar-inverse .navbar-brand:focus {
4028 .navbar-inverse .navbar-brand:focus {
4029 color: #ffffff;
4029 color: #ffffff;
4030 background-color: transparent;
4030 background-color: transparent;
4031 }
4031 }
4032 .navbar-inverse .navbar-text {
4032 .navbar-inverse .navbar-text {
4033 color: #999999;
4033 color: #999999;
4034 }
4034 }
4035 .navbar-inverse .navbar-nav > li > a {
4035 .navbar-inverse .navbar-nav > li > a {
4036 color: #999999;
4036 color: #999999;
4037 }
4037 }
4038 .navbar-inverse .navbar-nav > li > a:hover,
4038 .navbar-inverse .navbar-nav > li > a:hover,
4039 .navbar-inverse .navbar-nav > li > a:focus {
4039 .navbar-inverse .navbar-nav > li > a:focus {
4040 color: #ffffff;
4040 color: #ffffff;
4041 background-color: transparent;
4041 background-color: transparent;
4042 }
4042 }
4043 .navbar-inverse .navbar-nav > .active > a,
4043 .navbar-inverse .navbar-nav > .active > a,
4044 .navbar-inverse .navbar-nav > .active > a:hover,
4044 .navbar-inverse .navbar-nav > .active > a:hover,
4045 .navbar-inverse .navbar-nav > .active > a:focus {
4045 .navbar-inverse .navbar-nav > .active > a:focus {
4046 color: #ffffff;
4046 color: #ffffff;
4047 background-color: #080808;
4047 background-color: #080808;
4048 }
4048 }
4049 .navbar-inverse .navbar-nav > .disabled > a,
4049 .navbar-inverse .navbar-nav > .disabled > a,
4050 .navbar-inverse .navbar-nav > .disabled > a:hover,
4050 .navbar-inverse .navbar-nav > .disabled > a:hover,
4051 .navbar-inverse .navbar-nav > .disabled > a:focus {
4051 .navbar-inverse .navbar-nav > .disabled > a:focus {
4052 color: #444444;
4052 color: #444444;
4053 background-color: transparent;
4053 background-color: transparent;
4054 }
4054 }
4055 .navbar-inverse .navbar-toggle {
4055 .navbar-inverse .navbar-toggle {
4056 border-color: #333333;
4056 border-color: #333333;
4057 }
4057 }
4058 .navbar-inverse .navbar-toggle:hover,
4058 .navbar-inverse .navbar-toggle:hover,
4059 .navbar-inverse .navbar-toggle:focus {
4059 .navbar-inverse .navbar-toggle:focus {
4060 background-color: #333333;
4060 background-color: #333333;
4061 }
4061 }
4062 .navbar-inverse .navbar-toggle .icon-bar {
4062 .navbar-inverse .navbar-toggle .icon-bar {
4063 background-color: #ffffff;
4063 background-color: #ffffff;
4064 }
4064 }
4065 .navbar-inverse .navbar-collapse,
4065 .navbar-inverse .navbar-collapse,
4066 .navbar-inverse .navbar-form {
4066 .navbar-inverse .navbar-form {
4067 border-color: #101010;
4067 border-color: #101010;
4068 }
4068 }
4069 .navbar-inverse .navbar-nav > .open > a,
4069 .navbar-inverse .navbar-nav > .open > a,
4070 .navbar-inverse .navbar-nav > .open > a:hover,
4070 .navbar-inverse .navbar-nav > .open > a:hover,
4071 .navbar-inverse .navbar-nav > .open > a:focus {
4071 .navbar-inverse .navbar-nav > .open > a:focus {
4072 background-color: #080808;
4072 background-color: #080808;
4073 color: #ffffff;
4073 color: #ffffff;
4074 }
4074 }
4075 @media (max-width: 539px) {
4075 @media (max-width: 539px) {
4076 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
4076 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
4077 border-color: #080808;
4077 border-color: #080808;
4078 }
4078 }
4079 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
4079 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
4080 background-color: #080808;
4080 background-color: #080808;
4081 }
4081 }
4082 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
4082 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
4083 color: #999999;
4083 color: #999999;
4084 }
4084 }
4085 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
4085 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
4086 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
4086 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
4087 color: #ffffff;
4087 color: #ffffff;
4088 background-color: transparent;
4088 background-color: transparent;
4089 }
4089 }
4090 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
4090 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
4091 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
4091 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
4092 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
4092 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
4093 color: #ffffff;
4093 color: #ffffff;
4094 background-color: #080808;
4094 background-color: #080808;
4095 }
4095 }
4096 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
4096 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
4097 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4097 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4098 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4098 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4099 color: #444444;
4099 color: #444444;
4100 background-color: transparent;
4100 background-color: transparent;
4101 }
4101 }
4102 }
4102 }
4103 .navbar-inverse .navbar-link {
4103 .navbar-inverse .navbar-link {
4104 color: #999999;
4104 color: #999999;
4105 }
4105 }
4106 .navbar-inverse .navbar-link:hover {
4106 .navbar-inverse .navbar-link:hover {
4107 color: #ffffff;
4107 color: #ffffff;
4108 }
4108 }
4109 .breadcrumb {
4109 .breadcrumb {
4110 padding: 8px 15px;
4110 padding: 8px 15px;
4111 margin-bottom: 18px;
4111 margin-bottom: 18px;
4112 list-style: none;
4112 list-style: none;
4113 background-color: #f5f5f5;
4113 background-color: #f5f5f5;
4114 border-radius: 4px;
4114 border-radius: 2px;
4115 }
4115 }
4116 .breadcrumb > li {
4116 .breadcrumb > li {
4117 display: inline-block;
4117 display: inline-block;
4118 }
4118 }
4119 .breadcrumb > li + li:before {
4119 .breadcrumb > li + li:before {
4120 content: "/\00a0";
4120 content: "/\00a0";
4121 padding: 0 5px;
4121 padding: 0 5px;
4122 color: #5e5e5e;
4122 color: #5e5e5e;
4123 }
4123 }
4124 .breadcrumb > .active {
4124 .breadcrumb > .active {
4125 color: #999999;
4125 color: #999999;
4126 }
4126 }
4127 .pagination {
4127 .pagination {
4128 display: inline-block;
4128 display: inline-block;
4129 padding-left: 0;
4129 padding-left: 0;
4130 margin: 18px 0;
4130 margin: 18px 0;
4131 border-radius: 4px;
4131 border-radius: 2px;
4132 }
4132 }
4133 .pagination > li {
4133 .pagination > li {
4134 display: inline;
4134 display: inline;
4135 }
4135 }
4136 .pagination > li > a,
4136 .pagination > li > a,
4137 .pagination > li > span {
4137 .pagination > li > span {
4138 position: relative;
4138 position: relative;
4139 float: left;
4139 float: left;
4140 padding: 6px 12px;
4140 padding: 6px 12px;
4141 line-height: 1.42857143;
4141 line-height: 1.42857143;
4142 text-decoration: none;
4142 text-decoration: none;
4143 color: #428bca;
4143 color: #428bca;
4144 background-color: #ffffff;
4144 background-color: #ffffff;
4145 border: 1px solid #dddddd;
4145 border: 1px solid #dddddd;
4146 margin-left: -1px;
4146 margin-left: -1px;
4147 }
4147 }
4148 .pagination > li:first-child > a,
4148 .pagination > li:first-child > a,
4149 .pagination > li:first-child > span {
4149 .pagination > li:first-child > span {
4150 margin-left: 0;
4150 margin-left: 0;
4151 border-bottom-left-radius: 4px;
4151 border-bottom-left-radius: 2px;
4152 border-top-left-radius: 4px;
4152 border-top-left-radius: 2px;
4153 }
4153 }
4154 .pagination > li:last-child > a,
4154 .pagination > li:last-child > a,
4155 .pagination > li:last-child > span {
4155 .pagination > li:last-child > span {
4156 border-bottom-right-radius: 4px;
4156 border-bottom-right-radius: 2px;
4157 border-top-right-radius: 4px;
4157 border-top-right-radius: 2px;
4158 }
4158 }
4159 .pagination > li > a:hover,
4159 .pagination > li > a:hover,
4160 .pagination > li > span:hover,
4160 .pagination > li > span:hover,
4161 .pagination > li > a:focus,
4161 .pagination > li > a:focus,
4162 .pagination > li > span:focus {
4162 .pagination > li > span:focus {
4163 color: #2a6496;
4163 color: #2a6496;
4164 background-color: #eeeeee;
4164 background-color: #eeeeee;
4165 border-color: #dddddd;
4165 border-color: #dddddd;
4166 }
4166 }
4167 .pagination > .active > a,
4167 .pagination > .active > a,
4168 .pagination > .active > span,
4168 .pagination > .active > span,
4169 .pagination > .active > a:hover,
4169 .pagination > .active > a:hover,
4170 .pagination > .active > span:hover,
4170 .pagination > .active > span:hover,
4171 .pagination > .active > a:focus,
4171 .pagination > .active > a:focus,
4172 .pagination > .active > span:focus {
4172 .pagination > .active > span:focus {
4173 z-index: 2;
4173 z-index: 2;
4174 color: #ffffff;
4174 color: #ffffff;
4175 background-color: #428bca;
4175 background-color: #428bca;
4176 border-color: #428bca;
4176 border-color: #428bca;
4177 cursor: default;
4177 cursor: default;
4178 }
4178 }
4179 .pagination > .disabled > span,
4179 .pagination > .disabled > span,
4180 .pagination > .disabled > span:hover,
4180 .pagination > .disabled > span:hover,
4181 .pagination > .disabled > span:focus,
4181 .pagination > .disabled > span:focus,
4182 .pagination > .disabled > a,
4182 .pagination > .disabled > a,
4183 .pagination > .disabled > a:hover,
4183 .pagination > .disabled > a:hover,
4184 .pagination > .disabled > a:focus {
4184 .pagination > .disabled > a:focus {
4185 color: #999999;
4185 color: #999999;
4186 background-color: #ffffff;
4186 background-color: #ffffff;
4187 border-color: #dddddd;
4187 border-color: #dddddd;
4188 cursor: not-allowed;
4188 cursor: not-allowed;
4189 }
4189 }
4190 .pagination-lg > li > a,
4190 .pagination-lg > li > a,
4191 .pagination-lg > li > span {
4191 .pagination-lg > li > span {
4192 padding: 10px 16px;
4192 padding: 10px 16px;
4193 font-size: 17px;
4193 font-size: 17px;
4194 }
4194 }
4195 .pagination-lg > li:first-child > a,
4195 .pagination-lg > li:first-child > a,
4196 .pagination-lg > li:first-child > span {
4196 .pagination-lg > li:first-child > span {
4197 border-bottom-left-radius: 6px;
4197 border-bottom-left-radius: 6px;
4198 border-top-left-radius: 6px;
4198 border-top-left-radius: 6px;
4199 }
4199 }
4200 .pagination-lg > li:last-child > a,
4200 .pagination-lg > li:last-child > a,
4201 .pagination-lg > li:last-child > span {
4201 .pagination-lg > li:last-child > span {
4202 border-bottom-right-radius: 6px;
4202 border-bottom-right-radius: 6px;
4203 border-top-right-radius: 6px;
4203 border-top-right-radius: 6px;
4204 }
4204 }
4205 .pagination-sm > li > a,
4205 .pagination-sm > li > a,
4206 .pagination-sm > li > span {
4206 .pagination-sm > li > span {
4207 padding: 5px 10px;
4207 padding: 5px 10px;
4208 font-size: 12px;
4208 font-size: 12px;
4209 }
4209 }
4210 .pagination-sm > li:first-child > a,
4210 .pagination-sm > li:first-child > a,
4211 .pagination-sm > li:first-child > span {
4211 .pagination-sm > li:first-child > span {
4212 border-bottom-left-radius: 3px;
4212 border-bottom-left-radius: 2px;
4213 border-top-left-radius: 3px;
4213 border-top-left-radius: 2px;
4214 }
4214 }
4215 .pagination-sm > li:last-child > a,
4215 .pagination-sm > li:last-child > a,
4216 .pagination-sm > li:last-child > span {
4216 .pagination-sm > li:last-child > span {
4217 border-bottom-right-radius: 3px;
4217 border-bottom-right-radius: 2px;
4218 border-top-right-radius: 3px;
4218 border-top-right-radius: 2px;
4219 }
4219 }
4220 .pager {
4220 .pager {
4221 padding-left: 0;
4221 padding-left: 0;
4222 margin: 18px 0;
4222 margin: 18px 0;
4223 list-style: none;
4223 list-style: none;
4224 text-align: center;
4224 text-align: center;
4225 }
4225 }
4226 .pager li {
4226 .pager li {
4227 display: inline;
4227 display: inline;
4228 }
4228 }
4229 .pager li > a,
4229 .pager li > a,
4230 .pager li > span {
4230 .pager li > span {
4231 display: inline-block;
4231 display: inline-block;
4232 padding: 5px 14px;
4232 padding: 5px 14px;
4233 background-color: #ffffff;
4233 background-color: #ffffff;
4234 border: 1px solid #dddddd;
4234 border: 1px solid #dddddd;
4235 border-radius: 15px;
4235 border-radius: 15px;
4236 }
4236 }
4237 .pager li > a:hover,
4237 .pager li > a:hover,
4238 .pager li > a:focus {
4238 .pager li > a:focus {
4239 text-decoration: none;
4239 text-decoration: none;
4240 background-color: #eeeeee;
4240 background-color: #eeeeee;
4241 }
4241 }
4242 .pager .next > a,
4242 .pager .next > a,
4243 .pager .next > span {
4243 .pager .next > span {
4244 float: right;
4244 float: right;
4245 }
4245 }
4246 .pager .previous > a,
4246 .pager .previous > a,
4247 .pager .previous > span {
4247 .pager .previous > span {
4248 float: left;
4248 float: left;
4249 }
4249 }
4250 .pager .disabled > a,
4250 .pager .disabled > a,
4251 .pager .disabled > a:hover,
4251 .pager .disabled > a:hover,
4252 .pager .disabled > a:focus,
4252 .pager .disabled > a:focus,
4253 .pager .disabled > span {
4253 .pager .disabled > span {
4254 color: #999999;
4254 color: #999999;
4255 background-color: #ffffff;
4255 background-color: #ffffff;
4256 cursor: not-allowed;
4256 cursor: not-allowed;
4257 }
4257 }
4258 .label {
4258 .label {
4259 display: inline;
4259 display: inline;
4260 padding: .2em .6em .3em;
4260 padding: .2em .6em .3em;
4261 font-size: 75%;
4261 font-size: 75%;
4262 font-weight: bold;
4262 font-weight: bold;
4263 line-height: 1;
4263 line-height: 1;
4264 color: #ffffff;
4264 color: #ffffff;
4265 text-align: center;
4265 text-align: center;
4266 white-space: nowrap;
4266 white-space: nowrap;
4267 vertical-align: baseline;
4267 vertical-align: baseline;
4268 border-radius: .25em;
4268 border-radius: .25em;
4269 }
4269 }
4270 .label[href]:hover,
4270 .label[href]:hover,
4271 .label[href]:focus {
4271 .label[href]:focus {
4272 color: #ffffff;
4272 color: #ffffff;
4273 text-decoration: none;
4273 text-decoration: none;
4274 cursor: pointer;
4274 cursor: pointer;
4275 }
4275 }
4276 .label:empty {
4276 .label:empty {
4277 display: none;
4277 display: none;
4278 }
4278 }
4279 .btn .label {
4279 .btn .label {
4280 position: relative;
4280 position: relative;
4281 top: -1px;
4281 top: -1px;
4282 }
4282 }
4283 .label-default {
4283 .label-default {
4284 background-color: #999999;
4284 background-color: #999999;
4285 }
4285 }
4286 .label-default[href]:hover,
4286 .label-default[href]:hover,
4287 .label-default[href]:focus {
4287 .label-default[href]:focus {
4288 background-color: #808080;
4288 background-color: #808080;
4289 }
4289 }
4290 .label-primary {
4290 .label-primary {
4291 background-color: #428bca;
4291 background-color: #428bca;
4292 }
4292 }
4293 .label-primary[href]:hover,
4293 .label-primary[href]:hover,
4294 .label-primary[href]:focus {
4294 .label-primary[href]:focus {
4295 background-color: #3071a9;
4295 background-color: #3071a9;
4296 }
4296 }
4297 .label-success {
4297 .label-success {
4298 background-color: #5cb85c;
4298 background-color: #5cb85c;
4299 }
4299 }
4300 .label-success[href]:hover,
4300 .label-success[href]:hover,
4301 .label-success[href]:focus {
4301 .label-success[href]:focus {
4302 background-color: #449d44;
4302 background-color: #449d44;
4303 }
4303 }
4304 .label-info {
4304 .label-info {
4305 background-color: #5bc0de;
4305 background-color: #5bc0de;
4306 }
4306 }
4307 .label-info[href]:hover,
4307 .label-info[href]:hover,
4308 .label-info[href]:focus {
4308 .label-info[href]:focus {
4309 background-color: #31b0d5;
4309 background-color: #31b0d5;
4310 }
4310 }
4311 .label-warning {
4311 .label-warning {
4312 background-color: #f0ad4e;
4312 background-color: #f0ad4e;
4313 }
4313 }
4314 .label-warning[href]:hover,
4314 .label-warning[href]:hover,
4315 .label-warning[href]:focus {
4315 .label-warning[href]:focus {
4316 background-color: #ec971f;
4316 background-color: #ec971f;
4317 }
4317 }
4318 .label-danger {
4318 .label-danger {
4319 background-color: #d9534f;
4319 background-color: #d9534f;
4320 }
4320 }
4321 .label-danger[href]:hover,
4321 .label-danger[href]:hover,
4322 .label-danger[href]:focus {
4322 .label-danger[href]:focus {
4323 background-color: #c9302c;
4323 background-color: #c9302c;
4324 }
4324 }
4325 .badge {
4325 .badge {
4326 display: inline-block;
4326 display: inline-block;
4327 min-width: 10px;
4327 min-width: 10px;
4328 padding: 3px 7px;
4328 padding: 3px 7px;
4329 font-size: 12px;
4329 font-size: 12px;
4330 font-weight: bold;
4330 font-weight: bold;
4331 color: #ffffff;
4331 color: #ffffff;
4332 line-height: 1;
4332 line-height: 1;
4333 vertical-align: baseline;
4333 vertical-align: baseline;
4334 white-space: nowrap;
4334 white-space: nowrap;
4335 text-align: center;
4335 text-align: center;
4336 background-color: #999999;
4336 background-color: #999999;
4337 border-radius: 10px;
4337 border-radius: 10px;
4338 }
4338 }
4339 .badge:empty {
4339 .badge:empty {
4340 display: none;
4340 display: none;
4341 }
4341 }
4342 .btn .badge {
4342 .btn .badge {
4343 position: relative;
4343 position: relative;
4344 top: -1px;
4344 top: -1px;
4345 }
4345 }
4346 .btn-xs .badge {
4346 .btn-xs .badge {
4347 top: 0;
4347 top: 0;
4348 padding: 1px 5px;
4348 padding: 1px 5px;
4349 }
4349 }
4350 a.badge:hover,
4350 a.badge:hover,
4351 a.badge:focus {
4351 a.badge:focus {
4352 color: #ffffff;
4352 color: #ffffff;
4353 text-decoration: none;
4353 text-decoration: none;
4354 cursor: pointer;
4354 cursor: pointer;
4355 }
4355 }
4356 a.list-group-item.active > .badge,
4356 a.list-group-item.active > .badge,
4357 .nav-pills > .active > a > .badge {
4357 .nav-pills > .active > a > .badge {
4358 color: #428bca;
4358 color: #428bca;
4359 background-color: #ffffff;
4359 background-color: #ffffff;
4360 }
4360 }
4361 .nav-pills > li > a > .badge {
4361 .nav-pills > li > a > .badge {
4362 margin-left: 3px;
4362 margin-left: 3px;
4363 }
4363 }
4364 .jumbotron {
4364 .jumbotron {
4365 padding: 30px;
4365 padding: 30px;
4366 margin-bottom: 30px;
4366 margin-bottom: 30px;
4367 color: inherit;
4367 color: inherit;
4368 background-color: #eeeeee;
4368 background-color: #eeeeee;
4369 }
4369 }
4370 .jumbotron h1,
4370 .jumbotron h1,
4371 .jumbotron .h1 {
4371 .jumbotron .h1 {
4372 color: inherit;
4372 color: inherit;
4373 }
4373 }
4374 .jumbotron p {
4374 .jumbotron p {
4375 margin-bottom: 15px;
4375 margin-bottom: 15px;
4376 font-size: 20px;
4376 font-size: 20px;
4377 font-weight: 200;
4377 font-weight: 200;
4378 }
4378 }
4379 .container .jumbotron {
4379 .container .jumbotron {
4380 border-radius: 6px;
4380 border-radius: 6px;
4381 }
4381 }
4382 .jumbotron .container {
4382 .jumbotron .container {
4383 max-width: 100%;
4383 max-width: 100%;
4384 }
4384 }
4385 @media screen and (min-width: 768px) {
4385 @media screen and (min-width: 768px) {
4386 .jumbotron {
4386 .jumbotron {
4387 padding-top: 48px;
4387 padding-top: 48px;
4388 padding-bottom: 48px;
4388 padding-bottom: 48px;
4389 }
4389 }
4390 .container .jumbotron {
4390 .container .jumbotron {
4391 padding-left: 60px;
4391 padding-left: 60px;
4392 padding-right: 60px;
4392 padding-right: 60px;
4393 }
4393 }
4394 .jumbotron h1,
4394 .jumbotron h1,
4395 .jumbotron .h1 {
4395 .jumbotron .h1 {
4396 font-size: 58.5px;
4396 font-size: 58.5px;
4397 }
4397 }
4398 }
4398 }
4399 .thumbnail {
4399 .thumbnail {
4400 display: block;
4400 display: block;
4401 padding: 4px;
4401 padding: 4px;
4402 margin-bottom: 18px;
4402 margin-bottom: 18px;
4403 line-height: 1.42857143;
4403 line-height: 1.42857143;
4404 background-color: #ffffff;
4404 background-color: #ffffff;
4405 border: 1px solid #dddddd;
4405 border: 1px solid #dddddd;
4406 border-radius: 4px;
4406 border-radius: 2px;
4407 -webkit-transition: all 0.2s ease-in-out;
4407 -webkit-transition: all 0.2s ease-in-out;
4408 transition: all 0.2s ease-in-out;
4408 transition: all 0.2s ease-in-out;
4409 }
4409 }
4410 .thumbnail > img,
4410 .thumbnail > img,
4411 .thumbnail a > img {
4411 .thumbnail a > img {
4412 margin-left: auto;
4412 margin-left: auto;
4413 margin-right: auto;
4413 margin-right: auto;
4414 }
4414 }
4415 a.thumbnail:hover,
4415 a.thumbnail:hover,
4416 a.thumbnail:focus,
4416 a.thumbnail:focus,
4417 a.thumbnail.active {
4417 a.thumbnail.active {
4418 border-color: #428bca;
4418 border-color: #428bca;
4419 }
4419 }
4420 .thumbnail .caption {
4420 .thumbnail .caption {
4421 padding: 9px;
4421 padding: 9px;
4422 color: #000000;
4422 color: #000000;
4423 }
4423 }
4424 .alert {
4424 .alert {
4425 padding: 15px;
4425 padding: 15px;
4426 margin-bottom: 18px;
4426 margin-bottom: 18px;
4427 border: 1px solid transparent;
4427 border: 1px solid transparent;
4428 border-radius: 4px;
4428 border-radius: 2px;
4429 }
4429 }
4430 .alert h4 {
4430 .alert h4 {
4431 margin-top: 0;
4431 margin-top: 0;
4432 color: inherit;
4432 color: inherit;
4433 }
4433 }
4434 .alert .alert-link {
4434 .alert .alert-link {
4435 font-weight: bold;
4435 font-weight: bold;
4436 }
4436 }
4437 .alert > p,
4437 .alert > p,
4438 .alert > ul {
4438 .alert > ul {
4439 margin-bottom: 0;
4439 margin-bottom: 0;
4440 }
4440 }
4441 .alert > p + p {
4441 .alert > p + p {
4442 margin-top: 5px;
4442 margin-top: 5px;
4443 }
4443 }
4444 .alert-dismissable {
4444 .alert-dismissable {
4445 padding-right: 35px;
4445 padding-right: 35px;
4446 }
4446 }
4447 .alert-dismissable .close {
4447 .alert-dismissable .close {
4448 position: relative;
4448 position: relative;
4449 top: -2px;
4449 top: -2px;
4450 right: -21px;
4450 right: -21px;
4451 color: inherit;
4451 color: inherit;
4452 }
4452 }
4453 .alert-success {
4453 .alert-success {
4454 background-color: #dff0d8;
4454 background-color: #dff0d8;
4455 border-color: #d6e9c6;
4455 border-color: #d6e9c6;
4456 color: #3c763d;
4456 color: #3c763d;
4457 }
4457 }
4458 .alert-success hr {
4458 .alert-success hr {
4459 border-top-color: #c9e2b3;
4459 border-top-color: #c9e2b3;
4460 }
4460 }
4461 .alert-success .alert-link {
4461 .alert-success .alert-link {
4462 color: #2b542c;
4462 color: #2b542c;
4463 }
4463 }
4464 .alert-info {
4464 .alert-info {
4465 background-color: #d9edf7;
4465 background-color: #d9edf7;
4466 border-color: #bce8f1;
4466 border-color: #bce8f1;
4467 color: #31708f;
4467 color: #31708f;
4468 }
4468 }
4469 .alert-info hr {
4469 .alert-info hr {
4470 border-top-color: #a6e1ec;
4470 border-top-color: #a6e1ec;
4471 }
4471 }
4472 .alert-info .alert-link {
4472 .alert-info .alert-link {
4473 color: #245269;
4473 color: #245269;
4474 }
4474 }
4475 .alert-warning {
4475 .alert-warning {
4476 background-color: #fcf8e3;
4476 background-color: #fcf8e3;
4477 border-color: #faebcc;
4477 border-color: #faebcc;
4478 color: #8a6d3b;
4478 color: #8a6d3b;
4479 }
4479 }
4480 .alert-warning hr {
4480 .alert-warning hr {
4481 border-top-color: #f7e1b5;
4481 border-top-color: #f7e1b5;
4482 }
4482 }
4483 .alert-warning .alert-link {
4483 .alert-warning .alert-link {
4484 color: #66512c;
4484 color: #66512c;
4485 }
4485 }
4486 .alert-danger {
4486 .alert-danger {
4487 background-color: #f2dede;
4487 background-color: #f2dede;
4488 border-color: #ebccd1;
4488 border-color: #ebccd1;
4489 color: #a94442;
4489 color: #a94442;
4490 }
4490 }
4491 .alert-danger hr {
4491 .alert-danger hr {
4492 border-top-color: #e4b9c0;
4492 border-top-color: #e4b9c0;
4493 }
4493 }
4494 .alert-danger .alert-link {
4494 .alert-danger .alert-link {
4495 color: #843534;
4495 color: #843534;
4496 }
4496 }
4497 @-webkit-keyframes progress-bar-stripes {
4497 @-webkit-keyframes progress-bar-stripes {
4498 from {
4498 from {
4499 background-position: 40px 0;
4499 background-position: 40px 0;
4500 }
4500 }
4501 to {
4501 to {
4502 background-position: 0 0;
4502 background-position: 0 0;
4503 }
4503 }
4504 }
4504 }
4505 @keyframes progress-bar-stripes {
4505 @keyframes progress-bar-stripes {
4506 from {
4506 from {
4507 background-position: 40px 0;
4507 background-position: 40px 0;
4508 }
4508 }
4509 to {
4509 to {
4510 background-position: 0 0;
4510 background-position: 0 0;
4511 }
4511 }
4512 }
4512 }
4513 .progress {
4513 .progress {
4514 overflow: hidden;
4514 overflow: hidden;
4515 height: 18px;
4515 height: 18px;
4516 margin-bottom: 18px;
4516 margin-bottom: 18px;
4517 background-color: #f5f5f5;
4517 background-color: #f5f5f5;
4518 border-radius: 4px;
4518 border-radius: 2px;
4519 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4519 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4520 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4520 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4521 }
4521 }
4522 .progress-bar {
4522 .progress-bar {
4523 float: left;
4523 float: left;
4524 width: 0%;
4524 width: 0%;
4525 height: 100%;
4525 height: 100%;
4526 font-size: 12px;
4526 font-size: 12px;
4527 line-height: 18px;
4527 line-height: 18px;
4528 color: #ffffff;
4528 color: #ffffff;
4529 text-align: center;
4529 text-align: center;
4530 background-color: #428bca;
4530 background-color: #428bca;
4531 -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4531 -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4532 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4532 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4533 -webkit-transition: width 0.6s ease;
4533 -webkit-transition: width 0.6s ease;
4534 transition: width 0.6s ease;
4534 transition: width 0.6s ease;
4535 }
4535 }
4536 .progress-striped .progress-bar {
4536 .progress-striped .progress-bar {
4537 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4537 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4538 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4538 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4539 background-size: 40px 40px;
4539 background-size: 40px 40px;
4540 }
4540 }
4541 .progress.active .progress-bar {
4541 .progress.active .progress-bar {
4542 -webkit-animation: progress-bar-stripes 2s linear infinite;
4542 -webkit-animation: progress-bar-stripes 2s linear infinite;
4543 animation: progress-bar-stripes 2s linear infinite;
4543 animation: progress-bar-stripes 2s linear infinite;
4544 }
4544 }
4545 .progress-bar-success {
4545 .progress-bar-success {
4546 background-color: #5cb85c;
4546 background-color: #5cb85c;
4547 }
4547 }
4548 .progress-striped .progress-bar-success {
4548 .progress-striped .progress-bar-success {
4549 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4549 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4550 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4550 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4551 }
4551 }
4552 .progress-bar-info {
4552 .progress-bar-info {
4553 background-color: #5bc0de;
4553 background-color: #5bc0de;
4554 }
4554 }
4555 .progress-striped .progress-bar-info {
4555 .progress-striped .progress-bar-info {
4556 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4556 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4557 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4557 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4558 }
4558 }
4559 .progress-bar-warning {
4559 .progress-bar-warning {
4560 background-color: #f0ad4e;
4560 background-color: #f0ad4e;
4561 }
4561 }
4562 .progress-striped .progress-bar-warning {
4562 .progress-striped .progress-bar-warning {
4563 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4563 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4564 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4564 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4565 }
4565 }
4566 .progress-bar-danger {
4566 .progress-bar-danger {
4567 background-color: #d9534f;
4567 background-color: #d9534f;
4568 }
4568 }
4569 .progress-striped .progress-bar-danger {
4569 .progress-striped .progress-bar-danger {
4570 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4570 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4571 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4571 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4572 }
4572 }
4573 .media,
4573 .media,
4574 .media-body {
4574 .media-body {
4575 overflow: hidden;
4575 overflow: hidden;
4576 zoom: 1;
4576 zoom: 1;
4577 }
4577 }
4578 .media,
4578 .media,
4579 .media .media {
4579 .media .media {
4580 margin-top: 15px;
4580 margin-top: 15px;
4581 }
4581 }
4582 .media:first-child {
4582 .media:first-child {
4583 margin-top: 0;
4583 margin-top: 0;
4584 }
4584 }
4585 .media-object {
4585 .media-object {
4586 display: block;
4586 display: block;
4587 }
4587 }
4588 .media-heading {
4588 .media-heading {
4589 margin: 0 0 5px;
4589 margin: 0 0 5px;
4590 }
4590 }
4591 .media > .pull-left {
4591 .media > .pull-left {
4592 margin-right: 10px;
4592 margin-right: 10px;
4593 }
4593 }
4594 .media > .pull-right {
4594 .media > .pull-right {
4595 margin-left: 10px;
4595 margin-left: 10px;
4596 }
4596 }
4597 .media-list {
4597 .media-list {
4598 padding-left: 0;
4598 padding-left: 0;
4599 list-style: none;
4599 list-style: none;
4600 }
4600 }
4601 .list-group {
4601 .list-group {
4602 margin-bottom: 20px;
4602 margin-bottom: 20px;
4603 padding-left: 0;
4603 padding-left: 0;
4604 }
4604 }
4605 .list-group-item {
4605 .list-group-item {
4606 position: relative;
4606 position: relative;
4607 display: block;
4607 display: block;
4608 padding: 10px 15px;
4608 padding: 10px 15px;
4609 margin-bottom: -1px;
4609 margin-bottom: -1px;
4610 background-color: #ffffff;
4610 background-color: #ffffff;
4611 border: 1px solid #dddddd;
4611 border: 1px solid #dddddd;
4612 }
4612 }
4613 .list-group-item:first-child {
4613 .list-group-item:first-child {
4614 border-top-right-radius: 4px;
4614 border-top-right-radius: 2px;
4615 border-top-left-radius: 4px;
4615 border-top-left-radius: 2px;
4616 }
4616 }
4617 .list-group-item:last-child {
4617 .list-group-item:last-child {
4618 margin-bottom: 0;
4618 margin-bottom: 0;
4619 border-bottom-right-radius: 4px;
4619 border-bottom-right-radius: 2px;
4620 border-bottom-left-radius: 4px;
4620 border-bottom-left-radius: 2px;
4621 }
4621 }
4622 .list-group-item > .badge {
4622 .list-group-item > .badge {
4623 float: right;
4623 float: right;
4624 }
4624 }
4625 .list-group-item > .badge + .badge {
4625 .list-group-item > .badge + .badge {
4626 margin-right: 5px;
4626 margin-right: 5px;
4627 }
4627 }
4628 a.list-group-item {
4628 a.list-group-item {
4629 color: #555555;
4629 color: #555555;
4630 }
4630 }
4631 a.list-group-item .list-group-item-heading {
4631 a.list-group-item .list-group-item-heading {
4632 color: #333333;
4632 color: #333333;
4633 }
4633 }
4634 a.list-group-item:hover,
4634 a.list-group-item:hover,
4635 a.list-group-item:focus {
4635 a.list-group-item:focus {
4636 text-decoration: none;
4636 text-decoration: none;
4637 background-color: #f5f5f5;
4637 background-color: #f5f5f5;
4638 }
4638 }
4639 a.list-group-item.active,
4639 a.list-group-item.active,
4640 a.list-group-item.active:hover,
4640 a.list-group-item.active:hover,
4641 a.list-group-item.active:focus {
4641 a.list-group-item.active:focus {
4642 z-index: 2;
4642 z-index: 2;
4643 color: #ffffff;
4643 color: #ffffff;
4644 background-color: #428bca;
4644 background-color: #428bca;
4645 border-color: #428bca;
4645 border-color: #428bca;
4646 }
4646 }
4647 a.list-group-item.active .list-group-item-heading,
4647 a.list-group-item.active .list-group-item-heading,
4648 a.list-group-item.active:hover .list-group-item-heading,
4648 a.list-group-item.active:hover .list-group-item-heading,
4649 a.list-group-item.active:focus .list-group-item-heading {
4649 a.list-group-item.active:focus .list-group-item-heading {
4650 color: inherit;
4650 color: inherit;
4651 }
4651 }
4652 a.list-group-item.active .list-group-item-text,
4652 a.list-group-item.active .list-group-item-text,
4653 a.list-group-item.active:hover .list-group-item-text,
4653 a.list-group-item.active:hover .list-group-item-text,
4654 a.list-group-item.active:focus .list-group-item-text {
4654 a.list-group-item.active:focus .list-group-item-text {
4655 color: #e1edf7;
4655 color: #e1edf7;
4656 }
4656 }
4657 .list-group-item-success {
4657 .list-group-item-success {
4658 color: #3c763d;
4658 color: #3c763d;
4659 background-color: #dff0d8;
4659 background-color: #dff0d8;
4660 }
4660 }
4661 a.list-group-item-success {
4661 a.list-group-item-success {
4662 color: #3c763d;
4662 color: #3c763d;
4663 }
4663 }
4664 a.list-group-item-success .list-group-item-heading {
4664 a.list-group-item-success .list-group-item-heading {
4665 color: inherit;
4665 color: inherit;
4666 }
4666 }
4667 a.list-group-item-success:hover,
4667 a.list-group-item-success:hover,
4668 a.list-group-item-success:focus {
4668 a.list-group-item-success:focus {
4669 color: #3c763d;
4669 color: #3c763d;
4670 background-color: #d0e9c6;
4670 background-color: #d0e9c6;
4671 }
4671 }
4672 a.list-group-item-success.active,
4672 a.list-group-item-success.active,
4673 a.list-group-item-success.active:hover,
4673 a.list-group-item-success.active:hover,
4674 a.list-group-item-success.active:focus {
4674 a.list-group-item-success.active:focus {
4675 color: #fff;
4675 color: #fff;
4676 background-color: #3c763d;
4676 background-color: #3c763d;
4677 border-color: #3c763d;
4677 border-color: #3c763d;
4678 }
4678 }
4679 .list-group-item-info {
4679 .list-group-item-info {
4680 color: #31708f;
4680 color: #31708f;
4681 background-color: #d9edf7;
4681 background-color: #d9edf7;
4682 }
4682 }
4683 a.list-group-item-info {
4683 a.list-group-item-info {
4684 color: #31708f;
4684 color: #31708f;
4685 }
4685 }
4686 a.list-group-item-info .list-group-item-heading {
4686 a.list-group-item-info .list-group-item-heading {
4687 color: inherit;
4687 color: inherit;
4688 }
4688 }
4689 a.list-group-item-info:hover,
4689 a.list-group-item-info:hover,
4690 a.list-group-item-info:focus {
4690 a.list-group-item-info:focus {
4691 color: #31708f;
4691 color: #31708f;
4692 background-color: #c4e3f3;
4692 background-color: #c4e3f3;
4693 }
4693 }
4694 a.list-group-item-info.active,
4694 a.list-group-item-info.active,
4695 a.list-group-item-info.active:hover,
4695 a.list-group-item-info.active:hover,
4696 a.list-group-item-info.active:focus {
4696 a.list-group-item-info.active:focus {
4697 color: #fff;
4697 color: #fff;
4698 background-color: #31708f;
4698 background-color: #31708f;
4699 border-color: #31708f;
4699 border-color: #31708f;
4700 }
4700 }
4701 .list-group-item-warning {
4701 .list-group-item-warning {
4702 color: #8a6d3b;
4702 color: #8a6d3b;
4703 background-color: #fcf8e3;
4703 background-color: #fcf8e3;
4704 }
4704 }
4705 a.list-group-item-warning {
4705 a.list-group-item-warning {
4706 color: #8a6d3b;
4706 color: #8a6d3b;
4707 }
4707 }
4708 a.list-group-item-warning .list-group-item-heading {
4708 a.list-group-item-warning .list-group-item-heading {
4709 color: inherit;
4709 color: inherit;
4710 }
4710 }
4711 a.list-group-item-warning:hover,
4711 a.list-group-item-warning:hover,
4712 a.list-group-item-warning:focus {
4712 a.list-group-item-warning:focus {
4713 color: #8a6d3b;
4713 color: #8a6d3b;
4714 background-color: #faf2cc;
4714 background-color: #faf2cc;
4715 }
4715 }
4716 a.list-group-item-warning.active,
4716 a.list-group-item-warning.active,
4717 a.list-group-item-warning.active:hover,
4717 a.list-group-item-warning.active:hover,
4718 a.list-group-item-warning.active:focus {
4718 a.list-group-item-warning.active:focus {
4719 color: #fff;
4719 color: #fff;
4720 background-color: #8a6d3b;
4720 background-color: #8a6d3b;
4721 border-color: #8a6d3b;
4721 border-color: #8a6d3b;
4722 }
4722 }
4723 .list-group-item-danger {
4723 .list-group-item-danger {
4724 color: #a94442;
4724 color: #a94442;
4725 background-color: #f2dede;
4725 background-color: #f2dede;
4726 }
4726 }
4727 a.list-group-item-danger {
4727 a.list-group-item-danger {
4728 color: #a94442;
4728 color: #a94442;
4729 }
4729 }
4730 a.list-group-item-danger .list-group-item-heading {
4730 a.list-group-item-danger .list-group-item-heading {
4731 color: inherit;
4731 color: inherit;
4732 }
4732 }
4733 a.list-group-item-danger:hover,
4733 a.list-group-item-danger:hover,
4734 a.list-group-item-danger:focus {
4734 a.list-group-item-danger:focus {
4735 color: #a94442;
4735 color: #a94442;
4736 background-color: #ebcccc;
4736 background-color: #ebcccc;
4737 }
4737 }
4738 a.list-group-item-danger.active,
4738 a.list-group-item-danger.active,
4739 a.list-group-item-danger.active:hover,
4739 a.list-group-item-danger.active:hover,
4740 a.list-group-item-danger.active:focus {
4740 a.list-group-item-danger.active:focus {
4741 color: #fff;
4741 color: #fff;
4742 background-color: #a94442;
4742 background-color: #a94442;
4743 border-color: #a94442;
4743 border-color: #a94442;
4744 }
4744 }
4745 .list-group-item-heading {
4745 .list-group-item-heading {
4746 margin-top: 0;
4746 margin-top: 0;
4747 margin-bottom: 5px;
4747 margin-bottom: 5px;
4748 }
4748 }
4749 .list-group-item-text {
4749 .list-group-item-text {
4750 margin-bottom: 0;
4750 margin-bottom: 0;
4751 line-height: 1.3;
4751 line-height: 1.3;
4752 }
4752 }
4753 .panel {
4753 .panel {
4754 margin-bottom: 18px;
4754 margin-bottom: 18px;
4755 background-color: #ffffff;
4755 background-color: #ffffff;
4756 border: 1px solid transparent;
4756 border: 1px solid transparent;
4757 border-radius: 4px;
4757 border-radius: 2px;
4758 -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
4758 -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
4759 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
4759 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
4760 }
4760 }
4761 .panel-body {
4761 .panel-body {
4762 padding: 15px;
4762 padding: 15px;
4763 }
4763 }
4764 .panel-heading {
4764 .panel-heading {
4765 padding: 10px 15px;
4765 padding: 10px 15px;
4766 border-bottom: 1px solid transparent;
4766 border-bottom: 1px solid transparent;
4767 border-top-right-radius: 3px;
4767 border-top-right-radius: 1px;
4768 border-top-left-radius: 3px;
4768 border-top-left-radius: 1px;
4769 }
4769 }
4770 .panel-heading > .dropdown .dropdown-toggle {
4770 .panel-heading > .dropdown .dropdown-toggle {
4771 color: inherit;
4771 color: inherit;
4772 }
4772 }
4773 .panel-title {
4773 .panel-title {
4774 margin-top: 0;
4774 margin-top: 0;
4775 margin-bottom: 0;
4775 margin-bottom: 0;
4776 font-size: 15px;
4776 font-size: 15px;
4777 color: inherit;
4777 color: inherit;
4778 }
4778 }
4779 .panel-title > a {
4779 .panel-title > a {
4780 color: inherit;
4780 color: inherit;
4781 }
4781 }
4782 .panel-footer {
4782 .panel-footer {
4783 padding: 10px 15px;
4783 padding: 10px 15px;
4784 background-color: #f5f5f5;
4784 background-color: #f5f5f5;
4785 border-top: 1px solid #dddddd;
4785 border-top: 1px solid #dddddd;
4786 border-bottom-right-radius: 3px;
4786 border-bottom-right-radius: 1px;
4787 border-bottom-left-radius: 3px;
4787 border-bottom-left-radius: 1px;
4788 }
4788 }
4789 .panel > .list-group {
4789 .panel > .list-group {
4790 margin-bottom: 0;
4790 margin-bottom: 0;
4791 }
4791 }
4792 .panel > .list-group .list-group-item {
4792 .panel > .list-group .list-group-item {
4793 border-width: 1px 0;
4793 border-width: 1px 0;
4794 border-radius: 0;
4794 border-radius: 0;
4795 }
4795 }
4796 .panel > .list-group:first-child .list-group-item:first-child {
4796 .panel > .list-group:first-child .list-group-item:first-child {
4797 border-top: 0;
4797 border-top: 0;
4798 border-top-right-radius: 3px;
4798 border-top-right-radius: 1px;
4799 border-top-left-radius: 3px;
4799 border-top-left-radius: 1px;
4800 }
4800 }
4801 .panel > .list-group:last-child .list-group-item:last-child {
4801 .panel > .list-group:last-child .list-group-item:last-child {
4802 border-bottom: 0;
4802 border-bottom: 0;
4803 border-bottom-right-radius: 3px;
4803 border-bottom-right-radius: 1px;
4804 border-bottom-left-radius: 3px;
4804 border-bottom-left-radius: 1px;
4805 }
4805 }
4806 .panel-heading + .list-group .list-group-item:first-child {
4806 .panel-heading + .list-group .list-group-item:first-child {
4807 border-top-width: 0;
4807 border-top-width: 0;
4808 }
4808 }
4809 .panel > .table,
4809 .panel > .table,
4810 .panel > .table-responsive > .table {
4810 .panel > .table-responsive > .table {
4811 margin-bottom: 0;
4811 margin-bottom: 0;
4812 }
4812 }
4813 .panel > .table:first-child,
4813 .panel > .table:first-child,
4814 .panel > .table-responsive:first-child > .table:first-child {
4814 .panel > .table-responsive:first-child > .table:first-child {
4815 border-top-right-radius: 3px;
4815 border-top-right-radius: 1px;
4816 border-top-left-radius: 3px;
4816 border-top-left-radius: 1px;
4817 }
4817 }
4818 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
4818 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
4819 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
4819 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
4820 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
4820 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
4821 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
4821 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
4822 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
4822 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
4823 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
4823 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
4824 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
4824 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
4825 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
4825 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
4826 border-top-left-radius: 3px;
4826 border-top-left-radius: 1px;
4827 }
4827 }
4828 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
4828 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
4829 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
4829 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
4830 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
4830 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
4831 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
4831 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
4832 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
4832 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
4833 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
4833 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
4834 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
4834 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
4835 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
4835 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
4836 border-top-right-radius: 3px;
4836 border-top-right-radius: 1px;
4837 }
4837 }
4838 .panel > .table:last-child,
4838 .panel > .table:last-child,
4839 .panel > .table-responsive:last-child > .table:last-child {
4839 .panel > .table-responsive:last-child > .table:last-child {
4840 border-bottom-right-radius: 3px;
4840 border-bottom-right-radius: 1px;
4841 border-bottom-left-radius: 3px;
4841 border-bottom-left-radius: 1px;
4842 }
4842 }
4843 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
4843 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
4844 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
4844 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
4845 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
4845 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
4846 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
4846 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
4847 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
4847 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
4848 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
4848 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
4849 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
4849 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
4850 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
4850 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
4851 border-bottom-left-radius: 3px;
4851 border-bottom-left-radius: 1px;
4852 }
4852 }
4853 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
4853 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
4854 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
4854 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
4855 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
4855 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
4856 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
4856 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
4857 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
4857 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
4858 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
4858 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
4859 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
4859 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
4860 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
4860 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
4861 border-bottom-right-radius: 3px;
4861 border-bottom-right-radius: 1px;
4862 }
4862 }
4863 .panel > .panel-body + .table,
4863 .panel > .panel-body + .table,
4864 .panel > .panel-body + .table-responsive {
4864 .panel > .panel-body + .table-responsive {
4865 border-top: 1px solid #dddddd;
4865 border-top: 1px solid #dddddd;
4866 }
4866 }
4867 .panel > .table > tbody:first-child > tr:first-child th,
4867 .panel > .table > tbody:first-child > tr:first-child th,
4868 .panel > .table > tbody:first-child > tr:first-child td {
4868 .panel > .table > tbody:first-child > tr:first-child td {
4869 border-top: 0;
4869 border-top: 0;
4870 }
4870 }
4871 .panel > .table-bordered,
4871 .panel > .table-bordered,
4872 .panel > .table-responsive > .table-bordered {
4872 .panel > .table-responsive > .table-bordered {
4873 border: 0;
4873 border: 0;
4874 }
4874 }
4875 .panel > .table-bordered > thead > tr > th:first-child,
4875 .panel > .table-bordered > thead > tr > th:first-child,
4876 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
4876 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
4877 .panel > .table-bordered > tbody > tr > th:first-child,
4877 .panel > .table-bordered > tbody > tr > th:first-child,
4878 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
4878 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
4879 .panel > .table-bordered > tfoot > tr > th:first-child,
4879 .panel > .table-bordered > tfoot > tr > th:first-child,
4880 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
4880 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
4881 .panel > .table-bordered > thead > tr > td:first-child,
4881 .panel > .table-bordered > thead > tr > td:first-child,
4882 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
4882 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
4883 .panel > .table-bordered > tbody > tr > td:first-child,
4883 .panel > .table-bordered > tbody > tr > td:first-child,
4884 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
4884 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
4885 .panel > .table-bordered > tfoot > tr > td:first-child,
4885 .panel > .table-bordered > tfoot > tr > td:first-child,
4886 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
4886 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
4887 border-left: 0;
4887 border-left: 0;
4888 }
4888 }
4889 .panel > .table-bordered > thead > tr > th:last-child,
4889 .panel > .table-bordered > thead > tr > th:last-child,
4890 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
4890 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
4891 .panel > .table-bordered > tbody > tr > th:last-child,
4891 .panel > .table-bordered > tbody > tr > th:last-child,
4892 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
4892 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
4893 .panel > .table-bordered > tfoot > tr > th:last-child,
4893 .panel > .table-bordered > tfoot > tr > th:last-child,
4894 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
4894 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
4895 .panel > .table-bordered > thead > tr > td:last-child,
4895 .panel > .table-bordered > thead > tr > td:last-child,
4896 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
4896 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
4897 .panel > .table-bordered > tbody > tr > td:last-child,
4897 .panel > .table-bordered > tbody > tr > td:last-child,
4898 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
4898 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
4899 .panel > .table-bordered > tfoot > tr > td:last-child,
4899 .panel > .table-bordered > tfoot > tr > td:last-child,
4900 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
4900 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
4901 border-right: 0;
4901 border-right: 0;
4902 }
4902 }
4903 .panel > .table-bordered > thead > tr:first-child > td,
4903 .panel > .table-bordered > thead > tr:first-child > td,
4904 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
4904 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
4905 .panel > .table-bordered > tbody > tr:first-child > td,
4905 .panel > .table-bordered > tbody > tr:first-child > td,
4906 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
4906 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
4907 .panel > .table-bordered > thead > tr:first-child > th,
4907 .panel > .table-bordered > thead > tr:first-child > th,
4908 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
4908 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
4909 .panel > .table-bordered > tbody > tr:first-child > th,
4909 .panel > .table-bordered > tbody > tr:first-child > th,
4910 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
4910 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
4911 border-bottom: 0;
4911 border-bottom: 0;
4912 }
4912 }
4913 .panel > .table-bordered > tbody > tr:last-child > td,
4913 .panel > .table-bordered > tbody > tr:last-child > td,
4914 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
4914 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
4915 .panel > .table-bordered > tfoot > tr:last-child > td,
4915 .panel > .table-bordered > tfoot > tr:last-child > td,
4916 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
4916 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
4917 .panel > .table-bordered > tbody > tr:last-child > th,
4917 .panel > .table-bordered > tbody > tr:last-child > th,
4918 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
4918 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
4919 .panel > .table-bordered > tfoot > tr:last-child > th,
4919 .panel > .table-bordered > tfoot > tr:last-child > th,
4920 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
4920 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
4921 border-bottom: 0;
4921 border-bottom: 0;
4922 }
4922 }
4923 .panel > .table-responsive {
4923 .panel > .table-responsive {
4924 border: 0;
4924 border: 0;
4925 margin-bottom: 0;
4925 margin-bottom: 0;
4926 }
4926 }
4927 .panel-group {
4927 .panel-group {
4928 margin-bottom: 18px;
4928 margin-bottom: 18px;
4929 }
4929 }
4930 .panel-group .panel {
4930 .panel-group .panel {
4931 margin-bottom: 0;
4931 margin-bottom: 0;
4932 border-radius: 4px;
4932 border-radius: 2px;
4933 overflow: hidden;
4933 overflow: hidden;
4934 }
4934 }
4935 .panel-group .panel + .panel {
4935 .panel-group .panel + .panel {
4936 margin-top: 5px;
4936 margin-top: 5px;
4937 }
4937 }
4938 .panel-group .panel-heading {
4938 .panel-group .panel-heading {
4939 border-bottom: 0;
4939 border-bottom: 0;
4940 }
4940 }
4941 .panel-group .panel-heading + .panel-collapse .panel-body {
4941 .panel-group .panel-heading + .panel-collapse .panel-body {
4942 border-top: 1px solid #dddddd;
4942 border-top: 1px solid #dddddd;
4943 }
4943 }
4944 .panel-group .panel-footer {
4944 .panel-group .panel-footer {
4945 border-top: 0;
4945 border-top: 0;
4946 }
4946 }
4947 .panel-group .panel-footer + .panel-collapse .panel-body {
4947 .panel-group .panel-footer + .panel-collapse .panel-body {
4948 border-bottom: 1px solid #dddddd;
4948 border-bottom: 1px solid #dddddd;
4949 }
4949 }
4950 .panel-default {
4950 .panel-default {
4951 border-color: #dddddd;
4951 border-color: #dddddd;
4952 }
4952 }
4953 .panel-default > .panel-heading {
4953 .panel-default > .panel-heading {
4954 color: #333333;
4954 color: #333333;
4955 background-color: #f5f5f5;
4955 background-color: #f5f5f5;
4956 border-color: #dddddd;
4956 border-color: #dddddd;
4957 }
4957 }
4958 .panel-default > .panel-heading + .panel-collapse .panel-body {
4958 .panel-default > .panel-heading + .panel-collapse .panel-body {
4959 border-top-color: #dddddd;
4959 border-top-color: #dddddd;
4960 }
4960 }
4961 .panel-default > .panel-footer + .panel-collapse .panel-body {
4961 .panel-default > .panel-footer + .panel-collapse .panel-body {
4962 border-bottom-color: #dddddd;
4962 border-bottom-color: #dddddd;
4963 }
4963 }
4964 .panel-primary {
4964 .panel-primary {
4965 border-color: #428bca;
4965 border-color: #428bca;
4966 }
4966 }
4967 .panel-primary > .panel-heading {
4967 .panel-primary > .panel-heading {
4968 color: #ffffff;
4968 color: #ffffff;
4969 background-color: #428bca;
4969 background-color: #428bca;
4970 border-color: #428bca;
4970 border-color: #428bca;
4971 }
4971 }
4972 .panel-primary > .panel-heading + .panel-collapse .panel-body {
4972 .panel-primary > .panel-heading + .panel-collapse .panel-body {
4973 border-top-color: #428bca;
4973 border-top-color: #428bca;
4974 }
4974 }
4975 .panel-primary > .panel-footer + .panel-collapse .panel-body {
4975 .panel-primary > .panel-footer + .panel-collapse .panel-body {
4976 border-bottom-color: #428bca;
4976 border-bottom-color: #428bca;
4977 }
4977 }
4978 .panel-success {
4978 .panel-success {
4979 border-color: #d6e9c6;
4979 border-color: #d6e9c6;
4980 }
4980 }
4981 .panel-success > .panel-heading {
4981 .panel-success > .panel-heading {
4982 color: #3c763d;
4982 color: #3c763d;
4983 background-color: #dff0d8;
4983 background-color: #dff0d8;
4984 border-color: #d6e9c6;
4984 border-color: #d6e9c6;
4985 }
4985 }
4986 .panel-success > .panel-heading + .panel-collapse .panel-body {
4986 .panel-success > .panel-heading + .panel-collapse .panel-body {
4987 border-top-color: #d6e9c6;
4987 border-top-color: #d6e9c6;
4988 }
4988 }
4989 .panel-success > .panel-footer + .panel-collapse .panel-body {
4989 .panel-success > .panel-footer + .panel-collapse .panel-body {
4990 border-bottom-color: #d6e9c6;
4990 border-bottom-color: #d6e9c6;
4991 }
4991 }
4992 .panel-info {
4992 .panel-info {
4993 border-color: #bce8f1;
4993 border-color: #bce8f1;
4994 }
4994 }
4995 .panel-info > .panel-heading {
4995 .panel-info > .panel-heading {
4996 color: #31708f;
4996 color: #31708f;
4997 background-color: #d9edf7;
4997 background-color: #d9edf7;
4998 border-color: #bce8f1;
4998 border-color: #bce8f1;
4999 }
4999 }
5000 .panel-info > .panel-heading + .panel-collapse .panel-body {
5000 .panel-info > .panel-heading + .panel-collapse .panel-body {
5001 border-top-color: #bce8f1;
5001 border-top-color: #bce8f1;
5002 }
5002 }
5003 .panel-info > .panel-footer + .panel-collapse .panel-body {
5003 .panel-info > .panel-footer + .panel-collapse .panel-body {
5004 border-bottom-color: #bce8f1;
5004 border-bottom-color: #bce8f1;
5005 }
5005 }
5006 .panel-warning {
5006 .panel-warning {
5007 border-color: #faebcc;
5007 border-color: #faebcc;
5008 }
5008 }
5009 .panel-warning > .panel-heading {
5009 .panel-warning > .panel-heading {
5010 color: #8a6d3b;
5010 color: #8a6d3b;
5011 background-color: #fcf8e3;
5011 background-color: #fcf8e3;
5012 border-color: #faebcc;
5012 border-color: #faebcc;
5013 }
5013 }
5014 .panel-warning > .panel-heading + .panel-collapse .panel-body {
5014 .panel-warning > .panel-heading + .panel-collapse .panel-body {
5015 border-top-color: #faebcc;
5015 border-top-color: #faebcc;
5016 }
5016 }
5017 .panel-warning > .panel-footer + .panel-collapse .panel-body {
5017 .panel-warning > .panel-footer + .panel-collapse .panel-body {
5018 border-bottom-color: #faebcc;
5018 border-bottom-color: #faebcc;
5019 }
5019 }
5020 .panel-danger {
5020 .panel-danger {
5021 border-color: #ebccd1;
5021 border-color: #ebccd1;
5022 }
5022 }
5023 .panel-danger > .panel-heading {
5023 .panel-danger > .panel-heading {
5024 color: #a94442;
5024 color: #a94442;
5025 background-color: #f2dede;
5025 background-color: #f2dede;
5026 border-color: #ebccd1;
5026 border-color: #ebccd1;
5027 }
5027 }
5028 .panel-danger > .panel-heading + .panel-collapse .panel-body {
5028 .panel-danger > .panel-heading + .panel-collapse .panel-body {
5029 border-top-color: #ebccd1;
5029 border-top-color: #ebccd1;
5030 }
5030 }
5031 .panel-danger > .panel-footer + .panel-collapse .panel-body {
5031 .panel-danger > .panel-footer + .panel-collapse .panel-body {
5032 border-bottom-color: #ebccd1;
5032 border-bottom-color: #ebccd1;
5033 }
5033 }
5034 .well {
5034 .well {
5035 min-height: 20px;
5035 min-height: 20px;
5036 padding: 19px;
5036 padding: 19px;
5037 margin-bottom: 20px;
5037 margin-bottom: 20px;
5038 background-color: #f5f5f5;
5038 background-color: #f5f5f5;
5039 border: 1px solid #e3e3e3;
5039 border: 1px solid #e3e3e3;
5040 border-radius: 4px;
5040 border-radius: 2px;
5041 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
5041 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
5042 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
5042 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
5043 }
5043 }
5044 .well blockquote {
5044 .well blockquote {
5045 border-color: #ddd;
5045 border-color: #ddd;
5046 border-color: rgba(0, 0, 0, 0.15);
5046 border-color: rgba(0, 0, 0, 0.15);
5047 }
5047 }
5048 .well-lg {
5048 .well-lg {
5049 padding: 24px;
5049 padding: 24px;
5050 border-radius: 6px;
5050 border-radius: 6px;
5051 }
5051 }
5052 .well-sm {
5052 .well-sm {
5053 padding: 9px;
5053 padding: 9px;
5054 border-radius: 3px;
5054 border-radius: 2px;
5055 }
5055 }
5056 .close {
5056 .close {
5057 float: right;
5057 float: right;
5058 font-size: 19.5px;
5058 font-size: 19.5px;
5059 font-weight: bold;
5059 font-weight: bold;
5060 line-height: 1;
5060 line-height: 1;
5061 color: #000000;
5061 color: #000000;
5062 text-shadow: 0 1px 0 #ffffff;
5062 text-shadow: 0 1px 0 #ffffff;
5063 opacity: 0.2;
5063 opacity: 0.2;
5064 filter: alpha(opacity=20);
5064 filter: alpha(opacity=20);
5065 }
5065 }
5066 .close:hover,
5066 .close:hover,
5067 .close:focus {
5067 .close:focus {
5068 color: #000000;
5068 color: #000000;
5069 text-decoration: none;
5069 text-decoration: none;
5070 cursor: pointer;
5070 cursor: pointer;
5071 opacity: 0.5;
5071 opacity: 0.5;
5072 filter: alpha(opacity=50);
5072 filter: alpha(opacity=50);
5073 }
5073 }
5074 button.close {
5074 button.close {
5075 padding: 0;
5075 padding: 0;
5076 cursor: pointer;
5076 cursor: pointer;
5077 background: transparent;
5077 background: transparent;
5078 border: 0;
5078 border: 0;
5079 -webkit-appearance: none;
5079 -webkit-appearance: none;
5080 }
5080 }
5081 .modal-open {
5081 .modal-open {
5082 overflow: hidden;
5082 overflow: hidden;
5083 }
5083 }
5084 .modal {
5084 .modal {
5085 display: none;
5085 display: none;
5086 overflow: auto;
5086 overflow: auto;
5087 overflow-y: scroll;
5087 overflow-y: scroll;
5088 position: fixed;
5088 position: fixed;
5089 top: 0;
5089 top: 0;
5090 right: 0;
5090 right: 0;
5091 bottom: 0;
5091 bottom: 0;
5092 left: 0;
5092 left: 0;
5093 z-index: 1050;
5093 z-index: 1050;
5094 -webkit-overflow-scrolling: touch;
5094 -webkit-overflow-scrolling: touch;
5095 outline: 0;
5095 outline: 0;
5096 }
5096 }
5097 .modal.fade .modal-dialog {
5097 .modal.fade .modal-dialog {
5098 -webkit-transform: translate(0, -25%);
5098 -webkit-transform: translate(0, -25%);
5099 -ms-transform: translate(0, -25%);
5099 -ms-transform: translate(0, -25%);
5100 transform: translate(0, -25%);
5100 transform: translate(0, -25%);
5101 -webkit-transition: -webkit-transform 0.3s ease-out;
5101 -webkit-transition: -webkit-transform 0.3s ease-out;
5102 -moz-transition: -moz-transform 0.3s ease-out;
5102 -moz-transition: -moz-transform 0.3s ease-out;
5103 -o-transition: -o-transform 0.3s ease-out;
5103 -o-transition: -o-transform 0.3s ease-out;
5104 transition: transform 0.3s ease-out;
5104 transition: transform 0.3s ease-out;
5105 }
5105 }
5106 .modal.in .modal-dialog {
5106 .modal.in .modal-dialog {
5107 -webkit-transform: translate(0, 0);
5107 -webkit-transform: translate(0, 0);
5108 -ms-transform: translate(0, 0);
5108 -ms-transform: translate(0, 0);
5109 transform: translate(0, 0);
5109 transform: translate(0, 0);
5110 }
5110 }
5111 .modal-dialog {
5111 .modal-dialog {
5112 position: relative;
5112 position: relative;
5113 width: auto;
5113 width: auto;
5114 margin: 10px;
5114 margin: 10px;
5115 }
5115 }
5116 .modal-content {
5116 .modal-content {
5117 position: relative;
5117 position: relative;
5118 background-color: #ffffff;
5118 background-color: #ffffff;
5119 border: 1px solid #999999;
5119 border: 1px solid #999999;
5120 border: 1px solid rgba(0, 0, 0, 0.2);
5120 border: 1px solid rgba(0, 0, 0, 0.2);
5121 border-radius: 6px;
5121 border-radius: 6px;
5122 -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
5122 -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
5123 box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
5123 box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
5124 background-clip: padding-box;
5124 background-clip: padding-box;
5125 outline: none;
5125 outline: none;
5126 }
5126 }
5127 .modal-backdrop {
5127 .modal-backdrop {
5128 position: fixed;
5128 position: fixed;
5129 top: 0;
5129 top: 0;
5130 right: 0;
5130 right: 0;
5131 bottom: 0;
5131 bottom: 0;
5132 left: 0;
5132 left: 0;
5133 z-index: 1040;
5133 z-index: 1040;
5134 background-color: #000000;
5134 background-color: #000000;
5135 }
5135 }
5136 .modal-backdrop.fade {
5136 .modal-backdrop.fade {
5137 opacity: 0;
5137 opacity: 0;
5138 filter: alpha(opacity=0);
5138 filter: alpha(opacity=0);
5139 }
5139 }
5140 .modal-backdrop.in {
5140 .modal-backdrop.in {
5141 opacity: 0.5;
5141 opacity: 0.5;
5142 filter: alpha(opacity=50);
5142 filter: alpha(opacity=50);
5143 }
5143 }
5144 .modal-header {
5144 .modal-header {
5145 padding: 15px;
5145 padding: 15px;
5146 border-bottom: 1px solid #e5e5e5;
5146 border-bottom: 1px solid #e5e5e5;
5147 min-height: 16.42857143px;
5147 min-height: 16.42857143px;
5148 }
5148 }
5149 .modal-header .close {
5149 .modal-header .close {
5150 margin-top: -2px;
5150 margin-top: -2px;
5151 }
5151 }
5152 .modal-title {
5152 .modal-title {
5153 margin: 0;
5153 margin: 0;
5154 line-height: 1.42857143;
5154 line-height: 1.42857143;
5155 }
5155 }
5156 .modal-body {
5156 .modal-body {
5157 position: relative;
5157 position: relative;
5158 padding: 15px;
5158 padding: 15px;
5159 }
5159 }
5160 .modal-footer {
5160 .modal-footer {
5161 margin-top: 15px;
5161 margin-top: 15px;
5162 padding: 14px 15px 15px;
5162 padding: 14px 15px 15px;
5163 text-align: right;
5163 text-align: right;
5164 border-top: 1px solid #e5e5e5;
5164 border-top: 1px solid #e5e5e5;
5165 }
5165 }
5166 .modal-footer .btn + .btn {
5166 .modal-footer .btn + .btn {
5167 margin-left: 5px;
5167 margin-left: 5px;
5168 margin-bottom: 0;
5168 margin-bottom: 0;
5169 }
5169 }
5170 .modal-footer .btn-group .btn + .btn {
5170 .modal-footer .btn-group .btn + .btn {
5171 margin-left: -1px;
5171 margin-left: -1px;
5172 }
5172 }
5173 .modal-footer .btn-block + .btn-block {
5173 .modal-footer .btn-block + .btn-block {
5174 margin-left: 0;
5174 margin-left: 0;
5175 }
5175 }
5176 @media (min-width: 768px) {
5176 @media (min-width: 768px) {
5177 .modal-dialog {
5177 .modal-dialog {
5178 width: 600px;
5178 width: 600px;
5179 margin: 30px auto;
5179 margin: 30px auto;
5180 }
5180 }
5181 .modal-content {
5181 .modal-content {
5182 -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
5182 -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
5183 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
5183 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
5184 }
5184 }
5185 .modal-sm {
5185 .modal-sm {
5186 width: 300px;
5186 width: 300px;
5187 }
5187 }
5188 }
5188 }
5189 @media (min-width: 992px) {
5189 @media (min-width: 992px) {
5190 .modal-lg {
5190 .modal-lg {
5191 width: 900px;
5191 width: 900px;
5192 }
5192 }
5193 }
5193 }
5194 .tooltip {
5194 .tooltip {
5195 position: absolute;
5195 position: absolute;
5196 z-index: 1030;
5196 z-index: 1030;
5197 display: block;
5197 display: block;
5198 visibility: visible;
5198 visibility: visible;
5199 font-size: 12px;
5199 font-size: 12px;
5200 line-height: 1.4;
5200 line-height: 1.4;
5201 opacity: 0;
5201 opacity: 0;
5202 filter: alpha(opacity=0);
5202 filter: alpha(opacity=0);
5203 }
5203 }
5204 .tooltip.in {
5204 .tooltip.in {
5205 opacity: 0.9;
5205 opacity: 0.9;
5206 filter: alpha(opacity=90);
5206 filter: alpha(opacity=90);
5207 }
5207 }
5208 .tooltip.top {
5208 .tooltip.top {
5209 margin-top: -3px;
5209 margin-top: -3px;
5210 padding: 5px 0;
5210 padding: 5px 0;
5211 }
5211 }
5212 .tooltip.right {
5212 .tooltip.right {
5213 margin-left: 3px;
5213 margin-left: 3px;
5214 padding: 0 5px;
5214 padding: 0 5px;
5215 }
5215 }
5216 .tooltip.bottom {
5216 .tooltip.bottom {
5217 margin-top: 3px;
5217 margin-top: 3px;
5218 padding: 5px 0;
5218 padding: 5px 0;
5219 }
5219 }
5220 .tooltip.left {
5220 .tooltip.left {
5221 margin-left: -3px;
5221 margin-left: -3px;
5222 padding: 0 5px;
5222 padding: 0 5px;
5223 }
5223 }
5224 .tooltip-inner {
5224 .tooltip-inner {
5225 max-width: 200px;
5225 max-width: 200px;
5226 padding: 3px 8px;
5226 padding: 3px 8px;
5227 color: #ffffff;
5227 color: #ffffff;
5228 text-align: center;
5228 text-align: center;
5229 text-decoration: none;
5229 text-decoration: none;
5230 background-color: #000000;
5230 background-color: #000000;
5231 border-radius: 4px;
5231 border-radius: 2px;
5232 }
5232 }
5233 .tooltip-arrow {
5233 .tooltip-arrow {
5234 position: absolute;
5234 position: absolute;
5235 width: 0;
5235 width: 0;
5236 height: 0;
5236 height: 0;
5237 border-color: transparent;
5237 border-color: transparent;
5238 border-style: solid;
5238 border-style: solid;
5239 }
5239 }
5240 .tooltip.top .tooltip-arrow {
5240 .tooltip.top .tooltip-arrow {
5241 bottom: 0;
5241 bottom: 0;
5242 left: 50%;
5242 left: 50%;
5243 margin-left: -5px;
5243 margin-left: -5px;
5244 border-width: 5px 5px 0;
5244 border-width: 5px 5px 0;
5245 border-top-color: #000000;
5245 border-top-color: #000000;
5246 }
5246 }
5247 .tooltip.top-left .tooltip-arrow {
5247 .tooltip.top-left .tooltip-arrow {
5248 bottom: 0;
5248 bottom: 0;
5249 left: 5px;
5249 left: 5px;
5250 border-width: 5px 5px 0;
5250 border-width: 5px 5px 0;
5251 border-top-color: #000000;
5251 border-top-color: #000000;
5252 }
5252 }
5253 .tooltip.top-right .tooltip-arrow {
5253 .tooltip.top-right .tooltip-arrow {
5254 bottom: 0;
5254 bottom: 0;
5255 right: 5px;
5255 right: 5px;
5256 border-width: 5px 5px 0;
5256 border-width: 5px 5px 0;
5257 border-top-color: #000000;
5257 border-top-color: #000000;
5258 }
5258 }
5259 .tooltip.right .tooltip-arrow {
5259 .tooltip.right .tooltip-arrow {
5260 top: 50%;
5260 top: 50%;
5261 left: 0;
5261 left: 0;
5262 margin-top: -5px;
5262 margin-top: -5px;
5263 border-width: 5px 5px 5px 0;
5263 border-width: 5px 5px 5px 0;
5264 border-right-color: #000000;
5264 border-right-color: #000000;
5265 }
5265 }
5266 .tooltip.left .tooltip-arrow {
5266 .tooltip.left .tooltip-arrow {
5267 top: 50%;
5267 top: 50%;
5268 right: 0;
5268 right: 0;
5269 margin-top: -5px;
5269 margin-top: -5px;
5270 border-width: 5px 0 5px 5px;
5270 border-width: 5px 0 5px 5px;
5271 border-left-color: #000000;
5271 border-left-color: #000000;
5272 }
5272 }
5273 .tooltip.bottom .tooltip-arrow {
5273 .tooltip.bottom .tooltip-arrow {
5274 top: 0;
5274 top: 0;
5275 left: 50%;
5275 left: 50%;
5276 margin-left: -5px;
5276 margin-left: -5px;
5277 border-width: 0 5px 5px;
5277 border-width: 0 5px 5px;
5278 border-bottom-color: #000000;
5278 border-bottom-color: #000000;
5279 }
5279 }
5280 .tooltip.bottom-left .tooltip-arrow {
5280 .tooltip.bottom-left .tooltip-arrow {
5281 top: 0;
5281 top: 0;
5282 left: 5px;
5282 left: 5px;
5283 border-width: 0 5px 5px;
5283 border-width: 0 5px 5px;
5284 border-bottom-color: #000000;
5284 border-bottom-color: #000000;
5285 }
5285 }
5286 .tooltip.bottom-right .tooltip-arrow {
5286 .tooltip.bottom-right .tooltip-arrow {
5287 top: 0;
5287 top: 0;
5288 right: 5px;
5288 right: 5px;
5289 border-width: 0 5px 5px;
5289 border-width: 0 5px 5px;
5290 border-bottom-color: #000000;
5290 border-bottom-color: #000000;
5291 }
5291 }
5292 .popover {
5292 .popover {
5293 position: absolute;
5293 position: absolute;
5294 top: 0;
5294 top: 0;
5295 left: 0;
5295 left: 0;
5296 z-index: 1010;
5296 z-index: 1010;
5297 display: none;
5297 display: none;
5298 max-width: 276px;
5298 max-width: 276px;
5299 padding: 1px;
5299 padding: 1px;
5300 text-align: left;
5300 text-align: left;
5301 background-color: #ffffff;
5301 background-color: #ffffff;
5302 background-clip: padding-box;
5302 background-clip: padding-box;
5303 border: 1px solid #cccccc;
5303 border: 1px solid #cccccc;
5304 border: 1px solid rgba(0, 0, 0, 0.2);
5304 border: 1px solid rgba(0, 0, 0, 0.2);
5305 border-radius: 6px;
5305 border-radius: 6px;
5306 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5306 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5307 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5307 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5308 white-space: normal;
5308 white-space: normal;
5309 }
5309 }
5310 .popover.top {
5310 .popover.top {
5311 margin-top: -10px;
5311 margin-top: -10px;
5312 }
5312 }
5313 .popover.right {
5313 .popover.right {
5314 margin-left: 10px;
5314 margin-left: 10px;
5315 }
5315 }
5316 .popover.bottom {
5316 .popover.bottom {
5317 margin-top: 10px;
5317 margin-top: 10px;
5318 }
5318 }
5319 .popover.left {
5319 .popover.left {
5320 margin-left: -10px;
5320 margin-left: -10px;
5321 }
5321 }
5322 .popover-title {
5322 .popover-title {
5323 margin: 0;
5323 margin: 0;
5324 padding: 8px 14px;
5324 padding: 8px 14px;
5325 font-size: 13px;
5325 font-size: 13px;
5326 font-weight: normal;
5326 font-weight: normal;
5327 line-height: 18px;
5327 line-height: 18px;
5328 background-color: #f7f7f7;
5328 background-color: #f7f7f7;
5329 border-bottom: 1px solid #ebebeb;
5329 border-bottom: 1px solid #ebebeb;
5330 border-radius: 5px 5px 0 0;
5330 border-radius: 5px 5px 0 0;
5331 }
5331 }
5332 .popover-content {
5332 .popover-content {
5333 padding: 9px 14px;
5333 padding: 9px 14px;
5334 }
5334 }
5335 .popover > .arrow,
5335 .popover > .arrow,
5336 .popover > .arrow:after {
5336 .popover > .arrow:after {
5337 position: absolute;
5337 position: absolute;
5338 display: block;
5338 display: block;
5339 width: 0;
5339 width: 0;
5340 height: 0;
5340 height: 0;
5341 border-color: transparent;
5341 border-color: transparent;
5342 border-style: solid;
5342 border-style: solid;
5343 }
5343 }
5344 .popover > .arrow {
5344 .popover > .arrow {
5345 border-width: 11px;
5345 border-width: 11px;
5346 }
5346 }
5347 .popover > .arrow:after {
5347 .popover > .arrow:after {
5348 border-width: 10px;
5348 border-width: 10px;
5349 content: "";
5349 content: "";
5350 }
5350 }
5351 .popover.top > .arrow {
5351 .popover.top > .arrow {
5352 left: 50%;
5352 left: 50%;
5353 margin-left: -11px;
5353 margin-left: -11px;
5354 border-bottom-width: 0;
5354 border-bottom-width: 0;
5355 border-top-color: #999999;
5355 border-top-color: #999999;
5356 border-top-color: rgba(0, 0, 0, 0.25);
5356 border-top-color: rgba(0, 0, 0, 0.25);
5357 bottom: -11px;
5357 bottom: -11px;
5358 }
5358 }
5359 .popover.top > .arrow:after {
5359 .popover.top > .arrow:after {
5360 content: " ";
5360 content: " ";
5361 bottom: 1px;
5361 bottom: 1px;
5362 margin-left: -10px;
5362 margin-left: -10px;
5363 border-bottom-width: 0;
5363 border-bottom-width: 0;
5364 border-top-color: #ffffff;
5364 border-top-color: #ffffff;
5365 }
5365 }
5366 .popover.right > .arrow {
5366 .popover.right > .arrow {
5367 top: 50%;
5367 top: 50%;
5368 left: -11px;
5368 left: -11px;
5369 margin-top: -11px;
5369 margin-top: -11px;
5370 border-left-width: 0;
5370 border-left-width: 0;
5371 border-right-color: #999999;
5371 border-right-color: #999999;
5372 border-right-color: rgba(0, 0, 0, 0.25);
5372 border-right-color: rgba(0, 0, 0, 0.25);
5373 }
5373 }
5374 .popover.right > .arrow:after {
5374 .popover.right > .arrow:after {
5375 content: " ";
5375 content: " ";
5376 left: 1px;
5376 left: 1px;
5377 bottom: -10px;
5377 bottom: -10px;
5378 border-left-width: 0;
5378 border-left-width: 0;
5379 border-right-color: #ffffff;
5379 border-right-color: #ffffff;
5380 }
5380 }
5381 .popover.bottom > .arrow {
5381 .popover.bottom > .arrow {
5382 left: 50%;
5382 left: 50%;
5383 margin-left: -11px;
5383 margin-left: -11px;
5384 border-top-width: 0;
5384 border-top-width: 0;
5385 border-bottom-color: #999999;
5385 border-bottom-color: #999999;
5386 border-bottom-color: rgba(0, 0, 0, 0.25);
5386 border-bottom-color: rgba(0, 0, 0, 0.25);
5387 top: -11px;
5387 top: -11px;
5388 }
5388 }
5389 .popover.bottom > .arrow:after {
5389 .popover.bottom > .arrow:after {
5390 content: " ";
5390 content: " ";
5391 top: 1px;
5391 top: 1px;
5392 margin-left: -10px;
5392 margin-left: -10px;
5393 border-top-width: 0;
5393 border-top-width: 0;
5394 border-bottom-color: #ffffff;
5394 border-bottom-color: #ffffff;
5395 }
5395 }
5396 .popover.left > .arrow {
5396 .popover.left > .arrow {
5397 top: 50%;
5397 top: 50%;
5398 right: -11px;
5398 right: -11px;
5399 margin-top: -11px;
5399 margin-top: -11px;
5400 border-right-width: 0;
5400 border-right-width: 0;
5401 border-left-color: #999999;
5401 border-left-color: #999999;
5402 border-left-color: rgba(0, 0, 0, 0.25);
5402 border-left-color: rgba(0, 0, 0, 0.25);
5403 }
5403 }
5404 .popover.left > .arrow:after {
5404 .popover.left > .arrow:after {
5405 content: " ";
5405 content: " ";
5406 right: 1px;
5406 right: 1px;
5407 border-right-width: 0;
5407 border-right-width: 0;
5408 border-left-color: #ffffff;
5408 border-left-color: #ffffff;
5409 bottom: -10px;
5409 bottom: -10px;
5410 }
5410 }
5411 .carousel {
5411 .carousel {
5412 position: relative;
5412 position: relative;
5413 }
5413 }
5414 .carousel-inner {
5414 .carousel-inner {
5415 position: relative;
5415 position: relative;
5416 overflow: hidden;
5416 overflow: hidden;
5417 width: 100%;
5417 width: 100%;
5418 }
5418 }
5419 .carousel-inner > .item {
5419 .carousel-inner > .item {
5420 display: none;
5420 display: none;
5421 position: relative;
5421 position: relative;
5422 -webkit-transition: 0.6s ease-in-out left;
5422 -webkit-transition: 0.6s ease-in-out left;
5423 transition: 0.6s ease-in-out left;
5423 transition: 0.6s ease-in-out left;
5424 }
5424 }
5425 .carousel-inner > .item > img,
5425 .carousel-inner > .item > img,
5426 .carousel-inner > .item > a > img {
5426 .carousel-inner > .item > a > img {
5427 line-height: 1;
5427 line-height: 1;
5428 }
5428 }
5429 .carousel-inner > .active,
5429 .carousel-inner > .active,
5430 .carousel-inner > .next,
5430 .carousel-inner > .next,
5431 .carousel-inner > .prev {
5431 .carousel-inner > .prev {
5432 display: block;
5432 display: block;
5433 }
5433 }
5434 .carousel-inner > .active {
5434 .carousel-inner > .active {
5435 left: 0;
5435 left: 0;
5436 }
5436 }
5437 .carousel-inner > .next,
5437 .carousel-inner > .next,
5438 .carousel-inner > .prev {
5438 .carousel-inner > .prev {
5439 position: absolute;
5439 position: absolute;
5440 top: 0;
5440 top: 0;
5441 width: 100%;
5441 width: 100%;
5442 }
5442 }
5443 .carousel-inner > .next {
5443 .carousel-inner > .next {
5444 left: 100%;
5444 left: 100%;
5445 }
5445 }
5446 .carousel-inner > .prev {
5446 .carousel-inner > .prev {
5447 left: -100%;
5447 left: -100%;
5448 }
5448 }
5449 .carousel-inner > .next.left,
5449 .carousel-inner > .next.left,
5450 .carousel-inner > .prev.right {
5450 .carousel-inner > .prev.right {
5451 left: 0;
5451 left: 0;
5452 }
5452 }
5453 .carousel-inner > .active.left {
5453 .carousel-inner > .active.left {
5454 left: -100%;
5454 left: -100%;
5455 }
5455 }
5456 .carousel-inner > .active.right {
5456 .carousel-inner > .active.right {
5457 left: 100%;
5457 left: 100%;
5458 }
5458 }
5459 .carousel-control {
5459 .carousel-control {
5460 position: absolute;
5460 position: absolute;
5461 top: 0;
5461 top: 0;
5462 left: 0;
5462 left: 0;
5463 bottom: 0;
5463 bottom: 0;
5464 width: 15%;
5464 width: 15%;
5465 opacity: 0.5;
5465 opacity: 0.5;
5466 filter: alpha(opacity=50);
5466 filter: alpha(opacity=50);
5467 font-size: 20px;
5467 font-size: 20px;
5468 color: #ffffff;
5468 color: #ffffff;
5469 text-align: center;
5469 text-align: center;
5470 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5470 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5471 }
5471 }
5472 .carousel-control.left {
5472 .carousel-control.left {
5473 background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
5473 background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
5474 background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
5474 background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
5475 background-repeat: repeat-x;
5475 background-repeat: repeat-x;
5476 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
5476 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
5477 }
5477 }
5478 .carousel-control.right {
5478 .carousel-control.right {
5479 left: auto;
5479 left: auto;
5480 right: 0;
5480 right: 0;
5481 background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
5481 background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
5482 background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
5482 background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
5483 background-repeat: repeat-x;
5483 background-repeat: repeat-x;
5484 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
5484 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
5485 }
5485 }
5486 .carousel-control:hover,
5486 .carousel-control:hover,
5487 .carousel-control:focus {
5487 .carousel-control:focus {
5488 outline: none;
5488 outline: none;
5489 color: #ffffff;
5489 color: #ffffff;
5490 text-decoration: none;
5490 text-decoration: none;
5491 opacity: 0.9;
5491 opacity: 0.9;
5492 filter: alpha(opacity=90);
5492 filter: alpha(opacity=90);
5493 }
5493 }
5494 .carousel-control .icon-prev,
5494 .carousel-control .icon-prev,
5495 .carousel-control .icon-next,
5495 .carousel-control .icon-next,
5496 .carousel-control .glyphicon-chevron-left,
5496 .carousel-control .glyphicon-chevron-left,
5497 .carousel-control .glyphicon-chevron-right {
5497 .carousel-control .glyphicon-chevron-right {
5498 position: absolute;
5498 position: absolute;
5499 top: 50%;
5499 top: 50%;
5500 z-index: 5;
5500 z-index: 5;
5501 display: inline-block;
5501 display: inline-block;
5502 }
5502 }
5503 .carousel-control .icon-prev,
5503 .carousel-control .icon-prev,
5504 .carousel-control .glyphicon-chevron-left {
5504 .carousel-control .glyphicon-chevron-left {
5505 left: 50%;
5505 left: 50%;
5506 }
5506 }
5507 .carousel-control .icon-next,
5507 .carousel-control .icon-next,
5508 .carousel-control .glyphicon-chevron-right {
5508 .carousel-control .glyphicon-chevron-right {
5509 right: 50%;
5509 right: 50%;
5510 }
5510 }
5511 .carousel-control .icon-prev,
5511 .carousel-control .icon-prev,
5512 .carousel-control .icon-next {
5512 .carousel-control .icon-next {
5513 width: 20px;
5513 width: 20px;
5514 height: 20px;
5514 height: 20px;
5515 margin-top: -10px;
5515 margin-top: -10px;
5516 margin-left: -10px;
5516 margin-left: -10px;
5517 font-family: serif;
5517 font-family: serif;
5518 }
5518 }
5519 .carousel-control .icon-prev:before {
5519 .carousel-control .icon-prev:before {
5520 content: '\2039';
5520 content: '\2039';
5521 }
5521 }
5522 .carousel-control .icon-next:before {
5522 .carousel-control .icon-next:before {
5523 content: '\203a';
5523 content: '\203a';
5524 }
5524 }
5525 .carousel-indicators {
5525 .carousel-indicators {
5526 position: absolute;
5526 position: absolute;
5527 bottom: 10px;
5527 bottom: 10px;
5528 left: 50%;
5528 left: 50%;
5529 z-index: 15;
5529 z-index: 15;
5530 width: 60%;
5530 width: 60%;
5531 margin-left: -30%;
5531 margin-left: -30%;
5532 padding-left: 0;
5532 padding-left: 0;
5533 list-style: none;
5533 list-style: none;
5534 text-align: center;
5534 text-align: center;
5535 }
5535 }
5536 .carousel-indicators li {
5536 .carousel-indicators li {
5537 display: inline-block;
5537 display: inline-block;
5538 width: 10px;
5538 width: 10px;
5539 height: 10px;
5539 height: 10px;
5540 margin: 1px;
5540 margin: 1px;
5541 text-indent: -999px;
5541 text-indent: -999px;
5542 border: 1px solid #ffffff;
5542 border: 1px solid #ffffff;
5543 border-radius: 10px;
5543 border-radius: 10px;
5544 cursor: pointer;
5544 cursor: pointer;
5545 background-color: #000 \9;
5545 background-color: #000 \9;
5546 background-color: rgba(0, 0, 0, 0);
5546 background-color: rgba(0, 0, 0, 0);
5547 }
5547 }
5548 .carousel-indicators .active {
5548 .carousel-indicators .active {
5549 margin: 0;
5549 margin: 0;
5550 width: 12px;
5550 width: 12px;
5551 height: 12px;
5551 height: 12px;
5552 background-color: #ffffff;
5552 background-color: #ffffff;
5553 }
5553 }
5554 .carousel-caption {
5554 .carousel-caption {
5555 position: absolute;
5555 position: absolute;
5556 left: 15%;
5556 left: 15%;
5557 right: 15%;
5557 right: 15%;
5558 bottom: 20px;
5558 bottom: 20px;
5559 z-index: 10;
5559 z-index: 10;
5560 padding-top: 20px;
5560 padding-top: 20px;
5561 padding-bottom: 20px;
5561 padding-bottom: 20px;
5562 color: #ffffff;
5562 color: #ffffff;
5563 text-align: center;
5563 text-align: center;
5564 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5564 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5565 }
5565 }
5566 .carousel-caption .btn {
5566 .carousel-caption .btn {
5567 text-shadow: none;
5567 text-shadow: none;
5568 }
5568 }
5569 @media screen and (min-width: 768px) {
5569 @media screen and (min-width: 768px) {
5570 .carousel-control .glyphicon-chevron-left,
5570 .carousel-control .glyphicon-chevron-left,
5571 .carousel-control .glyphicon-chevron-right,
5571 .carousel-control .glyphicon-chevron-right,
5572 .carousel-control .icon-prev,
5572 .carousel-control .icon-prev,
5573 .carousel-control .icon-next {
5573 .carousel-control .icon-next {
5574 width: 30px;
5574 width: 30px;
5575 height: 30px;
5575 height: 30px;
5576 margin-top: -15px;
5576 margin-top: -15px;
5577 margin-left: -15px;
5577 margin-left: -15px;
5578 font-size: 30px;
5578 font-size: 30px;
5579 }
5579 }
5580 .carousel-caption {
5580 .carousel-caption {
5581 left: 20%;
5581 left: 20%;
5582 right: 20%;
5582 right: 20%;
5583 padding-bottom: 30px;
5583 padding-bottom: 30px;
5584 }
5584 }
5585 .carousel-indicators {
5585 .carousel-indicators {
5586 bottom: 20px;
5586 bottom: 20px;
5587 }
5587 }
5588 }
5588 }
5589 .clearfix:before,
5589 .clearfix:before,
5590 .clearfix:after,
5590 .clearfix:after,
5591 .container:before,
5591 .container:before,
5592 .container:after,
5592 .container:after,
5593 .container-fluid:before,
5593 .container-fluid:before,
5594 .container-fluid:after,
5594 .container-fluid:after,
5595 .row:before,
5595 .row:before,
5596 .row:after,
5596 .row:after,
5597 .form-horizontal .form-group:before,
5597 .form-horizontal .form-group:before,
5598 .form-horizontal .form-group:after,
5598 .form-horizontal .form-group:after,
5599 .btn-toolbar:before,
5599 .btn-toolbar:before,
5600 .btn-toolbar:after,
5600 .btn-toolbar:after,
5601 .btn-group-vertical > .btn-group:before,
5601 .btn-group-vertical > .btn-group:before,
5602 .btn-group-vertical > .btn-group:after,
5602 .btn-group-vertical > .btn-group:after,
5603 .nav:before,
5603 .nav:before,
5604 .nav:after,
5604 .nav:after,
5605 .navbar:before,
5605 .navbar:before,
5606 .navbar:after,
5606 .navbar:after,
5607 .navbar-header:before,
5607 .navbar-header:before,
5608 .navbar-header:after,
5608 .navbar-header:after,
5609 .navbar-collapse:before,
5609 .navbar-collapse:before,
5610 .navbar-collapse:after,
5610 .navbar-collapse:after,
5611 .pager:before,
5611 .pager:before,
5612 .pager:after,
5612 .pager:after,
5613 .panel-body:before,
5613 .panel-body:before,
5614 .panel-body:after,
5614 .panel-body:after,
5615 .modal-footer:before,
5615 .modal-footer:before,
5616 .modal-footer:after,
5616 .modal-footer:after,
5617 .item_buttons:before,
5617 .item_buttons:before,
5618 .item_buttons:after {
5618 .item_buttons:after {
5619 content: " ";
5619 content: " ";
5620 display: table;
5620 display: table;
5621 }
5621 }
5622 .clearfix:after,
5622 .clearfix:after,
5623 .container:after,
5623 .container:after,
5624 .container-fluid:after,
5624 .container-fluid:after,
5625 .row:after,
5625 .row:after,
5626 .form-horizontal .form-group:after,
5626 .form-horizontal .form-group:after,
5627 .btn-toolbar:after,
5627 .btn-toolbar:after,
5628 .btn-group-vertical > .btn-group:after,
5628 .btn-group-vertical > .btn-group:after,
5629 .nav:after,
5629 .nav:after,
5630 .navbar:after,
5630 .navbar:after,
5631 .navbar-header:after,
5631 .navbar-header:after,
5632 .navbar-collapse:after,
5632 .navbar-collapse:after,
5633 .pager:after,
5633 .pager:after,
5634 .panel-body:after,
5634 .panel-body:after,
5635 .modal-footer:after,
5635 .modal-footer:after,
5636 .item_buttons:after {
5636 .item_buttons:after {
5637 clear: both;
5637 clear: both;
5638 }
5638 }
5639 .center-block {
5639 .center-block {
5640 display: block;
5640 display: block;
5641 margin-left: auto;
5641 margin-left: auto;
5642 margin-right: auto;
5642 margin-right: auto;
5643 }
5643 }
5644 .pull-right {
5644 .pull-right {
5645 float: right !important;
5645 float: right !important;
5646 }
5646 }
5647 .pull-left {
5647 .pull-left {
5648 float: left !important;
5648 float: left !important;
5649 }
5649 }
5650 .hide {
5650 .hide {
5651 display: none !important;
5651 display: none !important;
5652 }
5652 }
5653 .show {
5653 .show {
5654 display: block !important;
5654 display: block !important;
5655 }
5655 }
5656 .invisible {
5656 .invisible {
5657 visibility: hidden;
5657 visibility: hidden;
5658 }
5658 }
5659 .text-hide {
5659 .text-hide {
5660 font: 0/0 a;
5660 font: 0/0 a;
5661 color: transparent;
5661 color: transparent;
5662 text-shadow: none;
5662 text-shadow: none;
5663 background-color: transparent;
5663 background-color: transparent;
5664 border: 0;
5664 border: 0;
5665 }
5665 }
5666 .hidden {
5666 .hidden {
5667 display: none !important;
5667 display: none !important;
5668 visibility: hidden !important;
5668 visibility: hidden !important;
5669 }
5669 }
5670 .affix {
5670 .affix {
5671 position: fixed;
5671 position: fixed;
5672 }
5672 }
5673 @-ms-viewport {
5673 @-ms-viewport {
5674 width: device-width;
5674 width: device-width;
5675 }
5675 }
5676 .visible-xs,
5676 .visible-xs,
5677 .visible-sm,
5677 .visible-sm,
5678 .visible-md,
5678 .visible-md,
5679 .visible-lg {
5679 .visible-lg {
5680 display: none !important;
5680 display: none !important;
5681 }
5681 }
5682 @media (max-width: 767px) {
5682 @media (max-width: 767px) {
5683 .visible-xs {
5683 .visible-xs {
5684 display: block !important;
5684 display: block !important;
5685 }
5685 }
5686 table.visible-xs {
5686 table.visible-xs {
5687 display: table;
5687 display: table;
5688 }
5688 }
5689 tr.visible-xs {
5689 tr.visible-xs {
5690 display: table-row !important;
5690 display: table-row !important;
5691 }
5691 }
5692 th.visible-xs,
5692 th.visible-xs,
5693 td.visible-xs {
5693 td.visible-xs {
5694 display: table-cell !important;
5694 display: table-cell !important;
5695 }
5695 }
5696 }
5696 }
5697 @media (min-width: 768px) and (max-width: 991px) {
5697 @media (min-width: 768px) and (max-width: 991px) {
5698 .visible-sm {
5698 .visible-sm {
5699 display: block !important;
5699 display: block !important;
5700 }
5700 }
5701 table.visible-sm {
5701 table.visible-sm {
5702 display: table;
5702 display: table;
5703 }
5703 }
5704 tr.visible-sm {
5704 tr.visible-sm {
5705 display: table-row !important;
5705 display: table-row !important;
5706 }
5706 }
5707 th.visible-sm,
5707 th.visible-sm,
5708 td.visible-sm {
5708 td.visible-sm {
5709 display: table-cell !important;
5709 display: table-cell !important;
5710 }
5710 }
5711 }
5711 }
5712 @media (min-width: 992px) and (max-width: 1199px) {
5712 @media (min-width: 992px) and (max-width: 1199px) {
5713 .visible-md {
5713 .visible-md {
5714 display: block !important;
5714 display: block !important;
5715 }
5715 }
5716 table.visible-md {
5716 table.visible-md {
5717 display: table;
5717 display: table;
5718 }
5718 }
5719 tr.visible-md {
5719 tr.visible-md {
5720 display: table-row !important;
5720 display: table-row !important;
5721 }
5721 }
5722 th.visible-md,
5722 th.visible-md,
5723 td.visible-md {
5723 td.visible-md {
5724 display: table-cell !important;
5724 display: table-cell !important;
5725 }
5725 }
5726 }
5726 }
5727 @media (min-width: 1200px) {
5727 @media (min-width: 1200px) {
5728 .visible-lg {
5728 .visible-lg {
5729 display: block !important;
5729 display: block !important;
5730 }
5730 }
5731 table.visible-lg {
5731 table.visible-lg {
5732 display: table;
5732 display: table;
5733 }
5733 }
5734 tr.visible-lg {
5734 tr.visible-lg {
5735 display: table-row !important;
5735 display: table-row !important;
5736 }
5736 }
5737 th.visible-lg,
5737 th.visible-lg,
5738 td.visible-lg {
5738 td.visible-lg {
5739 display: table-cell !important;
5739 display: table-cell !important;
5740 }
5740 }
5741 }
5741 }
5742 @media (max-width: 767px) {
5742 @media (max-width: 767px) {
5743 .hidden-xs {
5743 .hidden-xs {
5744 display: none !important;
5744 display: none !important;
5745 }
5745 }
5746 }
5746 }
5747 @media (min-width: 768px) and (max-width: 991px) {
5747 @media (min-width: 768px) and (max-width: 991px) {
5748 .hidden-sm {
5748 .hidden-sm {
5749 display: none !important;
5749 display: none !important;
5750 }
5750 }
5751 }
5751 }
5752 @media (min-width: 992px) and (max-width: 1199px) {
5752 @media (min-width: 992px) and (max-width: 1199px) {
5753 .hidden-md {
5753 .hidden-md {
5754 display: none !important;
5754 display: none !important;
5755 }
5755 }
5756 }
5756 }
5757 @media (min-width: 1200px) {
5757 @media (min-width: 1200px) {
5758 .hidden-lg {
5758 .hidden-lg {
5759 display: none !important;
5759 display: none !important;
5760 }
5760 }
5761 }
5761 }
5762 .visible-print {
5762 .visible-print {
5763 display: none !important;
5763 display: none !important;
5764 }
5764 }
5765 @media print {
5765 @media print {
5766 .visible-print {
5766 .visible-print {
5767 display: block !important;
5767 display: block !important;
5768 }
5768 }
5769 table.visible-print {
5769 table.visible-print {
5770 display: table;
5770 display: table;
5771 }
5771 }
5772 tr.visible-print {
5772 tr.visible-print {
5773 display: table-row !important;
5773 display: table-row !important;
5774 }
5774 }
5775 th.visible-print,
5775 th.visible-print,
5776 td.visible-print {
5776 td.visible-print {
5777 display: table-cell !important;
5777 display: table-cell !important;
5778 }
5778 }
5779 }
5779 }
5780 @media print {
5780 @media print {
5781 .hidden-print {
5781 .hidden-print {
5782 display: none !important;
5782 display: none !important;
5783 }
5783 }
5784 }
5784 }
5785 /*!
5785 /*!
5786 *
5786 *
5787 * Font Awesome
5787 * Font Awesome
5788 *
5788 *
5789 */
5789 */
5790 /*!
5790 /*!
5791 * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
5791 * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
5792 * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
5792 * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
5793 */
5793 */
5794 /* FONT PATH
5794 /* FONT PATH
5795 * -------------------------- */
5795 * -------------------------- */
5796 @font-face {
5796 @font-face {
5797 font-family: 'FontAwesome';
5797 font-family: 'FontAwesome';
5798 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.2.0');
5798 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.2.0');
5799 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
5799 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
5800 font-weight: normal;
5800 font-weight: normal;
5801 font-style: normal;
5801 font-style: normal;
5802 }
5802 }
5803 .fa {
5803 .fa {
5804 display: inline-block;
5804 display: inline-block;
5805 font: normal normal normal 14px/1 FontAwesome;
5805 font: normal normal normal 14px/1 FontAwesome;
5806 font-size: inherit;
5806 font-size: inherit;
5807 text-rendering: auto;
5807 text-rendering: auto;
5808 -webkit-font-smoothing: antialiased;
5808 -webkit-font-smoothing: antialiased;
5809 -moz-osx-font-smoothing: grayscale;
5809 -moz-osx-font-smoothing: grayscale;
5810 }
5810 }
5811 /* makes the font 33% larger relative to the icon container */
5811 /* makes the font 33% larger relative to the icon container */
5812 .fa-lg {
5812 .fa-lg {
5813 font-size: 1.33333333em;
5813 font-size: 1.33333333em;
5814 line-height: 0.75em;
5814 line-height: 0.75em;
5815 vertical-align: -15%;
5815 vertical-align: -15%;
5816 }
5816 }
5817 .fa-2x {
5817 .fa-2x {
5818 font-size: 2em;
5818 font-size: 2em;
5819 }
5819 }
5820 .fa-3x {
5820 .fa-3x {
5821 font-size: 3em;
5821 font-size: 3em;
5822 }
5822 }
5823 .fa-4x {
5823 .fa-4x {
5824 font-size: 4em;
5824 font-size: 4em;
5825 }
5825 }
5826 .fa-5x {
5826 .fa-5x {
5827 font-size: 5em;
5827 font-size: 5em;
5828 }
5828 }
5829 .fa-fw {
5829 .fa-fw {
5830 width: 1.28571429em;
5830 width: 1.28571429em;
5831 text-align: center;
5831 text-align: center;
5832 }
5832 }
5833 .fa-ul {
5833 .fa-ul {
5834 padding-left: 0;
5834 padding-left: 0;
5835 margin-left: 2.14285714em;
5835 margin-left: 2.14285714em;
5836 list-style-type: none;
5836 list-style-type: none;
5837 }
5837 }
5838 .fa-ul > li {
5838 .fa-ul > li {
5839 position: relative;
5839 position: relative;
5840 }
5840 }
5841 .fa-li {
5841 .fa-li {
5842 position: absolute;
5842 position: absolute;
5843 left: -2.14285714em;
5843 left: -2.14285714em;
5844 width: 2.14285714em;
5844 width: 2.14285714em;
5845 top: 0.14285714em;
5845 top: 0.14285714em;
5846 text-align: center;
5846 text-align: center;
5847 }
5847 }
5848 .fa-li.fa-lg {
5848 .fa-li.fa-lg {
5849 left: -1.85714286em;
5849 left: -1.85714286em;
5850 }
5850 }
5851 .fa-border {
5851 .fa-border {
5852 padding: .2em .25em .15em;
5852 padding: .2em .25em .15em;
5853 border: solid 0.08em #eeeeee;
5853 border: solid 0.08em #eeeeee;
5854 border-radius: .1em;
5854 border-radius: .1em;
5855 }
5855 }
5856 .pull-right {
5856 .pull-right {
5857 float: right;
5857 float: right;
5858 }
5858 }
5859 .pull-left {
5859 .pull-left {
5860 float: left;
5860 float: left;
5861 }
5861 }
5862 .fa.pull-left {
5862 .fa.pull-left {
5863 margin-right: .3em;
5863 margin-right: .3em;
5864 }
5864 }
5865 .fa.pull-right {
5865 .fa.pull-right {
5866 margin-left: .3em;
5866 margin-left: .3em;
5867 }
5867 }
5868 .fa-spin {
5868 .fa-spin {
5869 -webkit-animation: fa-spin 2s infinite linear;
5869 -webkit-animation: fa-spin 2s infinite linear;
5870 animation: fa-spin 2s infinite linear;
5870 animation: fa-spin 2s infinite linear;
5871 }
5871 }
5872 @-webkit-keyframes fa-spin {
5872 @-webkit-keyframes fa-spin {
5873 0% {
5873 0% {
5874 -webkit-transform: rotate(0deg);
5874 -webkit-transform: rotate(0deg);
5875 transform: rotate(0deg);
5875 transform: rotate(0deg);
5876 }
5876 }
5877 100% {
5877 100% {
5878 -webkit-transform: rotate(359deg);
5878 -webkit-transform: rotate(359deg);
5879 transform: rotate(359deg);
5879 transform: rotate(359deg);
5880 }
5880 }
5881 }
5881 }
5882 @keyframes fa-spin {
5882 @keyframes fa-spin {
5883 0% {
5883 0% {
5884 -webkit-transform: rotate(0deg);
5884 -webkit-transform: rotate(0deg);
5885 transform: rotate(0deg);
5885 transform: rotate(0deg);
5886 }
5886 }
5887 100% {
5887 100% {
5888 -webkit-transform: rotate(359deg);
5888 -webkit-transform: rotate(359deg);
5889 transform: rotate(359deg);
5889 transform: rotate(359deg);
5890 }
5890 }
5891 }
5891 }
5892 .fa-rotate-90 {
5892 .fa-rotate-90 {
5893 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
5893 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
5894 -webkit-transform: rotate(90deg);
5894 -webkit-transform: rotate(90deg);
5895 -ms-transform: rotate(90deg);
5895 -ms-transform: rotate(90deg);
5896 transform: rotate(90deg);
5896 transform: rotate(90deg);
5897 }
5897 }
5898 .fa-rotate-180 {
5898 .fa-rotate-180 {
5899 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
5899 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
5900 -webkit-transform: rotate(180deg);
5900 -webkit-transform: rotate(180deg);
5901 -ms-transform: rotate(180deg);
5901 -ms-transform: rotate(180deg);
5902 transform: rotate(180deg);
5902 transform: rotate(180deg);
5903 }
5903 }
5904 .fa-rotate-270 {
5904 .fa-rotate-270 {
5905 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
5905 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
5906 -webkit-transform: rotate(270deg);
5906 -webkit-transform: rotate(270deg);
5907 -ms-transform: rotate(270deg);
5907 -ms-transform: rotate(270deg);
5908 transform: rotate(270deg);
5908 transform: rotate(270deg);
5909 }
5909 }
5910 .fa-flip-horizontal {
5910 .fa-flip-horizontal {
5911 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
5911 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
5912 -webkit-transform: scale(-1, 1);
5912 -webkit-transform: scale(-1, 1);
5913 -ms-transform: scale(-1, 1);
5913 -ms-transform: scale(-1, 1);
5914 transform: scale(-1, 1);
5914 transform: scale(-1, 1);
5915 }
5915 }
5916 .fa-flip-vertical {
5916 .fa-flip-vertical {
5917 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
5917 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
5918 -webkit-transform: scale(1, -1);
5918 -webkit-transform: scale(1, -1);
5919 -ms-transform: scale(1, -1);
5919 -ms-transform: scale(1, -1);
5920 transform: scale(1, -1);
5920 transform: scale(1, -1);
5921 }
5921 }
5922 :root .fa-rotate-90,
5922 :root .fa-rotate-90,
5923 :root .fa-rotate-180,
5923 :root .fa-rotate-180,
5924 :root .fa-rotate-270,
5924 :root .fa-rotate-270,
5925 :root .fa-flip-horizontal,
5925 :root .fa-flip-horizontal,
5926 :root .fa-flip-vertical {
5926 :root .fa-flip-vertical {
5927 filter: none;
5927 filter: none;
5928 }
5928 }
5929 .fa-stack {
5929 .fa-stack {
5930 position: relative;
5930 position: relative;
5931 display: inline-block;
5931 display: inline-block;
5932 width: 2em;
5932 width: 2em;
5933 height: 2em;
5933 height: 2em;
5934 line-height: 2em;
5934 line-height: 2em;
5935 vertical-align: middle;
5935 vertical-align: middle;
5936 }
5936 }
5937 .fa-stack-1x,
5937 .fa-stack-1x,
5938 .fa-stack-2x {
5938 .fa-stack-2x {
5939 position: absolute;
5939 position: absolute;
5940 left: 0;
5940 left: 0;
5941 width: 100%;
5941 width: 100%;
5942 text-align: center;
5942 text-align: center;
5943 }
5943 }
5944 .fa-stack-1x {
5944 .fa-stack-1x {
5945 line-height: inherit;
5945 line-height: inherit;
5946 }
5946 }
5947 .fa-stack-2x {
5947 .fa-stack-2x {
5948 font-size: 2em;
5948 font-size: 2em;
5949 }
5949 }
5950 .fa-inverse {
5950 .fa-inverse {
5951 color: #ffffff;
5951 color: #ffffff;
5952 }
5952 }
5953 /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
5953 /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
5954 readers do not read off random characters that represent icons */
5954 readers do not read off random characters that represent icons */
5955 .fa-glass:before {
5955 .fa-glass:before {
5956 content: "\f000";
5956 content: "\f000";
5957 }
5957 }
5958 .fa-music:before {
5958 .fa-music:before {
5959 content: "\f001";
5959 content: "\f001";
5960 }
5960 }
5961 .fa-search:before {
5961 .fa-search:before {
5962 content: "\f002";
5962 content: "\f002";
5963 }
5963 }
5964 .fa-envelope-o:before {
5964 .fa-envelope-o:before {
5965 content: "\f003";
5965 content: "\f003";
5966 }
5966 }
5967 .fa-heart:before {
5967 .fa-heart:before {
5968 content: "\f004";
5968 content: "\f004";
5969 }
5969 }
5970 .fa-star:before {
5970 .fa-star:before {
5971 content: "\f005";
5971 content: "\f005";
5972 }
5972 }
5973 .fa-star-o:before {
5973 .fa-star-o:before {
5974 content: "\f006";
5974 content: "\f006";
5975 }
5975 }
5976 .fa-user:before {
5976 .fa-user:before {
5977 content: "\f007";
5977 content: "\f007";
5978 }
5978 }
5979 .fa-film:before {
5979 .fa-film:before {
5980 content: "\f008";
5980 content: "\f008";
5981 }
5981 }
5982 .fa-th-large:before {
5982 .fa-th-large:before {
5983 content: "\f009";
5983 content: "\f009";
5984 }
5984 }
5985 .fa-th:before {
5985 .fa-th:before {
5986 content: "\f00a";
5986 content: "\f00a";
5987 }
5987 }
5988 .fa-th-list:before {
5988 .fa-th-list:before {
5989 content: "\f00b";
5989 content: "\f00b";
5990 }
5990 }
5991 .fa-check:before {
5991 .fa-check:before {
5992 content: "\f00c";
5992 content: "\f00c";
5993 }
5993 }
5994 .fa-remove:before,
5994 .fa-remove:before,
5995 .fa-close:before,
5995 .fa-close:before,
5996 .fa-times:before {
5996 .fa-times:before {
5997 content: "\f00d";
5997 content: "\f00d";
5998 }
5998 }
5999 .fa-search-plus:before {
5999 .fa-search-plus:before {
6000 content: "\f00e";
6000 content: "\f00e";
6001 }
6001 }
6002 .fa-search-minus:before {
6002 .fa-search-minus:before {
6003 content: "\f010";
6003 content: "\f010";
6004 }
6004 }
6005 .fa-power-off:before {
6005 .fa-power-off:before {
6006 content: "\f011";
6006 content: "\f011";
6007 }
6007 }
6008 .fa-signal:before {
6008 .fa-signal:before {
6009 content: "\f012";
6009 content: "\f012";
6010 }
6010 }
6011 .fa-gear:before,
6011 .fa-gear:before,
6012 .fa-cog:before {
6012 .fa-cog:before {
6013 content: "\f013";
6013 content: "\f013";
6014 }
6014 }
6015 .fa-trash-o:before {
6015 .fa-trash-o:before {
6016 content: "\f014";
6016 content: "\f014";
6017 }
6017 }
6018 .fa-home:before {
6018 .fa-home:before {
6019 content: "\f015";
6019 content: "\f015";
6020 }
6020 }
6021 .fa-file-o:before {
6021 .fa-file-o:before {
6022 content: "\f016";
6022 content: "\f016";
6023 }
6023 }
6024 .fa-clock-o:before {
6024 .fa-clock-o:before {
6025 content: "\f017";
6025 content: "\f017";
6026 }
6026 }
6027 .fa-road:before {
6027 .fa-road:before {
6028 content: "\f018";
6028 content: "\f018";
6029 }
6029 }
6030 .fa-download:before {
6030 .fa-download:before {
6031 content: "\f019";
6031 content: "\f019";
6032 }
6032 }
6033 .fa-arrow-circle-o-down:before {
6033 .fa-arrow-circle-o-down:before {
6034 content: "\f01a";
6034 content: "\f01a";
6035 }
6035 }
6036 .fa-arrow-circle-o-up:before {
6036 .fa-arrow-circle-o-up:before {
6037 content: "\f01b";
6037 content: "\f01b";
6038 }
6038 }
6039 .fa-inbox:before {
6039 .fa-inbox:before {
6040 content: "\f01c";
6040 content: "\f01c";
6041 }
6041 }
6042 .fa-play-circle-o:before {
6042 .fa-play-circle-o:before {
6043 content: "\f01d";
6043 content: "\f01d";
6044 }
6044 }
6045 .fa-rotate-right:before,
6045 .fa-rotate-right:before,
6046 .fa-repeat:before {
6046 .fa-repeat:before {
6047 content: "\f01e";
6047 content: "\f01e";
6048 }
6048 }
6049 .fa-refresh:before {
6049 .fa-refresh:before {
6050 content: "\f021";
6050 content: "\f021";
6051 }
6051 }
6052 .fa-list-alt:before {
6052 .fa-list-alt:before {
6053 content: "\f022";
6053 content: "\f022";
6054 }
6054 }
6055 .fa-lock:before {
6055 .fa-lock:before {
6056 content: "\f023";
6056 content: "\f023";
6057 }
6057 }
6058 .fa-flag:before {
6058 .fa-flag:before {
6059 content: "\f024";
6059 content: "\f024";
6060 }
6060 }
6061 .fa-headphones:before {
6061 .fa-headphones:before {
6062 content: "\f025";
6062 content: "\f025";
6063 }
6063 }
6064 .fa-volume-off:before {
6064 .fa-volume-off:before {
6065 content: "\f026";
6065 content: "\f026";
6066 }
6066 }
6067 .fa-volume-down:before {
6067 .fa-volume-down:before {
6068 content: "\f027";
6068 content: "\f027";
6069 }
6069 }
6070 .fa-volume-up:before {
6070 .fa-volume-up:before {
6071 content: "\f028";
6071 content: "\f028";
6072 }
6072 }
6073 .fa-qrcode:before {
6073 .fa-qrcode:before {
6074 content: "\f029";
6074 content: "\f029";
6075 }
6075 }
6076 .fa-barcode:before {
6076 .fa-barcode:before {
6077 content: "\f02a";
6077 content: "\f02a";
6078 }
6078 }
6079 .fa-tag:before {
6079 .fa-tag:before {
6080 content: "\f02b";
6080 content: "\f02b";
6081 }
6081 }
6082 .fa-tags:before {
6082 .fa-tags:before {
6083 content: "\f02c";
6083 content: "\f02c";
6084 }
6084 }
6085 .fa-book:before {
6085 .fa-book:before {
6086 content: "\f02d";
6086 content: "\f02d";
6087 }
6087 }
6088 .fa-bookmark:before {
6088 .fa-bookmark:before {
6089 content: "\f02e";
6089 content: "\f02e";
6090 }
6090 }
6091 .fa-print:before {
6091 .fa-print:before {
6092 content: "\f02f";
6092 content: "\f02f";
6093 }
6093 }
6094 .fa-camera:before {
6094 .fa-camera:before {
6095 content: "\f030";
6095 content: "\f030";
6096 }
6096 }
6097 .fa-font:before {
6097 .fa-font:before {
6098 content: "\f031";
6098 content: "\f031";
6099 }
6099 }
6100 .fa-bold:before {
6100 .fa-bold:before {
6101 content: "\f032";
6101 content: "\f032";
6102 }
6102 }
6103 .fa-italic:before {
6103 .fa-italic:before {
6104 content: "\f033";
6104 content: "\f033";
6105 }
6105 }
6106 .fa-text-height:before {
6106 .fa-text-height:before {
6107 content: "\f034";
6107 content: "\f034";
6108 }
6108 }
6109 .fa-text-width:before {
6109 .fa-text-width:before {
6110 content: "\f035";
6110 content: "\f035";
6111 }
6111 }
6112 .fa-align-left:before {
6112 .fa-align-left:before {
6113 content: "\f036";
6113 content: "\f036";
6114 }
6114 }
6115 .fa-align-center:before {
6115 .fa-align-center:before {
6116 content: "\f037";
6116 content: "\f037";
6117 }
6117 }
6118 .fa-align-right:before {
6118 .fa-align-right:before {
6119 content: "\f038";
6119 content: "\f038";
6120 }
6120 }
6121 .fa-align-justify:before {
6121 .fa-align-justify:before {
6122 content: "\f039";
6122 content: "\f039";
6123 }
6123 }
6124 .fa-list:before {
6124 .fa-list:before {
6125 content: "\f03a";
6125 content: "\f03a";
6126 }
6126 }
6127 .fa-dedent:before,
6127 .fa-dedent:before,
6128 .fa-outdent:before {
6128 .fa-outdent:before {
6129 content: "\f03b";
6129 content: "\f03b";
6130 }
6130 }
6131 .fa-indent:before {
6131 .fa-indent:before {
6132 content: "\f03c";
6132 content: "\f03c";
6133 }
6133 }
6134 .fa-video-camera:before {
6134 .fa-video-camera:before {
6135 content: "\f03d";
6135 content: "\f03d";
6136 }
6136 }
6137 .fa-photo:before,
6137 .fa-photo:before,
6138 .fa-image:before,
6138 .fa-image:before,
6139 .fa-picture-o:before {
6139 .fa-picture-o:before {
6140 content: "\f03e";
6140 content: "\f03e";
6141 }
6141 }
6142 .fa-pencil:before {
6142 .fa-pencil:before {
6143 content: "\f040";
6143 content: "\f040";
6144 }
6144 }
6145 .fa-map-marker:before {
6145 .fa-map-marker:before {
6146 content: "\f041";
6146 content: "\f041";
6147 }
6147 }
6148 .fa-adjust:before {
6148 .fa-adjust:before {
6149 content: "\f042";
6149 content: "\f042";
6150 }
6150 }
6151 .fa-tint:before {
6151 .fa-tint:before {
6152 content: "\f043";
6152 content: "\f043";
6153 }
6153 }
6154 .fa-edit:before,
6154 .fa-edit:before,
6155 .fa-pencil-square-o:before {
6155 .fa-pencil-square-o:before {
6156 content: "\f044";
6156 content: "\f044";
6157 }
6157 }
6158 .fa-share-square-o:before {
6158 .fa-share-square-o:before {
6159 content: "\f045";
6159 content: "\f045";
6160 }
6160 }
6161 .fa-check-square-o:before {
6161 .fa-check-square-o:before {
6162 content: "\f046";
6162 content: "\f046";
6163 }
6163 }
6164 .fa-arrows:before {
6164 .fa-arrows:before {
6165 content: "\f047";
6165 content: "\f047";
6166 }
6166 }
6167 .fa-step-backward:before {
6167 .fa-step-backward:before {
6168 content: "\f048";
6168 content: "\f048";
6169 }
6169 }
6170 .fa-fast-backward:before {
6170 .fa-fast-backward:before {
6171 content: "\f049";
6171 content: "\f049";
6172 }
6172 }
6173 .fa-backward:before {
6173 .fa-backward:before {
6174 content: "\f04a";
6174 content: "\f04a";
6175 }
6175 }
6176 .fa-play:before {
6176 .fa-play:before {
6177 content: "\f04b";
6177 content: "\f04b";
6178 }
6178 }
6179 .fa-pause:before {
6179 .fa-pause:before {
6180 content: "\f04c";
6180 content: "\f04c";
6181 }
6181 }
6182 .fa-stop:before {
6182 .fa-stop:before {
6183 content: "\f04d";
6183 content: "\f04d";
6184 }
6184 }
6185 .fa-forward:before {
6185 .fa-forward:before {
6186 content: "\f04e";
6186 content: "\f04e";
6187 }
6187 }
6188 .fa-fast-forward:before {
6188 .fa-fast-forward:before {
6189 content: "\f050";
6189 content: "\f050";
6190 }
6190 }
6191 .fa-step-forward:before {
6191 .fa-step-forward:before {
6192 content: "\f051";
6192 content: "\f051";
6193 }
6193 }
6194 .fa-eject:before {
6194 .fa-eject:before {
6195 content: "\f052";
6195 content: "\f052";
6196 }
6196 }
6197 .fa-chevron-left:before {
6197 .fa-chevron-left:before {
6198 content: "\f053";
6198 content: "\f053";
6199 }
6199 }
6200 .fa-chevron-right:before {
6200 .fa-chevron-right:before {
6201 content: "\f054";
6201 content: "\f054";
6202 }
6202 }
6203 .fa-plus-circle:before {
6203 .fa-plus-circle:before {
6204 content: "\f055";
6204 content: "\f055";
6205 }
6205 }
6206 .fa-minus-circle:before {
6206 .fa-minus-circle:before {
6207 content: "\f056";
6207 content: "\f056";
6208 }
6208 }
6209 .fa-times-circle:before {
6209 .fa-times-circle:before {
6210 content: "\f057";
6210 content: "\f057";
6211 }
6211 }
6212 .fa-check-circle:before {
6212 .fa-check-circle:before {
6213 content: "\f058";
6213 content: "\f058";
6214 }
6214 }
6215 .fa-question-circle:before {
6215 .fa-question-circle:before {
6216 content: "\f059";
6216 content: "\f059";
6217 }
6217 }
6218 .fa-info-circle:before {
6218 .fa-info-circle:before {
6219 content: "\f05a";
6219 content: "\f05a";
6220 }
6220 }
6221 .fa-crosshairs:before {
6221 .fa-crosshairs:before {
6222 content: "\f05b";
6222 content: "\f05b";
6223 }
6223 }
6224 .fa-times-circle-o:before {
6224 .fa-times-circle-o:before {
6225 content: "\f05c";
6225 content: "\f05c";
6226 }
6226 }
6227 .fa-check-circle-o:before {
6227 .fa-check-circle-o:before {
6228 content: "\f05d";
6228 content: "\f05d";
6229 }
6229 }
6230 .fa-ban:before {
6230 .fa-ban:before {
6231 content: "\f05e";
6231 content: "\f05e";
6232 }
6232 }
6233 .fa-arrow-left:before {
6233 .fa-arrow-left:before {
6234 content: "\f060";
6234 content: "\f060";
6235 }
6235 }
6236 .fa-arrow-right:before {
6236 .fa-arrow-right:before {
6237 content: "\f061";
6237 content: "\f061";
6238 }
6238 }
6239 .fa-arrow-up:before {
6239 .fa-arrow-up:before {
6240 content: "\f062";
6240 content: "\f062";
6241 }
6241 }
6242 .fa-arrow-down:before {
6242 .fa-arrow-down:before {
6243 content: "\f063";
6243 content: "\f063";
6244 }
6244 }
6245 .fa-mail-forward:before,
6245 .fa-mail-forward:before,
6246 .fa-share:before {
6246 .fa-share:before {
6247 content: "\f064";
6247 content: "\f064";
6248 }
6248 }
6249 .fa-expand:before {
6249 .fa-expand:before {
6250 content: "\f065";
6250 content: "\f065";
6251 }
6251 }
6252 .fa-compress:before {
6252 .fa-compress:before {
6253 content: "\f066";
6253 content: "\f066";
6254 }
6254 }
6255 .fa-plus:before {
6255 .fa-plus:before {
6256 content: "\f067";
6256 content: "\f067";
6257 }
6257 }
6258 .fa-minus:before {
6258 .fa-minus:before {
6259 content: "\f068";
6259 content: "\f068";
6260 }
6260 }
6261 .fa-asterisk:before {
6261 .fa-asterisk:before {
6262 content: "\f069";
6262 content: "\f069";
6263 }
6263 }
6264 .fa-exclamation-circle:before {
6264 .fa-exclamation-circle:before {
6265 content: "\f06a";
6265 content: "\f06a";
6266 }
6266 }
6267 .fa-gift:before {
6267 .fa-gift:before {
6268 content: "\f06b";
6268 content: "\f06b";
6269 }
6269 }
6270 .fa-leaf:before {
6270 .fa-leaf:before {
6271 content: "\f06c";
6271 content: "\f06c";
6272 }
6272 }
6273 .fa-fire:before {
6273 .fa-fire:before {
6274 content: "\f06d";
6274 content: "\f06d";
6275 }
6275 }
6276 .fa-eye:before {
6276 .fa-eye:before {
6277 content: "\f06e";
6277 content: "\f06e";
6278 }
6278 }
6279 .fa-eye-slash:before {
6279 .fa-eye-slash:before {
6280 content: "\f070";
6280 content: "\f070";
6281 }
6281 }
6282 .fa-warning:before,
6282 .fa-warning:before,
6283 .fa-exclamation-triangle:before {
6283 .fa-exclamation-triangle:before {
6284 content: "\f071";
6284 content: "\f071";
6285 }
6285 }
6286 .fa-plane:before {
6286 .fa-plane:before {
6287 content: "\f072";
6287 content: "\f072";
6288 }
6288 }
6289 .fa-calendar:before {
6289 .fa-calendar:before {
6290 content: "\f073";
6290 content: "\f073";
6291 }
6291 }
6292 .fa-random:before {
6292 .fa-random:before {
6293 content: "\f074";
6293 content: "\f074";
6294 }
6294 }
6295 .fa-comment:before {
6295 .fa-comment:before {
6296 content: "\f075";
6296 content: "\f075";
6297 }
6297 }
6298 .fa-magnet:before {
6298 .fa-magnet:before {
6299 content: "\f076";
6299 content: "\f076";
6300 }
6300 }
6301 .fa-chevron-up:before {
6301 .fa-chevron-up:before {
6302 content: "\f077";
6302 content: "\f077";
6303 }
6303 }
6304 .fa-chevron-down:before {
6304 .fa-chevron-down:before {
6305 content: "\f078";
6305 content: "\f078";
6306 }
6306 }
6307 .fa-retweet:before {
6307 .fa-retweet:before {
6308 content: "\f079";
6308 content: "\f079";
6309 }
6309 }
6310 .fa-shopping-cart:before {
6310 .fa-shopping-cart:before {
6311 content: "\f07a";
6311 content: "\f07a";
6312 }
6312 }
6313 .fa-folder:before {
6313 .fa-folder:before {
6314 content: "\f07b";
6314 content: "\f07b";
6315 }
6315 }
6316 .fa-folder-open:before {
6316 .fa-folder-open:before {
6317 content: "\f07c";
6317 content: "\f07c";
6318 }
6318 }
6319 .fa-arrows-v:before {
6319 .fa-arrows-v:before {
6320 content: "\f07d";
6320 content: "\f07d";
6321 }
6321 }
6322 .fa-arrows-h:before {
6322 .fa-arrows-h:before {
6323 content: "\f07e";
6323 content: "\f07e";
6324 }
6324 }
6325 .fa-bar-chart-o:before,
6325 .fa-bar-chart-o:before,
6326 .fa-bar-chart:before {
6326 .fa-bar-chart:before {
6327 content: "\f080";
6327 content: "\f080";
6328 }
6328 }
6329 .fa-twitter-square:before {
6329 .fa-twitter-square:before {
6330 content: "\f081";
6330 content: "\f081";
6331 }
6331 }
6332 .fa-facebook-square:before {
6332 .fa-facebook-square:before {
6333 content: "\f082";
6333 content: "\f082";
6334 }
6334 }
6335 .fa-camera-retro:before {
6335 .fa-camera-retro:before {
6336 content: "\f083";
6336 content: "\f083";
6337 }
6337 }
6338 .fa-key:before {
6338 .fa-key:before {
6339 content: "\f084";
6339 content: "\f084";
6340 }
6340 }
6341 .fa-gears:before,
6341 .fa-gears:before,
6342 .fa-cogs:before {
6342 .fa-cogs:before {
6343 content: "\f085";
6343 content: "\f085";
6344 }
6344 }
6345 .fa-comments:before {
6345 .fa-comments:before {
6346 content: "\f086";
6346 content: "\f086";
6347 }
6347 }
6348 .fa-thumbs-o-up:before {
6348 .fa-thumbs-o-up:before {
6349 content: "\f087";
6349 content: "\f087";
6350 }
6350 }
6351 .fa-thumbs-o-down:before {
6351 .fa-thumbs-o-down:before {
6352 content: "\f088";
6352 content: "\f088";
6353 }
6353 }
6354 .fa-star-half:before {
6354 .fa-star-half:before {
6355 content: "\f089";
6355 content: "\f089";
6356 }
6356 }
6357 .fa-heart-o:before {
6357 .fa-heart-o:before {
6358 content: "\f08a";
6358 content: "\f08a";
6359 }
6359 }
6360 .fa-sign-out:before {
6360 .fa-sign-out:before {
6361 content: "\f08b";
6361 content: "\f08b";
6362 }
6362 }
6363 .fa-linkedin-square:before {
6363 .fa-linkedin-square:before {
6364 content: "\f08c";
6364 content: "\f08c";
6365 }
6365 }
6366 .fa-thumb-tack:before {
6366 .fa-thumb-tack:before {
6367 content: "\f08d";
6367 content: "\f08d";
6368 }
6368 }
6369 .fa-external-link:before {
6369 .fa-external-link:before {
6370 content: "\f08e";
6370 content: "\f08e";
6371 }
6371 }
6372 .fa-sign-in:before {
6372 .fa-sign-in:before {
6373 content: "\f090";
6373 content: "\f090";
6374 }
6374 }
6375 .fa-trophy:before {
6375 .fa-trophy:before {
6376 content: "\f091";
6376 content: "\f091";
6377 }
6377 }
6378 .fa-github-square:before {
6378 .fa-github-square:before {
6379 content: "\f092";
6379 content: "\f092";
6380 }
6380 }
6381 .fa-upload:before {
6381 .fa-upload:before {
6382 content: "\f093";
6382 content: "\f093";
6383 }
6383 }
6384 .fa-lemon-o:before {
6384 .fa-lemon-o:before {
6385 content: "\f094";
6385 content: "\f094";
6386 }
6386 }
6387 .fa-phone:before {
6387 .fa-phone:before {
6388 content: "\f095";
6388 content: "\f095";
6389 }
6389 }
6390 .fa-square-o:before {
6390 .fa-square-o:before {
6391 content: "\f096";
6391 content: "\f096";
6392 }
6392 }
6393 .fa-bookmark-o:before {
6393 .fa-bookmark-o:before {
6394 content: "\f097";
6394 content: "\f097";
6395 }
6395 }
6396 .fa-phone-square:before {
6396 .fa-phone-square:before {
6397 content: "\f098";
6397 content: "\f098";
6398 }
6398 }
6399 .fa-twitter:before {
6399 .fa-twitter:before {
6400 content: "\f099";
6400 content: "\f099";
6401 }
6401 }
6402 .fa-facebook:before {
6402 .fa-facebook:before {
6403 content: "\f09a";
6403 content: "\f09a";
6404 }
6404 }
6405 .fa-github:before {
6405 .fa-github:before {
6406 content: "\f09b";
6406 content: "\f09b";
6407 }
6407 }
6408 .fa-unlock:before {
6408 .fa-unlock:before {
6409 content: "\f09c";
6409 content: "\f09c";
6410 }
6410 }
6411 .fa-credit-card:before {
6411 .fa-credit-card:before {
6412 content: "\f09d";
6412 content: "\f09d";
6413 }
6413 }
6414 .fa-rss:before {
6414 .fa-rss:before {
6415 content: "\f09e";
6415 content: "\f09e";
6416 }
6416 }
6417 .fa-hdd-o:before {
6417 .fa-hdd-o:before {
6418 content: "\f0a0";
6418 content: "\f0a0";
6419 }
6419 }
6420 .fa-bullhorn:before {
6420 .fa-bullhorn:before {
6421 content: "\f0a1";
6421 content: "\f0a1";
6422 }
6422 }
6423 .fa-bell:before {
6423 .fa-bell:before {
6424 content: "\f0f3";
6424 content: "\f0f3";
6425 }
6425 }
6426 .fa-certificate:before {
6426 .fa-certificate:before {
6427 content: "\f0a3";
6427 content: "\f0a3";
6428 }
6428 }
6429 .fa-hand-o-right:before {
6429 .fa-hand-o-right:before {
6430 content: "\f0a4";
6430 content: "\f0a4";
6431 }
6431 }
6432 .fa-hand-o-left:before {
6432 .fa-hand-o-left:before {
6433 content: "\f0a5";
6433 content: "\f0a5";
6434 }
6434 }
6435 .fa-hand-o-up:before {
6435 .fa-hand-o-up:before {
6436 content: "\f0a6";
6436 content: "\f0a6";
6437 }
6437 }
6438 .fa-hand-o-down:before {
6438 .fa-hand-o-down:before {
6439 content: "\f0a7";
6439 content: "\f0a7";
6440 }
6440 }
6441 .fa-arrow-circle-left:before {
6441 .fa-arrow-circle-left:before {
6442 content: "\f0a8";
6442 content: "\f0a8";
6443 }
6443 }
6444 .fa-arrow-circle-right:before {
6444 .fa-arrow-circle-right:before {
6445 content: "\f0a9";
6445 content: "\f0a9";
6446 }
6446 }
6447 .fa-arrow-circle-up:before {
6447 .fa-arrow-circle-up:before {
6448 content: "\f0aa";
6448 content: "\f0aa";
6449 }
6449 }
6450 .fa-arrow-circle-down:before {
6450 .fa-arrow-circle-down:before {
6451 content: "\f0ab";
6451 content: "\f0ab";
6452 }
6452 }
6453 .fa-globe:before {
6453 .fa-globe:before {
6454 content: "\f0ac";
6454 content: "\f0ac";
6455 }
6455 }
6456 .fa-wrench:before {
6456 .fa-wrench:before {
6457 content: "\f0ad";
6457 content: "\f0ad";
6458 }
6458 }
6459 .fa-tasks:before {
6459 .fa-tasks:before {
6460 content: "\f0ae";
6460 content: "\f0ae";
6461 }
6461 }
6462 .fa-filter:before {
6462 .fa-filter:before {
6463 content: "\f0b0";
6463 content: "\f0b0";
6464 }
6464 }
6465 .fa-briefcase:before {
6465 .fa-briefcase:before {
6466 content: "\f0b1";
6466 content: "\f0b1";
6467 }
6467 }
6468 .fa-arrows-alt:before {
6468 .fa-arrows-alt:before {
6469 content: "\f0b2";
6469 content: "\f0b2";
6470 }
6470 }
6471 .fa-group:before,
6471 .fa-group:before,
6472 .fa-users:before {
6472 .fa-users:before {
6473 content: "\f0c0";
6473 content: "\f0c0";
6474 }
6474 }
6475 .fa-chain:before,
6475 .fa-chain:before,
6476 .fa-link:before {
6476 .fa-link:before {
6477 content: "\f0c1";
6477 content: "\f0c1";
6478 }
6478 }
6479 .fa-cloud:before {
6479 .fa-cloud:before {
6480 content: "\f0c2";
6480 content: "\f0c2";
6481 }
6481 }
6482 .fa-flask:before {
6482 .fa-flask:before {
6483 content: "\f0c3";
6483 content: "\f0c3";
6484 }
6484 }
6485 .fa-cut:before,
6485 .fa-cut:before,
6486 .fa-scissors:before {
6486 .fa-scissors:before {
6487 content: "\f0c4";
6487 content: "\f0c4";
6488 }
6488 }
6489 .fa-copy:before,
6489 .fa-copy:before,
6490 .fa-files-o:before {
6490 .fa-files-o:before {
6491 content: "\f0c5";
6491 content: "\f0c5";
6492 }
6492 }
6493 .fa-paperclip:before {
6493 .fa-paperclip:before {
6494 content: "\f0c6";
6494 content: "\f0c6";
6495 }
6495 }
6496 .fa-save:before,
6496 .fa-save:before,
6497 .fa-floppy-o:before {
6497 .fa-floppy-o:before {
6498 content: "\f0c7";
6498 content: "\f0c7";
6499 }
6499 }
6500 .fa-square:before {
6500 .fa-square:before {
6501 content: "\f0c8";
6501 content: "\f0c8";
6502 }
6502 }
6503 .fa-navicon:before,
6503 .fa-navicon:before,
6504 .fa-reorder:before,
6504 .fa-reorder:before,
6505 .fa-bars:before {
6505 .fa-bars:before {
6506 content: "\f0c9";
6506 content: "\f0c9";
6507 }
6507 }
6508 .fa-list-ul:before {
6508 .fa-list-ul:before {
6509 content: "\f0ca";
6509 content: "\f0ca";
6510 }
6510 }
6511 .fa-list-ol:before {
6511 .fa-list-ol:before {
6512 content: "\f0cb";
6512 content: "\f0cb";
6513 }
6513 }
6514 .fa-strikethrough:before {
6514 .fa-strikethrough:before {
6515 content: "\f0cc";
6515 content: "\f0cc";
6516 }
6516 }
6517 .fa-underline:before {
6517 .fa-underline:before {
6518 content: "\f0cd";
6518 content: "\f0cd";
6519 }
6519 }
6520 .fa-table:before {
6520 .fa-table:before {
6521 content: "\f0ce";
6521 content: "\f0ce";
6522 }
6522 }
6523 .fa-magic:before {
6523 .fa-magic:before {
6524 content: "\f0d0";
6524 content: "\f0d0";
6525 }
6525 }
6526 .fa-truck:before {
6526 .fa-truck:before {
6527 content: "\f0d1";
6527 content: "\f0d1";
6528 }
6528 }
6529 .fa-pinterest:before {
6529 .fa-pinterest:before {
6530 content: "\f0d2";
6530 content: "\f0d2";
6531 }
6531 }
6532 .fa-pinterest-square:before {
6532 .fa-pinterest-square:before {
6533 content: "\f0d3";
6533 content: "\f0d3";
6534 }
6534 }
6535 .fa-google-plus-square:before {
6535 .fa-google-plus-square:before {
6536 content: "\f0d4";
6536 content: "\f0d4";
6537 }
6537 }
6538 .fa-google-plus:before {
6538 .fa-google-plus:before {
6539 content: "\f0d5";
6539 content: "\f0d5";
6540 }
6540 }
6541 .fa-money:before {
6541 .fa-money:before {
6542 content: "\f0d6";
6542 content: "\f0d6";
6543 }
6543 }
6544 .fa-caret-down:before {
6544 .fa-caret-down:before {
6545 content: "\f0d7";
6545 content: "\f0d7";
6546 }
6546 }
6547 .fa-caret-up:before {
6547 .fa-caret-up:before {
6548 content: "\f0d8";
6548 content: "\f0d8";
6549 }
6549 }
6550 .fa-caret-left:before {
6550 .fa-caret-left:before {
6551 content: "\f0d9";
6551 content: "\f0d9";
6552 }
6552 }
6553 .fa-caret-right:before {
6553 .fa-caret-right:before {
6554 content: "\f0da";
6554 content: "\f0da";
6555 }
6555 }
6556 .fa-columns:before {
6556 .fa-columns:before {
6557 content: "\f0db";
6557 content: "\f0db";
6558 }
6558 }
6559 .fa-unsorted:before,
6559 .fa-unsorted:before,
6560 .fa-sort:before {
6560 .fa-sort:before {
6561 content: "\f0dc";
6561 content: "\f0dc";
6562 }
6562 }
6563 .fa-sort-down:before,
6563 .fa-sort-down:before,
6564 .fa-sort-desc:before {
6564 .fa-sort-desc:before {
6565 content: "\f0dd";
6565 content: "\f0dd";
6566 }
6566 }
6567 .fa-sort-up:before,
6567 .fa-sort-up:before,
6568 .fa-sort-asc:before {
6568 .fa-sort-asc:before {
6569 content: "\f0de";
6569 content: "\f0de";
6570 }
6570 }
6571 .fa-envelope:before {
6571 .fa-envelope:before {
6572 content: "\f0e0";
6572 content: "\f0e0";
6573 }
6573 }
6574 .fa-linkedin:before {
6574 .fa-linkedin:before {
6575 content: "\f0e1";
6575 content: "\f0e1";
6576 }
6576 }
6577 .fa-rotate-left:before,
6577 .fa-rotate-left:before,
6578 .fa-undo:before {
6578 .fa-undo:before {
6579 content: "\f0e2";
6579 content: "\f0e2";
6580 }
6580 }
6581 .fa-legal:before,
6581 .fa-legal:before,
6582 .fa-gavel:before {
6582 .fa-gavel:before {
6583 content: "\f0e3";
6583 content: "\f0e3";
6584 }
6584 }
6585 .fa-dashboard:before,
6585 .fa-dashboard:before,
6586 .fa-tachometer:before {
6586 .fa-tachometer:before {
6587 content: "\f0e4";
6587 content: "\f0e4";
6588 }
6588 }
6589 .fa-comment-o:before {
6589 .fa-comment-o:before {
6590 content: "\f0e5";
6590 content: "\f0e5";
6591 }
6591 }
6592 .fa-comments-o:before {
6592 .fa-comments-o:before {
6593 content: "\f0e6";
6593 content: "\f0e6";
6594 }
6594 }
6595 .fa-flash:before,
6595 .fa-flash:before,
6596 .fa-bolt:before {
6596 .fa-bolt:before {
6597 content: "\f0e7";
6597 content: "\f0e7";
6598 }
6598 }
6599 .fa-sitemap:before {
6599 .fa-sitemap:before {
6600 content: "\f0e8";
6600 content: "\f0e8";
6601 }
6601 }
6602 .fa-umbrella:before {
6602 .fa-umbrella:before {
6603 content: "\f0e9";
6603 content: "\f0e9";
6604 }
6604 }
6605 .fa-paste:before,
6605 .fa-paste:before,
6606 .fa-clipboard:before {
6606 .fa-clipboard:before {
6607 content: "\f0ea";
6607 content: "\f0ea";
6608 }
6608 }
6609 .fa-lightbulb-o:before {
6609 .fa-lightbulb-o:before {
6610 content: "\f0eb";
6610 content: "\f0eb";
6611 }
6611 }
6612 .fa-exchange:before {
6612 .fa-exchange:before {
6613 content: "\f0ec";
6613 content: "\f0ec";
6614 }
6614 }
6615 .fa-cloud-download:before {
6615 .fa-cloud-download:before {
6616 content: "\f0ed";
6616 content: "\f0ed";
6617 }
6617 }
6618 .fa-cloud-upload:before {
6618 .fa-cloud-upload:before {
6619 content: "\f0ee";
6619 content: "\f0ee";
6620 }
6620 }
6621 .fa-user-md:before {
6621 .fa-user-md:before {
6622 content: "\f0f0";
6622 content: "\f0f0";
6623 }
6623 }
6624 .fa-stethoscope:before {
6624 .fa-stethoscope:before {
6625 content: "\f0f1";
6625 content: "\f0f1";
6626 }
6626 }
6627 .fa-suitcase:before {
6627 .fa-suitcase:before {
6628 content: "\f0f2";
6628 content: "\f0f2";
6629 }
6629 }
6630 .fa-bell-o:before {
6630 .fa-bell-o:before {
6631 content: "\f0a2";
6631 content: "\f0a2";
6632 }
6632 }
6633 .fa-coffee:before {
6633 .fa-coffee:before {
6634 content: "\f0f4";
6634 content: "\f0f4";
6635 }
6635 }
6636 .fa-cutlery:before {
6636 .fa-cutlery:before {
6637 content: "\f0f5";
6637 content: "\f0f5";
6638 }
6638 }
6639 .fa-file-text-o:before {
6639 .fa-file-text-o:before {
6640 content: "\f0f6";
6640 content: "\f0f6";
6641 }
6641 }
6642 .fa-building-o:before {
6642 .fa-building-o:before {
6643 content: "\f0f7";
6643 content: "\f0f7";
6644 }
6644 }
6645 .fa-hospital-o:before {
6645 .fa-hospital-o:before {
6646 content: "\f0f8";
6646 content: "\f0f8";
6647 }
6647 }
6648 .fa-ambulance:before {
6648 .fa-ambulance:before {
6649 content: "\f0f9";
6649 content: "\f0f9";
6650 }
6650 }
6651 .fa-medkit:before {
6651 .fa-medkit:before {
6652 content: "\f0fa";
6652 content: "\f0fa";
6653 }
6653 }
6654 .fa-fighter-jet:before {
6654 .fa-fighter-jet:before {
6655 content: "\f0fb";
6655 content: "\f0fb";
6656 }
6656 }
6657 .fa-beer:before {
6657 .fa-beer:before {
6658 content: "\f0fc";
6658 content: "\f0fc";
6659 }
6659 }
6660 .fa-h-square:before {
6660 .fa-h-square:before {
6661 content: "\f0fd";
6661 content: "\f0fd";
6662 }
6662 }
6663 .fa-plus-square:before {
6663 .fa-plus-square:before {
6664 content: "\f0fe";
6664 content: "\f0fe";
6665 }
6665 }
6666 .fa-angle-double-left:before {
6666 .fa-angle-double-left:before {
6667 content: "\f100";
6667 content: "\f100";
6668 }
6668 }
6669 .fa-angle-double-right:before {
6669 .fa-angle-double-right:before {
6670 content: "\f101";
6670 content: "\f101";
6671 }
6671 }
6672 .fa-angle-double-up:before {
6672 .fa-angle-double-up:before {
6673 content: "\f102";
6673 content: "\f102";
6674 }
6674 }
6675 .fa-angle-double-down:before {
6675 .fa-angle-double-down:before {
6676 content: "\f103";
6676 content: "\f103";
6677 }
6677 }
6678 .fa-angle-left:before {
6678 .fa-angle-left:before {
6679 content: "\f104";
6679 content: "\f104";
6680 }
6680 }
6681 .fa-angle-right:before {
6681 .fa-angle-right:before {
6682 content: "\f105";
6682 content: "\f105";
6683 }
6683 }
6684 .fa-angle-up:before {
6684 .fa-angle-up:before {
6685 content: "\f106";
6685 content: "\f106";
6686 }
6686 }
6687 .fa-angle-down:before {
6687 .fa-angle-down:before {
6688 content: "\f107";
6688 content: "\f107";
6689 }
6689 }
6690 .fa-desktop:before {
6690 .fa-desktop:before {
6691 content: "\f108";
6691 content: "\f108";
6692 }
6692 }
6693 .fa-laptop:before {
6693 .fa-laptop:before {
6694 content: "\f109";
6694 content: "\f109";
6695 }
6695 }
6696 .fa-tablet:before {
6696 .fa-tablet:before {
6697 content: "\f10a";
6697 content: "\f10a";
6698 }
6698 }
6699 .fa-mobile-phone:before,
6699 .fa-mobile-phone:before,
6700 .fa-mobile:before {
6700 .fa-mobile:before {
6701 content: "\f10b";
6701 content: "\f10b";
6702 }
6702 }
6703 .fa-circle-o:before {
6703 .fa-circle-o:before {
6704 content: "\f10c";
6704 content: "\f10c";
6705 }
6705 }
6706 .fa-quote-left:before {
6706 .fa-quote-left:before {
6707 content: "\f10d";
6707 content: "\f10d";
6708 }
6708 }
6709 .fa-quote-right:before {
6709 .fa-quote-right:before {
6710 content: "\f10e";
6710 content: "\f10e";
6711 }
6711 }
6712 .fa-spinner:before {
6712 .fa-spinner:before {
6713 content: "\f110";
6713 content: "\f110";
6714 }
6714 }
6715 .fa-circle:before {
6715 .fa-circle:before {
6716 content: "\f111";
6716 content: "\f111";
6717 }
6717 }
6718 .fa-mail-reply:before,
6718 .fa-mail-reply:before,
6719 .fa-reply:before {
6719 .fa-reply:before {
6720 content: "\f112";
6720 content: "\f112";
6721 }
6721 }
6722 .fa-github-alt:before {
6722 .fa-github-alt:before {
6723 content: "\f113";
6723 content: "\f113";
6724 }
6724 }
6725 .fa-folder-o:before {
6725 .fa-folder-o:before {
6726 content: "\f114";
6726 content: "\f114";
6727 }
6727 }
6728 .fa-folder-open-o:before {
6728 .fa-folder-open-o:before {
6729 content: "\f115";
6729 content: "\f115";
6730 }
6730 }
6731 .fa-smile-o:before {
6731 .fa-smile-o:before {
6732 content: "\f118";
6732 content: "\f118";
6733 }
6733 }
6734 .fa-frown-o:before {
6734 .fa-frown-o:before {
6735 content: "\f119";
6735 content: "\f119";
6736 }
6736 }
6737 .fa-meh-o:before {
6737 .fa-meh-o:before {
6738 content: "\f11a";
6738 content: "\f11a";
6739 }
6739 }
6740 .fa-gamepad:before {
6740 .fa-gamepad:before {
6741 content: "\f11b";
6741 content: "\f11b";
6742 }
6742 }
6743 .fa-keyboard-o:before {
6743 .fa-keyboard-o:before {
6744 content: "\f11c";
6744 content: "\f11c";
6745 }
6745 }
6746 .fa-flag-o:before {
6746 .fa-flag-o:before {
6747 content: "\f11d";
6747 content: "\f11d";
6748 }
6748 }
6749 .fa-flag-checkered:before {
6749 .fa-flag-checkered:before {
6750 content: "\f11e";
6750 content: "\f11e";
6751 }
6751 }
6752 .fa-terminal:before {
6752 .fa-terminal:before {
6753 content: "\f120";
6753 content: "\f120";
6754 }
6754 }
6755 .fa-code:before {
6755 .fa-code:before {
6756 content: "\f121";
6756 content: "\f121";
6757 }
6757 }
6758 .fa-mail-reply-all:before,
6758 .fa-mail-reply-all:before,
6759 .fa-reply-all:before {
6759 .fa-reply-all:before {
6760 content: "\f122";
6760 content: "\f122";
6761 }
6761 }
6762 .fa-star-half-empty:before,
6762 .fa-star-half-empty:before,
6763 .fa-star-half-full:before,
6763 .fa-star-half-full:before,
6764 .fa-star-half-o:before {
6764 .fa-star-half-o:before {
6765 content: "\f123";
6765 content: "\f123";
6766 }
6766 }
6767 .fa-location-arrow:before {
6767 .fa-location-arrow:before {
6768 content: "\f124";
6768 content: "\f124";
6769 }
6769 }
6770 .fa-crop:before {
6770 .fa-crop:before {
6771 content: "\f125";
6771 content: "\f125";
6772 }
6772 }
6773 .fa-code-fork:before {
6773 .fa-code-fork:before {
6774 content: "\f126";
6774 content: "\f126";
6775 }
6775 }
6776 .fa-unlink:before,
6776 .fa-unlink:before,
6777 .fa-chain-broken:before {
6777 .fa-chain-broken:before {
6778 content: "\f127";
6778 content: "\f127";
6779 }
6779 }
6780 .fa-question:before {
6780 .fa-question:before {
6781 content: "\f128";
6781 content: "\f128";
6782 }
6782 }
6783 .fa-info:before {
6783 .fa-info:before {
6784 content: "\f129";
6784 content: "\f129";
6785 }
6785 }
6786 .fa-exclamation:before {
6786 .fa-exclamation:before {
6787 content: "\f12a";
6787 content: "\f12a";
6788 }
6788 }
6789 .fa-superscript:before {
6789 .fa-superscript:before {
6790 content: "\f12b";
6790 content: "\f12b";
6791 }
6791 }
6792 .fa-subscript:before {
6792 .fa-subscript:before {
6793 content: "\f12c";
6793 content: "\f12c";
6794 }
6794 }
6795 .fa-eraser:before {
6795 .fa-eraser:before {
6796 content: "\f12d";
6796 content: "\f12d";
6797 }
6797 }
6798 .fa-puzzle-piece:before {
6798 .fa-puzzle-piece:before {
6799 content: "\f12e";
6799 content: "\f12e";
6800 }
6800 }
6801 .fa-microphone:before {
6801 .fa-microphone:before {
6802 content: "\f130";
6802 content: "\f130";
6803 }
6803 }
6804 .fa-microphone-slash:before {
6804 .fa-microphone-slash:before {
6805 content: "\f131";
6805 content: "\f131";
6806 }
6806 }
6807 .fa-shield:before {
6807 .fa-shield:before {
6808 content: "\f132";
6808 content: "\f132";
6809 }
6809 }
6810 .fa-calendar-o:before {
6810 .fa-calendar-o:before {
6811 content: "\f133";
6811 content: "\f133";
6812 }
6812 }
6813 .fa-fire-extinguisher:before {
6813 .fa-fire-extinguisher:before {
6814 content: "\f134";
6814 content: "\f134";
6815 }
6815 }
6816 .fa-rocket:before {
6816 .fa-rocket:before {
6817 content: "\f135";
6817 content: "\f135";
6818 }
6818 }
6819 .fa-maxcdn:before {
6819 .fa-maxcdn:before {
6820 content: "\f136";
6820 content: "\f136";
6821 }
6821 }
6822 .fa-chevron-circle-left:before {
6822 .fa-chevron-circle-left:before {
6823 content: "\f137";
6823 content: "\f137";
6824 }
6824 }
6825 .fa-chevron-circle-right:before {
6825 .fa-chevron-circle-right:before {
6826 content: "\f138";
6826 content: "\f138";
6827 }
6827 }
6828 .fa-chevron-circle-up:before {
6828 .fa-chevron-circle-up:before {
6829 content: "\f139";
6829 content: "\f139";
6830 }
6830 }
6831 .fa-chevron-circle-down:before {
6831 .fa-chevron-circle-down:before {
6832 content: "\f13a";
6832 content: "\f13a";
6833 }
6833 }
6834 .fa-html5:before {
6834 .fa-html5:before {
6835 content: "\f13b";
6835 content: "\f13b";
6836 }
6836 }
6837 .fa-css3:before {
6837 .fa-css3:before {
6838 content: "\f13c";
6838 content: "\f13c";
6839 }
6839 }
6840 .fa-anchor:before {
6840 .fa-anchor:before {
6841 content: "\f13d";
6841 content: "\f13d";
6842 }
6842 }
6843 .fa-unlock-alt:before {
6843 .fa-unlock-alt:before {
6844 content: "\f13e";
6844 content: "\f13e";
6845 }
6845 }
6846 .fa-bullseye:before {
6846 .fa-bullseye:before {
6847 content: "\f140";
6847 content: "\f140";
6848 }
6848 }
6849 .fa-ellipsis-h:before {
6849 .fa-ellipsis-h:before {
6850 content: "\f141";
6850 content: "\f141";
6851 }
6851 }
6852 .fa-ellipsis-v:before {
6852 .fa-ellipsis-v:before {
6853 content: "\f142";
6853 content: "\f142";
6854 }
6854 }
6855 .fa-rss-square:before {
6855 .fa-rss-square:before {
6856 content: "\f143";
6856 content: "\f143";
6857 }
6857 }
6858 .fa-play-circle:before {
6858 .fa-play-circle:before {
6859 content: "\f144";
6859 content: "\f144";
6860 }
6860 }
6861 .fa-ticket:before {
6861 .fa-ticket:before {
6862 content: "\f145";
6862 content: "\f145";
6863 }
6863 }
6864 .fa-minus-square:before {
6864 .fa-minus-square:before {
6865 content: "\f146";
6865 content: "\f146";
6866 }
6866 }
6867 .fa-minus-square-o:before {
6867 .fa-minus-square-o:before {
6868 content: "\f147";
6868 content: "\f147";
6869 }
6869 }
6870 .fa-level-up:before {
6870 .fa-level-up:before {
6871 content: "\f148";
6871 content: "\f148";
6872 }
6872 }
6873 .fa-level-down:before {
6873 .fa-level-down:before {
6874 content: "\f149";
6874 content: "\f149";
6875 }
6875 }
6876 .fa-check-square:before {
6876 .fa-check-square:before {
6877 content: "\f14a";
6877 content: "\f14a";
6878 }
6878 }
6879 .fa-pencil-square:before {
6879 .fa-pencil-square:before {
6880 content: "\f14b";
6880 content: "\f14b";
6881 }
6881 }
6882 .fa-external-link-square:before {
6882 .fa-external-link-square:before {
6883 content: "\f14c";
6883 content: "\f14c";
6884 }
6884 }
6885 .fa-share-square:before {
6885 .fa-share-square:before {
6886 content: "\f14d";
6886 content: "\f14d";
6887 }
6887 }
6888 .fa-compass:before {
6888 .fa-compass:before {
6889 content: "\f14e";
6889 content: "\f14e";
6890 }
6890 }
6891 .fa-toggle-down:before,
6891 .fa-toggle-down:before,
6892 .fa-caret-square-o-down:before {
6892 .fa-caret-square-o-down:before {
6893 content: "\f150";
6893 content: "\f150";
6894 }
6894 }
6895 .fa-toggle-up:before,
6895 .fa-toggle-up:before,
6896 .fa-caret-square-o-up:before {
6896 .fa-caret-square-o-up:before {
6897 content: "\f151";
6897 content: "\f151";
6898 }
6898 }
6899 .fa-toggle-right:before,
6899 .fa-toggle-right:before,
6900 .fa-caret-square-o-right:before {
6900 .fa-caret-square-o-right:before {
6901 content: "\f152";
6901 content: "\f152";
6902 }
6902 }
6903 .fa-euro:before,
6903 .fa-euro:before,
6904 .fa-eur:before {
6904 .fa-eur:before {
6905 content: "\f153";
6905 content: "\f153";
6906 }
6906 }
6907 .fa-gbp:before {
6907 .fa-gbp:before {
6908 content: "\f154";
6908 content: "\f154";
6909 }
6909 }
6910 .fa-dollar:before,
6910 .fa-dollar:before,
6911 .fa-usd:before {
6911 .fa-usd:before {
6912 content: "\f155";
6912 content: "\f155";
6913 }
6913 }
6914 .fa-rupee:before,
6914 .fa-rupee:before,
6915 .fa-inr:before {
6915 .fa-inr:before {
6916 content: "\f156";
6916 content: "\f156";
6917 }
6917 }
6918 .fa-cny:before,
6918 .fa-cny:before,
6919 .fa-rmb:before,
6919 .fa-rmb:before,
6920 .fa-yen:before,
6920 .fa-yen:before,
6921 .fa-jpy:before {
6921 .fa-jpy:before {
6922 content: "\f157";
6922 content: "\f157";
6923 }
6923 }
6924 .fa-ruble:before,
6924 .fa-ruble:before,
6925 .fa-rouble:before,
6925 .fa-rouble:before,
6926 .fa-rub:before {
6926 .fa-rub:before {
6927 content: "\f158";
6927 content: "\f158";
6928 }
6928 }
6929 .fa-won:before,
6929 .fa-won:before,
6930 .fa-krw:before {
6930 .fa-krw:before {
6931 content: "\f159";
6931 content: "\f159";
6932 }
6932 }
6933 .fa-bitcoin:before,
6933 .fa-bitcoin:before,
6934 .fa-btc:before {
6934 .fa-btc:before {
6935 content: "\f15a";
6935 content: "\f15a";
6936 }
6936 }
6937 .fa-file:before {
6937 .fa-file:before {
6938 content: "\f15b";
6938 content: "\f15b";
6939 }
6939 }
6940 .fa-file-text:before {
6940 .fa-file-text:before {
6941 content: "\f15c";
6941 content: "\f15c";
6942 }
6942 }
6943 .fa-sort-alpha-asc:before {
6943 .fa-sort-alpha-asc:before {
6944 content: "\f15d";
6944 content: "\f15d";
6945 }
6945 }
6946 .fa-sort-alpha-desc:before {
6946 .fa-sort-alpha-desc:before {
6947 content: "\f15e";
6947 content: "\f15e";
6948 }
6948 }
6949 .fa-sort-amount-asc:before {
6949 .fa-sort-amount-asc:before {
6950 content: "\f160";
6950 content: "\f160";
6951 }
6951 }
6952 .fa-sort-amount-desc:before {
6952 .fa-sort-amount-desc:before {
6953 content: "\f161";
6953 content: "\f161";
6954 }
6954 }
6955 .fa-sort-numeric-asc:before {
6955 .fa-sort-numeric-asc:before {
6956 content: "\f162";
6956 content: "\f162";
6957 }
6957 }
6958 .fa-sort-numeric-desc:before {
6958 .fa-sort-numeric-desc:before {
6959 content: "\f163";
6959 content: "\f163";
6960 }
6960 }
6961 .fa-thumbs-up:before {
6961 .fa-thumbs-up:before {
6962 content: "\f164";
6962 content: "\f164";
6963 }
6963 }
6964 .fa-thumbs-down:before {
6964 .fa-thumbs-down:before {
6965 content: "\f165";
6965 content: "\f165";
6966 }
6966 }
6967 .fa-youtube-square:before {
6967 .fa-youtube-square:before {
6968 content: "\f166";
6968 content: "\f166";
6969 }
6969 }
6970 .fa-youtube:before {
6970 .fa-youtube:before {
6971 content: "\f167";
6971 content: "\f167";
6972 }
6972 }
6973 .fa-xing:before {
6973 .fa-xing:before {
6974 content: "\f168";
6974 content: "\f168";
6975 }
6975 }
6976 .fa-xing-square:before {
6976 .fa-xing-square:before {
6977 content: "\f169";
6977 content: "\f169";
6978 }
6978 }
6979 .fa-youtube-play:before {
6979 .fa-youtube-play:before {
6980 content: "\f16a";
6980 content: "\f16a";
6981 }
6981 }
6982 .fa-dropbox:before {
6982 .fa-dropbox:before {
6983 content: "\f16b";
6983 content: "\f16b";
6984 }
6984 }
6985 .fa-stack-overflow:before {
6985 .fa-stack-overflow:before {
6986 content: "\f16c";
6986 content: "\f16c";
6987 }
6987 }
6988 .fa-instagram:before {
6988 .fa-instagram:before {
6989 content: "\f16d";
6989 content: "\f16d";
6990 }
6990 }
6991 .fa-flickr:before {
6991 .fa-flickr:before {
6992 content: "\f16e";
6992 content: "\f16e";
6993 }
6993 }
6994 .fa-adn:before {
6994 .fa-adn:before {
6995 content: "\f170";
6995 content: "\f170";
6996 }
6996 }
6997 .fa-bitbucket:before {
6997 .fa-bitbucket:before {
6998 content: "\f171";
6998 content: "\f171";
6999 }
6999 }
7000 .fa-bitbucket-square:before {
7000 .fa-bitbucket-square:before {
7001 content: "\f172";
7001 content: "\f172";
7002 }
7002 }
7003 .fa-tumblr:before {
7003 .fa-tumblr:before {
7004 content: "\f173";
7004 content: "\f173";
7005 }
7005 }
7006 .fa-tumblr-square:before {
7006 .fa-tumblr-square:before {
7007 content: "\f174";
7007 content: "\f174";
7008 }
7008 }
7009 .fa-long-arrow-down:before {
7009 .fa-long-arrow-down:before {
7010 content: "\f175";
7010 content: "\f175";
7011 }
7011 }
7012 .fa-long-arrow-up:before {
7012 .fa-long-arrow-up:before {
7013 content: "\f176";
7013 content: "\f176";
7014 }
7014 }
7015 .fa-long-arrow-left:before {
7015 .fa-long-arrow-left:before {
7016 content: "\f177";
7016 content: "\f177";
7017 }
7017 }
7018 .fa-long-arrow-right:before {
7018 .fa-long-arrow-right:before {
7019 content: "\f178";
7019 content: "\f178";
7020 }
7020 }
7021 .fa-apple:before {
7021 .fa-apple:before {
7022 content: "\f179";
7022 content: "\f179";
7023 }
7023 }
7024 .fa-windows:before {
7024 .fa-windows:before {
7025 content: "\f17a";
7025 content: "\f17a";
7026 }
7026 }
7027 .fa-android:before {
7027 .fa-android:before {
7028 content: "\f17b";
7028 content: "\f17b";
7029 }
7029 }
7030 .fa-linux:before {
7030 .fa-linux:before {
7031 content: "\f17c";
7031 content: "\f17c";
7032 }
7032 }
7033 .fa-dribbble:before {
7033 .fa-dribbble:before {
7034 content: "\f17d";
7034 content: "\f17d";
7035 }
7035 }
7036 .fa-skype:before {
7036 .fa-skype:before {
7037 content: "\f17e";
7037 content: "\f17e";
7038 }
7038 }
7039 .fa-foursquare:before {
7039 .fa-foursquare:before {
7040 content: "\f180";
7040 content: "\f180";
7041 }
7041 }
7042 .fa-trello:before {
7042 .fa-trello:before {
7043 content: "\f181";
7043 content: "\f181";
7044 }
7044 }
7045 .fa-female:before {
7045 .fa-female:before {
7046 content: "\f182";
7046 content: "\f182";
7047 }
7047 }
7048 .fa-male:before {
7048 .fa-male:before {
7049 content: "\f183";
7049 content: "\f183";
7050 }
7050 }
7051 .fa-gittip:before {
7051 .fa-gittip:before {
7052 content: "\f184";
7052 content: "\f184";
7053 }
7053 }
7054 .fa-sun-o:before {
7054 .fa-sun-o:before {
7055 content: "\f185";
7055 content: "\f185";
7056 }
7056 }
7057 .fa-moon-o:before {
7057 .fa-moon-o:before {
7058 content: "\f186";
7058 content: "\f186";
7059 }
7059 }
7060 .fa-archive:before {
7060 .fa-archive:before {
7061 content: "\f187";
7061 content: "\f187";
7062 }
7062 }
7063 .fa-bug:before {
7063 .fa-bug:before {
7064 content: "\f188";
7064 content: "\f188";
7065 }
7065 }
7066 .fa-vk:before {
7066 .fa-vk:before {
7067 content: "\f189";
7067 content: "\f189";
7068 }
7068 }
7069 .fa-weibo:before {
7069 .fa-weibo:before {
7070 content: "\f18a";
7070 content: "\f18a";
7071 }
7071 }
7072 .fa-renren:before {
7072 .fa-renren:before {
7073 content: "\f18b";
7073 content: "\f18b";
7074 }
7074 }
7075 .fa-pagelines:before {
7075 .fa-pagelines:before {
7076 content: "\f18c";
7076 content: "\f18c";
7077 }
7077 }
7078 .fa-stack-exchange:before {
7078 .fa-stack-exchange:before {
7079 content: "\f18d";
7079 content: "\f18d";
7080 }
7080 }
7081 .fa-arrow-circle-o-right:before {
7081 .fa-arrow-circle-o-right:before {
7082 content: "\f18e";
7082 content: "\f18e";
7083 }
7083 }
7084 .fa-arrow-circle-o-left:before {
7084 .fa-arrow-circle-o-left:before {
7085 content: "\f190";
7085 content: "\f190";
7086 }
7086 }
7087 .fa-toggle-left:before,
7087 .fa-toggle-left:before,
7088 .fa-caret-square-o-left:before {
7088 .fa-caret-square-o-left:before {
7089 content: "\f191";
7089 content: "\f191";
7090 }
7090 }
7091 .fa-dot-circle-o:before {
7091 .fa-dot-circle-o:before {
7092 content: "\f192";
7092 content: "\f192";
7093 }
7093 }
7094 .fa-wheelchair:before {
7094 .fa-wheelchair:before {
7095 content: "\f193";
7095 content: "\f193";
7096 }
7096 }
7097 .fa-vimeo-square:before {
7097 .fa-vimeo-square:before {
7098 content: "\f194";
7098 content: "\f194";
7099 }
7099 }
7100 .fa-turkish-lira:before,
7100 .fa-turkish-lira:before,
7101 .fa-try:before {
7101 .fa-try:before {
7102 content: "\f195";
7102 content: "\f195";
7103 }
7103 }
7104 .fa-plus-square-o:before {
7104 .fa-plus-square-o:before {
7105 content: "\f196";
7105 content: "\f196";
7106 }
7106 }
7107 .fa-space-shuttle:before {
7107 .fa-space-shuttle:before {
7108 content: "\f197";
7108 content: "\f197";
7109 }
7109 }
7110 .fa-slack:before {
7110 .fa-slack:before {
7111 content: "\f198";
7111 content: "\f198";
7112 }
7112 }
7113 .fa-envelope-square:before {
7113 .fa-envelope-square:before {
7114 content: "\f199";
7114 content: "\f199";
7115 }
7115 }
7116 .fa-wordpress:before {
7116 .fa-wordpress:before {
7117 content: "\f19a";
7117 content: "\f19a";
7118 }
7118 }
7119 .fa-openid:before {
7119 .fa-openid:before {
7120 content: "\f19b";
7120 content: "\f19b";
7121 }
7121 }
7122 .fa-institution:before,
7122 .fa-institution:before,
7123 .fa-bank:before,
7123 .fa-bank:before,
7124 .fa-university:before {
7124 .fa-university:before {
7125 content: "\f19c";
7125 content: "\f19c";
7126 }
7126 }
7127 .fa-mortar-board:before,
7127 .fa-mortar-board:before,
7128 .fa-graduation-cap:before {
7128 .fa-graduation-cap:before {
7129 content: "\f19d";
7129 content: "\f19d";
7130 }
7130 }
7131 .fa-yahoo:before {
7131 .fa-yahoo:before {
7132 content: "\f19e";
7132 content: "\f19e";
7133 }
7133 }
7134 .fa-google:before {
7134 .fa-google:before {
7135 content: "\f1a0";
7135 content: "\f1a0";
7136 }
7136 }
7137 .fa-reddit:before {
7137 .fa-reddit:before {
7138 content: "\f1a1";
7138 content: "\f1a1";
7139 }
7139 }
7140 .fa-reddit-square:before {
7140 .fa-reddit-square:before {
7141 content: "\f1a2";
7141 content: "\f1a2";
7142 }
7142 }
7143 .fa-stumbleupon-circle:before {
7143 .fa-stumbleupon-circle:before {
7144 content: "\f1a3";
7144 content: "\f1a3";
7145 }
7145 }
7146 .fa-stumbleupon:before {
7146 .fa-stumbleupon:before {
7147 content: "\f1a4";
7147 content: "\f1a4";
7148 }
7148 }
7149 .fa-delicious:before {
7149 .fa-delicious:before {
7150 content: "\f1a5";
7150 content: "\f1a5";
7151 }
7151 }
7152 .fa-digg:before {
7152 .fa-digg:before {
7153 content: "\f1a6";
7153 content: "\f1a6";
7154 }
7154 }
7155 .fa-pied-piper:before {
7155 .fa-pied-piper:before {
7156 content: "\f1a7";
7156 content: "\f1a7";
7157 }
7157 }
7158 .fa-pied-piper-alt:before {
7158 .fa-pied-piper-alt:before {
7159 content: "\f1a8";
7159 content: "\f1a8";
7160 }
7160 }
7161 .fa-drupal:before {
7161 .fa-drupal:before {
7162 content: "\f1a9";
7162 content: "\f1a9";
7163 }
7163 }
7164 .fa-joomla:before {
7164 .fa-joomla:before {
7165 content: "\f1aa";
7165 content: "\f1aa";
7166 }
7166 }
7167 .fa-language:before {
7167 .fa-language:before {
7168 content: "\f1ab";
7168 content: "\f1ab";
7169 }
7169 }
7170 .fa-fax:before {
7170 .fa-fax:before {
7171 content: "\f1ac";
7171 content: "\f1ac";
7172 }
7172 }
7173 .fa-building:before {
7173 .fa-building:before {
7174 content: "\f1ad";
7174 content: "\f1ad";
7175 }
7175 }
7176 .fa-child:before {
7176 .fa-child:before {
7177 content: "\f1ae";
7177 content: "\f1ae";
7178 }
7178 }
7179 .fa-paw:before {
7179 .fa-paw:before {
7180 content: "\f1b0";
7180 content: "\f1b0";
7181 }
7181 }
7182 .fa-spoon:before {
7182 .fa-spoon:before {
7183 content: "\f1b1";
7183 content: "\f1b1";
7184 }
7184 }
7185 .fa-cube:before {
7185 .fa-cube:before {
7186 content: "\f1b2";
7186 content: "\f1b2";
7187 }
7187 }
7188 .fa-cubes:before {
7188 .fa-cubes:before {
7189 content: "\f1b3";
7189 content: "\f1b3";
7190 }
7190 }
7191 .fa-behance:before {
7191 .fa-behance:before {
7192 content: "\f1b4";
7192 content: "\f1b4";
7193 }
7193 }
7194 .fa-behance-square:before {
7194 .fa-behance-square:before {
7195 content: "\f1b5";
7195 content: "\f1b5";
7196 }
7196 }
7197 .fa-steam:before {
7197 .fa-steam:before {
7198 content: "\f1b6";
7198 content: "\f1b6";
7199 }
7199 }
7200 .fa-steam-square:before {
7200 .fa-steam-square:before {
7201 content: "\f1b7";
7201 content: "\f1b7";
7202 }
7202 }
7203 .fa-recycle:before {
7203 .fa-recycle:before {
7204 content: "\f1b8";
7204 content: "\f1b8";
7205 }
7205 }
7206 .fa-automobile:before,
7206 .fa-automobile:before,
7207 .fa-car:before {
7207 .fa-car:before {
7208 content: "\f1b9";
7208 content: "\f1b9";
7209 }
7209 }
7210 .fa-cab:before,
7210 .fa-cab:before,
7211 .fa-taxi:before {
7211 .fa-taxi:before {
7212 content: "\f1ba";
7212 content: "\f1ba";
7213 }
7213 }
7214 .fa-tree:before {
7214 .fa-tree:before {
7215 content: "\f1bb";
7215 content: "\f1bb";
7216 }
7216 }
7217 .fa-spotify:before {
7217 .fa-spotify:before {
7218 content: "\f1bc";
7218 content: "\f1bc";
7219 }
7219 }
7220 .fa-deviantart:before {
7220 .fa-deviantart:before {
7221 content: "\f1bd";
7221 content: "\f1bd";
7222 }
7222 }
7223 .fa-soundcloud:before {
7223 .fa-soundcloud:before {
7224 content: "\f1be";
7224 content: "\f1be";
7225 }
7225 }
7226 .fa-database:before {
7226 .fa-database:before {
7227 content: "\f1c0";
7227 content: "\f1c0";
7228 }
7228 }
7229 .fa-file-pdf-o:before {
7229 .fa-file-pdf-o:before {
7230 content: "\f1c1";
7230 content: "\f1c1";
7231 }
7231 }
7232 .fa-file-word-o:before {
7232 .fa-file-word-o:before {
7233 content: "\f1c2";
7233 content: "\f1c2";
7234 }
7234 }
7235 .fa-file-excel-o:before {
7235 .fa-file-excel-o:before {
7236 content: "\f1c3";
7236 content: "\f1c3";
7237 }
7237 }
7238 .fa-file-powerpoint-o:before {
7238 .fa-file-powerpoint-o:before {
7239 content: "\f1c4";
7239 content: "\f1c4";
7240 }
7240 }
7241 .fa-file-photo-o:before,
7241 .fa-file-photo-o:before,
7242 .fa-file-picture-o:before,
7242 .fa-file-picture-o:before,
7243 .fa-file-image-o:before {
7243 .fa-file-image-o:before {
7244 content: "\f1c5";
7244 content: "\f1c5";
7245 }
7245 }
7246 .fa-file-zip-o:before,
7246 .fa-file-zip-o:before,
7247 .fa-file-archive-o:before {
7247 .fa-file-archive-o:before {
7248 content: "\f1c6";
7248 content: "\f1c6";
7249 }
7249 }
7250 .fa-file-sound-o:before,
7250 .fa-file-sound-o:before,
7251 .fa-file-audio-o:before {
7251 .fa-file-audio-o:before {
7252 content: "\f1c7";
7252 content: "\f1c7";
7253 }
7253 }
7254 .fa-file-movie-o:before,
7254 .fa-file-movie-o:before,
7255 .fa-file-video-o:before {
7255 .fa-file-video-o:before {
7256 content: "\f1c8";
7256 content: "\f1c8";
7257 }
7257 }
7258 .fa-file-code-o:before {
7258 .fa-file-code-o:before {
7259 content: "\f1c9";
7259 content: "\f1c9";
7260 }
7260 }
7261 .fa-vine:before {
7261 .fa-vine:before {
7262 content: "\f1ca";
7262 content: "\f1ca";
7263 }
7263 }
7264 .fa-codepen:before {
7264 .fa-codepen:before {
7265 content: "\f1cb";
7265 content: "\f1cb";
7266 }
7266 }
7267 .fa-jsfiddle:before {
7267 .fa-jsfiddle:before {
7268 content: "\f1cc";
7268 content: "\f1cc";
7269 }
7269 }
7270 .fa-life-bouy:before,
7270 .fa-life-bouy:before,
7271 .fa-life-buoy:before,
7271 .fa-life-buoy:before,
7272 .fa-life-saver:before,
7272 .fa-life-saver:before,
7273 .fa-support:before,
7273 .fa-support:before,
7274 .fa-life-ring:before {
7274 .fa-life-ring:before {
7275 content: "\f1cd";
7275 content: "\f1cd";
7276 }
7276 }
7277 .fa-circle-o-notch:before {
7277 .fa-circle-o-notch:before {
7278 content: "\f1ce";
7278 content: "\f1ce";
7279 }
7279 }
7280 .fa-ra:before,
7280 .fa-ra:before,
7281 .fa-rebel:before {
7281 .fa-rebel:before {
7282 content: "\f1d0";
7282 content: "\f1d0";
7283 }
7283 }
7284 .fa-ge:before,
7284 .fa-ge:before,
7285 .fa-empire:before {
7285 .fa-empire:before {
7286 content: "\f1d1";
7286 content: "\f1d1";
7287 }
7287 }
7288 .fa-git-square:before {
7288 .fa-git-square:before {
7289 content: "\f1d2";
7289 content: "\f1d2";
7290 }
7290 }
7291 .fa-git:before {
7291 .fa-git:before {
7292 content: "\f1d3";
7292 content: "\f1d3";
7293 }
7293 }
7294 .fa-hacker-news:before {
7294 .fa-hacker-news:before {
7295 content: "\f1d4";
7295 content: "\f1d4";
7296 }
7296 }
7297 .fa-tencent-weibo:before {
7297 .fa-tencent-weibo:before {
7298 content: "\f1d5";
7298 content: "\f1d5";
7299 }
7299 }
7300 .fa-qq:before {
7300 .fa-qq:before {
7301 content: "\f1d6";
7301 content: "\f1d6";
7302 }
7302 }
7303 .fa-wechat:before,
7303 .fa-wechat:before,
7304 .fa-weixin:before {
7304 .fa-weixin:before {
7305 content: "\f1d7";
7305 content: "\f1d7";
7306 }
7306 }
7307 .fa-send:before,
7307 .fa-send:before,
7308 .fa-paper-plane:before {
7308 .fa-paper-plane:before {
7309 content: "\f1d8";
7309 content: "\f1d8";
7310 }
7310 }
7311 .fa-send-o:before,
7311 .fa-send-o:before,
7312 .fa-paper-plane-o:before {
7312 .fa-paper-plane-o:before {
7313 content: "\f1d9";
7313 content: "\f1d9";
7314 }
7314 }
7315 .fa-history:before {
7315 .fa-history:before {
7316 content: "\f1da";
7316 content: "\f1da";
7317 }
7317 }
7318 .fa-circle-thin:before {
7318 .fa-circle-thin:before {
7319 content: "\f1db";
7319 content: "\f1db";
7320 }
7320 }
7321 .fa-header:before {
7321 .fa-header:before {
7322 content: "\f1dc";
7322 content: "\f1dc";
7323 }
7323 }
7324 .fa-paragraph:before {
7324 .fa-paragraph:before {
7325 content: "\f1dd";
7325 content: "\f1dd";
7326 }
7326 }
7327 .fa-sliders:before {
7327 .fa-sliders:before {
7328 content: "\f1de";
7328 content: "\f1de";
7329 }
7329 }
7330 .fa-share-alt:before {
7330 .fa-share-alt:before {
7331 content: "\f1e0";
7331 content: "\f1e0";
7332 }
7332 }
7333 .fa-share-alt-square:before {
7333 .fa-share-alt-square:before {
7334 content: "\f1e1";
7334 content: "\f1e1";
7335 }
7335 }
7336 .fa-bomb:before {
7336 .fa-bomb:before {
7337 content: "\f1e2";
7337 content: "\f1e2";
7338 }
7338 }
7339 .fa-soccer-ball-o:before,
7339 .fa-soccer-ball-o:before,
7340 .fa-futbol-o:before {
7340 .fa-futbol-o:before {
7341 content: "\f1e3";
7341 content: "\f1e3";
7342 }
7342 }
7343 .fa-tty:before {
7343 .fa-tty:before {
7344 content: "\f1e4";
7344 content: "\f1e4";
7345 }
7345 }
7346 .fa-binoculars:before {
7346 .fa-binoculars:before {
7347 content: "\f1e5";
7347 content: "\f1e5";
7348 }
7348 }
7349 .fa-plug:before {
7349 .fa-plug:before {
7350 content: "\f1e6";
7350 content: "\f1e6";
7351 }
7351 }
7352 .fa-slideshare:before {
7352 .fa-slideshare:before {
7353 content: "\f1e7";
7353 content: "\f1e7";
7354 }
7354 }
7355 .fa-twitch:before {
7355 .fa-twitch:before {
7356 content: "\f1e8";
7356 content: "\f1e8";
7357 }
7357 }
7358 .fa-yelp:before {
7358 .fa-yelp:before {
7359 content: "\f1e9";
7359 content: "\f1e9";
7360 }
7360 }
7361 .fa-newspaper-o:before {
7361 .fa-newspaper-o:before {
7362 content: "\f1ea";
7362 content: "\f1ea";
7363 }
7363 }
7364 .fa-wifi:before {
7364 .fa-wifi:before {
7365 content: "\f1eb";
7365 content: "\f1eb";
7366 }
7366 }
7367 .fa-calculator:before {
7367 .fa-calculator:before {
7368 content: "\f1ec";
7368 content: "\f1ec";
7369 }
7369 }
7370 .fa-paypal:before {
7370 .fa-paypal:before {
7371 content: "\f1ed";
7371 content: "\f1ed";
7372 }
7372 }
7373 .fa-google-wallet:before {
7373 .fa-google-wallet:before {
7374 content: "\f1ee";
7374 content: "\f1ee";
7375 }
7375 }
7376 .fa-cc-visa:before {
7376 .fa-cc-visa:before {
7377 content: "\f1f0";
7377 content: "\f1f0";
7378 }
7378 }
7379 .fa-cc-mastercard:before {
7379 .fa-cc-mastercard:before {
7380 content: "\f1f1";
7380 content: "\f1f1";
7381 }
7381 }
7382 .fa-cc-discover:before {
7382 .fa-cc-discover:before {
7383 content: "\f1f2";
7383 content: "\f1f2";
7384 }
7384 }
7385 .fa-cc-amex:before {
7385 .fa-cc-amex:before {
7386 content: "\f1f3";
7386 content: "\f1f3";
7387 }
7387 }
7388 .fa-cc-paypal:before {
7388 .fa-cc-paypal:before {
7389 content: "\f1f4";
7389 content: "\f1f4";
7390 }
7390 }
7391 .fa-cc-stripe:before {
7391 .fa-cc-stripe:before {
7392 content: "\f1f5";
7392 content: "\f1f5";
7393 }
7393 }
7394 .fa-bell-slash:before {
7394 .fa-bell-slash:before {
7395 content: "\f1f6";
7395 content: "\f1f6";
7396 }
7396 }
7397 .fa-bell-slash-o:before {
7397 .fa-bell-slash-o:before {
7398 content: "\f1f7";
7398 content: "\f1f7";
7399 }
7399 }
7400 .fa-trash:before {
7400 .fa-trash:before {
7401 content: "\f1f8";
7401 content: "\f1f8";
7402 }
7402 }
7403 .fa-copyright:before {
7403 .fa-copyright:before {
7404 content: "\f1f9";
7404 content: "\f1f9";
7405 }
7405 }
7406 .fa-at:before {
7406 .fa-at:before {
7407 content: "\f1fa";
7407 content: "\f1fa";
7408 }
7408 }
7409 .fa-eyedropper:before {
7409 .fa-eyedropper:before {
7410 content: "\f1fb";
7410 content: "\f1fb";
7411 }
7411 }
7412 .fa-paint-brush:before {
7412 .fa-paint-brush:before {
7413 content: "\f1fc";
7413 content: "\f1fc";
7414 }
7414 }
7415 .fa-birthday-cake:before {
7415 .fa-birthday-cake:before {
7416 content: "\f1fd";
7416 content: "\f1fd";
7417 }
7417 }
7418 .fa-area-chart:before {
7418 .fa-area-chart:before {
7419 content: "\f1fe";
7419 content: "\f1fe";
7420 }
7420 }
7421 .fa-pie-chart:before {
7421 .fa-pie-chart:before {
7422 content: "\f200";
7422 content: "\f200";
7423 }
7423 }
7424 .fa-line-chart:before {
7424 .fa-line-chart:before {
7425 content: "\f201";
7425 content: "\f201";
7426 }
7426 }
7427 .fa-lastfm:before {
7427 .fa-lastfm:before {
7428 content: "\f202";
7428 content: "\f202";
7429 }
7429 }
7430 .fa-lastfm-square:before {
7430 .fa-lastfm-square:before {
7431 content: "\f203";
7431 content: "\f203";
7432 }
7432 }
7433 .fa-toggle-off:before {
7433 .fa-toggle-off:before {
7434 content: "\f204";
7434 content: "\f204";
7435 }
7435 }
7436 .fa-toggle-on:before {
7436 .fa-toggle-on:before {
7437 content: "\f205";
7437 content: "\f205";
7438 }
7438 }
7439 .fa-bicycle:before {
7439 .fa-bicycle:before {
7440 content: "\f206";
7440 content: "\f206";
7441 }
7441 }
7442 .fa-bus:before {
7442 .fa-bus:before {
7443 content: "\f207";
7443 content: "\f207";
7444 }
7444 }
7445 .fa-ioxhost:before {
7445 .fa-ioxhost:before {
7446 content: "\f208";
7446 content: "\f208";
7447 }
7447 }
7448 .fa-angellist:before {
7448 .fa-angellist:before {
7449 content: "\f209";
7449 content: "\f209";
7450 }
7450 }
7451 .fa-cc:before {
7451 .fa-cc:before {
7452 content: "\f20a";
7452 content: "\f20a";
7453 }
7453 }
7454 .fa-shekel:before,
7454 .fa-shekel:before,
7455 .fa-sheqel:before,
7455 .fa-sheqel:before,
7456 .fa-ils:before {
7456 .fa-ils:before {
7457 content: "\f20b";
7457 content: "\f20b";
7458 }
7458 }
7459 .fa-meanpath:before {
7459 .fa-meanpath:before {
7460 content: "\f20c";
7460 content: "\f20c";
7461 }
7461 }
7462 /*!
7462 /*!
7463 *
7463 *
7464 * IPython base
7464 * IPython base
7465 *
7465 *
7466 */
7466 */
7467 .modal.fade .modal-dialog {
7467 .modal.fade .modal-dialog {
7468 -webkit-transform: translate(0, 0);
7468 -webkit-transform: translate(0, 0);
7469 -ms-transform: translate(0, 0);
7469 -ms-transform: translate(0, 0);
7470 transform: translate(0, 0);
7470 transform: translate(0, 0);
7471 }
7471 }
7472 code {
7472 code {
7473 color: #000000;
7473 color: #000000;
7474 }
7474 }
7475 pre {
7475 pre {
7476 font-size: inherit;
7476 font-size: inherit;
7477 line-height: inherit;
7477 line-height: inherit;
7478 }
7478 }
7479 label {
7479 label {
7480 font-weight: normal;
7480 font-weight: normal;
7481 }
7481 }
7482 /* Make the page background atleast 100% the height of the view port */
7483 /* Make the page itself atleast 70% the height of the view port */
7482 .border-box-sizing {
7484 .border-box-sizing {
7483 box-sizing: border-box;
7485 box-sizing: border-box;
7484 -moz-box-sizing: border-box;
7486 -moz-box-sizing: border-box;
7485 -webkit-box-sizing: border-box;
7487 -webkit-box-sizing: border-box;
7486 }
7488 }
7487 .corner-all {
7489 .corner-all {
7488 border-radius: 4px;
7490 border-radius: 2px;
7489 }
7491 }
7490 .no-padding {
7492 .no-padding {
7491 padding: 0px;
7493 padding: 0px;
7492 }
7494 }
7493 /* Flexible box model classes */
7495 /* Flexible box model classes */
7494 /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
7496 /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
7495 /* This file is a compatability layer. It allows the usage of flexible box
7497 /* This file is a compatability layer. It allows the usage of flexible box
7496 model layouts accross multiple browsers, including older browsers. The newest,
7498 model layouts accross multiple browsers, including older browsers. The newest,
7497 universal implementation of the flexible box model is used when available (see
7499 universal implementation of the flexible box model is used when available (see
7498 `Modern browsers` comments below). Browsers that are known to implement this
7500 `Modern browsers` comments below). Browsers that are known to implement this
7499 new spec completely include:
7501 new spec completely include:
7500
7502
7501 Firefox 28.0+
7503 Firefox 28.0+
7502 Chrome 29.0+
7504 Chrome 29.0+
7503 Internet Explorer 11+
7505 Internet Explorer 11+
7504 Opera 17.0+
7506 Opera 17.0+
7505
7507
7506 Browsers not listed, including Safari, are supported via the styling under the
7508 Browsers not listed, including Safari, are supported via the styling under the
7507 `Old browsers` comments below.
7509 `Old browsers` comments below.
7508 */
7510 */
7509 .hbox {
7511 .hbox {
7510 /* Old browsers */
7512 /* Old browsers */
7511 display: -webkit-box;
7513 display: -webkit-box;
7512 -webkit-box-orient: horizontal;
7514 -webkit-box-orient: horizontal;
7513 -webkit-box-align: stretch;
7515 -webkit-box-align: stretch;
7514 display: -moz-box;
7516 display: -moz-box;
7515 -moz-box-orient: horizontal;
7517 -moz-box-orient: horizontal;
7516 -moz-box-align: stretch;
7518 -moz-box-align: stretch;
7517 display: box;
7519 display: box;
7518 box-orient: horizontal;
7520 box-orient: horizontal;
7519 box-align: stretch;
7521 box-align: stretch;
7520 /* Modern browsers */
7522 /* Modern browsers */
7521 display: flex;
7523 display: flex;
7522 flex-direction: row;
7524 flex-direction: row;
7523 align-items: stretch;
7525 align-items: stretch;
7524 }
7526 }
7525 .hbox > * {
7527 .hbox > * {
7526 /* Old browsers */
7528 /* Old browsers */
7527 -webkit-box-flex: 0;
7529 -webkit-box-flex: 0;
7528 -moz-box-flex: 0;
7530 -moz-box-flex: 0;
7529 box-flex: 0;
7531 box-flex: 0;
7530 /* Modern browsers */
7532 /* Modern browsers */
7531 flex: none;
7533 flex: none;
7532 }
7534 }
7533 .vbox {
7535 .vbox {
7534 /* Old browsers */
7536 /* Old browsers */
7535 display: -webkit-box;
7537 display: -webkit-box;
7536 -webkit-box-orient: vertical;
7538 -webkit-box-orient: vertical;
7537 -webkit-box-align: stretch;
7539 -webkit-box-align: stretch;
7538 display: -moz-box;
7540 display: -moz-box;
7539 -moz-box-orient: vertical;
7541 -moz-box-orient: vertical;
7540 -moz-box-align: stretch;
7542 -moz-box-align: stretch;
7541 display: box;
7543 display: box;
7542 box-orient: vertical;
7544 box-orient: vertical;
7543 box-align: stretch;
7545 box-align: stretch;
7544 /* Modern browsers */
7546 /* Modern browsers */
7545 display: flex;
7547 display: flex;
7546 flex-direction: column;
7548 flex-direction: column;
7547 align-items: stretch;
7549 align-items: stretch;
7548 }
7550 }
7549 .vbox > * {
7551 .vbox > * {
7550 /* Old browsers */
7552 /* Old browsers */
7551 -webkit-box-flex: 0;
7553 -webkit-box-flex: 0;
7552 -moz-box-flex: 0;
7554 -moz-box-flex: 0;
7553 box-flex: 0;
7555 box-flex: 0;
7554 /* Modern browsers */
7556 /* Modern browsers */
7555 flex: none;
7557 flex: none;
7556 }
7558 }
7557 .hbox.reverse,
7559 .hbox.reverse,
7558 .vbox.reverse,
7560 .vbox.reverse,
7559 .reverse {
7561 .reverse {
7560 /* Old browsers */
7562 /* Old browsers */
7561 -webkit-box-direction: reverse;
7563 -webkit-box-direction: reverse;
7562 -moz-box-direction: reverse;
7564 -moz-box-direction: reverse;
7563 box-direction: reverse;
7565 box-direction: reverse;
7564 /* Modern browsers */
7566 /* Modern browsers */
7565 flex-direction: row-reverse;
7567 flex-direction: row-reverse;
7566 }
7568 }
7567 .hbox.box-flex0,
7569 .hbox.box-flex0,
7568 .vbox.box-flex0,
7570 .vbox.box-flex0,
7569 .box-flex0 {
7571 .box-flex0 {
7570 /* Old browsers */
7572 /* Old browsers */
7571 -webkit-box-flex: 0;
7573 -webkit-box-flex: 0;
7572 -moz-box-flex: 0;
7574 -moz-box-flex: 0;
7573 box-flex: 0;
7575 box-flex: 0;
7574 /* Modern browsers */
7576 /* Modern browsers */
7575 flex: none;
7577 flex: none;
7576 width: auto;
7578 width: auto;
7577 }
7579 }
7578 .hbox.box-flex1,
7580 .hbox.box-flex1,
7579 .vbox.box-flex1,
7581 .vbox.box-flex1,
7580 .box-flex1 {
7582 .box-flex1 {
7581 /* Old browsers */
7583 /* Old browsers */
7582 -webkit-box-flex: 1;
7584 -webkit-box-flex: 1;
7583 -moz-box-flex: 1;
7585 -moz-box-flex: 1;
7584 box-flex: 1;
7586 box-flex: 1;
7585 /* Modern browsers */
7587 /* Modern browsers */
7586 flex: 1;
7588 flex: 1;
7587 }
7589 }
7588 .hbox.box-flex,
7590 .hbox.box-flex,
7589 .vbox.box-flex,
7591 .vbox.box-flex,
7590 .box-flex {
7592 .box-flex {
7591 /* Old browsers */
7593 /* Old browsers */
7592 /* Old browsers */
7594 /* Old browsers */
7593 -webkit-box-flex: 1;
7595 -webkit-box-flex: 1;
7594 -moz-box-flex: 1;
7596 -moz-box-flex: 1;
7595 box-flex: 1;
7597 box-flex: 1;
7596 /* Modern browsers */
7598 /* Modern browsers */
7597 flex: 1;
7599 flex: 1;
7598 }
7600 }
7599 .hbox.box-flex2,
7601 .hbox.box-flex2,
7600 .vbox.box-flex2,
7602 .vbox.box-flex2,
7601 .box-flex2 {
7603 .box-flex2 {
7602 /* Old browsers */
7604 /* Old browsers */
7603 -webkit-box-flex: 2;
7605 -webkit-box-flex: 2;
7604 -moz-box-flex: 2;
7606 -moz-box-flex: 2;
7605 box-flex: 2;
7607 box-flex: 2;
7606 /* Modern browsers */
7608 /* Modern browsers */
7607 flex: 2;
7609 flex: 2;
7608 }
7610 }
7609 .box-group1 {
7611 .box-group1 {
7610 /* Deprecated */
7612 /* Deprecated */
7611 -webkit-box-flex-group: 1;
7613 -webkit-box-flex-group: 1;
7612 -moz-box-flex-group: 1;
7614 -moz-box-flex-group: 1;
7613 box-flex-group: 1;
7615 box-flex-group: 1;
7614 }
7616 }
7615 .box-group2 {
7617 .box-group2 {
7616 /* Deprecated */
7618 /* Deprecated */
7617 -webkit-box-flex-group: 2;
7619 -webkit-box-flex-group: 2;
7618 -moz-box-flex-group: 2;
7620 -moz-box-flex-group: 2;
7619 box-flex-group: 2;
7621 box-flex-group: 2;
7620 }
7622 }
7621 .hbox.start,
7623 .hbox.start,
7622 .vbox.start,
7624 .vbox.start,
7623 .start {
7625 .start {
7624 /* Old browsers */
7626 /* Old browsers */
7625 -webkit-box-pack: start;
7627 -webkit-box-pack: start;
7626 -moz-box-pack: start;
7628 -moz-box-pack: start;
7627 box-pack: start;
7629 box-pack: start;
7628 /* Modern browsers */
7630 /* Modern browsers */
7629 justify-content: flex-start;
7631 justify-content: flex-start;
7630 }
7632 }
7631 .hbox.end,
7633 .hbox.end,
7632 .vbox.end,
7634 .vbox.end,
7633 .end {
7635 .end {
7634 /* Old browsers */
7636 /* Old browsers */
7635 -webkit-box-pack: end;
7637 -webkit-box-pack: end;
7636 -moz-box-pack: end;
7638 -moz-box-pack: end;
7637 box-pack: end;
7639 box-pack: end;
7638 /* Modern browsers */
7640 /* Modern browsers */
7639 justify-content: flex-end;
7641 justify-content: flex-end;
7640 }
7642 }
7641 .hbox.center,
7643 .hbox.center,
7642 .vbox.center,
7644 .vbox.center,
7643 .center {
7645 .center {
7644 /* Old browsers */
7646 /* Old browsers */
7645 -webkit-box-pack: center;
7647 -webkit-box-pack: center;
7646 -moz-box-pack: center;
7648 -moz-box-pack: center;
7647 box-pack: center;
7649 box-pack: center;
7648 /* Modern browsers */
7650 /* Modern browsers */
7649 justify-content: center;
7651 justify-content: center;
7650 }
7652 }
7651 .hbox.baseline,
7653 .hbox.baseline,
7652 .vbox.baseline,
7654 .vbox.baseline,
7653 .baseline {
7655 .baseline {
7654 /* Old browsers */
7656 /* Old browsers */
7655 -webkit-box-pack: baseline;
7657 -webkit-box-pack: baseline;
7656 -moz-box-pack: baseline;
7658 -moz-box-pack: baseline;
7657 box-pack: baseline;
7659 box-pack: baseline;
7658 /* Modern browsers */
7660 /* Modern browsers */
7659 justify-content: baseline;
7661 justify-content: baseline;
7660 }
7662 }
7661 .hbox.stretch,
7663 .hbox.stretch,
7662 .vbox.stretch,
7664 .vbox.stretch,
7663 .stretch {
7665 .stretch {
7664 /* Old browsers */
7666 /* Old browsers */
7665 -webkit-box-pack: stretch;
7667 -webkit-box-pack: stretch;
7666 -moz-box-pack: stretch;
7668 -moz-box-pack: stretch;
7667 box-pack: stretch;
7669 box-pack: stretch;
7668 /* Modern browsers */
7670 /* Modern browsers */
7669 justify-content: stretch;
7671 justify-content: stretch;
7670 }
7672 }
7671 .hbox.align-start,
7673 .hbox.align-start,
7672 .vbox.align-start,
7674 .vbox.align-start,
7673 .align-start {
7675 .align-start {
7674 /* Old browsers */
7676 /* Old browsers */
7675 -webkit-box-align: start;
7677 -webkit-box-align: start;
7676 -moz-box-align: start;
7678 -moz-box-align: start;
7677 box-align: start;
7679 box-align: start;
7678 /* Modern browsers */
7680 /* Modern browsers */
7679 align-items: flex-start;
7681 align-items: flex-start;
7680 }
7682 }
7681 .hbox.align-end,
7683 .hbox.align-end,
7682 .vbox.align-end,
7684 .vbox.align-end,
7683 .align-end {
7685 .align-end {
7684 /* Old browsers */
7686 /* Old browsers */
7685 -webkit-box-align: end;
7687 -webkit-box-align: end;
7686 -moz-box-align: end;
7688 -moz-box-align: end;
7687 box-align: end;
7689 box-align: end;
7688 /* Modern browsers */
7690 /* Modern browsers */
7689 align-items: flex-end;
7691 align-items: flex-end;
7690 }
7692 }
7691 .hbox.align-center,
7693 .hbox.align-center,
7692 .vbox.align-center,
7694 .vbox.align-center,
7693 .align-center {
7695 .align-center {
7694 /* Old browsers */
7696 /* Old browsers */
7695 -webkit-box-align: center;
7697 -webkit-box-align: center;
7696 -moz-box-align: center;
7698 -moz-box-align: center;
7697 box-align: center;
7699 box-align: center;
7698 /* Modern browsers */
7700 /* Modern browsers */
7699 align-items: center;
7701 align-items: center;
7700 }
7702 }
7701 .hbox.align-baseline,
7703 .hbox.align-baseline,
7702 .vbox.align-baseline,
7704 .vbox.align-baseline,
7703 .align-baseline {
7705 .align-baseline {
7704 /* Old browsers */
7706 /* Old browsers */
7705 -webkit-box-align: baseline;
7707 -webkit-box-align: baseline;
7706 -moz-box-align: baseline;
7708 -moz-box-align: baseline;
7707 box-align: baseline;
7709 box-align: baseline;
7708 /* Modern browsers */
7710 /* Modern browsers */
7709 align-items: baseline;
7711 align-items: baseline;
7710 }
7712 }
7711 .hbox.align-stretch,
7713 .hbox.align-stretch,
7712 .vbox.align-stretch,
7714 .vbox.align-stretch,
7713 .align-stretch {
7715 .align-stretch {
7714 /* Old browsers */
7716 /* Old browsers */
7715 -webkit-box-align: stretch;
7717 -webkit-box-align: stretch;
7716 -moz-box-align: stretch;
7718 -moz-box-align: stretch;
7717 box-align: stretch;
7719 box-align: stretch;
7718 /* Modern browsers */
7720 /* Modern browsers */
7719 align-items: stretch;
7721 align-items: stretch;
7720 }
7722 }
7721 div.error {
7723 div.error {
7722 margin: 2em;
7724 margin: 2em;
7723 text-align: center;
7725 text-align: center;
7724 }
7726 }
7725 div.error > h1 {
7727 div.error > h1 {
7726 font-size: 500%;
7728 font-size: 500%;
7727 line-height: normal;
7729 line-height: normal;
7728 }
7730 }
7729 div.error > p {
7731 div.error > p {
7730 font-size: 200%;
7732 font-size: 200%;
7731 line-height: normal;
7733 line-height: normal;
7732 }
7734 }
7733 div.traceback-wrapper {
7735 div.traceback-wrapper {
7734 text-align: left;
7736 text-align: left;
7735 max-width: 800px;
7737 max-width: 800px;
7736 margin: auto;
7738 margin: auto;
7737 }
7739 }
7738 /**
7740 /**
7739 * Primary styles
7741 * Primary styles
7740 *
7742 *
7741 * Author: IPython Development Team
7743 * Author: IPython Development Team
7742 */
7744 */
7743 body {
7745 body {
7744 background-color: white;
7746 background-color: #ffffff;
7745 /* This makes sure that the body covers the entire window and needs to
7747 /* This makes sure that the body covers the entire window and needs to
7746 be in a different element than the display: box in wrapper below */
7748 be in a different element than the display: box in wrapper below */
7747 position: absolute;
7749 position: absolute;
7748 left: 0px;
7750 left: 0px;
7749 right: 0px;
7751 right: 0px;
7750 top: 0px;
7752 top: 0px;
7751 bottom: 0px;
7753 bottom: 0px;
7752 overflow: visible;
7754 overflow: visible;
7753 }
7755 }
7754 div#header {
7756 div#header {
7755 /* Initially hidden to prevent FLOUC */
7757 /* Initially hidden to prevent FLOUC */
7756 display: none;
7758 display: none;
7757 background-color: #ffffff;
7759 background-color: #ffffff;
7758 /* Display over codemirror */
7760 /* Display over codemirror */
7759 z-index: 100;
7761 z-index: 100;
7760 }
7762 }
7761 div#header #header-container {
7763 div#header #header-container {
7762 padding-left: 30px;
7763 padding-bottom: 5px;
7764 padding-bottom: 5px;
7764 padding-top: 5px;
7765 padding-top: 5px;
7765 box-sizing: border-box;
7766 box-sizing: border-box;
7766 -moz-box-sizing: border-box;
7767 -moz-box-sizing: border-box;
7767 -webkit-box-sizing: border-box;
7768 -webkit-box-sizing: border-box;
7768 }
7769 }
7769 div#header .header-bar {
7770 div#header .header-bar {
7770 width: 100%;
7771 width: 100%;
7771 height: 0px;
7772 height: 0px;
7772 border-bottom: 1px solid #e7e7e7;
7773 border-bottom: 1px solid #e7e7e7;
7773 }
7774 }
7774 @media print {
7775 @media print {
7775 div#header {
7776 div#header {
7776 display: none !important;
7777 display: none !important;
7777 }
7778 }
7778 }
7779 }
7779 #header-spacer {
7780 #header-spacer {
7780 width: 100%;
7781 width: 100%;
7781 visibility: hidden;
7782 visibility: hidden;
7782 }
7783 }
7783 @media print {
7784 @media print {
7784 #header-spacer {
7785 #header-spacer {
7785 display: none;
7786 display: none;
7786 }
7787 }
7787 }
7788 }
7788 #ipython_notebook {
7789 #ipython_notebook {
7789 padding-left: 0px;
7790 padding-left: 0px;
7790 padding-top: 1px;
7791 padding-top: 1px;
7791 padding-bottom: 1px;
7792 padding-bottom: 1px;
7792 }
7793 }
7793 #noscript {
7794 #noscript {
7794 width: auto;
7795 width: auto;
7795 padding-top: 16px;
7796 padding-top: 16px;
7796 padding-bottom: 16px;
7797 padding-bottom: 16px;
7797 text-align: center;
7798 text-align: center;
7798 font-size: 22px;
7799 font-size: 22px;
7799 color: red;
7800 color: red;
7800 font-weight: bold;
7801 font-weight: bold;
7801 }
7802 }
7802 #ipython_notebook img {
7803 #ipython_notebook img {
7803 height: 28px;
7804 height: 28px;
7804 }
7805 }
7805 #site {
7806 #site {
7806 width: 100%;
7807 width: 100%;
7807 display: none;
7808 display: none;
7808 box-sizing: border-box;
7809 box-sizing: border-box;
7809 -moz-box-sizing: border-box;
7810 -moz-box-sizing: border-box;
7810 -webkit-box-sizing: border-box;
7811 -webkit-box-sizing: border-box;
7811 }
7812 }
7812 /* Smaller buttons */
7813 /* Smaller buttons */
7813 .ui-button .ui-button-text {
7814 .ui-button .ui-button-text {
7814 padding: 0.2em 0.8em;
7815 padding: 0.2em 0.8em;
7815 font-size: 77%;
7816 font-size: 77%;
7816 }
7817 }
7817 input.ui-button {
7818 input.ui-button {
7818 padding: 0.3em 0.9em;
7819 padding: 0.3em 0.9em;
7819 }
7820 }
7820 span#login_widget {
7821 span#login_widget {
7821 float: right;
7822 float: right;
7822 }
7823 }
7823 span#login_widget > .button,
7824 span#login_widget > .button,
7824 #logout {
7825 #logout {
7825 color: #333333;
7826 color: #333333;
7826 background-color: #ffffff;
7827 background-color: #ffffff;
7827 border-color: #cccccc;
7828 border-color: #cccccc;
7828 }
7829 }
7829 span#login_widget > .button:hover,
7830 span#login_widget > .button:hover,
7830 #logout:hover,
7831 #logout:hover,
7831 span#login_widget > .button:focus,
7832 span#login_widget > .button:focus,
7832 #logout:focus,
7833 #logout:focus,
7833 span#login_widget > .button:active,
7834 span#login_widget > .button:active,
7834 #logout:active,
7835 #logout:active,
7835 span#login_widget > .button.active,
7836 span#login_widget > .button.active,
7836 #logout.active,
7837 #logout.active,
7837 .open .dropdown-togglespan#login_widget > .button,
7838 .open .dropdown-togglespan#login_widget > .button,
7838 .open .dropdown-toggle#logout {
7839 .open .dropdown-toggle#logout {
7839 color: #333333;
7840 color: #333333;
7840 background-color: #ebebeb;
7841 background-color: #ebebeb;
7841 border-color: #adadad;
7842 border-color: #adadad;
7842 }
7843 }
7843 span#login_widget > .button:active,
7844 span#login_widget > .button:active,
7844 #logout:active,
7845 #logout:active,
7845 span#login_widget > .button.active,
7846 span#login_widget > .button.active,
7846 #logout.active,
7847 #logout.active,
7847 .open .dropdown-togglespan#login_widget > .button,
7848 .open .dropdown-togglespan#login_widget > .button,
7848 .open .dropdown-toggle#logout {
7849 .open .dropdown-toggle#logout {
7849 background-image: none;
7850 background-image: none;
7850 }
7851 }
7851 span#login_widget > .button.disabled,
7852 span#login_widget > .button.disabled,
7852 #logout.disabled,
7853 #logout.disabled,
7853 span#login_widget > .button[disabled],
7854 span#login_widget > .button[disabled],
7854 #logout[disabled],
7855 #logout[disabled],
7855 fieldset[disabled] span#login_widget > .button,
7856 fieldset[disabled] span#login_widget > .button,
7856 fieldset[disabled] #logout,
7857 fieldset[disabled] #logout,
7857 span#login_widget > .button.disabled:hover,
7858 span#login_widget > .button.disabled:hover,
7858 #logout.disabled:hover,
7859 #logout.disabled:hover,
7859 span#login_widget > .button[disabled]:hover,
7860 span#login_widget > .button[disabled]:hover,
7860 #logout[disabled]:hover,
7861 #logout[disabled]:hover,
7861 fieldset[disabled] span#login_widget > .button:hover,
7862 fieldset[disabled] span#login_widget > .button:hover,
7862 fieldset[disabled] #logout:hover,
7863 fieldset[disabled] #logout:hover,
7863 span#login_widget > .button.disabled:focus,
7864 span#login_widget > .button.disabled:focus,
7864 #logout.disabled:focus,
7865 #logout.disabled:focus,
7865 span#login_widget > .button[disabled]:focus,
7866 span#login_widget > .button[disabled]:focus,
7866 #logout[disabled]:focus,
7867 #logout[disabled]:focus,
7867 fieldset[disabled] span#login_widget > .button:focus,
7868 fieldset[disabled] span#login_widget > .button:focus,
7868 fieldset[disabled] #logout:focus,
7869 fieldset[disabled] #logout:focus,
7869 span#login_widget > .button.disabled:active,
7870 span#login_widget > .button.disabled:active,
7870 #logout.disabled:active,
7871 #logout.disabled:active,
7871 span#login_widget > .button[disabled]:active,
7872 span#login_widget > .button[disabled]:active,
7872 #logout[disabled]:active,
7873 #logout[disabled]:active,
7873 fieldset[disabled] span#login_widget > .button:active,
7874 fieldset[disabled] span#login_widget > .button:active,
7874 fieldset[disabled] #logout:active,
7875 fieldset[disabled] #logout:active,
7875 span#login_widget > .button.disabled.active,
7876 span#login_widget > .button.disabled.active,
7876 #logout.disabled.active,
7877 #logout.disabled.active,
7877 span#login_widget > .button[disabled].active,
7878 span#login_widget > .button[disabled].active,
7878 #logout[disabled].active,
7879 #logout[disabled].active,
7879 fieldset[disabled] span#login_widget > .button.active,
7880 fieldset[disabled] span#login_widget > .button.active,
7880 fieldset[disabled] #logout.active {
7881 fieldset[disabled] #logout.active {
7881 background-color: #ffffff;
7882 background-color: #ffffff;
7882 border-color: #cccccc;
7883 border-color: #cccccc;
7883 }
7884 }
7884 span#login_widget > .button .badge,
7885 span#login_widget > .button .badge,
7885 #logout .badge {
7886 #logout .badge {
7886 color: #ffffff;
7887 color: #ffffff;
7887 background-color: #333333;
7888 background-color: #333333;
7888 }
7889 }
7889 .nav-header {
7890 .nav-header {
7890 text-transform: none;
7891 text-transform: none;
7891 }
7892 }
7892 #header > span {
7893 #header > span {
7893 margin-top: 10px;
7894 margin-top: 10px;
7894 }
7895 }
7895 .modal_stretch .modal-dialog {
7896 .modal_stretch .modal-dialog {
7896 /* Old browsers */
7897 /* Old browsers */
7897 display: -webkit-box;
7898 display: -webkit-box;
7898 -webkit-box-orient: vertical;
7899 -webkit-box-orient: vertical;
7899 -webkit-box-align: stretch;
7900 -webkit-box-align: stretch;
7900 display: -moz-box;
7901 display: -moz-box;
7901 -moz-box-orient: vertical;
7902 -moz-box-orient: vertical;
7902 -moz-box-align: stretch;
7903 -moz-box-align: stretch;
7903 display: box;
7904 display: box;
7904 box-orient: vertical;
7905 box-orient: vertical;
7905 box-align: stretch;
7906 box-align: stretch;
7906 /* Modern browsers */
7907 /* Modern browsers */
7907 display: flex;
7908 display: flex;
7908 flex-direction: column;
7909 flex-direction: column;
7909 align-items: stretch;
7910 align-items: stretch;
7910 min-height: 80%;
7911 min-height: 80%;
7911 }
7912 }
7912 .modal_stretch .modal-dialog .modal-body {
7913 .modal_stretch .modal-dialog .modal-body {
7913 max-height: none;
7914 max-height: none;
7914 flex: 1;
7915 flex: 1;
7915 }
7916 }
7916 @media (min-width: 768px) {
7917 @media (min-width: 768px) {
7917 .modal .modal-dialog {
7918 .modal .modal-dialog {
7918 width: 700px;
7919 width: 700px;
7919 }
7920 }
7920 }
7921 }
7921 /*!
7922 /*!
7922 *
7923 *
7923 * IPython auth
7924 * IPython auth
7924 *
7925 *
7925 */
7926 */
7926 .center-nav {
7927 .center-nav {
7927 display: inline-block;
7928 display: inline-block;
7928 margin-bottom: -4px;
7929 margin-bottom: -4px;
7929 }
7930 }
7930 /*!
7931 /*!
7931 *
7932 *
7932 * IPython tree view
7933 * IPython tree view
7933 *
7934 *
7934 */
7935 */
7935 /* We need an invisible input field on top of the sentense*/
7936 /* We need an invisible input field on top of the sentense*/
7936 /* "Drag file onto the list ..." */
7937 /* "Drag file onto the list ..." */
7937 .alternate_upload {
7938 .alternate_upload {
7938 background-color: none;
7939 background-color: none;
7939 display: inline;
7940 display: inline;
7940 }
7941 }
7941 .alternate_upload.form {
7942 .alternate_upload.form {
7942 padding: 0;
7943 padding: 0;
7943 margin: 0;
7944 margin: 0;
7944 }
7945 }
7945 .alternate_upload input.fileinput {
7946 .alternate_upload input.fileinput {
7946 display: inline;
7947 display: inline;
7947 opacity: 0;
7948 opacity: 0;
7948 z-index: 2;
7949 z-index: 2;
7949 width: 12ex;
7950 width: 12ex;
7950 margin-right: -12ex;
7951 margin-right: -12ex;
7951 }
7952 }
7952 .alternate_upload .input-overlay {
7953 .alternate_upload .input-overlay {
7953 display: inline-block;
7954 display: inline-block;
7954 font-weight: bold;
7955 font-weight: bold;
7955 }
7956 }
7956 /**
7957 /**
7957 * Primary styles
7958 * Primary styles
7958 *
7959 *
7959 * Author: IPython Development Team
7960 * Author: IPython Development Team
7960 */
7961 */
7961 ul#tabs {
7962 ul#tabs {
7962 margin-bottom: 4px;
7963 margin-bottom: 4px;
7963 }
7964 }
7964 ul#tabs a {
7965 ul#tabs a {
7965 padding-top: 6px;
7966 padding-top: 6px;
7966 padding-bottom: 4px;
7967 padding-bottom: 4px;
7967 }
7968 }
7968 ul.breadcrumb a:focus,
7969 ul.breadcrumb a:focus,
7969 ul.breadcrumb a:hover {
7970 ul.breadcrumb a:hover {
7970 text-decoration: none;
7971 text-decoration: none;
7971 }
7972 }
7972 ul.breadcrumb i.icon-home {
7973 ul.breadcrumb i.icon-home {
7973 font-size: 16px;
7974 font-size: 16px;
7974 margin-right: 4px;
7975 margin-right: 4px;
7975 }
7976 }
7976 ul.breadcrumb span {
7977 ul.breadcrumb span {
7977 color: #5e5e5e;
7978 color: #5e5e5e;
7978 }
7979 }
7979 .list_toolbar {
7980 .list_toolbar {
7980 padding: 4px 0 4px 0;
7981 padding: 4px 0 4px 0;
7981 vertical-align: middle;
7982 vertical-align: middle;
7982 }
7983 }
7983 .list_toolbar .tree-buttons {
7984 .list_toolbar .tree-buttons {
7984 padding-top: 2px;
7985 padding-top: 2px;
7985 }
7986 }
7986 .list_toolbar [class*="span"] {
7987 .list_toolbar [class*="span"] {
7987 min-height: 24px;
7988 min-height: 24px;
7988 }
7989 }
7989 .list_header {
7990 .list_header {
7990 font-weight: bold;
7991 font-weight: bold;
7991 }
7992 }
7992 .list_container {
7993 .list_container {
7993 margin-top: 4px;
7994 margin-top: 4px;
7994 margin-bottom: 20px;
7995 margin-bottom: 20px;
7995 border: 1px solid #ababab;
7996 border: 1px solid #ababab;
7996 border-radius: 4px;
7997 border-radius: 2px;
7997 }
7998 }
7998 .list_container > div {
7999 .list_container > div {
7999 border-bottom: 1px solid #ababab;
8000 border-bottom: 1px solid #ababab;
8000 }
8001 }
8001 .list_container > div:hover .list-item {
8002 .list_container > div:hover .list-item {
8002 background-color: red;
8003 background-color: red;
8003 }
8004 }
8004 .list_container > div:last-child {
8005 .list_container > div:last-child {
8005 border: none;
8006 border: none;
8006 }
8007 }
8007 .list_item:hover .list_item {
8008 .list_item:hover .list_item {
8008 background-color: #ddd;
8009 background-color: #ddd;
8009 }
8010 }
8010 .list_item a {
8011 .list_item a {
8011 text-decoration: none;
8012 text-decoration: none;
8012 }
8013 }
8013 .action_col {
8014 .action_col {
8014 text-align: right;
8015 text-align: right;
8015 }
8016 }
8016 .list_header > div,
8017 .list_header > div,
8017 .list_item > div {
8018 .list_item > div {
8018 padding-top: 4px;
8019 padding-top: 4px;
8019 padding-bottom: 4px;
8020 padding-bottom: 4px;
8020 padding-left: 7px;
8021 padding-left: 7px;
8021 padding-right: 7px;
8022 padding-right: 7px;
8022 line-height: 22px;
8023 line-height: 22px;
8023 }
8024 }
8024 .item_name {
8025 .item_name {
8025 line-height: 22px;
8026 line-height: 22px;
8026 height: 24px;
8027 height: 24px;
8027 }
8028 }
8028 .item_icon {
8029 .item_icon {
8029 font-size: 14px;
8030 font-size: 14px;
8030 color: #5e5e5e;
8031 color: #5e5e5e;
8031 margin-right: 7px;
8032 margin-right: 7px;
8032 }
8033 }
8033 .item_buttons {
8034 .item_buttons {
8034 line-height: 1em;
8035 line-height: 1em;
8035 margin-left: -5px;
8036 margin-left: -5px;
8036 }
8037 }
8037 .item_buttons .btn {
8038 .item_buttons .btn {
8038 min-width: 13ex;
8039 min-width: 13ex;
8039 }
8040 }
8040 .item_buttons .btn-group,
8041 .item_buttons .btn-group,
8041 .item_buttons .input-group {
8042 .item_buttons .input-group {
8042 float: left;
8043 float: left;
8043 }
8044 }
8044 .item_buttons > .btn,
8045 .item_buttons > .btn,
8045 .item_buttons > .btn-group,
8046 .item_buttons > .btn-group,
8046 .item_buttons > .input-group {
8047 .item_buttons > .input-group {
8047 margin-left: 5px;
8048 margin-left: 5px;
8048 }
8049 }
8049 .toolbar_info {
8050 .toolbar_info {
8050 height: 24px;
8051 height: 24px;
8051 line-height: 24px;
8052 line-height: 24px;
8052 }
8053 }
8053 input.nbname_input,
8054 input.nbname_input,
8054 input.engine_num_input {
8055 input.engine_num_input {
8055 padding-top: 3px;
8056 padding-top: 3px;
8056 padding-bottom: 3px;
8057 padding-bottom: 3px;
8057 height: 22px;
8058 height: 22px;
8058 line-height: 14px;
8059 line-height: 14px;
8059 margin: 0px;
8060 margin: 0px;
8060 }
8061 }
8061 input.engine_num_input {
8062 input.engine_num_input {
8062 width: 60px;
8063 width: 60px;
8063 }
8064 }
8064 .highlight_text {
8065 .highlight_text {
8065 color: blue;
8066 color: blue;
8066 }
8067 }
8067 #project_name > .breadcrumb {
8068 #project_name > .breadcrumb {
8068 padding: 0px;
8069 padding: 0px;
8069 margin-bottom: 0px;
8070 margin-bottom: 0px;
8070 background-color: transparent;
8071 background-color: transparent;
8071 font-weight: bold;
8072 font-weight: bold;
8072 }
8073 }
8073 .tab-content .row {
8074 .tab-content .row {
8074 margin-left: 0px;
8075 margin-left: 0px;
8075 margin-right: 0px;
8076 margin-right: 0px;
8076 }
8077 }
8077 .folder_icon:before {
8078 .folder_icon:before {
8078 display: inline-block;
8079 display: inline-block;
8079 font: normal normal normal 14px/1 FontAwesome;
8080 font: normal normal normal 14px/1 FontAwesome;
8080 font-size: inherit;
8081 font-size: inherit;
8081 text-rendering: auto;
8082 text-rendering: auto;
8082 -webkit-font-smoothing: antialiased;
8083 -webkit-font-smoothing: antialiased;
8083 -moz-osx-font-smoothing: grayscale;
8084 -moz-osx-font-smoothing: grayscale;
8084 content: "\f114";
8085 content: "\f114";
8085 }
8086 }
8086 .folder_icon:before.pull-left {
8087 .folder_icon:before.pull-left {
8087 margin-right: .3em;
8088 margin-right: .3em;
8088 }
8089 }
8089 .folder_icon:before.pull-right {
8090 .folder_icon:before.pull-right {
8090 margin-left: .3em;
8091 margin-left: .3em;
8091 }
8092 }
8092 .notebook_icon:before {
8093 .notebook_icon:before {
8093 display: inline-block;
8094 display: inline-block;
8094 font: normal normal normal 14px/1 FontAwesome;
8095 font: normal normal normal 14px/1 FontAwesome;
8095 font-size: inherit;
8096 font-size: inherit;
8096 text-rendering: auto;
8097 text-rendering: auto;
8097 -webkit-font-smoothing: antialiased;
8098 -webkit-font-smoothing: antialiased;
8098 -moz-osx-font-smoothing: grayscale;
8099 -moz-osx-font-smoothing: grayscale;
8099 content: "\f02d";
8100 content: "\f02d";
8100 }
8101 }
8101 .notebook_icon:before.pull-left {
8102 .notebook_icon:before.pull-left {
8102 margin-right: .3em;
8103 margin-right: .3em;
8103 }
8104 }
8104 .notebook_icon:before.pull-right {
8105 .notebook_icon:before.pull-right {
8105 margin-left: .3em;
8106 margin-left: .3em;
8106 }
8107 }
8107 .file_icon:before {
8108 .file_icon:before {
8108 display: inline-block;
8109 display: inline-block;
8109 font: normal normal normal 14px/1 FontAwesome;
8110 font: normal normal normal 14px/1 FontAwesome;
8110 font-size: inherit;
8111 font-size: inherit;
8111 text-rendering: auto;
8112 text-rendering: auto;
8112 -webkit-font-smoothing: antialiased;
8113 -webkit-font-smoothing: antialiased;
8113 -moz-osx-font-smoothing: grayscale;
8114 -moz-osx-font-smoothing: grayscale;
8114 content: "\f016";
8115 content: "\f016";
8115 }
8116 }
8116 .file_icon:before.pull-left {
8117 .file_icon:before.pull-left {
8117 margin-right: .3em;
8118 margin-right: .3em;
8118 }
8119 }
8119 .file_icon:before.pull-right {
8120 .file_icon:before.pull-right {
8120 margin-left: .3em;
8121 margin-left: .3em;
8121 }
8122 }
8122 ul#new-menu {
8123 ul#new-menu {
8123 left: auto;
8124 left: auto;
8124 right: 0;
8125 right: 0;
8125 }
8126 }
8126 .kernel-menu-icon {
8127 .kernel-menu-icon {
8127 padding-right: 12px;
8128 padding-right: 12px;
8128 width: 24px;
8129 width: 24px;
8129 content: "\f096";
8130 content: "\f096";
8130 }
8131 }
8131 .kernel-menu-icon:before {
8132 .kernel-menu-icon:before {
8132 content: "\f096";
8133 content: "\f096";
8133 }
8134 }
8134 .kernel-menu-icon-current:before {
8135 .kernel-menu-icon-current:before {
8135 content: "\f00c";
8136 content: "\f00c";
8136 }
8137 }
8138 #tab_content {
8139 padding-top: 20px;
8140 }
8137 /*!
8141 /*!
8138 *
8142 *
8139 * IPython text editor webapp
8143 * IPython text editor webapp
8140 *
8144 *
8141 */
8145 */
8142 .selected-keymap i.fa {
8146 .selected-keymap i.fa {
8143 padding: 0px 5px;
8147 padding: 0px 5px;
8144 }
8148 }
8145 .selected-keymap i.fa:before {
8149 .selected-keymap i.fa:before {
8146 content: "\f00c";
8150 content: "\f00c";
8147 }
8151 }
8148 #mode-menu {
8152 #mode-menu {
8149 overflow: auto;
8153 overflow: auto;
8150 max-height: 20em;
8154 max-height: 20em;
8151 }
8155 }
8152 #texteditor-container {
8156 #current-mode {
8153 border-bottom: 1px solid #ccc;
8157 margin-right: 16px;
8158 }
8159 .edit_app #header {
8160 -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
8161 box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
8162 }
8163 .edit_app #menubar .navbar {
8164 /* Use a negative 1 bottom margin, so the border overlaps the border of the
8165 header */
8166 margin-bottom: -1px;
8154 }
8167 }
8155 #filename {
8168 #filename {
8156 font-size: 16pt;
8169 font-size: 16pt;
8157 display: table;
8170 display: table;
8158 padding: 0px 5px;
8171 padding: 0px 5px;
8159 }
8172 }
8173 #texteditor-backdrop {
8174 padding-top: 20px;
8175 padding-bottom: 20px;
8176 }
8177 @media not print {
8178 #texteditor-backdrop {
8179 min-height: 100vh;
8180 background-color: #eeeeee;
8181 }
8182 }
8183 @media print {
8184 #texteditor-backdrop #texteditor-container .CodeMirror-gutter,
8185 #texteditor-backdrop #texteditor-container .CodeMirror-gutters {
8186 background-color: #ffffff;
8187 }
8188 }
8189 @media not print {
8190 #texteditor-backdrop #texteditor-container .CodeMirror-gutter,
8191 #texteditor-backdrop #texteditor-container .CodeMirror-gutters {
8192 background-color: #ffffff;
8193 }
8194 }
8195 @media not print {
8196 #texteditor-backdrop #texteditor-container {
8197 padding: 0px;
8198 background-color: #ffffff;
8199 min-height: 70vh;
8200 -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
8201 box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
8202 }
8203 }
8160 /*!
8204 /*!
8161 *
8205 *
8162 * IPython notebook
8206 * IPython notebook
8163 *
8207 *
8164 */
8208 */
8165 /* CSS font colors for translated ANSI colors. */
8209 /* CSS font colors for translated ANSI colors. */
8166 .ansibold {
8210 .ansibold {
8167 font-weight: bold;
8211 font-weight: bold;
8168 }
8212 }
8169 /* use dark versions for foreground, to improve visibility */
8213 /* use dark versions for foreground, to improve visibility */
8170 .ansiblack {
8214 .ansiblack {
8171 color: black;
8215 color: black;
8172 }
8216 }
8173 .ansired {
8217 .ansired {
8174 color: darkred;
8218 color: darkred;
8175 }
8219 }
8176 .ansigreen {
8220 .ansigreen {
8177 color: darkgreen;
8221 color: darkgreen;
8178 }
8222 }
8179 .ansiyellow {
8223 .ansiyellow {
8180 color: #c4a000;
8224 color: #c4a000;
8181 }
8225 }
8182 .ansiblue {
8226 .ansiblue {
8183 color: darkblue;
8227 color: darkblue;
8184 }
8228 }
8185 .ansipurple {
8229 .ansipurple {
8186 color: darkviolet;
8230 color: darkviolet;
8187 }
8231 }
8188 .ansicyan {
8232 .ansicyan {
8189 color: steelblue;
8233 color: steelblue;
8190 }
8234 }
8191 .ansigray {
8235 .ansigray {
8192 color: gray;
8236 color: gray;
8193 }
8237 }
8194 /* and light for background, for the same reason */
8238 /* and light for background, for the same reason */
8195 .ansibgblack {
8239 .ansibgblack {
8196 background-color: black;
8240 background-color: black;
8197 }
8241 }
8198 .ansibgred {
8242 .ansibgred {
8199 background-color: red;
8243 background-color: red;
8200 }
8244 }
8201 .ansibggreen {
8245 .ansibggreen {
8202 background-color: green;
8246 background-color: green;
8203 }
8247 }
8204 .ansibgyellow {
8248 .ansibgyellow {
8205 background-color: yellow;
8249 background-color: yellow;
8206 }
8250 }
8207 .ansibgblue {
8251 .ansibgblue {
8208 background-color: blue;
8252 background-color: blue;
8209 }
8253 }
8210 .ansibgpurple {
8254 .ansibgpurple {
8211 background-color: magenta;
8255 background-color: magenta;
8212 }
8256 }
8213 .ansibgcyan {
8257 .ansibgcyan {
8214 background-color: cyan;
8258 background-color: cyan;
8215 }
8259 }
8216 .ansibggray {
8260 .ansibggray {
8217 background-color: gray;
8261 background-color: gray;
8218 }
8262 }
8219 div.cell {
8263 div.cell {
8220 border: 1px solid transparent;
8264 border: 1px solid transparent;
8221 /* Old browsers */
8265 /* Old browsers */
8222 display: -webkit-box;
8266 display: -webkit-box;
8223 -webkit-box-orient: vertical;
8267 -webkit-box-orient: vertical;
8224 -webkit-box-align: stretch;
8268 -webkit-box-align: stretch;
8225 display: -moz-box;
8269 display: -moz-box;
8226 -moz-box-orient: vertical;
8270 -moz-box-orient: vertical;
8227 -moz-box-align: stretch;
8271 -moz-box-align: stretch;
8228 display: box;
8272 display: box;
8229 box-orient: vertical;
8273 box-orient: vertical;
8230 box-align: stretch;
8274 box-align: stretch;
8231 /* Modern browsers */
8275 /* Modern browsers */
8232 display: flex;
8276 display: flex;
8233 flex-direction: column;
8277 flex-direction: column;
8234 align-items: stretch;
8278 align-items: stretch;
8235 border-radius: 4px;
8279 border-radius: 2px;
8236 box-sizing: border-box;
8280 box-sizing: border-box;
8237 -moz-box-sizing: border-box;
8281 -moz-box-sizing: border-box;
8238 -webkit-box-sizing: border-box;
8282 -webkit-box-sizing: border-box;
8239 border-width: thin;
8283 border-width: thin;
8240 border-style: solid;
8284 border-style: solid;
8241 width: 100%;
8285 width: 100%;
8242 padding: 5px 5px 5px 0px;
8286 padding: 5px 5px 5px 0px;
8243 /* This acts as a spacer between cells, that is outside the border */
8287 /* This acts as a spacer between cells, that is outside the border */
8244 margin: 0px;
8288 margin: 0px;
8245 outline: none;
8289 outline: none;
8246 }
8290 }
8247 div.cell.selected {
8291 div.cell.selected {
8248 border-color: #ababab;
8292 border-color: #ababab;
8249 /* Don't border the cells when printing */
8293 /* Don't border the cells when printing */
8250 }
8294 }
8251 @media print {
8295 @media print {
8252 div.cell.selected {
8296 div.cell.selected {
8253 border-color: transparent;
8297 border-color: transparent;
8254 }
8298 }
8255 }
8299 }
8256 div.cell.edit_mode {
8300 div.cell.edit_mode {
8257 border-color: green;
8301 border-color: green;
8258 /* Don't border the cells when printing */
8302 /* Don't border the cells when printing */
8259 }
8303 }
8260 @media print {
8304 @media print {
8261 div.cell.edit_mode {
8305 div.cell.edit_mode {
8262 border-color: transparent;
8306 border-color: transparent;
8263 }
8307 }
8264 }
8308 }
8265 div.prompt {
8309 div.prompt {
8266 /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
8310 /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
8267 min-width: 15ex;
8311 min-width: 15ex;
8268 /* This padding is tuned to match the padding on the CodeMirror editor. */
8312 /* This padding is tuned to match the padding on the CodeMirror editor. */
8269 padding: 0.4em;
8313 padding: 0.4em;
8270 margin: 0px;
8314 margin: 0px;
8271 font-family: monospace;
8315 font-family: monospace;
8272 text-align: right;
8316 text-align: right;
8273 /* This has to match that of the the CodeMirror class line-height below */
8317 /* This has to match that of the the CodeMirror class line-height below */
8274 line-height: 1.21429em;
8318 line-height: 1.21429em;
8275 }
8319 }
8276 @media (max-width: 480px) {
8320 @media (max-width: 480px) {
8277 div.prompt {
8321 div.prompt {
8278 text-align: left;
8322 text-align: left;
8279 }
8323 }
8280 }
8324 }
8281 div.inner_cell {
8325 div.inner_cell {
8282 /* Old browsers */
8326 /* Old browsers */
8283 display: -webkit-box;
8327 display: -webkit-box;
8284 -webkit-box-orient: vertical;
8328 -webkit-box-orient: vertical;
8285 -webkit-box-align: stretch;
8329 -webkit-box-align: stretch;
8286 display: -moz-box;
8330 display: -moz-box;
8287 -moz-box-orient: vertical;
8331 -moz-box-orient: vertical;
8288 -moz-box-align: stretch;
8332 -moz-box-align: stretch;
8289 display: box;
8333 display: box;
8290 box-orient: vertical;
8334 box-orient: vertical;
8291 box-align: stretch;
8335 box-align: stretch;
8292 /* Modern browsers */
8336 /* Modern browsers */
8293 display: flex;
8337 display: flex;
8294 flex-direction: column;
8338 flex-direction: column;
8295 align-items: stretch;
8339 align-items: stretch;
8296 /* Old browsers */
8340 /* Old browsers */
8297 -webkit-box-flex: 1;
8341 -webkit-box-flex: 1;
8298 -moz-box-flex: 1;
8342 -moz-box-flex: 1;
8299 box-flex: 1;
8343 box-flex: 1;
8300 /* Modern browsers */
8344 /* Modern browsers */
8301 flex: 1;
8345 flex: 1;
8302 }
8346 }
8303 /* input_area and input_prompt must match in top border and margin for alignment */
8347 /* input_area and input_prompt must match in top border and margin for alignment */
8304 div.input_area {
8348 div.input_area {
8305 border: 1px solid #cfcfcf;
8349 border: 1px solid #cfcfcf;
8306 border-radius: 4px;
8350 border-radius: 2px;
8307 background: #f7f7f7;
8351 background: #f7f7f7;
8308 line-height: 1.21429em;
8352 line-height: 1.21429em;
8309 }
8353 }
8310 /* This is needed so that empty prompt areas can collapse to zero height when there
8354 /* This is needed so that empty prompt areas can collapse to zero height when there
8311 is no content in the output_subarea and the prompt. The main purpose of this is
8355 is no content in the output_subarea and the prompt. The main purpose of this is
8312 to make sure that empty JavaScript output_subareas have no height. */
8356 to make sure that empty JavaScript output_subareas have no height. */
8313 div.prompt:empty {
8357 div.prompt:empty {
8314 padding-top: 0;
8358 padding-top: 0;
8315 padding-bottom: 0;
8359 padding-bottom: 0;
8316 }
8360 }
8317 div.unrecognized_cell {
8361 div.unrecognized_cell {
8318 padding: 5px 5px 5px 0px;
8362 padding: 5px 5px 5px 0px;
8319 /* Old browsers */
8363 /* Old browsers */
8320 display: -webkit-box;
8364 display: -webkit-box;
8321 -webkit-box-orient: horizontal;
8365 -webkit-box-orient: horizontal;
8322 -webkit-box-align: stretch;
8366 -webkit-box-align: stretch;
8323 display: -moz-box;
8367 display: -moz-box;
8324 -moz-box-orient: horizontal;
8368 -moz-box-orient: horizontal;
8325 -moz-box-align: stretch;
8369 -moz-box-align: stretch;
8326 display: box;
8370 display: box;
8327 box-orient: horizontal;
8371 box-orient: horizontal;
8328 box-align: stretch;
8372 box-align: stretch;
8329 /* Modern browsers */
8373 /* Modern browsers */
8330 display: flex;
8374 display: flex;
8331 flex-direction: row;
8375 flex-direction: row;
8332 align-items: stretch;
8376 align-items: stretch;
8333 }
8377 }
8334 div.unrecognized_cell .inner_cell {
8378 div.unrecognized_cell .inner_cell {
8335 border-radius: 4px;
8379 border-radius: 2px;
8336 padding: 5px;
8380 padding: 5px;
8337 font-weight: bold;
8381 font-weight: bold;
8338 color: red;
8382 color: red;
8339 border: 1px solid #cfcfcf;
8383 border: 1px solid #cfcfcf;
8340 background: #eaeaea;
8384 background: #eaeaea;
8341 }
8385 }
8342 div.unrecognized_cell .inner_cell a {
8386 div.unrecognized_cell .inner_cell a {
8343 color: inherit;
8387 color: inherit;
8344 text-decoration: none;
8388 text-decoration: none;
8345 }
8389 }
8346 div.unrecognized_cell .inner_cell a:hover {
8390 div.unrecognized_cell .inner_cell a:hover {
8347 color: inherit;
8391 color: inherit;
8348 text-decoration: none;
8392 text-decoration: none;
8349 }
8393 }
8350 @media (max-width: 480px) {
8394 @media (max-width: 480px) {
8351 div.unrecognized_cell > div.prompt {
8395 div.unrecognized_cell > div.prompt {
8352 display: none;
8396 display: none;
8353 }
8397 }
8354 }
8398 }
8355 div.code_cell {
8399 div.code_cell {
8356 /* avoid page breaking on code cells when printing */
8400 /* avoid page breaking on code cells when printing */
8357 }
8401 }
8358 @media print {
8402 @media print {
8359 div.code_cell {
8403 div.code_cell {
8360 page-break-inside: avoid;
8404 page-break-inside: avoid;
8361 }
8405 }
8362 }
8406 }
8363 /* any special styling for code cells that are currently running goes here */
8407 /* any special styling for code cells that are currently running goes here */
8364 div.input {
8408 div.input {
8365 page-break-inside: avoid;
8409 page-break-inside: avoid;
8366 /* Old browsers */
8410 /* Old browsers */
8367 display: -webkit-box;
8411 display: -webkit-box;
8368 -webkit-box-orient: horizontal;
8412 -webkit-box-orient: horizontal;
8369 -webkit-box-align: stretch;
8413 -webkit-box-align: stretch;
8370 display: -moz-box;
8414 display: -moz-box;
8371 -moz-box-orient: horizontal;
8415 -moz-box-orient: horizontal;
8372 -moz-box-align: stretch;
8416 -moz-box-align: stretch;
8373 display: box;
8417 display: box;
8374 box-orient: horizontal;
8418 box-orient: horizontal;
8375 box-align: stretch;
8419 box-align: stretch;
8376 /* Modern browsers */
8420 /* Modern browsers */
8377 display: flex;
8421 display: flex;
8378 flex-direction: row;
8422 flex-direction: row;
8379 align-items: stretch;
8423 align-items: stretch;
8380 }
8424 }
8381 @media (max-width: 480px) {
8425 @media (max-width: 480px) {
8382 div.input {
8426 div.input {
8383 /* Old browsers */
8427 /* Old browsers */
8384 display: -webkit-box;
8428 display: -webkit-box;
8385 -webkit-box-orient: vertical;
8429 -webkit-box-orient: vertical;
8386 -webkit-box-align: stretch;
8430 -webkit-box-align: stretch;
8387 display: -moz-box;
8431 display: -moz-box;
8388 -moz-box-orient: vertical;
8432 -moz-box-orient: vertical;
8389 -moz-box-align: stretch;
8433 -moz-box-align: stretch;
8390 display: box;
8434 display: box;
8391 box-orient: vertical;
8435 box-orient: vertical;
8392 box-align: stretch;
8436 box-align: stretch;
8393 /* Modern browsers */
8437 /* Modern browsers */
8394 display: flex;
8438 display: flex;
8395 flex-direction: column;
8439 flex-direction: column;
8396 align-items: stretch;
8440 align-items: stretch;
8397 }
8441 }
8398 }
8442 }
8399 /* input_area and input_prompt must match in top border and margin for alignment */
8443 /* input_area and input_prompt must match in top border and margin for alignment */
8400 div.input_prompt {
8444 div.input_prompt {
8401 color: navy;
8445 color: navy;
8402 border-top: 1px solid transparent;
8446 border-top: 1px solid transparent;
8403 }
8447 }
8404 div.input_area > div.highlight {
8448 div.input_area > div.highlight {
8405 margin: 0.4em;
8449 margin: 0.4em;
8406 border: none;
8450 border: none;
8407 padding: 0px;
8451 padding: 0px;
8408 background-color: transparent;
8452 background-color: transparent;
8409 }
8453 }
8410 div.input_area > div.highlight > pre {
8454 div.input_area > div.highlight > pre {
8411 margin: 0px;
8455 margin: 0px;
8412 border: none;
8456 border: none;
8413 padding: 0px;
8457 padding: 0px;
8414 background-color: transparent;
8458 background-color: transparent;
8415 }
8459 }
8416 /* The following gets added to the <head> if it is detected that the user has a
8460 /* The following gets added to the <head> if it is detected that the user has a
8417 * monospace font with inconsistent normal/bold/italic height. See
8461 * monospace font with inconsistent normal/bold/italic height. See
8418 * notebookmain.js. Such fonts will have keywords vertically offset with
8462 * notebookmain.js. Such fonts will have keywords vertically offset with
8419 * respect to the rest of the text. The user should select a better font.
8463 * respect to the rest of the text. The user should select a better font.
8420 * See: https://github.com/ipython/ipython/issues/1503
8464 * See: https://github.com/ipython/ipython/issues/1503
8421 *
8465 *
8422 * .CodeMirror span {
8466 * .CodeMirror span {
8423 * vertical-align: bottom;
8467 * vertical-align: bottom;
8424 * }
8468 * }
8425 */
8469 */
8426 .CodeMirror {
8470 .CodeMirror {
8427 line-height: 1.21429em;
8471 line-height: 1.21429em;
8428 /* Changed from 1em to our global default */
8472 /* Changed from 1em to our global default */
8473 font-size: 14px;
8429 height: auto;
8474 height: auto;
8430 /* Changed to auto to autogrow */
8475 /* Changed to auto to autogrow */
8431 background: none;
8476 background: none;
8432 /* Changed from white to allow our bg to show through */
8477 /* Changed from white to allow our bg to show through */
8433 }
8478 }
8434 .CodeMirror-scroll {
8479 .CodeMirror-scroll {
8435 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
8480 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
8436 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
8481 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
8437 overflow-y: hidden;
8482 overflow-y: hidden;
8438 overflow-x: auto;
8483 overflow-x: auto;
8439 }
8484 }
8440 .CodeMirror-lines {
8485 .CodeMirror-lines {
8441 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
8486 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
8442 /* we have set a different line-height and want this to scale with that. */
8487 /* we have set a different line-height and want this to scale with that. */
8443 padding: 0.4em;
8488 padding: 0.4em;
8444 }
8489 }
8445 .CodeMirror-linenumber {
8490 .CodeMirror-linenumber {
8446 padding: 0 8px 0 4px;
8491 padding: 0 8px 0 4px;
8447 }
8492 }
8448 .CodeMirror-gutters {
8493 .CodeMirror-gutters {
8449 border-bottom-left-radius: 4px;
8494 border-bottom-left-radius: 2px;
8450 border-top-left-radius: 4px;
8495 border-top-left-radius: 2px;
8451 }
8496 }
8452 .CodeMirror pre {
8497 .CodeMirror pre {
8453 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
8498 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
8454 /* .CodeMirror-lines */
8499 /* .CodeMirror-lines */
8455 padding: 0;
8500 padding: 0;
8456 border: 0;
8501 border: 0;
8457 border-radius: 0;
8502 border-radius: 0;
8458 }
8503 }
8459 .CodeMirror-vscrollbar,
8504 .CodeMirror-vscrollbar,
8460 .CodeMirror-hscrollbar {
8505 .CodeMirror-hscrollbar {
8461 display: none !important;
8506 display: none !important;
8462 }
8507 }
8463 /*
8508 /*
8464
8509
8465 Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
8510 Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
8466 Adapted from GitHub theme
8511 Adapted from GitHub theme
8467
8512
8468 */
8513 */
8469 .highlight-base {
8514 .highlight-base {
8470 color: #000000;
8515 color: #000000;
8471 }
8516 }
8472 .highlight-variable {
8517 .highlight-variable {
8473 color: #000000;
8518 color: #000000;
8474 }
8519 }
8475 .highlight-variable-2 {
8520 .highlight-variable-2 {
8476 color: #1a1a1a;
8521 color: #1a1a1a;
8477 }
8522 }
8478 .highlight-variable-3 {
8523 .highlight-variable-3 {
8479 color: #333333;
8524 color: #333333;
8480 }
8525 }
8481 .highlight-string {
8526 .highlight-string {
8482 color: #BA2121;
8527 color: #BA2121;
8483 }
8528 }
8484 .highlight-comment {
8529 .highlight-comment {
8485 color: #408080;
8530 color: #408080;
8486 font-style: italic;
8531 font-style: italic;
8487 }
8532 }
8488 .highlight-number {
8533 .highlight-number {
8489 color: #080;
8534 color: #080;
8490 }
8535 }
8491 .highlight-atom {
8536 .highlight-atom {
8492 color: #88F;
8537 color: #88F;
8493 }
8538 }
8494 .highlight-keyword {
8539 .highlight-keyword {
8495 color: #008000;
8540 color: #008000;
8496 font-weight: bold;
8541 font-weight: bold;
8497 }
8542 }
8498 .highlight-builtin {
8543 .highlight-builtin {
8499 color: #008000;
8544 color: #008000;
8500 }
8545 }
8501 .highlight-error {
8546 .highlight-error {
8502 color: #f00;
8547 color: #f00;
8503 }
8548 }
8504 .highlight-operator {
8549 .highlight-operator {
8505 color: #AA22FF;
8550 color: #AA22FF;
8506 font-weight: bold;
8551 font-weight: bold;
8507 }
8552 }
8508 .highlight-meta {
8553 .highlight-meta {
8509 color: #AA22FF;
8554 color: #AA22FF;
8510 }
8555 }
8511 /* previously not defined, copying from default codemirror */
8556 /* previously not defined, copying from default codemirror */
8512 .highlight-def {
8557 .highlight-def {
8513 color: #00f;
8558 color: #00f;
8514 }
8559 }
8515 .highlight-string-2 {
8560 .highlight-string-2 {
8516 color: #f50;
8561 color: #f50;
8517 }
8562 }
8518 .highlight-qualifier {
8563 .highlight-qualifier {
8519 color: #555;
8564 color: #555;
8520 }
8565 }
8521 .highlight-bracket {
8566 .highlight-bracket {
8522 color: #997;
8567 color: #997;
8523 }
8568 }
8524 .highlight-tag {
8569 .highlight-tag {
8525 color: #170;
8570 color: #170;
8526 }
8571 }
8527 .highlight-attribute {
8572 .highlight-attribute {
8528 color: #00c;
8573 color: #00c;
8529 }
8574 }
8530 .highlight-header {
8575 .highlight-header {
8531 color: blue;
8576 color: blue;
8532 }
8577 }
8533 .highlight-quote {
8578 .highlight-quote {
8534 color: #090;
8579 color: #090;
8535 }
8580 }
8536 .highlight-link {
8581 .highlight-link {
8537 color: #00c;
8582 color: #00c;
8538 }
8583 }
8539 /* apply the same style to codemirror */
8584 /* apply the same style to codemirror */
8540 .cm-s-ipython span.cm-keyword {
8585 .cm-s-ipython span.cm-keyword {
8541 color: #008000;
8586 color: #008000;
8542 font-weight: bold;
8587 font-weight: bold;
8543 }
8588 }
8544 .cm-s-ipython span.cm-atom {
8589 .cm-s-ipython span.cm-atom {
8545 color: #88F;
8590 color: #88F;
8546 }
8591 }
8547 .cm-s-ipython span.cm-number {
8592 .cm-s-ipython span.cm-number {
8548 color: #080;
8593 color: #080;
8549 }
8594 }
8550 .cm-s-ipython span.cm-def {
8595 .cm-s-ipython span.cm-def {
8551 color: #00f;
8596 color: #00f;
8552 }
8597 }
8553 .cm-s-ipython span.cm-variable {
8598 .cm-s-ipython span.cm-variable {
8554 color: #000000;
8599 color: #000000;
8555 }
8600 }
8556 .cm-s-ipython span.cm-operator {
8601 .cm-s-ipython span.cm-operator {
8557 color: #AA22FF;
8602 color: #AA22FF;
8558 font-weight: bold;
8603 font-weight: bold;
8559 }
8604 }
8560 .cm-s-ipython span.cm-variable-2 {
8605 .cm-s-ipython span.cm-variable-2 {
8561 color: #1a1a1a;
8606 color: #1a1a1a;
8562 }
8607 }
8563 .cm-s-ipython span.cm-variable-3 {
8608 .cm-s-ipython span.cm-variable-3 {
8564 color: #333333;
8609 color: #333333;
8565 }
8610 }
8566 .cm-s-ipython span.cm-comment {
8611 .cm-s-ipython span.cm-comment {
8567 color: #408080;
8612 color: #408080;
8568 font-style: italic;
8613 font-style: italic;
8569 }
8614 }
8570 .cm-s-ipython span.cm-string {
8615 .cm-s-ipython span.cm-string {
8571 color: #BA2121;
8616 color: #BA2121;
8572 }
8617 }
8573 .cm-s-ipython span.cm-string-2 {
8618 .cm-s-ipython span.cm-string-2 {
8574 color: #f50;
8619 color: #f50;
8575 }
8620 }
8576 .cm-s-ipython span.cm-meta {
8621 .cm-s-ipython span.cm-meta {
8577 color: #AA22FF;
8622 color: #AA22FF;
8578 }
8623 }
8579 .cm-s-ipython span.cm-qualifier {
8624 .cm-s-ipython span.cm-qualifier {
8580 color: #555;
8625 color: #555;
8581 }
8626 }
8582 .cm-s-ipython span.cm-builtin {
8627 .cm-s-ipython span.cm-builtin {
8583 color: #008000;
8628 color: #008000;
8584 }
8629 }
8585 .cm-s-ipython span.cm-bracket {
8630 .cm-s-ipython span.cm-bracket {
8586 color: #997;
8631 color: #997;
8587 }
8632 }
8588 .cm-s-ipython span.cm-tag {
8633 .cm-s-ipython span.cm-tag {
8589 color: #170;
8634 color: #170;
8590 }
8635 }
8591 .cm-s-ipython span.cm-attribute {
8636 .cm-s-ipython span.cm-attribute {
8592 color: #00c;
8637 color: #00c;
8593 }
8638 }
8594 .cm-s-ipython span.cm-header {
8639 .cm-s-ipython span.cm-header {
8595 color: blue;
8640 color: blue;
8596 }
8641 }
8597 .cm-s-ipython span.cm-quote {
8642 .cm-s-ipython span.cm-quote {
8598 color: #090;
8643 color: #090;
8599 }
8644 }
8600 .cm-s-ipython span.cm-link {
8645 .cm-s-ipython span.cm-link {
8601 color: #00c;
8646 color: #00c;
8602 }
8647 }
8603 .cm-s-ipython span.cm-error {
8648 .cm-s-ipython span.cm-error {
8604 color: #f00;
8649 color: #f00;
8605 }
8650 }
8606 .cm-s-ipython span.cm-tab {
8651 .cm-s-ipython span.cm-tab {
8607 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
8652 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
8608 background-position: right;
8653 background-position: right;
8609 background-repeat: no-repeat;
8654 background-repeat: no-repeat;
8610 }
8655 }
8611 div.output_wrapper {
8656 div.output_wrapper {
8612 /* this position must be relative to enable descendents to be absolute within it */
8657 /* this position must be relative to enable descendents to be absolute within it */
8613 position: relative;
8658 position: relative;
8614 /* Old browsers */
8659 /* Old browsers */
8615 display: -webkit-box;
8660 display: -webkit-box;
8616 -webkit-box-orient: vertical;
8661 -webkit-box-orient: vertical;
8617 -webkit-box-align: stretch;
8662 -webkit-box-align: stretch;
8618 display: -moz-box;
8663 display: -moz-box;
8619 -moz-box-orient: vertical;
8664 -moz-box-orient: vertical;
8620 -moz-box-align: stretch;
8665 -moz-box-align: stretch;
8621 display: box;
8666 display: box;
8622 box-orient: vertical;
8667 box-orient: vertical;
8623 box-align: stretch;
8668 box-align: stretch;
8624 /* Modern browsers */
8669 /* Modern browsers */
8625 display: flex;
8670 display: flex;
8626 flex-direction: column;
8671 flex-direction: column;
8627 align-items: stretch;
8672 align-items: stretch;
8628 }
8673 }
8629 /* class for the output area when it should be height-limited */
8674 /* class for the output area when it should be height-limited */
8630 div.output_scroll {
8675 div.output_scroll {
8631 /* ideally, this would be max-height, but FF barfs all over that */
8676 /* ideally, this would be max-height, but FF barfs all over that */
8632 height: 24em;
8677 height: 24em;
8633 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
8678 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
8634 width: 100%;
8679 width: 100%;
8635 overflow: auto;
8680 overflow: auto;
8636 border-radius: 4px;
8681 border-radius: 2px;
8637 -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8682 -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8638 box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8683 box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8639 display: block;
8684 display: block;
8640 }
8685 }
8641 /* output div while it is collapsed */
8686 /* output div while it is collapsed */
8642 div.output_collapsed {
8687 div.output_collapsed {
8643 margin: 0px;
8688 margin: 0px;
8644 padding: 0px;
8689 padding: 0px;
8645 /* Old browsers */
8690 /* Old browsers */
8646 display: -webkit-box;
8691 display: -webkit-box;
8647 -webkit-box-orient: vertical;
8692 -webkit-box-orient: vertical;
8648 -webkit-box-align: stretch;
8693 -webkit-box-align: stretch;
8649 display: -moz-box;
8694 display: -moz-box;
8650 -moz-box-orient: vertical;
8695 -moz-box-orient: vertical;
8651 -moz-box-align: stretch;
8696 -moz-box-align: stretch;
8652 display: box;
8697 display: box;
8653 box-orient: vertical;
8698 box-orient: vertical;
8654 box-align: stretch;
8699 box-align: stretch;
8655 /* Modern browsers */
8700 /* Modern browsers */
8656 display: flex;
8701 display: flex;
8657 flex-direction: column;
8702 flex-direction: column;
8658 align-items: stretch;
8703 align-items: stretch;
8659 }
8704 }
8660 div.out_prompt_overlay {
8705 div.out_prompt_overlay {
8661 height: 100%;
8706 height: 100%;
8662 padding: 0px 0.4em;
8707 padding: 0px 0.4em;
8663 position: absolute;
8708 position: absolute;
8664 border-radius: 4px;
8709 border-radius: 2px;
8665 }
8710 }
8666 div.out_prompt_overlay:hover {
8711 div.out_prompt_overlay:hover {
8667 /* use inner shadow to get border that is computed the same on WebKit/FF */
8712 /* use inner shadow to get border that is computed the same on WebKit/FF */
8668 -webkit-box-shadow: inset 0 0 1px #000000;
8713 -webkit-box-shadow: inset 0 0 1px #000000;
8669 box-shadow: inset 0 0 1px #000000;
8714 box-shadow: inset 0 0 1px #000000;
8670 background: rgba(240, 240, 240, 0.5);
8715 background: rgba(240, 240, 240, 0.5);
8671 }
8716 }
8672 div.output_prompt {
8717 div.output_prompt {
8673 color: darkred;
8718 color: darkred;
8674 }
8719 }
8675 /* This class is the outer container of all output sections. */
8720 /* This class is the outer container of all output sections. */
8676 div.output_area {
8721 div.output_area {
8677 padding: 0px;
8722 padding: 0px;
8678 page-break-inside: avoid;
8723 page-break-inside: avoid;
8679 /* Old browsers */
8724 /* Old browsers */
8680 display: -webkit-box;
8725 display: -webkit-box;
8681 -webkit-box-orient: horizontal;
8726 -webkit-box-orient: horizontal;
8682 -webkit-box-align: stretch;
8727 -webkit-box-align: stretch;
8683 display: -moz-box;
8728 display: -moz-box;
8684 -moz-box-orient: horizontal;
8729 -moz-box-orient: horizontal;
8685 -moz-box-align: stretch;
8730 -moz-box-align: stretch;
8686 display: box;
8731 display: box;
8687 box-orient: horizontal;
8732 box-orient: horizontal;
8688 box-align: stretch;
8733 box-align: stretch;
8689 /* Modern browsers */
8734 /* Modern browsers */
8690 display: flex;
8735 display: flex;
8691 flex-direction: row;
8736 flex-direction: row;
8692 align-items: stretch;
8737 align-items: stretch;
8693 }
8738 }
8694 div.output_area .MathJax_Display {
8739 div.output_area .MathJax_Display {
8695 text-align: left !important;
8740 text-align: left !important;
8696 }
8741 }
8697 div.output_area .rendered_html table {
8742 div.output_area .rendered_html table {
8698 margin-left: 0;
8743 margin-left: 0;
8699 margin-right: 0;
8744 margin-right: 0;
8700 }
8745 }
8701 div.output_area .rendered_html img {
8746 div.output_area .rendered_html img {
8702 margin-left: 0;
8747 margin-left: 0;
8703 margin-right: 0;
8748 margin-right: 0;
8704 }
8749 }
8705 /* This is needed to protect the pre formating from global settings such
8750 /* This is needed to protect the pre formating from global settings such
8706 as that of bootstrap */
8751 as that of bootstrap */
8707 .output {
8752 .output {
8708 /* Old browsers */
8753 /* Old browsers */
8709 display: -webkit-box;
8754 display: -webkit-box;
8710 -webkit-box-orient: vertical;
8755 -webkit-box-orient: vertical;
8711 -webkit-box-align: stretch;
8756 -webkit-box-align: stretch;
8712 display: -moz-box;
8757 display: -moz-box;
8713 -moz-box-orient: vertical;
8758 -moz-box-orient: vertical;
8714 -moz-box-align: stretch;
8759 -moz-box-align: stretch;
8715 display: box;
8760 display: box;
8716 box-orient: vertical;
8761 box-orient: vertical;
8717 box-align: stretch;
8762 box-align: stretch;
8718 /* Modern browsers */
8763 /* Modern browsers */
8719 display: flex;
8764 display: flex;
8720 flex-direction: column;
8765 flex-direction: column;
8721 align-items: stretch;
8766 align-items: stretch;
8722 }
8767 }
8723 @media (max-width: 480px) {
8768 @media (max-width: 480px) {
8724 div.output_area {
8769 div.output_area {
8725 /* Old browsers */
8770 /* Old browsers */
8726 display: -webkit-box;
8771 display: -webkit-box;
8727 -webkit-box-orient: vertical;
8772 -webkit-box-orient: vertical;
8728 -webkit-box-align: stretch;
8773 -webkit-box-align: stretch;
8729 display: -moz-box;
8774 display: -moz-box;
8730 -moz-box-orient: vertical;
8775 -moz-box-orient: vertical;
8731 -moz-box-align: stretch;
8776 -moz-box-align: stretch;
8732 display: box;
8777 display: box;
8733 box-orient: vertical;
8778 box-orient: vertical;
8734 box-align: stretch;
8779 box-align: stretch;
8735 /* Modern browsers */
8780 /* Modern browsers */
8736 display: flex;
8781 display: flex;
8737 flex-direction: column;
8782 flex-direction: column;
8738 align-items: stretch;
8783 align-items: stretch;
8739 }
8784 }
8740 }
8785 }
8741 div.output_area pre {
8786 div.output_area pre {
8742 margin: 0;
8787 margin: 0;
8743 padding: 0;
8788 padding: 0;
8744 border: 0;
8789 border: 0;
8745 vertical-align: baseline;
8790 vertical-align: baseline;
8746 color: black;
8791 color: black;
8747 background-color: transparent;
8792 background-color: transparent;
8748 border-radius: 0;
8793 border-radius: 0;
8749 }
8794 }
8750 /* This class is for the output subarea inside the output_area and after
8795 /* This class is for the output subarea inside the output_area and after
8751 the prompt div. */
8796 the prompt div. */
8752 div.output_subarea {
8797 div.output_subarea {
8753 padding: 0.4em 0.4em 0em 0.4em;
8798 padding: 0.4em 0.4em 0em 0.4em;
8754 /* Old browsers */
8799 /* Old browsers */
8755 -webkit-box-flex: 1;
8800 -webkit-box-flex: 1;
8756 -moz-box-flex: 1;
8801 -moz-box-flex: 1;
8757 box-flex: 1;
8802 box-flex: 1;
8758 /* Modern browsers */
8803 /* Modern browsers */
8759 flex: 1;
8804 flex: 1;
8760 }
8805 }
8761 /* The rest of the output_* classes are for special styling of the different
8806 /* The rest of the output_* classes are for special styling of the different
8762 output types */
8807 output types */
8763 /* all text output has this class: */
8808 /* all text output has this class: */
8764 div.output_text {
8809 div.output_text {
8765 text-align: left;
8810 text-align: left;
8766 color: #000000;
8811 color: #000000;
8767 /* This has to match that of the the CodeMirror class line-height below */
8812 /* This has to match that of the the CodeMirror class line-height below */
8768 line-height: 1.21429em;
8813 line-height: 1.21429em;
8769 }
8814 }
8770 /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
8815 /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
8771 div.output_stderr {
8816 div.output_stderr {
8772 background: #fdd;
8817 background: #fdd;
8773 /* very light red background for stderr */
8818 /* very light red background for stderr */
8774 }
8819 }
8775 div.output_latex {
8820 div.output_latex {
8776 text-align: left;
8821 text-align: left;
8777 }
8822 }
8778 /* Empty output_javascript divs should have no height */
8823 /* Empty output_javascript divs should have no height */
8779 div.output_javascript:empty {
8824 div.output_javascript:empty {
8780 padding: 0;
8825 padding: 0;
8781 }
8826 }
8782 .js-error {
8827 .js-error {
8783 color: darkred;
8828 color: darkred;
8784 }
8829 }
8785 /* raw_input styles */
8830 /* raw_input styles */
8786 div.raw_input_container {
8831 div.raw_input_container {
8787 font-family: monospace;
8832 font-family: monospace;
8788 padding-top: 5px;
8833 padding-top: 5px;
8789 }
8834 }
8790 span.raw_input_prompt {
8835 span.raw_input_prompt {
8791 /* nothing needed here */
8836 /* nothing needed here */
8792 }
8837 }
8793 input.raw_input {
8838 input.raw_input {
8794 font-family: inherit;
8839 font-family: inherit;
8795 font-size: inherit;
8840 font-size: inherit;
8796 color: inherit;
8841 color: inherit;
8797 width: auto;
8842 width: auto;
8798 /* make sure input baseline aligns with prompt */
8843 /* make sure input baseline aligns with prompt */
8799 vertical-align: baseline;
8844 vertical-align: baseline;
8800 /* padding + margin = 0.5em between prompt and cursor */
8845 /* padding + margin = 0.5em between prompt and cursor */
8801 padding: 0em 0.25em;
8846 padding: 0em 0.25em;
8802 margin: 0em 0.25em;
8847 margin: 0em 0.25em;
8803 }
8848 }
8804 input.raw_input:focus {
8849 input.raw_input:focus {
8805 box-shadow: none;
8850 box-shadow: none;
8806 }
8851 }
8807 p.p-space {
8852 p.p-space {
8808 margin-bottom: 10px;
8853 margin-bottom: 10px;
8809 }
8854 }
8810 div.output_unrecognized {
8855 div.output_unrecognized {
8811 padding: 5px;
8856 padding: 5px;
8812 font-weight: bold;
8857 font-weight: bold;
8813 color: red;
8858 color: red;
8814 }
8859 }
8815 div.output_unrecognized a {
8860 div.output_unrecognized a {
8816 color: inherit;
8861 color: inherit;
8817 text-decoration: none;
8862 text-decoration: none;
8818 }
8863 }
8819 div.output_unrecognized a:hover {
8864 div.output_unrecognized a:hover {
8820 color: inherit;
8865 color: inherit;
8821 text-decoration: none;
8866 text-decoration: none;
8822 }
8867 }
8823 .rendered_html {
8868 .rendered_html {
8824 color: #000000;
8869 color: #000000;
8825 /* any extras will just be numbers: */
8870 /* any extras will just be numbers: */
8826 }
8871 }
8827 .rendered_html em {
8872 .rendered_html em {
8828 font-style: italic;
8873 font-style: italic;
8829 }
8874 }
8830 .rendered_html strong {
8875 .rendered_html strong {
8831 font-weight: bold;
8876 font-weight: bold;
8832 }
8877 }
8833 .rendered_html u {
8878 .rendered_html u {
8834 text-decoration: underline;
8879 text-decoration: underline;
8835 }
8880 }
8836 .rendered_html :link {
8881 .rendered_html :link {
8837 text-decoration: underline;
8882 text-decoration: underline;
8838 }
8883 }
8839 .rendered_html :visited {
8884 .rendered_html :visited {
8840 text-decoration: underline;
8885 text-decoration: underline;
8841 }
8886 }
8842 .rendered_html h1 {
8887 .rendered_html h1 {
8843 font-size: 185.7%;
8888 font-size: 185.7%;
8844 margin: 1.08em 0 0 0;
8889 margin: 1.08em 0 0 0;
8845 font-weight: bold;
8890 font-weight: bold;
8846 line-height: 1.0;
8891 line-height: 1.0;
8847 }
8892 }
8848 .rendered_html h2 {
8893 .rendered_html h2 {
8849 font-size: 157.1%;
8894 font-size: 157.1%;
8850 margin: 1.27em 0 0 0;
8895 margin: 1.27em 0 0 0;
8851 font-weight: bold;
8896 font-weight: bold;
8852 line-height: 1.0;
8897 line-height: 1.0;
8853 }
8898 }
8854 .rendered_html h3 {
8899 .rendered_html h3 {
8855 font-size: 128.6%;
8900 font-size: 128.6%;
8856 margin: 1.55em 0 0 0;
8901 margin: 1.55em 0 0 0;
8857 font-weight: bold;
8902 font-weight: bold;
8858 line-height: 1.0;
8903 line-height: 1.0;
8859 }
8904 }
8860 .rendered_html h4 {
8905 .rendered_html h4 {
8861 font-size: 100%;
8906 font-size: 100%;
8862 margin: 2em 0 0 0;
8907 margin: 2em 0 0 0;
8863 font-weight: bold;
8908 font-weight: bold;
8864 line-height: 1.0;
8909 line-height: 1.0;
8865 }
8910 }
8866 .rendered_html h5 {
8911 .rendered_html h5 {
8867 font-size: 100%;
8912 font-size: 100%;
8868 margin: 2em 0 0 0;
8913 margin: 2em 0 0 0;
8869 font-weight: bold;
8914 font-weight: bold;
8870 line-height: 1.0;
8915 line-height: 1.0;
8871 font-style: italic;
8916 font-style: italic;
8872 }
8917 }
8873 .rendered_html h6 {
8918 .rendered_html h6 {
8874 font-size: 100%;
8919 font-size: 100%;
8875 margin: 2em 0 0 0;
8920 margin: 2em 0 0 0;
8876 font-weight: bold;
8921 font-weight: bold;
8877 line-height: 1.0;
8922 line-height: 1.0;
8878 font-style: italic;
8923 font-style: italic;
8879 }
8924 }
8880 .rendered_html h1:first-child {
8925 .rendered_html h1:first-child {
8881 margin-top: 0.538em;
8926 margin-top: 0.538em;
8882 }
8927 }
8883 .rendered_html h2:first-child {
8928 .rendered_html h2:first-child {
8884 margin-top: 0.636em;
8929 margin-top: 0.636em;
8885 }
8930 }
8886 .rendered_html h3:first-child {
8931 .rendered_html h3:first-child {
8887 margin-top: 0.777em;
8932 margin-top: 0.777em;
8888 }
8933 }
8889 .rendered_html h4:first-child {
8934 .rendered_html h4:first-child {
8890 margin-top: 1em;
8935 margin-top: 1em;
8891 }
8936 }
8892 .rendered_html h5:first-child {
8937 .rendered_html h5:first-child {
8893 margin-top: 1em;
8938 margin-top: 1em;
8894 }
8939 }
8895 .rendered_html h6:first-child {
8940 .rendered_html h6:first-child {
8896 margin-top: 1em;
8941 margin-top: 1em;
8897 }
8942 }
8898 .rendered_html ul {
8943 .rendered_html ul {
8899 list-style: disc;
8944 list-style: disc;
8900 margin: 0em 2em;
8945 margin: 0em 2em;
8901 padding-left: 0px;
8946 padding-left: 0px;
8902 }
8947 }
8903 .rendered_html ul ul {
8948 .rendered_html ul ul {
8904 list-style: square;
8949 list-style: square;
8905 margin: 0em 2em;
8950 margin: 0em 2em;
8906 }
8951 }
8907 .rendered_html ul ul ul {
8952 .rendered_html ul ul ul {
8908 list-style: circle;
8953 list-style: circle;
8909 margin: 0em 2em;
8954 margin: 0em 2em;
8910 }
8955 }
8911 .rendered_html ol {
8956 .rendered_html ol {
8912 list-style: decimal;
8957 list-style: decimal;
8913 margin: 0em 2em;
8958 margin: 0em 2em;
8914 padding-left: 0px;
8959 padding-left: 0px;
8915 }
8960 }
8916 .rendered_html ol ol {
8961 .rendered_html ol ol {
8917 list-style: upper-alpha;
8962 list-style: upper-alpha;
8918 margin: 0em 2em;
8963 margin: 0em 2em;
8919 }
8964 }
8920 .rendered_html ol ol ol {
8965 .rendered_html ol ol ol {
8921 list-style: lower-alpha;
8966 list-style: lower-alpha;
8922 margin: 0em 2em;
8967 margin: 0em 2em;
8923 }
8968 }
8924 .rendered_html ol ol ol ol {
8969 .rendered_html ol ol ol ol {
8925 list-style: lower-roman;
8970 list-style: lower-roman;
8926 margin: 0em 2em;
8971 margin: 0em 2em;
8927 }
8972 }
8928 .rendered_html ol ol ol ol ol {
8973 .rendered_html ol ol ol ol ol {
8929 list-style: decimal;
8974 list-style: decimal;
8930 margin: 0em 2em;
8975 margin: 0em 2em;
8931 }
8976 }
8932 .rendered_html * + ul {
8977 .rendered_html * + ul {
8933 margin-top: 1em;
8978 margin-top: 1em;
8934 }
8979 }
8935 .rendered_html * + ol {
8980 .rendered_html * + ol {
8936 margin-top: 1em;
8981 margin-top: 1em;
8937 }
8982 }
8938 .rendered_html hr {
8983 .rendered_html hr {
8939 color: black;
8984 color: black;
8940 background-color: black;
8985 background-color: black;
8941 }
8986 }
8942 .rendered_html pre {
8987 .rendered_html pre {
8943 margin: 1em 2em;
8988 margin: 1em 2em;
8944 }
8989 }
8945 .rendered_html pre,
8990 .rendered_html pre,
8946 .rendered_html code {
8991 .rendered_html code {
8947 border: 0;
8992 border: 0;
8948 background-color: #ffffff;
8993 background-color: #ffffff;
8949 color: #000000;
8994 color: #000000;
8950 font-size: 100%;
8995 font-size: 100%;
8951 padding: 0px;
8996 padding: 0px;
8952 }
8997 }
8953 .rendered_html blockquote {
8998 .rendered_html blockquote {
8954 margin: 1em 2em;
8999 margin: 1em 2em;
8955 }
9000 }
8956 .rendered_html table {
9001 .rendered_html table {
8957 margin-left: auto;
9002 margin-left: auto;
8958 margin-right: auto;
9003 margin-right: auto;
8959 border: 1px solid black;
9004 border: 1px solid black;
8960 border-collapse: collapse;
9005 border-collapse: collapse;
8961 }
9006 }
8962 .rendered_html tr,
9007 .rendered_html tr,
8963 .rendered_html th,
9008 .rendered_html th,
8964 .rendered_html td {
9009 .rendered_html td {
8965 border: 1px solid black;
9010 border: 1px solid black;
8966 border-collapse: collapse;
9011 border-collapse: collapse;
8967 margin: 1em 2em;
9012 margin: 1em 2em;
8968 }
9013 }
8969 .rendered_html td,
9014 .rendered_html td,
8970 .rendered_html th {
9015 .rendered_html th {
8971 text-align: left;
9016 text-align: left;
8972 vertical-align: middle;
9017 vertical-align: middle;
8973 padding: 4px;
9018 padding: 4px;
8974 }
9019 }
8975 .rendered_html th {
9020 .rendered_html th {
8976 font-weight: bold;
9021 font-weight: bold;
8977 }
9022 }
8978 .rendered_html * + table {
9023 .rendered_html * + table {
8979 margin-top: 1em;
9024 margin-top: 1em;
8980 }
9025 }
8981 .rendered_html p {
9026 .rendered_html p {
8982 text-align: justify;
9027 text-align: justify;
8983 }
9028 }
8984 .rendered_html * + p {
9029 .rendered_html * + p {
8985 margin-top: 1em;
9030 margin-top: 1em;
8986 }
9031 }
8987 .rendered_html img {
9032 .rendered_html img {
8988 display: block;
9033 display: block;
8989 margin-left: auto;
9034 margin-left: auto;
8990 margin-right: auto;
9035 margin-right: auto;
8991 }
9036 }
8992 .rendered_html * + img {
9037 .rendered_html * + img {
8993 margin-top: 1em;
9038 margin-top: 1em;
8994 }
9039 }
8995 div.text_cell {
9040 div.text_cell {
8996 padding: 5px 5px 5px 0px;
9041 padding: 5px 5px 5px 0px;
8997 /* Old browsers */
9042 /* Old browsers */
8998 display: -webkit-box;
9043 display: -webkit-box;
8999 -webkit-box-orient: horizontal;
9044 -webkit-box-orient: horizontal;
9000 -webkit-box-align: stretch;
9045 -webkit-box-align: stretch;
9001 display: -moz-box;
9046 display: -moz-box;
9002 -moz-box-orient: horizontal;
9047 -moz-box-orient: horizontal;
9003 -moz-box-align: stretch;
9048 -moz-box-align: stretch;
9004 display: box;
9049 display: box;
9005 box-orient: horizontal;
9050 box-orient: horizontal;
9006 box-align: stretch;
9051 box-align: stretch;
9007 /* Modern browsers */
9052 /* Modern browsers */
9008 display: flex;
9053 display: flex;
9009 flex-direction: row;
9054 flex-direction: row;
9010 align-items: stretch;
9055 align-items: stretch;
9011 }
9056 }
9012 @media (max-width: 480px) {
9057 @media (max-width: 480px) {
9013 div.text_cell > div.prompt {
9058 div.text_cell > div.prompt {
9014 display: none;
9059 display: none;
9015 }
9060 }
9016 }
9061 }
9017 div.text_cell_render {
9062 div.text_cell_render {
9018 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
9063 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
9019 outline: none;
9064 outline: none;
9020 resize: none;
9065 resize: none;
9021 width: inherit;
9066 width: inherit;
9022 border-style: none;
9067 border-style: none;
9023 padding: 0.5em 0.5em 0.5em 0.4em;
9068 padding: 0.5em 0.5em 0.5em 0.4em;
9024 color: #000000;
9069 color: #000000;
9025 box-sizing: border-box;
9070 box-sizing: border-box;
9026 -moz-box-sizing: border-box;
9071 -moz-box-sizing: border-box;
9027 -webkit-box-sizing: border-box;
9072 -webkit-box-sizing: border-box;
9028 }
9073 }
9029 a.anchor-link:link {
9074 a.anchor-link:link {
9030 text-decoration: none;
9075 text-decoration: none;
9031 padding: 0px 20px;
9076 padding: 0px 20px;
9032 visibility: hidden;
9077 visibility: hidden;
9033 }
9078 }
9034 h1:hover .anchor-link,
9079 h1:hover .anchor-link,
9035 h2:hover .anchor-link,
9080 h2:hover .anchor-link,
9036 h3:hover .anchor-link,
9081 h3:hover .anchor-link,
9037 h4:hover .anchor-link,
9082 h4:hover .anchor-link,
9038 h5:hover .anchor-link,
9083 h5:hover .anchor-link,
9039 h6:hover .anchor-link {
9084 h6:hover .anchor-link {
9040 visibility: visible;
9085 visibility: visible;
9041 }
9086 }
9042 .text_cell.rendered .input_area {
9087 .text_cell.rendered .input_area {
9043 display: none;
9088 display: none;
9044 }
9089 }
9045 .text_cell.unrendered .text_cell_render {
9090 .text_cell.unrendered .text_cell_render {
9046 display: none;
9091 display: none;
9047 }
9092 }
9048 .cm-header-1,
9093 .cm-header-1,
9049 .cm-header-2,
9094 .cm-header-2,
9050 .cm-header-3,
9095 .cm-header-3,
9051 .cm-header-4,
9096 .cm-header-4,
9052 .cm-header-5,
9097 .cm-header-5,
9053 .cm-header-6 {
9098 .cm-header-6 {
9054 font-weight: bold;
9099 font-weight: bold;
9055 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
9100 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
9056 }
9101 }
9057 .cm-header-1 {
9102 .cm-header-1 {
9058 font-size: 185.7%;
9103 font-size: 185.7%;
9059 }
9104 }
9060 .cm-header-2 {
9105 .cm-header-2 {
9061 font-size: 157.1%;
9106 font-size: 157.1%;
9062 }
9107 }
9063 .cm-header-3 {
9108 .cm-header-3 {
9064 font-size: 128.6%;
9109 font-size: 128.6%;
9065 }
9110 }
9066 .cm-header-4 {
9111 .cm-header-4 {
9067 font-size: 110%;
9112 font-size: 110%;
9068 }
9113 }
9069 .cm-header-5 {
9114 .cm-header-5 {
9070 font-size: 100%;
9115 font-size: 100%;
9071 font-style: italic;
9116 font-style: italic;
9072 }
9117 }
9073 .cm-header-6 {
9118 .cm-header-6 {
9074 font-size: 100%;
9119 font-size: 100%;
9075 font-style: italic;
9120 font-style: italic;
9076 }
9121 }
9077 .widget-area {
9122 .widget-area {
9078 /*
9123 /*
9079 LESS file that styles IPython notebook widgets and the area they sit in.
9124 LESS file that styles IPython notebook widgets and the area they sit in.
9080
9125
9081 The widget area typically looks something like this:
9126 The widget area typically looks something like this:
9082 +------------------------------------------+
9127 +------------------------------------------+
9083 | widget-area |
9128 | widget-area |
9084 | +--------+---------------------------+ |
9129 | +--------+---------------------------+ |
9085 | | prompt | widget-subarea | |
9130 | | prompt | widget-subarea | |
9086 | | | +--------+ +--------+ | |
9131 | | | +--------+ +--------+ | |
9087 | | | | widget | | widget | | |
9132 | | | | widget | | widget | | |
9088 | | | +--------+ +--------+ | |
9133 | | | +--------+ +--------+ | |
9089 | +--------+---------------------------+ |
9134 | +--------+---------------------------+ |
9090 +------------------------------------------+
9135 +------------------------------------------+
9091 */
9136 */
9092 page-break-inside: avoid;
9137 page-break-inside: avoid;
9093 /* Old browsers */
9138 /* Old browsers */
9094 display: -webkit-box;
9139 display: -webkit-box;
9095 -webkit-box-orient: horizontal;
9140 -webkit-box-orient: horizontal;
9096 -webkit-box-align: stretch;
9141 -webkit-box-align: stretch;
9097 display: -moz-box;
9142 display: -moz-box;
9098 -moz-box-orient: horizontal;
9143 -moz-box-orient: horizontal;
9099 -moz-box-align: stretch;
9144 -moz-box-align: stretch;
9100 display: box;
9145 display: box;
9101 box-orient: horizontal;
9146 box-orient: horizontal;
9102 box-align: stretch;
9147 box-align: stretch;
9103 /* Modern browsers */
9148 /* Modern browsers */
9104 display: flex;
9149 display: flex;
9105 flex-direction: row;
9150 flex-direction: row;
9106 align-items: stretch;
9151 align-items: stretch;
9107 }
9152 }
9108 .widget-area .widget-subarea {
9153 .widget-area .widget-subarea {
9109 padding: 0.44em 0.4em 0.4em 1px;
9154 padding: 0.44em 0.4em 0.4em 1px;
9110 margin-left: 6px;
9155 margin-left: 6px;
9111 box-sizing: border-box;
9156 box-sizing: border-box;
9112 -moz-box-sizing: border-box;
9157 -moz-box-sizing: border-box;
9113 -webkit-box-sizing: border-box;
9158 -webkit-box-sizing: border-box;
9114 /* Old browsers */
9159 /* Old browsers */
9115 display: -webkit-box;
9160 display: -webkit-box;
9116 -webkit-box-orient: vertical;
9161 -webkit-box-orient: vertical;
9117 -webkit-box-align: stretch;
9162 -webkit-box-align: stretch;
9118 display: -moz-box;
9163 display: -moz-box;
9119 -moz-box-orient: vertical;
9164 -moz-box-orient: vertical;
9120 -moz-box-align: stretch;
9165 -moz-box-align: stretch;
9121 display: box;
9166 display: box;
9122 box-orient: vertical;
9167 box-orient: vertical;
9123 box-align: stretch;
9168 box-align: stretch;
9124 /* Modern browsers */
9169 /* Modern browsers */
9125 display: flex;
9170 display: flex;
9126 flex-direction: column;
9171 flex-direction: column;
9127 align-items: stretch;
9172 align-items: stretch;
9128 /* Old browsers */
9173 /* Old browsers */
9129 -webkit-box-flex: 2;
9174 -webkit-box-flex: 2;
9130 -moz-box-flex: 2;
9175 -moz-box-flex: 2;
9131 box-flex: 2;
9176 box-flex: 2;
9132 /* Modern browsers */
9177 /* Modern browsers */
9133 flex: 2;
9178 flex: 2;
9134 /* Old browsers */
9179 /* Old browsers */
9135 -webkit-box-align: start;
9180 -webkit-box-align: start;
9136 -moz-box-align: start;
9181 -moz-box-align: start;
9137 box-align: start;
9182 box-align: start;
9138 /* Modern browsers */
9183 /* Modern browsers */
9139 align-items: flex-start;
9184 align-items: flex-start;
9140 }
9185 }
9141 .widget-area.connection-problems .prompt:after {
9186 .widget-area.connection-problems .prompt:after {
9142 content: "\f127";
9187 content: "\f127";
9143 font-family: 'FontAwesome';
9188 font-family: 'FontAwesome';
9144 color: #d9534f;
9189 color: #d9534f;
9145 font-size: 14px;
9190 font-size: 14px;
9146 top: 3px;
9191 top: 3px;
9147 padding: 3px;
9192 padding: 3px;
9148 }
9193 }
9149 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
9194 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
9150 THE WIDGET AREA). */
9195 THE WIDGET AREA). */
9151 .slide-track {
9196 .slide-track {
9152 /* Slider Track */
9197 /* Slider Track */
9153 border: 1px solid #CCCCCC;
9198 border: 1px solid #CCCCCC;
9154 background: #FFFFFF;
9199 background: #FFFFFF;
9155 border-radius: 4px;
9200 border-radius: 2px;
9156 /* Round the corners of the slide track */
9201 /* Round the corners of the slide track */
9157 }
9202 }
9158 .widget-hslider {
9203 .widget-hslider {
9159 /* Horizontal jQuery Slider
9204 /* Horizontal jQuery Slider
9160
9205
9161 Both the horizontal and vertical versions of the slider are characterized
9206 Both the horizontal and vertical versions of the slider are characterized
9162 by a styled div that contains an invisible jQuery slide div which
9207 by a styled div that contains an invisible jQuery slide div which
9163 contains a visible slider handle div. This is requred so we can control
9208 contains a visible slider handle div. This is requred so we can control
9164 how the slider is drawn and 'fix' the issue where the slide handle
9209 how the slider is drawn and 'fix' the issue where the slide handle
9165 doesn't stop at the end of the slide.
9210 doesn't stop at the end of the slide.
9166
9211
9167 Both horizontal and vertical sliders have this div nesting:
9212 Both horizontal and vertical sliders have this div nesting:
9168 +------------------------------------------+
9213 +------------------------------------------+
9169 | widget-(h/v)slider |
9214 | widget-(h/v)slider |
9170 | +--------+---------------------------+ |
9215 | +--------+---------------------------+ |
9171 | | ui-slider | |
9216 | | ui-slider | |
9172 | | +------------------+ | |
9217 | | +------------------+ | |
9173 | | | ui-slider-handle | | |
9218 | | | ui-slider-handle | | |
9174 | | +------------------+ | |
9219 | | +------------------+ | |
9175 | +--------+---------------------------+ |
9220 | +--------+---------------------------+ |
9176 +------------------------------------------+
9221 +------------------------------------------+
9177 */
9222 */
9178 /* Fix the padding of the slide track so the ui-slider is sized
9223 /* Fix the padding of the slide track so the ui-slider is sized
9179 correctly. */
9224 correctly. */
9180 padding-left: 8px;
9225 padding-left: 8px;
9181 padding-right: 5px;
9226 padding-right: 5px;
9182 overflow: visible;
9227 overflow: visible;
9183 /* Default size of the slider */
9228 /* Default size of the slider */
9184 width: 350px;
9229 width: 350px;
9185 height: 5px;
9230 height: 5px;
9186 max-height: 5px;
9231 max-height: 5px;
9187 margin-top: 13px;
9232 margin-top: 13px;
9188 margin-bottom: 10px;
9233 margin-bottom: 10px;
9189 /* Style the slider track */
9234 /* Style the slider track */
9190 /* Slider Track */
9235 /* Slider Track */
9191 border: 1px solid #CCCCCC;
9236 border: 1px solid #CCCCCC;
9192 background: #FFFFFF;
9237 background: #FFFFFF;
9193 border-radius: 4px;
9238 border-radius: 2px;
9194 /* Round the corners of the slide track */
9239 /* Round the corners of the slide track */
9195 /* Make the div a flex box (makes FF behave correctly). */
9240 /* Make the div a flex box (makes FF behave correctly). */
9196 /* Old browsers */
9241 /* Old browsers */
9197 display: -webkit-box;
9242 display: -webkit-box;
9198 -webkit-box-orient: horizontal;
9243 -webkit-box-orient: horizontal;
9199 -webkit-box-align: stretch;
9244 -webkit-box-align: stretch;
9200 display: -moz-box;
9245 display: -moz-box;
9201 -moz-box-orient: horizontal;
9246 -moz-box-orient: horizontal;
9202 -moz-box-align: stretch;
9247 -moz-box-align: stretch;
9203 display: box;
9248 display: box;
9204 box-orient: horizontal;
9249 box-orient: horizontal;
9205 box-align: stretch;
9250 box-align: stretch;
9206 /* Modern browsers */
9251 /* Modern browsers */
9207 display: flex;
9252 display: flex;
9208 flex-direction: row;
9253 flex-direction: row;
9209 align-items: stretch;
9254 align-items: stretch;
9210 }
9255 }
9211 .widget-hslider .ui-slider {
9256 .widget-hslider .ui-slider {
9212 /* Inner, invisible slide div */
9257 /* Inner, invisible slide div */
9213 border: 0px !important;
9258 border: 0px !important;
9214 background: none !important;
9259 background: none !important;
9215 /* Old browsers */
9260 /* Old browsers */
9216 display: -webkit-box;
9261 display: -webkit-box;
9217 -webkit-box-orient: horizontal;
9262 -webkit-box-orient: horizontal;
9218 -webkit-box-align: stretch;
9263 -webkit-box-align: stretch;
9219 display: -moz-box;
9264 display: -moz-box;
9220 -moz-box-orient: horizontal;
9265 -moz-box-orient: horizontal;
9221 -moz-box-align: stretch;
9266 -moz-box-align: stretch;
9222 display: box;
9267 display: box;
9223 box-orient: horizontal;
9268 box-orient: horizontal;
9224 box-align: stretch;
9269 box-align: stretch;
9225 /* Modern browsers */
9270 /* Modern browsers */
9226 display: flex;
9271 display: flex;
9227 flex-direction: row;
9272 flex-direction: row;
9228 align-items: stretch;
9273 align-items: stretch;
9229 /* Old browsers */
9274 /* Old browsers */
9230 -webkit-box-flex: 1;
9275 -webkit-box-flex: 1;
9231 -moz-box-flex: 1;
9276 -moz-box-flex: 1;
9232 box-flex: 1;
9277 box-flex: 1;
9233 /* Modern browsers */
9278 /* Modern browsers */
9234 flex: 1;
9279 flex: 1;
9235 }
9280 }
9236 .widget-hslider .ui-slider .ui-slider-handle {
9281 .widget-hslider .ui-slider .ui-slider-handle {
9237 width: 14px !important;
9282 width: 14px !important;
9238 height: 28px !important;
9283 height: 28px !important;
9239 margin-top: -8px !important;
9284 margin-top: -8px !important;
9240 }
9285 }
9241 .widget-hslider .ui-slider .ui-slider-range {
9286 .widget-hslider .ui-slider .ui-slider-range {
9242 height: 12px !important;
9287 height: 12px !important;
9243 margin-top: -4px !important;
9288 margin-top: -4px !important;
9244 }
9289 }
9245 .widget-vslider {
9290 .widget-vslider {
9246 /* Vertical jQuery Slider */
9291 /* Vertical jQuery Slider */
9247 /* Fix the padding of the slide track so the ui-slider is sized
9292 /* Fix the padding of the slide track so the ui-slider is sized
9248 correctly. */
9293 correctly. */
9249 padding-bottom: 8px;
9294 padding-bottom: 8px;
9250 overflow: visible;
9295 overflow: visible;
9251 /* Default size of the slider */
9296 /* Default size of the slider */
9252 width: 5px;
9297 width: 5px;
9253 max-width: 5px;
9298 max-width: 5px;
9254 height: 250px;
9299 height: 250px;
9255 margin-left: 12px;
9300 margin-left: 12px;
9256 /* Style the slider track */
9301 /* Style the slider track */
9257 /* Slider Track */
9302 /* Slider Track */
9258 border: 1px solid #CCCCCC;
9303 border: 1px solid #CCCCCC;
9259 background: #FFFFFF;
9304 background: #FFFFFF;
9260 border-radius: 4px;
9305 border-radius: 2px;
9261 /* Round the corners of the slide track */
9306 /* Round the corners of the slide track */
9262 /* Make the div a flex box (makes FF behave correctly). */
9307 /* Make the div a flex box (makes FF behave correctly). */
9263 /* Old browsers */
9308 /* Old browsers */
9264 display: -webkit-box;
9309 display: -webkit-box;
9265 -webkit-box-orient: vertical;
9310 -webkit-box-orient: vertical;
9266 -webkit-box-align: stretch;
9311 -webkit-box-align: stretch;
9267 display: -moz-box;
9312 display: -moz-box;
9268 -moz-box-orient: vertical;
9313 -moz-box-orient: vertical;
9269 -moz-box-align: stretch;
9314 -moz-box-align: stretch;
9270 display: box;
9315 display: box;
9271 box-orient: vertical;
9316 box-orient: vertical;
9272 box-align: stretch;
9317 box-align: stretch;
9273 /* Modern browsers */
9318 /* Modern browsers */
9274 display: flex;
9319 display: flex;
9275 flex-direction: column;
9320 flex-direction: column;
9276 align-items: stretch;
9321 align-items: stretch;
9277 }
9322 }
9278 .widget-vslider .ui-slider {
9323 .widget-vslider .ui-slider {
9279 /* Inner, invisible slide div */
9324 /* Inner, invisible slide div */
9280 border: 0px !important;
9325 border: 0px !important;
9281 background: none !important;
9326 background: none !important;
9282 margin-left: -4px;
9327 margin-left: -4px;
9283 margin-top: 5px;
9328 margin-top: 5px;
9284 /* Old browsers */
9329 /* Old browsers */
9285 display: -webkit-box;
9330 display: -webkit-box;
9286 -webkit-box-orient: vertical;
9331 -webkit-box-orient: vertical;
9287 -webkit-box-align: stretch;
9332 -webkit-box-align: stretch;
9288 display: -moz-box;
9333 display: -moz-box;
9289 -moz-box-orient: vertical;
9334 -moz-box-orient: vertical;
9290 -moz-box-align: stretch;
9335 -moz-box-align: stretch;
9291 display: box;
9336 display: box;
9292 box-orient: vertical;
9337 box-orient: vertical;
9293 box-align: stretch;
9338 box-align: stretch;
9294 /* Modern browsers */
9339 /* Modern browsers */
9295 display: flex;
9340 display: flex;
9296 flex-direction: column;
9341 flex-direction: column;
9297 align-items: stretch;
9342 align-items: stretch;
9298 /* Old browsers */
9343 /* Old browsers */
9299 -webkit-box-flex: 1;
9344 -webkit-box-flex: 1;
9300 -moz-box-flex: 1;
9345 -moz-box-flex: 1;
9301 box-flex: 1;
9346 box-flex: 1;
9302 /* Modern browsers */
9347 /* Modern browsers */
9303 flex: 1;
9348 flex: 1;
9304 }
9349 }
9305 .widget-vslider .ui-slider .ui-slider-handle {
9350 .widget-vslider .ui-slider .ui-slider-handle {
9306 width: 28px !important;
9351 width: 28px !important;
9307 height: 14px !important;
9352 height: 14px !important;
9308 margin-left: -9px;
9353 margin-left: -9px;
9309 }
9354 }
9310 .widget-vslider .ui-slider .ui-slider-range {
9355 .widget-vslider .ui-slider .ui-slider-range {
9311 width: 12px !important;
9356 width: 12px !important;
9312 margin-left: -1px !important;
9357 margin-left: -1px !important;
9313 }
9358 }
9314 .widget-text {
9359 .widget-text {
9315 /* String Textbox - used for TextBoxView and TextAreaView */
9360 /* String Textbox - used for TextBoxView and TextAreaView */
9316 width: 350px;
9361 width: 350px;
9317 margin: 0px;
9362 margin: 0px;
9318 }
9363 }
9319 .widget-listbox {
9364 .widget-listbox {
9320 /* Listbox */
9365 /* Listbox */
9321 width: 350px;
9366 width: 350px;
9322 margin-bottom: 0px;
9367 margin-bottom: 0px;
9323 }
9368 }
9324 .widget-numeric-text {
9369 .widget-numeric-text {
9325 /* Single Line Textbox - used for IntTextView and FloatTextView */
9370 /* Single Line Textbox - used for IntTextView and FloatTextView */
9326 width: 150px;
9371 width: 150px;
9327 margin: 0px;
9372 margin: 0px;
9328 }
9373 }
9329 .widget-progress {
9374 .widget-progress {
9330 /* Progress Bar */
9375 /* Progress Bar */
9331 margin-top: 6px;
9376 margin-top: 6px;
9332 width: 350px;
9377 width: 350px;
9333 }
9378 }
9334 .widget-progress .progress-bar {
9379 .widget-progress .progress-bar {
9335 /* Disable progress bar animation */
9380 /* Disable progress bar animation */
9336 -webkit-transition: none;
9381 -webkit-transition: none;
9337 -moz-transition: none;
9382 -moz-transition: none;
9338 -ms-transition: none;
9383 -ms-transition: none;
9339 -o-transition: none;
9384 -o-transition: none;
9340 transition: none;
9385 transition: none;
9341 }
9386 }
9342 .widget-combo-btn {
9387 .widget-combo-btn {
9343 /* ComboBox Main Button */
9388 /* ComboBox Main Button */
9344 min-width: 125px;
9389 min-width: 125px;
9345 }
9390 }
9346 .widget_item .dropdown-menu li a {
9391 .widget_item .dropdown-menu li a {
9347 color: inherit;
9392 color: inherit;
9348 }
9393 }
9349 .widget-hbox {
9394 .widget-hbox {
9350 /* Horizontal widgets */
9395 /* Horizontal widgets */
9351 /* Old browsers */
9396 /* Old browsers */
9352 display: -webkit-box;
9397 display: -webkit-box;
9353 -webkit-box-orient: horizontal;
9398 -webkit-box-orient: horizontal;
9354 -webkit-box-align: stretch;
9399 -webkit-box-align: stretch;
9355 display: -moz-box;
9400 display: -moz-box;
9356 -moz-box-orient: horizontal;
9401 -moz-box-orient: horizontal;
9357 -moz-box-align: stretch;
9402 -moz-box-align: stretch;
9358 display: box;
9403 display: box;
9359 box-orient: horizontal;
9404 box-orient: horizontal;
9360 box-align: stretch;
9405 box-align: stretch;
9361 /* Modern browsers */
9406 /* Modern browsers */
9362 display: flex;
9407 display: flex;
9363 flex-direction: row;
9408 flex-direction: row;
9364 align-items: stretch;
9409 align-items: stretch;
9365 }
9410 }
9366 .widget-hbox input[type="checkbox"] {
9411 .widget-hbox input[type="checkbox"] {
9367 margin-top: 9px;
9412 margin-top: 9px;
9368 margin-bottom: 10px;
9413 margin-bottom: 10px;
9369 }
9414 }
9370 .widget-hbox .widget-label {
9415 .widget-hbox .widget-label {
9371 /* Horizontal Label */
9416 /* Horizontal Label */
9372 min-width: 10ex;
9417 min-width: 10ex;
9373 padding-right: 8px;
9418 padding-right: 8px;
9374 padding-top: 5px;
9419 padding-top: 5px;
9375 text-align: right;
9420 text-align: right;
9376 vertical-align: text-top;
9421 vertical-align: text-top;
9377 }
9422 }
9378 .widget-hbox .widget-readout {
9423 .widget-hbox .widget-readout {
9379 padding-left: 8px;
9424 padding-left: 8px;
9380 padding-top: 5px;
9425 padding-top: 5px;
9381 text-align: left;
9426 text-align: left;
9382 vertical-align: text-top;
9427 vertical-align: text-top;
9383 }
9428 }
9384 .widget-vbox {
9429 .widget-vbox {
9385 /* Vertical widgets */
9430 /* Vertical widgets */
9386 /* Old browsers */
9431 /* Old browsers */
9387 display: -webkit-box;
9432 display: -webkit-box;
9388 -webkit-box-orient: vertical;
9433 -webkit-box-orient: vertical;
9389 -webkit-box-align: stretch;
9434 -webkit-box-align: stretch;
9390 display: -moz-box;
9435 display: -moz-box;
9391 -moz-box-orient: vertical;
9436 -moz-box-orient: vertical;
9392 -moz-box-align: stretch;
9437 -moz-box-align: stretch;
9393 display: box;
9438 display: box;
9394 box-orient: vertical;
9439 box-orient: vertical;
9395 box-align: stretch;
9440 box-align: stretch;
9396 /* Modern browsers */
9441 /* Modern browsers */
9397 display: flex;
9442 display: flex;
9398 flex-direction: column;
9443 flex-direction: column;
9399 align-items: stretch;
9444 align-items: stretch;
9400 }
9445 }
9401 .widget-vbox .widget-label {
9446 .widget-vbox .widget-label {
9402 /* Vertical Label */
9447 /* Vertical Label */
9403 padding-bottom: 5px;
9448 padding-bottom: 5px;
9404 text-align: center;
9449 text-align: center;
9405 vertical-align: text-bottom;
9450 vertical-align: text-bottom;
9406 }
9451 }
9407 .widget-vbox .widget-readout {
9452 .widget-vbox .widget-readout {
9408 /* Vertical Label */
9453 /* Vertical Label */
9409 padding-top: 5px;
9454 padding-top: 5px;
9410 text-align: center;
9455 text-align: center;
9411 vertical-align: text-top;
9456 vertical-align: text-top;
9412 }
9457 }
9413 .widget-modal {
9458 .widget-modal {
9414 /* Box - ModalView */
9459 /* Box - ModalView */
9415 overflow: hidden;
9460 overflow: hidden;
9416 position: absolute !important;
9461 position: absolute !important;
9417 top: 0px;
9462 top: 0px;
9418 left: 0px;
9463 left: 0px;
9419 margin-left: 0px !important;
9464 margin-left: 0px !important;
9420 }
9465 }
9421 .widget-modal-body {
9466 .widget-modal-body {
9422 /* Box - ModalView Body */
9467 /* Box - ModalView Body */
9423 max-height: none !important;
9468 max-height: none !important;
9424 }
9469 }
9425 .widget-box {
9470 .widget-box {
9426 /* Box */
9471 /* Box */
9427 box-sizing: border-box;
9472 box-sizing: border-box;
9428 -moz-box-sizing: border-box;
9473 -moz-box-sizing: border-box;
9429 -webkit-box-sizing: border-box;
9474 -webkit-box-sizing: border-box;
9430 /* Old browsers */
9475 /* Old browsers */
9431 -webkit-box-align: start;
9476 -webkit-box-align: start;
9432 -moz-box-align: start;
9477 -moz-box-align: start;
9433 box-align: start;
9478 box-align: start;
9434 /* Modern browsers */
9479 /* Modern browsers */
9435 align-items: flex-start;
9480 align-items: flex-start;
9436 }
9481 }
9437 .widget-radio-box {
9482 .widget-radio-box {
9438 /* Contains RadioButtonsWidget */
9483 /* Contains RadioButtonsWidget */
9439 /* Old browsers */
9484 /* Old browsers */
9440 display: -webkit-box;
9485 display: -webkit-box;
9441 -webkit-box-orient: vertical;
9486 -webkit-box-orient: vertical;
9442 -webkit-box-align: stretch;
9487 -webkit-box-align: stretch;
9443 display: -moz-box;
9488 display: -moz-box;
9444 -moz-box-orient: vertical;
9489 -moz-box-orient: vertical;
9445 -moz-box-align: stretch;
9490 -moz-box-align: stretch;
9446 display: box;
9491 display: box;
9447 box-orient: vertical;
9492 box-orient: vertical;
9448 box-align: stretch;
9493 box-align: stretch;
9449 /* Modern browsers */
9494 /* Modern browsers */
9450 display: flex;
9495 display: flex;
9451 flex-direction: column;
9496 flex-direction: column;
9452 align-items: stretch;
9497 align-items: stretch;
9453 box-sizing: border-box;
9498 box-sizing: border-box;
9454 -moz-box-sizing: border-box;
9499 -moz-box-sizing: border-box;
9455 -webkit-box-sizing: border-box;
9500 -webkit-box-sizing: border-box;
9456 padding-top: 4px;
9501 padding-top: 4px;
9457 }
9502 }
9458 .widget-radio-box label {
9503 .widget-radio-box label {
9459 margin-top: 0px;
9504 margin-top: 0px;
9460 }
9505 }
9461 .docked-widget-modal {
9506 .docked-widget-modal {
9462 /* Horizontal Label */
9507 /* Horizontal Label */
9463 overflow: hidden;
9508 overflow: hidden;
9464 position: relative !important;
9509 position: relative !important;
9465 top: 0px !important;
9510 top: 0px !important;
9466 left: 0px !important;
9511 left: 0px !important;
9467 margin-left: 0px !important;
9512 margin-left: 0px !important;
9468 }
9513 }
9469 /*!
9514 /*!
9470 *
9515 *
9471 * IPython notebook webapp
9516 * IPython notebook webapp
9472 *
9517 *
9473 */
9518 */
9474 body {
9475 background-color: #ffffff;
9476 }
9477 @media (max-width: 767px) {
9519 @media (max-width: 767px) {
9478 body.notebook_app {
9520 body.notebook_app {
9479 padding-left: 0px;
9521 padding-left: 0px;
9480 padding-right: 0px;
9522 padding-right: 0px;
9481 }
9523 }
9482 }
9524 }
9483 #ipython-main-app {
9525 #ipython-main-app {
9484 box-sizing: border-box;
9526 box-sizing: border-box;
9485 -moz-box-sizing: border-box;
9527 -moz-box-sizing: border-box;
9486 -webkit-box-sizing: border-box;
9528 -webkit-box-sizing: border-box;
9487 }
9529 }
9488 div#notebook_panel {
9530 div#notebook_panel {
9489 margin: 0px 0px 0px 0px;
9531 margin: 0px;
9490 padding: 0px;
9532 padding: 0px;
9491 box-sizing: border-box;
9533 box-sizing: border-box;
9492 -moz-box-sizing: border-box;
9534 -moz-box-sizing: border-box;
9493 -webkit-box-sizing: border-box;
9535 -webkit-box-sizing: border-box;
9494 }
9536 }
9537 @media not print {
9538 div#notebook_panel {
9539 background-color: #eeeeee;
9540 min-height: 100vh;
9541 }
9542 }
9495 div#notebook {
9543 div#notebook {
9496 font-size: 14px;
9544 font-size: 14px;
9497 line-height: 20px;
9545 line-height: 20px;
9498 overflow-y: hidden;
9546 overflow-y: hidden;
9499 overflow-x: auto;
9547 overflow-x: auto;
9500 width: 100%;
9548 width: 100%;
9501 /* This spaces the cell away from the edge of the notebook area */
9549 /* This spaces the page away from the edge of the notebook area */
9502 padding: 2em 0 2em 0;
9550 padding-top: 20px;
9551 padding-bottom: 20px;
9503 margin: 0px;
9552 margin: 0px;
9504 outline: none;
9553 outline: none;
9505 box-sizing: border-box;
9554 box-sizing: border-box;
9506 -moz-box-sizing: border-box;
9555 -moz-box-sizing: border-box;
9507 -webkit-box-sizing: border-box;
9556 -webkit-box-sizing: border-box;
9508 }
9557 }
9558 @media not print {
9559 #notebook-container {
9560 padding: 15px;
9561 background-color: #ffffff;
9562 min-height: 70vh;
9563 -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
9564 box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
9565 }
9566 }
9509 div.ui-widget-content {
9567 div.ui-widget-content {
9510 border: 1px solid #ababab;
9568 border: 1px solid #ababab;
9511 outline: none;
9569 outline: none;
9512 }
9570 }
9513 pre.dialog {
9571 pre.dialog {
9514 background-color: #f7f7f7;
9572 background-color: #f7f7f7;
9515 border: 1px solid #ddd;
9573 border: 1px solid #ddd;
9516 border-radius: 4px;
9574 border-radius: 2px;
9517 padding: 0.4em;
9575 padding: 0.4em;
9518 padding-left: 2em;
9576 padding-left: 2em;
9519 }
9577 }
9520 p.dialog {
9578 p.dialog {
9521 padding: 0.2em;
9579 padding: 0.2em;
9522 }
9580 }
9523 /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
9581 /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
9524 to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
9582 to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
9525 */
9583 */
9526 pre,
9584 pre,
9527 code,
9585 code,
9528 kbd,
9586 kbd,
9529 samp {
9587 samp {
9530 white-space: pre-wrap;
9588 white-space: pre-wrap;
9531 }
9589 }
9532 #fonttest {
9590 #fonttest {
9533 font-family: monospace;
9591 font-family: monospace;
9534 }
9592 }
9535 p {
9593 p {
9536 margin-bottom: 0;
9594 margin-bottom: 0;
9537 }
9595 }
9538 .end_space {
9596 .end_space {
9539 height: 200px;
9597 height: 200px;
9540 }
9598 }
9541 .lower-header-bar {
9599 .lower-header-bar {
9542 width: 100%;
9600 width: 100%;
9543 height: 0px;
9601 height: 0px;
9544 border-bottom: 1px solid #e7e7e7;
9602 border-bottom: 1px solid #e7e7e7;
9545 margin-bottom: -1px;
9603 margin-bottom: -1px;
9546 }
9604 }
9547 .notebook_app #header {
9605 .notebook_app #header {
9548 -webkit-box-shadow: 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9606 -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
9549 box-shadow: 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9607 box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
9550 }
9608 }
9551 /* CSS for the cell toolbar */
9609 /* CSS for the cell toolbar */
9552 .celltoolbar {
9610 .celltoolbar {
9553 border: thin solid #CFCFCF;
9611 border: thin solid #CFCFCF;
9554 border-bottom: none;
9612 border-bottom: none;
9555 background: #EEE;
9613 background: #EEE;
9556 border-radius: 4px 4px 0px 0px;
9614 border-radius: 2px 2px 0px 0px;
9557 width: 100%;
9615 width: 100%;
9558 height: 29px;
9616 height: 29px;
9559 padding-right: 4px;
9617 padding-right: 4px;
9560 /* Old browsers */
9618 /* Old browsers */
9561 display: -webkit-box;
9619 display: -webkit-box;
9562 -webkit-box-orient: horizontal;
9620 -webkit-box-orient: horizontal;
9563 -webkit-box-align: stretch;
9621 -webkit-box-align: stretch;
9564 display: -moz-box;
9622 display: -moz-box;
9565 -moz-box-orient: horizontal;
9623 -moz-box-orient: horizontal;
9566 -moz-box-align: stretch;
9624 -moz-box-align: stretch;
9567 display: box;
9625 display: box;
9568 box-orient: horizontal;
9626 box-orient: horizontal;
9569 box-align: stretch;
9627 box-align: stretch;
9570 /* Modern browsers */
9628 /* Modern browsers */
9571 display: flex;
9629 display: flex;
9572 flex-direction: row;
9630 flex-direction: row;
9573 align-items: stretch;
9631 align-items: stretch;
9574 /* Old browsers */
9632 /* Old browsers */
9575 -webkit-box-pack: end;
9633 -webkit-box-pack: end;
9576 -moz-box-pack: end;
9634 -moz-box-pack: end;
9577 box-pack: end;
9635 box-pack: end;
9578 /* Modern browsers */
9636 /* Modern browsers */
9579 justify-content: flex-end;
9637 justify-content: flex-end;
9580 }
9638 }
9639 @media print {
9640 .celltoolbar {
9641 display: none;
9642 }
9643 }
9581 .ctb_hideshow {
9644 .ctb_hideshow {
9582 display: none;
9645 display: none;
9583 vertical-align: bottom;
9646 vertical-align: bottom;
9584 }
9647 }
9585 /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
9648 /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
9586 Cell toolbars are only shown when the ctb_global_show class is also set.
9649 Cell toolbars are only shown when the ctb_global_show class is also set.
9587 */
9650 */
9588 .ctb_global_show .ctb_show.ctb_hideshow {
9651 .ctb_global_show .ctb_show.ctb_hideshow {
9589 display: block;
9652 display: block;
9590 }
9653 }
9591 .ctb_global_show .ctb_show + .input_area,
9654 .ctb_global_show .ctb_show + .input_area,
9592 .ctb_global_show .ctb_show + div.text_cell_input {
9655 .ctb_global_show .ctb_show + div.text_cell_input {
9593 border-top-right-radius: 0px;
9656 border-top-right-radius: 0px;
9594 border-top-left-radius: 0px;
9657 border-top-left-radius: 0px;
9595 }
9658 }
9596 .celltoolbar {
9659 .celltoolbar {
9597 font-size: 87%;
9660 font-size: 87%;
9598 padding-top: 3px;
9661 padding-top: 3px;
9599 }
9662 }
9600 .celltoolbar select {
9663 .celltoolbar select {
9601 display: block;
9664 display: block;
9602 width: 100%;
9665 width: 100%;
9603 height: 32px;
9666 height: 32px;
9604 padding: 6px 12px;
9667 padding: 6px 12px;
9605 font-size: 13px;
9668 font-size: 13px;
9606 line-height: 1.42857143;
9669 line-height: 1.42857143;
9607 color: #555555;
9670 color: #555555;
9608 background-color: #ffffff;
9671 background-color: #ffffff;
9609 background-image: none;
9672 background-image: none;
9610 border: 1px solid #cccccc;
9673 border: 1px solid #cccccc;
9611 border-radius: 4px;
9612 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
9674 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
9613 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
9675 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
9614 -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
9676 -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
9615 transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
9677 transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
9616 height: 30px;
9678 height: 30px;
9617 padding: 5px 10px;
9679 padding: 5px 10px;
9618 font-size: 12px;
9680 font-size: 12px;
9619 line-height: 1.5;
9681 line-height: 1.5;
9620 border-radius: 3px;
9682 border-radius: 2px;
9621 width: inherit;
9683 width: inherit;
9622 font-size: 87%;
9684 font-size: 87%;
9623 height: 22px;
9685 height: 22px;
9624 display: inline-block;
9686 display: inline-block;
9625 }
9687 }
9626 .celltoolbar select:focus {
9688 .celltoolbar select:focus {
9627 border-color: #66afe9;
9689 border-color: #66afe9;
9628 outline: 0;
9690 outline: 0;
9629 -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
9691 -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
9630 box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
9692 box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
9631 }
9693 }
9632 .celltoolbar select::-moz-placeholder {
9694 .celltoolbar select::-moz-placeholder {
9633 color: #999999;
9695 color: #999999;
9634 opacity: 1;
9696 opacity: 1;
9635 }
9697 }
9636 .celltoolbar select:-ms-input-placeholder {
9698 .celltoolbar select:-ms-input-placeholder {
9637 color: #999999;
9699 color: #999999;
9638 }
9700 }
9639 .celltoolbar select::-webkit-input-placeholder {
9701 .celltoolbar select::-webkit-input-placeholder {
9640 color: #999999;
9702 color: #999999;
9641 }
9703 }
9642 .celltoolbar select[disabled],
9704 .celltoolbar select[disabled],
9643 .celltoolbar select[readonly],
9705 .celltoolbar select[readonly],
9644 fieldset[disabled] .celltoolbar select {
9706 fieldset[disabled] .celltoolbar select {
9645 cursor: not-allowed;
9707 cursor: not-allowed;
9646 background-color: #eeeeee;
9708 background-color: #eeeeee;
9647 opacity: 1;
9709 opacity: 1;
9648 }
9710 }
9649 textarea.celltoolbar select {
9711 textarea.celltoolbar select {
9650 height: auto;
9712 height: auto;
9651 }
9713 }
9652 select.celltoolbar select {
9714 select.celltoolbar select {
9653 height: 30px;
9715 height: 30px;
9654 line-height: 30px;
9716 line-height: 30px;
9655 }
9717 }
9656 textarea.celltoolbar select,
9718 textarea.celltoolbar select,
9657 select[multiple].celltoolbar select {
9719 select[multiple].celltoolbar select {
9658 height: auto;
9720 height: auto;
9659 }
9721 }
9660 .celltoolbar label {
9722 .celltoolbar label {
9661 margin-left: 5px;
9723 margin-left: 5px;
9662 margin-right: 5px;
9724 margin-right: 5px;
9663 }
9725 }
9664 .completions {
9726 .completions {
9665 position: absolute;
9727 position: absolute;
9666 z-index: 10;
9728 z-index: 10;
9667 overflow: hidden;
9729 overflow: hidden;
9668 border: 1px solid #ababab;
9730 border: 1px solid #ababab;
9669 border-radius: 4px;
9731 border-radius: 2px;
9670 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
9732 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
9671 box-shadow: 0px 6px 10px -1px #adadad;
9733 box-shadow: 0px 6px 10px -1px #adadad;
9672 }
9734 }
9673 .completions select {
9735 .completions select {
9674 background: white;
9736 background: white;
9675 outline: none;
9737 outline: none;
9676 border: none;
9738 border: none;
9677 padding: 0px;
9739 padding: 0px;
9678 margin: 0px;
9740 margin: 0px;
9679 overflow: auto;
9741 overflow: auto;
9680 font-family: monospace;
9742 font-family: monospace;
9681 font-size: 110%;
9743 font-size: 110%;
9682 color: #000000;
9744 color: #000000;
9683 width: auto;
9745 width: auto;
9684 }
9746 }
9685 .completions select option.context {
9747 .completions select option.context {
9686 color: #3071a9;
9748 color: #3071a9;
9687 }
9749 }
9688 #kernel_logo_widget {
9750 #kernel_logo_widget {
9689 margin-right: 1em;
9690 float: right !important;
9751 float: right !important;
9691 float: right;
9752 float: right;
9692 }
9753 }
9693 #kernel_logo_widget .current_kernel_logo {
9754 #kernel_logo_widget .current_kernel_logo {
9694 display: none;
9755 display: none;
9695 margin-top: -1px;
9756 margin-top: -1px;
9696 margin-bottom: -1px;
9757 margin-bottom: -1px;
9697 width: 32px;
9758 width: 32px;
9698 height: 32px;
9759 height: 32px;
9699 }
9760 }
9700 #menubar {
9761 #menubar {
9701 box-sizing: border-box;
9762 box-sizing: border-box;
9702 -moz-box-sizing: border-box;
9763 -moz-box-sizing: border-box;
9703 -webkit-box-sizing: border-box;
9764 -webkit-box-sizing: border-box;
9704 }
9765 }
9705 #menubar .navbar {
9766 #menubar .navbar {
9706 border-top: 1px;
9767 border-top: 1px;
9707 border-radius: 0px 0px 4px 4px;
9768 border-radius: 0px 0px 2px 2px;
9708 margin-bottom: 6px;
9769 margin-bottom: 6px;
9709 }
9770 }
9710 #menubar .navbar-toggle {
9771 #menubar .navbar-toggle {
9711 float: left;
9772 float: left;
9712 }
9773 }
9713 #menubar .navbar-collapse {
9774 #menubar .navbar-collapse {
9714 clear: left;
9775 clear: left;
9715 }
9776 }
9716 .nav-wrapper {
9777 .nav-wrapper {
9717 border-bottom: 1px solid #e7e7e7;
9778 border-bottom: 1px solid #e7e7e7;
9718 }
9779 }
9719 i.menu-icon {
9780 i.menu-icon {
9720 padding-top: 4px;
9781 padding-top: 4px;
9721 }
9782 }
9722 ul#help_menu li a {
9783 ul#help_menu li a {
9723 overflow: hidden;
9784 overflow: hidden;
9724 padding-right: 2.2em;
9785 padding-right: 2.2em;
9725 }
9786 }
9726 ul#help_menu li a i {
9787 ul#help_menu li a i {
9727 margin-right: -1.2em;
9788 margin-right: -1.2em;
9728 }
9789 }
9729 .dropdown-submenu {
9790 .dropdown-submenu {
9730 position: relative;
9791 position: relative;
9731 }
9792 }
9732 .dropdown-submenu > .dropdown-menu {
9793 .dropdown-submenu > .dropdown-menu {
9733 top: 0;
9794 top: 0;
9734 left: 100%;
9795 left: 100%;
9735 margin-top: -6px;
9796 margin-top: -6px;
9736 margin-left: -1px;
9797 margin-left: -1px;
9737 -webkit-border-radius: 0 6px 6px 6px;
9798 -webkit-border-radius: 0 6px 6px 6px;
9738 -moz-border-radius: 0 6px 6px 6px;
9799 -moz-border-radius: 0 6px 6px 6px;
9739 border-radius: 0 6px 6px 6px;
9800 border-radius: 0 6px 6px 6px;
9740 }
9801 }
9741 .dropdown-submenu:hover > .dropdown-menu {
9802 .dropdown-submenu:hover > .dropdown-menu {
9742 display: block;
9803 display: block;
9743 }
9804 }
9744 .dropdown-submenu > a:after {
9805 .dropdown-submenu > a:after {
9745 display: block;
9806 display: block;
9746 content: " ";
9807 content: " ";
9747 float: right;
9808 float: right;
9748 width: 0;
9809 width: 0;
9749 height: 0;
9810 height: 0;
9750 border-color: transparent;
9811 border-color: transparent;
9751 border-style: solid;
9812 border-style: solid;
9752 border-width: 5px 0 5px 5px;
9813 border-width: 5px 0 5px 5px;
9753 border-left-color: #cccccc;
9814 border-left-color: #cccccc;
9754 margin-top: 5px;
9815 margin-top: 5px;
9755 margin-right: -10px;
9816 margin-right: -10px;
9756 }
9817 }
9757 .dropdown-submenu:hover > a:after {
9818 .dropdown-submenu:hover > a:after {
9758 border-left-color: #ffffff;
9819 border-left-color: #ffffff;
9759 }
9820 }
9760 .dropdown-submenu.pull-left {
9821 .dropdown-submenu.pull-left {
9761 float: none;
9822 float: none;
9762 }
9823 }
9763 .dropdown-submenu.pull-left > .dropdown-menu {
9824 .dropdown-submenu.pull-left > .dropdown-menu {
9764 left: -100%;
9825 left: -100%;
9765 margin-left: 10px;
9826 margin-left: 10px;
9766 -webkit-border-radius: 6px 0 6px 6px;
9827 -webkit-border-radius: 6px 0 6px 6px;
9767 -moz-border-radius: 6px 0 6px 6px;
9828 -moz-border-radius: 6px 0 6px 6px;
9768 border-radius: 6px 0 6px 6px;
9829 border-radius: 6px 0 6px 6px;
9769 }
9830 }
9770 #notification_area {
9831 #notification_area {
9771 float: right !important;
9832 float: right !important;
9772 float: right;
9833 float: right;
9773 z-index: 10;
9834 z-index: 10;
9774 }
9835 }
9775 .indicator_area {
9836 .indicator_area {
9776 color: #777777;
9837 color: #777777;
9777 margin-left: 5px;
9838 margin-left: 5px;
9778 margin-right: 5px;
9839 margin-right: 5px;
9779 width: 11px;
9840 width: 11px;
9780 z-index: 10;
9841 z-index: 10;
9781 text-align: center;
9842 text-align: center;
9782 }
9843 }
9783 #kernel_indicator {
9844 #kernel_indicator {
9784 float: right !important;
9845 float: right !important;
9785 float: right;
9846 float: right;
9786 color: #777777;
9847 color: #777777;
9787 margin-left: 5px;
9848 margin-left: 5px;
9788 margin-right: 5px;
9849 margin-right: 5px;
9789 width: 11px;
9850 width: 11px;
9790 z-index: 10;
9851 z-index: 10;
9791 text-align: center;
9852 text-align: center;
9792 width: auto;
9853 width: auto;
9793 border-left: 1px solid;
9854 border-left: 1px solid;
9794 }
9855 }
9795 #kernel_indicator .kernel_indicator_name {
9856 #kernel_indicator .kernel_indicator_name {
9796 padding-left: 5px;
9857 padding-left: 5px;
9797 padding-right: 5px;
9858 padding-right: 5px;
9798 }
9859 }
9799 #modal_indicator {
9860 #modal_indicator {
9800 float: right !important;
9861 float: right !important;
9801 float: right;
9862 float: right;
9802 color: #777777;
9863 color: #777777;
9803 margin-left: 5px;
9864 margin-left: 5px;
9804 margin-right: 5px;
9865 margin-right: 5px;
9805 width: 11px;
9866 width: 11px;
9806 z-index: 10;
9867 z-index: 10;
9807 text-align: center;
9868 text-align: center;
9808 }
9869 }
9809 .edit_mode_icon:before {
9870 .edit_mode_icon:before {
9810 display: inline-block;
9871 display: inline-block;
9811 font: normal normal normal 14px/1 FontAwesome;
9872 font: normal normal normal 14px/1 FontAwesome;
9812 font-size: inherit;
9873 font-size: inherit;
9813 text-rendering: auto;
9874 text-rendering: auto;
9814 -webkit-font-smoothing: antialiased;
9875 -webkit-font-smoothing: antialiased;
9815 -moz-osx-font-smoothing: grayscale;
9876 -moz-osx-font-smoothing: grayscale;
9816 content: "\f040";
9877 content: "\f040";
9817 }
9878 }
9818 .edit_mode_icon:before.pull-left {
9879 .edit_mode_icon:before.pull-left {
9819 margin-right: .3em;
9880 margin-right: .3em;
9820 }
9881 }
9821 .edit_mode_icon:before.pull-right {
9882 .edit_mode_icon:before.pull-right {
9822 margin-left: .3em;
9883 margin-left: .3em;
9823 }
9884 }
9824 .command_mode_icon:before {
9885 .command_mode_icon:before {
9825 display: inline-block;
9886 display: inline-block;
9826 font: normal normal normal 14px/1 FontAwesome;
9887 font: normal normal normal 14px/1 FontAwesome;
9827 font-size: inherit;
9888 font-size: inherit;
9828 text-rendering: auto;
9889 text-rendering: auto;
9829 -webkit-font-smoothing: antialiased;
9890 -webkit-font-smoothing: antialiased;
9830 -moz-osx-font-smoothing: grayscale;
9891 -moz-osx-font-smoothing: grayscale;
9831 content: ' ';
9892 content: ' ';
9832 }
9893 }
9833 .command_mode_icon:before.pull-left {
9894 .command_mode_icon:before.pull-left {
9834 margin-right: .3em;
9895 margin-right: .3em;
9835 }
9896 }
9836 .command_mode_icon:before.pull-right {
9897 .command_mode_icon:before.pull-right {
9837 margin-left: .3em;
9898 margin-left: .3em;
9838 }
9899 }
9839 .kernel_idle_icon:before {
9900 .kernel_idle_icon:before {
9840 display: inline-block;
9901 display: inline-block;
9841 font: normal normal normal 14px/1 FontAwesome;
9902 font: normal normal normal 14px/1 FontAwesome;
9842 font-size: inherit;
9903 font-size: inherit;
9843 text-rendering: auto;
9904 text-rendering: auto;
9844 -webkit-font-smoothing: antialiased;
9905 -webkit-font-smoothing: antialiased;
9845 -moz-osx-font-smoothing: grayscale;
9906 -moz-osx-font-smoothing: grayscale;
9846 content: "\f10c";
9907 content: "\f10c";
9847 }
9908 }
9848 .kernel_idle_icon:before.pull-left {
9909 .kernel_idle_icon:before.pull-left {
9849 margin-right: .3em;
9910 margin-right: .3em;
9850 }
9911 }
9851 .kernel_idle_icon:before.pull-right {
9912 .kernel_idle_icon:before.pull-right {
9852 margin-left: .3em;
9913 margin-left: .3em;
9853 }
9914 }
9854 .kernel_busy_icon:before {
9915 .kernel_busy_icon:before {
9855 display: inline-block;
9916 display: inline-block;
9856 font: normal normal normal 14px/1 FontAwesome;
9917 font: normal normal normal 14px/1 FontAwesome;
9857 font-size: inherit;
9918 font-size: inherit;
9858 text-rendering: auto;
9919 text-rendering: auto;
9859 -webkit-font-smoothing: antialiased;
9920 -webkit-font-smoothing: antialiased;
9860 -moz-osx-font-smoothing: grayscale;
9921 -moz-osx-font-smoothing: grayscale;
9861 content: "\f111";
9922 content: "\f111";
9862 }
9923 }
9863 .kernel_busy_icon:before.pull-left {
9924 .kernel_busy_icon:before.pull-left {
9864 margin-right: .3em;
9925 margin-right: .3em;
9865 }
9926 }
9866 .kernel_busy_icon:before.pull-right {
9927 .kernel_busy_icon:before.pull-right {
9867 margin-left: .3em;
9928 margin-left: .3em;
9868 }
9929 }
9869 .kernel_dead_icon:before {
9930 .kernel_dead_icon:before {
9870 display: inline-block;
9931 display: inline-block;
9871 font: normal normal normal 14px/1 FontAwesome;
9932 font: normal normal normal 14px/1 FontAwesome;
9872 font-size: inherit;
9933 font-size: inherit;
9873 text-rendering: auto;
9934 text-rendering: auto;
9874 -webkit-font-smoothing: antialiased;
9935 -webkit-font-smoothing: antialiased;
9875 -moz-osx-font-smoothing: grayscale;
9936 -moz-osx-font-smoothing: grayscale;
9876 content: "\f1e2";
9937 content: "\f1e2";
9877 }
9938 }
9878 .kernel_dead_icon:before.pull-left {
9939 .kernel_dead_icon:before.pull-left {
9879 margin-right: .3em;
9940 margin-right: .3em;
9880 }
9941 }
9881 .kernel_dead_icon:before.pull-right {
9942 .kernel_dead_icon:before.pull-right {
9882 margin-left: .3em;
9943 margin-left: .3em;
9883 }
9944 }
9884 .kernel_disconnected_icon:before {
9945 .kernel_disconnected_icon:before {
9885 display: inline-block;
9946 display: inline-block;
9886 font: normal normal normal 14px/1 FontAwesome;
9947 font: normal normal normal 14px/1 FontAwesome;
9887 font-size: inherit;
9948 font-size: inherit;
9888 text-rendering: auto;
9949 text-rendering: auto;
9889 -webkit-font-smoothing: antialiased;
9950 -webkit-font-smoothing: antialiased;
9890 -moz-osx-font-smoothing: grayscale;
9951 -moz-osx-font-smoothing: grayscale;
9891 content: "\f127";
9952 content: "\f127";
9892 }
9953 }
9893 .kernel_disconnected_icon:before.pull-left {
9954 .kernel_disconnected_icon:before.pull-left {
9894 margin-right: .3em;
9955 margin-right: .3em;
9895 }
9956 }
9896 .kernel_disconnected_icon:before.pull-right {
9957 .kernel_disconnected_icon:before.pull-right {
9897 margin-left: .3em;
9958 margin-left: .3em;
9898 }
9959 }
9899 .notification_widget {
9960 .notification_widget {
9900 color: #777777;
9961 color: #777777;
9901 z-index: 10;
9962 z-index: 10;
9902 background: rgba(240, 240, 240, 0.5);
9963 background: rgba(240, 240, 240, 0.5);
9903 color: #333333;
9964 color: #333333;
9904 background-color: #ffffff;
9965 background-color: #ffffff;
9905 border-color: #cccccc;
9966 border-color: #cccccc;
9906 }
9967 }
9907 .notification_widget:hover,
9968 .notification_widget:hover,
9908 .notification_widget:focus,
9969 .notification_widget:focus,
9909 .notification_widget:active,
9970 .notification_widget:active,
9910 .notification_widget.active,
9971 .notification_widget.active,
9911 .open .dropdown-toggle.notification_widget {
9972 .open .dropdown-toggle.notification_widget {
9912 color: #333333;
9973 color: #333333;
9913 background-color: #ebebeb;
9974 background-color: #ebebeb;
9914 border-color: #adadad;
9975 border-color: #adadad;
9915 }
9976 }
9916 .notification_widget:active,
9977 .notification_widget:active,
9917 .notification_widget.active,
9978 .notification_widget.active,
9918 .open .dropdown-toggle.notification_widget {
9979 .open .dropdown-toggle.notification_widget {
9919 background-image: none;
9980 background-image: none;
9920 }
9981 }
9921 .notification_widget.disabled,
9982 .notification_widget.disabled,
9922 .notification_widget[disabled],
9983 .notification_widget[disabled],
9923 fieldset[disabled] .notification_widget,
9984 fieldset[disabled] .notification_widget,
9924 .notification_widget.disabled:hover,
9985 .notification_widget.disabled:hover,
9925 .notification_widget[disabled]:hover,
9986 .notification_widget[disabled]:hover,
9926 fieldset[disabled] .notification_widget:hover,
9987 fieldset[disabled] .notification_widget:hover,
9927 .notification_widget.disabled:focus,
9988 .notification_widget.disabled:focus,
9928 .notification_widget[disabled]:focus,
9989 .notification_widget[disabled]:focus,
9929 fieldset[disabled] .notification_widget:focus,
9990 fieldset[disabled] .notification_widget:focus,
9930 .notification_widget.disabled:active,
9991 .notification_widget.disabled:active,
9931 .notification_widget[disabled]:active,
9992 .notification_widget[disabled]:active,
9932 fieldset[disabled] .notification_widget:active,
9993 fieldset[disabled] .notification_widget:active,
9933 .notification_widget.disabled.active,
9994 .notification_widget.disabled.active,
9934 .notification_widget[disabled].active,
9995 .notification_widget[disabled].active,
9935 fieldset[disabled] .notification_widget.active {
9996 fieldset[disabled] .notification_widget.active {
9936 background-color: #ffffff;
9997 background-color: #ffffff;
9937 border-color: #cccccc;
9998 border-color: #cccccc;
9938 }
9999 }
9939 .notification_widget .badge {
10000 .notification_widget .badge {
9940 color: #ffffff;
10001 color: #ffffff;
9941 background-color: #333333;
10002 background-color: #333333;
9942 }
10003 }
9943 .notification_widget.warning {
10004 .notification_widget.warning {
9944 color: #ffffff;
10005 color: #ffffff;
9945 background-color: #f0ad4e;
10006 background-color: #f0ad4e;
9946 border-color: #eea236;
10007 border-color: #eea236;
9947 }
10008 }
9948 .notification_widget.warning:hover,
10009 .notification_widget.warning:hover,
9949 .notification_widget.warning:focus,
10010 .notification_widget.warning:focus,
9950 .notification_widget.warning:active,
10011 .notification_widget.warning:active,
9951 .notification_widget.warning.active,
10012 .notification_widget.warning.active,
9952 .open .dropdown-toggle.notification_widget.warning {
10013 .open .dropdown-toggle.notification_widget.warning {
9953 color: #ffffff;
10014 color: #ffffff;
9954 background-color: #ed9c28;
10015 background-color: #ed9c28;
9955 border-color: #d58512;
10016 border-color: #d58512;
9956 }
10017 }
9957 .notification_widget.warning:active,
10018 .notification_widget.warning:active,
9958 .notification_widget.warning.active,
10019 .notification_widget.warning.active,
9959 .open .dropdown-toggle.notification_widget.warning {
10020 .open .dropdown-toggle.notification_widget.warning {
9960 background-image: none;
10021 background-image: none;
9961 }
10022 }
9962 .notification_widget.warning.disabled,
10023 .notification_widget.warning.disabled,
9963 .notification_widget.warning[disabled],
10024 .notification_widget.warning[disabled],
9964 fieldset[disabled] .notification_widget.warning,
10025 fieldset[disabled] .notification_widget.warning,
9965 .notification_widget.warning.disabled:hover,
10026 .notification_widget.warning.disabled:hover,
9966 .notification_widget.warning[disabled]:hover,
10027 .notification_widget.warning[disabled]:hover,
9967 fieldset[disabled] .notification_widget.warning:hover,
10028 fieldset[disabled] .notification_widget.warning:hover,
9968 .notification_widget.warning.disabled:focus,
10029 .notification_widget.warning.disabled:focus,
9969 .notification_widget.warning[disabled]:focus,
10030 .notification_widget.warning[disabled]:focus,
9970 fieldset[disabled] .notification_widget.warning:focus,
10031 fieldset[disabled] .notification_widget.warning:focus,
9971 .notification_widget.warning.disabled:active,
10032 .notification_widget.warning.disabled:active,
9972 .notification_widget.warning[disabled]:active,
10033 .notification_widget.warning[disabled]:active,
9973 fieldset[disabled] .notification_widget.warning:active,
10034 fieldset[disabled] .notification_widget.warning:active,
9974 .notification_widget.warning.disabled.active,
10035 .notification_widget.warning.disabled.active,
9975 .notification_widget.warning[disabled].active,
10036 .notification_widget.warning[disabled].active,
9976 fieldset[disabled] .notification_widget.warning.active {
10037 fieldset[disabled] .notification_widget.warning.active {
9977 background-color: #f0ad4e;
10038 background-color: #f0ad4e;
9978 border-color: #eea236;
10039 border-color: #eea236;
9979 }
10040 }
9980 .notification_widget.warning .badge {
10041 .notification_widget.warning .badge {
9981 color: #f0ad4e;
10042 color: #f0ad4e;
9982 background-color: #ffffff;
10043 background-color: #ffffff;
9983 }
10044 }
9984 .notification_widget.success {
10045 .notification_widget.success {
9985 color: #ffffff;
10046 color: #ffffff;
9986 background-color: #5cb85c;
10047 background-color: #5cb85c;
9987 border-color: #4cae4c;
10048 border-color: #4cae4c;
9988 }
10049 }
9989 .notification_widget.success:hover,
10050 .notification_widget.success:hover,
9990 .notification_widget.success:focus,
10051 .notification_widget.success:focus,
9991 .notification_widget.success:active,
10052 .notification_widget.success:active,
9992 .notification_widget.success.active,
10053 .notification_widget.success.active,
9993 .open .dropdown-toggle.notification_widget.success {
10054 .open .dropdown-toggle.notification_widget.success {
9994 color: #ffffff;
10055 color: #ffffff;
9995 background-color: #47a447;
10056 background-color: #47a447;
9996 border-color: #398439;
10057 border-color: #398439;
9997 }
10058 }
9998 .notification_widget.success:active,
10059 .notification_widget.success:active,
9999 .notification_widget.success.active,
10060 .notification_widget.success.active,
10000 .open .dropdown-toggle.notification_widget.success {
10061 .open .dropdown-toggle.notification_widget.success {
10001 background-image: none;
10062 background-image: none;
10002 }
10063 }
10003 .notification_widget.success.disabled,
10064 .notification_widget.success.disabled,
10004 .notification_widget.success[disabled],
10065 .notification_widget.success[disabled],
10005 fieldset[disabled] .notification_widget.success,
10066 fieldset[disabled] .notification_widget.success,
10006 .notification_widget.success.disabled:hover,
10067 .notification_widget.success.disabled:hover,
10007 .notification_widget.success[disabled]:hover,
10068 .notification_widget.success[disabled]:hover,
10008 fieldset[disabled] .notification_widget.success:hover,
10069 fieldset[disabled] .notification_widget.success:hover,
10009 .notification_widget.success.disabled:focus,
10070 .notification_widget.success.disabled:focus,
10010 .notification_widget.success[disabled]:focus,
10071 .notification_widget.success[disabled]:focus,
10011 fieldset[disabled] .notification_widget.success:focus,
10072 fieldset[disabled] .notification_widget.success:focus,
10012 .notification_widget.success.disabled:active,
10073 .notification_widget.success.disabled:active,
10013 .notification_widget.success[disabled]:active,
10074 .notification_widget.success[disabled]:active,
10014 fieldset[disabled] .notification_widget.success:active,
10075 fieldset[disabled] .notification_widget.success:active,
10015 .notification_widget.success.disabled.active,
10076 .notification_widget.success.disabled.active,
10016 .notification_widget.success[disabled].active,
10077 .notification_widget.success[disabled].active,
10017 fieldset[disabled] .notification_widget.success.active {
10078 fieldset[disabled] .notification_widget.success.active {
10018 background-color: #5cb85c;
10079 background-color: #5cb85c;
10019 border-color: #4cae4c;
10080 border-color: #4cae4c;
10020 }
10081 }
10021 .notification_widget.success .badge {
10082 .notification_widget.success .badge {
10022 color: #5cb85c;
10083 color: #5cb85c;
10023 background-color: #ffffff;
10084 background-color: #ffffff;
10024 }
10085 }
10025 .notification_widget.info {
10086 .notification_widget.info {
10026 color: #ffffff;
10087 color: #ffffff;
10027 background-color: #5bc0de;
10088 background-color: #5bc0de;
10028 border-color: #46b8da;
10089 border-color: #46b8da;
10029 }
10090 }
10030 .notification_widget.info:hover,
10091 .notification_widget.info:hover,
10031 .notification_widget.info:focus,
10092 .notification_widget.info:focus,
10032 .notification_widget.info:active,
10093 .notification_widget.info:active,
10033 .notification_widget.info.active,
10094 .notification_widget.info.active,
10034 .open .dropdown-toggle.notification_widget.info {
10095 .open .dropdown-toggle.notification_widget.info {
10035 color: #ffffff;
10096 color: #ffffff;
10036 background-color: #39b3d7;
10097 background-color: #39b3d7;
10037 border-color: #269abc;
10098 border-color: #269abc;
10038 }
10099 }
10039 .notification_widget.info:active,
10100 .notification_widget.info:active,
10040 .notification_widget.info.active,
10101 .notification_widget.info.active,
10041 .open .dropdown-toggle.notification_widget.info {
10102 .open .dropdown-toggle.notification_widget.info {
10042 background-image: none;
10103 background-image: none;
10043 }
10104 }
10044 .notification_widget.info.disabled,
10105 .notification_widget.info.disabled,
10045 .notification_widget.info[disabled],
10106 .notification_widget.info[disabled],
10046 fieldset[disabled] .notification_widget.info,
10107 fieldset[disabled] .notification_widget.info,
10047 .notification_widget.info.disabled:hover,
10108 .notification_widget.info.disabled:hover,
10048 .notification_widget.info[disabled]:hover,
10109 .notification_widget.info[disabled]:hover,
10049 fieldset[disabled] .notification_widget.info:hover,
10110 fieldset[disabled] .notification_widget.info:hover,
10050 .notification_widget.info.disabled:focus,
10111 .notification_widget.info.disabled:focus,
10051 .notification_widget.info[disabled]:focus,
10112 .notification_widget.info[disabled]:focus,
10052 fieldset[disabled] .notification_widget.info:focus,
10113 fieldset[disabled] .notification_widget.info:focus,
10053 .notification_widget.info.disabled:active,
10114 .notification_widget.info.disabled:active,
10054 .notification_widget.info[disabled]:active,
10115 .notification_widget.info[disabled]:active,
10055 fieldset[disabled] .notification_widget.info:active,
10116 fieldset[disabled] .notification_widget.info:active,
10056 .notification_widget.info.disabled.active,
10117 .notification_widget.info.disabled.active,
10057 .notification_widget.info[disabled].active,
10118 .notification_widget.info[disabled].active,
10058 fieldset[disabled] .notification_widget.info.active {
10119 fieldset[disabled] .notification_widget.info.active {
10059 background-color: #5bc0de;
10120 background-color: #5bc0de;
10060 border-color: #46b8da;
10121 border-color: #46b8da;
10061 }
10122 }
10062 .notification_widget.info .badge {
10123 .notification_widget.info .badge {
10063 color: #5bc0de;
10124 color: #5bc0de;
10064 background-color: #ffffff;
10125 background-color: #ffffff;
10065 }
10126 }
10066 .notification_widget.danger {
10127 .notification_widget.danger {
10067 color: #ffffff;
10128 color: #ffffff;
10068 background-color: #d9534f;
10129 background-color: #d9534f;
10069 border-color: #d43f3a;
10130 border-color: #d43f3a;
10070 }
10131 }
10071 .notification_widget.danger:hover,
10132 .notification_widget.danger:hover,
10072 .notification_widget.danger:focus,
10133 .notification_widget.danger:focus,
10073 .notification_widget.danger:active,
10134 .notification_widget.danger:active,
10074 .notification_widget.danger.active,
10135 .notification_widget.danger.active,
10075 .open .dropdown-toggle.notification_widget.danger {
10136 .open .dropdown-toggle.notification_widget.danger {
10076 color: #ffffff;
10137 color: #ffffff;
10077 background-color: #d2322d;
10138 background-color: #d2322d;
10078 border-color: #ac2925;
10139 border-color: #ac2925;
10079 }
10140 }
10080 .notification_widget.danger:active,
10141 .notification_widget.danger:active,
10081 .notification_widget.danger.active,
10142 .notification_widget.danger.active,
10082 .open .dropdown-toggle.notification_widget.danger {
10143 .open .dropdown-toggle.notification_widget.danger {
10083 background-image: none;
10144 background-image: none;
10084 }
10145 }
10085 .notification_widget.danger.disabled,
10146 .notification_widget.danger.disabled,
10086 .notification_widget.danger[disabled],
10147 .notification_widget.danger[disabled],
10087 fieldset[disabled] .notification_widget.danger,
10148 fieldset[disabled] .notification_widget.danger,
10088 .notification_widget.danger.disabled:hover,
10149 .notification_widget.danger.disabled:hover,
10089 .notification_widget.danger[disabled]:hover,
10150 .notification_widget.danger[disabled]:hover,
10090 fieldset[disabled] .notification_widget.danger:hover,
10151 fieldset[disabled] .notification_widget.danger:hover,
10091 .notification_widget.danger.disabled:focus,
10152 .notification_widget.danger.disabled:focus,
10092 .notification_widget.danger[disabled]:focus,
10153 .notification_widget.danger[disabled]:focus,
10093 fieldset[disabled] .notification_widget.danger:focus,
10154 fieldset[disabled] .notification_widget.danger:focus,
10094 .notification_widget.danger.disabled:active,
10155 .notification_widget.danger.disabled:active,
10095 .notification_widget.danger[disabled]:active,
10156 .notification_widget.danger[disabled]:active,
10096 fieldset[disabled] .notification_widget.danger:active,
10157 fieldset[disabled] .notification_widget.danger:active,
10097 .notification_widget.danger.disabled.active,
10158 .notification_widget.danger.disabled.active,
10098 .notification_widget.danger[disabled].active,
10159 .notification_widget.danger[disabled].active,
10099 fieldset[disabled] .notification_widget.danger.active {
10160 fieldset[disabled] .notification_widget.danger.active {
10100 background-color: #d9534f;
10161 background-color: #d9534f;
10101 border-color: #d43f3a;
10162 border-color: #d43f3a;
10102 }
10163 }
10103 .notification_widget.danger .badge {
10164 .notification_widget.danger .badge {
10104 color: #d9534f;
10165 color: #d9534f;
10105 background-color: #ffffff;
10166 background-color: #ffffff;
10106 }
10167 }
10107 div#pager {
10168 div#pager {
10108 background-color: #ffffff;
10169 background-color: #ffffff;
10109 font-size: 14px;
10170 font-size: 14px;
10110 line-height: 20px;
10171 line-height: 20px;
10111 overflow: hidden;
10172 overflow: hidden;
10112 display: none;
10173 display: none;
10113 position: fixed;
10174 position: fixed;
10114 bottom: 0px;
10175 bottom: 0px;
10115 width: 100%;
10176 width: 100%;
10116 max-height: 50%;
10177 max-height: 50%;
10117 padding-top: 8px;
10178 padding-top: 8px;
10179 -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
10180 box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
10118 /* Display over codemirror */
10181 /* Display over codemirror */
10119 z-index: 100;
10182 z-index: 100;
10120 /* Hack which prevents jquery ui resizable from changing top. */
10183 /* Hack which prevents jquery ui resizable from changing top. */
10121 top: inherit !important;
10184 top: inherit !important;
10122 }
10185 }
10123 div#pager pre {
10186 div#pager pre {
10124 line-height: 1.21429em;
10187 line-height: 1.21429em;
10125 color: #000000;
10188 color: #000000;
10126 background-color: #f7f7f7;
10189 background-color: #f7f7f7;
10127 padding: 0.4em;
10190 padding: 0.4em;
10128 }
10191 }
10129 div#pager #pager-button-area {
10192 div#pager #pager-button-area {
10130 position: absolute;
10193 position: absolute;
10131 top: 8px;
10194 top: 8px;
10132 right: 20px;
10195 right: 20px;
10133 }
10196 }
10134 div#pager #pager-contents {
10197 div#pager #pager-contents {
10135 position: relative;
10198 position: relative;
10136 overflow: auto;
10199 overflow: auto;
10137 width: 100%;
10200 width: 100%;
10138 height: 100%;
10201 height: 100%;
10139 }
10202 }
10140 div#pager #pager-contents #pager-container {
10203 div#pager #pager-contents #pager-container {
10141 position: relative;
10204 position: relative;
10142 padding: 15px 0px;
10205 padding: 15px 0px;
10143 box-sizing: border-box;
10206 box-sizing: border-box;
10144 -moz-box-sizing: border-box;
10207 -moz-box-sizing: border-box;
10145 -webkit-box-sizing: border-box;
10208 -webkit-box-sizing: border-box;
10146 }
10209 }
10147 div#pager .ui-resizable-handle {
10210 div#pager .ui-resizable-handle {
10148 top: 0px;
10211 top: 0px;
10149 height: 8px;
10212 height: 8px;
10150 background: #f7f7f7;
10213 background: #f7f7f7;
10151 border-top: 1px solid #cfcfcf;
10214 border-top: 1px solid #cfcfcf;
10152 border-bottom: 1px solid #cfcfcf;
10215 border-bottom: 1px solid #cfcfcf;
10153 /* Similar to the notebook header's shadow, but not
10154 exactly the same. The settings had to be adjusted
10155 to get the shadow to show. */
10156 -webkit-box-shadow: 1px 4px 9px -3px rgba(0, 0, 0, 0.15);
10157 box-shadow: 1px 4px 9px -3px rgba(0, 0, 0, 0.15);
10158 /* This injects handle bars (a short, wide = symbol) for
10216 /* This injects handle bars (a short, wide = symbol) for
10159 the resize handle. */
10217 the resize handle. */
10160 }
10218 }
10161 div#pager .ui-resizable-handle::after {
10219 div#pager .ui-resizable-handle::after {
10162 content: '';
10220 content: '';
10163 top: 2px;
10221 top: 2px;
10164 left: 50%;
10222 left: 50%;
10165 height: 3px;
10223 height: 3px;
10166 width: 30px;
10224 width: 30px;
10167 margin-left: -15px;
10225 margin-left: -15px;
10168 position: absolute;
10226 position: absolute;
10169 border-top: 1px solid #cfcfcf;
10227 border-top: 1px solid #cfcfcf;
10170 }
10228 }
10171 .quickhelp {
10229 .quickhelp {
10172 /* Old browsers */
10230 /* Old browsers */
10173 display: -webkit-box;
10231 display: -webkit-box;
10174 -webkit-box-orient: horizontal;
10232 -webkit-box-orient: horizontal;
10175 -webkit-box-align: stretch;
10233 -webkit-box-align: stretch;
10176 display: -moz-box;
10234 display: -moz-box;
10177 -moz-box-orient: horizontal;
10235 -moz-box-orient: horizontal;
10178 -moz-box-align: stretch;
10236 -moz-box-align: stretch;
10179 display: box;
10237 display: box;
10180 box-orient: horizontal;
10238 box-orient: horizontal;
10181 box-align: stretch;
10239 box-align: stretch;
10182 /* Modern browsers */
10240 /* Modern browsers */
10183 display: flex;
10241 display: flex;
10184 flex-direction: row;
10242 flex-direction: row;
10185 align-items: stretch;
10243 align-items: stretch;
10186 }
10244 }
10187 .shortcut_key {
10245 .shortcut_key {
10188 display: inline-block;
10246 display: inline-block;
10189 width: 20ex;
10247 width: 20ex;
10190 text-align: right;
10248 text-align: right;
10191 font-family: monospace;
10249 font-family: monospace;
10192 }
10250 }
10193 .shortcut_descr {
10251 .shortcut_descr {
10194 display: inline-block;
10252 display: inline-block;
10195 /* Old browsers */
10253 /* Old browsers */
10196 -webkit-box-flex: 1;
10254 -webkit-box-flex: 1;
10197 -moz-box-flex: 1;
10255 -moz-box-flex: 1;
10198 box-flex: 1;
10256 box-flex: 1;
10199 /* Modern browsers */
10257 /* Modern browsers */
10200 flex: 1;
10258 flex: 1;
10201 }
10259 }
10202 span.save_widget {
10260 span.save_widget {
10203 margin-top: 6px;
10261 margin-top: 6px;
10204 }
10262 }
10205 span.save_widget span.filename {
10263 span.save_widget span.filename {
10206 height: 1em;
10264 height: 1em;
10207 line-height: 1em;
10265 line-height: 1em;
10208 padding: 3px;
10266 padding: 3px;
10267 margin-left: 16px;
10209 border: none;
10268 border: none;
10210 font-size: 146.5%;
10269 font-size: 146.5%;
10211 border-radius: 4px;
10270 border-radius: 2px;
10212 }
10271 }
10213 span.save_widget span.filename:hover {
10272 span.save_widget span.filename:hover {
10214 background-color: #e6e6e6;
10273 background-color: #e6e6e6;
10215 }
10274 }
10216 span.checkpoint_status,
10275 span.checkpoint_status,
10217 span.autosave_status {
10276 span.autosave_status {
10218 font-size: small;
10277 font-size: small;
10219 }
10278 }
10220 @media (max-width: 767px) {
10279 @media (max-width: 767px) {
10221 span.save_widget {
10280 span.save_widget {
10222 font-size: small;
10281 font-size: small;
10223 }
10282 }
10224 span.checkpoint_status,
10283 span.checkpoint_status,
10225 span.autosave_status {
10284 span.autosave_status {
10226 display: none;
10285 display: none;
10227 }
10286 }
10228 }
10287 }
10229 @media (min-width: 768px) and (max-width: 979px) {
10288 @media (min-width: 768px) and (max-width: 979px) {
10230 span.checkpoint_status {
10289 span.checkpoint_status {
10231 display: none;
10290 display: none;
10232 }
10291 }
10233 span.autosave_status {
10292 span.autosave_status {
10234 font-size: x-small;
10293 font-size: x-small;
10235 }
10294 }
10236 }
10295 }
10237 .toolbar {
10296 .toolbar {
10238 padding: 0px;
10297 padding: 0px;
10239 margin-left: -5px;
10298 margin-left: -5px;
10240 margin-top: -5px;
10299 margin-top: -5px;
10241 margin-bottom: 5px;
10300 margin-bottom: 5px;
10242 box-sizing: border-box;
10301 box-sizing: border-box;
10243 -moz-box-sizing: border-box;
10302 -moz-box-sizing: border-box;
10244 -webkit-box-sizing: border-box;
10303 -webkit-box-sizing: border-box;
10245 }
10304 }
10246 .toolbar select,
10305 .toolbar select,
10247 .toolbar label {
10306 .toolbar label {
10248 width: auto;
10307 width: auto;
10249 vertical-align: middle;
10308 vertical-align: middle;
10250 margin-right: 2px;
10309 margin-right: 2px;
10251 margin-bottom: 0px;
10310 margin-bottom: 0px;
10252 display: inline;
10311 display: inline;
10253 font-size: 92%;
10312 font-size: 92%;
10254 margin-left: 0.3em;
10313 margin-left: 0.3em;
10255 margin-right: 0.3em;
10314 margin-right: 0.3em;
10256 padding: 0px;
10315 padding: 0px;
10257 padding-top: 3px;
10316 padding-top: 3px;
10258 }
10317 }
10259 .toolbar .btn {
10318 .toolbar .btn {
10260 padding: 2px 8px;
10319 padding: 2px 8px;
10261 }
10320 }
10262 .toolbar .btn-group {
10321 .toolbar .btn-group {
10263 margin-top: 0px;
10322 margin-top: 0px;
10264 margin-left: 5px;
10323 margin-left: 5px;
10265 }
10324 }
10266 #maintoolbar {
10325 #maintoolbar {
10267 margin-bottom: -3px;
10326 margin-bottom: -3px;
10268 margin-top: -8px;
10327 margin-top: -8px;
10269 border: 0px;
10328 border: 0px;
10270 min-height: 27px;
10329 min-height: 27px;
10271 margin-left: 32px;
10330 margin-left: 0px;
10272 padding-top: 11px;
10331 padding-top: 11px;
10273 padding-bottom: 3px;
10332 padding-bottom: 3px;
10274 }
10333 }
10275 #maintoolbar .navbar-text {
10334 #maintoolbar .navbar-text {
10276 float: none;
10335 float: none;
10277 vertical-align: middle;
10336 vertical-align: middle;
10278 text-align: right;
10337 text-align: right;
10279 margin-left: 5px;
10338 margin-left: 5px;
10280 margin-right: 0px;
10339 margin-right: 0px;
10281 margin-top: 0px;
10340 margin-top: 0px;
10282 }
10341 }
10283 .select-xs {
10342 .select-xs {
10284 height: 24px;
10343 height: 24px;
10285 }
10344 }
10286 /**
10345 /**
10287 * Primary styles
10346 * Primary styles
10288 *
10347 *
10289 * Author: IPython Development Team
10348 * Author: IPython Development Team
10290 */
10349 */
10291 /** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
10350 /** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
10292 * of chance of beeing generated from the ../less/[samename].less file, you can
10351 * of chance of beeing generated from the ../less/[samename].less file, you can
10293 * try to get back the less file by reverting somme commit in history
10352 * try to get back the less file by reverting somme commit in history
10294 **/
10353 **/
10295 /*
10354 /*
10296 * We'll try to get something pretty, so we
10355 * We'll try to get something pretty, so we
10297 * have some strange css to have the scroll bar on
10356 * have some strange css to have the scroll bar on
10298 * the left with fix button on the top right of the tooltip
10357 * the left with fix button on the top right of the tooltip
10299 */
10358 */
10300 @-moz-keyframes fadeOut {
10359 @-moz-keyframes fadeOut {
10301 from {
10360 from {
10302 opacity: 1;
10361 opacity: 1;
10303 }
10362 }
10304 to {
10363 to {
10305 opacity: 0;
10364 opacity: 0;
10306 }
10365 }
10307 }
10366 }
10308 @-webkit-keyframes fadeOut {
10367 @-webkit-keyframes fadeOut {
10309 from {
10368 from {
10310 opacity: 1;
10369 opacity: 1;
10311 }
10370 }
10312 to {
10371 to {
10313 opacity: 0;
10372 opacity: 0;
10314 }
10373 }
10315 }
10374 }
10316 @-moz-keyframes fadeIn {
10375 @-moz-keyframes fadeIn {
10317 from {
10376 from {
10318 opacity: 0;
10377 opacity: 0;
10319 }
10378 }
10320 to {
10379 to {
10321 opacity: 1;
10380 opacity: 1;
10322 }
10381 }
10323 }
10382 }
10324 @-webkit-keyframes fadeIn {
10383 @-webkit-keyframes fadeIn {
10325 from {
10384 from {
10326 opacity: 0;
10385 opacity: 0;
10327 }
10386 }
10328 to {
10387 to {
10329 opacity: 1;
10388 opacity: 1;
10330 }
10389 }
10331 }
10390 }
10332 /*properties of tooltip after "expand"*/
10391 /*properties of tooltip after "expand"*/
10333 .bigtooltip {
10392 .bigtooltip {
10334 overflow: auto;
10393 overflow: auto;
10335 height: 200px;
10394 height: 200px;
10336 -webkit-transition-property: height;
10395 -webkit-transition-property: height;
10337 -webkit-transition-duration: 500ms;
10396 -webkit-transition-duration: 500ms;
10338 -moz-transition-property: height;
10397 -moz-transition-property: height;
10339 -moz-transition-duration: 500ms;
10398 -moz-transition-duration: 500ms;
10340 transition-property: height;
10399 transition-property: height;
10341 transition-duration: 500ms;
10400 transition-duration: 500ms;
10342 }
10401 }
10343 /*properties of tooltip before "expand"*/
10402 /*properties of tooltip before "expand"*/
10344 .smalltooltip {
10403 .smalltooltip {
10345 -webkit-transition-property: height;
10404 -webkit-transition-property: height;
10346 -webkit-transition-duration: 500ms;
10405 -webkit-transition-duration: 500ms;
10347 -moz-transition-property: height;
10406 -moz-transition-property: height;
10348 -moz-transition-duration: 500ms;
10407 -moz-transition-duration: 500ms;
10349 transition-property: height;
10408 transition-property: height;
10350 transition-duration: 500ms;
10409 transition-duration: 500ms;
10351 text-overflow: ellipsis;
10410 text-overflow: ellipsis;
10352 overflow: hidden;
10411 overflow: hidden;
10353 height: 80px;
10412 height: 80px;
10354 }
10413 }
10355 .tooltipbuttons {
10414 .tooltipbuttons {
10356 position: absolute;
10415 position: absolute;
10357 padding-right: 15px;
10416 padding-right: 15px;
10358 top: 0px;
10417 top: 0px;
10359 right: 0px;
10418 right: 0px;
10360 }
10419 }
10361 .tooltiptext {
10420 .tooltiptext {
10362 /*avoid the button to overlap on some docstring*/
10421 /*avoid the button to overlap on some docstring*/
10363 padding-right: 30px;
10422 padding-right: 30px;
10364 }
10423 }
10365 .ipython_tooltip {
10424 .ipython_tooltip {
10366 max-width: 700px;
10425 max-width: 700px;
10367 /*fade-in animation when inserted*/
10426 /*fade-in animation when inserted*/
10368 -webkit-animation: fadeOut 400ms;
10427 -webkit-animation: fadeOut 400ms;
10369 -moz-animation: fadeOut 400ms;
10428 -moz-animation: fadeOut 400ms;
10370 animation: fadeOut 400ms;
10429 animation: fadeOut 400ms;
10371 -webkit-animation: fadeIn 400ms;
10430 -webkit-animation: fadeIn 400ms;
10372 -moz-animation: fadeIn 400ms;
10431 -moz-animation: fadeIn 400ms;
10373 animation: fadeIn 400ms;
10432 animation: fadeIn 400ms;
10374 vertical-align: middle;
10433 vertical-align: middle;
10375 background-color: #f7f7f7;
10434 background-color: #f7f7f7;
10376 overflow: visible;
10435 overflow: visible;
10377 border: #ababab 1px solid;
10436 border: #ababab 1px solid;
10378 outline: none;
10437 outline: none;
10379 padding: 3px;
10438 padding: 3px;
10380 margin: 0px;
10439 margin: 0px;
10381 padding-left: 7px;
10440 padding-left: 7px;
10382 font-family: monospace;
10441 font-family: monospace;
10383 min-height: 50px;
10442 min-height: 50px;
10384 -moz-box-shadow: 0px 6px 10px -1px #adadad;
10443 -moz-box-shadow: 0px 6px 10px -1px #adadad;
10385 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
10444 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
10386 box-shadow: 0px 6px 10px -1px #adadad;
10445 box-shadow: 0px 6px 10px -1px #adadad;
10387 border-radius: 4px;
10446 border-radius: 2px;
10388 position: absolute;
10447 position: absolute;
10389 z-index: 1000;
10448 z-index: 1000;
10390 }
10449 }
10391 .ipython_tooltip a {
10450 .ipython_tooltip a {
10392 float: right;
10451 float: right;
10393 }
10452 }
10394 .ipython_tooltip .tooltiptext pre {
10453 .ipython_tooltip .tooltiptext pre {
10395 border: 0;
10454 border: 0;
10396 border-radius: 0;
10455 border-radius: 0;
10397 font-size: 100%;
10456 font-size: 100%;
10398 background-color: #f7f7f7;
10457 background-color: #f7f7f7;
10399 }
10458 }
10400 .pretooltiparrow {
10459 .pretooltiparrow {
10401 left: 0px;
10460 left: 0px;
10402 margin: 0px;
10461 margin: 0px;
10403 top: -16px;
10462 top: -16px;
10404 width: 40px;
10463 width: 40px;
10405 height: 16px;
10464 height: 16px;
10406 overflow: hidden;
10465 overflow: hidden;
10407 position: absolute;
10466 position: absolute;
10408 }
10467 }
10409 .pretooltiparrow:before {
10468 .pretooltiparrow:before {
10410 background-color: #f7f7f7;
10469 background-color: #f7f7f7;
10411 border: 1px #ababab solid;
10470 border: 1px #ababab solid;
10412 z-index: 11;
10471 z-index: 11;
10413 content: "";
10472 content: "";
10414 position: absolute;
10473 position: absolute;
10415 left: 15px;
10474 left: 15px;
10416 top: 10px;
10475 top: 10px;
10417 width: 25px;
10476 width: 25px;
10418 height: 25px;
10477 height: 25px;
10419 -webkit-transform: rotate(45deg);
10478 -webkit-transform: rotate(45deg);
10420 -moz-transform: rotate(45deg);
10479 -moz-transform: rotate(45deg);
10421 -ms-transform: rotate(45deg);
10480 -ms-transform: rotate(45deg);
10422 -o-transform: rotate(45deg);
10481 -o-transform: rotate(45deg);
10423 }
10482 }
10424 .terminal {
10483 .terminal {
10425 float: left;
10484 float: left;
10426 border: black solid 5px;
10485 font-family: monospace;
10427 font-family: "DejaVu Sans Mono", "Liberation Mono", monospace;
10428 font-size: 11px;
10429 color: white;
10486 color: white;
10430 background: black;
10487 background: black;
10488 padding: 0.4em;
10489 border-radius: 2px;
10490 -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
10491 box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
10492 }
10493 .terminal,
10494 .terminal dummy-screen {
10495 line-height: 1em;
10496 font-size: 14px;
10431 }
10497 }
10432 .terminal-cursor {
10498 .terminal-cursor {
10433 color: black;
10499 color: black;
10434 background: white;
10500 background: white;
10435 }
10501 }
10436 #terminado-container {
10502 #terminado-container {
10437 margin: 8px;
10503 margin-top: 20px;
10438 }
10504 }
10439 /*# sourceMappingURL=style.min.css.map */ No newline at end of file
10505 /*# sourceMappingURL=style.min.css.map */
@@ -1,53 +1,53 b''
1 // Copyright (c) IPython Development Team.
1 // Copyright (c) IPython Development Team.
2 // Distributed under the terms of the Modified BSD License.
2 // Distributed under the terms of the Modified BSD License.
3
3
4 require([
4 require([
5 'jquery',
5 'jquery',
6 'termjs',
6 'termjs',
7 'base/js/utils',
7 'base/js/utils',
8 'base/js/page',
8 'base/js/page',
9 'terminal/js/terminado',
9 'terminal/js/terminado',
10 'custom/custom',
10 'custom/custom',
11 ], function(
11 ], function(
12 $,
12 $,
13 termjs,
13 termjs,
14 utils,
14 utils,
15 page,
15 page,
16 terminado
16 terminado
17 ){
17 ){
18 page = new page.Page();
18 page = new page.Page();
19 // Test size: 25x80
19 // Test size: 25x80
20 var termRowHeight = function(){ return 1.00 * $("#dummy-screen")[0].offsetHeight / 25;};
20 var termRowHeight = function(){ return 1.00 * $("#dummy-screen")[0].offsetHeight / 25;};
21 // 1.02 here arrived at by trial and error to make the spacing look right
21 // 1.02 here arrived at by trial and error to make the spacing look right
22 var termColWidth = function() { return 1.02 * $("#dummy-screen-rows")[0].offsetWidth / 80;};
22 var termColWidth = function() { return 1.02 * $("#dummy-screen-rows")[0].offsetWidth / 80;};
23
23
24 var base_url = utils.get_body_data('baseUrl');
24 var base_url = utils.get_body_data('baseUrl');
25 var ws_path = utils.get_body_data('wsPath');
25 var ws_path = utils.get_body_data('wsPath');
26 var ws_url = location.protocol.replace('http', 'ws') + "//" + location.host
26 var ws_url = location.protocol.replace('http', 'ws') + "//" + location.host
27 + base_url + ws_path;
27 + base_url + ws_path;
28
28
29 var header = $("#header")[0]
29 var header = $("#header")[0]
30 function calculate_size() {
30 function calculate_size() {
31 height = window.innerHeight - header.offsetHeight;
31 height = window.innerHeight - header.offsetHeight;
32 width = window.innerWidth;
32 width = $('#terminado-container').width();
33 var rows = Math.min(1000, Math.max(20, Math.floor(height/termRowHeight())-1));
33 var rows = Math.min(1000, Math.max(20, Math.floor(height/termRowHeight())-1));
34 var cols = Math.min(1000, Math.max(40, Math.floor(width/termColWidth())-1));
34 var cols = Math.min(1000, Math.max(40, Math.floor(width/termColWidth())-1));
35 console.log("resize to :", rows , 'rows by ', cols, 'columns');
35 console.log("resize to :", rows , 'rows by ', cols, 'columns');
36 return {rows: rows, cols: cols};
36 return {rows: rows, cols: cols};
37 }
37 }
38
38
39 page.show_header();
39 page.show_header();
40
40
41 size = calculate_size();
41 size = calculate_size();
42 var terminal = terminado.make_terminal($("#terminado-container")[0], size, ws_url);
42 var terminal = terminado.make_terminal($("#terminado-container")[0], size, ws_url);
43
43
44 page.show_site();
44 page.show_site();
45
45
46 window.onresize = function() {
46 window.onresize = function() {
47 var geom = calculate_size();
47 var geom = calculate_size();
48 terminal.term.resize(geom.cols, geom.rows);
48 terminal.term.resize(geom.cols, geom.rows);
49 terminal.socket.send(JSON.stringify(["set_size", geom.rows, geom.cols,
49 terminal.socket.send(JSON.stringify(["set_size", geom.rows, geom.cols,
50 window.innerHeight, window.innerWidth]));
50 window.innerHeight, window.innerWidth]));
51 };
51 };
52
52
53 });
53 });
@@ -1,17 +1,23 b''
1 .terminal {
1 .terminal {
2 float: left;
2 float: left;
3 border: black solid 5px;
3 font-family: monospace;
4 font-family: "DejaVu Sans Mono", "Liberation Mono", monospace;
5 font-size: 11px;
6 color: white;
4 color: white;
7 background: black;
5 background: black;
6 padding: @code_padding;
7 border-radius: @border-radius-base;
8 .box-shadow(@global-shadow-dark);
9
10 &, dummy-screen {
11 line-height: 1em;
12 font-size: @notebook_font_size;
13 }
8 }
14 }
9
15
10 .terminal-cursor {
16 .terminal-cursor {
11 color: black;
17 color: black;
12 background: white;
18 background: white;
13 }
19 }
14
20
15 #terminado-container {
21 #terminado-container {
16 margin: 8px;
22 margin-top: @page-header-padding;
17 }
23 }
@@ -1,7 +1,3 b''
1 /*This file contains any manual css for this page that needs to override the global styles.
1 /*This file contains any manual css for this page that needs to override the global styles.
2 This is only required when different pages style the same element differently. This is just
2 This is only required when different pages style the same element differently. This is just
3 a hack to deal with our current css styles and no new styling should be added in this file.*/
3 a hack to deal with our current css styles and no new styling should be added in this file.*/
4
5 #ipython-main-app {
6 margin: 28px auto 0px auto;
7 }
@@ -1,177 +1,181 b''
1
1
2 /**
2 /**
3 * Primary styles
3 * Primary styles
4 *
4 *
5 * Author: IPython Development Team
5 * Author: IPython Development Team
6 */
6 */
7
7
8 @dashboard_tb_pad: 4px;
8 @dashboard_tb_pad: 4px;
9 @dashboard_lr_pad: 7px;
9 @dashboard_lr_pad: 7px;
10 // These are the total heights of the Bootstrap small and mini buttons. These values
10 // These are the total heights of the Bootstrap small and mini buttons. These values
11 // are not less variables so we have to track them statically.
11 // are not less variables so we have to track them statically.
12 @btn_small_height: 24px;
12 @btn_small_height: 24px;
13 @btn_mini_height: 22px;
13 @btn_mini_height: 22px;
14 @dark_dashboard_color: @breadcrumb-color;
14 @dark_dashboard_color: @breadcrumb-color;
15
15
16 ul#tabs {
16 ul#tabs {
17 margin-bottom: @dashboard_tb_pad;
17 margin-bottom: @dashboard_tb_pad;
18 }
18 }
19
19
20 ul#tabs a {
20 ul#tabs a {
21 padding-top: @dashboard_tb_pad + 2px;
21 padding-top: @dashboard_tb_pad + 2px;
22 padding-bottom: @dashboard_tb_pad;
22 padding-bottom: @dashboard_tb_pad;
23 }
23 }
24
24
25 ul.breadcrumb {
25 ul.breadcrumb {
26 a:focus, a:hover {
26 a:focus, a:hover {
27 text-decoration: none;
27 text-decoration: none;
28 }
28 }
29 i.icon-home {
29 i.icon-home {
30 font-size: 16px;
30 font-size: 16px;
31 margin-right: 4px;
31 margin-right: 4px;
32 }
32 }
33
33
34 span {
34 span {
35 color: @dark_dashboard_color;
35 color: @dark_dashboard_color;
36 }
36 }
37 }
37 }
38
38
39 .list_toolbar {
39 .list_toolbar {
40 padding: @dashboard_tb_pad 0 @dashboard_tb_pad 0;
40 padding: @dashboard_tb_pad 0 @dashboard_tb_pad 0;
41 vertical-align: middle;
41 vertical-align: middle;
42
42
43 .tree-buttons {
43 .tree-buttons {
44 padding-top: 2px;
44 padding-top: 2px;
45 }
45 }
46 }
46 }
47
47
48 .list_toolbar [class*="span"] {
48 .list_toolbar [class*="span"] {
49 min-height: @btn_small_height;
49 min-height: @btn_small_height;
50 }
50 }
51
51
52 .list_header {
52 .list_header {
53 font-weight: bold;
53 font-weight: bold;
54 }
54 }
55
55
56 .list_container {
56 .list_container {
57 margin-top: @dashboard_tb_pad;
57 margin-top: @dashboard_tb_pad;
58 margin-bottom: 5*@dashboard_tb_pad;
58 margin-bottom: 5*@dashboard_tb_pad;
59 border: 1px solid @border_color;
59 border: 1px solid @border_color;
60 border-radius: 4px;
60 border-radius: @border-radius-base;
61 }
61 }
62
62
63 .list_container > div {
63 .list_container > div {
64 border-bottom: 1px solid @border_color;
64 border-bottom: 1px solid @border_color;
65 &:hover .list-item{
65 &:hover .list-item{
66 background-color: red;
66 background-color: red;
67 };
67 };
68 }
68 }
69
69
70 .list_container > div:last-child {
70 .list_container > div:last-child {
71 border: none;
71 border: none;
72 }
72 }
73
73
74 .list_item {
74 .list_item {
75 &:hover .list_item {
75 &:hover .list_item {
76 background-color: #ddd;
76 background-color: #ddd;
77 };
77 };
78 a {text-decoration: none;}
78 a {text-decoration: none;}
79 }
79 }
80
80
81 .action_col {
81 .action_col {
82 text-align: right;
82 text-align: right;
83 }
83 }
84
84
85 .list_header>div, .list_item>div {
85 .list_header>div, .list_item>div {
86 padding-top: @dashboard_tb_pad;
86 padding-top: @dashboard_tb_pad;
87 padding-bottom: @dashboard_tb_pad;
87 padding-bottom: @dashboard_tb_pad;
88 padding-left: @dashboard_lr_pad;
88 padding-left: @dashboard_lr_pad;
89 padding-right: @dashboard_lr_pad;
89 padding-right: @dashboard_lr_pad;
90 line-height: @btn_mini_height;
90 line-height: @btn_mini_height;
91 }
91 }
92
92
93 .item_name {
93 .item_name {
94 line-height: @btn_mini_height;
94 line-height: @btn_mini_height;
95 height: @btn_small_height;
95 height: @btn_small_height;
96 }
96 }
97
97
98 .item_icon {
98 .item_icon {
99 font-size: 14px;
99 font-size: 14px;
100 color: @dark_dashboard_color;
100 color: @dark_dashboard_color;
101 margin-right: @dashboard_lr_pad;
101 margin-right: @dashboard_lr_pad;
102 }
102 }
103
103
104 .item_buttons {
104 .item_buttons {
105 line-height: 1em;
105 line-height: 1em;
106 .btn {
106 .btn {
107 min-width: 13ex;
107 min-width: 13ex;
108 }
108 }
109 .btn-toolbar();
109 .btn-toolbar();
110 }
110 }
111
111
112 .toolbar_info {
112 .toolbar_info {
113 height: @btn_small_height;
113 height: @btn_small_height;
114 line-height: @btn_small_height;
114 line-height: @btn_small_height;
115 }
115 }
116
116
117 input.nbname_input, input.engine_num_input {
117 input.nbname_input, input.engine_num_input {
118 // These settings give these inputs a height that matches @btn_mini_height = 22
118 // These settings give these inputs a height that matches @btn_mini_height = 22
119 padding-top: 3px;
119 padding-top: 3px;
120 padding-bottom: 3px;
120 padding-bottom: 3px;
121 height: @btn_mini_height;
121 height: @btn_mini_height;
122 line-height: 14px;
122 line-height: 14px;
123 margin: 0px;
123 margin: 0px;
124 }
124 }
125
125
126 input.engine_num_input {
126 input.engine_num_input {
127 width: 60px;
127 width: 60px;
128 }
128 }
129
129
130 .highlight_text {
130 .highlight_text {
131 color: blue;
131 color: blue;
132 }
132 }
133
133
134 #project_name > .breadcrumb {
134 #project_name > .breadcrumb {
135 padding: 0px;
135 padding: 0px;
136 margin-bottom: 0px;
136 margin-bottom: 0px;
137 background-color: transparent;
137 background-color: transparent;
138 font-weight: bold;
138 font-weight: bold;
139
139
140 }
140 }
141
141
142 .tab-content .row {
142 .tab-content .row {
143 margin-left: 0px;
143 margin-left: 0px;
144 margin-right: 0px;
144 margin-right: 0px;
145 }
145 }
146
146
147 .folder_icon:before {
147 .folder_icon:before {
148 .icon(@fa-var-folder-o)
148 .icon(@fa-var-folder-o)
149 }
149 }
150
150
151 .notebook_icon:before {
151 .notebook_icon:before {
152 .icon(@fa-var-book)
152 .icon(@fa-var-book)
153 }
153 }
154
154
155 .file_icon:before {
155 .file_icon:before {
156 .icon(@fa-var-file-o)
156 .icon(@fa-var-file-o)
157 }
157 }
158
158
159 ul#new-menu {
159 ul#new-menu {
160 // align right instead of left
160 // align right instead of left
161 left: auto;
161 left: auto;
162 right: 0;
162 right: 0;
163 }
163 }
164
164
165 .kernel-menu-icon {
165 .kernel-menu-icon {
166 padding-right: 12px;
166 padding-right: 12px;
167 width: 24px;
167 width: 24px;
168 content: @fa-var-square-o;
168 content: @fa-var-square-o;
169 }
169 }
170
170
171 .kernel-menu-icon:before {
171 .kernel-menu-icon:before {
172 content: @fa-var-square-o;
172 content: @fa-var-square-o;
173 }
173 }
174
174
175 .kernel-menu-icon-current:before {
175 .kernel-menu-icon-current:before {
176 content: @fa-var-check;
176 content: @fa-var-check;
177 }
178
179 #tab_content {
180 padding-top: @page-header-padding;
177 }
181 }
@@ -1,92 +1,96 b''
1 {% extends "page.html" %}
1 {% extends "page.html" %}
2
2
3 {% block title %}{{page_title}}{% endblock %}
3 {% block title %}{{page_title}}{% endblock %}
4
4
5 {% block stylesheet %}
5 {% block stylesheet %}
6 <link rel="stylesheet" href="{{ static_url('components/codemirror/lib/codemirror.css') }}">
6 <link rel="stylesheet" href="{{ static_url('components/codemirror/lib/codemirror.css') }}">
7 <link rel="stylesheet" href="{{ static_url('components/codemirror/addon/dialog/dialog.css') }}">
7 <link rel="stylesheet" href="{{ static_url('components/codemirror/addon/dialog/dialog.css') }}">
8 {{super()}}
8 {{super()}}
9 {% endblock %}
9 {% endblock %}
10
10
11 {% block params %}
11 {% block params %}
12
12
13 class="edit_app"
13 data-base-url="{{base_url}}"
14 data-base-url="{{base_url}}"
14 data-file-path="{{file_path}}"
15 data-file-path="{{file_path}}"
15
16
16 {% endblock %}
17 {% endblock %}
17
18
18 {% block headercontainer %}
19 {% block headercontainer %}
19
20
20 <span id="save_widget" class="pull-left save_widget">
21 <span id="save_widget" class="pull-left save_widget">
21 <span class="filename"></span>
22 <span class="filename"></span>
22 <span class="last_modified"></span>
23 <span class="last_modified"></span>
23 </span>
24 </span>
24
25
25 {% endblock %}
26 {% endblock %}
26
27
27 {% block header %}
28 {% block header %}
28
29
29 <div id="menubar-container" class="container">
30 <div id="menubar-container" class="container">
30 <div id="menubar">
31 <div id="menubar">
31 <div id="menus" class="navbar navbar-default" role="navigation">
32 <div id="menus" class="navbar navbar-default" role="navigation">
32 <div class="container-fluid">
33 <div class="container-fluid">
33 <button type="button" class="btn btn-default navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
34 <button type="button" class="btn btn-default navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
34 <i class="fa fa-bars"></i>
35 <i class="fa fa-bars"></i>
35 <span class="navbar-text">Menu</span>
36 <span class="navbar-text">Menu</span>
36 </button>
37 </button>
37 <ul class="nav navbar-nav navbar-right">
38 <ul class="nav navbar-nav navbar-right">
38 <li id="notification_area"></li>
39 <li id="notification_area"></li>
39 </ul>
40 </ul>
40 <div class="navbar-collapse collapse">
41 <div class="navbar-collapse collapse">
41 <ul class="nav navbar-nav">
42 <ul class="nav navbar-nav">
42 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">File</a>
43 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">File</a>
43 <ul id="file-menu" class="dropdown-menu">
44 <ul id="file-menu" class="dropdown-menu">
44 <li id="new-file"><a href="#">New</a></li>
45 <li id="new-file"><a href="#">New</a></li>
45 <li id="save-file"><a href="#">Save</a></li>
46 <li id="save-file"><a href="#">Save</a></li>
46 <li id="rename-file"><a href="#">Rename</a></li>
47 <li id="rename-file"><a href="#">Rename</a></li>
47 </ul>
48 </ul>
48 </li>
49 </li>
49 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Edit</a>
50 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Edit</a>
50 <ul id="edit-menu" class="dropdown-menu">
51 <ul id="edit-menu" class="dropdown-menu">
51 <li id="menu-find"><a href="#">Find</a></li>
52 <li id="menu-find"><a href="#">Find</a></li>
52 <li id="menu-replace"><a href="#">Find &amp; Replace</a></li>
53 <li id="menu-replace"><a href="#">Find &amp; Replace</a></li>
53 <li class="divider"></li>
54 <li class="divider"></li>
54 <li class="dropdown-header">Key Map</li>
55 <li class="dropdown-header">Key Map</li>
55 <li id="menu-keymap-default"><a href="#">Default<i class="fa"></i></a></li>
56 <li id="menu-keymap-default"><a href="#">Default<i class="fa"></i></a></li>
56 <li id="menu-keymap-sublime"><a href="#">Sublime Text<i class="fa"></i></a></li>
57 <li id="menu-keymap-sublime"><a href="#">Sublime Text<i class="fa"></i></a></li>
57 <li id="menu-keymap-vim"><a href="#">Vim<i class="fa"></i></a></li>
58 <li id="menu-keymap-vim"><a href="#">Vim<i class="fa"></i></a></li>
58 <li id="menu-keymap-emacs"><a href="#">emacs<i class="fa"></i></a></li>
59 <li id="menu-keymap-emacs"><a href="#">emacs<i class="fa"></i></a></li>
59 </ul>
60 </ul>
60 </li>
61 </li>
61 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">View</a>
62 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">View</a>
62 <ul id="view-menu" class="dropdown-menu">
63 <ul id="view-menu" class="dropdown-menu">
63 <li id="menu-line-numbers"><a href="#">Toggle Line Numbers</a></li>
64 <li id="menu-line-numbers"><a href="#">Toggle Line Numbers</a></li>
64 </ul>
65 </ul>
65 </li>
66 </li>
66 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Language</a>
67 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Language</a>
67 <ul id="mode-menu" class="dropdown-menu">
68 <ul id="mode-menu" class="dropdown-menu">
68 </ul>
69 </ul>
69 </li>
70 </li>
70 </ul>
71 </ul>
71 <p id="current-mode" class="navbar-text navbar-right">current mode</p>
72 <p id="current-mode" class="navbar-text navbar-right">current mode</p>
72 </div>
73 </div>
73 </div>
74 </div>
74 </div>
75 </div>
75 </div>
76 </div>
76 </div>
77 </div>
77
78
79 <div class="lower-header-bar"></div>
80
78 {% endblock %}
81 {% endblock %}
79
82
80 {% block site %}
83 {% block site %}
81
84
82
85 <div id="texteditor-backdrop">
83 <div id="texteditor-container" class="container"></div>
86 <div id="texteditor-container" class="container"></div>
87 </div>
84
88
85 {% endblock %}
89 {% endblock %}
86
90
87 {% block script %}
91 {% block script %}
88
92
89 {{super()}}
93 {{super()}}
90
94
91 <script src="{{ static_url("edit/js/main.js") }}" type="text/javascript" charset="utf-8"></script>
95 <script src="{{ static_url("edit/js/main.js") }}" type="text/javascript" charset="utf-8"></script>
92 {% endblock %}
96 {% endblock %}
@@ -1,120 +1,121 b''
1 <!DOCTYPE HTML>
1 <!DOCTYPE HTML>
2 <html>
2 <html>
3
3
4 <head>
4 <head>
5 <meta charset="utf-8">
5 <meta charset="utf-8">
6
6
7 <title>{% block title %}IPython Notebook{% endblock %}</title>
7 <title>{% block title %}IPython Notebook{% endblock %}</title>
8 {% block favicon %}<link rel="shortcut icon" type="image/x-icon" href="{{static_url("base/images/favicon.ico") }}">{% endblock %}
8 {% block favicon %}<link rel="shortcut icon" type="image/x-icon" href="{{static_url("base/images/favicon.ico") }}">{% endblock %}
9 <meta http-equiv="X-UA-Compatible" content="IE=edge" />
9 <meta http-equiv="X-UA-Compatible" content="IE=edge" />
10 <link rel="stylesheet" href="{{static_url("components/jquery-ui/themes/smoothness/jquery-ui.min.css") }}" type="text/css" />
10 <link rel="stylesheet" href="{{static_url("components/jquery-ui/themes/smoothness/jquery-ui.min.css") }}" type="text/css" />
11 <meta name="viewport" content="width=device-width, initial-scale=1.0">
11 <meta name="viewport" content="width=device-width, initial-scale=1.0">
12
12
13 {% block stylesheet %}
13 {% block stylesheet %}
14 <link rel="stylesheet" href="{{ static_url("style/style.min.css") }}" type="text/css"/>
14 <link rel="stylesheet" href="{{ static_url("style/style.min.css") }}" type="text/css"/>
15 {% endblock %}
15 {% endblock %}
16 <link rel="stylesheet" href="{{ static_url("custom/custom.css") }}" type="text/css" />
16 <link rel="stylesheet" href="{{ static_url("custom/custom.css") }}" type="text/css" />
17 <script src="{{static_url("components/es6-promise/promise.min.js")}}" type="text/javascript" charset="utf-8"></script>
17 <script src="{{static_url("components/es6-promise/promise.min.js")}}" type="text/javascript" charset="utf-8"></script>
18 <script src="{{static_url("components/requirejs/require.js") }}" type="text/javascript" charset="utf-8"></script>
18 <script src="{{static_url("components/requirejs/require.js") }}" type="text/javascript" charset="utf-8"></script>
19 <script>
19 <script>
20 require.config({
20 require.config({
21 {% if version_hash %}
21 {% if version_hash %}
22 urlArgs: "v={{version_hash}}",
22 urlArgs: "v={{version_hash}}",
23 {% endif %}
23 {% endif %}
24 baseUrl: '{{static_url("", include_version=False)}}',
24 baseUrl: '{{static_url("", include_version=False)}}',
25 paths: {
25 paths: {
26 nbextensions : '{{ base_url }}nbextensions',
26 nbextensions : '{{ base_url }}nbextensions',
27 kernelspecs : '{{ base_url }}kernelspecs',
27 kernelspecs : '{{ base_url }}kernelspecs',
28 underscore : 'components/underscore/underscore-min',
28 underscore : 'components/underscore/underscore-min',
29 backbone : 'components/backbone/backbone-min',
29 backbone : 'components/backbone/backbone-min',
30 jquery: 'components/jquery/jquery.min',
30 jquery: 'components/jquery/jquery.min',
31 bootstrap: 'components/bootstrap/js/bootstrap.min',
31 bootstrap: 'components/bootstrap/js/bootstrap.min',
32 bootstraptour: 'components/bootstrap-tour/build/js/bootstrap-tour.min',
32 bootstraptour: 'components/bootstrap-tour/build/js/bootstrap-tour.min',
33 jqueryui: 'components/jquery-ui/ui/minified/jquery-ui.min',
33 jqueryui: 'components/jquery-ui/ui/minified/jquery-ui.min',
34 moment: 'components/moment/moment',
34 moment: 'components/moment/moment',
35 codemirror: 'components/codemirror',
35 codemirror: 'components/codemirror',
36 termjs: 'components/term.js/src/term',
36 termjs: 'components/term.js/src/term',
37 },
37 },
38 shim: {
38 shim: {
39 underscore: {
39 underscore: {
40 exports: '_'
40 exports: '_'
41 },
41 },
42 backbone: {
42 backbone: {
43 deps: ["underscore", "jquery"],
43 deps: ["underscore", "jquery"],
44 exports: "Backbone"
44 exports: "Backbone"
45 },
45 },
46 bootstrap: {
46 bootstrap: {
47 deps: ["jquery"],
47 deps: ["jquery"],
48 exports: "bootstrap"
48 exports: "bootstrap"
49 },
49 },
50 bootstraptour: {
50 bootstraptour: {
51 deps: ["bootstrap"],
51 deps: ["bootstrap"],
52 exports: "Tour"
52 exports: "Tour"
53 },
53 },
54 jqueryui: {
54 jqueryui: {
55 deps: ["jquery"],
55 deps: ["jquery"],
56 exports: "$"
56 exports: "$"
57 }
57 }
58 }
58 }
59 });
59 });
60
60
61 require.config({
61 require.config({
62 map: {
62 map: {
63 '*':{
63 '*':{
64 'contents': '{{ contents_js_source }}',
64 'contents': '{{ contents_js_source }}',
65 }
65 }
66 }
66 }
67 });
67 });
68 </script>
68 </script>
69
69
70 {% block meta %}
70 {% block meta %}
71 {% endblock %}
71 {% endblock %}
72
72
73 </head>
73 </head>
74
74
75 <body {% block params %}{% endblock %}>
75 <body {% block params %}{% endblock %}>
76
76
77 <noscript>
77 <noscript>
78 <div id='noscript'>
78 <div id='noscript'>
79 IPython Notebook requires JavaScript.<br>
79 IPython Notebook requires JavaScript.<br>
80 Please enable it to proceed.
80 Please enable it to proceed.
81 </div>
81 </div>
82 </noscript>
82 </noscript>
83
83
84 <div id="header" class="navbar navbar-fixed-top">
84 <div id="header" class="navbar navbar-fixed-top">
85 <div id="header-container" class="container">
85 <div id="header-container" class="container">
86 <div id="ipython_notebook" class="nav navbar-brand pull-left"><a href="{{base_url}}tree" title='dashboard'>{% block logo %}<img src='{{static_url("base/images/logo.png") }}' alt='Jupyter Notebook'/>{% endblock %}</a></div>
86 <div id="ipython_notebook" class="nav navbar-brand pull-left"><a href="{{base_url}}tree" title='dashboard'>{% block logo %}<img src='{{static_url("base/images/logo.png") }}' alt='Jupyter Notebook'/>{% endblock %}</a></div>
87
87
88 {% block login_widget %}
88 {% block login_widget %}
89
89
90 <span id="login_widget">
90 <span id="login_widget">
91 {% if logged_in %}
91 {% if logged_in %}
92 <button id="logout" class="btn btn-sm navbar-btn">Logout</button>
92 <button id="logout" class="btn btn-sm navbar-btn">Logout</button>
93 {% elif login_available and not logged_in %}
93 {% elif login_available and not logged_in %}
94 <button id="login" class="btn btn-sm navbar-btn">Login</button>
94 <button id="login" class="btn btn-sm navbar-btn">Login</button>
95 {% endif %}
95 {% endif %}
96 </span>
96 </span>
97
97
98 {% endblock %}
98 {% endblock %}
99
99
100 {% block headercontainer %}
100 {% block headercontainer %}
101 {% endblock %}
101 {% endblock %}
102 </div>
102 </div>
103 <div class="header-bar"></div>
103 <div class="header-bar"></div>
104
104
105 {% block header %}
105 {% block header %}
106 {% endblock %}
106 {% endblock %}
107 </div>
107 </div>
108
108 <div id="header-spacer"></div>
109 <div id="header-spacer"></div>
109
110
110 <div id="site">
111 <div id="site">
111 {% block site %}
112 {% block site %}
112 {% endblock %}
113 {% endblock %}
113 </div>
114 </div>
114
115
115 {% block script %}
116 {% block script %}
116 {% endblock %}
117 {% endblock %}
117
118
118 </body>
119 </body>
119
120
120 </html>
121 </html>
@@ -1,57 +1,62 b''
1 {% extends "page.html" %}
1 {% extends "page.html" %}
2
2
3 {% block title %}{{page_title}}{% endblock %}
3 {% block title %}{{page_title}}{% endblock %}
4
4
5 {% block params %}
5 {% block params %}
6
6
7 data-base-url="{{base_url}}"
7 data-base-url="{{base_url}}"
8 data-ws-path="{{ws_path}}"
8 data-ws-path="{{ws_path}}"
9
9
10 {% endblock %}
10 {% endblock %}
11
11
12 {% block stylesheet %}
13 {{super()}}
14
15 <link rel="stylesheet" href="{{ static_url("terminal/css/override.css") }}" type="text/css" />
16 {% endblock %}
12
17
13 {% block site %}
18 {% block site %}
14
19
15 <div id="terminado-container"></div>
20 <div id="terminado-container" class="container"></div>
16
21
17 {% endblock %}
22 {% endblock %}
18
23
19 {% block script %}
24 {% block script %}
20
25
21 <!-- Hack: this needs to be outside the display:none block, so we can measure
26 <!-- Hack: this needs to be outside the display:none block, so we can measure
22 its size in JS in setting up the page. It is still invisible. Putting in
27 its size in JS in setting up the page. It is still invisible. Putting in
23 the script block gets it outside the initially undisplayed region. -->
28 the script block gets it outside the initially undisplayed region. -->
24 <!-- test size: 25x80 -->
29 <!-- test size: 25x80 -->
25 <div style='position:absolute; left:-1000em'>
30 <div style='position:absolute; left:-1000em'>
26 <pre id="dummy-screen" style="border: solid 5px white;" class="terminal">0
31 <pre id="dummy-screen" style="border: solid 5px white;" class="terminal">0
27 1
32 1
28 2
33 2
29 3
34 3
30 4
35 4
31 5
36 5
32 6
37 6
33 7
38 7
34 8
39 8
35 9
40 9
36 0
41 0
37 1
42 1
38 2
43 2
39 3
44 3
40 4
45 4
41 5
46 5
42 6
47 6
43 7
48 7
44 8
49 8
45 9
50 9
46 0
51 0
47 1
52 1
48 2
53 2
49 3
54 3
50 <span id="dummy-screen-rows" style="">01234567890123456789012345678901234567890123456789012345678901234567890123456789</span>
55 <span id="dummy-screen-rows" style="">01234567890123456789012345678901234567890123456789012345678901234567890123456789</span>
51 </pre>
56 </pre>
52 </div>
57 </div>
53
58
54 {{super()}}
59 {{super()}}
55
60
56 <script src="{{ static_url("terminal/js/main.js") }}" type="text/javascript" charset="utf-8"></script>
61 <script src="{{ static_url("terminal/js/main.js") }}" type="text/javascript" charset="utf-8"></script>
57 {% endblock %}
62 {% endblock %}
General Comments 0
You need to be logged in to leave comments. Login now