##// END OF EJS Templates
Merge pull request #6084 from tomspur/fontawesome4...
Min RK -
r17419:80344f12 merge
parent child Browse files
Show More
@@ -1,95 +1,100
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: white;
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 margin-bottom: 0px;
23 margin-bottom: 0px;
24 padding-left: 30px;
24 padding-left: 30px;
25 padding-bottom: 5px;
25 padding-bottom: 5px;
26 border-bottom: 1px solid @navbar-default-border;
26 border-bottom: 1px solid @navbar-default-border;
27 }
27 }
28
28
29 #ipython_notebook {
29 #ipython_notebook {
30 padding-left: 0px;
30 padding-left: 0px;
31 }
31 }
32
32
33 #noscript {
33 #noscript {
34 width: auto;
34 width: auto;
35 padding-top: 16px;
35 padding-top: 16px;
36 padding-bottom: 16px;
36 padding-bottom: 16px;
37 text-align: center;
37 text-align: center;
38 font-size: 22px;
38 font-size: 22px;
39 color: red;
39 color: red;
40 font-weight: bold;
40 font-weight: bold;
41 }
41 }
42
42
43 #ipython_notebook img {
43 #ipython_notebook img {
44 font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
44 font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
45 height: 24px;
45 height: 24px;
46 text-decoration:none;
46 text-decoration:none;
47 color: black;
47 color: black;
48 }
48 }
49
49
50 #site {
50 #site {
51 width: 100%;
51 width: 100%;
52 display: none;
52 display: none;
53 }
53 }
54
54
55 /* Smaller buttons */
55 /* Smaller buttons */
56 .ui-button .ui-button-text {
56 .ui-button .ui-button-text {
57 padding: 0.2em 0.8em;
57 padding: 0.2em 0.8em;
58 font-size: 77%;
58 font-size: 77%;
59 }
59 }
60
60
61 input.ui-button {
61 input.ui-button {
62 padding: 0.3em 0.9em;
62 padding: 0.3em 0.9em;
63 }
63 }
64 .navbar span {
64 .navbar span {
65 margin-top: 3px;
65 margin-top: 3px;
66 }
66 }
67
67
68 span#login_widget {
68 span#login_widget {
69 float: right;
69 float: right;
70 }
70 }
71
71
72 .nav-header {
72 .nav-header {
73 text-transform: none;
73 text-transform: none;
74 }
74 }
75
75
76 #header > span {
76 #header > span {
77 margin-top: 10px;
77 margin-top: 10px;
78 }
78 }
79
79
80 // class for stretching dialogs to fill the screen
80 // class for stretching dialogs to fill the screen
81 .modal_stretch .modal-dialog {
81 .modal_stretch .modal-dialog {
82 .vbox();
82 .vbox();
83 min-height: 80%;
83 min-height: 80%;
84 .modal-body {
84 .modal-body {
85 max-height: none;
85 max-height: none;
86 flex: 1;
86 flex: 1;
87 }
87 }
88 }
88 }
89
89
90 @media (min-width: 768px) {
90 @media (min-width: 768px) {
91 .modal .modal-dialog {
91 .modal .modal-dialog {
92 width: 700px;
92 width: 700px;
93 }
93 }
94 }
94 }
95
95
96 // less mixin to be sure to add the right class to get icons with font awesome.
97 .icon(@ico){
98 .fa();
99 content: @ico;
100 }
@@ -1,1 +1,1
1 Subproject commit 7c07f705d4f068828fb76f74ac7d4d355aea06f9
1 Subproject commit a80ac7a2f6d045e3903d3c9e189a10cc96255b05
@@ -1,230 +1,230
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 'notebook/js/toolbar',
7 'notebook/js/toolbar',
8 'notebook/js/celltoolbar',
8 'notebook/js/celltoolbar',
9 ], function(IPython, $, toolbar, celltoolbar) {
9 ], function(IPython, $, toolbar, celltoolbar) {
10 "use strict";
10 "use strict";
11
11
12 var MainToolBar = function (selector, options) {
12 var MainToolBar = function (selector, options) {
13 // Constructor
13 // Constructor
14 //
14 //
15 // Parameters:
15 // Parameters:
16 // selector: string
16 // selector: string
17 // options: dictionary
17 // options: dictionary
18 // Dictionary of keyword arguments.
18 // Dictionary of keyword arguments.
19 // events: $(Events) instance
19 // events: $(Events) instance
20 // notebook: Notebook instance
20 // notebook: Notebook instance
21 toolbar.ToolBar.apply(this, arguments);
21 toolbar.ToolBar.apply(this, arguments);
22 this.events = options.events;
22 this.events = options.events;
23 this.notebook = options.notebook;
23 this.notebook = options.notebook;
24 this.construct();
24 this.construct();
25 this.add_celltype_list();
25 this.add_celltype_list();
26 this.add_celltoolbar_list();
26 this.add_celltoolbar_list();
27 this.bind_events();
27 this.bind_events();
28 };
28 };
29
29
30 MainToolBar.prototype = new toolbar.ToolBar();
30 MainToolBar.prototype = new toolbar.ToolBar();
31
31
32 MainToolBar.prototype.construct = function () {
32 MainToolBar.prototype.construct = function () {
33 var that = this;
33 var that = this;
34 this.add_buttons_group([
34 this.add_buttons_group([
35 {
35 {
36 id : 'save_b',
36 id : 'save_b',
37 label : 'Save and Checkpoint',
37 label : 'Save and Checkpoint',
38 icon : 'icon-save',
38 icon : 'fa-save',
39 callback : function () {
39 callback : function () {
40 that.notebook.save_checkpoint();
40 that.notebook.save_checkpoint();
41 }
41 }
42 }
42 }
43 ]);
43 ]);
44
44
45 this.add_buttons_group([
45 this.add_buttons_group([
46 {
46 {
47 id : 'insert_below_b',
47 id : 'insert_below_b',
48 label : 'Insert Cell Below',
48 label : 'Insert Cell Below',
49 icon : 'icon-plus-sign',
49 icon : 'fa-plus',
50 callback : function () {
50 callback : function () {
51 that.notebook.insert_cell_below('code');
51 that.notebook.insert_cell_below('code');
52 that.notebook.select_next();
52 that.notebook.select_next();
53 that.notebook.focus_cell();
53 that.notebook.focus_cell();
54 }
54 }
55 }
55 }
56 ],'insert_above_below');
56 ],'insert_above_below');
57
57
58 this.add_buttons_group([
58 this.add_buttons_group([
59 {
59 {
60 id : 'cut_b',
60 id : 'cut_b',
61 label : 'Cut Cell',
61 label : 'Cut Cell',
62 icon : 'icon-cut',
62 icon : 'fa-cut',
63 callback : function () {
63 callback : function () {
64 that.notebook.cut_cell();
64 that.notebook.cut_cell();
65 }
65 }
66 },
66 },
67 {
67 {
68 id : 'copy_b',
68 id : 'copy_b',
69 label : 'Copy Cell',
69 label : 'Copy Cell',
70 icon : 'icon-copy',
70 icon : 'fa-copy',
71 callback : function () {
71 callback : function () {
72 that.notebook.copy_cell();
72 that.notebook.copy_cell();
73 }
73 }
74 },
74 },
75 {
75 {
76 id : 'paste_b',
76 id : 'paste_b',
77 label : 'Paste Cell Below',
77 label : 'Paste Cell Below',
78 icon : 'icon-paste',
78 icon : 'fa-paste',
79 callback : function () {
79 callback : function () {
80 that.notebook.paste_cell_below();
80 that.notebook.paste_cell_below();
81 }
81 }
82 }
82 }
83 ],'cut_copy_paste');
83 ],'cut_copy_paste');
84
84
85 this.add_buttons_group([
85 this.add_buttons_group([
86 {
86 {
87 id : 'move_up_b',
87 id : 'move_up_b',
88 label : 'Move Cell Up',
88 label : 'Move Cell Up',
89 icon : 'icon-arrow-up',
89 icon : 'fa-arrow-up',
90 callback : function () {
90 callback : function () {
91 that.notebook.move_cell_up();
91 that.notebook.move_cell_up();
92 }
92 }
93 },
93 },
94 {
94 {
95 id : 'move_down_b',
95 id : 'move_down_b',
96 label : 'Move Cell Down',
96 label : 'Move Cell Down',
97 icon : 'icon-arrow-down',
97 icon : 'fa-arrow-down',
98 callback : function () {
98 callback : function () {
99 that.notebook.move_cell_down();
99 that.notebook.move_cell_down();
100 }
100 }
101 }
101 }
102 ],'move_up_down');
102 ],'move_up_down');
103
103
104
104
105 this.add_buttons_group([
105 this.add_buttons_group([
106 {
106 {
107 id : 'run_b',
107 id : 'run_b',
108 label : 'Run Cell',
108 label : 'Run Cell',
109 icon : 'icon-play',
109 icon : 'fa-play',
110 callback : function () {
110 callback : function () {
111 // emulate default shift-enter behavior
111 // emulate default shift-enter behavior
112 that.notebook.execute_cell_and_select_below();
112 that.notebook.execute_cell_and_select_below();
113 }
113 }
114 },
114 },
115 {
115 {
116 id : 'interrupt_b',
116 id : 'interrupt_b',
117 label : 'Interrupt',
117 label : 'Interrupt',
118 icon : 'icon-stop',
118 icon : 'fa-stop',
119 callback : function () {
119 callback : function () {
120 that.notebook.session.interrupt_kernel();
120 that.notebook.session.interrupt_kernel();
121 }
121 }
122 },
122 },
123 {
123 {
124 id : 'repeat_b',
124 id : 'repeat_b',
125 label : 'Restart Kernel',
125 label : 'Restart Kernel',
126 icon : 'icon-repeat',
126 icon : 'fa-repeat',
127 callback : function () {
127 callback : function () {
128 that.notebook.restart_kernel();
128 that.notebook.restart_kernel();
129 }
129 }
130 }
130 }
131 ],'run_int');
131 ],'run_int');
132 };
132 };
133
133
134 MainToolBar.prototype.add_celltype_list = function () {
134 MainToolBar.prototype.add_celltype_list = function () {
135 this.element
135 this.element
136 .append($('<select/>')
136 .append($('<select/>')
137 .attr('id','cell_type')
137 .attr('id','cell_type')
138 .addClass('form-control select-xs')
138 .addClass('form-control select-xs')
139 // .addClass('ui-widget-content')
139 // .addClass('ui-widget-content')
140 .append($('<option/>').attr('value','code').text('Code'))
140 .append($('<option/>').attr('value','code').text('Code'))
141 .append($('<option/>').attr('value','markdown').text('Markdown'))
141 .append($('<option/>').attr('value','markdown').text('Markdown'))
142 .append($('<option/>').attr('value','raw').text('Raw NBConvert'))
142 .append($('<option/>').attr('value','raw').text('Raw NBConvert'))
143 .append($('<option/>').attr('value','heading1').text('Heading 1'))
143 .append($('<option/>').attr('value','heading1').text('Heading 1'))
144 .append($('<option/>').attr('value','heading2').text('Heading 2'))
144 .append($('<option/>').attr('value','heading2').text('Heading 2'))
145 .append($('<option/>').attr('value','heading3').text('Heading 3'))
145 .append($('<option/>').attr('value','heading3').text('Heading 3'))
146 .append($('<option/>').attr('value','heading4').text('Heading 4'))
146 .append($('<option/>').attr('value','heading4').text('Heading 4'))
147 .append($('<option/>').attr('value','heading5').text('Heading 5'))
147 .append($('<option/>').attr('value','heading5').text('Heading 5'))
148 .append($('<option/>').attr('value','heading6').text('Heading 6'))
148 .append($('<option/>').attr('value','heading6').text('Heading 6'))
149 );
149 );
150 };
150 };
151
151
152
152
153 MainToolBar.prototype.add_celltoolbar_list = function () {
153 MainToolBar.prototype.add_celltoolbar_list = function () {
154 var label = $('<span/>').addClass("navbar-text").text('Cell Toolbar:');
154 var label = $('<span/>').addClass("navbar-text").text('Cell Toolbar:');
155 var select = $('<select/>')
155 var select = $('<select/>')
156 // .addClass('ui-widget-content')
156 // .addClass('ui-widget-content')
157 .attr('id', 'ctb_select')
157 .attr('id', 'ctb_select')
158 .addClass('form-control select-xs')
158 .addClass('form-control select-xs')
159 .append($('<option/>').attr('value', '').text('None'));
159 .append($('<option/>').attr('value', '').text('None'));
160 this.element.append(label).append(select);
160 this.element.append(label).append(select);
161 var that = this;
161 var that = this;
162 select.change(function() {
162 select.change(function() {
163 var val = $(this).val();
163 var val = $(this).val();
164 if (val ==='') {
164 if (val ==='') {
165 celltoolbar.CellToolbar.global_hide();
165 celltoolbar.CellToolbar.global_hide();
166 delete that.notebook.metadata.celltoolbar;
166 delete that.notebook.metadata.celltoolbar;
167 } else {
167 } else {
168 celltoolbar.CellToolbar.global_show();
168 celltoolbar.CellToolbar.global_show();
169 celltoolbar.CellToolbar.activate_preset(val, that.events);
169 celltoolbar.CellToolbar.activate_preset(val, that.events);
170 that.notebook.metadata.celltoolbar = val;
170 that.notebook.metadata.celltoolbar = val;
171 }
171 }
172 });
172 });
173 // Setup the currently registered presets.
173 // Setup the currently registered presets.
174 var presets = celltoolbar.CellToolbar.list_presets();
174 var presets = celltoolbar.CellToolbar.list_presets();
175 for (var i=0; i<presets.length; i++) {
175 for (var i=0; i<presets.length; i++) {
176 var name = presets[i];
176 var name = presets[i];
177 select.append($('<option/>').attr('value', name).text(name));
177 select.append($('<option/>').attr('value', name).text(name));
178 }
178 }
179 // Setup future preset registrations.
179 // Setup future preset registrations.
180 this.events.on('preset_added.CellToolbar', function (event, data) {
180 this.events.on('preset_added.CellToolbar', function (event, data) {
181 var name = data.name;
181 var name = data.name;
182 select.append($('<option/>').attr('value', name).text(name));
182 select.append($('<option/>').attr('value', name).text(name));
183 });
183 });
184 // Update select value when a preset is activated.
184 // Update select value when a preset is activated.
185 this.events.on('preset_activated.CellToolbar', function (event, data) {
185 this.events.on('preset_activated.CellToolbar', function (event, data) {
186 if (select.val() !== data.name)
186 if (select.val() !== data.name)
187 select.val(data.name);
187 select.val(data.name);
188 });
188 });
189 };
189 };
190
190
191
191
192 MainToolBar.prototype.bind_events = function () {
192 MainToolBar.prototype.bind_events = function () {
193 var that = this;
193 var that = this;
194
194
195 this.element.find('#cell_type').change(function () {
195 this.element.find('#cell_type').change(function () {
196 var cell_type = $(this).val();
196 var cell_type = $(this).val();
197 if (cell_type === 'code') {
197 if (cell_type === 'code') {
198 that.notebook.to_code();
198 that.notebook.to_code();
199 } else if (cell_type === 'markdown') {
199 } else if (cell_type === 'markdown') {
200 that.notebook.to_markdown();
200 that.notebook.to_markdown();
201 } else if (cell_type === 'raw') {
201 } else if (cell_type === 'raw') {
202 that.notebook.to_raw();
202 that.notebook.to_raw();
203 } else if (cell_type === 'heading1') {
203 } else if (cell_type === 'heading1') {
204 that.notebook.to_heading(undefined, 1);
204 that.notebook.to_heading(undefined, 1);
205 } else if (cell_type === 'heading2') {
205 } else if (cell_type === 'heading2') {
206 that.notebook.to_heading(undefined, 2);
206 that.notebook.to_heading(undefined, 2);
207 } else if (cell_type === 'heading3') {
207 } else if (cell_type === 'heading3') {
208 that.notebook.to_heading(undefined, 3);
208 that.notebook.to_heading(undefined, 3);
209 } else if (cell_type === 'heading4') {
209 } else if (cell_type === 'heading4') {
210 that.notebook.to_heading(undefined, 4);
210 that.notebook.to_heading(undefined, 4);
211 } else if (cell_type === 'heading5') {
211 } else if (cell_type === 'heading5') {
212 that.notebook.to_heading(undefined, 5);
212 that.notebook.to_heading(undefined, 5);
213 } else if (cell_type === 'heading6') {
213 } else if (cell_type === 'heading6') {
214 that.notebook.to_heading(undefined, 6);
214 that.notebook.to_heading(undefined, 6);
215 }
215 }
216 });
216 });
217 this.events.on('selected_cell_type_changed.Notebook', function (event, data) {
217 this.events.on('selected_cell_type_changed.Notebook', function (event, data) {
218 if (data.cell_type === 'heading') {
218 if (data.cell_type === 'heading') {
219 that.element.find('#cell_type').val(data.cell_type+data.level);
219 that.element.find('#cell_type').val(data.cell_type+data.level);
220 } else {
220 } else {
221 that.element.find('#cell_type').val(data.cell_type);
221 that.element.find('#cell_type').val(data.cell_type);
222 }
222 }
223 });
223 });
224 };
224 };
225
225
226 // Backwards compatability.
226 // Backwards compatability.
227 IPython.MainToolBar = MainToolBar;
227 IPython.MainToolBar = MainToolBar;
228
228
229 return {'MainToolBar': MainToolBar};
229 return {'MainToolBar': MainToolBar};
230 });
230 });
@@ -1,101 +1,101
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 ], function(IPython, $) {
7 ], function(IPython, $) {
8 "use strict";
8 "use strict";
9
9
10 /**
10 /**
11 * A generic toolbar on which one can add button
11 * A generic toolbar on which one can add button
12 * @class ToolBar
12 * @class ToolBar
13 * @constructor
13 * @constructor
14 * @param {Dom object} selector
14 * @param {Dom object} selector
15 */
15 */
16 var ToolBar = function (selector, layout_manager) {
16 var ToolBar = function (selector, layout_manager) {
17 this.selector = selector;
17 this.selector = selector;
18 this.layout_manager = layout_manager;
18 this.layout_manager = layout_manager;
19 if (this.selector !== undefined) {
19 if (this.selector !== undefined) {
20 this.element = $(selector);
20 this.element = $(selector);
21 this.style();
21 this.style();
22 }
22 }
23 };
23 };
24
24
25 /**
25 /**
26 * add a group of button into the current toolbar.
26 * add a group of button into the current toolbar.
27 *
27 *
28 *
28 *
29 * @example
29 * @example
30 *
30 *
31 * IPython.toolbar.add_buttons_group([
31 * IPython.toolbar.add_buttons_group([
32 * {
32 * {
33 * label:'my button',
33 * label:'my button',
34 * icon:'icon-hdd',
34 * icon:'icon-hdd',
35 * callback:function(){alert('hoho')},
35 * callback:function(){alert('hoho')},
36 * id : 'my_button_id', // this is optional
36 * id : 'my_button_id', // this is optional
37 * },
37 * },
38 * {
38 * {
39 * label:'my second button',
39 * label:'my second button',
40 * icon:'icon-play',
40 * icon:'icon-play',
41 * callback:function(){alert('be carefull I cut')}
41 * callback:function(){alert('be carefull I cut')}
42 * }
42 * }
43 * ],
43 * ],
44 * "my_button_group_id"
44 * "my_button_group_id"
45 * )
45 * )
46 *
46 *
47 * @method add_buttons_group
47 * @method add_buttons_group
48 * @param list {List}
48 * @param list {List}
49 * List of button of the group, with the following paramter for each :
49 * List of button of the group, with the following paramter for each :
50 * @param list.label {string} text to show on button hover
50 * @param list.label {string} text to show on button hover
51 * @param list.icon {string} icon to choose from [Font Awesome](http://fortawesome.github.io/Font-Awesome)
51 * @param list.icon {string} icon to choose from [Font Awesome](http://fortawesome.github.io/Font-Awesome)
52 * @param list.callback {function} function to be called on button click
52 * @param list.callback {function} function to be called on button click
53 * @param [list.id] {String} id to give to the button
53 * @param [list.id] {String} id to give to the button
54 * @param [group_id] {String} optionnal id to give to the group
54 * @param [group_id] {String} optionnal id to give to the group
55 *
55 *
56 */
56 */
57 ToolBar.prototype.add_buttons_group = function (list, group_id) {
57 ToolBar.prototype.add_buttons_group = function (list, group_id) {
58 var btn_group = $('<div/>').addClass("btn-group");
58 var btn_group = $('<div/>').addClass("btn-group");
59 if( group_id !== undefined ) {
59 if( group_id !== undefined ) {
60 btn_group.attr('id',group_id);
60 btn_group.attr('id',group_id);
61 }
61 }
62 var el;
62 var el;
63 for(var i=0; i < list.length; i++) {
63 for(var i=0; i < list.length; i++) {
64 el = list[i];
64 el = list[i];
65 var button = $('<button/>')
65 var button = $('<button/>')
66 .addClass('btn btn-default')
66 .addClass('btn btn-default')
67 .attr("title", el.label)
67 .attr("title", el.label)
68 .append(
68 .append(
69 $("<i/>").addClass(el.icon)
69 $("<i/>").addClass(el.icon).addClass('fa')
70 );
70 );
71 var id = el.id;
71 var id = el.id;
72 if( id !== undefined )
72 if( id !== undefined )
73 button.attr('id',id);
73 button.attr('id',id);
74 var fun = el.callback;
74 var fun = el.callback;
75 button.click(fun);
75 button.click(fun);
76 btn_group.append(button);
76 btn_group.append(button);
77 }
77 }
78 $(this.selector).append(btn_group);
78 $(this.selector).append(btn_group);
79 };
79 };
80
80
81 ToolBar.prototype.style = function () {
81 ToolBar.prototype.style = function () {
82 this.element.addClass('border-box-sizing')
82 this.element.addClass('border-box-sizing')
83 .addClass('toolbar');
83 .addClass('toolbar');
84 };
84 };
85
85
86 /**
86 /**
87 * Show and hide toolbar
87 * Show and hide toolbar
88 * @method toggle
88 * @method toggle
89 */
89 */
90 ToolBar.prototype.toggle = function () {
90 ToolBar.prototype.toggle = function () {
91 this.element.toggle();
91 this.element.toggle();
92 if (this.layout_manager !== undefined) {
92 if (this.layout_manager !== undefined) {
93 this.layout_manager.do_resize();
93 this.layout_manager.do_resize();
94 }
94 }
95 };
95 };
96
96
97 // Backwards compatability.
97 // Backwards compatability.
98 IPython.ToolBar = ToolBar;
98 IPython.ToolBar = ToolBar;
99
99
100 return {'ToolBar': ToolBar};
100 return {'ToolBar': ToolBar};
101 });
101 });
@@ -1,46 +1,46
1 #notification_area {
1 #notification_area {
2 .pull-right();
2 .pull-right();
3
3
4 z-index: 10;
4 z-index: 10;
5 }
5 }
6
6
7 .indicator_area {
7 .indicator_area {
8 color: @navbar-default-link-color;
8 color: @navbar-default-link-color;
9 padding: 4px 3px;
9 padding: 4px 3px;
10 margin: 0px;
10 margin: 0px;
11 width: 11px;
11 width: 11px;
12 z-index: 10;
12 z-index: 10;
13 text-align: center;
13 text-align: center;
14 }
14 }
15
15
16 #kernel_indicator {
16 #kernel_indicator {
17 .pull-right();
17 .pull-right();
18 .indicator_area();
18 .indicator_area();
19
19
20 margin-right: 12px;
20 margin-right: 12px;
21 }
21 }
22
22
23 #modal_indicator {
23 #modal_indicator {
24 .pull-right();
24 .pull-right();
25 .indicator_area();
25 .indicator_area();
26
26
27 margin-right: 5px;
27 margin-right: 5px;
28 }
28 }
29
29
30 .edit_mode_icon:before {
30 .edit_mode_icon:before {
31 .icon(@pencil);
31 .icon(@fa-var-pencil)
32 }
32 }
33
33
34 .command_mode_icon:before {
34 .command_mode_icon:before {
35 .icon(' ');
35 .icon(' ');
36 }
36 }
37
37
38 .kernel_idle_icon:before {
38 .kernel_idle_icon:before {
39 .icon(@circle-blank);
39 .icon(@fa-var-circle-o);
40 }
40 }
41
41
42 .kernel_busy_icon:before {
42 .kernel_busy_icon:before {
43 .icon(@circle);
43 .icon(@fa-var-circle);
44 }
44 }
45
45
46
46
@@ -1,30 +1,30
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 @import "../components/bootstrap/less/responsive-utilities.less";
7 @import "../components/bootstrap/less/responsive-utilities.less";
8
8
9 /*!
9 /*!
10 *
10 *
11 * Font Awesome
11 * Font Awesome
12 *
12 *
13 */
13 */
14 @import "../components/font-awesome/less/font-awesome.less";
14 @import "../components/font-awesome/less/font-awesome.less";
15 @FontAwesomePath: "../components/font-awesome/font";
15 @fa-font-path: "../components/font-awesome/fonts";
16
16
17 // base
17 // base
18 @import "../base/less/style.less";
18 @import "../base/less/style.less";
19 @import "../base/less/page.less";
19 @import "../base/less/page.less";
20
20
21 // auth
21 // auth
22 @import "../auth/less/style.less";
22 @import "../auth/less/style.less";
23
23
24 // tree
24 // tree
25 @import "../tree/less/style.less";
25 @import "../tree/less/style.less";
26
26
27 // notebook
27 // notebook
28 @import "../notebook/less/style.less";
28 @import "../notebook/less/style.less";
29
29
30
30
This diff has been collapsed as it changes many lines, (1495 lines changed) Show them Hide them
@@ -1,10263 +1,10368
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: 4px;
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: 768px) {
606 @media (min-width: 768px) {
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: 4px;
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: 3px;
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: 4px;
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: 15px;
737 padding-right: 15px;
737 padding-right: 15px;
738 }
738 }
739 @media (min-width: 768px) {
739 @media (min-width: 768px) {
740 .container {
740 .container {
741 width: 750px;
741 width: 750px;
742 }
742 }
743 }
743 }
744 @media (min-width: 992px) {
744 @media (min-width: 992px) {
745 .container {
745 .container {
746 width: 970px;
746 width: 970px;
747 }
747 }
748 }
748 }
749 @media (min-width: 1200px) {
749 @media (min-width: 1200px) {
750 .container {
750 .container {
751 width: 1170px;
751 width: 1170px;
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: 15px;
758 padding-right: 15px;
758 padding-right: 15px;
759 }
759 }
760 .row {
760 .row {
761 margin-left: -15px;
761 margin-left: -15px;
762 margin-right: -15px;
762 margin-right: -15px;
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: 15px;
768 padding-right: 15px;
768 padding-right: 15px;
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: 4px;
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: 3px;
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: -15px;
1976 margin-right: -15px;
1976 margin-right: -15px;
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: 15px;
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: 4px;
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: 3px;
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: 3px;
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: 4px;
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: 768px) {
3116 @media (min-width: 768px) {
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: 4px;
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: 4px;
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: 3px;
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: 4px;
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: 3px;
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: 4px 4px 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: 4px;
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: 4px 4px 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: 4px;
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: 4px;
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: 4px 4px 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: 36px;
3639 min-height: 36px;
3640 margin-bottom: 18px;
3640 margin-bottom: 18px;
3641 border: 1px solid transparent;
3641 border: 1px solid transparent;
3642 }
3642 }
3643 @media (min-width: 768px) {
3643 @media (min-width: 768px) {
3644 .navbar {
3644 .navbar {
3645 border-radius: 4px;
3645 border-radius: 4px;
3646 }
3646 }
3647 }
3647 }
3648 @media (min-width: 768px) {
3648 @media (min-width: 768px) {
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: 15px;
3657 padding-left: 15px;
3657 padding-left: 15px;
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: 768px) {
3665 @media (min-width: 768px) {
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: -15px;
3692 margin-left: -15px;
3692 margin-left: -15px;
3693 }
3693 }
3694 @media (min-width: 768px) {
3694 @media (min-width: 768px) {
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: 768px) {
3707 @media (min-width: 768px) {
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: 768px) {
3719 @media (min-width: 768px) {
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: 9px 15px;
3736 padding: 9px 15px;
3737 font-size: 17px;
3737 font-size: 17px;
3738 line-height: 18px;
3738 line-height: 18px;
3739 height: 36px;
3739 height: 36px;
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: 768px) {
3745 @media (min-width: 768px) {
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: -15px;
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: 15px;
3755 padding: 9px 10px;
3755 padding: 9px 10px;
3756 margin-top: 1px;
3756 margin-top: 1px;
3757 margin-bottom: 1px;
3757 margin-bottom: 1px;
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: 4px;
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: 768px) {
3775 @media (min-width: 768px) {
3776 .navbar-toggle {
3776 .navbar-toggle {
3777 display: none;
3777 display: none;
3778 }
3778 }
3779 }
3779 }
3780 .navbar-nav {
3780 .navbar-nav {
3781 margin: 4.5px -15px;
3781 margin: 4.5px -15px;
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: 767px) {
3788 @media (max-width: 767px) {
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: 768px) {
3810 @media (min-width: 768px) {
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: 9px;
3819 padding-top: 9px;
3820 padding-bottom: 9px;
3820 padding-bottom: 9px;
3821 }
3821 }
3822 .navbar-nav.navbar-right:last-child {
3822 .navbar-nav.navbar-right:last-child {
3823 margin-right: -15px;
3823 margin-right: -15px;
3824 }
3824 }
3825 }
3825 }
3826 @media (min-width: 768px) {
3826 @media (min-width: 768px) {
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: -15px;
3838 margin-right: -15px;
3838 margin-right: -15px;
3839 padding: 10px 15px;
3839 padding: 10px 15px;
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: 2px;
3844 margin-top: 2px;
3845 margin-bottom: 2px;
3845 margin-bottom: 2px;
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: 767px) {
3882 @media (max-width: 767px) {
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: 768px) {
3887 @media (min-width: 768px) {
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: -15px;
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: 2px;
3912 margin-top: 2px;
3913 margin-bottom: 2px;
3913 margin-bottom: 2px;
3914 }
3914 }
3915 .navbar-btn.btn-sm {
3915 .navbar-btn.btn-sm {
3916 margin-top: 3px;
3916 margin-top: 3px;
3917 margin-bottom: 3px;
3917 margin-bottom: 3px;
3918 }
3918 }
3919 .navbar-btn.btn-xs {
3919 .navbar-btn.btn-xs {
3920 margin-top: 7px;
3920 margin-top: 7px;
3921 margin-bottom: 7px;
3921 margin-bottom: 7px;
3922 }
3922 }
3923 .navbar-text {
3923 .navbar-text {
3924 margin-top: 9px;
3924 margin-top: 9px;
3925 margin-bottom: 9px;
3925 margin-bottom: 9px;
3926 }
3926 }
3927 @media (min-width: 768px) {
3927 @media (min-width: 768px) {
3928 .navbar-text {
3928 .navbar-text {
3929 float: left;
3929 float: left;
3930 margin-left: 15px;
3930 margin-left: 15px;
3931 margin-right: 15px;
3931 margin-right: 15px;
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: 767px) {
3992 @media (max-width: 767px) {
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: 767px) {
4075 @media (max-width: 767px) {
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: 4px;
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: 4px;
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: 4px;
4152 border-top-left-radius: 4px;
4152 border-top-left-radius: 4px;
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: 4px;
4157 border-top-right-radius: 4px;
4157 border-top-right-radius: 4px;
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: 3px;
4213 border-top-left-radius: 3px;
4213 border-top-left-radius: 3px;
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: 3px;
4218 border-top-right-radius: 3px;
4218 border-top-right-radius: 3px;
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: 4px;
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: 4px;
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: 4px;
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: 4px;
4615 border-top-left-radius: 4px;
4615 border-top-left-radius: 4px;
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: 4px;
4620 border-bottom-left-radius: 4px;
4620 border-bottom-left-radius: 4px;
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: 4px;
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: 3px;
4768 border-top-left-radius: 3px;
4768 border-top-left-radius: 3px;
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: 3px;
4787 border-bottom-left-radius: 3px;
4787 border-bottom-left-radius: 3px;
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: 3px;
4799 border-top-left-radius: 3px;
4799 border-top-left-radius: 3px;
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: 3px;
4804 border-bottom-left-radius: 3px;
4804 border-bottom-left-radius: 3px;
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: 3px;
4816 border-top-left-radius: 3px;
4816 border-top-left-radius: 3px;
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: 3px;
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: 3px;
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: 3px;
4841 border-bottom-left-radius: 3px;
4841 border-bottom-left-radius: 3px;
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: 3px;
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: 3px;
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: 4px;
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: 4px;
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: 3px;
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: 4px;
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 content: " ";
5617 content: " ";
5618 display: table;
5618 display: table;
5619 }
5619 }
5620 .clearfix:after,
5620 .clearfix:after,
5621 .container:after,
5621 .container:after,
5622 .container-fluid:after,
5622 .container-fluid:after,
5623 .row:after,
5623 .row:after,
5624 .form-horizontal .form-group:after,
5624 .form-horizontal .form-group:after,
5625 .btn-toolbar:after,
5625 .btn-toolbar:after,
5626 .btn-group-vertical > .btn-group:after,
5626 .btn-group-vertical > .btn-group:after,
5627 .nav:after,
5627 .nav:after,
5628 .navbar:after,
5628 .navbar:after,
5629 .navbar-header:after,
5629 .navbar-header:after,
5630 .navbar-collapse:after,
5630 .navbar-collapse:after,
5631 .pager:after,
5631 .pager:after,
5632 .panel-body:after,
5632 .panel-body:after,
5633 .modal-footer:after {
5633 .modal-footer:after {
5634 clear: both;
5634 clear: both;
5635 }
5635 }
5636 .center-block {
5636 .center-block {
5637 display: block;
5637 display: block;
5638 margin-left: auto;
5638 margin-left: auto;
5639 margin-right: auto;
5639 margin-right: auto;
5640 }
5640 }
5641 .pull-right {
5641 .pull-right {
5642 float: right !important;
5642 float: right !important;
5643 }
5643 }
5644 .pull-left {
5644 .pull-left {
5645 float: left !important;
5645 float: left !important;
5646 }
5646 }
5647 .hide {
5647 .hide {
5648 display: none !important;
5648 display: none !important;
5649 }
5649 }
5650 .show {
5650 .show {
5651 display: block !important;
5651 display: block !important;
5652 }
5652 }
5653 .invisible {
5653 .invisible {
5654 visibility: hidden;
5654 visibility: hidden;
5655 }
5655 }
5656 .text-hide {
5656 .text-hide {
5657 font: 0/0 a;
5657 font: 0/0 a;
5658 color: transparent;
5658 color: transparent;
5659 text-shadow: none;
5659 text-shadow: none;
5660 background-color: transparent;
5660 background-color: transparent;
5661 border: 0;
5661 border: 0;
5662 }
5662 }
5663 .hidden {
5663 .hidden {
5664 display: none !important;
5664 display: none !important;
5665 visibility: hidden !important;
5665 visibility: hidden !important;
5666 }
5666 }
5667 .affix {
5667 .affix {
5668 position: fixed;
5668 position: fixed;
5669 }
5669 }
5670 @-ms-viewport {
5670 @-ms-viewport {
5671 width: device-width;
5671 width: device-width;
5672 }
5672 }
5673 .visible-xs,
5673 .visible-xs,
5674 .visible-sm,
5674 .visible-sm,
5675 .visible-md,
5675 .visible-md,
5676 .visible-lg {
5676 .visible-lg {
5677 display: none !important;
5677 display: none !important;
5678 }
5678 }
5679 @media (max-width: 767px) {
5679 @media (max-width: 767px) {
5680 .visible-xs {
5680 .visible-xs {
5681 display: block !important;
5681 display: block !important;
5682 }
5682 }
5683 table.visible-xs {
5683 table.visible-xs {
5684 display: table;
5684 display: table;
5685 }
5685 }
5686 tr.visible-xs {
5686 tr.visible-xs {
5687 display: table-row !important;
5687 display: table-row !important;
5688 }
5688 }
5689 th.visible-xs,
5689 th.visible-xs,
5690 td.visible-xs {
5690 td.visible-xs {
5691 display: table-cell !important;
5691 display: table-cell !important;
5692 }
5692 }
5693 }
5693 }
5694 @media (min-width: 768px) and (max-width: 991px) {
5694 @media (min-width: 768px) and (max-width: 991px) {
5695 .visible-sm {
5695 .visible-sm {
5696 display: block !important;
5696 display: block !important;
5697 }
5697 }
5698 table.visible-sm {
5698 table.visible-sm {
5699 display: table;
5699 display: table;
5700 }
5700 }
5701 tr.visible-sm {
5701 tr.visible-sm {
5702 display: table-row !important;
5702 display: table-row !important;
5703 }
5703 }
5704 th.visible-sm,
5704 th.visible-sm,
5705 td.visible-sm {
5705 td.visible-sm {
5706 display: table-cell !important;
5706 display: table-cell !important;
5707 }
5707 }
5708 }
5708 }
5709 @media (min-width: 992px) and (max-width: 1199px) {
5709 @media (min-width: 992px) and (max-width: 1199px) {
5710 .visible-md {
5710 .visible-md {
5711 display: block !important;
5711 display: block !important;
5712 }
5712 }
5713 table.visible-md {
5713 table.visible-md {
5714 display: table;
5714 display: table;
5715 }
5715 }
5716 tr.visible-md {
5716 tr.visible-md {
5717 display: table-row !important;
5717 display: table-row !important;
5718 }
5718 }
5719 th.visible-md,
5719 th.visible-md,
5720 td.visible-md {
5720 td.visible-md {
5721 display: table-cell !important;
5721 display: table-cell !important;
5722 }
5722 }
5723 }
5723 }
5724 @media (min-width: 1200px) {
5724 @media (min-width: 1200px) {
5725 .visible-lg {
5725 .visible-lg {
5726 display: block !important;
5726 display: block !important;
5727 }
5727 }
5728 table.visible-lg {
5728 table.visible-lg {
5729 display: table;
5729 display: table;
5730 }
5730 }
5731 tr.visible-lg {
5731 tr.visible-lg {
5732 display: table-row !important;
5732 display: table-row !important;
5733 }
5733 }
5734 th.visible-lg,
5734 th.visible-lg,
5735 td.visible-lg {
5735 td.visible-lg {
5736 display: table-cell !important;
5736 display: table-cell !important;
5737 }
5737 }
5738 }
5738 }
5739 @media (max-width: 767px) {
5739 @media (max-width: 767px) {
5740 .hidden-xs {
5740 .hidden-xs {
5741 display: none !important;
5741 display: none !important;
5742 }
5742 }
5743 }
5743 }
5744 @media (min-width: 768px) and (max-width: 991px) {
5744 @media (min-width: 768px) and (max-width: 991px) {
5745 .hidden-sm {
5745 .hidden-sm {
5746 display: none !important;
5746 display: none !important;
5747 }
5747 }
5748 }
5748 }
5749 @media (min-width: 992px) and (max-width: 1199px) {
5749 @media (min-width: 992px) and (max-width: 1199px) {
5750 .hidden-md {
5750 .hidden-md {
5751 display: none !important;
5751 display: none !important;
5752 }
5752 }
5753 }
5753 }
5754 @media (min-width: 1200px) {
5754 @media (min-width: 1200px) {
5755 .hidden-lg {
5755 .hidden-lg {
5756 display: none !important;
5756 display: none !important;
5757 }
5757 }
5758 }
5758 }
5759 .visible-print {
5759 .visible-print {
5760 display: none !important;
5760 display: none !important;
5761 }
5761 }
5762 @media print {
5762 @media print {
5763 .visible-print {
5763 .visible-print {
5764 display: block !important;
5764 display: block !important;
5765 }
5765 }
5766 table.visible-print {
5766 table.visible-print {
5767 display: table;
5767 display: table;
5768 }
5768 }
5769 tr.visible-print {
5769 tr.visible-print {
5770 display: table-row !important;
5770 display: table-row !important;
5771 }
5771 }
5772 th.visible-print,
5772 th.visible-print,
5773 td.visible-print {
5773 td.visible-print {
5774 display: table-cell !important;
5774 display: table-cell !important;
5775 }
5775 }
5776 }
5776 }
5777 @media print {
5777 @media print {
5778 .hidden-print {
5778 .hidden-print {
5779 display: none !important;
5779 display: none !important;
5780 }
5780 }
5781 }
5781 }
5782 /*!
5782 /*!
5783 *
5783 *
5784 * Font Awesome
5784 * Font Awesome
5785 *
5785 *
5786 */
5786 */
5787 /*!
5787 /*!
5788 * Font Awesome 3.2.1
5788 * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome
5789 * the iconic font designed for Bootstrap
5789 * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
5790 * ------------------------------------------------------------------------------
5791 * The full suite of pictographic icons, examples, and documentation can be
5792 * found at http://fontawesome.io. Stay up to date on Twitter at
5793 * http://twitter.com/fontawesome.
5794 *
5795 * License
5796 * ------------------------------------------------------------------------------
5797 * - The Font Awesome font is licensed under SIL OFL 1.1 -
5798 * http://scripts.sil.org/OFL
5799 * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
5800 * http://opensource.org/licenses/mit-license.html
5801 * - Font Awesome documentation licensed under CC BY 3.0 -
5802 * http://creativecommons.org/licenses/by/3.0/
5803 * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
5804 * "Font Awesome by Dave Gandy - http://fontawesome.io"
5805 *
5806 * Author - Dave Gandy
5807 * ------------------------------------------------------------------------------
5808 * Email: dave@fontawesome.io
5809 * Twitter: http://twitter.com/davegandy
5810 * Work: Lead Product Designer @ Kyruus - http://kyruus.com
5811 */
5790 */
5812 /* FONT PATH
5791 /* FONT PATH
5813 * -------------------------- */
5792 * -------------------------- */
5814 @font-face {
5793 @font-face {
5815 font-family: 'FontAwesome';
5794 font-family: 'FontAwesome';
5816 src: url('../components/font-awesome/font/fontawesome-webfont.eot?v=3.2.1');
5795 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.1.0');
5817 src: url('../components/font-awesome/font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'), url('../components/font-awesome/font/fontawesome-webfont.woff?v=3.2.1') format('woff'), url('../components/font-awesome/font/fontawesome-webfont.ttf?v=3.2.1') format('truetype'), url('../components/font-awesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');
5796 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');
5818 font-weight: normal;
5797 font-weight: normal;
5819 font-style: normal;
5798 font-style: normal;
5820 }
5799 }
5821 /* FONT AWESOME CORE
5800 .fa {
5822 * -------------------------- */
5801 display: inline-block;
5823 [class^="icon-"],
5824 [class*=" icon-"] {
5825 font-family: FontAwesome;
5802 font-family: FontAwesome;
5826 font-weight: normal;
5827 font-style: normal;
5803 font-style: normal;
5828 text-decoration: inherit;
5804 font-weight: normal;
5805 line-height: 1;
5829 -webkit-font-smoothing: antialiased;
5806 -webkit-font-smoothing: antialiased;
5830 *margin-right: .3em;
5807 -moz-osx-font-smoothing: grayscale;
5831 }
5832 [class^="icon-"]:before,
5833 [class*=" icon-"]:before {
5834 text-decoration: inherit;
5835 display: inline-block;
5836 speak: none;
5837 }
5808 }
5838 /* makes the font 33% larger relative to the icon container */
5809 /* makes the font 33% larger relative to the icon container */
5839 .icon-large:before {
5810 .fa-lg {
5840 vertical-align: -10%;
5841 font-size: 1.33333333em;
5811 font-size: 1.33333333em;
5812 line-height: 0.75em;
5813 vertical-align: -15%;
5842 }
5814 }
5843 /* makes sure icons active on rollover in links */
5815 .fa-2x {
5844 a [class^="icon-"],
5816 font-size: 2em;
5845 a [class*=" icon-"] {
5846 display: inline;
5847 }
5817 }
5848 /* increased font size for icon-large */
5818 .fa-3x {
5849 [class^="icon-"].icon-fixed-width,
5819 font-size: 3em;
5850 [class*=" icon-"].icon-fixed-width {
5820 }
5851 display: inline-block;
5821 .fa-4x {
5852 width: 1.14285714em;
5822 font-size: 4em;
5853 text-align: right;
5854 padding-right: 0.28571429em;
5855 }
5823 }
5856 [class^="icon-"].icon-fixed-width.icon-large,
5824 .fa-5x {
5857 [class*=" icon-"].icon-fixed-width.icon-large {
5825 font-size: 5em;
5858 width: 1.42857143em;
5859 }
5826 }
5860 .icons-ul {
5827 .fa-fw {
5828 width: 1.28571429em;
5829 text-align: center;
5830 }
5831 .fa-ul {
5832 padding-left: 0;
5861 margin-left: 2.14285714em;
5833 margin-left: 2.14285714em;
5862 list-style-type: none;
5834 list-style-type: none;
5863 }
5835 }
5864 .icons-ul > li {
5836 .fa-ul > li {
5865 position: relative;
5837 position: relative;
5866 }
5838 }
5867 .icons-ul .icon-li {
5839 .fa-li {
5868 position: absolute;
5840 position: absolute;
5869 left: -2.14285714em;
5841 left: -2.14285714em;
5870 width: 2.14285714em;
5842 width: 2.14285714em;
5843 top: 0.14285714em;
5871 text-align: center;
5844 text-align: center;
5872 line-height: inherit;
5873 }
5845 }
5874 [class^="icon-"].hide,
5846 .fa-li.fa-lg {
5875 [class*=" icon-"].hide {
5847 left: -1.85714286em;
5876 display: none;
5877 }
5848 }
5878 .icon-muted {
5849 .fa-border {
5879 color: #eeeeee;
5880 }
5881 .icon-light {
5882 color: #ffffff;
5883 }
5884 .icon-dark {
5885 color: #333333;
5886 }
5887 .icon-border {
5888 border: solid 1px #eeeeee;
5889 padding: .2em .25em .15em;
5850 padding: .2em .25em .15em;
5890 -webkit-border-radius: 3px;
5851 border: solid 0.08em #eeeeee;
5891 -moz-border-radius: 3px;
5852 border-radius: .1em;
5892 border-radius: 3px;
5893 }
5894 .icon-2x {
5895 font-size: 2em;
5896 }
5897 .icon-2x.icon-border {
5898 border-width: 2px;
5899 -webkit-border-radius: 4px;
5900 -moz-border-radius: 4px;
5901 border-radius: 4px;
5902 }
5903 .icon-3x {
5904 font-size: 3em;
5905 }
5906 .icon-3x.icon-border {
5907 border-width: 3px;
5908 -webkit-border-radius: 5px;
5909 -moz-border-radius: 5px;
5910 border-radius: 5px;
5911 }
5912 .icon-4x {
5913 font-size: 4em;
5914 }
5915 .icon-4x.icon-border {
5916 border-width: 4px;
5917 -webkit-border-radius: 6px;
5918 -moz-border-radius: 6px;
5919 border-radius: 6px;
5920 }
5921 .icon-5x {
5922 font-size: 5em;
5923 }
5924 .icon-5x.icon-border {
5925 border-width: 5px;
5926 -webkit-border-radius: 7px;
5927 -moz-border-radius: 7px;
5928 border-radius: 7px;
5929 }
5853 }
5930 .pull-right {
5854 .pull-right {
5931 float: right;
5855 float: right;
5932 }
5856 }
5933 .pull-left {
5857 .pull-left {
5934 float: left;
5858 float: left;
5935 }
5859 }
5936 [class^="icon-"].pull-left,
5860 .fa.pull-left {
5937 [class*=" icon-"].pull-left {
5938 margin-right: .3em;
5861 margin-right: .3em;
5939 }
5862 }
5940 [class^="icon-"].pull-right,
5863 .fa.pull-right {
5941 [class*=" icon-"].pull-right {
5942 margin-left: .3em;
5864 margin-left: .3em;
5943 }
5865 }
5944 /* BOOTSTRAP SPECIFIC CLASSES
5866 .fa-spin {
5945 * -------------------------- */
5867 -webkit-animation: spin 2s infinite linear;
5946 /* Bootstrap 2.0 sprites.less reset */
5947 [class^="icon-"],
5948 [class*=" icon-"] {
5949 display: inline;
5950 width: auto;
5951 height: auto;
5952 line-height: normal;
5953 vertical-align: baseline;
5954 background-image: none;
5955 background-position: 0% 0%;
5956 background-repeat: repeat;
5957 margin-top: 0;
5958 }
5959 /* more sprites.less reset */
5960 .icon-white,
5961 .nav-pills > .active > a > [class^="icon-"],
5962 .nav-pills > .active > a > [class*=" icon-"],
5963 .nav-list > .active > a > [class^="icon-"],
5964 .nav-list > .active > a > [class*=" icon-"],
5965 .navbar-inverse .nav > .active > a > [class^="icon-"],
5966 .navbar-inverse .nav > .active > a > [class*=" icon-"],
5967 .dropdown-menu > li > a:hover > [class^="icon-"],
5968 .dropdown-menu > li > a:hover > [class*=" icon-"],
5969 .dropdown-menu > .active > a > [class^="icon-"],
5970 .dropdown-menu > .active > a > [class*=" icon-"],
5971 .dropdown-submenu:hover > a > [class^="icon-"],
5972 .dropdown-submenu:hover > a > [class*=" icon-"] {
5973 background-image: none;
5974 }
5975 /* keeps Bootstrap styles with and without icons the same */
5976 .btn [class^="icon-"].icon-large,
5977 .nav [class^="icon-"].icon-large,
5978 .btn [class*=" icon-"].icon-large,
5979 .nav [class*=" icon-"].icon-large {
5980 line-height: .9em;
5981 }
5982 .btn [class^="icon-"].icon-spin,
5983 .nav [class^="icon-"].icon-spin,
5984 .btn [class*=" icon-"].icon-spin,
5985 .nav [class*=" icon-"].icon-spin {
5986 display: inline-block;
5987 }
5988 .nav-tabs [class^="icon-"],
5989 .nav-pills [class^="icon-"],
5990 .nav-tabs [class*=" icon-"],
5991 .nav-pills [class*=" icon-"],
5992 .nav-tabs [class^="icon-"].icon-large,
5993 .nav-pills [class^="icon-"].icon-large,
5994 .nav-tabs [class*=" icon-"].icon-large,
5995 .nav-pills [class*=" icon-"].icon-large {
5996 line-height: .9em;
5997 }
5998 .btn [class^="icon-"].pull-left.icon-2x,
5999 .btn [class*=" icon-"].pull-left.icon-2x,
6000 .btn [class^="icon-"].pull-right.icon-2x,
6001 .btn [class*=" icon-"].pull-right.icon-2x {
6002 margin-top: .18em;
6003 }
6004 .btn [class^="icon-"].icon-spin.icon-large,
6005 .btn [class*=" icon-"].icon-spin.icon-large {
6006 line-height: .8em;
6007 }
6008 .btn.btn-small [class^="icon-"].pull-left.icon-2x,
6009 .btn.btn-small [class*=" icon-"].pull-left.icon-2x,
6010 .btn.btn-small [class^="icon-"].pull-right.icon-2x,
6011 .btn.btn-small [class*=" icon-"].pull-right.icon-2x {
6012 margin-top: .25em;
6013 }
6014 .btn.btn-large [class^="icon-"],
6015 .btn.btn-large [class*=" icon-"] {
6016 margin-top: 0;
6017 }
6018 .btn.btn-large [class^="icon-"].pull-left.icon-2x,
6019 .btn.btn-large [class*=" icon-"].pull-left.icon-2x,
6020 .btn.btn-large [class^="icon-"].pull-right.icon-2x,
6021 .btn.btn-large [class*=" icon-"].pull-right.icon-2x {
6022 margin-top: .05em;
6023 }
6024 .btn.btn-large [class^="icon-"].pull-left.icon-2x,
6025 .btn.btn-large [class*=" icon-"].pull-left.icon-2x {
6026 margin-right: .2em;
6027 }
6028 .btn.btn-large [class^="icon-"].pull-right.icon-2x,
6029 .btn.btn-large [class*=" icon-"].pull-right.icon-2x {
6030 margin-left: .2em;
6031 }
6032 /* Fixes alignment in nav lists */
6033 .nav-list [class^="icon-"],
6034 .nav-list [class*=" icon-"] {
6035 line-height: inherit;
6036 }
6037 /* EXTRAS
6038 * -------------------------- */
6039 /* Stacked and layered icon */
6040 .icon-stack {
6041 position: relative;
6042 display: inline-block;
6043 width: 2em;
6044 height: 2em;
6045 line-height: 2em;
6046 vertical-align: -35%;
6047 }
6048 .icon-stack [class^="icon-"],
6049 .icon-stack [class*=" icon-"] {
6050 display: block;
6051 text-align: center;
6052 position: absolute;
6053 width: 100%;
6054 height: 100%;
6055 font-size: 1em;
6056 line-height: inherit;
6057 *line-height: 2em;
6058 }
6059 .icon-stack .icon-stack-base {
6060 font-size: 2em;
6061 *line-height: 1em;
6062 }
6063 /* Animated rotating icon */
6064 .icon-spin {
6065 display: inline-block;
6066 -moz-animation: spin 2s infinite linear;
5868 -moz-animation: spin 2s infinite linear;
6067 -o-animation: spin 2s infinite linear;
5869 -o-animation: spin 2s infinite linear;
6068 -webkit-animation: spin 2s infinite linear;
6069 animation: spin 2s infinite linear;
5870 animation: spin 2s infinite linear;
6070 }
5871 }
6071 /* Prevent stack and spinners from being taken inline when inside a link */
6072 a .icon-stack,
6073 a .icon-spin {
6074 display: inline-block;
6075 text-decoration: none;
6076 }
6077 @-moz-keyframes spin {
5872 @-moz-keyframes spin {
6078 0% {
5873 0% {
6079 -moz-transform: rotate(0deg);
5874 -moz-transform: rotate(0deg);
6080 }
5875 }
6081 100% {
5876 100% {
6082 -moz-transform: rotate(359deg);
5877 -moz-transform: rotate(359deg);
6083 }
5878 }
6084 }
5879 }
6085 @-webkit-keyframes spin {
5880 @-webkit-keyframes spin {
6086 0% {
5881 0% {
6087 -webkit-transform: rotate(0deg);
5882 -webkit-transform: rotate(0deg);
6088 }
5883 }
6089 100% {
5884 100% {
6090 -webkit-transform: rotate(359deg);
5885 -webkit-transform: rotate(359deg);
6091 }
5886 }
6092 }
5887 }
6093 @-o-keyframes spin {
5888 @-o-keyframes spin {
6094 0% {
5889 0% {
6095 -o-transform: rotate(0deg);
5890 -o-transform: rotate(0deg);
6096 }
5891 }
6097 100% {
5892 100% {
6098 -o-transform: rotate(359deg);
5893 -o-transform: rotate(359deg);
6099 }
5894 }
6100 }
5895 }
6101 @-ms-keyframes spin {
6102 0% {
6103 -ms-transform: rotate(0deg);
6104 }
6105 100% {
6106 -ms-transform: rotate(359deg);
6107 }
6108 }
6109 @keyframes spin {
5896 @keyframes spin {
6110 0% {
5897 0% {
5898 -webkit-transform: rotate(0deg);
6111 transform: rotate(0deg);
5899 transform: rotate(0deg);
6112 }
5900 }
6113 100% {
5901 100% {
5902 -webkit-transform: rotate(359deg);
6114 transform: rotate(359deg);
5903 transform: rotate(359deg);
6115 }
5904 }
6116 }
5905 }
6117 /* Icon rotations and mirroring */
5906 .fa-rotate-90 {
6118 .icon-rotate-90:before {
5907 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
6119 -webkit-transform: rotate(90deg);
5908 -webkit-transform: rotate(90deg);
6120 -moz-transform: rotate(90deg);
5909 -moz-transform: rotate(90deg);
6121 -ms-transform: rotate(90deg);
5910 -ms-transform: rotate(90deg);
6122 -o-transform: rotate(90deg);
5911 -o-transform: rotate(90deg);
6123 transform: rotate(90deg);
5912 transform: rotate(90deg);
6124 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
6125 }
5913 }
6126 .icon-rotate-180:before {
5914 .fa-rotate-180 {
5915 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
6127 -webkit-transform: rotate(180deg);
5916 -webkit-transform: rotate(180deg);
6128 -moz-transform: rotate(180deg);
5917 -moz-transform: rotate(180deg);
6129 -ms-transform: rotate(180deg);
5918 -ms-transform: rotate(180deg);
6130 -o-transform: rotate(180deg);
5919 -o-transform: rotate(180deg);
6131 transform: rotate(180deg);
5920 transform: rotate(180deg);
6132 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
6133 }
5921 }
6134 .icon-rotate-270:before {
5922 .fa-rotate-270 {
5923 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
6135 -webkit-transform: rotate(270deg);
5924 -webkit-transform: rotate(270deg);
6136 -moz-transform: rotate(270deg);
5925 -moz-transform: rotate(270deg);
6137 -ms-transform: rotate(270deg);
5926 -ms-transform: rotate(270deg);
6138 -o-transform: rotate(270deg);
5927 -o-transform: rotate(270deg);
6139 transform: rotate(270deg);
5928 transform: rotate(270deg);
6140 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
6141 }
5929 }
6142 .icon-flip-horizontal:before {
5930 .fa-flip-horizontal {
5931 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
6143 -webkit-transform: scale(-1, 1);
5932 -webkit-transform: scale(-1, 1);
6144 -moz-transform: scale(-1, 1);
5933 -moz-transform: scale(-1, 1);
6145 -ms-transform: scale(-1, 1);
5934 -ms-transform: scale(-1, 1);
6146 -o-transform: scale(-1, 1);
5935 -o-transform: scale(-1, 1);
6147 transform: scale(-1, 1);
5936 transform: scale(-1, 1);
6148 }
5937 }
6149 .icon-flip-vertical:before {
5938 .fa-flip-vertical {
5939 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
6150 -webkit-transform: scale(1, -1);
5940 -webkit-transform: scale(1, -1);
6151 -moz-transform: scale(1, -1);
5941 -moz-transform: scale(1, -1);
6152 -ms-transform: scale(1, -1);
5942 -ms-transform: scale(1, -1);
6153 -o-transform: scale(1, -1);
5943 -o-transform: scale(1, -1);
6154 transform: scale(1, -1);
5944 transform: scale(1, -1);
6155 }
5945 }
6156 /* ensure rotation occurs inside anchor tags */
5946 .fa-stack {
6157 a .icon-rotate-90:before,
5947 position: relative;
6158 a .icon-rotate-180:before,
6159 a .icon-rotate-270:before,
6160 a .icon-flip-horizontal:before,
6161 a .icon-flip-vertical:before {
6162 display: inline-block;
5948 display: inline-block;
5949 width: 2em;
5950 height: 2em;
5951 line-height: 2em;
5952 vertical-align: middle;
5953 }
5954 .fa-stack-1x,
5955 .fa-stack-2x {
5956 position: absolute;
5957 left: 0;
5958 width: 100%;
5959 text-align: center;
5960 }
5961 .fa-stack-1x {
5962 line-height: inherit;
5963 }
5964 .fa-stack-2x {
5965 font-size: 2em;
5966 }
5967 .fa-inverse {
5968 color: #ffffff;
6163 }
5969 }
6164 /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
5970 /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
6165 readers do not read off random characters that represent icons */
5971 readers do not read off random characters that represent icons */
6166 .icon-glass:before {
5972 .fa-glass:before {
6167 content: "\f000";
5973 content: "\f000";
6168 }
5974 }
6169 .icon-music:before {
5975 .fa-music:before {
6170 content: "\f001";
5976 content: "\f001";
6171 }
5977 }
6172 .icon-search:before {
5978 .fa-search:before {
6173 content: "\f002";
5979 content: "\f002";
6174 }
5980 }
6175 .icon-envelope-alt:before {
5981 .fa-envelope-o:before {
6176 content: "\f003";
5982 content: "\f003";
6177 }
5983 }
6178 .icon-heart:before {
5984 .fa-heart:before {
6179 content: "\f004";
5985 content: "\f004";
6180 }
5986 }
6181 .icon-star:before {
5987 .fa-star:before {
6182 content: "\f005";
5988 content: "\f005";
6183 }
5989 }
6184 .icon-star-empty:before {
5990 .fa-star-o:before {
6185 content: "\f006";
5991 content: "\f006";
6186 }
5992 }
6187 .icon-user:before {
5993 .fa-user:before {
6188 content: "\f007";
5994 content: "\f007";
6189 }
5995 }
6190 .icon-film:before {
5996 .fa-film:before {
6191 content: "\f008";
5997 content: "\f008";
6192 }
5998 }
6193 .icon-th-large:before {
5999 .fa-th-large:before {
6194 content: "\f009";
6000 content: "\f009";
6195 }
6001 }
6196 .icon-th:before {
6002 .fa-th:before {
6197 content: "\f00a";
6003 content: "\f00a";
6198 }
6004 }
6199 .icon-th-list:before {
6005 .fa-th-list:before {
6200 content: "\f00b";
6006 content: "\f00b";
6201 }
6007 }
6202 .icon-ok:before {
6008 .fa-check:before {
6203 content: "\f00c";
6009 content: "\f00c";
6204 }
6010 }
6205 .icon-remove:before {
6011 .fa-times:before {
6206 content: "\f00d";
6012 content: "\f00d";
6207 }
6013 }
6208 .icon-zoom-in:before {
6014 .fa-search-plus:before {
6209 content: "\f00e";
6015 content: "\f00e";
6210 }
6016 }
6211 .icon-zoom-out:before {
6017 .fa-search-minus:before {
6212 content: "\f010";
6018 content: "\f010";
6213 }
6019 }
6214 .icon-power-off:before,
6020 .fa-power-off:before {
6215 .icon-off:before {
6216 content: "\f011";
6021 content: "\f011";
6217 }
6022 }
6218 .icon-signal:before {
6023 .fa-signal:before {
6219 content: "\f012";
6024 content: "\f012";
6220 }
6025 }
6221 .icon-gear:before,
6026 .fa-gear:before,
6222 .icon-cog:before {
6027 .fa-cog:before {
6223 content: "\f013";
6028 content: "\f013";
6224 }
6029 }
6225 .icon-trash:before {
6030 .fa-trash-o:before {
6226 content: "\f014";
6031 content: "\f014";
6227 }
6032 }
6228 .icon-home:before {
6033 .fa-home:before {
6229 content: "\f015";
6034 content: "\f015";
6230 }
6035 }
6231 .icon-file-alt:before {
6036 .fa-file-o:before {
6232 content: "\f016";
6037 content: "\f016";
6233 }
6038 }
6234 .icon-time:before {
6039 .fa-clock-o:before {
6235 content: "\f017";
6040 content: "\f017";
6236 }
6041 }
6237 .icon-road:before {
6042 .fa-road:before {
6238 content: "\f018";
6043 content: "\f018";
6239 }
6044 }
6240 .icon-download-alt:before {
6045 .fa-download:before {
6241 content: "\f019";
6046 content: "\f019";
6242 }
6047 }
6243 .icon-download:before {
6048 .fa-arrow-circle-o-down:before {
6244 content: "\f01a";
6049 content: "\f01a";
6245 }
6050 }
6246 .icon-upload:before {
6051 .fa-arrow-circle-o-up:before {
6247 content: "\f01b";
6052 content: "\f01b";
6248 }
6053 }
6249 .icon-inbox:before {
6054 .fa-inbox:before {
6250 content: "\f01c";
6055 content: "\f01c";
6251 }
6056 }
6252 .icon-play-circle:before {
6057 .fa-play-circle-o:before {
6253 content: "\f01d";
6058 content: "\f01d";
6254 }
6059 }
6255 .icon-rotate-right:before,
6060 .fa-rotate-right:before,
6256 .icon-repeat:before {
6061 .fa-repeat:before {
6257 content: "\f01e";
6062 content: "\f01e";
6258 }
6063 }
6259 .icon-refresh:before {
6064 .fa-refresh:before {
6260 content: "\f021";
6065 content: "\f021";
6261 }
6066 }
6262 .icon-list-alt:before {
6067 .fa-list-alt:before {
6263 content: "\f022";
6068 content: "\f022";
6264 }
6069 }
6265 .icon-lock:before {
6070 .fa-lock:before {
6266 content: "\f023";
6071 content: "\f023";
6267 }
6072 }
6268 .icon-flag:before {
6073 .fa-flag:before {
6269 content: "\f024";
6074 content: "\f024";
6270 }
6075 }
6271 .icon-headphones:before {
6076 .fa-headphones:before {
6272 content: "\f025";
6077 content: "\f025";
6273 }
6078 }
6274 .icon-volume-off:before {
6079 .fa-volume-off:before {
6275 content: "\f026";
6080 content: "\f026";
6276 }
6081 }
6277 .icon-volume-down:before {
6082 .fa-volume-down:before {
6278 content: "\f027";
6083 content: "\f027";
6279 }
6084 }
6280 .icon-volume-up:before {
6085 .fa-volume-up:before {
6281 content: "\f028";
6086 content: "\f028";
6282 }
6087 }
6283 .icon-qrcode:before {
6088 .fa-qrcode:before {
6284 content: "\f029";
6089 content: "\f029";
6285 }
6090 }
6286 .icon-barcode:before {
6091 .fa-barcode:before {
6287 content: "\f02a";
6092 content: "\f02a";
6288 }
6093 }
6289 .icon-tag:before {
6094 .fa-tag:before {
6290 content: "\f02b";
6095 content: "\f02b";
6291 }
6096 }
6292 .icon-tags:before {
6097 .fa-tags:before {
6293 content: "\f02c";
6098 content: "\f02c";
6294 }
6099 }
6295 .icon-book:before {
6100 .fa-book:before {
6296 content: "\f02d";
6101 content: "\f02d";
6297 }
6102 }
6298 .icon-bookmark:before {
6103 .fa-bookmark:before {
6299 content: "\f02e";
6104 content: "\f02e";
6300 }
6105 }
6301 .icon-print:before {
6106 .fa-print:before {
6302 content: "\f02f";
6107 content: "\f02f";
6303 }
6108 }
6304 .icon-camera:before {
6109 .fa-camera:before {
6305 content: "\f030";
6110 content: "\f030";
6306 }
6111 }
6307 .icon-font:before {
6112 .fa-font:before {
6308 content: "\f031";
6113 content: "\f031";
6309 }
6114 }
6310 .icon-bold:before {
6115 .fa-bold:before {
6311 content: "\f032";
6116 content: "\f032";
6312 }
6117 }
6313 .icon-italic:before {
6118 .fa-italic:before {
6314 content: "\f033";
6119 content: "\f033";
6315 }
6120 }
6316 .icon-text-height:before {
6121 .fa-text-height:before {
6317 content: "\f034";
6122 content: "\f034";
6318 }
6123 }
6319 .icon-text-width:before {
6124 .fa-text-width:before {
6320 content: "\f035";
6125 content: "\f035";
6321 }
6126 }
6322 .icon-align-left:before {
6127 .fa-align-left:before {
6323 content: "\f036";
6128 content: "\f036";
6324 }
6129 }
6325 .icon-align-center:before {
6130 .fa-align-center:before {
6326 content: "\f037";
6131 content: "\f037";
6327 }
6132 }
6328 .icon-align-right:before {
6133 .fa-align-right:before {
6329 content: "\f038";
6134 content: "\f038";
6330 }
6135 }
6331 .icon-align-justify:before {
6136 .fa-align-justify:before {
6332 content: "\f039";
6137 content: "\f039";
6333 }
6138 }
6334 .icon-list:before {
6139 .fa-list:before {
6335 content: "\f03a";
6140 content: "\f03a";
6336 }
6141 }
6337 .icon-indent-left:before {
6142 .fa-dedent:before,
6143 .fa-outdent:before {
6338 content: "\f03b";
6144 content: "\f03b";
6339 }
6145 }
6340 .icon-indent-right:before {
6146 .fa-indent:before {
6341 content: "\f03c";
6147 content: "\f03c";
6342 }
6148 }
6343 .icon-facetime-video:before {
6149 .fa-video-camera:before {
6344 content: "\f03d";
6150 content: "\f03d";
6345 }
6151 }
6346 .icon-picture:before {
6152 .fa-photo:before,
6153 .fa-image:before,
6154 .fa-picture-o:before {
6347 content: "\f03e";
6155 content: "\f03e";
6348 }
6156 }
6349 .icon-pencil:before {
6157 .fa-pencil:before {
6350 content: "\f040";
6158 content: "\f040";
6351 }
6159 }
6352 .icon-map-marker:before {
6160 .fa-map-marker:before {
6353 content: "\f041";
6161 content: "\f041";
6354 }
6162 }
6355 .icon-adjust:before {
6163 .fa-adjust:before {
6356 content: "\f042";
6164 content: "\f042";
6357 }
6165 }
6358 .icon-tint:before {
6166 .fa-tint:before {
6359 content: "\f043";
6167 content: "\f043";
6360 }
6168 }
6361 .icon-edit:before {
6169 .fa-edit:before,
6170 .fa-pencil-square-o:before {
6362 content: "\f044";
6171 content: "\f044";
6363 }
6172 }
6364 .icon-share:before {
6173 .fa-share-square-o:before {
6365 content: "\f045";
6174 content: "\f045";
6366 }
6175 }
6367 .icon-check:before {
6176 .fa-check-square-o:before {
6368 content: "\f046";
6177 content: "\f046";
6369 }
6178 }
6370 .icon-move:before {
6179 .fa-arrows:before {
6371 content: "\f047";
6180 content: "\f047";
6372 }
6181 }
6373 .icon-step-backward:before {
6182 .fa-step-backward:before {
6374 content: "\f048";
6183 content: "\f048";
6375 }
6184 }
6376 .icon-fast-backward:before {
6185 .fa-fast-backward:before {
6377 content: "\f049";
6186 content: "\f049";
6378 }
6187 }
6379 .icon-backward:before {
6188 .fa-backward:before {
6380 content: "\f04a";
6189 content: "\f04a";
6381 }
6190 }
6382 .icon-play:before {
6191 .fa-play:before {
6383 content: "\f04b";
6192 content: "\f04b";
6384 }
6193 }
6385 .icon-pause:before {
6194 .fa-pause:before {
6386 content: "\f04c";
6195 content: "\f04c";
6387 }
6196 }
6388 .icon-stop:before {
6197 .fa-stop:before {
6389 content: "\f04d";
6198 content: "\f04d";
6390 }
6199 }
6391 .icon-forward:before {
6200 .fa-forward:before {
6392 content: "\f04e";
6201 content: "\f04e";
6393 }
6202 }
6394 .icon-fast-forward:before {
6203 .fa-fast-forward:before {
6395 content: "\f050";
6204 content: "\f050";
6396 }
6205 }
6397 .icon-step-forward:before {
6206 .fa-step-forward:before {
6398 content: "\f051";
6207 content: "\f051";
6399 }
6208 }
6400 .icon-eject:before {
6209 .fa-eject:before {
6401 content: "\f052";
6210 content: "\f052";
6402 }
6211 }
6403 .icon-chevron-left:before {
6212 .fa-chevron-left:before {
6404 content: "\f053";
6213 content: "\f053";
6405 }
6214 }
6406 .icon-chevron-right:before {
6215 .fa-chevron-right:before {
6407 content: "\f054";
6216 content: "\f054";
6408 }
6217 }
6409 .icon-plus-sign:before {
6218 .fa-plus-circle:before {
6410 content: "\f055";
6219 content: "\f055";
6411 }
6220 }
6412 .icon-minus-sign:before {
6221 .fa-minus-circle:before {
6413 content: "\f056";
6222 content: "\f056";
6414 }
6223 }
6415 .icon-remove-sign:before {
6224 .fa-times-circle:before {
6416 content: "\f057";
6225 content: "\f057";
6417 }
6226 }
6418 .icon-ok-sign:before {
6227 .fa-check-circle:before {
6419 content: "\f058";
6228 content: "\f058";
6420 }
6229 }
6421 .icon-question-sign:before {
6230 .fa-question-circle:before {
6422 content: "\f059";
6231 content: "\f059";
6423 }
6232 }
6424 .icon-info-sign:before {
6233 .fa-info-circle:before {
6425 content: "\f05a";
6234 content: "\f05a";
6426 }
6235 }
6427 .icon-screenshot:before {
6236 .fa-crosshairs:before {
6428 content: "\f05b";
6237 content: "\f05b";
6429 }
6238 }
6430 .icon-remove-circle:before {
6239 .fa-times-circle-o:before {
6431 content: "\f05c";
6240 content: "\f05c";
6432 }
6241 }
6433 .icon-ok-circle:before {
6242 .fa-check-circle-o:before {
6434 content: "\f05d";
6243 content: "\f05d";
6435 }
6244 }
6436 .icon-ban-circle:before {
6245 .fa-ban:before {
6437 content: "\f05e";
6246 content: "\f05e";
6438 }
6247 }
6439 .icon-arrow-left:before {
6248 .fa-arrow-left:before {
6440 content: "\f060";
6249 content: "\f060";
6441 }
6250 }
6442 .icon-arrow-right:before {
6251 .fa-arrow-right:before {
6443 content: "\f061";
6252 content: "\f061";
6444 }
6253 }
6445 .icon-arrow-up:before {
6254 .fa-arrow-up:before {
6446 content: "\f062";
6255 content: "\f062";
6447 }
6256 }
6448 .icon-arrow-down:before {
6257 .fa-arrow-down:before {
6449 content: "\f063";
6258 content: "\f063";
6450 }
6259 }
6451 .icon-mail-forward:before,
6260 .fa-mail-forward:before,
6452 .icon-share-alt:before {
6261 .fa-share:before {
6453 content: "\f064";
6262 content: "\f064";
6454 }
6263 }
6455 .icon-resize-full:before {
6264 .fa-expand:before {
6456 content: "\f065";
6265 content: "\f065";
6457 }
6266 }
6458 .icon-resize-small:before {
6267 .fa-compress:before {
6459 content: "\f066";
6268 content: "\f066";
6460 }
6269 }
6461 .icon-plus:before {
6270 .fa-plus:before {
6462 content: "\f067";
6271 content: "\f067";
6463 }
6272 }
6464 .icon-minus:before {
6273 .fa-minus:before {
6465 content: "\f068";
6274 content: "\f068";
6466 }
6275 }
6467 .icon-asterisk:before {
6276 .fa-asterisk:before {
6468 content: "\f069";
6277 content: "\f069";
6469 }
6278 }
6470 .icon-exclamation-sign:before {
6279 .fa-exclamation-circle:before {
6471 content: "\f06a";
6280 content: "\f06a";
6472 }
6281 }
6473 .icon-gift:before {
6282 .fa-gift:before {
6474 content: "\f06b";
6283 content: "\f06b";
6475 }
6284 }
6476 .icon-leaf:before {
6285 .fa-leaf:before {
6477 content: "\f06c";
6286 content: "\f06c";
6478 }
6287 }
6479 .icon-fire:before {
6288 .fa-fire:before {
6480 content: "\f06d";
6289 content: "\f06d";
6481 }
6290 }
6482 .icon-eye-open:before {
6291 .fa-eye:before {
6483 content: "\f06e";
6292 content: "\f06e";
6484 }
6293 }
6485 .icon-eye-close:before {
6294 .fa-eye-slash:before {
6486 content: "\f070";
6295 content: "\f070";
6487 }
6296 }
6488 .icon-warning-sign:before {
6297 .fa-warning:before,
6298 .fa-exclamation-triangle:before {
6489 content: "\f071";
6299 content: "\f071";
6490 }
6300 }
6491 .icon-plane:before {
6301 .fa-plane:before {
6492 content: "\f072";
6302 content: "\f072";
6493 }
6303 }
6494 .icon-calendar:before {
6304 .fa-calendar:before {
6495 content: "\f073";
6305 content: "\f073";
6496 }
6306 }
6497 .icon-random:before {
6307 .fa-random:before {
6498 content: "\f074";
6308 content: "\f074";
6499 }
6309 }
6500 .icon-comment:before {
6310 .fa-comment:before {
6501 content: "\f075";
6311 content: "\f075";
6502 }
6312 }
6503 .icon-magnet:before {
6313 .fa-magnet:before {
6504 content: "\f076";
6314 content: "\f076";
6505 }
6315 }
6506 .icon-chevron-up:before {
6316 .fa-chevron-up:before {
6507 content: "\f077";
6317 content: "\f077";
6508 }
6318 }
6509 .icon-chevron-down:before {
6319 .fa-chevron-down:before {
6510 content: "\f078";
6320 content: "\f078";
6511 }
6321 }
6512 .icon-retweet:before {
6322 .fa-retweet:before {
6513 content: "\f079";
6323 content: "\f079";
6514 }
6324 }
6515 .icon-shopping-cart:before {
6325 .fa-shopping-cart:before {
6516 content: "\f07a";
6326 content: "\f07a";
6517 }
6327 }
6518 .icon-folder-close:before {
6328 .fa-folder:before {
6519 content: "\f07b";
6329 content: "\f07b";
6520 }
6330 }
6521 .icon-folder-open:before {
6331 .fa-folder-open:before {
6522 content: "\f07c";
6332 content: "\f07c";
6523 }
6333 }
6524 .icon-resize-vertical:before {
6334 .fa-arrows-v:before {
6525 content: "\f07d";
6335 content: "\f07d";
6526 }
6336 }
6527 .icon-resize-horizontal:before {
6337 .fa-arrows-h:before {
6528 content: "\f07e";
6338 content: "\f07e";
6529 }
6339 }
6530 .icon-bar-chart:before {
6340 .fa-bar-chart-o:before {
6531 content: "\f080";
6341 content: "\f080";
6532 }
6342 }
6533 .icon-twitter-sign:before {
6343 .fa-twitter-square:before {
6534 content: "\f081";
6344 content: "\f081";
6535 }
6345 }
6536 .icon-facebook-sign:before {
6346 .fa-facebook-square:before {
6537 content: "\f082";
6347 content: "\f082";
6538 }
6348 }
6539 .icon-camera-retro:before {
6349 .fa-camera-retro:before {
6540 content: "\f083";
6350 content: "\f083";
6541 }
6351 }
6542 .icon-key:before {
6352 .fa-key:before {
6543 content: "\f084";
6353 content: "\f084";
6544 }
6354 }
6545 .icon-gears:before,
6355 .fa-gears:before,
6546 .icon-cogs:before {
6356 .fa-cogs:before {
6547 content: "\f085";
6357 content: "\f085";
6548 }
6358 }
6549 .icon-comments:before {
6359 .fa-comments:before {
6550 content: "\f086";
6360 content: "\f086";
6551 }
6361 }
6552 .icon-thumbs-up-alt:before {
6362 .fa-thumbs-o-up:before {
6553 content: "\f087";
6363 content: "\f087";
6554 }
6364 }
6555 .icon-thumbs-down-alt:before {
6365 .fa-thumbs-o-down:before {
6556 content: "\f088";
6366 content: "\f088";
6557 }
6367 }
6558 .icon-star-half:before {
6368 .fa-star-half:before {
6559 content: "\f089";
6369 content: "\f089";
6560 }
6370 }
6561 .icon-heart-empty:before {
6371 .fa-heart-o:before {
6562 content: "\f08a";
6372 content: "\f08a";
6563 }
6373 }
6564 .icon-signout:before {
6374 .fa-sign-out:before {
6565 content: "\f08b";
6375 content: "\f08b";
6566 }
6376 }
6567 .icon-linkedin-sign:before {
6377 .fa-linkedin-square:before {
6568 content: "\f08c";
6378 content: "\f08c";
6569 }
6379 }
6570 .icon-pushpin:before {
6380 .fa-thumb-tack:before {
6571 content: "\f08d";
6381 content: "\f08d";
6572 }
6382 }
6573 .icon-external-link:before {
6383 .fa-external-link:before {
6574 content: "\f08e";
6384 content: "\f08e";
6575 }
6385 }
6576 .icon-signin:before {
6386 .fa-sign-in:before {
6577 content: "\f090";
6387 content: "\f090";
6578 }
6388 }
6579 .icon-trophy:before {
6389 .fa-trophy:before {
6580 content: "\f091";
6390 content: "\f091";
6581 }
6391 }
6582 .icon-github-sign:before {
6392 .fa-github-square:before {
6583 content: "\f092";
6393 content: "\f092";
6584 }
6394 }
6585 .icon-upload-alt:before {
6395 .fa-upload:before {
6586 content: "\f093";
6396 content: "\f093";
6587 }
6397 }
6588 .icon-lemon:before {
6398 .fa-lemon-o:before {
6589 content: "\f094";
6399 content: "\f094";
6590 }
6400 }
6591 .icon-phone:before {
6401 .fa-phone:before {
6592 content: "\f095";
6402 content: "\f095";
6593 }
6403 }
6594 .icon-unchecked:before,
6404 .fa-square-o:before {
6595 .icon-check-empty:before {
6596 content: "\f096";
6405 content: "\f096";
6597 }
6406 }
6598 .icon-bookmark-empty:before {
6407 .fa-bookmark-o:before {
6599 content: "\f097";
6408 content: "\f097";
6600 }
6409 }
6601 .icon-phone-sign:before {
6410 .fa-phone-square:before {
6602 content: "\f098";
6411 content: "\f098";
6603 }
6412 }
6604 .icon-twitter:before {
6413 .fa-twitter:before {
6605 content: "\f099";
6414 content: "\f099";
6606 }
6415 }
6607 .icon-facebook:before {
6416 .fa-facebook:before {
6608 content: "\f09a";
6417 content: "\f09a";
6609 }
6418 }
6610 .icon-github:before {
6419 .fa-github:before {
6611 content: "\f09b";
6420 content: "\f09b";
6612 }
6421 }
6613 .icon-unlock:before {
6422 .fa-unlock:before {
6614 content: "\f09c";
6423 content: "\f09c";
6615 }
6424 }
6616 .icon-credit-card:before {
6425 .fa-credit-card:before {
6617 content: "\f09d";
6426 content: "\f09d";
6618 }
6427 }
6619 .icon-rss:before {
6428 .fa-rss:before {
6620 content: "\f09e";
6429 content: "\f09e";
6621 }
6430 }
6622 .icon-hdd:before {
6431 .fa-hdd-o:before {
6623 content: "\f0a0";
6432 content: "\f0a0";
6624 }
6433 }
6625 .icon-bullhorn:before {
6434 .fa-bullhorn:before {
6626 content: "\f0a1";
6435 content: "\f0a1";
6627 }
6436 }
6628 .icon-bell:before {
6437 .fa-bell:before {
6629 content: "\f0a2";
6438 content: "\f0f3";
6630 }
6439 }
6631 .icon-certificate:before {
6440 .fa-certificate:before {
6632 content: "\f0a3";
6441 content: "\f0a3";
6633 }
6442 }
6634 .icon-hand-right:before {
6443 .fa-hand-o-right:before {
6635 content: "\f0a4";
6444 content: "\f0a4";
6636 }
6445 }
6637 .icon-hand-left:before {
6446 .fa-hand-o-left:before {
6638 content: "\f0a5";
6447 content: "\f0a5";
6639 }
6448 }
6640 .icon-hand-up:before {
6449 .fa-hand-o-up:before {
6641 content: "\f0a6";
6450 content: "\f0a6";
6642 }
6451 }
6643 .icon-hand-down:before {
6452 .fa-hand-o-down:before {
6644 content: "\f0a7";
6453 content: "\f0a7";
6645 }
6454 }
6646 .icon-circle-arrow-left:before {
6455 .fa-arrow-circle-left:before {
6647 content: "\f0a8";
6456 content: "\f0a8";
6648 }
6457 }
6649 .icon-circle-arrow-right:before {
6458 .fa-arrow-circle-right:before {
6650 content: "\f0a9";
6459 content: "\f0a9";
6651 }
6460 }
6652 .icon-circle-arrow-up:before {
6461 .fa-arrow-circle-up:before {
6653 content: "\f0aa";
6462 content: "\f0aa";
6654 }
6463 }
6655 .icon-circle-arrow-down:before {
6464 .fa-arrow-circle-down:before {
6656 content: "\f0ab";
6465 content: "\f0ab";
6657 }
6466 }
6658 .icon-globe:before {
6467 .fa-globe:before {
6659 content: "\f0ac";
6468 content: "\f0ac";
6660 }
6469 }
6661 .icon-wrench:before {
6470 .fa-wrench:before {
6662 content: "\f0ad";
6471 content: "\f0ad";
6663 }
6472 }
6664 .icon-tasks:before {
6473 .fa-tasks:before {
6665 content: "\f0ae";
6474 content: "\f0ae";
6666 }
6475 }
6667 .icon-filter:before {
6476 .fa-filter:before {
6668 content: "\f0b0";
6477 content: "\f0b0";
6669 }
6478 }
6670 .icon-briefcase:before {
6479 .fa-briefcase:before {
6671 content: "\f0b1";
6480 content: "\f0b1";
6672 }
6481 }
6673 .icon-fullscreen:before {
6482 .fa-arrows-alt:before {
6674 content: "\f0b2";
6483 content: "\f0b2";
6675 }
6484 }
6676 .icon-group:before {
6485 .fa-group:before,
6486 .fa-users:before {
6677 content: "\f0c0";
6487 content: "\f0c0";
6678 }
6488 }
6679 .icon-link:before {
6489 .fa-chain:before,
6490 .fa-link:before {
6680 content: "\f0c1";
6491 content: "\f0c1";
6681 }
6492 }
6682 .icon-cloud:before {
6493 .fa-cloud:before {
6683 content: "\f0c2";
6494 content: "\f0c2";
6684 }
6495 }
6685 .icon-beaker:before {
6496 .fa-flask:before {
6686 content: "\f0c3";
6497 content: "\f0c3";
6687 }
6498 }
6688 .icon-cut:before {
6499 .fa-cut:before,
6500 .fa-scissors:before {
6689 content: "\f0c4";
6501 content: "\f0c4";
6690 }
6502 }
6691 .icon-copy:before {
6503 .fa-copy:before,
6504 .fa-files-o:before {
6692 content: "\f0c5";
6505 content: "\f0c5";
6693 }
6506 }
6694 .icon-paperclip:before,
6507 .fa-paperclip:before {
6695 .icon-paper-clip:before {
6696 content: "\f0c6";
6508 content: "\f0c6";
6697 }
6509 }
6698 .icon-save:before {
6510 .fa-save:before,
6511 .fa-floppy-o:before {
6699 content: "\f0c7";
6512 content: "\f0c7";
6700 }
6513 }
6701 .icon-sign-blank:before {
6514 .fa-square:before {
6702 content: "\f0c8";
6515 content: "\f0c8";
6703 }
6516 }
6704 .icon-reorder:before {
6517 .fa-navicon:before,
6518 .fa-reorder:before,
6519 .fa-bars:before {
6705 content: "\f0c9";
6520 content: "\f0c9";
6706 }
6521 }
6707 .icon-list-ul:before {
6522 .fa-list-ul:before {
6708 content: "\f0ca";
6523 content: "\f0ca";
6709 }
6524 }
6710 .icon-list-ol:before {
6525 .fa-list-ol:before {
6711 content: "\f0cb";
6526 content: "\f0cb";
6712 }
6527 }
6713 .icon-strikethrough:before {
6528 .fa-strikethrough:before {
6714 content: "\f0cc";
6529 content: "\f0cc";
6715 }
6530 }
6716 .icon-underline:before {
6531 .fa-underline:before {
6717 content: "\f0cd";
6532 content: "\f0cd";
6718 }
6533 }
6719 .icon-table:before {
6534 .fa-table:before {
6720 content: "\f0ce";
6535 content: "\f0ce";
6721 }
6536 }
6722 .icon-magic:before {
6537 .fa-magic:before {
6723 content: "\f0d0";
6538 content: "\f0d0";
6724 }
6539 }
6725 .icon-truck:before {
6540 .fa-truck:before {
6726 content: "\f0d1";
6541 content: "\f0d1";
6727 }
6542 }
6728 .icon-pinterest:before {
6543 .fa-pinterest:before {
6729 content: "\f0d2";
6544 content: "\f0d2";
6730 }
6545 }
6731 .icon-pinterest-sign:before {
6546 .fa-pinterest-square:before {
6732 content: "\f0d3";
6547 content: "\f0d3";
6733 }
6548 }
6734 .icon-google-plus-sign:before {
6549 .fa-google-plus-square:before {
6735 content: "\f0d4";
6550 content: "\f0d4";
6736 }
6551 }
6737 .icon-google-plus:before {
6552 .fa-google-plus:before {
6738 content: "\f0d5";
6553 content: "\f0d5";
6739 }
6554 }
6740 .icon-money:before {
6555 .fa-money:before {
6741 content: "\f0d6";
6556 content: "\f0d6";
6742 }
6557 }
6743 .icon-caret-down:before {
6558 .fa-caret-down:before {
6744 content: "\f0d7";
6559 content: "\f0d7";
6745 }
6560 }
6746 .icon-caret-up:before {
6561 .fa-caret-up:before {
6747 content: "\f0d8";
6562 content: "\f0d8";
6748 }
6563 }
6749 .icon-caret-left:before {
6564 .fa-caret-left:before {
6750 content: "\f0d9";
6565 content: "\f0d9";
6751 }
6566 }
6752 .icon-caret-right:before {
6567 .fa-caret-right:before {
6753 content: "\f0da";
6568 content: "\f0da";
6754 }
6569 }
6755 .icon-columns:before {
6570 .fa-columns:before {
6756 content: "\f0db";
6571 content: "\f0db";
6757 }
6572 }
6758 .icon-sort:before {
6573 .fa-unsorted:before,
6574 .fa-sort:before {
6759 content: "\f0dc";
6575 content: "\f0dc";
6760 }
6576 }
6761 .icon-sort-down:before {
6577 .fa-sort-down:before,
6578 .fa-sort-desc:before {
6762 content: "\f0dd";
6579 content: "\f0dd";
6763 }
6580 }
6764 .icon-sort-up:before {
6581 .fa-sort-up:before,
6582 .fa-sort-asc:before {
6765 content: "\f0de";
6583 content: "\f0de";
6766 }
6584 }
6767 .icon-envelope:before {
6585 .fa-envelope:before {
6768 content: "\f0e0";
6586 content: "\f0e0";
6769 }
6587 }
6770 .icon-linkedin:before {
6588 .fa-linkedin:before {
6771 content: "\f0e1";
6589 content: "\f0e1";
6772 }
6590 }
6773 .icon-rotate-left:before,
6591 .fa-rotate-left:before,
6774 .icon-undo:before {
6592 .fa-undo:before {
6775 content: "\f0e2";
6593 content: "\f0e2";
6776 }
6594 }
6777 .icon-legal:before {
6595 .fa-legal:before,
6596 .fa-gavel:before {
6778 content: "\f0e3";
6597 content: "\f0e3";
6779 }
6598 }
6780 .icon-dashboard:before {
6599 .fa-dashboard:before,
6600 .fa-tachometer:before {
6781 content: "\f0e4";
6601 content: "\f0e4";
6782 }
6602 }
6783 .icon-comment-alt:before {
6603 .fa-comment-o:before {
6784 content: "\f0e5";
6604 content: "\f0e5";
6785 }
6605 }
6786 .icon-comments-alt:before {
6606 .fa-comments-o:before {
6787 content: "\f0e6";
6607 content: "\f0e6";
6788 }
6608 }
6789 .icon-bolt:before {
6609 .fa-flash:before,
6610 .fa-bolt:before {
6790 content: "\f0e7";
6611 content: "\f0e7";
6791 }
6612 }
6792 .icon-sitemap:before {
6613 .fa-sitemap:before {
6793 content: "\f0e8";
6614 content: "\f0e8";
6794 }
6615 }
6795 .icon-umbrella:before {
6616 .fa-umbrella:before {
6796 content: "\f0e9";
6617 content: "\f0e9";
6797 }
6618 }
6798 .icon-paste:before {
6619 .fa-paste:before,
6620 .fa-clipboard:before {
6799 content: "\f0ea";
6621 content: "\f0ea";
6800 }
6622 }
6801 .icon-lightbulb:before {
6623 .fa-lightbulb-o:before {
6802 content: "\f0eb";
6624 content: "\f0eb";
6803 }
6625 }
6804 .icon-exchange:before {
6626 .fa-exchange:before {
6805 content: "\f0ec";
6627 content: "\f0ec";
6806 }
6628 }
6807 .icon-cloud-download:before {
6629 .fa-cloud-download:before {
6808 content: "\f0ed";
6630 content: "\f0ed";
6809 }
6631 }
6810 .icon-cloud-upload:before {
6632 .fa-cloud-upload:before {
6811 content: "\f0ee";
6633 content: "\f0ee";
6812 }
6634 }
6813 .icon-user-md:before {
6635 .fa-user-md:before {
6814 content: "\f0f0";
6636 content: "\f0f0";
6815 }
6637 }
6816 .icon-stethoscope:before {
6638 .fa-stethoscope:before {
6817 content: "\f0f1";
6639 content: "\f0f1";
6818 }
6640 }
6819 .icon-suitcase:before {
6641 .fa-suitcase:before {
6820 content: "\f0f2";
6642 content: "\f0f2";
6821 }
6643 }
6822 .icon-bell-alt:before {
6644 .fa-bell-o:before {
6823 content: "\f0f3";
6645 content: "\f0a2";
6824 }
6646 }
6825 .icon-coffee:before {
6647 .fa-coffee:before {
6826 content: "\f0f4";
6648 content: "\f0f4";
6827 }
6649 }
6828 .icon-food:before {
6650 .fa-cutlery:before {
6829 content: "\f0f5";
6651 content: "\f0f5";
6830 }
6652 }
6831 .icon-file-text-alt:before {
6653 .fa-file-text-o:before {
6832 content: "\f0f6";
6654 content: "\f0f6";
6833 }
6655 }
6834 .icon-building:before {
6656 .fa-building-o:before {
6835 content: "\f0f7";
6657 content: "\f0f7";
6836 }
6658 }
6837 .icon-hospital:before {
6659 .fa-hospital-o:before {
6838 content: "\f0f8";
6660 content: "\f0f8";
6839 }
6661 }
6840 .icon-ambulance:before {
6662 .fa-ambulance:before {
6841 content: "\f0f9";
6663 content: "\f0f9";
6842 }
6664 }
6843 .icon-medkit:before {
6665 .fa-medkit:before {
6844 content: "\f0fa";
6666 content: "\f0fa";
6845 }
6667 }
6846 .icon-fighter-jet:before {
6668 .fa-fighter-jet:before {
6847 content: "\f0fb";
6669 content: "\f0fb";
6848 }
6670 }
6849 .icon-beer:before {
6671 .fa-beer:before {
6850 content: "\f0fc";
6672 content: "\f0fc";
6851 }
6673 }
6852 .icon-h-sign:before {
6674 .fa-h-square:before {
6853 content: "\f0fd";
6675 content: "\f0fd";
6854 }
6676 }
6855 .icon-plus-sign-alt:before {
6677 .fa-plus-square:before {
6856 content: "\f0fe";
6678 content: "\f0fe";
6857 }
6679 }
6858 .icon-double-angle-left:before {
6680 .fa-angle-double-left:before {
6859 content: "\f100";
6681 content: "\f100";
6860 }
6682 }
6861 .icon-double-angle-right:before {
6683 .fa-angle-double-right:before {
6862 content: "\f101";
6684 content: "\f101";
6863 }
6685 }
6864 .icon-double-angle-up:before {
6686 .fa-angle-double-up:before {
6865 content: "\f102";
6687 content: "\f102";
6866 }
6688 }
6867 .icon-double-angle-down:before {
6689 .fa-angle-double-down:before {
6868 content: "\f103";
6690 content: "\f103";
6869 }
6691 }
6870 .icon-angle-left:before {
6692 .fa-angle-left:before {
6871 content: "\f104";
6693 content: "\f104";
6872 }
6694 }
6873 .icon-angle-right:before {
6695 .fa-angle-right:before {
6874 content: "\f105";
6696 content: "\f105";
6875 }
6697 }
6876 .icon-angle-up:before {
6698 .fa-angle-up:before {
6877 content: "\f106";
6699 content: "\f106";
6878 }
6700 }
6879 .icon-angle-down:before {
6701 .fa-angle-down:before {
6880 content: "\f107";
6702 content: "\f107";
6881 }
6703 }
6882 .icon-desktop:before {
6704 .fa-desktop:before {
6883 content: "\f108";
6705 content: "\f108";
6884 }
6706 }
6885 .icon-laptop:before {
6707 .fa-laptop:before {
6886 content: "\f109";
6708 content: "\f109";
6887 }
6709 }
6888 .icon-tablet:before {
6710 .fa-tablet:before {
6889 content: "\f10a";
6711 content: "\f10a";
6890 }
6712 }
6891 .icon-mobile-phone:before {
6713 .fa-mobile-phone:before,
6714 .fa-mobile:before {
6892 content: "\f10b";
6715 content: "\f10b";
6893 }
6716 }
6894 .icon-circle-blank:before {
6717 .fa-circle-o:before {
6895 content: "\f10c";
6718 content: "\f10c";
6896 }
6719 }
6897 .icon-quote-left:before {
6720 .fa-quote-left:before {
6898 content: "\f10d";
6721 content: "\f10d";
6899 }
6722 }
6900 .icon-quote-right:before {
6723 .fa-quote-right:before {
6901 content: "\f10e";
6724 content: "\f10e";
6902 }
6725 }
6903 .icon-spinner:before {
6726 .fa-spinner:before {
6904 content: "\f110";
6727 content: "\f110";
6905 }
6728 }
6906 .icon-circle:before {
6729 .fa-circle:before {
6907 content: "\f111";
6730 content: "\f111";
6908 }
6731 }
6909 .icon-mail-reply:before,
6732 .fa-mail-reply:before,
6910 .icon-reply:before {
6733 .fa-reply:before {
6911 content: "\f112";
6734 content: "\f112";
6912 }
6735 }
6913 .icon-github-alt:before {
6736 .fa-github-alt:before {
6914 content: "\f113";
6737 content: "\f113";
6915 }
6738 }
6916 .icon-folder-close-alt:before {
6739 .fa-folder-o:before {
6917 content: "\f114";
6740 content: "\f114";
6918 }
6741 }
6919 .icon-folder-open-alt:before {
6742 .fa-folder-open-o:before {
6920 content: "\f115";
6743 content: "\f115";
6921 }
6744 }
6922 .icon-expand-alt:before {
6745 .fa-smile-o:before {
6923 content: "\f116";
6924 }
6925 .icon-collapse-alt:before {
6926 content: "\f117";
6927 }
6928 .icon-smile:before {
6929 content: "\f118";
6746 content: "\f118";
6930 }
6747 }
6931 .icon-frown:before {
6748 .fa-frown-o:before {
6932 content: "\f119";
6749 content: "\f119";
6933 }
6750 }
6934 .icon-meh:before {
6751 .fa-meh-o:before {
6935 content: "\f11a";
6752 content: "\f11a";
6936 }
6753 }
6937 .icon-gamepad:before {
6754 .fa-gamepad:before {
6938 content: "\f11b";
6755 content: "\f11b";
6939 }
6756 }
6940 .icon-keyboard:before {
6757 .fa-keyboard-o:before {
6941 content: "\f11c";
6758 content: "\f11c";
6942 }
6759 }
6943 .icon-flag-alt:before {
6760 .fa-flag-o:before {
6944 content: "\f11d";
6761 content: "\f11d";
6945 }
6762 }
6946 .icon-flag-checkered:before {
6763 .fa-flag-checkered:before {
6947 content: "\f11e";
6764 content: "\f11e";
6948 }
6765 }
6949 .icon-terminal:before {
6766 .fa-terminal:before {
6950 content: "\f120";
6767 content: "\f120";
6951 }
6768 }
6952 .icon-code:before {
6769 .fa-code:before {
6953 content: "\f121";
6770 content: "\f121";
6954 }
6771 }
6955 .icon-reply-all:before {
6772 .fa-mail-reply-all:before,
6773 .fa-reply-all:before {
6956 content: "\f122";
6774 content: "\f122";
6957 }
6775 }
6958 .icon-mail-reply-all:before {
6776 .fa-star-half-empty:before,
6959 content: "\f122";
6777 .fa-star-half-full:before,
6960 }
6778 .fa-star-half-o:before {
6961 .icon-star-half-full:before,
6962 .icon-star-half-empty:before {
6963 content: "\f123";
6779 content: "\f123";
6964 }
6780 }
6965 .icon-location-arrow:before {
6781 .fa-location-arrow:before {
6966 content: "\f124";
6782 content: "\f124";
6967 }
6783 }
6968 .icon-crop:before {
6784 .fa-crop:before {
6969 content: "\f125";
6785 content: "\f125";
6970 }
6786 }
6971 .icon-code-fork:before {
6787 .fa-code-fork:before {
6972 content: "\f126";
6788 content: "\f126";
6973 }
6789 }
6974 .icon-unlink:before {
6790 .fa-unlink:before,
6791 .fa-chain-broken:before {
6975 content: "\f127";
6792 content: "\f127";
6976 }
6793 }
6977 .icon-question:before {
6794 .fa-question:before {
6978 content: "\f128";
6795 content: "\f128";
6979 }
6796 }
6980 .icon-info:before {
6797 .fa-info:before {
6981 content: "\f129";
6798 content: "\f129";
6982 }
6799 }
6983 .icon-exclamation:before {
6800 .fa-exclamation:before {
6984 content: "\f12a";
6801 content: "\f12a";
6985 }
6802 }
6986 .icon-superscript:before {
6803 .fa-superscript:before {
6987 content: "\f12b";
6804 content: "\f12b";
6988 }
6805 }
6989 .icon-subscript:before {
6806 .fa-subscript:before {
6990 content: "\f12c";
6807 content: "\f12c";
6991 }
6808 }
6992 .icon-eraser:before {
6809 .fa-eraser:before {
6993 content: "\f12d";
6810 content: "\f12d";
6994 }
6811 }
6995 .icon-puzzle-piece:before {
6812 .fa-puzzle-piece:before {
6996 content: "\f12e";
6813 content: "\f12e";
6997 }
6814 }
6998 .icon-microphone:before {
6815 .fa-microphone:before {
6999 content: "\f130";
6816 content: "\f130";
7000 }
6817 }
7001 .icon-microphone-off:before {
6818 .fa-microphone-slash:before {
7002 content: "\f131";
6819 content: "\f131";
7003 }
6820 }
7004 .icon-shield:before {
6821 .fa-shield:before {
7005 content: "\f132";
6822 content: "\f132";
7006 }
6823 }
7007 .icon-calendar-empty:before {
6824 .fa-calendar-o:before {
7008 content: "\f133";
6825 content: "\f133";
7009 }
6826 }
7010 .icon-fire-extinguisher:before {
6827 .fa-fire-extinguisher:before {
7011 content: "\f134";
6828 content: "\f134";
7012 }
6829 }
7013 .icon-rocket:before {
6830 .fa-rocket:before {
7014 content: "\f135";
6831 content: "\f135";
7015 }
6832 }
7016 .icon-maxcdn:before {
6833 .fa-maxcdn:before {
7017 content: "\f136";
6834 content: "\f136";
7018 }
6835 }
7019 .icon-chevron-sign-left:before {
6836 .fa-chevron-circle-left:before {
7020 content: "\f137";
6837 content: "\f137";
7021 }
6838 }
7022 .icon-chevron-sign-right:before {
6839 .fa-chevron-circle-right:before {
7023 content: "\f138";
6840 content: "\f138";
7024 }
6841 }
7025 .icon-chevron-sign-up:before {
6842 .fa-chevron-circle-up:before {
7026 content: "\f139";
6843 content: "\f139";
7027 }
6844 }
7028 .icon-chevron-sign-down:before {
6845 .fa-chevron-circle-down:before {
7029 content: "\f13a";
6846 content: "\f13a";
7030 }
6847 }
7031 .icon-html5:before {
6848 .fa-html5:before {
7032 content: "\f13b";
6849 content: "\f13b";
7033 }
6850 }
7034 .icon-css3:before {
6851 .fa-css3:before {
7035 content: "\f13c";
6852 content: "\f13c";
7036 }
6853 }
7037 .icon-anchor:before {
6854 .fa-anchor:before {
7038 content: "\f13d";
6855 content: "\f13d";
7039 }
6856 }
7040 .icon-unlock-alt:before {
6857 .fa-unlock-alt:before {
7041 content: "\f13e";
6858 content: "\f13e";
7042 }
6859 }
7043 .icon-bullseye:before {
6860 .fa-bullseye:before {
7044 content: "\f140";
6861 content: "\f140";
7045 }
6862 }
7046 .icon-ellipsis-horizontal:before {
6863 .fa-ellipsis-h:before {
7047 content: "\f141";
6864 content: "\f141";
7048 }
6865 }
7049 .icon-ellipsis-vertical:before {
6866 .fa-ellipsis-v:before {
7050 content: "\f142";
6867 content: "\f142";
7051 }
6868 }
7052 .icon-rss-sign:before {
6869 .fa-rss-square:before {
7053 content: "\f143";
6870 content: "\f143";
7054 }
6871 }
7055 .icon-play-sign:before {
6872 .fa-play-circle:before {
7056 content: "\f144";
6873 content: "\f144";
7057 }
6874 }
7058 .icon-ticket:before {
6875 .fa-ticket:before {
7059 content: "\f145";
6876 content: "\f145";
7060 }
6877 }
7061 .icon-minus-sign-alt:before {
6878 .fa-minus-square:before {
7062 content: "\f146";
6879 content: "\f146";
7063 }
6880 }
7064 .icon-check-minus:before {
6881 .fa-minus-square-o:before {
7065 content: "\f147";
6882 content: "\f147";
7066 }
6883 }
7067 .icon-level-up:before {
6884 .fa-level-up:before {
7068 content: "\f148";
6885 content: "\f148";
7069 }
6886 }
7070 .icon-level-down:before {
6887 .fa-level-down:before {
7071 content: "\f149";
6888 content: "\f149";
7072 }
6889 }
7073 .icon-check-sign:before {
6890 .fa-check-square:before {
7074 content: "\f14a";
6891 content: "\f14a";
7075 }
6892 }
7076 .icon-edit-sign:before {
6893 .fa-pencil-square:before {
7077 content: "\f14b";
6894 content: "\f14b";
7078 }
6895 }
7079 .icon-external-link-sign:before {
6896 .fa-external-link-square:before {
7080 content: "\f14c";
6897 content: "\f14c";
7081 }
6898 }
7082 .icon-share-sign:before {
6899 .fa-share-square:before {
7083 content: "\f14d";
6900 content: "\f14d";
7084 }
6901 }
7085 .icon-compass:before {
6902 .fa-compass:before {
7086 content: "\f14e";
6903 content: "\f14e";
7087 }
6904 }
7088 .icon-collapse:before {
6905 .fa-toggle-down:before,
6906 .fa-caret-square-o-down:before {
7089 content: "\f150";
6907 content: "\f150";
7090 }
6908 }
7091 .icon-collapse-top:before {
6909 .fa-toggle-up:before,
6910 .fa-caret-square-o-up:before {
7092 content: "\f151";
6911 content: "\f151";
7093 }
6912 }
7094 .icon-expand:before {
6913 .fa-toggle-right:before,
6914 .fa-caret-square-o-right:before {
7095 content: "\f152";
6915 content: "\f152";
7096 }
6916 }
7097 .icon-euro:before,
6917 .fa-euro:before,
7098 .icon-eur:before {
6918 .fa-eur:before {
7099 content: "\f153";
6919 content: "\f153";
7100 }
6920 }
7101 .icon-gbp:before {
6921 .fa-gbp:before {
7102 content: "\f154";
6922 content: "\f154";
7103 }
6923 }
7104 .icon-dollar:before,
6924 .fa-dollar:before,
7105 .icon-usd:before {
6925 .fa-usd:before {
7106 content: "\f155";
6926 content: "\f155";
7107 }
6927 }
7108 .icon-rupee:before,
6928 .fa-rupee:before,
7109 .icon-inr:before {
6929 .fa-inr:before {
7110 content: "\f156";
6930 content: "\f156";
7111 }
6931 }
7112 .icon-yen:before,
6932 .fa-cny:before,
7113 .icon-jpy:before {
6933 .fa-rmb:before,
6934 .fa-yen:before,
6935 .fa-jpy:before {
7114 content: "\f157";
6936 content: "\f157";
7115 }
6937 }
7116 .icon-renminbi:before,
6938 .fa-ruble:before,
7117 .icon-cny:before {
6939 .fa-rouble:before,
6940 .fa-rub:before {
7118 content: "\f158";
6941 content: "\f158";
7119 }
6942 }
7120 .icon-won:before,
6943 .fa-won:before,
7121 .icon-krw:before {
6944 .fa-krw:before {
7122 content: "\f159";
6945 content: "\f159";
7123 }
6946 }
7124 .icon-bitcoin:before,
6947 .fa-bitcoin:before,
7125 .icon-btc:before {
6948 .fa-btc:before {
7126 content: "\f15a";
6949 content: "\f15a";
7127 }
6950 }
7128 .icon-file:before {
6951 .fa-file:before {
7129 content: "\f15b";
6952 content: "\f15b";
7130 }
6953 }
7131 .icon-file-text:before {
6954 .fa-file-text:before {
7132 content: "\f15c";
6955 content: "\f15c";
7133 }
6956 }
7134 .icon-sort-by-alphabet:before {
6957 .fa-sort-alpha-asc:before {
7135 content: "\f15d";
6958 content: "\f15d";
7136 }
6959 }
7137 .icon-sort-by-alphabet-alt:before {
6960 .fa-sort-alpha-desc:before {
7138 content: "\f15e";
6961 content: "\f15e";
7139 }
6962 }
7140 .icon-sort-by-attributes:before {
6963 .fa-sort-amount-asc:before {
7141 content: "\f160";
6964 content: "\f160";
7142 }
6965 }
7143 .icon-sort-by-attributes-alt:before {
6966 .fa-sort-amount-desc:before {
7144 content: "\f161";
6967 content: "\f161";
7145 }
6968 }
7146 .icon-sort-by-order:before {
6969 .fa-sort-numeric-asc:before {
7147 content: "\f162";
6970 content: "\f162";
7148 }
6971 }
7149 .icon-sort-by-order-alt:before {
6972 .fa-sort-numeric-desc:before {
7150 content: "\f163";
6973 content: "\f163";
7151 }
6974 }
7152 .icon-thumbs-up:before {
6975 .fa-thumbs-up:before {
7153 content: "\f164";
6976 content: "\f164";
7154 }
6977 }
7155 .icon-thumbs-down:before {
6978 .fa-thumbs-down:before {
7156 content: "\f165";
6979 content: "\f165";
7157 }
6980 }
7158 .icon-youtube-sign:before {
6981 .fa-youtube-square:before {
7159 content: "\f166";
6982 content: "\f166";
7160 }
6983 }
7161 .icon-youtube:before {
6984 .fa-youtube:before {
7162 content: "\f167";
6985 content: "\f167";
7163 }
6986 }
7164 .icon-xing:before {
6987 .fa-xing:before {
7165 content: "\f168";
6988 content: "\f168";
7166 }
6989 }
7167 .icon-xing-sign:before {
6990 .fa-xing-square:before {
7168 content: "\f169";
6991 content: "\f169";
7169 }
6992 }
7170 .icon-youtube-play:before {
6993 .fa-youtube-play:before {
7171 content: "\f16a";
6994 content: "\f16a";
7172 }
6995 }
7173 .icon-dropbox:before {
6996 .fa-dropbox:before {
7174 content: "\f16b";
6997 content: "\f16b";
7175 }
6998 }
7176 .icon-stackexchange:before {
6999 .fa-stack-overflow:before {
7177 content: "\f16c";
7000 content: "\f16c";
7178 }
7001 }
7179 .icon-instagram:before {
7002 .fa-instagram:before {
7180 content: "\f16d";
7003 content: "\f16d";
7181 }
7004 }
7182 .icon-flickr:before {
7005 .fa-flickr:before {
7183 content: "\f16e";
7006 content: "\f16e";
7184 }
7007 }
7185 .icon-adn:before {
7008 .fa-adn:before {
7186 content: "\f170";
7009 content: "\f170";
7187 }
7010 }
7188 .icon-bitbucket:before {
7011 .fa-bitbucket:before {
7189 content: "\f171";
7012 content: "\f171";
7190 }
7013 }
7191 .icon-bitbucket-sign:before {
7014 .fa-bitbucket-square:before {
7192 content: "\f172";
7015 content: "\f172";
7193 }
7016 }
7194 .icon-tumblr:before {
7017 .fa-tumblr:before {
7195 content: "\f173";
7018 content: "\f173";
7196 }
7019 }
7197 .icon-tumblr-sign:before {
7020 .fa-tumblr-square:before {
7198 content: "\f174";
7021 content: "\f174";
7199 }
7022 }
7200 .icon-long-arrow-down:before {
7023 .fa-long-arrow-down:before {
7201 content: "\f175";
7024 content: "\f175";
7202 }
7025 }
7203 .icon-long-arrow-up:before {
7026 .fa-long-arrow-up:before {
7204 content: "\f176";
7027 content: "\f176";
7205 }
7028 }
7206 .icon-long-arrow-left:before {
7029 .fa-long-arrow-left:before {
7207 content: "\f177";
7030 content: "\f177";
7208 }
7031 }
7209 .icon-long-arrow-right:before {
7032 .fa-long-arrow-right:before {
7210 content: "\f178";
7033 content: "\f178";
7211 }
7034 }
7212 .icon-apple:before {
7035 .fa-apple:before {
7213 content: "\f179";
7036 content: "\f179";
7214 }
7037 }
7215 .icon-windows:before {
7038 .fa-windows:before {
7216 content: "\f17a";
7039 content: "\f17a";
7217 }
7040 }
7218 .icon-android:before {
7041 .fa-android:before {
7219 content: "\f17b";
7042 content: "\f17b";
7220 }
7043 }
7221 .icon-linux:before {
7044 .fa-linux:before {
7222 content: "\f17c";
7045 content: "\f17c";
7223 }
7046 }
7224 .icon-dribbble:before {
7047 .fa-dribbble:before {
7225 content: "\f17d";
7048 content: "\f17d";
7226 }
7049 }
7227 .icon-skype:before {
7050 .fa-skype:before {
7228 content: "\f17e";
7051 content: "\f17e";
7229 }
7052 }
7230 .icon-foursquare:before {
7053 .fa-foursquare:before {
7231 content: "\f180";
7054 content: "\f180";
7232 }
7055 }
7233 .icon-trello:before {
7056 .fa-trello:before {
7234 content: "\f181";
7057 content: "\f181";
7235 }
7058 }
7236 .icon-female:before {
7059 .fa-female:before {
7237 content: "\f182";
7060 content: "\f182";
7238 }
7061 }
7239 .icon-male:before {
7062 .fa-male:before {
7240 content: "\f183";
7063 content: "\f183";
7241 }
7064 }
7242 .icon-gittip:before {
7065 .fa-gittip:before {
7243 content: "\f184";
7066 content: "\f184";
7244 }
7067 }
7245 .icon-sun:before {
7068 .fa-sun-o:before {
7246 content: "\f185";
7069 content: "\f185";
7247 }
7070 }
7248 .icon-moon:before {
7071 .fa-moon-o:before {
7249 content: "\f186";
7072 content: "\f186";
7250 }
7073 }
7251 .icon-archive:before {
7074 .fa-archive:before {
7252 content: "\f187";
7075 content: "\f187";
7253 }
7076 }
7254 .icon-bug:before {
7077 .fa-bug:before {
7255 content: "\f188";
7078 content: "\f188";
7256 }
7079 }
7257 .icon-vk:before {
7080 .fa-vk:before {
7258 content: "\f189";
7081 content: "\f189";
7259 }
7082 }
7260 .icon-weibo:before {
7083 .fa-weibo:before {
7261 content: "\f18a";
7084 content: "\f18a";
7262 }
7085 }
7263 .icon-renren:before {
7086 .fa-renren:before {
7264 content: "\f18b";
7087 content: "\f18b";
7265 }
7088 }
7089 .fa-pagelines:before {
7090 content: "\f18c";
7091 }
7092 .fa-stack-exchange:before {
7093 content: "\f18d";
7094 }
7095 .fa-arrow-circle-o-right:before {
7096 content: "\f18e";
7097 }
7098 .fa-arrow-circle-o-left:before {
7099 content: "\f190";
7100 }
7101 .fa-toggle-left:before,
7102 .fa-caret-square-o-left:before {
7103 content: "\f191";
7104 }
7105 .fa-dot-circle-o:before {
7106 content: "\f192";
7107 }
7108 .fa-wheelchair:before {
7109 content: "\f193";
7110 }
7111 .fa-vimeo-square:before {
7112 content: "\f194";
7113 }
7114 .fa-turkish-lira:before,
7115 .fa-try:before {
7116 content: "\f195";
7117 }
7118 .fa-plus-square-o:before {
7119 content: "\f196";
7120 }
7121 .fa-space-shuttle:before {
7122 content: "\f197";
7123 }
7124 .fa-slack:before {
7125 content: "\f198";
7126 }
7127 .fa-envelope-square:before {
7128 content: "\f199";
7129 }
7130 .fa-wordpress:before {
7131 content: "\f19a";
7132 }
7133 .fa-openid:before {
7134 content: "\f19b";
7135 }
7136 .fa-institution:before,
7137 .fa-bank:before,
7138 .fa-university:before {
7139 content: "\f19c";
7140 }
7141 .fa-mortar-board:before,
7142 .fa-graduation-cap:before {
7143 content: "\f19d";
7144 }
7145 .fa-yahoo:before {
7146 content: "\f19e";
7147 }
7148 .fa-google:before {
7149 content: "\f1a0";
7150 }
7151 .fa-reddit:before {
7152 content: "\f1a1";
7153 }
7154 .fa-reddit-square:before {
7155 content: "\f1a2";
7156 }
7157 .fa-stumbleupon-circle:before {
7158 content: "\f1a3";
7159 }
7160 .fa-stumbleupon:before {
7161 content: "\f1a4";
7162 }
7163 .fa-delicious:before {
7164 content: "\f1a5";
7165 }
7166 .fa-digg:before {
7167 content: "\f1a6";
7168 }
7169 .fa-pied-piper-square:before,
7170 .fa-pied-piper:before {
7171 content: "\f1a7";
7172 }
7173 .fa-pied-piper-alt:before {
7174 content: "\f1a8";
7175 }
7176 .fa-drupal:before {
7177 content: "\f1a9";
7178 }
7179 .fa-joomla:before {
7180 content: "\f1aa";
7181 }
7182 .fa-language:before {
7183 content: "\f1ab";
7184 }
7185 .fa-fax:before {
7186 content: "\f1ac";
7187 }
7188 .fa-building:before {
7189 content: "\f1ad";
7190 }
7191 .fa-child:before {
7192 content: "\f1ae";
7193 }
7194 .fa-paw:before {
7195 content: "\f1b0";
7196 }
7197 .fa-spoon:before {
7198 content: "\f1b1";
7199 }
7200 .fa-cube:before {
7201 content: "\f1b2";
7202 }
7203 .fa-cubes:before {
7204 content: "\f1b3";
7205 }
7206 .fa-behance:before {
7207 content: "\f1b4";
7208 }
7209 .fa-behance-square:before {
7210 content: "\f1b5";
7211 }
7212 .fa-steam:before {
7213 content: "\f1b6";
7214 }
7215 .fa-steam-square:before {
7216 content: "\f1b7";
7217 }
7218 .fa-recycle:before {
7219 content: "\f1b8";
7220 }
7221 .fa-automobile:before,
7222 .fa-car:before {
7223 content: "\f1b9";
7224 }
7225 .fa-cab:before,
7226 .fa-taxi:before {
7227 content: "\f1ba";
7228 }
7229 .fa-tree:before {
7230 content: "\f1bb";
7231 }
7232 .fa-spotify:before {
7233 content: "\f1bc";
7234 }
7235 .fa-deviantart:before {
7236 content: "\f1bd";
7237 }
7238 .fa-soundcloud:before {
7239 content: "\f1be";
7240 }
7241 .fa-database:before {
7242 content: "\f1c0";
7243 }
7244 .fa-file-pdf-o:before {
7245 content: "\f1c1";
7246 }
7247 .fa-file-word-o:before {
7248 content: "\f1c2";
7249 }
7250 .fa-file-excel-o:before {
7251 content: "\f1c3";
7252 }
7253 .fa-file-powerpoint-o:before {
7254 content: "\f1c4";
7255 }
7256 .fa-file-photo-o:before,
7257 .fa-file-picture-o:before,
7258 .fa-file-image-o:before {
7259 content: "\f1c5";
7260 }
7261 .fa-file-zip-o:before,
7262 .fa-file-archive-o:before {
7263 content: "\f1c6";
7264 }
7265 .fa-file-sound-o:before,
7266 .fa-file-audio-o:before {
7267 content: "\f1c7";
7268 }
7269 .fa-file-movie-o:before,
7270 .fa-file-video-o:before {
7271 content: "\f1c8";
7272 }
7273 .fa-file-code-o:before {
7274 content: "\f1c9";
7275 }
7276 .fa-vine:before {
7277 content: "\f1ca";
7278 }
7279 .fa-codepen:before {
7280 content: "\f1cb";
7281 }
7282 .fa-jsfiddle:before {
7283 content: "\f1cc";
7284 }
7285 .fa-life-bouy:before,
7286 .fa-life-saver:before,
7287 .fa-support:before,
7288 .fa-life-ring:before {
7289 content: "\f1cd";
7290 }
7291 .fa-circle-o-notch:before {
7292 content: "\f1ce";
7293 }
7294 .fa-ra:before,
7295 .fa-rebel:before {
7296 content: "\f1d0";
7297 }
7298 .fa-ge:before,
7299 .fa-empire:before {
7300 content: "\f1d1";
7301 }
7302 .fa-git-square:before {
7303 content: "\f1d2";
7304 }
7305 .fa-git:before {
7306 content: "\f1d3";
7307 }
7308 .fa-hacker-news:before {
7309 content: "\f1d4";
7310 }
7311 .fa-tencent-weibo:before {
7312 content: "\f1d5";
7313 }
7314 .fa-qq:before {
7315 content: "\f1d6";
7316 }
7317 .fa-wechat:before,
7318 .fa-weixin:before {
7319 content: "\f1d7";
7320 }
7321 .fa-send:before,
7322 .fa-paper-plane:before {
7323 content: "\f1d8";
7324 }
7325 .fa-send-o:before,
7326 .fa-paper-plane-o:before {
7327 content: "\f1d9";
7328 }
7329 .fa-history:before {
7330 content: "\f1da";
7331 }
7332 .fa-circle-thin:before {
7333 content: "\f1db";
7334 }
7335 .fa-header:before {
7336 content: "\f1dc";
7337 }
7338 .fa-paragraph:before {
7339 content: "\f1dd";
7340 }
7341 .fa-sliders:before {
7342 content: "\f1de";
7343 }
7344 .fa-share-alt:before {
7345 content: "\f1e0";
7346 }
7347 .fa-share-alt-square:before {
7348 content: "\f1e1";
7349 }
7350 .fa-bomb:before {
7351 content: "\f1e2";
7352 }
7266 /*!
7353 /*!
7267 *
7354 *
7268 * IPython base
7355 * IPython base
7269 *
7356 *
7270 */
7357 */
7271 .modal.fade .modal-dialog {
7358 .modal.fade .modal-dialog {
7272 -webkit-transform: translate(0, 0);
7359 -webkit-transform: translate(0, 0);
7273 -ms-transform: translate(0, 0);
7360 -ms-transform: translate(0, 0);
7274 transform: translate(0, 0);
7361 transform: translate(0, 0);
7275 }
7362 }
7276 code {
7363 code {
7277 color: #000000;
7364 color: #000000;
7278 }
7365 }
7279 pre {
7366 pre {
7280 font-size: inherit;
7367 font-size: inherit;
7281 line-height: inherit;
7368 line-height: inherit;
7282 }
7369 }
7283 label {
7370 label {
7284 font-weight: normal;
7371 font-weight: normal;
7285 }
7372 }
7286 .border-box-sizing {
7373 .border-box-sizing {
7287 box-sizing: border-box;
7374 box-sizing: border-box;
7288 -moz-box-sizing: border-box;
7375 -moz-box-sizing: border-box;
7289 -webkit-box-sizing: border-box;
7376 -webkit-box-sizing: border-box;
7290 }
7377 }
7291 .corner-all {
7378 .corner-all {
7292 border-radius: 4px;
7379 border-radius: 4px;
7293 }
7380 }
7294 .no-padding {
7381 .no-padding {
7295 padding: 0px;
7382 padding: 0px;
7296 }
7383 }
7297 /* Flexible box model classes */
7384 /* Flexible box model classes */
7298 /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
7385 /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
7299 /* This file is a compatability layer. It allows the usage of flexible box
7386 /* This file is a compatability layer. It allows the usage of flexible box
7300 model layouts accross multiple browsers, including older browsers. The newest,
7387 model layouts accross multiple browsers, including older browsers. The newest,
7301 universal implementation of the flexible box model is used when available (see
7388 universal implementation of the flexible box model is used when available (see
7302 `Modern browsers` comments below). Browsers that are known to implement this
7389 `Modern browsers` comments below). Browsers that are known to implement this
7303 new spec completely include:
7390 new spec completely include:
7304
7391
7305 Firefox 28.0+
7392 Firefox 28.0+
7306 Chrome 29.0+
7393 Chrome 29.0+
7307 Internet Explorer 11+
7394 Internet Explorer 11+
7308 Opera 17.0+
7395 Opera 17.0+
7309
7396
7310 Browsers not listed, including Safari, are supported via the styling under the
7397 Browsers not listed, including Safari, are supported via the styling under the
7311 `Old browsers` comments below.
7398 `Old browsers` comments below.
7312 */
7399 */
7313 .hbox {
7400 .hbox {
7314 /* Old browsers */
7401 /* Old browsers */
7315 display: -webkit-box;
7402 display: -webkit-box;
7316 -webkit-box-orient: horizontal;
7403 -webkit-box-orient: horizontal;
7317 -webkit-box-align: stretch;
7404 -webkit-box-align: stretch;
7318 display: -moz-box;
7405 display: -moz-box;
7319 -moz-box-orient: horizontal;
7406 -moz-box-orient: horizontal;
7320 -moz-box-align: stretch;
7407 -moz-box-align: stretch;
7321 display: box;
7408 display: box;
7322 box-orient: horizontal;
7409 box-orient: horizontal;
7323 box-align: stretch;
7410 box-align: stretch;
7324 /* Modern browsers */
7411 /* Modern browsers */
7325 display: flex;
7412 display: flex;
7326 flex-direction: row;
7413 flex-direction: row;
7327 align-items: stretch;
7414 align-items: stretch;
7328 }
7415 }
7329 .hbox > * {
7416 .hbox > * {
7330 /* Old browsers */
7417 /* Old browsers */
7331 -webkit-box-flex: 0;
7418 -webkit-box-flex: 0;
7332 -moz-box-flex: 0;
7419 -moz-box-flex: 0;
7333 box-flex: 0;
7420 box-flex: 0;
7334 /* Modern browsers */
7421 /* Modern browsers */
7335 flex: none;
7422 flex: none;
7336 }
7423 }
7337 .vbox {
7424 .vbox {
7338 /* Old browsers */
7425 /* Old browsers */
7339 display: -webkit-box;
7426 display: -webkit-box;
7340 -webkit-box-orient: vertical;
7427 -webkit-box-orient: vertical;
7341 -webkit-box-align: stretch;
7428 -webkit-box-align: stretch;
7342 display: -moz-box;
7429 display: -moz-box;
7343 -moz-box-orient: vertical;
7430 -moz-box-orient: vertical;
7344 -moz-box-align: stretch;
7431 -moz-box-align: stretch;
7345 display: box;
7432 display: box;
7346 box-orient: vertical;
7433 box-orient: vertical;
7347 box-align: stretch;
7434 box-align: stretch;
7348 /* Modern browsers */
7435 /* Modern browsers */
7349 display: flex;
7436 display: flex;
7350 flex-direction: column;
7437 flex-direction: column;
7351 align-items: stretch;
7438 align-items: stretch;
7352 }
7439 }
7353 .vbox > * {
7440 .vbox > * {
7354 /* Old browsers */
7441 /* Old browsers */
7355 -webkit-box-flex: 0;
7442 -webkit-box-flex: 0;
7356 -moz-box-flex: 0;
7443 -moz-box-flex: 0;
7357 box-flex: 0;
7444 box-flex: 0;
7358 /* Modern browsers */
7445 /* Modern browsers */
7359 flex: none;
7446 flex: none;
7360 }
7447 }
7361 .hbox.reverse,
7448 .hbox.reverse,
7362 .vbox.reverse,
7449 .vbox.reverse,
7363 .reverse {
7450 .reverse {
7364 /* Old browsers */
7451 /* Old browsers */
7365 -webkit-box-direction: reverse;
7452 -webkit-box-direction: reverse;
7366 -moz-box-direction: reverse;
7453 -moz-box-direction: reverse;
7367 box-direction: reverse;
7454 box-direction: reverse;
7368 /* Modern browsers */
7455 /* Modern browsers */
7369 flex-direction: row-reverse;
7456 flex-direction: row-reverse;
7370 }
7457 }
7371 .hbox.box-flex0,
7458 .hbox.box-flex0,
7372 .vbox.box-flex0,
7459 .vbox.box-flex0,
7373 .box-flex0 {
7460 .box-flex0 {
7374 /* Old browsers */
7461 /* Old browsers */
7375 -webkit-box-flex: 0;
7462 -webkit-box-flex: 0;
7376 -moz-box-flex: 0;
7463 -moz-box-flex: 0;
7377 box-flex: 0;
7464 box-flex: 0;
7378 /* Modern browsers */
7465 /* Modern browsers */
7379 flex: none;
7466 flex: none;
7380 width: auto;
7467 width: auto;
7381 }
7468 }
7382 .hbox.box-flex1,
7469 .hbox.box-flex1,
7383 .vbox.box-flex1,
7470 .vbox.box-flex1,
7384 .box-flex1 {
7471 .box-flex1 {
7385 /* Old browsers */
7472 /* Old browsers */
7386 -webkit-box-flex: 1;
7473 -webkit-box-flex: 1;
7387 -moz-box-flex: 1;
7474 -moz-box-flex: 1;
7388 box-flex: 1;
7475 box-flex: 1;
7389 /* Modern browsers */
7476 /* Modern browsers */
7390 flex: 1;
7477 flex: 1;
7391 }
7478 }
7392 .hbox.box-flex,
7479 .hbox.box-flex,
7393 .vbox.box-flex,
7480 .vbox.box-flex,
7394 .box-flex {
7481 .box-flex {
7395 /* Old browsers */
7482 /* Old browsers */
7396 /* Old browsers */
7483 /* Old browsers */
7397 -webkit-box-flex: 1;
7484 -webkit-box-flex: 1;
7398 -moz-box-flex: 1;
7485 -moz-box-flex: 1;
7399 box-flex: 1;
7486 box-flex: 1;
7400 /* Modern browsers */
7487 /* Modern browsers */
7401 flex: 1;
7488 flex: 1;
7402 }
7489 }
7403 .hbox.box-flex2,
7490 .hbox.box-flex2,
7404 .vbox.box-flex2,
7491 .vbox.box-flex2,
7405 .box-flex2 {
7492 .box-flex2 {
7406 /* Old browsers */
7493 /* Old browsers */
7407 -webkit-box-flex: 2;
7494 -webkit-box-flex: 2;
7408 -moz-box-flex: 2;
7495 -moz-box-flex: 2;
7409 box-flex: 2;
7496 box-flex: 2;
7410 /* Modern browsers */
7497 /* Modern browsers */
7411 flex: 2;
7498 flex: 2;
7412 }
7499 }
7413 .box-group1 {
7500 .box-group1 {
7414 /* Deprecated */
7501 /* Deprecated */
7415 -webkit-box-flex-group: 1;
7502 -webkit-box-flex-group: 1;
7416 -moz-box-flex-group: 1;
7503 -moz-box-flex-group: 1;
7417 box-flex-group: 1;
7504 box-flex-group: 1;
7418 }
7505 }
7419 .box-group2 {
7506 .box-group2 {
7420 /* Deprecated */
7507 /* Deprecated */
7421 -webkit-box-flex-group: 2;
7508 -webkit-box-flex-group: 2;
7422 -moz-box-flex-group: 2;
7509 -moz-box-flex-group: 2;
7423 box-flex-group: 2;
7510 box-flex-group: 2;
7424 }
7511 }
7425 .hbox.start,
7512 .hbox.start,
7426 .vbox.start,
7513 .vbox.start,
7427 .start {
7514 .start {
7428 /* Old browsers */
7515 /* Old browsers */
7429 -webkit-box-pack: start;
7516 -webkit-box-pack: start;
7430 -moz-box-pack: start;
7517 -moz-box-pack: start;
7431 box-pack: start;
7518 box-pack: start;
7432 /* Modern browsers */
7519 /* Modern browsers */
7433 justify-content: flex-start;
7520 justify-content: flex-start;
7434 }
7521 }
7435 .hbox.end,
7522 .hbox.end,
7436 .vbox.end,
7523 .vbox.end,
7437 .end {
7524 .end {
7438 /* Old browsers */
7525 /* Old browsers */
7439 -webkit-box-pack: end;
7526 -webkit-box-pack: end;
7440 -moz-box-pack: end;
7527 -moz-box-pack: end;
7441 box-pack: end;
7528 box-pack: end;
7442 /* Modern browsers */
7529 /* Modern browsers */
7443 justify-content: flex-end;
7530 justify-content: flex-end;
7444 }
7531 }
7445 .hbox.center,
7532 .hbox.center,
7446 .vbox.center,
7533 .vbox.center,
7447 .center {
7534 .center {
7448 /* Old browsers */
7535 /* Old browsers */
7449 -webkit-box-pack: center;
7536 -webkit-box-pack: center;
7450 -moz-box-pack: center;
7537 -moz-box-pack: center;
7451 box-pack: center;
7538 box-pack: center;
7452 /* Modern browsers */
7539 /* Modern browsers */
7453 justify-content: center;
7540 justify-content: center;
7454 }
7541 }
7455 .hbox.align-start,
7542 .hbox.align-start,
7456 .vbox.align-start,
7543 .vbox.align-start,
7457 .align-start {
7544 .align-start {
7458 /* Old browsers */
7545 /* Old browsers */
7459 -webkit-box-align: start;
7546 -webkit-box-align: start;
7460 -moz-box-align: start;
7547 -moz-box-align: start;
7461 box-align: start;
7548 box-align: start;
7462 /* Modern browsers */
7549 /* Modern browsers */
7463 align-items: flex-start;
7550 align-items: flex-start;
7464 }
7551 }
7465 .hbox.align-end,
7552 .hbox.align-end,
7466 .vbox.align-end,
7553 .vbox.align-end,
7467 .align-end {
7554 .align-end {
7468 /* Old browsers */
7555 /* Old browsers */
7469 -webkit-box-align: end;
7556 -webkit-box-align: end;
7470 -moz-box-align: end;
7557 -moz-box-align: end;
7471 box-align: end;
7558 box-align: end;
7472 /* Modern browsers */
7559 /* Modern browsers */
7473 align-items: flex-end;
7560 align-items: flex-end;
7474 }
7561 }
7475 .hbox.align-center,
7562 .hbox.align-center,
7476 .vbox.align-center,
7563 .vbox.align-center,
7477 .align-center {
7564 .align-center {
7478 /* Old browsers */
7565 /* Old browsers */
7479 -webkit-box-align: center;
7566 -webkit-box-align: center;
7480 -moz-box-align: center;
7567 -moz-box-align: center;
7481 box-align: center;
7568 box-align: center;
7482 /* Modern browsers */
7569 /* Modern browsers */
7483 align-items: center;
7570 align-items: center;
7484 }
7571 }
7485 div.error {
7572 div.error {
7486 margin: 2em;
7573 margin: 2em;
7487 text-align: center;
7574 text-align: center;
7488 }
7575 }
7489 div.error > h1 {
7576 div.error > h1 {
7490 font-size: 500%;
7577 font-size: 500%;
7491 line-height: normal;
7578 line-height: normal;
7492 }
7579 }
7493 div.error > p {
7580 div.error > p {
7494 font-size: 200%;
7581 font-size: 200%;
7495 line-height: normal;
7582 line-height: normal;
7496 }
7583 }
7497 div.traceback-wrapper {
7584 div.traceback-wrapper {
7498 text-align: left;
7585 text-align: left;
7499 max-width: 800px;
7586 max-width: 800px;
7500 margin: auto;
7587 margin: auto;
7501 }
7588 }
7502 /**
7589 /**
7503 * Primary styles
7590 * Primary styles
7504 *
7591 *
7505 * Author: IPython Development Team
7592 * Author: IPython Development Team
7506 */
7593 */
7507 body {
7594 body {
7508 background-color: white;
7595 background-color: white;
7509 /* This makes sure that the body covers the entire window and needs to
7596 /* This makes sure that the body covers the entire window and needs to
7510 be in a different element than the display: box in wrapper below */
7597 be in a different element than the display: box in wrapper below */
7511 position: absolute;
7598 position: absolute;
7512 left: 0px;
7599 left: 0px;
7513 right: 0px;
7600 right: 0px;
7514 top: 0px;
7601 top: 0px;
7515 bottom: 0px;
7602 bottom: 0px;
7516 overflow: visible;
7603 overflow: visible;
7517 }
7604 }
7518 div#header {
7605 div#header {
7519 /* Initially hidden to prevent FLOUC */
7606 /* Initially hidden to prevent FLOUC */
7520 display: none;
7607 display: none;
7521 margin-bottom: 0px;
7608 margin-bottom: 0px;
7522 padding-left: 30px;
7609 padding-left: 30px;
7523 padding-bottom: 5px;
7610 padding-bottom: 5px;
7524 border-bottom: 1px solid #e7e7e7;
7611 border-bottom: 1px solid #e7e7e7;
7525 }
7612 }
7526 #ipython_notebook {
7613 #ipython_notebook {
7527 padding-left: 0px;
7614 padding-left: 0px;
7528 }
7615 }
7529 #noscript {
7616 #noscript {
7530 width: auto;
7617 width: auto;
7531 padding-top: 16px;
7618 padding-top: 16px;
7532 padding-bottom: 16px;
7619 padding-bottom: 16px;
7533 text-align: center;
7620 text-align: center;
7534 font-size: 22px;
7621 font-size: 22px;
7535 color: red;
7622 color: red;
7536 font-weight: bold;
7623 font-weight: bold;
7537 }
7624 }
7538 #ipython_notebook img {
7625 #ipython_notebook img {
7539 font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
7626 font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
7540 height: 24px;
7627 height: 24px;
7541 text-decoration: none;
7628 text-decoration: none;
7542 color: black;
7629 color: black;
7543 }
7630 }
7544 #site {
7631 #site {
7545 width: 100%;
7632 width: 100%;
7546 display: none;
7633 display: none;
7547 }
7634 }
7548 /* Smaller buttons */
7635 /* Smaller buttons */
7549 .ui-button .ui-button-text {
7636 .ui-button .ui-button-text {
7550 padding: 0.2em 0.8em;
7637 padding: 0.2em 0.8em;
7551 font-size: 77%;
7638 font-size: 77%;
7552 }
7639 }
7553 input.ui-button {
7640 input.ui-button {
7554 padding: 0.3em 0.9em;
7641 padding: 0.3em 0.9em;
7555 }
7642 }
7556 .navbar span {
7643 .navbar span {
7557 margin-top: 3px;
7644 margin-top: 3px;
7558 }
7645 }
7559 span#login_widget {
7646 span#login_widget {
7560 float: right;
7647 float: right;
7561 }
7648 }
7562 .nav-header {
7649 .nav-header {
7563 text-transform: none;
7650 text-transform: none;
7564 }
7651 }
7565 #header > span {
7652 #header > span {
7566 margin-top: 10px;
7653 margin-top: 10px;
7567 }
7654 }
7568 .modal_stretch .modal-dialog {
7655 .modal_stretch .modal-dialog {
7569 /* Old browsers */
7656 /* Old browsers */
7570 display: -webkit-box;
7657 display: -webkit-box;
7571 -webkit-box-orient: vertical;
7658 -webkit-box-orient: vertical;
7572 -webkit-box-align: stretch;
7659 -webkit-box-align: stretch;
7573 display: -moz-box;
7660 display: -moz-box;
7574 -moz-box-orient: vertical;
7661 -moz-box-orient: vertical;
7575 -moz-box-align: stretch;
7662 -moz-box-align: stretch;
7576 display: box;
7663 display: box;
7577 box-orient: vertical;
7664 box-orient: vertical;
7578 box-align: stretch;
7665 box-align: stretch;
7579 /* Modern browsers */
7666 /* Modern browsers */
7580 display: flex;
7667 display: flex;
7581 flex-direction: column;
7668 flex-direction: column;
7582 align-items: stretch;
7669 align-items: stretch;
7583 /* Old browsers */
7670 /* Old browsers */
7584 -webkit-box-flex: 0;
7671 -webkit-box-flex: 0;
7585 -moz-box-flex: 0;
7672 -moz-box-flex: 0;
7586 box-flex: 0;
7673 box-flex: 0;
7587 /* Modern browsers */
7674 /* Modern browsers */
7588 flex: none;
7675 flex: none;
7589 min-height: 80%;
7676 min-height: 80%;
7590 }
7677 }
7591 .modal_stretch .modal-dialog .modal-body {
7678 .modal_stretch .modal-dialog .modal-body {
7592 max-height: none;
7679 max-height: none;
7593 flex: 1;
7680 flex: 1;
7594 }
7681 }
7595 @media (min-width: 768px) {
7682 @media (min-width: 768px) {
7596 .modal .modal-dialog {
7683 .modal .modal-dialog {
7597 width: 700px;
7684 width: 700px;
7598 }
7685 }
7599 }
7686 }
7600 /*!
7687 /*!
7601 *
7688 *
7602 * IPython auth
7689 * IPython auth
7603 *
7690 *
7604 */
7691 */
7605 .center-nav {
7692 .center-nav {
7606 display: inline-block;
7693 display: inline-block;
7607 margin-bottom: -4px;
7694 margin-bottom: -4px;
7608 }
7695 }
7609 /*!
7696 /*!
7610 *
7697 *
7611 * IPython tree view
7698 * IPython tree view
7612 *
7699 *
7613 */
7700 */
7614 /* We need an invisible input field on top of the sentense*/
7701 /* We need an invisible input field on top of the sentense*/
7615 /* "Drag file onto the list ..." */
7702 /* "Drag file onto the list ..." */
7616 .alternate_upload {
7703 .alternate_upload {
7617 background-color: none;
7704 background-color: none;
7618 display: inline;
7705 display: inline;
7619 }
7706 }
7620 .alternate_upload.form {
7707 .alternate_upload.form {
7621 padding: 0;
7708 padding: 0;
7622 margin: 0;
7709 margin: 0;
7623 }
7710 }
7624 .alternate_upload input.fileinput {
7711 .alternate_upload input.fileinput {
7625 background-color: red;
7712 background-color: red;
7626 position: relative;
7713 position: relative;
7627 opacity: 0;
7714 opacity: 0;
7628 z-index: 2;
7715 z-index: 2;
7629 width: 295px;
7716 width: 295px;
7630 margin-left: 163px;
7717 margin-left: 163px;
7631 cursor: pointer;
7718 cursor: pointer;
7632 height: 26px;
7719 height: 26px;
7633 }
7720 }
7634 /**
7721 /**
7635 * Primary styles
7722 * Primary styles
7636 *
7723 *
7637 * Author: IPython Development Team
7724 * Author: IPython Development Team
7638 */
7725 */
7639 ul#tabs {
7726 ul#tabs {
7640 margin-bottom: 4px;
7727 margin-bottom: 4px;
7641 }
7728 }
7642 ul#tabs a {
7729 ul#tabs a {
7643 padding-top: 6px;
7730 padding-top: 6px;
7644 padding-bottom: 4px;
7731 padding-bottom: 4px;
7645 }
7732 }
7646 ul.breadcrumb a:focus,
7733 ul.breadcrumb a:focus,
7647 ul.breadcrumb a:hover {
7734 ul.breadcrumb a:hover {
7648 text-decoration: none;
7735 text-decoration: none;
7649 }
7736 }
7650 ul.breadcrumb i.icon-home {
7737 ul.breadcrumb i.icon-home {
7651 font-size: 16px;
7738 font-size: 16px;
7652 margin-right: 4px;
7739 margin-right: 4px;
7653 }
7740 }
7654 ul.breadcrumb span {
7741 ul.breadcrumb span {
7655 color: #5e5e5e;
7742 color: #5e5e5e;
7656 }
7743 }
7657 .list_toolbar {
7744 .list_toolbar {
7658 padding: 4px 0 4px 0;
7745 padding: 4px 0 4px 0;
7659 vertical-align: middle;
7746 vertical-align: middle;
7660 }
7747 }
7661 .list_toolbar .tree-buttons {
7748 .list_toolbar .tree-buttons {
7662 padding-top: 2px;
7749 padding-top: 2px;
7663 }
7750 }
7664 .list_toolbar [class*="span"] {
7751 .list_toolbar [class*="span"] {
7665 min-height: 24px;
7752 min-height: 24px;
7666 }
7753 }
7667 .list_header {
7754 .list_header {
7668 font-weight: bold;
7755 font-weight: bold;
7669 }
7756 }
7670 .list_container {
7757 .list_container {
7671 margin-top: 4px;
7758 margin-top: 4px;
7672 margin-bottom: 20px;
7759 margin-bottom: 20px;
7673 border: 1px solid #ababab;
7760 border: 1px solid #ababab;
7674 border-radius: 4px;
7761 border-radius: 4px;
7675 }
7762 }
7676 .list_container > div {
7763 .list_container > div {
7677 border-bottom: 1px solid #ababab;
7764 border-bottom: 1px solid #ababab;
7678 }
7765 }
7679 .list_container > div:hover .list-item {
7766 .list_container > div:hover .list-item {
7680 background-color: red;
7767 background-color: red;
7681 }
7768 }
7682 .list_container > div:last-child {
7769 .list_container > div:last-child {
7683 border: none;
7770 border: none;
7684 }
7771 }
7685 .list_item:hover .list_item {
7772 .list_item:hover .list_item {
7686 background-color: #ddd;
7773 background-color: #ddd;
7687 }
7774 }
7688 .list_item a {
7775 .list_item a {
7689 text-decoration: none;
7776 text-decoration: none;
7690 }
7777 }
7691 .action_col {
7778 .action_col {
7692 text-align: right;
7779 text-align: right;
7693 }
7780 }
7694 .list_header > div,
7781 .list_header > div,
7695 .list_item > div {
7782 .list_item > div {
7696 padding-top: 4px;
7783 padding-top: 4px;
7697 padding-bottom: 4px;
7784 padding-bottom: 4px;
7698 padding-left: 7px;
7785 padding-left: 7px;
7699 padding-right: 7px;
7786 padding-right: 7px;
7700 line-height: 22px;
7787 line-height: 22px;
7701 }
7788 }
7702 .item_name {
7789 .item_name {
7703 line-height: 22px;
7790 line-height: 22px;
7704 height: 24px;
7791 height: 24px;
7705 }
7792 }
7706 .item_icon {
7793 .item_icon {
7707 font-size: 14px;
7794 font-size: 14px;
7708 color: #5e5e5e;
7795 color: #5e5e5e;
7709 margin-right: 7px;
7796 margin-right: 7px;
7710 }
7797 }
7711 .item_buttons {
7798 .item_buttons {
7712 line-height: 1em;
7799 line-height: 1em;
7713 }
7800 }
7714 .toolbar_info {
7801 .toolbar_info {
7715 height: 24px;
7802 height: 24px;
7716 line-height: 24px;
7803 line-height: 24px;
7717 }
7804 }
7718 input.nbname_input,
7805 input.nbname_input,
7719 input.engine_num_input {
7806 input.engine_num_input {
7720 padding-top: 3px;
7807 padding-top: 3px;
7721 padding-bottom: 3px;
7808 padding-bottom: 3px;
7722 height: 22px;
7809 height: 22px;
7723 line-height: 14px;
7810 line-height: 14px;
7724 margin: 0px;
7811 margin: 0px;
7725 }
7812 }
7726 input.engine_num_input {
7813 input.engine_num_input {
7727 width: 60px;
7814 width: 60px;
7728 }
7815 }
7729 .highlight_text {
7816 .highlight_text {
7730 color: blue;
7817 color: blue;
7731 }
7818 }
7732 #project_name > .breadcrumb {
7819 #project_name > .breadcrumb {
7733 padding: 0px;
7820 padding: 0px;
7734 margin-bottom: 0px;
7821 margin-bottom: 0px;
7735 background-color: transparent;
7822 background-color: transparent;
7736 font-weight: bold;
7823 font-weight: bold;
7737 }
7824 }
7738 .tab-content .row {
7825 .tab-content .row {
7739 margin-left: 0px;
7826 margin-left: 0px;
7740 margin-right: 0px;
7827 margin-right: 0px;
7741 }
7828 }
7742 .folder_icon:before {
7829 .folder_icon:before {
7830 display: inline-block;
7743 font-family: FontAwesome;
7831 font-family: FontAwesome;
7744 font-weight: normal;
7745 font-style: normal;
7832 font-style: normal;
7746 text-decoration: inherit;
7833 font-weight: normal;
7834 line-height: 1;
7747 -webkit-font-smoothing: antialiased;
7835 -webkit-font-smoothing: antialiased;
7748 *margin-right: .3em;
7836 -moz-osx-font-smoothing: grayscale;
7749 content: "\f114";
7837 content: "\f114";
7750 }
7838 }
7839 .folder_icon:before.pull-left {
7840 margin-right: .3em;
7841 }
7842 .folder_icon:before.pull-right {
7843 margin-left: .3em;
7844 }
7751 .notebook_icon:before {
7845 .notebook_icon:before {
7846 display: inline-block;
7752 font-family: FontAwesome;
7847 font-family: FontAwesome;
7753 font-weight: normal;
7754 font-style: normal;
7848 font-style: normal;
7755 text-decoration: inherit;
7849 font-weight: normal;
7850 line-height: 1;
7756 -webkit-font-smoothing: antialiased;
7851 -webkit-font-smoothing: antialiased;
7757 *margin-right: .3em;
7852 -moz-osx-font-smoothing: grayscale;
7758 content: "\f02d";
7853 content: "\f02d";
7759 }
7854 }
7855 .notebook_icon:before.pull-left {
7856 margin-right: .3em;
7857 }
7858 .notebook_icon:before.pull-right {
7859 margin-left: .3em;
7860 }
7760 /*!
7861 /*!
7761 *
7862 *
7762 * IPython notebook
7863 * IPython notebook
7763 *
7864 *
7764 */
7865 */
7765 /* CSS font colors for translated ANSI colors. */
7866 /* CSS font colors for translated ANSI colors. */
7766 .ansibold {
7867 .ansibold {
7767 font-weight: bold;
7868 font-weight: bold;
7768 }
7869 }
7769 /* use dark versions for foreground, to improve visibility */
7870 /* use dark versions for foreground, to improve visibility */
7770 .ansiblack {
7871 .ansiblack {
7771 color: black;
7872 color: black;
7772 }
7873 }
7773 .ansired {
7874 .ansired {
7774 color: darkred;
7875 color: darkred;
7775 }
7876 }
7776 .ansigreen {
7877 .ansigreen {
7777 color: darkgreen;
7878 color: darkgreen;
7778 }
7879 }
7779 .ansiyellow {
7880 .ansiyellow {
7780 color: brown;
7881 color: brown;
7781 }
7882 }
7782 .ansiblue {
7883 .ansiblue {
7783 color: darkblue;
7884 color: darkblue;
7784 }
7885 }
7785 .ansipurple {
7886 .ansipurple {
7786 color: darkviolet;
7887 color: darkviolet;
7787 }
7888 }
7788 .ansicyan {
7889 .ansicyan {
7789 color: steelblue;
7890 color: steelblue;
7790 }
7891 }
7791 .ansigray {
7892 .ansigray {
7792 color: gray;
7893 color: gray;
7793 }
7894 }
7794 /* and light for background, for the same reason */
7895 /* and light for background, for the same reason */
7795 .ansibgblack {
7896 .ansibgblack {
7796 background-color: black;
7897 background-color: black;
7797 }
7898 }
7798 .ansibgred {
7899 .ansibgred {
7799 background-color: red;
7900 background-color: red;
7800 }
7901 }
7801 .ansibggreen {
7902 .ansibggreen {
7802 background-color: green;
7903 background-color: green;
7803 }
7904 }
7804 .ansibgyellow {
7905 .ansibgyellow {
7805 background-color: yellow;
7906 background-color: yellow;
7806 }
7907 }
7807 .ansibgblue {
7908 .ansibgblue {
7808 background-color: blue;
7909 background-color: blue;
7809 }
7910 }
7810 .ansibgpurple {
7911 .ansibgpurple {
7811 background-color: magenta;
7912 background-color: magenta;
7812 }
7913 }
7813 .ansibgcyan {
7914 .ansibgcyan {
7814 background-color: cyan;
7915 background-color: cyan;
7815 }
7916 }
7816 .ansibggray {
7917 .ansibggray {
7817 background-color: gray;
7918 background-color: gray;
7818 }
7919 }
7819 div.cell {
7920 div.cell {
7820 border: 1px solid transparent;
7921 border: 1px solid transparent;
7821 /* Old browsers */
7922 /* Old browsers */
7822 display: -webkit-box;
7923 display: -webkit-box;
7823 -webkit-box-orient: vertical;
7924 -webkit-box-orient: vertical;
7824 -webkit-box-align: stretch;
7925 -webkit-box-align: stretch;
7825 display: -moz-box;
7926 display: -moz-box;
7826 -moz-box-orient: vertical;
7927 -moz-box-orient: vertical;
7827 -moz-box-align: stretch;
7928 -moz-box-align: stretch;
7828 display: box;
7929 display: box;
7829 box-orient: vertical;
7930 box-orient: vertical;
7830 box-align: stretch;
7931 box-align: stretch;
7831 /* Modern browsers */
7932 /* Modern browsers */
7832 display: flex;
7933 display: flex;
7833 flex-direction: column;
7934 flex-direction: column;
7834 align-items: stretch;
7935 align-items: stretch;
7835 /* Old browsers */
7936 /* Old browsers */
7836 -webkit-box-flex: 0;
7937 -webkit-box-flex: 0;
7837 -moz-box-flex: 0;
7938 -moz-box-flex: 0;
7838 box-flex: 0;
7939 box-flex: 0;
7839 /* Modern browsers */
7940 /* Modern browsers */
7840 flex: none;
7941 flex: none;
7841 border-radius: 4px;
7942 border-radius: 4px;
7842 border-width: thin;
7943 border-width: thin;
7843 border-style: solid;
7944 border-style: solid;
7844 }
7945 }
7845 div.cell.selected {
7946 div.cell.selected {
7846 border-color: #ababab;
7947 border-color: #ababab;
7847 }
7948 }
7848 div.cell.edit_mode {
7949 div.cell.edit_mode {
7849 border-color: green;
7950 border-color: green;
7850 }
7951 }
7851 div.cell {
7952 div.cell {
7852 width: 100%;
7953 width: 100%;
7853 padding: 5px 5px 5px 0px;
7954 padding: 5px 5px 5px 0px;
7854 /* This acts as a spacer between cells, that is outside the border */
7955 /* This acts as a spacer between cells, that is outside the border */
7855 margin: 0px;
7956 margin: 0px;
7856 outline: none;
7957 outline: none;
7857 }
7958 }
7858 div.prompt {
7959 div.prompt {
7859 /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
7960 /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
7860 min-width: 15ex;
7961 min-width: 15ex;
7861 /* This padding is tuned to match the padding on the CodeMirror editor. */
7962 /* This padding is tuned to match the padding on the CodeMirror editor. */
7862 padding: 0.4em;
7963 padding: 0.4em;
7863 margin: 0px;
7964 margin: 0px;
7864 font-family: monospace;
7965 font-family: monospace;
7865 text-align: right;
7966 text-align: right;
7866 /* This has to match that of the the CodeMirror class line-height below */
7967 /* This has to match that of the the CodeMirror class line-height below */
7867 line-height: 1.21429em;
7968 line-height: 1.21429em;
7868 }
7969 }
7869 @media (max-width: 480px) {
7970 @media (max-width: 480px) {
7870 div.prompt {
7971 div.prompt {
7871 text-align: left;
7972 text-align: left;
7872 }
7973 }
7873 }
7974 }
7874 div.inner_cell {
7975 div.inner_cell {
7875 /* Old browsers */
7976 /* Old browsers */
7876 display: -webkit-box;
7977 display: -webkit-box;
7877 -webkit-box-orient: vertical;
7978 -webkit-box-orient: vertical;
7878 -webkit-box-align: stretch;
7979 -webkit-box-align: stretch;
7879 display: -moz-box;
7980 display: -moz-box;
7880 -moz-box-orient: vertical;
7981 -moz-box-orient: vertical;
7881 -moz-box-align: stretch;
7982 -moz-box-align: stretch;
7882 display: box;
7983 display: box;
7883 box-orient: vertical;
7984 box-orient: vertical;
7884 box-align: stretch;
7985 box-align: stretch;
7885 /* Modern browsers */
7986 /* Modern browsers */
7886 display: flex;
7987 display: flex;
7887 flex-direction: column;
7988 flex-direction: column;
7888 align-items: stretch;
7989 align-items: stretch;
7889 /* Old browsers */
7990 /* Old browsers */
7890 -webkit-box-flex: 0;
7991 -webkit-box-flex: 0;
7891 -moz-box-flex: 0;
7992 -moz-box-flex: 0;
7892 box-flex: 0;
7993 box-flex: 0;
7893 /* Modern browsers */
7994 /* Modern browsers */
7894 flex: none;
7995 flex: none;
7895 /* Old browsers */
7996 /* Old browsers */
7896 -webkit-box-flex: 1;
7997 -webkit-box-flex: 1;
7897 -moz-box-flex: 1;
7998 -moz-box-flex: 1;
7898 box-flex: 1;
7999 box-flex: 1;
7899 /* Modern browsers */
8000 /* Modern browsers */
7900 flex: 1;
8001 flex: 1;
7901 }
8002 }
7902 /* input_area and input_prompt must match in top border and margin for alignment */
8003 /* input_area and input_prompt must match in top border and margin for alignment */
7903 div.input_area {
8004 div.input_area {
7904 border: 1px solid #cfcfcf;
8005 border: 1px solid #cfcfcf;
7905 border-radius: 4px;
8006 border-radius: 4px;
7906 background: #f7f7f7;
8007 background: #f7f7f7;
7907 line-height: 1.21429em;
8008 line-height: 1.21429em;
7908 }
8009 }
7909 /* This is needed so that empty prompt areas can collapse to zero height when there
8010 /* This is needed so that empty prompt areas can collapse to zero height when there
7910 is no content in the output_subarea and the prompt. The main purpose of this is
8011 is no content in the output_subarea and the prompt. The main purpose of this is
7911 to make sure that empty JavaScript output_subareas have no height. */
8012 to make sure that empty JavaScript output_subareas have no height. */
7912 div.prompt:empty {
8013 div.prompt:empty {
7913 padding-top: 0;
8014 padding-top: 0;
7914 padding-bottom: 0;
8015 padding-bottom: 0;
7915 }
8016 }
7916 /* any special styling for code cells that are currently running goes here */
8017 /* any special styling for code cells that are currently running goes here */
7917 div.input {
8018 div.input {
7918 page-break-inside: avoid;
8019 page-break-inside: avoid;
7919 /* Old browsers */
8020 /* Old browsers */
7920 display: -webkit-box;
8021 display: -webkit-box;
7921 -webkit-box-orient: horizontal;
8022 -webkit-box-orient: horizontal;
7922 -webkit-box-align: stretch;
8023 -webkit-box-align: stretch;
7923 display: -moz-box;
8024 display: -moz-box;
7924 -moz-box-orient: horizontal;
8025 -moz-box-orient: horizontal;
7925 -moz-box-align: stretch;
8026 -moz-box-align: stretch;
7926 display: box;
8027 display: box;
7927 box-orient: horizontal;
8028 box-orient: horizontal;
7928 box-align: stretch;
8029 box-align: stretch;
7929 /* Modern browsers */
8030 /* Modern browsers */
7930 display: flex;
8031 display: flex;
7931 flex-direction: row;
8032 flex-direction: row;
7932 align-items: stretch;
8033 align-items: stretch;
7933 /* Old browsers */
8034 /* Old browsers */
7934 -webkit-box-flex: 0;
8035 -webkit-box-flex: 0;
7935 -moz-box-flex: 0;
8036 -moz-box-flex: 0;
7936 box-flex: 0;
8037 box-flex: 0;
7937 /* Modern browsers */
8038 /* Modern browsers */
7938 flex: none;
8039 flex: none;
7939 }
8040 }
7940 @media (max-width: 480px) {
8041 @media (max-width: 480px) {
7941 div.input {
8042 div.input {
7942 /* Old browsers */
8043 /* Old browsers */
7943 display: -webkit-box;
8044 display: -webkit-box;
7944 -webkit-box-orient: vertical;
8045 -webkit-box-orient: vertical;
7945 -webkit-box-align: stretch;
8046 -webkit-box-align: stretch;
7946 display: -moz-box;
8047 display: -moz-box;
7947 -moz-box-orient: vertical;
8048 -moz-box-orient: vertical;
7948 -moz-box-align: stretch;
8049 -moz-box-align: stretch;
7949 display: box;
8050 display: box;
7950 box-orient: vertical;
8051 box-orient: vertical;
7951 box-align: stretch;
8052 box-align: stretch;
7952 /* Modern browsers */
8053 /* Modern browsers */
7953 display: flex;
8054 display: flex;
7954 flex-direction: column;
8055 flex-direction: column;
7955 align-items: stretch;
8056 align-items: stretch;
7956 /* Old browsers */
8057 /* Old browsers */
7957 -webkit-box-flex: 0;
8058 -webkit-box-flex: 0;
7958 -moz-box-flex: 0;
8059 -moz-box-flex: 0;
7959 box-flex: 0;
8060 box-flex: 0;
7960 /* Modern browsers */
8061 /* Modern browsers */
7961 flex: none;
8062 flex: none;
7962 }
8063 }
7963 }
8064 }
7964 /* input_area and input_prompt must match in top border and margin for alignment */
8065 /* input_area and input_prompt must match in top border and margin for alignment */
7965 div.input_prompt {
8066 div.input_prompt {
7966 color: #000080;
8067 color: #000080;
7967 border-top: 1px solid transparent;
8068 border-top: 1px solid transparent;
7968 }
8069 }
7969 div.input_area > div.highlight {
8070 div.input_area > div.highlight {
7970 margin: 0.4em;
8071 margin: 0.4em;
7971 border: none;
8072 border: none;
7972 padding: 0px;
8073 padding: 0px;
7973 background-color: transparent;
8074 background-color: transparent;
7974 }
8075 }
7975 div.input_area > div.highlight > pre {
8076 div.input_area > div.highlight > pre {
7976 margin: 0px;
8077 margin: 0px;
7977 border: none;
8078 border: none;
7978 padding: 0px;
8079 padding: 0px;
7979 background-color: transparent;
8080 background-color: transparent;
7980 }
8081 }
7981 /* The following gets added to the <head> if it is detected that the user has a
8082 /* The following gets added to the <head> if it is detected that the user has a
7982 * monospace font with inconsistent normal/bold/italic height. See
8083 * monospace font with inconsistent normal/bold/italic height. See
7983 * notebookmain.js. Such fonts will have keywords vertically offset with
8084 * notebookmain.js. Such fonts will have keywords vertically offset with
7984 * respect to the rest of the text. The user should select a better font.
8085 * respect to the rest of the text. The user should select a better font.
7985 * See: https://github.com/ipython/ipython/issues/1503
8086 * See: https://github.com/ipython/ipython/issues/1503
7986 *
8087 *
7987 * .CodeMirror span {
8088 * .CodeMirror span {
7988 * vertical-align: bottom;
8089 * vertical-align: bottom;
7989 * }
8090 * }
7990 */
8091 */
7991 .CodeMirror {
8092 .CodeMirror {
7992 line-height: 1.21429em;
8093 line-height: 1.21429em;
7993 /* Changed from 1em to our global default */
8094 /* Changed from 1em to our global default */
7994 height: auto;
8095 height: auto;
7995 /* Changed to auto to autogrow */
8096 /* Changed to auto to autogrow */
7996 background: none;
8097 background: none;
7997 /* Changed from white to allow our bg to show through */
8098 /* Changed from white to allow our bg to show through */
7998 }
8099 }
7999 .CodeMirror-scroll {
8100 .CodeMirror-scroll {
8000 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
8101 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
8001 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
8102 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
8002 overflow-y: hidden;
8103 overflow-y: hidden;
8003 overflow-x: auto;
8104 overflow-x: auto;
8004 }
8105 }
8005 .CodeMirror-lines {
8106 .CodeMirror-lines {
8006 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
8107 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
8007 /* we have set a different line-height and want this to scale with that. */
8108 /* we have set a different line-height and want this to scale with that. */
8008 padding: 0.4em;
8109 padding: 0.4em;
8009 }
8110 }
8010 .CodeMirror-linenumber {
8111 .CodeMirror-linenumber {
8011 padding: 0 8px 0 4px;
8112 padding: 0 8px 0 4px;
8012 }
8113 }
8013 .CodeMirror-gutters {
8114 .CodeMirror-gutters {
8014 border-bottom-left-radius: 4px;
8115 border-bottom-left-radius: 4px;
8015 border-top-left-radius: 4px;
8116 border-top-left-radius: 4px;
8016 }
8117 }
8017 .CodeMirror pre {
8118 .CodeMirror pre {
8018 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
8119 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
8019 /* .CodeMirror-lines */
8120 /* .CodeMirror-lines */
8020 padding: 0;
8121 padding: 0;
8021 border: 0;
8122 border: 0;
8022 -webkit-border-radius: 0;
8023 -moz-border-radius: 0;
8024 border-radius: 0;
8123 border-radius: 0;
8025 }
8124 }
8026 .CodeMirror-vscrollbar,
8125 .CodeMirror-vscrollbar,
8027 .CodeMirror-hscrollbar {
8126 .CodeMirror-hscrollbar {
8028 display: none !important;
8127 display: none !important;
8029 }
8128 }
8030 /*
8129 /*
8031
8130
8032 Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
8131 Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
8033 Adapted from GitHub theme
8132 Adapted from GitHub theme
8034
8133
8035 */
8134 */
8036 pre code {
8135 pre code {
8037 display: block;
8136 display: block;
8038 padding: 0.5em;
8137 padding: 0.5em;
8039 }
8138 }
8040 .highlight-base,
8139 .highlight-base,
8041 pre code,
8140 pre code,
8042 pre .subst,
8141 pre .subst,
8043 pre .tag .title,
8142 pre .tag .title,
8044 pre .lisp .title,
8143 pre .lisp .title,
8045 pre .clojure .built_in,
8144 pre .clojure .built_in,
8046 pre .nginx .title {
8145 pre .nginx .title {
8047 color: black;
8146 color: black;
8048 }
8147 }
8049 .highlight-string,
8148 .highlight-string,
8050 pre .string,
8149 pre .string,
8051 pre .constant,
8150 pre .constant,
8052 pre .parent,
8151 pre .parent,
8053 pre .tag .value,
8152 pre .tag .value,
8054 pre .rules .value,
8153 pre .rules .value,
8055 pre .rules .value .number,
8154 pre .rules .value .number,
8056 pre .preprocessor,
8155 pre .preprocessor,
8057 pre .ruby .symbol,
8156 pre .ruby .symbol,
8058 pre .ruby .symbol .string,
8157 pre .ruby .symbol .string,
8059 pre .aggregate,
8158 pre .aggregate,
8060 pre .template_tag,
8159 pre .template_tag,
8061 pre .django .variable,
8160 pre .django .variable,
8062 pre .smalltalk .class,
8161 pre .smalltalk .class,
8063 pre .addition,
8162 pre .addition,
8064 pre .flow,
8163 pre .flow,
8065 pre .stream,
8164 pre .stream,
8066 pre .bash .variable,
8165 pre .bash .variable,
8067 pre .apache .tag,
8166 pre .apache .tag,
8068 pre .apache .cbracket,
8167 pre .apache .cbracket,
8069 pre .tex .command,
8168 pre .tex .command,
8070 pre .tex .special,
8169 pre .tex .special,
8071 pre .erlang_repl .function_or_atom,
8170 pre .erlang_repl .function_or_atom,
8072 pre .markdown .header {
8171 pre .markdown .header {
8073 color: #BA2121;
8172 color: #BA2121;
8074 }
8173 }
8075 .highlight-comment,
8174 .highlight-comment,
8076 pre .comment,
8175 pre .comment,
8077 pre .annotation,
8176 pre .annotation,
8078 pre .template_comment,
8177 pre .template_comment,
8079 pre .diff .header,
8178 pre .diff .header,
8080 pre .chunk,
8179 pre .chunk,
8081 pre .markdown .blockquote {
8180 pre .markdown .blockquote {
8082 color: #408080;
8181 color: #408080;
8083 font-style: italic;
8182 font-style: italic;
8084 }
8183 }
8085 .highlight-number,
8184 .highlight-number,
8086 pre .number,
8185 pre .number,
8087 pre .date,
8186 pre .date,
8088 pre .regexp,
8187 pre .regexp,
8089 pre .literal,
8188 pre .literal,
8090 pre .smalltalk .symbol,
8189 pre .smalltalk .symbol,
8091 pre .smalltalk .char,
8190 pre .smalltalk .char,
8092 pre .go .constant,
8191 pre .go .constant,
8093 pre .change,
8192 pre .change,
8094 pre .markdown .bullet,
8193 pre .markdown .bullet,
8095 pre .markdown .link_url {
8194 pre .markdown .link_url {
8096 color: #080;
8195 color: #080;
8097 }
8196 }
8098 pre .label,
8197 pre .label,
8099 pre .javadoc,
8198 pre .javadoc,
8100 pre .ruby .string,
8199 pre .ruby .string,
8101 pre .decorator,
8200 pre .decorator,
8102 pre .filter .argument,
8201 pre .filter .argument,
8103 pre .localvars,
8202 pre .localvars,
8104 pre .array,
8203 pre .array,
8105 pre .attr_selector,
8204 pre .attr_selector,
8106 pre .important,
8205 pre .important,
8107 pre .pseudo,
8206 pre .pseudo,
8108 pre .pi,
8207 pre .pi,
8109 pre .doctype,
8208 pre .doctype,
8110 pre .deletion,
8209 pre .deletion,
8111 pre .envvar,
8210 pre .envvar,
8112 pre .shebang,
8211 pre .shebang,
8113 pre .apache .sqbracket,
8212 pre .apache .sqbracket,
8114 pre .nginx .built_in,
8213 pre .nginx .built_in,
8115 pre .tex .formula,
8214 pre .tex .formula,
8116 pre .erlang_repl .reserved,
8215 pre .erlang_repl .reserved,
8117 pre .prompt,
8216 pre .prompt,
8118 pre .markdown .link_label,
8217 pre .markdown .link_label,
8119 pre .vhdl .attribute,
8218 pre .vhdl .attribute,
8120 pre .clojure .attribute,
8219 pre .clojure .attribute,
8121 pre .coffeescript .property {
8220 pre .coffeescript .property {
8122 color: #8888ff;
8221 color: #8888ff;
8123 }
8222 }
8124 .highlight-keyword,
8223 .highlight-keyword,
8125 pre .keyword,
8224 pre .keyword,
8126 pre .id,
8225 pre .id,
8127 pre .phpdoc,
8226 pre .phpdoc,
8128 pre .aggregate,
8227 pre .aggregate,
8129 pre .css .tag,
8228 pre .css .tag,
8130 pre .javadoctag,
8229 pre .javadoctag,
8131 pre .phpdoc,
8230 pre .phpdoc,
8132 pre .yardoctag,
8231 pre .yardoctag,
8133 pre .smalltalk .class,
8232 pre .smalltalk .class,
8134 pre .winutils,
8233 pre .winutils,
8135 pre .bash .variable,
8234 pre .bash .variable,
8136 pre .apache .tag,
8235 pre .apache .tag,
8137 pre .go .typename,
8236 pre .go .typename,
8138 pre .tex .command,
8237 pre .tex .command,
8139 pre .markdown .strong,
8238 pre .markdown .strong,
8140 pre .request,
8239 pre .request,
8141 pre .status {
8240 pre .status {
8142 color: #008000;
8241 color: #008000;
8143 font-weight: bold;
8242 font-weight: bold;
8144 }
8243 }
8145 .highlight-builtin,
8244 .highlight-builtin,
8146 pre .built_in {
8245 pre .built_in {
8147 color: #008000;
8246 color: #008000;
8148 }
8247 }
8149 pre .markdown .emphasis {
8248 pre .markdown .emphasis {
8150 font-style: italic;
8249 font-style: italic;
8151 }
8250 }
8152 pre .nginx .built_in {
8251 pre .nginx .built_in {
8153 font-weight: normal;
8252 font-weight: normal;
8154 }
8253 }
8155 pre .coffeescript .javascript,
8254 pre .coffeescript .javascript,
8156 pre .javascript .xml,
8255 pre .javascript .xml,
8157 pre .tex .formula,
8256 pre .tex .formula,
8158 pre .xml .javascript,
8257 pre .xml .javascript,
8159 pre .xml .vbscript,
8258 pre .xml .vbscript,
8160 pre .xml .css,
8259 pre .xml .css,
8161 pre .xml .cdata {
8260 pre .xml .cdata {
8162 opacity: 0.5;
8261 opacity: 0.5;
8163 }
8262 }
8164 /* apply the same style to codemirror */
8263 /* apply the same style to codemirror */
8165 .cm-s-ipython span.cm-variable {
8264 .cm-s-ipython span.cm-variable {
8166 color: black;
8265 color: black;
8167 }
8266 }
8168 .cm-s-ipython span.cm-keyword {
8267 .cm-s-ipython span.cm-keyword {
8169 color: #008000;
8268 color: #008000;
8170 font-weight: bold;
8269 font-weight: bold;
8171 }
8270 }
8172 .cm-s-ipython span.cm-number {
8271 .cm-s-ipython span.cm-number {
8173 color: #080;
8272 color: #080;
8174 }
8273 }
8175 .cm-s-ipython span.cm-comment {
8274 .cm-s-ipython span.cm-comment {
8176 color: #408080;
8275 color: #408080;
8177 font-style: italic;
8276 font-style: italic;
8178 }
8277 }
8179 .cm-s-ipython span.cm-string {
8278 .cm-s-ipython span.cm-string {
8180 color: #BA2121;
8279 color: #BA2121;
8181 }
8280 }
8182 .cm-s-ipython span.cm-builtin {
8281 .cm-s-ipython span.cm-builtin {
8183 color: #008000;
8282 color: #008000;
8184 }
8283 }
8185 .cm-s-ipython span.cm-error {
8284 .cm-s-ipython span.cm-error {
8186 color: #f00;
8285 color: #f00;
8187 }
8286 }
8188 .cm-s-ipython span.cm-operator {
8287 .cm-s-ipython span.cm-operator {
8189 color: #AA22FF;
8288 color: #AA22FF;
8190 font-weight: bold;
8289 font-weight: bold;
8191 }
8290 }
8192 .cm-s-ipython span.cm-meta {
8291 .cm-s-ipython span.cm-meta {
8193 color: #AA22FF;
8292 color: #AA22FF;
8194 }
8293 }
8195 .cm-s-ipython span.cm-tab {
8294 .cm-s-ipython span.cm-tab {
8196 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
8295 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
8197 background-position: right;
8296 background-position: right;
8198 background-repeat: no-repeat;
8297 background-repeat: no-repeat;
8199 }
8298 }
8200 div.output_wrapper {
8299 div.output_wrapper {
8201 /* this position must be relative to enable descendents to be absolute within it */
8300 /* this position must be relative to enable descendents to be absolute within it */
8202 position: relative;
8301 position: relative;
8203 /* Old browsers */
8302 /* Old browsers */
8204 display: -webkit-box;
8303 display: -webkit-box;
8205 -webkit-box-orient: vertical;
8304 -webkit-box-orient: vertical;
8206 -webkit-box-align: stretch;
8305 -webkit-box-align: stretch;
8207 display: -moz-box;
8306 display: -moz-box;
8208 -moz-box-orient: vertical;
8307 -moz-box-orient: vertical;
8209 -moz-box-align: stretch;
8308 -moz-box-align: stretch;
8210 display: box;
8309 display: box;
8211 box-orient: vertical;
8310 box-orient: vertical;
8212 box-align: stretch;
8311 box-align: stretch;
8213 /* Modern browsers */
8312 /* Modern browsers */
8214 display: flex;
8313 display: flex;
8215 flex-direction: column;
8314 flex-direction: column;
8216 align-items: stretch;
8315 align-items: stretch;
8217 /* Old browsers */
8316 /* Old browsers */
8218 -webkit-box-flex: 0;
8317 -webkit-box-flex: 0;
8219 -moz-box-flex: 0;
8318 -moz-box-flex: 0;
8220 box-flex: 0;
8319 box-flex: 0;
8221 /* Modern browsers */
8320 /* Modern browsers */
8222 flex: none;
8321 flex: none;
8223 }
8322 }
8224 /* class for the output area when it should be height-limited */
8323 /* class for the output area when it should be height-limited */
8225 div.output_scroll {
8324 div.output_scroll {
8226 /* ideally, this would be max-height, but FF barfs all over that */
8325 /* ideally, this would be max-height, but FF barfs all over that */
8227 height: 24em;
8326 height: 24em;
8228 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
8327 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
8229 width: 100%;
8328 width: 100%;
8230 overflow: auto;
8329 overflow: auto;
8231 border-radius: 4px;
8330 border-radius: 4px;
8232 -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8331 -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8233 box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8332 box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8234 display: block;
8333 display: block;
8235 }
8334 }
8236 /* output div while it is collapsed */
8335 /* output div while it is collapsed */
8237 div.output_collapsed {
8336 div.output_collapsed {
8238 margin: 0px;
8337 margin: 0px;
8239 padding: 0px;
8338 padding: 0px;
8240 /* Old browsers */
8339 /* Old browsers */
8241 display: -webkit-box;
8340 display: -webkit-box;
8242 -webkit-box-orient: vertical;
8341 -webkit-box-orient: vertical;
8243 -webkit-box-align: stretch;
8342 -webkit-box-align: stretch;
8244 display: -moz-box;
8343 display: -moz-box;
8245 -moz-box-orient: vertical;
8344 -moz-box-orient: vertical;
8246 -moz-box-align: stretch;
8345 -moz-box-align: stretch;
8247 display: box;
8346 display: box;
8248 box-orient: vertical;
8347 box-orient: vertical;
8249 box-align: stretch;
8348 box-align: stretch;
8250 /* Modern browsers */
8349 /* Modern browsers */
8251 display: flex;
8350 display: flex;
8252 flex-direction: column;
8351 flex-direction: column;
8253 align-items: stretch;
8352 align-items: stretch;
8254 /* Old browsers */
8353 /* Old browsers */
8255 -webkit-box-flex: 0;
8354 -webkit-box-flex: 0;
8256 -moz-box-flex: 0;
8355 -moz-box-flex: 0;
8257 box-flex: 0;
8356 box-flex: 0;
8258 /* Modern browsers */
8357 /* Modern browsers */
8259 flex: none;
8358 flex: none;
8260 }
8359 }
8261 div.out_prompt_overlay {
8360 div.out_prompt_overlay {
8262 height: 100%;
8361 height: 100%;
8263 padding: 0px 0.4em;
8362 padding: 0px 0.4em;
8264 position: absolute;
8363 position: absolute;
8265 border-radius: 4px;
8364 border-radius: 4px;
8266 }
8365 }
8267 div.out_prompt_overlay:hover {
8366 div.out_prompt_overlay:hover {
8268 /* use inner shadow to get border that is computed the same on WebKit/FF */
8367 /* use inner shadow to get border that is computed the same on WebKit/FF */
8269 -webkit-box-shadow: inset 0 0 1px #000000;
8368 -webkit-box-shadow: inset 0 0 1px #000000;
8270 box-shadow: inset 0 0 1px #000000;
8369 box-shadow: inset 0 0 1px #000000;
8271 background: rgba(240, 240, 240, 0.5);
8370 background: rgba(240, 240, 240, 0.5);
8272 }
8371 }
8273 div.output_prompt {
8372 div.output_prompt {
8274 color: #8b0000;
8373 color: #8b0000;
8275 }
8374 }
8276 /* This class is the outer container of all output sections. */
8375 /* This class is the outer container of all output sections. */
8277 div.output_area {
8376 div.output_area {
8278 padding: 0px;
8377 padding: 0px;
8279 page-break-inside: avoid;
8378 page-break-inside: avoid;
8280 /* Old browsers */
8379 /* Old browsers */
8281 display: -webkit-box;
8380 display: -webkit-box;
8282 -webkit-box-orient: horizontal;
8381 -webkit-box-orient: horizontal;
8283 -webkit-box-align: stretch;
8382 -webkit-box-align: stretch;
8284 display: -moz-box;
8383 display: -moz-box;
8285 -moz-box-orient: horizontal;
8384 -moz-box-orient: horizontal;
8286 -moz-box-align: stretch;
8385 -moz-box-align: stretch;
8287 display: box;
8386 display: box;
8288 box-orient: horizontal;
8387 box-orient: horizontal;
8289 box-align: stretch;
8388 box-align: stretch;
8290 /* Modern browsers */
8389 /* Modern browsers */
8291 display: flex;
8390 display: flex;
8292 flex-direction: row;
8391 flex-direction: row;
8293 align-items: stretch;
8392 align-items: stretch;
8294 /* Old browsers */
8393 /* Old browsers */
8295 -webkit-box-flex: 0;
8394 -webkit-box-flex: 0;
8296 -moz-box-flex: 0;
8395 -moz-box-flex: 0;
8297 box-flex: 0;
8396 box-flex: 0;
8298 /* Modern browsers */
8397 /* Modern browsers */
8299 flex: none;
8398 flex: none;
8300 }
8399 }
8301 div.output_area .MathJax_Display {
8400 div.output_area .MathJax_Display {
8302 text-align: left !important;
8401 text-align: left !important;
8303 }
8402 }
8304 div.output_area .rendered_html table {
8403 div.output_area .rendered_html table {
8305 margin-left: 0;
8404 margin-left: 0;
8306 margin-right: 0;
8405 margin-right: 0;
8307 }
8406 }
8308 div.output_area .rendered_html img {
8407 div.output_area .rendered_html img {
8309 margin-left: 0;
8408 margin-left: 0;
8310 margin-right: 0;
8409 margin-right: 0;
8311 }
8410 }
8312 /* This is needed to protect the pre formating from global settings such
8411 /* This is needed to protect the pre formating from global settings such
8313 as that of bootstrap */
8412 as that of bootstrap */
8314 .output {
8413 .output {
8315 /* Old browsers */
8414 /* Old browsers */
8316 display: -webkit-box;
8415 display: -webkit-box;
8317 -webkit-box-orient: vertical;
8416 -webkit-box-orient: vertical;
8318 -webkit-box-align: stretch;
8417 -webkit-box-align: stretch;
8319 display: -moz-box;
8418 display: -moz-box;
8320 -moz-box-orient: vertical;
8419 -moz-box-orient: vertical;
8321 -moz-box-align: stretch;
8420 -moz-box-align: stretch;
8322 display: box;
8421 display: box;
8323 box-orient: vertical;
8422 box-orient: vertical;
8324 box-align: stretch;
8423 box-align: stretch;
8325 /* Modern browsers */
8424 /* Modern browsers */
8326 display: flex;
8425 display: flex;
8327 flex-direction: column;
8426 flex-direction: column;
8328 align-items: stretch;
8427 align-items: stretch;
8329 /* Old browsers */
8428 /* Old browsers */
8330 -webkit-box-flex: 0;
8429 -webkit-box-flex: 0;
8331 -moz-box-flex: 0;
8430 -moz-box-flex: 0;
8332 box-flex: 0;
8431 box-flex: 0;
8333 /* Modern browsers */
8432 /* Modern browsers */
8334 flex: none;
8433 flex: none;
8335 }
8434 }
8336 @media (max-width: 480px) {
8435 @media (max-width: 480px) {
8337 div.output_area {
8436 div.output_area {
8338 /* Old browsers */
8437 /* Old browsers */
8339 display: -webkit-box;
8438 display: -webkit-box;
8340 -webkit-box-orient: vertical;
8439 -webkit-box-orient: vertical;
8341 -webkit-box-align: stretch;
8440 -webkit-box-align: stretch;
8342 display: -moz-box;
8441 display: -moz-box;
8343 -moz-box-orient: vertical;
8442 -moz-box-orient: vertical;
8344 -moz-box-align: stretch;
8443 -moz-box-align: stretch;
8345 display: box;
8444 display: box;
8346 box-orient: vertical;
8445 box-orient: vertical;
8347 box-align: stretch;
8446 box-align: stretch;
8348 /* Modern browsers */
8447 /* Modern browsers */
8349 display: flex;
8448 display: flex;
8350 flex-direction: column;
8449 flex-direction: column;
8351 align-items: stretch;
8450 align-items: stretch;
8352 /* Old browsers */
8451 /* Old browsers */
8353 -webkit-box-flex: 0;
8452 -webkit-box-flex: 0;
8354 -moz-box-flex: 0;
8453 -moz-box-flex: 0;
8355 box-flex: 0;
8454 box-flex: 0;
8356 /* Modern browsers */
8455 /* Modern browsers */
8357 flex: none;
8456 flex: none;
8358 }
8457 }
8359 }
8458 }
8360 div.output_area pre {
8459 div.output_area pre {
8361 margin: 0;
8460 margin: 0;
8362 padding: 0;
8461 padding: 0;
8363 border: 0;
8462 border: 0;
8364 vertical-align: baseline;
8463 vertical-align: baseline;
8365 color: #000000;
8464 color: #000000;
8366 background-color: transparent;
8465 background-color: transparent;
8367 -webkit-border-radius: 0;
8368 -moz-border-radius: 0;
8369 border-radius: 0;
8466 border-radius: 0;
8370 }
8467 }
8371 /* This class is for the output subarea inside the output_area and after
8468 /* This class is for the output subarea inside the output_area and after
8372 the prompt div. */
8469 the prompt div. */
8373 div.output_subarea {
8470 div.output_subarea {
8374 padding: 0.4em 0.4em 0em 0.4em;
8471 padding: 0.4em 0.4em 0em 0.4em;
8375 /* Old browsers */
8472 /* Old browsers */
8376 -webkit-box-flex: 1;
8473 -webkit-box-flex: 1;
8377 -moz-box-flex: 1;
8474 -moz-box-flex: 1;
8378 box-flex: 1;
8475 box-flex: 1;
8379 /* Modern browsers */
8476 /* Modern browsers */
8380 flex: 1;
8477 flex: 1;
8381 }
8478 }
8382 /* The rest of the output_* classes are for special styling of the different
8479 /* The rest of the output_* classes are for special styling of the different
8383 output types */
8480 output types */
8384 /* all text output has this class: */
8481 /* all text output has this class: */
8385 div.output_text {
8482 div.output_text {
8386 text-align: left;
8483 text-align: left;
8387 color: #000000;
8484 color: #000000;
8388 /* This has to match that of the the CodeMirror class line-height below */
8485 /* This has to match that of the the CodeMirror class line-height below */
8389 line-height: 1.21429em;
8486 line-height: 1.21429em;
8390 }
8487 }
8391 /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
8488 /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
8392 div.output_stderr {
8489 div.output_stderr {
8393 background: #fdd;
8490 background: #fdd;
8394 /* very light red background for stderr */
8491 /* very light red background for stderr */
8395 }
8492 }
8396 div.output_latex {
8493 div.output_latex {
8397 text-align: left;
8494 text-align: left;
8398 }
8495 }
8399 /* Empty output_javascript divs should have no height */
8496 /* Empty output_javascript divs should have no height */
8400 div.output_javascript:empty {
8497 div.output_javascript:empty {
8401 padding: 0;
8498 padding: 0;
8402 }
8499 }
8403 .js-error {
8500 .js-error {
8404 color: darkred;
8501 color: darkred;
8405 }
8502 }
8406 /* raw_input styles */
8503 /* raw_input styles */
8407 div.raw_input_container {
8504 div.raw_input_container {
8408 font-family: monospace;
8505 font-family: monospace;
8409 padding-top: 5px;
8506 padding-top: 5px;
8410 }
8507 }
8411 span.raw_input_prompt {
8508 span.raw_input_prompt {
8412 /* nothing needed here */
8509 /* nothing needed here */
8413 }
8510 }
8414 input.raw_input {
8511 input.raw_input {
8415 font-family: inherit;
8512 font-family: inherit;
8416 font-size: inherit;
8513 font-size: inherit;
8417 color: inherit;
8514 color: inherit;
8418 width: auto;
8515 width: auto;
8419 /* make sure input baseline aligns with prompt */
8516 /* make sure input baseline aligns with prompt */
8420 vertical-align: baseline;
8517 vertical-align: baseline;
8421 /* padding + margin = 0.5em between prompt and cursor */
8518 /* padding + margin = 0.5em between prompt and cursor */
8422 padding: 0em 0.25em;
8519 padding: 0em 0.25em;
8423 margin: 0em 0.25em;
8520 margin: 0em 0.25em;
8424 }
8521 }
8425 input.raw_input:focus {
8522 input.raw_input:focus {
8426 box-shadow: none;
8523 box-shadow: none;
8427 }
8524 }
8428 p.p-space {
8525 p.p-space {
8429 margin-bottom: 10px;
8526 margin-bottom: 10px;
8430 }
8527 }
8431 .rendered_html {
8528 .rendered_html {
8432 color: #000000;
8529 color: #000000;
8433 /* any extras will just be numbers: */
8530 /* any extras will just be numbers: */
8434 }
8531 }
8435 .rendered_html em {
8532 .rendered_html em {
8436 font-style: italic;
8533 font-style: italic;
8437 }
8534 }
8438 .rendered_html strong {
8535 .rendered_html strong {
8439 font-weight: bold;
8536 font-weight: bold;
8440 }
8537 }
8441 .rendered_html u {
8538 .rendered_html u {
8442 text-decoration: underline;
8539 text-decoration: underline;
8443 }
8540 }
8444 .rendered_html :link {
8541 .rendered_html :link {
8445 text-decoration: underline;
8542 text-decoration: underline;
8446 }
8543 }
8447 .rendered_html :visited {
8544 .rendered_html :visited {
8448 text-decoration: underline;
8545 text-decoration: underline;
8449 }
8546 }
8450 .rendered_html h1 {
8547 .rendered_html h1 {
8451 font-size: 185.7%;
8548 font-size: 185.7%;
8452 margin: 1.08em 0 0 0;
8549 margin: 1.08em 0 0 0;
8453 font-weight: bold;
8550 font-weight: bold;
8454 line-height: 1.0;
8551 line-height: 1.0;
8455 }
8552 }
8456 .rendered_html h2 {
8553 .rendered_html h2 {
8457 font-size: 157.1%;
8554 font-size: 157.1%;
8458 margin: 1.27em 0 0 0;
8555 margin: 1.27em 0 0 0;
8459 font-weight: bold;
8556 font-weight: bold;
8460 line-height: 1.0;
8557 line-height: 1.0;
8461 }
8558 }
8462 .rendered_html h3 {
8559 .rendered_html h3 {
8463 font-size: 128.6%;
8560 font-size: 128.6%;
8464 margin: 1.55em 0 0 0;
8561 margin: 1.55em 0 0 0;
8465 font-weight: bold;
8562 font-weight: bold;
8466 line-height: 1.0;
8563 line-height: 1.0;
8467 }
8564 }
8468 .rendered_html h4 {
8565 .rendered_html h4 {
8469 font-size: 100%;
8566 font-size: 100%;
8470 margin: 2em 0 0 0;
8567 margin: 2em 0 0 0;
8471 font-weight: bold;
8568 font-weight: bold;
8472 line-height: 1.0;
8569 line-height: 1.0;
8473 }
8570 }
8474 .rendered_html h5 {
8571 .rendered_html h5 {
8475 font-size: 100%;
8572 font-size: 100%;
8476 margin: 2em 0 0 0;
8573 margin: 2em 0 0 0;
8477 font-weight: bold;
8574 font-weight: bold;
8478 line-height: 1.0;
8575 line-height: 1.0;
8479 font-style: italic;
8576 font-style: italic;
8480 }
8577 }
8481 .rendered_html h6 {
8578 .rendered_html h6 {
8482 font-size: 100%;
8579 font-size: 100%;
8483 margin: 2em 0 0 0;
8580 margin: 2em 0 0 0;
8484 font-weight: bold;
8581 font-weight: bold;
8485 line-height: 1.0;
8582 line-height: 1.0;
8486 font-style: italic;
8583 font-style: italic;
8487 }
8584 }
8488 .rendered_html h1:first-child {
8585 .rendered_html h1:first-child {
8489 margin-top: 0.538em;
8586 margin-top: 0.538em;
8490 }
8587 }
8491 .rendered_html h2:first-child {
8588 .rendered_html h2:first-child {
8492 margin-top: 0.636em;
8589 margin-top: 0.636em;
8493 }
8590 }
8494 .rendered_html h3:first-child {
8591 .rendered_html h3:first-child {
8495 margin-top: 0.777em;
8592 margin-top: 0.777em;
8496 }
8593 }
8497 .rendered_html h4:first-child {
8594 .rendered_html h4:first-child {
8498 margin-top: 1em;
8595 margin-top: 1em;
8499 }
8596 }
8500 .rendered_html h5:first-child {
8597 .rendered_html h5:first-child {
8501 margin-top: 1em;
8598 margin-top: 1em;
8502 }
8599 }
8503 .rendered_html h6:first-child {
8600 .rendered_html h6:first-child {
8504 margin-top: 1em;
8601 margin-top: 1em;
8505 }
8602 }
8506 .rendered_html ul {
8603 .rendered_html ul {
8507 list-style: disc;
8604 list-style: disc;
8508 margin: 0em 2em;
8605 margin: 0em 2em;
8509 padding-left: 0px;
8606 padding-left: 0px;
8510 }
8607 }
8511 .rendered_html ul ul {
8608 .rendered_html ul ul {
8512 list-style: square;
8609 list-style: square;
8513 margin: 0em 2em;
8610 margin: 0em 2em;
8514 }
8611 }
8515 .rendered_html ul ul ul {
8612 .rendered_html ul ul ul {
8516 list-style: circle;
8613 list-style: circle;
8517 margin: 0em 2em;
8614 margin: 0em 2em;
8518 }
8615 }
8519 .rendered_html ol {
8616 .rendered_html ol {
8520 list-style: decimal;
8617 list-style: decimal;
8521 margin: 0em 2em;
8618 margin: 0em 2em;
8522 padding-left: 0px;
8619 padding-left: 0px;
8523 }
8620 }
8524 .rendered_html ol ol {
8621 .rendered_html ol ol {
8525 list-style: upper-alpha;
8622 list-style: upper-alpha;
8526 margin: 0em 2em;
8623 margin: 0em 2em;
8527 }
8624 }
8528 .rendered_html ol ol ol {
8625 .rendered_html ol ol ol {
8529 list-style: lower-alpha;
8626 list-style: lower-alpha;
8530 margin: 0em 2em;
8627 margin: 0em 2em;
8531 }
8628 }
8532 .rendered_html ol ol ol ol {
8629 .rendered_html ol ol ol ol {
8533 list-style: lower-roman;
8630 list-style: lower-roman;
8534 margin: 0em 2em;
8631 margin: 0em 2em;
8535 }
8632 }
8536 .rendered_html ol ol ol ol ol {
8633 .rendered_html ol ol ol ol ol {
8537 list-style: decimal;
8634 list-style: decimal;
8538 margin: 0em 2em;
8635 margin: 0em 2em;
8539 }
8636 }
8540 .rendered_html * + ul {
8637 .rendered_html * + ul {
8541 margin-top: 1em;
8638 margin-top: 1em;
8542 }
8639 }
8543 .rendered_html * + ol {
8640 .rendered_html * + ol {
8544 margin-top: 1em;
8641 margin-top: 1em;
8545 }
8642 }
8546 .rendered_html hr {
8643 .rendered_html hr {
8547 color: #000000;
8644 color: #000000;
8548 background-color: #000000;
8645 background-color: #000000;
8549 }
8646 }
8550 .rendered_html pre {
8647 .rendered_html pre {
8551 margin: 1em 2em;
8648 margin: 1em 2em;
8552 }
8649 }
8553 .rendered_html pre,
8650 .rendered_html pre,
8554 .rendered_html code {
8651 .rendered_html code {
8555 border: 0;
8652 border: 0;
8556 background-color: #ffffff;
8653 background-color: #ffffff;
8557 color: #000000;
8654 color: #000000;
8558 font-size: 100%;
8655 font-size: 100%;
8559 padding: 0px;
8656 padding: 0px;
8560 }
8657 }
8561 .rendered_html blockquote {
8658 .rendered_html blockquote {
8562 margin: 1em 2em;
8659 margin: 1em 2em;
8563 }
8660 }
8564 .rendered_html table {
8661 .rendered_html table {
8565 margin-left: auto;
8662 margin-left: auto;
8566 margin-right: auto;
8663 margin-right: auto;
8567 border: 1px solid #000000;
8664 border: 1px solid #000000;
8568 border-collapse: collapse;
8665 border-collapse: collapse;
8569 }
8666 }
8570 .rendered_html tr,
8667 .rendered_html tr,
8571 .rendered_html th,
8668 .rendered_html th,
8572 .rendered_html td {
8669 .rendered_html td {
8573 border: 1px solid #000000;
8670 border: 1px solid #000000;
8574 border-collapse: collapse;
8671 border-collapse: collapse;
8575 margin: 1em 2em;
8672 margin: 1em 2em;
8576 }
8673 }
8577 .rendered_html td,
8674 .rendered_html td,
8578 .rendered_html th {
8675 .rendered_html th {
8579 text-align: left;
8676 text-align: left;
8580 vertical-align: middle;
8677 vertical-align: middle;
8581 padding: 4px;
8678 padding: 4px;
8582 }
8679 }
8583 .rendered_html th {
8680 .rendered_html th {
8584 font-weight: bold;
8681 font-weight: bold;
8585 }
8682 }
8586 .rendered_html * + table {
8683 .rendered_html * + table {
8587 margin-top: 1em;
8684 margin-top: 1em;
8588 }
8685 }
8589 .rendered_html p {
8686 .rendered_html p {
8590 text-align: justify;
8687 text-align: justify;
8591 }
8688 }
8592 .rendered_html * + p {
8689 .rendered_html * + p {
8593 margin-top: 1em;
8690 margin-top: 1em;
8594 }
8691 }
8595 .rendered_html img {
8692 .rendered_html img {
8596 display: block;
8693 display: block;
8597 margin-left: auto;
8694 margin-left: auto;
8598 margin-right: auto;
8695 margin-right: auto;
8599 }
8696 }
8600 .rendered_html * + img {
8697 .rendered_html * + img {
8601 margin-top: 1em;
8698 margin-top: 1em;
8602 }
8699 }
8603 div.text_cell {
8700 div.text_cell {
8604 padding: 5px 5px 5px 0px;
8701 padding: 5px 5px 5px 0px;
8605 /* Old browsers */
8702 /* Old browsers */
8606 display: -webkit-box;
8703 display: -webkit-box;
8607 -webkit-box-orient: horizontal;
8704 -webkit-box-orient: horizontal;
8608 -webkit-box-align: stretch;
8705 -webkit-box-align: stretch;
8609 display: -moz-box;
8706 display: -moz-box;
8610 -moz-box-orient: horizontal;
8707 -moz-box-orient: horizontal;
8611 -moz-box-align: stretch;
8708 -moz-box-align: stretch;
8612 display: box;
8709 display: box;
8613 box-orient: horizontal;
8710 box-orient: horizontal;
8614 box-align: stretch;
8711 box-align: stretch;
8615 /* Modern browsers */
8712 /* Modern browsers */
8616 display: flex;
8713 display: flex;
8617 flex-direction: row;
8714 flex-direction: row;
8618 align-items: stretch;
8715 align-items: stretch;
8619 /* Old browsers */
8716 /* Old browsers */
8620 -webkit-box-flex: 0;
8717 -webkit-box-flex: 0;
8621 -moz-box-flex: 0;
8718 -moz-box-flex: 0;
8622 box-flex: 0;
8719 box-flex: 0;
8623 /* Modern browsers */
8720 /* Modern browsers */
8624 flex: none;
8721 flex: none;
8625 }
8722 }
8626 @media (max-width: 480px) {
8723 @media (max-width: 480px) {
8627 div.text_cell > div.prompt {
8724 div.text_cell > div.prompt {
8628 display: none;
8725 display: none;
8629 }
8726 }
8630 }
8727 }
8631 div.text_cell_render {
8728 div.text_cell_render {
8632 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
8729 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
8633 outline: none;
8730 outline: none;
8634 resize: none;
8731 resize: none;
8635 width: inherit;
8732 width: inherit;
8636 border-style: none;
8733 border-style: none;
8637 padding: 0.5em 0.5em 0.5em 0.4em;
8734 padding: 0.5em 0.5em 0.5em 0.4em;
8638 color: #000000;
8735 color: #000000;
8639 }
8736 }
8640 a.anchor-link:link {
8737 a.anchor-link:link {
8641 text-decoration: none;
8738 text-decoration: none;
8642 padding: 0px 20px;
8739 padding: 0px 20px;
8643 visibility: hidden;
8740 visibility: hidden;
8644 }
8741 }
8645 h1:hover .anchor-link,
8742 h1:hover .anchor-link,
8646 h2:hover .anchor-link,
8743 h2:hover .anchor-link,
8647 h3:hover .anchor-link,
8744 h3:hover .anchor-link,
8648 h4:hover .anchor-link,
8745 h4:hover .anchor-link,
8649 h5:hover .anchor-link,
8746 h5:hover .anchor-link,
8650 h6:hover .anchor-link {
8747 h6:hover .anchor-link {
8651 visibility: visible;
8748 visibility: visible;
8652 }
8749 }
8653 div.cell.text_cell.rendered {
8750 div.cell.text_cell.rendered {
8654 padding: 0px;
8751 padding: 0px;
8655 }
8752 }
8656 .widget-area {
8753 .widget-area {
8657 /*
8754 /*
8658 LESS file that styles IPython notebook widgets and the area they sit in.
8755 LESS file that styles IPython notebook widgets and the area they sit in.
8659
8756
8660 The widget area typically looks something like this:
8757 The widget area typically looks something like this:
8661 +------------------------------------------+
8758 +------------------------------------------+
8662 | widget-area |
8759 | widget-area |
8663 | +--------+---------------------------+ |
8760 | +--------+---------------------------+ |
8664 | | prompt | widget-subarea | |
8761 | | prompt | widget-subarea | |
8665 | | | +--------+ +--------+ | |
8762 | | | +--------+ +--------+ | |
8666 | | | | widget | | widget | | |
8763 | | | | widget | | widget | | |
8667 | | | +--------+ +--------+ | |
8764 | | | +--------+ +--------+ | |
8668 | +--------+---------------------------+ |
8765 | +--------+---------------------------+ |
8669 +------------------------------------------+
8766 +------------------------------------------+
8670 */
8767 */
8671 page-break-inside: avoid;
8768 page-break-inside: avoid;
8672 /* Old browsers */
8769 /* Old browsers */
8673 display: -webkit-box;
8770 display: -webkit-box;
8674 -webkit-box-orient: horizontal;
8771 -webkit-box-orient: horizontal;
8675 -webkit-box-align: stretch;
8772 -webkit-box-align: stretch;
8676 display: -moz-box;
8773 display: -moz-box;
8677 -moz-box-orient: horizontal;
8774 -moz-box-orient: horizontal;
8678 -moz-box-align: stretch;
8775 -moz-box-align: stretch;
8679 display: box;
8776 display: box;
8680 box-orient: horizontal;
8777 box-orient: horizontal;
8681 box-align: stretch;
8778 box-align: stretch;
8682 /* Modern browsers */
8779 /* Modern browsers */
8683 display: flex;
8780 display: flex;
8684 flex-direction: row;
8781 flex-direction: row;
8685 align-items: stretch;
8782 align-items: stretch;
8686 /* Old browsers */
8783 /* Old browsers */
8687 -webkit-box-flex: 0;
8784 -webkit-box-flex: 0;
8688 -moz-box-flex: 0;
8785 -moz-box-flex: 0;
8689 box-flex: 0;
8786 box-flex: 0;
8690 /* Modern browsers */
8787 /* Modern browsers */
8691 flex: none;
8788 flex: none;
8692 }
8789 }
8693 .widget-area .widget-subarea {
8790 .widget-area .widget-subarea {
8694 padding: 0.44em 0.4em 0.4em 1px;
8791 padding: 0.44em 0.4em 0.4em 1px;
8695 margin-left: 6px;
8792 margin-left: 6px;
8696 box-sizing: border-box;
8793 box-sizing: border-box;
8697 -moz-box-sizing: border-box;
8794 -moz-box-sizing: border-box;
8698 -webkit-box-sizing: border-box;
8795 -webkit-box-sizing: border-box;
8699 /* Old browsers */
8796 /* Old browsers */
8700 display: -webkit-box;
8797 display: -webkit-box;
8701 -webkit-box-orient: vertical;
8798 -webkit-box-orient: vertical;
8702 -webkit-box-align: stretch;
8799 -webkit-box-align: stretch;
8703 display: -moz-box;
8800 display: -moz-box;
8704 -moz-box-orient: vertical;
8801 -moz-box-orient: vertical;
8705 -moz-box-align: stretch;
8802 -moz-box-align: stretch;
8706 display: box;
8803 display: box;
8707 box-orient: vertical;
8804 box-orient: vertical;
8708 box-align: stretch;
8805 box-align: stretch;
8709 /* Modern browsers */
8806 /* Modern browsers */
8710 display: flex;
8807 display: flex;
8711 flex-direction: column;
8808 flex-direction: column;
8712 align-items: stretch;
8809 align-items: stretch;
8713 /* Old browsers */
8810 /* Old browsers */
8714 -webkit-box-flex: 0;
8811 -webkit-box-flex: 0;
8715 -moz-box-flex: 0;
8812 -moz-box-flex: 0;
8716 box-flex: 0;
8813 box-flex: 0;
8717 /* Modern browsers */
8814 /* Modern browsers */
8718 flex: none;
8815 flex: none;
8719 /* Old browsers */
8816 /* Old browsers */
8720 -webkit-box-flex: 2;
8817 -webkit-box-flex: 2;
8721 -moz-box-flex: 2;
8818 -moz-box-flex: 2;
8722 box-flex: 2;
8819 box-flex: 2;
8723 /* Modern browsers */
8820 /* Modern browsers */
8724 flex: 2;
8821 flex: 2;
8725 /* Old browsers */
8822 /* Old browsers */
8726 -webkit-box-align: start;
8823 -webkit-box-align: start;
8727 -moz-box-align: start;
8824 -moz-box-align: start;
8728 box-align: start;
8825 box-align: start;
8729 /* Modern browsers */
8826 /* Modern browsers */
8730 align-items: flex-start;
8827 align-items: flex-start;
8731 }
8828 }
8732 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
8829 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
8733 THE WIDGET AREA). */
8830 THE WIDGET AREA). */
8734 .widget-hlabel {
8831 .widget-hlabel {
8735 /* Horizontal Label */
8832 /* Horizontal Label */
8736 min-width: 10ex;
8833 min-width: 10ex;
8737 padding-right: 8px;
8834 padding-right: 8px;
8738 padding-top: 5px;
8835 padding-top: 5px;
8739 text-align: right;
8836 text-align: right;
8740 vertical-align: text-top;
8837 vertical-align: text-top;
8741 }
8838 }
8742 .widget-vlabel {
8839 .widget-vlabel {
8743 /* Vertical Label */
8840 /* Vertical Label */
8744 padding-bottom: 5px;
8841 padding-bottom: 5px;
8745 text-align: center;
8842 text-align: center;
8746 vertical-align: text-bottom;
8843 vertical-align: text-bottom;
8747 }
8844 }
8748 .widget-hreadout {
8845 .widget-hreadout {
8749 padding-left: 8px;
8846 padding-left: 8px;
8750 padding-top: 5px;
8847 padding-top: 5px;
8751 text-align: left;
8848 text-align: left;
8752 vertical-align: text-top;
8849 vertical-align: text-top;
8753 }
8850 }
8754 .widget-vreadout {
8851 .widget-vreadout {
8755 /* Vertical Label */
8852 /* Vertical Label */
8756 padding-top: 5px;
8853 padding-top: 5px;
8757 text-align: center;
8854 text-align: center;
8758 vertical-align: text-top;
8855 vertical-align: text-top;
8759 }
8856 }
8760 .slide-track {
8857 .slide-track {
8761 /* Slider Track */
8858 /* Slider Track */
8762 border: 1px solid #CCCCCC;
8859 border: 1px solid #CCCCCC;
8763 background: #FFFFFF;
8860 background: #FFFFFF;
8764 border-radius: 4px;
8861 border-radius: 4px;
8765 /* Round the corners of the slide track */
8862 /* Round the corners of the slide track */
8766 }
8863 }
8767 .widget-hslider {
8864 .widget-hslider {
8768 /* Horizontal jQuery Slider
8865 /* Horizontal jQuery Slider
8769
8866
8770 Both the horizontal and vertical versions of the slider are characterized
8867 Both the horizontal and vertical versions of the slider are characterized
8771 by a styled div that contains an invisible jQuery slide div which
8868 by a styled div that contains an invisible jQuery slide div which
8772 contains a visible slider handle div. This is requred so we can control
8869 contains a visible slider handle div. This is requred so we can control
8773 how the slider is drawn and 'fix' the issue where the slide handle
8870 how the slider is drawn and 'fix' the issue where the slide handle
8774 doesn't stop at the end of the slide.
8871 doesn't stop at the end of the slide.
8775
8872
8776 Both horizontal and vertical sliders have this div nesting:
8873 Both horizontal and vertical sliders have this div nesting:
8777 +------------------------------------------+
8874 +------------------------------------------+
8778 | widget-(h/v)slider |
8875 | widget-(h/v)slider |
8779 | +--------+---------------------------+ |
8876 | +--------+---------------------------+ |
8780 | | ui-slider | |
8877 | | ui-slider | |
8781 | | +------------------+ | |
8878 | | +------------------+ | |
8782 | | | ui-slider-handle | | |
8879 | | | ui-slider-handle | | |
8783 | | +------------------+ | |
8880 | | +------------------+ | |
8784 | +--------+---------------------------+ |
8881 | +--------+---------------------------+ |
8785 +------------------------------------------+
8882 +------------------------------------------+
8786 */
8883 */
8787 /* Fix the padding of the slide track so the ui-slider is sized
8884 /* Fix the padding of the slide track so the ui-slider is sized
8788 correctly. */
8885 correctly. */
8789 padding-left: 8px;
8886 padding-left: 8px;
8790 padding-right: 5px;
8887 padding-right: 5px;
8791 overflow: visible;
8888 overflow: visible;
8792 /* Default size of the slider */
8889 /* Default size of the slider */
8793 width: 350px;
8890 width: 350px;
8794 height: 5px;
8891 height: 5px;
8795 max-height: 5px;
8892 max-height: 5px;
8796 margin-top: 13px;
8893 margin-top: 13px;
8797 margin-bottom: 10px;
8894 margin-bottom: 10px;
8798 /* Style the slider track */
8895 /* Style the slider track */
8799 /* Slider Track */
8896 /* Slider Track */
8800 border: 1px solid #CCCCCC;
8897 border: 1px solid #CCCCCC;
8801 background: #FFFFFF;
8898 background: #FFFFFF;
8802 border-radius: 4px;
8899 border-radius: 4px;
8803 /* Round the corners of the slide track */
8900 /* Round the corners of the slide track */
8804 /* Make the div a flex box (makes FF behave correctly). */
8901 /* Make the div a flex box (makes FF behave correctly). */
8805 /* Old browsers */
8902 /* Old browsers */
8806 display: -webkit-box;
8903 display: -webkit-box;
8807 -webkit-box-orient: horizontal;
8904 -webkit-box-orient: horizontal;
8808 -webkit-box-align: stretch;
8905 -webkit-box-align: stretch;
8809 display: -moz-box;
8906 display: -moz-box;
8810 -moz-box-orient: horizontal;
8907 -moz-box-orient: horizontal;
8811 -moz-box-align: stretch;
8908 -moz-box-align: stretch;
8812 display: box;
8909 display: box;
8813 box-orient: horizontal;
8910 box-orient: horizontal;
8814 box-align: stretch;
8911 box-align: stretch;
8815 /* Modern browsers */
8912 /* Modern browsers */
8816 display: flex;
8913 display: flex;
8817 flex-direction: row;
8914 flex-direction: row;
8818 align-items: stretch;
8915 align-items: stretch;
8819 /* Old browsers */
8916 /* Old browsers */
8820 -webkit-box-flex: 0;
8917 -webkit-box-flex: 0;
8821 -moz-box-flex: 0;
8918 -moz-box-flex: 0;
8822 box-flex: 0;
8919 box-flex: 0;
8823 /* Modern browsers */
8920 /* Modern browsers */
8824 flex: none;
8921 flex: none;
8825 }
8922 }
8826 .widget-hslider .ui-slider {
8923 .widget-hslider .ui-slider {
8827 /* Inner, invisible slide div */
8924 /* Inner, invisible slide div */
8828 border: 0px !important;
8925 border: 0px !important;
8829 background: none !important;
8926 background: none !important;
8830 /* Old browsers */
8927 /* Old browsers */
8831 display: -webkit-box;
8928 display: -webkit-box;
8832 -webkit-box-orient: horizontal;
8929 -webkit-box-orient: horizontal;
8833 -webkit-box-align: stretch;
8930 -webkit-box-align: stretch;
8834 display: -moz-box;
8931 display: -moz-box;
8835 -moz-box-orient: horizontal;
8932 -moz-box-orient: horizontal;
8836 -moz-box-align: stretch;
8933 -moz-box-align: stretch;
8837 display: box;
8934 display: box;
8838 box-orient: horizontal;
8935 box-orient: horizontal;
8839 box-align: stretch;
8936 box-align: stretch;
8840 /* Modern browsers */
8937 /* Modern browsers */
8841 display: flex;
8938 display: flex;
8842 flex-direction: row;
8939 flex-direction: row;
8843 align-items: stretch;
8940 align-items: stretch;
8844 /* Old browsers */
8941 /* Old browsers */
8845 -webkit-box-flex: 0;
8942 -webkit-box-flex: 0;
8846 -moz-box-flex: 0;
8943 -moz-box-flex: 0;
8847 box-flex: 0;
8944 box-flex: 0;
8848 /* Modern browsers */
8945 /* Modern browsers */
8849 flex: none;
8946 flex: none;
8850 /* Old browsers */
8947 /* Old browsers */
8851 -webkit-box-flex: 1;
8948 -webkit-box-flex: 1;
8852 -moz-box-flex: 1;
8949 -moz-box-flex: 1;
8853 box-flex: 1;
8950 box-flex: 1;
8854 /* Modern browsers */
8951 /* Modern browsers */
8855 flex: 1;
8952 flex: 1;
8856 }
8953 }
8857 .widget-hslider .ui-slider .ui-slider-handle {
8954 .widget-hslider .ui-slider .ui-slider-handle {
8858 width: 14px !important;
8955 width: 14px !important;
8859 height: 28px !important;
8956 height: 28px !important;
8860 margin-top: -8px !important;
8957 margin-top: -8px !important;
8861 }
8958 }
8862 .widget-vslider {
8959 .widget-vslider {
8863 /* Vertical jQuery Slider */
8960 /* Vertical jQuery Slider */
8864 /* Fix the padding of the slide track so the ui-slider is sized
8961 /* Fix the padding of the slide track so the ui-slider is sized
8865 correctly. */
8962 correctly. */
8866 padding-bottom: 8px;
8963 padding-bottom: 8px;
8867 overflow: visible;
8964 overflow: visible;
8868 /* Default size of the slider */
8965 /* Default size of the slider */
8869 width: 5px;
8966 width: 5px;
8870 max-width: 5px;
8967 max-width: 5px;
8871 height: 250px;
8968 height: 250px;
8872 margin-left: 12px;
8969 margin-left: 12px;
8873 /* Style the slider track */
8970 /* Style the slider track */
8874 /* Slider Track */
8971 /* Slider Track */
8875 border: 1px solid #CCCCCC;
8972 border: 1px solid #CCCCCC;
8876 background: #FFFFFF;
8973 background: #FFFFFF;
8877 border-radius: 4px;
8974 border-radius: 4px;
8878 /* Round the corners of the slide track */
8975 /* Round the corners of the slide track */
8879 /* Make the div a flex box (makes FF behave correctly). */
8976 /* Make the div a flex box (makes FF behave correctly). */
8880 /* Old browsers */
8977 /* Old browsers */
8881 display: -webkit-box;
8978 display: -webkit-box;
8882 -webkit-box-orient: vertical;
8979 -webkit-box-orient: vertical;
8883 -webkit-box-align: stretch;
8980 -webkit-box-align: stretch;
8884 display: -moz-box;
8981 display: -moz-box;
8885 -moz-box-orient: vertical;
8982 -moz-box-orient: vertical;
8886 -moz-box-align: stretch;
8983 -moz-box-align: stretch;
8887 display: box;
8984 display: box;
8888 box-orient: vertical;
8985 box-orient: vertical;
8889 box-align: stretch;
8986 box-align: stretch;
8890 /* Modern browsers */
8987 /* Modern browsers */
8891 display: flex;
8988 display: flex;
8892 flex-direction: column;
8989 flex-direction: column;
8893 align-items: stretch;
8990 align-items: stretch;
8894 /* Old browsers */
8991 /* Old browsers */
8895 -webkit-box-flex: 0;
8992 -webkit-box-flex: 0;
8896 -moz-box-flex: 0;
8993 -moz-box-flex: 0;
8897 box-flex: 0;
8994 box-flex: 0;
8898 /* Modern browsers */
8995 /* Modern browsers */
8899 flex: none;
8996 flex: none;
8900 }
8997 }
8901 .widget-vslider .ui-slider {
8998 .widget-vslider .ui-slider {
8902 /* Inner, invisible slide div */
8999 /* Inner, invisible slide div */
8903 border: 0px !important;
9000 border: 0px !important;
8904 background: none !important;
9001 background: none !important;
8905 margin-left: -4px;
9002 margin-left: -4px;
8906 margin-top: 5px;
9003 margin-top: 5px;
8907 /* Old browsers */
9004 /* Old browsers */
8908 display: -webkit-box;
9005 display: -webkit-box;
8909 -webkit-box-orient: vertical;
9006 -webkit-box-orient: vertical;
8910 -webkit-box-align: stretch;
9007 -webkit-box-align: stretch;
8911 display: -moz-box;
9008 display: -moz-box;
8912 -moz-box-orient: vertical;
9009 -moz-box-orient: vertical;
8913 -moz-box-align: stretch;
9010 -moz-box-align: stretch;
8914 display: box;
9011 display: box;
8915 box-orient: vertical;
9012 box-orient: vertical;
8916 box-align: stretch;
9013 box-align: stretch;
8917 /* Modern browsers */
9014 /* Modern browsers */
8918 display: flex;
9015 display: flex;
8919 flex-direction: column;
9016 flex-direction: column;
8920 align-items: stretch;
9017 align-items: stretch;
8921 /* Old browsers */
9018 /* Old browsers */
8922 -webkit-box-flex: 0;
9019 -webkit-box-flex: 0;
8923 -moz-box-flex: 0;
9020 -moz-box-flex: 0;
8924 box-flex: 0;
9021 box-flex: 0;
8925 /* Modern browsers */
9022 /* Modern browsers */
8926 flex: none;
9023 flex: none;
8927 /* Old browsers */
9024 /* Old browsers */
8928 -webkit-box-flex: 1;
9025 -webkit-box-flex: 1;
8929 -moz-box-flex: 1;
9026 -moz-box-flex: 1;
8930 box-flex: 1;
9027 box-flex: 1;
8931 /* Modern browsers */
9028 /* Modern browsers */
8932 flex: 1;
9029 flex: 1;
8933 }
9030 }
8934 .widget-vslider .ui-slider .ui-slider-handle {
9031 .widget-vslider .ui-slider .ui-slider-handle {
8935 width: 28px !important;
9032 width: 28px !important;
8936 height: 14px !important;
9033 height: 14px !important;
8937 margin-left: -9px;
9034 margin-left: -9px;
8938 }
9035 }
8939 .widget-text {
9036 .widget-text {
8940 /* String Textbox - used for TextBoxView and TextAreaView */
9037 /* String Textbox - used for TextBoxView and TextAreaView */
8941 width: 350px;
9038 width: 350px;
8942 margin: 0px !important;
9039 margin: 0px !important;
8943 }
9040 }
8944 .widget-listbox {
9041 .widget-listbox {
8945 /* Listbox */
9042 /* Listbox */
8946 width: 350px;
9043 width: 350px;
8947 margin-bottom: 0px;
9044 margin-bottom: 0px;
8948 }
9045 }
8949 .widget-numeric-text {
9046 .widget-numeric-text {
8950 /* Single Line Textbox - used for IntTextView and FloatTextView */
9047 /* Single Line Textbox - used for IntTextView and FloatTextView */
8951 width: 150px;
9048 width: 150px;
8952 margin: 0px !important;
9049 margin: 0px !important;
8953 }
9050 }
8954 .widget-progress {
9051 .widget-progress {
8955 /* Progress Bar */
9052 /* Progress Bar */
8956 margin-top: 6px;
9053 margin-top: 6px;
8957 width: 350px;
9054 width: 350px;
8958 }
9055 }
8959 .widget-progress .progress-bar {
9056 .widget-progress .progress-bar {
8960 /* Disable progress bar animation */
9057 /* Disable progress bar animation */
8961 -webkit-transition: none;
9058 -webkit-transition: none;
8962 -moz-transition: none;
9059 -moz-transition: none;
8963 -ms-transition: none;
9060 -ms-transition: none;
8964 -o-transition: none;
9061 -o-transition: none;
8965 transition: none;
9062 transition: none;
8966 }
9063 }
8967 .widget-combo-btn {
9064 .widget-combo-btn {
8968 /* ComboBox Main Button */
9065 /* ComboBox Main Button */
8969 min-width: 125px;
9066 min-width: 125px;
8970 }
9067 }
8971 .widget-box {
9068 .widget-box {
8972 /* The following section sets the style for the invisible div that
9069 /* The following section sets the style for the invisible div that
8973 hold widgets and their accompanying labels.
9070 hold widgets and their accompanying labels.
8974
9071
8975 Looks like this:
9072 Looks like this:
8976 +-----------------------------+
9073 +-----------------------------+
8977 | widget-box (or similar) |
9074 | widget-box (or similar) |
8978 | +-------+---------------+ |
9075 | +-------+---------------+ |
8979 | | Label | Actual Widget | |
9076 | | Label | Actual Widget | |
8980 | +-------+---------------+ |
9077 | +-------+---------------+ |
8981 +-----------------------------+
9078 +-----------------------------+
8982 */
9079 */
8983 margin: 5px;
9080 margin: 5px;
8984 /* Old browsers */
9081 /* Old browsers */
8985 -webkit-box-pack: start;
9082 -webkit-box-pack: start;
8986 -moz-box-pack: start;
9083 -moz-box-pack: start;
8987 box-pack: start;
9084 box-pack: start;
8988 /* Modern browsers */
9085 /* Modern browsers */
8989 justify-content: flex-start;
9086 justify-content: flex-start;
8990 /* ContainerWidget */
9087 /* ContainerWidget */
8991 box-sizing: border-box;
9088 box-sizing: border-box;
8992 -moz-box-sizing: border-box;
9089 -moz-box-sizing: border-box;
8993 -webkit-box-sizing: border-box;
9090 -webkit-box-sizing: border-box;
8994 /* Old browsers */
9091 /* Old browsers */
8995 -webkit-box-align: start;
9092 -webkit-box-align: start;
8996 -moz-box-align: start;
9093 -moz-box-align: start;
8997 box-align: start;
9094 box-align: start;
8998 /* Modern browsers */
9095 /* Modern browsers */
8999 align-items: flex-start;
9096 align-items: flex-start;
9000 }
9097 }
9001 .widget-hbox {
9098 .widget-hbox {
9002 /* Horizontal widgets */
9099 /* Horizontal widgets */
9003 /* The following section sets the style for the invisible div that
9100 /* The following section sets the style for the invisible div that
9004 hold widgets and their accompanying labels.
9101 hold widgets and their accompanying labels.
9005
9102
9006 Looks like this:
9103 Looks like this:
9007 +-----------------------------+
9104 +-----------------------------+
9008 | widget-box (or similar) |
9105 | widget-box (or similar) |
9009 | +-------+---------------+ |
9106 | +-------+---------------+ |
9010 | | Label | Actual Widget | |
9107 | | Label | Actual Widget | |
9011 | +-------+---------------+ |
9108 | +-------+---------------+ |
9012 +-----------------------------+
9109 +-----------------------------+
9013 */
9110 */
9014 margin: 5px;
9111 margin: 5px;
9015 /* Old browsers */
9112 /* Old browsers */
9016 -webkit-box-pack: start;
9113 -webkit-box-pack: start;
9017 -moz-box-pack: start;
9114 -moz-box-pack: start;
9018 box-pack: start;
9115 box-pack: start;
9019 /* Modern browsers */
9116 /* Modern browsers */
9020 justify-content: flex-start;
9117 justify-content: flex-start;
9021 /* ContainerWidget */
9118 /* ContainerWidget */
9022 box-sizing: border-box;
9119 box-sizing: border-box;
9023 -moz-box-sizing: border-box;
9120 -moz-box-sizing: border-box;
9024 -webkit-box-sizing: border-box;
9121 -webkit-box-sizing: border-box;
9025 /* Old browsers */
9122 /* Old browsers */
9026 -webkit-box-align: start;
9123 -webkit-box-align: start;
9027 -moz-box-align: start;
9124 -moz-box-align: start;
9028 box-align: start;
9125 box-align: start;
9029 /* Modern browsers */
9126 /* Modern browsers */
9030 align-items: flex-start;
9127 align-items: flex-start;
9031 /* Old browsers */
9128 /* Old browsers */
9032 display: -webkit-box;
9129 display: -webkit-box;
9033 -webkit-box-orient: horizontal;
9130 -webkit-box-orient: horizontal;
9034 -webkit-box-align: stretch;
9131 -webkit-box-align: stretch;
9035 display: -moz-box;
9132 display: -moz-box;
9036 -moz-box-orient: horizontal;
9133 -moz-box-orient: horizontal;
9037 -moz-box-align: stretch;
9134 -moz-box-align: stretch;
9038 display: box;
9135 display: box;
9039 box-orient: horizontal;
9136 box-orient: horizontal;
9040 box-align: stretch;
9137 box-align: stretch;
9041 /* Modern browsers */
9138 /* Modern browsers */
9042 display: flex;
9139 display: flex;
9043 flex-direction: row;
9140 flex-direction: row;
9044 align-items: stretch;
9141 align-items: stretch;
9045 /* Old browsers */
9142 /* Old browsers */
9046 -webkit-box-flex: 0;
9143 -webkit-box-flex: 0;
9047 -moz-box-flex: 0;
9144 -moz-box-flex: 0;
9048 box-flex: 0;
9145 box-flex: 0;
9049 /* Modern browsers */
9146 /* Modern browsers */
9050 flex: none;
9147 flex: none;
9051 }
9148 }
9052 .widget-hbox-single {
9149 .widget-hbox-single {
9053 /* Single line horizontal widgets */
9150 /* Single line horizontal widgets */
9054 /* Horizontal widgets */
9151 /* Horizontal widgets */
9055 /* The following section sets the style for the invisible div that
9152 /* The following section sets the style for the invisible div that
9056 hold widgets and their accompanying labels.
9153 hold widgets and their accompanying labels.
9057
9154
9058 Looks like this:
9155 Looks like this:
9059 +-----------------------------+
9156 +-----------------------------+
9060 | widget-box (or similar) |
9157 | widget-box (or similar) |
9061 | +-------+---------------+ |
9158 | +-------+---------------+ |
9062 | | Label | Actual Widget | |
9159 | | Label | Actual Widget | |
9063 | +-------+---------------+ |
9160 | +-------+---------------+ |
9064 +-----------------------------+
9161 +-----------------------------+
9065 */
9162 */
9066 margin: 5px;
9163 margin: 5px;
9067 /* Old browsers */
9164 /* Old browsers */
9068 -webkit-box-pack: start;
9165 -webkit-box-pack: start;
9069 -moz-box-pack: start;
9166 -moz-box-pack: start;
9070 box-pack: start;
9167 box-pack: start;
9071 /* Modern browsers */
9168 /* Modern browsers */
9072 justify-content: flex-start;
9169 justify-content: flex-start;
9073 /* ContainerWidget */
9170 /* ContainerWidget */
9074 box-sizing: border-box;
9171 box-sizing: border-box;
9075 -moz-box-sizing: border-box;
9172 -moz-box-sizing: border-box;
9076 -webkit-box-sizing: border-box;
9173 -webkit-box-sizing: border-box;
9077 /* Old browsers */
9174 /* Old browsers */
9078 -webkit-box-align: start;
9175 -webkit-box-align: start;
9079 -moz-box-align: start;
9176 -moz-box-align: start;
9080 box-align: start;
9177 box-align: start;
9081 /* Modern browsers */
9178 /* Modern browsers */
9082 align-items: flex-start;
9179 align-items: flex-start;
9083 /* Old browsers */
9180 /* Old browsers */
9084 display: -webkit-box;
9181 display: -webkit-box;
9085 -webkit-box-orient: horizontal;
9182 -webkit-box-orient: horizontal;
9086 -webkit-box-align: stretch;
9183 -webkit-box-align: stretch;
9087 display: -moz-box;
9184 display: -moz-box;
9088 -moz-box-orient: horizontal;
9185 -moz-box-orient: horizontal;
9089 -moz-box-align: stretch;
9186 -moz-box-align: stretch;
9090 display: box;
9187 display: box;
9091 box-orient: horizontal;
9188 box-orient: horizontal;
9092 box-align: stretch;
9189 box-align: stretch;
9093 /* Modern browsers */
9190 /* Modern browsers */
9094 display: flex;
9191 display: flex;
9095 flex-direction: row;
9192 flex-direction: row;
9096 align-items: stretch;
9193 align-items: stretch;
9097 /* Old browsers */
9194 /* Old browsers */
9098 -webkit-box-flex: 0;
9195 -webkit-box-flex: 0;
9099 -moz-box-flex: 0;
9196 -moz-box-flex: 0;
9100 box-flex: 0;
9197 box-flex: 0;
9101 /* Modern browsers */
9198 /* Modern browsers */
9102 flex: none;
9199 flex: none;
9103 height: 30px;
9200 height: 30px;
9104 }
9201 }
9105 .widget-hbox-single input[type="checkbox"] {
9202 .widget-hbox-single input[type="checkbox"] {
9106 margin-top: 9px;
9203 margin-top: 9px;
9107 }
9204 }
9108 .widget-vbox {
9205 .widget-vbox {
9109 /* Vertical widgets */
9206 /* Vertical widgets */
9110 /* The following section sets the style for the invisible div that
9207 /* The following section sets the style for the invisible div that
9111 hold widgets and their accompanying labels.
9208 hold widgets and their accompanying labels.
9112
9209
9113 Looks like this:
9210 Looks like this:
9114 +-----------------------------+
9211 +-----------------------------+
9115 | widget-box (or similar) |
9212 | widget-box (or similar) |
9116 | +-------+---------------+ |
9213 | +-------+---------------+ |
9117 | | Label | Actual Widget | |
9214 | | Label | Actual Widget | |
9118 | +-------+---------------+ |
9215 | +-------+---------------+ |
9119 +-----------------------------+
9216 +-----------------------------+
9120 */
9217 */
9121 margin: 5px;
9218 margin: 5px;
9122 /* Old browsers */
9219 /* Old browsers */
9123 -webkit-box-pack: start;
9220 -webkit-box-pack: start;
9124 -moz-box-pack: start;
9221 -moz-box-pack: start;
9125 box-pack: start;
9222 box-pack: start;
9126 /* Modern browsers */
9223 /* Modern browsers */
9127 justify-content: flex-start;
9224 justify-content: flex-start;
9128 /* ContainerWidget */
9225 /* ContainerWidget */
9129 box-sizing: border-box;
9226 box-sizing: border-box;
9130 -moz-box-sizing: border-box;
9227 -moz-box-sizing: border-box;
9131 -webkit-box-sizing: border-box;
9228 -webkit-box-sizing: border-box;
9132 /* Old browsers */
9229 /* Old browsers */
9133 -webkit-box-align: start;
9230 -webkit-box-align: start;
9134 -moz-box-align: start;
9231 -moz-box-align: start;
9135 box-align: start;
9232 box-align: start;
9136 /* Modern browsers */
9233 /* Modern browsers */
9137 align-items: flex-start;
9234 align-items: flex-start;
9138 /* Old browsers */
9235 /* Old browsers */
9139 display: -webkit-box;
9236 display: -webkit-box;
9140 -webkit-box-orient: vertical;
9237 -webkit-box-orient: vertical;
9141 -webkit-box-align: stretch;
9238 -webkit-box-align: stretch;
9142 display: -moz-box;
9239 display: -moz-box;
9143 -moz-box-orient: vertical;
9240 -moz-box-orient: vertical;
9144 -moz-box-align: stretch;
9241 -moz-box-align: stretch;
9145 display: box;
9242 display: box;
9146 box-orient: vertical;
9243 box-orient: vertical;
9147 box-align: stretch;
9244 box-align: stretch;
9148 /* Modern browsers */
9245 /* Modern browsers */
9149 display: flex;
9246 display: flex;
9150 flex-direction: column;
9247 flex-direction: column;
9151 align-items: stretch;
9248 align-items: stretch;
9152 /* Old browsers */
9249 /* Old browsers */
9153 -webkit-box-flex: 0;
9250 -webkit-box-flex: 0;
9154 -moz-box-flex: 0;
9251 -moz-box-flex: 0;
9155 box-flex: 0;
9252 box-flex: 0;
9156 /* Modern browsers */
9253 /* Modern browsers */
9157 flex: none;
9254 flex: none;
9158 }
9255 }
9159 .widget-vbox-single {
9256 .widget-vbox-single {
9160 /* For vertical slides */
9257 /* For vertical slides */
9161 /* Vertical widgets */
9258 /* Vertical widgets */
9162 /* The following section sets the style for the invisible div that
9259 /* The following section sets the style for the invisible div that
9163 hold widgets and their accompanying labels.
9260 hold widgets and their accompanying labels.
9164
9261
9165 Looks like this:
9262 Looks like this:
9166 +-----------------------------+
9263 +-----------------------------+
9167 | widget-box (or similar) |
9264 | widget-box (or similar) |
9168 | +-------+---------------+ |
9265 | +-------+---------------+ |
9169 | | Label | Actual Widget | |
9266 | | Label | Actual Widget | |
9170 | +-------+---------------+ |
9267 | +-------+---------------+ |
9171 +-----------------------------+
9268 +-----------------------------+
9172 */
9269 */
9173 margin: 5px;
9270 margin: 5px;
9174 /* Old browsers */
9271 /* Old browsers */
9175 -webkit-box-pack: start;
9272 -webkit-box-pack: start;
9176 -moz-box-pack: start;
9273 -moz-box-pack: start;
9177 box-pack: start;
9274 box-pack: start;
9178 /* Modern browsers */
9275 /* Modern browsers */
9179 justify-content: flex-start;
9276 justify-content: flex-start;
9180 /* ContainerWidget */
9277 /* ContainerWidget */
9181 box-sizing: border-box;
9278 box-sizing: border-box;
9182 -moz-box-sizing: border-box;
9279 -moz-box-sizing: border-box;
9183 -webkit-box-sizing: border-box;
9280 -webkit-box-sizing: border-box;
9184 /* Old browsers */
9281 /* Old browsers */
9185 -webkit-box-align: start;
9282 -webkit-box-align: start;
9186 -moz-box-align: start;
9283 -moz-box-align: start;
9187 box-align: start;
9284 box-align: start;
9188 /* Modern browsers */
9285 /* Modern browsers */
9189 align-items: flex-start;
9286 align-items: flex-start;
9190 /* Old browsers */
9287 /* Old browsers */
9191 display: -webkit-box;
9288 display: -webkit-box;
9192 -webkit-box-orient: vertical;
9289 -webkit-box-orient: vertical;
9193 -webkit-box-align: stretch;
9290 -webkit-box-align: stretch;
9194 display: -moz-box;
9291 display: -moz-box;
9195 -moz-box-orient: vertical;
9292 -moz-box-orient: vertical;
9196 -moz-box-align: stretch;
9293 -moz-box-align: stretch;
9197 display: box;
9294 display: box;
9198 box-orient: vertical;
9295 box-orient: vertical;
9199 box-align: stretch;
9296 box-align: stretch;
9200 /* Modern browsers */
9297 /* Modern browsers */
9201 display: flex;
9298 display: flex;
9202 flex-direction: column;
9299 flex-direction: column;
9203 align-items: stretch;
9300 align-items: stretch;
9204 /* Old browsers */
9301 /* Old browsers */
9205 -webkit-box-flex: 0;
9302 -webkit-box-flex: 0;
9206 -moz-box-flex: 0;
9303 -moz-box-flex: 0;
9207 box-flex: 0;
9304 box-flex: 0;
9208 /* Modern browsers */
9305 /* Modern browsers */
9209 flex: none;
9306 flex: none;
9210 width: 30px;
9307 width: 30px;
9211 }
9308 }
9212 .widget-modal {
9309 .widget-modal {
9213 /* ContainerWidget - ModalView */
9310 /* ContainerWidget - ModalView */
9214 overflow: hidden;
9311 overflow: hidden;
9215 position: absolute !important;
9312 position: absolute !important;
9216 top: 0px;
9313 top: 0px;
9217 left: 0px;
9314 left: 0px;
9218 margin-left: 0px !important;
9315 margin-left: 0px !important;
9219 }
9316 }
9220 .widget-modal-body {
9317 .widget-modal-body {
9221 /* ContainerWidget - ModalView Body */
9318 /* ContainerWidget - ModalView Body */
9222 max-height: none !important;
9319 max-height: none !important;
9223 }
9320 }
9224 .widget-container {
9321 .widget-container {
9225 /* ContainerWidget */
9322 /* ContainerWidget */
9226 box-sizing: border-box;
9323 box-sizing: border-box;
9227 -moz-box-sizing: border-box;
9324 -moz-box-sizing: border-box;
9228 -webkit-box-sizing: border-box;
9325 -webkit-box-sizing: border-box;
9229 /* Old browsers */
9326 /* Old browsers */
9230 -webkit-box-align: start;
9327 -webkit-box-align: start;
9231 -moz-box-align: start;
9328 -moz-box-align: start;
9232 box-align: start;
9329 box-align: start;
9233 /* Modern browsers */
9330 /* Modern browsers */
9234 align-items: flex-start;
9331 align-items: flex-start;
9235 }
9332 }
9236 .widget-radio-box {
9333 .widget-radio-box {
9237 /* Contains RadioButtonsWidget */
9334 /* Contains RadioButtonsWidget */
9238 /* Old browsers */
9335 /* Old browsers */
9239 display: -webkit-box;
9336 display: -webkit-box;
9240 -webkit-box-orient: vertical;
9337 -webkit-box-orient: vertical;
9241 -webkit-box-align: stretch;
9338 -webkit-box-align: stretch;
9242 display: -moz-box;
9339 display: -moz-box;
9243 -moz-box-orient: vertical;
9340 -moz-box-orient: vertical;
9244 -moz-box-align: stretch;
9341 -moz-box-align: stretch;
9245 display: box;
9342 display: box;
9246 box-orient: vertical;
9343 box-orient: vertical;
9247 box-align: stretch;
9344 box-align: stretch;
9248 /* Modern browsers */
9345 /* Modern browsers */
9249 display: flex;
9346 display: flex;
9250 flex-direction: column;
9347 flex-direction: column;
9251 align-items: stretch;
9348 align-items: stretch;
9252 /* Old browsers */
9349 /* Old browsers */
9253 -webkit-box-flex: 0;
9350 -webkit-box-flex: 0;
9254 -moz-box-flex: 0;
9351 -moz-box-flex: 0;
9255 box-flex: 0;
9352 box-flex: 0;
9256 /* Modern browsers */
9353 /* Modern browsers */
9257 flex: none;
9354 flex: none;
9258 box-sizing: border-box;
9355 box-sizing: border-box;
9259 -moz-box-sizing: border-box;
9356 -moz-box-sizing: border-box;
9260 -webkit-box-sizing: border-box;
9357 -webkit-box-sizing: border-box;
9261 padding-top: 4px;
9358 padding-top: 4px;
9262 }
9359 }
9263 .widget-radio-box label {
9360 .widget-radio-box label {
9264 margin-top: 0px;
9361 margin-top: 0px;
9265 }
9362 }
9266 .docked-widget-modal {
9363 .docked-widget-modal {
9267 /* Horizontal Label */
9364 /* Horizontal Label */
9268 overflow: hidden;
9365 overflow: hidden;
9269 position: relative !important;
9366 position: relative !important;
9270 top: 0px !important;
9367 top: 0px !important;
9271 left: 0px !important;
9368 left: 0px !important;
9272 margin-left: 0px !important;
9369 margin-left: 0px !important;
9273 }
9370 }
9274 /*!
9371 /*!
9275 *
9372 *
9276 * IPython notebook webapp
9373 * IPython notebook webapp
9277 *
9374 *
9278 */
9375 */
9279 body {
9376 body {
9280 background-color: #ffffff;
9377 background-color: #ffffff;
9281 }
9378 }
9282 body.notebook_app {
9379 body.notebook_app {
9283 overflow: hidden;
9380 overflow: hidden;
9284 }
9381 }
9285 @media (max-width: 767px) {
9382 @media (max-width: 767px) {
9286 body.notebook_app {
9383 body.notebook_app {
9287 padding-left: 0px;
9384 padding-left: 0px;
9288 padding-right: 0px;
9385 padding-right: 0px;
9289 }
9386 }
9290 }
9387 }
9291 span#notebook_name {
9388 span#notebook_name {
9292 height: 1em;
9389 height: 1em;
9293 line-height: 1em;
9390 line-height: 1em;
9294 padding: 3px;
9391 padding: 3px;
9295 border: none;
9392 border: none;
9296 font-size: 146.5%;
9393 font-size: 146.5%;
9297 }
9394 }
9298 div#notebook_panel {
9395 div#notebook_panel {
9299 margin: 0px 0px 0px 0px;
9396 margin: 0px 0px 0px 0px;
9300 padding: 0px;
9397 padding: 0px;
9301 -webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9398 -webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9302 box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9399 box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9303 }
9400 }
9304 div#notebook {
9401 div#notebook {
9305 font-size: 14px;
9402 font-size: 14px;
9306 line-height: 20px;
9403 line-height: 20px;
9307 overflow-y: scroll;
9404 overflow-y: scroll;
9308 overflow-x: auto;
9405 overflow-x: auto;
9309 width: 100%;
9406 width: 100%;
9310 /* This spaces the cell away from the edge of the notebook area */
9407 /* This spaces the cell away from the edge of the notebook area */
9311 padding: 1em 0 1em 0;
9408 padding: 1em 0 1em 0;
9312 margin: 0px;
9409 margin: 0px;
9313 border-top: 1px solid #e7e7e7;
9410 border-top: 1px solid #e7e7e7;
9314 outline: none;
9411 outline: none;
9315 box-sizing: border-box;
9412 box-sizing: border-box;
9316 -moz-box-sizing: border-box;
9413 -moz-box-sizing: border-box;
9317 -webkit-box-sizing: border-box;
9414 -webkit-box-sizing: border-box;
9318 }
9415 }
9319 div.ui-widget-content {
9416 div.ui-widget-content {
9320 border: 1px solid #ababab;
9417 border: 1px solid #ababab;
9321 outline: none;
9418 outline: none;
9322 }
9419 }
9323 pre.dialog {
9420 pre.dialog {
9324 background-color: #f7f7f7;
9421 background-color: #f7f7f7;
9325 border: 1px solid #ddd;
9422 border: 1px solid #ddd;
9326 border-radius: 4px;
9423 border-radius: 4px;
9327 padding: 0.4em;
9424 padding: 0.4em;
9328 padding-left: 2em;
9425 padding-left: 2em;
9329 }
9426 }
9330 p.dialog {
9427 p.dialog {
9331 padding: 0.2em;
9428 padding: 0.2em;
9332 }
9429 }
9333 /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
9430 /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
9334 to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
9431 to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
9335 */
9432 */
9336 pre,
9433 pre,
9337 code,
9434 code,
9338 kbd,
9435 kbd,
9339 samp {
9436 samp {
9340 white-space: pre-wrap;
9437 white-space: pre-wrap;
9341 }
9438 }
9342 #fonttest {
9439 #fonttest {
9343 font-family: monospace;
9440 font-family: monospace;
9344 }
9441 }
9345 p {
9442 p {
9346 margin-bottom: 0;
9443 margin-bottom: 0;
9347 }
9444 }
9348 .end_space {
9445 .end_space {
9349 height: 200px;
9446 height: 200px;
9350 }
9447 }
9351 /* CSS for the cell toolbar */
9448 /* CSS for the cell toolbar */
9352 .celltoolbar {
9449 .celltoolbar {
9353 border: thin solid #CFCFCF;
9450 border: thin solid #CFCFCF;
9354 border-bottom: none;
9451 border-bottom: none;
9355 background: #EEE;
9452 background: #EEE;
9356 border-radius: 3px 3px 0px 0px;
9453 border-radius: 3px 3px 0px 0px;
9357 width: 100%;
9454 width: 100%;
9358 -webkit-box-pack: end;
9455 -webkit-box-pack: end;
9359 height: 29px;
9456 height: 29px;
9360 padding-right: 4px;
9457 padding-right: 4px;
9361 /* Old browsers */
9458 /* Old browsers */
9362 display: -webkit-box;
9459 display: -webkit-box;
9363 -webkit-box-orient: horizontal;
9460 -webkit-box-orient: horizontal;
9364 -webkit-box-align: stretch;
9461 -webkit-box-align: stretch;
9365 display: -moz-box;
9462 display: -moz-box;
9366 -moz-box-orient: horizontal;
9463 -moz-box-orient: horizontal;
9367 -moz-box-align: stretch;
9464 -moz-box-align: stretch;
9368 display: box;
9465 display: box;
9369 box-orient: horizontal;
9466 box-orient: horizontal;
9370 box-align: stretch;
9467 box-align: stretch;
9371 /* Modern browsers */
9468 /* Modern browsers */
9372 display: flex;
9469 display: flex;
9373 flex-direction: row;
9470 flex-direction: row;
9374 align-items: stretch;
9471 align-items: stretch;
9375 /* Old browsers */
9472 /* Old browsers */
9376 -webkit-box-flex: 0;
9473 -webkit-box-flex: 0;
9377 -moz-box-flex: 0;
9474 -moz-box-flex: 0;
9378 box-flex: 0;
9475 box-flex: 0;
9379 /* Modern browsers */
9476 /* Modern browsers */
9380 flex: none;
9477 flex: none;
9381 /* Old browsers */
9478 /* Old browsers */
9382 -webkit-box-direction: reverse;
9479 -webkit-box-direction: reverse;
9383 -moz-box-direction: reverse;
9480 -moz-box-direction: reverse;
9384 box-direction: reverse;
9481 box-direction: reverse;
9385 /* Modern browsers */
9482 /* Modern browsers */
9386 flex-direction: row-reverse;
9483 flex-direction: row-reverse;
9387 }
9484 }
9388 .ctb_hideshow {
9485 .ctb_hideshow {
9389 display: none;
9486 display: none;
9390 vertical-align: bottom;
9487 vertical-align: bottom;
9391 }
9488 }
9392 /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
9489 /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
9393 Cell toolbars are only shown when the ctb_global_show class is also set.
9490 Cell toolbars are only shown when the ctb_global_show class is also set.
9394 */
9491 */
9395 .ctb_global_show .ctb_show.ctb_hideshow {
9492 .ctb_global_show .ctb_show.ctb_hideshow {
9396 display: block;
9493 display: block;
9397 }
9494 }
9398 .ctb_global_show .ctb_show + .input_area,
9495 .ctb_global_show .ctb_show + .input_area,
9399 .ctb_global_show .ctb_show + div.text_cell_input {
9496 .ctb_global_show .ctb_show + div.text_cell_input {
9400 border-top-right-radius: 0px;
9497 border-top-right-radius: 0px;
9401 border-top-left-radius: 0px;
9498 border-top-left-radius: 0px;
9402 }
9499 }
9403 .celltoolbar {
9500 .celltoolbar {
9404 font-size: 87%;
9501 font-size: 87%;
9405 padding-top: 3px;
9502 padding-top: 3px;
9406 }
9503 }
9407 .celltoolbar select {
9504 .celltoolbar select {
9408 font-size: 87%;
9505 font-size: 87%;
9409 height: 22px;
9506 height: 22px;
9410 }
9507 }
9411 .celltoolbar label {
9508 .celltoolbar label {
9412 margin-left: 5px;
9509 margin-left: 5px;
9413 margin-right: 5px;
9510 margin-right: 5px;
9414 }
9511 }
9415 .completions {
9512 .completions {
9416 position: absolute;
9513 position: absolute;
9417 z-index: 10;
9514 z-index: 10;
9418 overflow: hidden;
9515 overflow: hidden;
9419 border: 1px solid #ababab;
9516 border: 1px solid #ababab;
9420 border-radius: 4px;
9517 border-radius: 4px;
9421 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
9518 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
9422 box-shadow: 0px 6px 10px -1px #adadad;
9519 box-shadow: 0px 6px 10px -1px #adadad;
9423 }
9520 }
9424 .completions select {
9521 .completions select {
9425 background: white;
9522 background: white;
9426 outline: none;
9523 outline: none;
9427 border: none;
9524 border: none;
9428 padding: 0px;
9525 padding: 0px;
9429 margin: 0px;
9526 margin: 0px;
9430 overflow: auto;
9527 overflow: auto;
9431 font-family: monospace;
9528 font-family: monospace;
9432 font-size: 110%;
9529 font-size: 110%;
9433 color: #000000;
9530 color: #000000;
9434 width: auto;
9531 width: auto;
9435 }
9532 }
9436 .completions select option.context {
9533 .completions select option.context {
9437 color: #3071a9;
9534 color: #3071a9;
9438 }
9535 }
9439 #kernel_selector_widget {
9536 #kernel_selector_widget {
9440 margin-right: 1em;
9537 margin-right: 1em;
9441 float: right;
9538 float: right;
9442 }
9539 }
9443 #kernel_selector_widget > button {
9540 #kernel_selector_widget > button {
9444 display: inline-block;
9541 display: inline-block;
9445 margin-bottom: 0;
9542 margin-bottom: 0;
9446 font-weight: normal;
9543 font-weight: normal;
9447 text-align: center;
9544 text-align: center;
9448 vertical-align: middle;
9545 vertical-align: middle;
9449 cursor: pointer;
9546 cursor: pointer;
9450 background-image: none;
9547 background-image: none;
9451 border: 1px solid transparent;
9548 border: 1px solid transparent;
9452 white-space: nowrap;
9549 white-space: nowrap;
9453 padding: 6px 12px;
9550 padding: 6px 12px;
9454 font-size: 13px;
9551 font-size: 13px;
9455 line-height: 1.42857143;
9552 line-height: 1.42857143;
9456 border-radius: 4px;
9553 border-radius: 4px;
9457 -webkit-user-select: none;
9554 -webkit-user-select: none;
9458 -moz-user-select: none;
9555 -moz-user-select: none;
9459 -ms-user-select: none;
9556 -ms-user-select: none;
9460 user-select: none;
9557 user-select: none;
9461 color: #333333;
9558 color: #333333;
9462 background-color: #ffffff;
9559 background-color: #ffffff;
9463 border-color: #cccccc;
9560 border-color: #cccccc;
9464 padding: 5px 10px;
9561 padding: 5px 10px;
9465 font-size: 12px;
9562 font-size: 12px;
9466 line-height: 1.5;
9563 line-height: 1.5;
9467 border-radius: 3px;
9564 border-radius: 3px;
9468 }
9565 }
9469 #kernel_selector_widget > button:focus,
9566 #kernel_selector_widget > button:focus,
9470 #kernel_selector_widget > button:active:focus,
9567 #kernel_selector_widget > button:active:focus,
9471 #kernel_selector_widget > button.active:focus {
9568 #kernel_selector_widget > button.active:focus {
9472 outline: thin dotted;
9569 outline: thin dotted;
9473 outline: 5px auto -webkit-focus-ring-color;
9570 outline: 5px auto -webkit-focus-ring-color;
9474 outline-offset: -2px;
9571 outline-offset: -2px;
9475 }
9572 }
9476 #kernel_selector_widget > button:hover,
9573 #kernel_selector_widget > button:hover,
9477 #kernel_selector_widget > button:focus {
9574 #kernel_selector_widget > button:focus {
9478 color: #333333;
9575 color: #333333;
9479 text-decoration: none;
9576 text-decoration: none;
9480 }
9577 }
9481 #kernel_selector_widget > button:active,
9578 #kernel_selector_widget > button:active,
9482 #kernel_selector_widget > button.active {
9579 #kernel_selector_widget > button.active {
9483 outline: 0;
9580 outline: 0;
9484 background-image: none;
9581 background-image: none;
9485 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
9582 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
9486 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
9583 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
9487 }
9584 }
9488 #kernel_selector_widget > button.disabled,
9585 #kernel_selector_widget > button.disabled,
9489 #kernel_selector_widget > button[disabled],
9586 #kernel_selector_widget > button[disabled],
9490 fieldset[disabled] #kernel_selector_widget > button {
9587 fieldset[disabled] #kernel_selector_widget > button {
9491 cursor: not-allowed;
9588 cursor: not-allowed;
9492 pointer-events: none;
9589 pointer-events: none;
9493 opacity: 0.65;
9590 opacity: 0.65;
9494 filter: alpha(opacity=65);
9591 filter: alpha(opacity=65);
9495 -webkit-box-shadow: none;
9592 -webkit-box-shadow: none;
9496 box-shadow: none;
9593 box-shadow: none;
9497 }
9594 }
9498 #kernel_selector_widget > button [class^="icon-"].icon-large,
9595 #kernel_selector_widget > button [class^="icon-"].icon-large,
9499 #kernel_selector_widget > button [class*=" icon-"].icon-large {
9596 #kernel_selector_widget > button [class*=" icon-"].icon-large {
9500 line-height: .9em;
9597 line-height: .9em;
9501 }
9598 }
9502 #kernel_selector_widget > button [class^="icon-"].icon-spin,
9599 #kernel_selector_widget > button [class^="icon-"].icon-spin,
9503 #kernel_selector_widget > button [class*=" icon-"].icon-spin {
9600 #kernel_selector_widget > button [class*=" icon-"].icon-spin {
9504 display: inline-block;
9601 display: inline-block;
9505 }
9602 }
9506 #kernel_selector_widget > button [class^="icon-"].pull-left.icon-2x,
9603 #kernel_selector_widget > button [class^="icon-"].pull-left.icon-2x,
9507 #kernel_selector_widget > button [class*=" icon-"].pull-left.icon-2x,
9604 #kernel_selector_widget > button [class*=" icon-"].pull-left.icon-2x,
9508 #kernel_selector_widget > button [class^="icon-"].pull-right.icon-2x,
9605 #kernel_selector_widget > button [class^="icon-"].pull-right.icon-2x,
9509 #kernel_selector_widget > button [class*=" icon-"].pull-right.icon-2x {
9606 #kernel_selector_widget > button [class*=" icon-"].pull-right.icon-2x {
9510 margin-top: .18em;
9607 margin-top: .18em;
9511 }
9608 }
9512 #kernel_selector_widget > button [class^="icon-"].icon-spin.icon-large,
9609 #kernel_selector_widget > button [class^="icon-"].icon-spin.icon-large,
9513 #kernel_selector_widget > button [class*=" icon-"].icon-spin.icon-large {
9610 #kernel_selector_widget > button [class*=" icon-"].icon-spin.icon-large {
9514 line-height: .8em;
9611 line-height: .8em;
9515 }
9612 }
9516 #kernel_selector_widget > button:hover,
9613 #kernel_selector_widget > button:hover,
9517 #kernel_selector_widget > button:focus,
9614 #kernel_selector_widget > button:focus,
9518 #kernel_selector_widget > button:active,
9615 #kernel_selector_widget > button:active,
9519 #kernel_selector_widget > button.active,
9616 #kernel_selector_widget > button.active,
9520 .open .dropdown-toggle#kernel_selector_widget > button {
9617 .open .dropdown-toggle#kernel_selector_widget > button {
9521 color: #333333;
9618 color: #333333;
9522 background-color: #ebebeb;
9619 background-color: #ebebeb;
9523 border-color: #adadad;
9620 border-color: #adadad;
9524 }
9621 }
9525 #kernel_selector_widget > button:active,
9622 #kernel_selector_widget > button:active,
9526 #kernel_selector_widget > button.active,
9623 #kernel_selector_widget > button.active,
9527 .open .dropdown-toggle#kernel_selector_widget > button {
9624 .open .dropdown-toggle#kernel_selector_widget > button {
9528 background-image: none;
9625 background-image: none;
9529 }
9626 }
9530 #kernel_selector_widget > button.disabled,
9627 #kernel_selector_widget > button.disabled,
9531 #kernel_selector_widget > button[disabled],
9628 #kernel_selector_widget > button[disabled],
9532 fieldset[disabled] #kernel_selector_widget > button,
9629 fieldset[disabled] #kernel_selector_widget > button,
9533 #kernel_selector_widget > button.disabled:hover,
9630 #kernel_selector_widget > button.disabled:hover,
9534 #kernel_selector_widget > button[disabled]:hover,
9631 #kernel_selector_widget > button[disabled]:hover,
9535 fieldset[disabled] #kernel_selector_widget > button:hover,
9632 fieldset[disabled] #kernel_selector_widget > button:hover,
9536 #kernel_selector_widget > button.disabled:focus,
9633 #kernel_selector_widget > button.disabled:focus,
9537 #kernel_selector_widget > button[disabled]:focus,
9634 #kernel_selector_widget > button[disabled]:focus,
9538 fieldset[disabled] #kernel_selector_widget > button:focus,
9635 fieldset[disabled] #kernel_selector_widget > button:focus,
9539 #kernel_selector_widget > button.disabled:active,
9636 #kernel_selector_widget > button.disabled:active,
9540 #kernel_selector_widget > button[disabled]:active,
9637 #kernel_selector_widget > button[disabled]:active,
9541 fieldset[disabled] #kernel_selector_widget > button:active,
9638 fieldset[disabled] #kernel_selector_widget > button:active,
9542 #kernel_selector_widget > button.disabled.active,
9639 #kernel_selector_widget > button.disabled.active,
9543 #kernel_selector_widget > button[disabled].active,
9640 #kernel_selector_widget > button[disabled].active,
9544 fieldset[disabled] #kernel_selector_widget > button.active {
9641 fieldset[disabled] #kernel_selector_widget > button.active {
9545 background-color: #ffffff;
9642 background-color: #ffffff;
9546 border-color: #cccccc;
9643 border-color: #cccccc;
9547 }
9644 }
9548 #kernel_selector_widget > button .badge {
9645 #kernel_selector_widget > button .badge {
9549 color: #ffffff;
9646 color: #ffffff;
9550 background-color: #333333;
9647 background-color: #333333;
9551 }
9648 }
9552 #kernel_selector_widget > button > span.caret {
9649 #kernel_selector_widget > button > span.caret {
9553 margin-top: 0px;
9650 margin-top: 0px;
9554 }
9651 }
9555 #menubar {
9652 #menubar {
9556 margin-top: 0px;
9653 margin-top: 0px;
9557 margin-bottom: -19px;
9654 margin-bottom: -19px;
9558 position: relative;
9655 position: relative;
9559 }
9656 }
9560 #menubar .navbar {
9657 #menubar .navbar {
9561 border-top: 1px;
9658 border-top: 1px;
9562 border-radius: 0px 0px 4px 4px;
9659 border-radius: 0px 0px 4px 4px;
9563 }
9660 }
9564 #menubar li.dropdown {
9661 #menubar li.dropdown {
9565 line-height: 12px;
9662 line-height: 12px;
9566 }
9663 }
9567 #menubar li.dropdown a {
9664 #menubar li.dropdown a {
9568 padding-top: 6px;
9665 padding-top: 6px;
9569 padding-bottom: 5px;
9666 padding-bottom: 5px;
9570 }
9667 }
9571 #menubar ul.navbar-right {
9668 #menubar ul.navbar-right {
9572 padding-top: 2px;
9669 padding-top: 2px;
9573 }
9670 }
9574 .nav-wrapper {
9671 .nav-wrapper {
9575 border-bottom: 1px solid #e7e7e7;
9672 border-bottom: 1px solid #e7e7e7;
9576 }
9673 }
9577 i.menu-icon {
9674 i.menu-icon {
9578 padding-top: 4px;
9675 padding-top: 4px;
9579 }
9676 }
9580 ul#help_menu li a {
9677 ul#help_menu li a {
9581 overflow: hidden;
9678 overflow: hidden;
9582 padding-right: 2.2em;
9679 padding-right: 2.2em;
9583 }
9680 }
9584 ul#help_menu li a i {
9681 ul#help_menu li a i {
9585 margin-right: -1.2em;
9682 margin-right: -1.2em;
9586 }
9683 }
9587 #menus {
9684 #menus {
9588 min-height: 30px;
9685 min-height: 30px;
9589 }
9686 }
9590 .dropdown-submenu {
9687 .dropdown-submenu {
9591 position: relative;
9688 position: relative;
9592 }
9689 }
9593 .dropdown-submenu > .dropdown-menu {
9690 .dropdown-submenu > .dropdown-menu {
9594 top: 0;
9691 top: 0;
9595 left: 100%;
9692 left: 100%;
9596 margin-top: -6px;
9693 margin-top: -6px;
9597 margin-left: -1px;
9694 margin-left: -1px;
9598 -webkit-border-radius: 0 6px 6px 6px;
9695 -webkit-border-radius: 0 6px 6px 6px;
9599 -moz-border-radius: 0 6px 6px 6px;
9696 -moz-border-radius: 0 6px 6px 6px;
9600 border-radius: 0 6px 6px 6px;
9697 border-radius: 0 6px 6px 6px;
9601 }
9698 }
9602 .dropdown-submenu:hover > .dropdown-menu {
9699 .dropdown-submenu:hover > .dropdown-menu {
9603 display: block;
9700 display: block;
9604 }
9701 }
9605 .dropdown-submenu > a:after {
9702 .dropdown-submenu > a:after {
9606 display: block;
9703 display: block;
9607 content: " ";
9704 content: " ";
9608 float: right;
9705 float: right;
9609 width: 0;
9706 width: 0;
9610 height: 0;
9707 height: 0;
9611 border-color: transparent;
9708 border-color: transparent;
9612 border-style: solid;
9709 border-style: solid;
9613 border-width: 5px 0 5px 5px;
9710 border-width: 5px 0 5px 5px;
9614 border-left-color: #cccccc;
9711 border-left-color: #cccccc;
9615 margin-top: 5px;
9712 margin-top: 5px;
9616 margin-right: -10px;
9713 margin-right: -10px;
9617 }
9714 }
9618 .dropdown-submenu:hover > a:after {
9715 .dropdown-submenu:hover > a:after {
9619 border-left-color: #ffffff;
9716 border-left-color: #ffffff;
9620 }
9717 }
9621 .dropdown-submenu.pull-left {
9718 .dropdown-submenu.pull-left {
9622 float: none;
9719 float: none;
9623 }
9720 }
9624 .dropdown-submenu.pull-left > .dropdown-menu {
9721 .dropdown-submenu.pull-left > .dropdown-menu {
9625 left: -100%;
9722 left: -100%;
9626 margin-left: 10px;
9723 margin-left: 10px;
9627 -webkit-border-radius: 6px 0 6px 6px;
9724 -webkit-border-radius: 6px 0 6px 6px;
9628 -moz-border-radius: 6px 0 6px 6px;
9725 -moz-border-radius: 6px 0 6px 6px;
9629 border-radius: 6px 0 6px 6px;
9726 border-radius: 6px 0 6px 6px;
9630 }
9727 }
9631 #notification_area {
9728 #notification_area {
9632 float: right !important;
9729 float: right !important;
9633 float: right;
9730 float: right;
9634 z-index: 10;
9731 z-index: 10;
9635 }
9732 }
9636 .indicator_area {
9733 .indicator_area {
9637 color: #777777;
9734 color: #777777;
9638 padding: 4px 3px;
9735 padding: 4px 3px;
9639 margin: 0px;
9736 margin: 0px;
9640 width: 11px;
9737 width: 11px;
9641 z-index: 10;
9738 z-index: 10;
9642 text-align: center;
9739 text-align: center;
9643 }
9740 }
9644 #kernel_indicator {
9741 #kernel_indicator {
9645 float: right !important;
9742 float: right !important;
9646 float: right;
9743 float: right;
9647 color: #777777;
9744 color: #777777;
9648 padding: 4px 3px;
9745 padding: 4px 3px;
9649 margin: 0px;
9746 margin: 0px;
9650 width: 11px;
9747 width: 11px;
9651 z-index: 10;
9748 z-index: 10;
9652 text-align: center;
9749 text-align: center;
9653 margin-right: 12px;
9750 margin-right: 12px;
9654 }
9751 }
9655 #modal_indicator {
9752 #modal_indicator {
9656 float: right !important;
9753 float: right !important;
9657 float: right;
9754 float: right;
9658 color: #777777;
9755 color: #777777;
9659 padding: 4px 3px;
9756 padding: 4px 3px;
9660 margin: 0px;
9757 margin: 0px;
9661 width: 11px;
9758 width: 11px;
9662 z-index: 10;
9759 z-index: 10;
9663 text-align: center;
9760 text-align: center;
9664 margin-right: 5px;
9761 margin-right: 5px;
9665 }
9762 }
9666 .edit_mode_icon:before {
9763 .edit_mode_icon:before {
9764 display: inline-block;
9667 font-family: FontAwesome;
9765 font-family: FontAwesome;
9668 font-weight: normal;
9669 font-style: normal;
9766 font-style: normal;
9670 text-decoration: inherit;
9767 font-weight: normal;
9768 line-height: 1;
9671 -webkit-font-smoothing: antialiased;
9769 -webkit-font-smoothing: antialiased;
9672 *margin-right: .3em;
9770 -moz-osx-font-smoothing: grayscale;
9673 content: "\f040";
9771 content: "\f040";
9674 }
9772 }
9773 .edit_mode_icon:before.pull-left {
9774 margin-right: .3em;
9775 }
9776 .edit_mode_icon:before.pull-right {
9777 margin-left: .3em;
9778 }
9675 .command_mode_icon:before {
9779 .command_mode_icon:before {
9780 display: inline-block;
9676 font-family: FontAwesome;
9781 font-family: FontAwesome;
9677 font-weight: normal;
9678 font-style: normal;
9782 font-style: normal;
9679 text-decoration: inherit;
9783 font-weight: normal;
9784 line-height: 1;
9680 -webkit-font-smoothing: antialiased;
9785 -webkit-font-smoothing: antialiased;
9681 *margin-right: .3em;
9786 -moz-osx-font-smoothing: grayscale;
9682 content: ' ';
9787 content: ' ';
9683 }
9788 }
9789 .command_mode_icon:before.pull-left {
9790 margin-right: .3em;
9791 }
9792 .command_mode_icon:before.pull-right {
9793 margin-left: .3em;
9794 }
9684 .kernel_idle_icon:before {
9795 .kernel_idle_icon:before {
9796 display: inline-block;
9685 font-family: FontAwesome;
9797 font-family: FontAwesome;
9686 font-weight: normal;
9687 font-style: normal;
9798 font-style: normal;
9688 text-decoration: inherit;
9799 font-weight: normal;
9800 line-height: 1;
9689 -webkit-font-smoothing: antialiased;
9801 -webkit-font-smoothing: antialiased;
9690 *margin-right: .3em;
9802 -moz-osx-font-smoothing: grayscale;
9691 content: "\f10c";
9803 content: "\f10c";
9692 }
9804 }
9805 .kernel_idle_icon:before.pull-left {
9806 margin-right: .3em;
9807 }
9808 .kernel_idle_icon:before.pull-right {
9809 margin-left: .3em;
9810 }
9693 .kernel_busy_icon:before {
9811 .kernel_busy_icon:before {
9812 display: inline-block;
9694 font-family: FontAwesome;
9813 font-family: FontAwesome;
9695 font-weight: normal;
9696 font-style: normal;
9814 font-style: normal;
9697 text-decoration: inherit;
9815 font-weight: normal;
9816 line-height: 1;
9698 -webkit-font-smoothing: antialiased;
9817 -webkit-font-smoothing: antialiased;
9699 *margin-right: .3em;
9818 -moz-osx-font-smoothing: grayscale;
9700 content: "\f111";
9819 content: "\f111";
9701 }
9820 }
9821 .kernel_busy_icon:before.pull-left {
9822 margin-right: .3em;
9823 }
9824 .kernel_busy_icon:before.pull-right {
9825 margin-left: .3em;
9826 }
9702 .notification_widget {
9827 .notification_widget {
9703 color: #777777;
9828 color: #777777;
9704 padding: 1px 12px;
9829 padding: 1px 12px;
9705 margin: 2px 4px;
9830 margin: 2px 4px;
9706 z-index: 10;
9831 z-index: 10;
9707 background: rgba(240, 240, 240, 0.5);
9832 background: rgba(240, 240, 240, 0.5);
9708 float: right !important;
9833 float: right !important;
9709 float: right;
9834 float: right;
9710 box-sizing: border-box;
9835 box-sizing: border-box;
9711 -moz-box-sizing: border-box;
9836 -moz-box-sizing: border-box;
9712 -webkit-box-sizing: border-box;
9837 -webkit-box-sizing: border-box;
9713 display: inline-block;
9838 display: inline-block;
9714 margin-bottom: 0;
9839 margin-bottom: 0;
9715 font-weight: normal;
9840 font-weight: normal;
9716 text-align: center;
9841 text-align: center;
9717 vertical-align: middle;
9842 vertical-align: middle;
9718 cursor: pointer;
9843 cursor: pointer;
9719 background-image: none;
9844 background-image: none;
9720 border: 1px solid transparent;
9845 border: 1px solid transparent;
9721 white-space: nowrap;
9846 white-space: nowrap;
9722 padding: 6px 12px;
9847 padding: 6px 12px;
9723 font-size: 13px;
9848 font-size: 13px;
9724 line-height: 1.42857143;
9849 line-height: 1.42857143;
9725 border-radius: 4px;
9850 border-radius: 4px;
9726 -webkit-user-select: none;
9851 -webkit-user-select: none;
9727 -moz-user-select: none;
9852 -moz-user-select: none;
9728 -ms-user-select: none;
9853 -ms-user-select: none;
9729 user-select: none;
9854 user-select: none;
9730 color: #333333;
9855 color: #333333;
9731 background-color: #ffffff;
9856 background-color: #ffffff;
9732 border-color: #cccccc;
9857 border-color: #cccccc;
9733 padding: 1px 5px;
9858 padding: 1px 5px;
9734 font-size: 12px;
9859 font-size: 12px;
9735 line-height: 1.5;
9860 line-height: 1.5;
9736 border-radius: 3px;
9861 border-radius: 3px;
9737 }
9862 }
9738 .notification_widget:focus,
9863 .notification_widget:focus,
9739 .notification_widget:active:focus,
9864 .notification_widget:active:focus,
9740 .notification_widget.active:focus {
9865 .notification_widget.active:focus {
9741 outline: thin dotted;
9866 outline: thin dotted;
9742 outline: 5px auto -webkit-focus-ring-color;
9867 outline: 5px auto -webkit-focus-ring-color;
9743 outline-offset: -2px;
9868 outline-offset: -2px;
9744 }
9869 }
9745 .notification_widget:hover,
9870 .notification_widget:hover,
9746 .notification_widget:focus {
9871 .notification_widget:focus {
9747 color: #333333;
9872 color: #333333;
9748 text-decoration: none;
9873 text-decoration: none;
9749 }
9874 }
9750 .notification_widget:active,
9875 .notification_widget:active,
9751 .notification_widget.active {
9876 .notification_widget.active {
9752 outline: 0;
9877 outline: 0;
9753 background-image: none;
9878 background-image: none;
9754 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
9879 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
9755 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
9880 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
9756 }
9881 }
9757 .notification_widget.disabled,
9882 .notification_widget.disabled,
9758 .notification_widget[disabled],
9883 .notification_widget[disabled],
9759 fieldset[disabled] .notification_widget {
9884 fieldset[disabled] .notification_widget {
9760 cursor: not-allowed;
9885 cursor: not-allowed;
9761 pointer-events: none;
9886 pointer-events: none;
9762 opacity: 0.65;
9887 opacity: 0.65;
9763 filter: alpha(opacity=65);
9888 filter: alpha(opacity=65);
9764 -webkit-box-shadow: none;
9889 -webkit-box-shadow: none;
9765 box-shadow: none;
9890 box-shadow: none;
9766 }
9891 }
9767 .notification_widget [class^="icon-"].icon-large,
9768 .notification_widget [class*=" icon-"].icon-large {
9769 line-height: .9em;
9770 }
9771 .notification_widget [class^="icon-"].icon-spin,
9772 .notification_widget [class*=" icon-"].icon-spin {
9773 display: inline-block;
9774 }
9775 .notification_widget [class^="icon-"].pull-left.icon-2x,
9776 .notification_widget [class*=" icon-"].pull-left.icon-2x,
9777 .notification_widget [class^="icon-"].pull-right.icon-2x,
9778 .notification_widget [class*=" icon-"].pull-right.icon-2x {
9779 margin-top: .18em;
9780 }
9781 .notification_widget [class^="icon-"].icon-spin.icon-large,
9782 .notification_widget [class*=" icon-"].icon-spin.icon-large {
9783 line-height: .8em;
9784 }
9785 .notification_widget:hover,
9892 .notification_widget:hover,
9786 .notification_widget:focus,
9893 .notification_widget:focus,
9787 .notification_widget:active,
9894 .notification_widget:active,
9788 .notification_widget.active,
9895 .notification_widget.active,
9789 .open .dropdown-toggle.notification_widget {
9896 .open .dropdown-toggle.notification_widget {
9790 color: #333333;
9897 color: #333333;
9791 background-color: #ebebeb;
9898 background-color: #ebebeb;
9792 border-color: #adadad;
9899 border-color: #adadad;
9793 }
9900 }
9794 .notification_widget:active,
9901 .notification_widget:active,
9795 .notification_widget.active,
9902 .notification_widget.active,
9796 .open .dropdown-toggle.notification_widget {
9903 .open .dropdown-toggle.notification_widget {
9797 background-image: none;
9904 background-image: none;
9798 }
9905 }
9799 .notification_widget.disabled,
9906 .notification_widget.disabled,
9800 .notification_widget[disabled],
9907 .notification_widget[disabled],
9801 fieldset[disabled] .notification_widget,
9908 fieldset[disabled] .notification_widget,
9802 .notification_widget.disabled:hover,
9909 .notification_widget.disabled:hover,
9803 .notification_widget[disabled]:hover,
9910 .notification_widget[disabled]:hover,
9804 fieldset[disabled] .notification_widget:hover,
9911 fieldset[disabled] .notification_widget:hover,
9805 .notification_widget.disabled:focus,
9912 .notification_widget.disabled:focus,
9806 .notification_widget[disabled]:focus,
9913 .notification_widget[disabled]:focus,
9807 fieldset[disabled] .notification_widget:focus,
9914 fieldset[disabled] .notification_widget:focus,
9808 .notification_widget.disabled:active,
9915 .notification_widget.disabled:active,
9809 .notification_widget[disabled]:active,
9916 .notification_widget[disabled]:active,
9810 fieldset[disabled] .notification_widget:active,
9917 fieldset[disabled] .notification_widget:active,
9811 .notification_widget.disabled.active,
9918 .notification_widget.disabled.active,
9812 .notification_widget[disabled].active,
9919 .notification_widget[disabled].active,
9813 fieldset[disabled] .notification_widget.active {
9920 fieldset[disabled] .notification_widget.active {
9814 background-color: #ffffff;
9921 background-color: #ffffff;
9815 border-color: #cccccc;
9922 border-color: #cccccc;
9816 }
9923 }
9817 .notification_widget .badge {
9924 .notification_widget .badge {
9818 color: #ffffff;
9925 color: #ffffff;
9819 background-color: #333333;
9926 background-color: #333333;
9820 }
9927 }
9821 .notification_widget.span {
9928 .notification_widget.span {
9822 padding-right: 2px;
9929 padding-right: 2px;
9823 }
9930 }
9824 .notification_widget.warning {
9931 .notification_widget.warning {
9825 color: #ffffff;
9932 color: #ffffff;
9826 background-color: #f0ad4e;
9933 background-color: #f0ad4e;
9827 border-color: #eea236;
9934 border-color: #eea236;
9828 }
9935 }
9829 .notification_widget.warning:hover,
9936 .notification_widget.warning:hover,
9830 .notification_widget.warning:focus,
9937 .notification_widget.warning:focus,
9831 .notification_widget.warning:active,
9938 .notification_widget.warning:active,
9832 .notification_widget.warning.active,
9939 .notification_widget.warning.active,
9833 .open .dropdown-toggle.notification_widget.warning {
9940 .open .dropdown-toggle.notification_widget.warning {
9834 color: #ffffff;
9941 color: #ffffff;
9835 background-color: #ed9c28;
9942 background-color: #ed9c28;
9836 border-color: #d58512;
9943 border-color: #d58512;
9837 }
9944 }
9838 .notification_widget.warning:active,
9945 .notification_widget.warning:active,
9839 .notification_widget.warning.active,
9946 .notification_widget.warning.active,
9840 .open .dropdown-toggle.notification_widget.warning {
9947 .open .dropdown-toggle.notification_widget.warning {
9841 background-image: none;
9948 background-image: none;
9842 }
9949 }
9843 .notification_widget.warning.disabled,
9950 .notification_widget.warning.disabled,
9844 .notification_widget.warning[disabled],
9951 .notification_widget.warning[disabled],
9845 fieldset[disabled] .notification_widget.warning,
9952 fieldset[disabled] .notification_widget.warning,
9846 .notification_widget.warning.disabled:hover,
9953 .notification_widget.warning.disabled:hover,
9847 .notification_widget.warning[disabled]:hover,
9954 .notification_widget.warning[disabled]:hover,
9848 fieldset[disabled] .notification_widget.warning:hover,
9955 fieldset[disabled] .notification_widget.warning:hover,
9849 .notification_widget.warning.disabled:focus,
9956 .notification_widget.warning.disabled:focus,
9850 .notification_widget.warning[disabled]:focus,
9957 .notification_widget.warning[disabled]:focus,
9851 fieldset[disabled] .notification_widget.warning:focus,
9958 fieldset[disabled] .notification_widget.warning:focus,
9852 .notification_widget.warning.disabled:active,
9959 .notification_widget.warning.disabled:active,
9853 .notification_widget.warning[disabled]:active,
9960 .notification_widget.warning[disabled]:active,
9854 fieldset[disabled] .notification_widget.warning:active,
9961 fieldset[disabled] .notification_widget.warning:active,
9855 .notification_widget.warning.disabled.active,
9962 .notification_widget.warning.disabled.active,
9856 .notification_widget.warning[disabled].active,
9963 .notification_widget.warning[disabled].active,
9857 fieldset[disabled] .notification_widget.warning.active {
9964 fieldset[disabled] .notification_widget.warning.active {
9858 background-color: #f0ad4e;
9965 background-color: #f0ad4e;
9859 border-color: #eea236;
9966 border-color: #eea236;
9860 }
9967 }
9861 .notification_widget.warning .badge {
9968 .notification_widget.warning .badge {
9862 color: #f0ad4e;
9969 color: #f0ad4e;
9863 background-color: #ffffff;
9970 background-color: #ffffff;
9864 }
9971 }
9865 .notification_widget.success {
9972 .notification_widget.success {
9866 color: #ffffff;
9973 color: #ffffff;
9867 background-color: #5cb85c;
9974 background-color: #5cb85c;
9868 border-color: #4cae4c;
9975 border-color: #4cae4c;
9869 }
9976 }
9870 .notification_widget.success:hover,
9977 .notification_widget.success:hover,
9871 .notification_widget.success:focus,
9978 .notification_widget.success:focus,
9872 .notification_widget.success:active,
9979 .notification_widget.success:active,
9873 .notification_widget.success.active,
9980 .notification_widget.success.active,
9874 .open .dropdown-toggle.notification_widget.success {
9981 .open .dropdown-toggle.notification_widget.success {
9875 color: #ffffff;
9982 color: #ffffff;
9876 background-color: #47a447;
9983 background-color: #47a447;
9877 border-color: #398439;
9984 border-color: #398439;
9878 }
9985 }
9879 .notification_widget.success:active,
9986 .notification_widget.success:active,
9880 .notification_widget.success.active,
9987 .notification_widget.success.active,
9881 .open .dropdown-toggle.notification_widget.success {
9988 .open .dropdown-toggle.notification_widget.success {
9882 background-image: none;
9989 background-image: none;
9883 }
9990 }
9884 .notification_widget.success.disabled,
9991 .notification_widget.success.disabled,
9885 .notification_widget.success[disabled],
9992 .notification_widget.success[disabled],
9886 fieldset[disabled] .notification_widget.success,
9993 fieldset[disabled] .notification_widget.success,
9887 .notification_widget.success.disabled:hover,
9994 .notification_widget.success.disabled:hover,
9888 .notification_widget.success[disabled]:hover,
9995 .notification_widget.success[disabled]:hover,
9889 fieldset[disabled] .notification_widget.success:hover,
9996 fieldset[disabled] .notification_widget.success:hover,
9890 .notification_widget.success.disabled:focus,
9997 .notification_widget.success.disabled:focus,
9891 .notification_widget.success[disabled]:focus,
9998 .notification_widget.success[disabled]:focus,
9892 fieldset[disabled] .notification_widget.success:focus,
9999 fieldset[disabled] .notification_widget.success:focus,
9893 .notification_widget.success.disabled:active,
10000 .notification_widget.success.disabled:active,
9894 .notification_widget.success[disabled]:active,
10001 .notification_widget.success[disabled]:active,
9895 fieldset[disabled] .notification_widget.success:active,
10002 fieldset[disabled] .notification_widget.success:active,
9896 .notification_widget.success.disabled.active,
10003 .notification_widget.success.disabled.active,
9897 .notification_widget.success[disabled].active,
10004 .notification_widget.success[disabled].active,
9898 fieldset[disabled] .notification_widget.success.active {
10005 fieldset[disabled] .notification_widget.success.active {
9899 background-color: #5cb85c;
10006 background-color: #5cb85c;
9900 border-color: #4cae4c;
10007 border-color: #4cae4c;
9901 }
10008 }
9902 .notification_widget.success .badge {
10009 .notification_widget.success .badge {
9903 color: #5cb85c;
10010 color: #5cb85c;
9904 background-color: #ffffff;
10011 background-color: #ffffff;
9905 }
10012 }
9906 .notification_widget.info {
10013 .notification_widget.info {
9907 color: #ffffff;
10014 color: #ffffff;
9908 background-color: #5bc0de;
10015 background-color: #5bc0de;
9909 border-color: #46b8da;
10016 border-color: #46b8da;
9910 }
10017 }
9911 .notification_widget.info:hover,
10018 .notification_widget.info:hover,
9912 .notification_widget.info:focus,
10019 .notification_widget.info:focus,
9913 .notification_widget.info:active,
10020 .notification_widget.info:active,
9914 .notification_widget.info.active,
10021 .notification_widget.info.active,
9915 .open .dropdown-toggle.notification_widget.info {
10022 .open .dropdown-toggle.notification_widget.info {
9916 color: #ffffff;
10023 color: #ffffff;
9917 background-color: #39b3d7;
10024 background-color: #39b3d7;
9918 border-color: #269abc;
10025 border-color: #269abc;
9919 }
10026 }
9920 .notification_widget.info:active,
10027 .notification_widget.info:active,
9921 .notification_widget.info.active,
10028 .notification_widget.info.active,
9922 .open .dropdown-toggle.notification_widget.info {
10029 .open .dropdown-toggle.notification_widget.info {
9923 background-image: none;
10030 background-image: none;
9924 }
10031 }
9925 .notification_widget.info.disabled,
10032 .notification_widget.info.disabled,
9926 .notification_widget.info[disabled],
10033 .notification_widget.info[disabled],
9927 fieldset[disabled] .notification_widget.info,
10034 fieldset[disabled] .notification_widget.info,
9928 .notification_widget.info.disabled:hover,
10035 .notification_widget.info.disabled:hover,
9929 .notification_widget.info[disabled]:hover,
10036 .notification_widget.info[disabled]:hover,
9930 fieldset[disabled] .notification_widget.info:hover,
10037 fieldset[disabled] .notification_widget.info:hover,
9931 .notification_widget.info.disabled:focus,
10038 .notification_widget.info.disabled:focus,
9932 .notification_widget.info[disabled]:focus,
10039 .notification_widget.info[disabled]:focus,
9933 fieldset[disabled] .notification_widget.info:focus,
10040 fieldset[disabled] .notification_widget.info:focus,
9934 .notification_widget.info.disabled:active,
10041 .notification_widget.info.disabled:active,
9935 .notification_widget.info[disabled]:active,
10042 .notification_widget.info[disabled]:active,
9936 fieldset[disabled] .notification_widget.info:active,
10043 fieldset[disabled] .notification_widget.info:active,
9937 .notification_widget.info.disabled.active,
10044 .notification_widget.info.disabled.active,
9938 .notification_widget.info[disabled].active,
10045 .notification_widget.info[disabled].active,
9939 fieldset[disabled] .notification_widget.info.active {
10046 fieldset[disabled] .notification_widget.info.active {
9940 background-color: #5bc0de;
10047 background-color: #5bc0de;
9941 border-color: #46b8da;
10048 border-color: #46b8da;
9942 }
10049 }
9943 .notification_widget.info .badge {
10050 .notification_widget.info .badge {
9944 color: #5bc0de;
10051 color: #5bc0de;
9945 background-color: #ffffff;
10052 background-color: #ffffff;
9946 }
10053 }
9947 .notification_widget.danger {
10054 .notification_widget.danger {
9948 color: #ffffff;
10055 color: #ffffff;
9949 background-color: #d9534f;
10056 background-color: #d9534f;
9950 border-color: #d43f3a;
10057 border-color: #d43f3a;
9951 }
10058 }
9952 .notification_widget.danger:hover,
10059 .notification_widget.danger:hover,
9953 .notification_widget.danger:focus,
10060 .notification_widget.danger:focus,
9954 .notification_widget.danger:active,
10061 .notification_widget.danger:active,
9955 .notification_widget.danger.active,
10062 .notification_widget.danger.active,
9956 .open .dropdown-toggle.notification_widget.danger {
10063 .open .dropdown-toggle.notification_widget.danger {
9957 color: #ffffff;
10064 color: #ffffff;
9958 background-color: #d2322d;
10065 background-color: #d2322d;
9959 border-color: #ac2925;
10066 border-color: #ac2925;
9960 }
10067 }
9961 .notification_widget.danger:active,
10068 .notification_widget.danger:active,
9962 .notification_widget.danger.active,
10069 .notification_widget.danger.active,
9963 .open .dropdown-toggle.notification_widget.danger {
10070 .open .dropdown-toggle.notification_widget.danger {
9964 background-image: none;
10071 background-image: none;
9965 }
10072 }
9966 .notification_widget.danger.disabled,
10073 .notification_widget.danger.disabled,
9967 .notification_widget.danger[disabled],
10074 .notification_widget.danger[disabled],
9968 fieldset[disabled] .notification_widget.danger,
10075 fieldset[disabled] .notification_widget.danger,
9969 .notification_widget.danger.disabled:hover,
10076 .notification_widget.danger.disabled:hover,
9970 .notification_widget.danger[disabled]:hover,
10077 .notification_widget.danger[disabled]:hover,
9971 fieldset[disabled] .notification_widget.danger:hover,
10078 fieldset[disabled] .notification_widget.danger:hover,
9972 .notification_widget.danger.disabled:focus,
10079 .notification_widget.danger.disabled:focus,
9973 .notification_widget.danger[disabled]:focus,
10080 .notification_widget.danger[disabled]:focus,
9974 fieldset[disabled] .notification_widget.danger:focus,
10081 fieldset[disabled] .notification_widget.danger:focus,
9975 .notification_widget.danger.disabled:active,
10082 .notification_widget.danger.disabled:active,
9976 .notification_widget.danger[disabled]:active,
10083 .notification_widget.danger[disabled]:active,
9977 fieldset[disabled] .notification_widget.danger:active,
10084 fieldset[disabled] .notification_widget.danger:active,
9978 .notification_widget.danger.disabled.active,
10085 .notification_widget.danger.disabled.active,
9979 .notification_widget.danger[disabled].active,
10086 .notification_widget.danger[disabled].active,
9980 fieldset[disabled] .notification_widget.danger.active {
10087 fieldset[disabled] .notification_widget.danger.active {
9981 background-color: #d9534f;
10088 background-color: #d9534f;
9982 border-color: #d43f3a;
10089 border-color: #d43f3a;
9983 }
10090 }
9984 .notification_widget.danger .badge {
10091 .notification_widget.danger .badge {
9985 color: #d9534f;
10092 color: #d9534f;
9986 background-color: #ffffff;
10093 background-color: #ffffff;
9987 }
10094 }
9988 div#pager_splitter {
10095 div#pager_splitter {
9989 height: 8px;
10096 height: 8px;
9990 }
10097 }
9991 #pager-container {
10098 #pager-container {
9992 position: relative;
10099 position: relative;
9993 padding: 15px 0px;
10100 padding: 15px 0px;
9994 }
10101 }
9995 div#pager {
10102 div#pager {
9996 font-size: 14px;
10103 font-size: 14px;
9997 line-height: 20px;
10104 line-height: 20px;
9998 overflow: auto;
10105 overflow: auto;
9999 display: none;
10106 display: none;
10000 }
10107 }
10001 div#pager pre {
10108 div#pager pre {
10002 line-height: 1.21429em;
10109 line-height: 1.21429em;
10003 color: #000000;
10110 color: #000000;
10004 background-color: #f7f7f7;
10111 background-color: #f7f7f7;
10005 padding: 0.4em;
10112 padding: 0.4em;
10006 }
10113 }
10007 .quickhelp {
10114 .quickhelp {
10008 /* Old browsers */
10115 /* Old browsers */
10009 display: -webkit-box;
10116 display: -webkit-box;
10010 -webkit-box-orient: horizontal;
10117 -webkit-box-orient: horizontal;
10011 -webkit-box-align: stretch;
10118 -webkit-box-align: stretch;
10012 display: -moz-box;
10119 display: -moz-box;
10013 -moz-box-orient: horizontal;
10120 -moz-box-orient: horizontal;
10014 -moz-box-align: stretch;
10121 -moz-box-align: stretch;
10015 display: box;
10122 display: box;
10016 box-orient: horizontal;
10123 box-orient: horizontal;
10017 box-align: stretch;
10124 box-align: stretch;
10018 /* Modern browsers */
10125 /* Modern browsers */
10019 display: flex;
10126 display: flex;
10020 flex-direction: row;
10127 flex-direction: row;
10021 align-items: stretch;
10128 align-items: stretch;
10022 /* Old browsers */
10129 /* Old browsers */
10023 -webkit-box-flex: 0;
10130 -webkit-box-flex: 0;
10024 -moz-box-flex: 0;
10131 -moz-box-flex: 0;
10025 box-flex: 0;
10132 box-flex: 0;
10026 /* Modern browsers */
10133 /* Modern browsers */
10027 flex: none;
10134 flex: none;
10028 }
10135 }
10029 .shortcut_key {
10136 .shortcut_key {
10030 display: inline-block;
10137 display: inline-block;
10031 width: 20ex;
10138 width: 20ex;
10032 text-align: right;
10139 text-align: right;
10033 font-family: monospace;
10140 font-family: monospace;
10034 }
10141 }
10035 .shortcut_descr {
10142 .shortcut_descr {
10036 display: inline-block;
10143 display: inline-block;
10037 /* Old browsers */
10144 /* Old browsers */
10038 -webkit-box-flex: 1;
10145 -webkit-box-flex: 1;
10039 -moz-box-flex: 1;
10146 -moz-box-flex: 1;
10040 box-flex: 1;
10147 box-flex: 1;
10041 /* Modern browsers */
10148 /* Modern browsers */
10042 flex: 1;
10149 flex: 1;
10043 }
10150 }
10044 span#save_widget {
10151 span#save_widget {
10045 padding: 0px 5px;
10152 padding: 0px 5px;
10046 margin-top: 12px;
10153 margin-top: 12px;
10047 }
10154 }
10048 span#checkpoint_status,
10155 span#checkpoint_status,
10049 span#autosave_status {
10156 span#autosave_status {
10050 font-size: small;
10157 font-size: small;
10051 }
10158 }
10052 @media (max-width: 767px) {
10159 @media (max-width: 767px) {
10053 span#save_widget {
10160 span#save_widget {
10054 font-size: small;
10161 font-size: small;
10055 }
10162 }
10056 span#checkpoint_status,
10163 span#checkpoint_status,
10057 span#autosave_status {
10164 span#autosave_status {
10058 font-size: x-small;
10165 font-size: x-small;
10059 }
10166 }
10060 }
10167 }
10061 @media (max-width: 767px) {
10168 @media (max-width: 767px) {
10062 span#checkpoint_status,
10169 span#checkpoint_status,
10063 span#autosave_status {
10170 span#autosave_status {
10064 display: none;
10171 display: none;
10065 }
10172 }
10066 }
10173 }
10067 @media (min-width: 768px) and (max-width: 979px) {
10174 @media (min-width: 768px) and (max-width: 979px) {
10068 span#checkpoint_status {
10175 span#checkpoint_status {
10069 display: none;
10176 display: none;
10070 }
10177 }
10071 span#autosave_status {
10178 span#autosave_status {
10072 font-size: x-small;
10179 font-size: x-small;
10073 }
10180 }
10074 }
10181 }
10075 .toolbar {
10182 .toolbar {
10076 padding: 0px;
10183 padding: 0px;
10077 margin-left: -5px;
10184 margin-left: -5px;
10078 margin-top: -5px;
10185 margin-top: -5px;
10079 }
10186 }
10080 .toolbar select,
10187 .toolbar select,
10081 .toolbar label {
10188 .toolbar label {
10082 width: auto;
10189 width: auto;
10083 vertical-align: middle;
10190 vertical-align: middle;
10084 margin-right: 2px;
10191 margin-right: 2px;
10085 margin-bottom: 0px;
10192 margin-bottom: 0px;
10086 display: inline;
10193 display: inline;
10087 font-size: 92%;
10194 font-size: 92%;
10088 margin-left: 0.3em;
10195 margin-left: 0.3em;
10089 margin-right: 0.3em;
10196 margin-right: 0.3em;
10090 padding: 0px;
10197 padding: 0px;
10091 padding-top: 3px;
10198 padding-top: 3px;
10092 }
10199 }
10093 .toolbar .btn {
10200 .toolbar .btn {
10094 padding: 2px 8px;
10201 padding: 2px 8px;
10095 }
10202 }
10096 .toolbar .btn-group {
10203 .toolbar .btn-group {
10097 margin-top: 0px;
10204 margin-top: 0px;
10098 margin-left: 5px;
10205 margin-left: 5px;
10099 }
10206 }
10100 #maintoolbar {
10207 #maintoolbar {
10101 margin-bottom: -3px;
10208 margin-bottom: -3px;
10102 margin-top: -8px;
10209 margin-top: -8px;
10103 border: 0px;
10210 border: 0px;
10104 min-height: 27px;
10211 min-height: 27px;
10105 margin-left: 32px;
10212 margin-left: 32px;
10106 padding-top: 6px;
10213 padding-top: 6px;
10107 padding-bottom: 8px;
10214 padding-bottom: 8px;
10108 }
10215 }
10109 #maintoolbar .navbar-text {
10216 #maintoolbar .navbar-text {
10110 float: none;
10217 float: none;
10111 vertical-align: middle;
10218 vertical-align: middle;
10112 text-align: right;
10219 text-align: right;
10113 margin-left: 5px;
10220 margin-left: 5px;
10114 margin-right: 0px;
10221 margin-right: 0px;
10115 margin-top: 0px;
10222 margin-top: 0px;
10116 }
10223 }
10117 #maintoolbar .toolbar {
10224 #maintoolbar .toolbar {
10118 margin-top: 0px;
10225 margin-top: 0px;
10119 }
10226 }
10120 .select-xs {
10227 .select-xs {
10121 height: 24px;
10228 height: 24px;
10122 }
10229 }
10123 /**
10230 /**
10124 * Primary styles
10231 * Primary styles
10125 *
10232 *
10126 * Author: IPython Development Team
10233 * Author: IPython Development Team
10127 */
10234 */
10128 /** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
10235 /** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
10129 * of chance of beeing generated from the ../less/[samename].less file, you can
10236 * of chance of beeing generated from the ../less/[samename].less file, you can
10130 * try to get back the less file by reverting somme commit in history
10237 * try to get back the less file by reverting somme commit in history
10131 **/
10238 **/
10132 /*
10239 /*
10133 * We'll try to get something pretty, so we
10240 * We'll try to get something pretty, so we
10134 * have some strange css to have the scroll bar on
10241 * have some strange css to have the scroll bar on
10135 * the left with fix button on the top right of the tooltip
10242 * the left with fix button on the top right of the tooltip
10136 */
10243 */
10137 @-moz-keyframes fadeOut {
10244 @-moz-keyframes fadeOut {
10138 from {
10245 from {
10139 opacity: 1;
10246 opacity: 1;
10140 }
10247 }
10141 to {
10248 to {
10142 opacity: 0;
10249 opacity: 0;
10143 }
10250 }
10144 }
10251 }
10145 @-webkit-keyframes fadeOut {
10252 @-webkit-keyframes fadeOut {
10146 from {
10253 from {
10147 opacity: 1;
10254 opacity: 1;
10148 }
10255 }
10149 to {
10256 to {
10150 opacity: 0;
10257 opacity: 0;
10151 }
10258 }
10152 }
10259 }
10153 @-moz-keyframes fadeIn {
10260 @-moz-keyframes fadeIn {
10154 from {
10261 from {
10155 opacity: 0;
10262 opacity: 0;
10156 }
10263 }
10157 to {
10264 to {
10158 opacity: 1;
10265 opacity: 1;
10159 }
10266 }
10160 }
10267 }
10161 @-webkit-keyframes fadeIn {
10268 @-webkit-keyframes fadeIn {
10162 from {
10269 from {
10163 opacity: 0;
10270 opacity: 0;
10164 }
10271 }
10165 to {
10272 to {
10166 opacity: 1;
10273 opacity: 1;
10167 }
10274 }
10168 }
10275 }
10169 /*properties of tooltip after "expand"*/
10276 /*properties of tooltip after "expand"*/
10170 .bigtooltip {
10277 .bigtooltip {
10171 overflow: auto;
10278 overflow: auto;
10172 height: 200px;
10279 height: 200px;
10173 -webkit-transition-property: height;
10280 -webkit-transition-property: height;
10174 -webkit-transition-duration: 500ms;
10281 -webkit-transition-duration: 500ms;
10175 -moz-transition-property: height;
10282 -moz-transition-property: height;
10176 -moz-transition-duration: 500ms;
10283 -moz-transition-duration: 500ms;
10177 transition-property: height;
10284 transition-property: height;
10178 transition-duration: 500ms;
10285 transition-duration: 500ms;
10179 }
10286 }
10180 /*properties of tooltip before "expand"*/
10287 /*properties of tooltip before "expand"*/
10181 .smalltooltip {
10288 .smalltooltip {
10182 -webkit-transition-property: height;
10289 -webkit-transition-property: height;
10183 -webkit-transition-duration: 500ms;
10290 -webkit-transition-duration: 500ms;
10184 -moz-transition-property: height;
10291 -moz-transition-property: height;
10185 -moz-transition-duration: 500ms;
10292 -moz-transition-duration: 500ms;
10186 transition-property: height;
10293 transition-property: height;
10187 transition-duration: 500ms;
10294 transition-duration: 500ms;
10188 text-overflow: ellipsis;
10295 text-overflow: ellipsis;
10189 overflow: hidden;
10296 overflow: hidden;
10190 height: 80px;
10297 height: 80px;
10191 }
10298 }
10192 .tooltipbuttons {
10299 .tooltipbuttons {
10193 position: absolute;
10300 position: absolute;
10194 padding-right: 15px;
10301 padding-right: 15px;
10195 top: 0px;
10302 top: 0px;
10196 right: 0px;
10303 right: 0px;
10197 }
10304 }
10198 .tooltiptext {
10305 .tooltiptext {
10199 /*avoid the button to overlap on some docstring*/
10306 /*avoid the button to overlap on some docstring*/
10200 padding-right: 30px;
10307 padding-right: 30px;
10201 }
10308 }
10202 .ipython_tooltip {
10309 .ipython_tooltip {
10203 max-width: 700px;
10310 max-width: 700px;
10204 /*fade-in animation when inserted*/
10311 /*fade-in animation when inserted*/
10205 -webkit-animation: fadeOut 400ms;
10312 -webkit-animation: fadeOut 400ms;
10206 -moz-animation: fadeOut 400ms;
10313 -moz-animation: fadeOut 400ms;
10207 animation: fadeOut 400ms;
10314 animation: fadeOut 400ms;
10208 -webkit-animation: fadeIn 400ms;
10315 -webkit-animation: fadeIn 400ms;
10209 -moz-animation: fadeIn 400ms;
10316 -moz-animation: fadeIn 400ms;
10210 animation: fadeIn 400ms;
10317 animation: fadeIn 400ms;
10211 vertical-align: middle;
10318 vertical-align: middle;
10212 background-color: #f7f7f7;
10319 background-color: #f7f7f7;
10213 overflow: visible;
10320 overflow: visible;
10214 border: #ababab 1px solid;
10321 border: #ababab 1px solid;
10215 outline: none;
10322 outline: none;
10216 padding: 3px;
10323 padding: 3px;
10217 margin: 0px;
10324 margin: 0px;
10218 padding-left: 7px;
10325 padding-left: 7px;
10219 font-family: monospace;
10326 font-family: monospace;
10220 min-height: 50px;
10327 min-height: 50px;
10221 -moz-box-shadow: 0px 6px 10px -1px #adadad;
10328 -moz-box-shadow: 0px 6px 10px -1px #adadad;
10222 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
10329 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
10223 box-shadow: 0px 6px 10px -1px #adadad;
10330 box-shadow: 0px 6px 10px -1px #adadad;
10224 border-radius: 4px;
10331 border-radius: 4px;
10225 position: absolute;
10332 position: absolute;
10226 z-index: 1000;
10333 z-index: 1000;
10227 }
10334 }
10228 .ipython_tooltip a {
10335 .ipython_tooltip a {
10229 float: right;
10336 float: right;
10230 }
10337 }
10231 .ipython_tooltip .tooltiptext pre {
10338 .ipython_tooltip .tooltiptext pre {
10232 border: 0;
10339 border: 0;
10233 -webkit-border-radius: 0;
10234 -moz-border-radius: 0;
10235 border-radius: 0;
10340 border-radius: 0;
10236 font-size: 100%;
10341 font-size: 100%;
10237 background-color: #f7f7f7;
10342 background-color: #f7f7f7;
10238 }
10343 }
10239 .pretooltiparrow {
10344 .pretooltiparrow {
10240 left: 0px;
10345 left: 0px;
10241 margin: 0px;
10346 margin: 0px;
10242 top: -16px;
10347 top: -16px;
10243 width: 40px;
10348 width: 40px;
10244 height: 16px;
10349 height: 16px;
10245 overflow: hidden;
10350 overflow: hidden;
10246 position: absolute;
10351 position: absolute;
10247 }
10352 }
10248 .pretooltiparrow:before {
10353 .pretooltiparrow:before {
10249 background-color: #f7f7f7;
10354 background-color: #f7f7f7;
10250 border: 1px #ababab solid;
10355 border: 1px #ababab solid;
10251 z-index: 11;
10356 z-index: 11;
10252 content: "";
10357 content: "";
10253 position: absolute;
10358 position: absolute;
10254 left: 15px;
10359 left: 15px;
10255 top: 10px;
10360 top: 10px;
10256 width: 25px;
10361 width: 25px;
10257 height: 25px;
10362 height: 25px;
10258 -webkit-transform: rotate(45deg);
10363 -webkit-transform: rotate(45deg);
10259 -moz-transform: rotate(45deg);
10364 -moz-transform: rotate(45deg);
10260 -ms-transform: rotate(45deg);
10365 -ms-transform: rotate(45deg);
10261 -o-transform: rotate(45deg);
10366 -o-transform: rotate(45deg);
10262 }
10367 }
10263 /*# sourceMappingURL=../style/style.min.css.map */ No newline at end of file
10368 /*# sourceMappingURL=../style/style.min.css.map */
@@ -1,149 +1,149
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: 4px;
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 }
106 }
107
107
108 .toolbar_info {
108 .toolbar_info {
109 height: @btn_small_height;
109 height: @btn_small_height;
110 line-height: @btn_small_height;
110 line-height: @btn_small_height;
111 }
111 }
112
112
113 input.nbname_input, input.engine_num_input {
113 input.nbname_input, input.engine_num_input {
114 // These settings give these inputs a height that matches @btn_mini_height = 22
114 // These settings give these inputs a height that matches @btn_mini_height = 22
115 padding-top: 3px;
115 padding-top: 3px;
116 padding-bottom: 3px;
116 padding-bottom: 3px;
117 height: @btn_mini_height;
117 height: @btn_mini_height;
118 line-height: 14px;
118 line-height: 14px;
119 margin: 0px;
119 margin: 0px;
120 }
120 }
121
121
122 input.engine_num_input {
122 input.engine_num_input {
123 width: 60px;
123 width: 60px;
124 }
124 }
125
125
126 .highlight_text {
126 .highlight_text {
127 color: blue;
127 color: blue;
128 }
128 }
129
129
130 #project_name > .breadcrumb {
130 #project_name > .breadcrumb {
131 padding: 0px;
131 padding: 0px;
132 margin-bottom: 0px;
132 margin-bottom: 0px;
133 background-color: transparent;
133 background-color: transparent;
134 font-weight: bold;
134 font-weight: bold;
135
135
136 }
136 }
137
137
138 .tab-content .row {
138 .tab-content .row {
139 margin-left: 0px;
139 margin-left: 0px;
140 margin-right: 0px;
140 margin-right: 0px;
141 }
141 }
142
142
143 .folder_icon:before {
143 .folder_icon:before {
144 .icon(@folder-close-alt)
144 .icon(@fa-var-folder-o)
145 }
145 }
146
146
147 .notebook_icon:before {
147 .notebook_icon:before {
148 .icon(@book)
148 .icon(@fa-var-book)
149 }
149 }
@@ -1,292 +1,292
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 "widgets/js/widget",
5 "widgets/js/widget",
6 "jqueryui",
6 "jqueryui",
7 "bootstrap",
7 "bootstrap",
8 ], function(widget, $){
8 ], function(widget, $){
9
9
10 var ContainerView = widget.DOMWidgetView.extend({
10 var ContainerView = widget.DOMWidgetView.extend({
11 render: function(){
11 render: function(){
12 // Called when view is rendered.
12 // Called when view is rendered.
13 this.$el.addClass('widget-container')
13 this.$el.addClass('widget-container')
14 .addClass('vbox');
14 .addClass('vbox');
15 this.update_children([], this.model.get('children'));
15 this.update_children([], this.model.get('children'));
16 this.model.on('change:children', function(model, value, options) {
16 this.model.on('change:children', function(model, value, options) {
17 this.update_children(model.previous('children'), value);
17 this.update_children(model.previous('children'), value);
18 }, this);
18 }, this);
19 this.update();
19 this.update();
20 },
20 },
21
21
22 update_children: function(old_list, new_list) {
22 update_children: function(old_list, new_list) {
23 // Called when the children list changes.
23 // Called when the children list changes.
24 this.do_diff(old_list,
24 this.do_diff(old_list,
25 new_list,
25 new_list,
26 $.proxy(this.remove_child_model, this),
26 $.proxy(this.remove_child_model, this),
27 $.proxy(this.add_child_model, this));
27 $.proxy(this.add_child_model, this));
28 },
28 },
29
29
30 remove_child_model: function(model) {
30 remove_child_model: function(model) {
31 // Called when a model is removed from the children list.
31 // Called when a model is removed from the children list.
32 this.pop_child_view(model).remove();
32 this.pop_child_view(model).remove();
33 },
33 },
34
34
35 add_child_model: function(model) {
35 add_child_model: function(model) {
36 // Called when a model is added to the children list.
36 // Called when a model is added to the children list.
37 var view = this.create_child_view(model);
37 var view = this.create_child_view(model);
38 this.$el.append(view.$el);
38 this.$el.append(view.$el);
39
39
40 // Trigger the displayed event once this view is displayed.
40 // Trigger the displayed event once this view is displayed.
41 this.after_displayed(function() {
41 this.after_displayed(function() {
42 view.trigger('displayed');
42 view.trigger('displayed');
43 });
43 });
44 },
44 },
45
45
46 update: function(){
46 update: function(){
47 // Update the contents of this view
47 // Update the contents of this view
48 //
48 //
49 // Called when the model is changed. The model may have been
49 // Called when the model is changed. The model may have been
50 // changed by another view or by a state update from the back-end.
50 // changed by another view or by a state update from the back-end.
51 return ContainerView.__super__.update.apply(this);
51 return ContainerView.__super__.update.apply(this);
52 },
52 },
53 });
53 });
54
54
55
55
56 var PopupView = widget.DOMWidgetView.extend({
56 var PopupView = widget.DOMWidgetView.extend({
57 render: function(){
57 render: function(){
58 // Called when view is rendered.
58 // Called when view is rendered.
59 var that = this;
59 var that = this;
60
60
61 this.$el.on("remove", function(){
61 this.$el.on("remove", function(){
62 that.$backdrop.remove();
62 that.$backdrop.remove();
63 });
63 });
64 this.$backdrop = $('<div />')
64 this.$backdrop = $('<div />')
65 .appendTo($('#notebook-container'))
65 .appendTo($('#notebook-container'))
66 .addClass('modal-dialog')
66 .addClass('modal-dialog')
67 .css('position', 'absolute')
67 .css('position', 'absolute')
68 .css('left', '0px')
68 .css('left', '0px')
69 .css('top', '0px');
69 .css('top', '0px');
70 this.$window = $('<div />')
70 this.$window = $('<div />')
71 .appendTo(this.$backdrop)
71 .appendTo(this.$backdrop)
72 .addClass('modal-content widget-modal')
72 .addClass('modal-content widget-modal')
73 .mousedown(function(){
73 .mousedown(function(){
74 that.bring_to_front();
74 that.bring_to_front();
75 });
75 });
76
76
77 // Set the elements array since the this.$window element is not child
77 // Set the elements array since the this.$window element is not child
78 // of this.$el and the parent widget manager or other widgets may
78 // of this.$el and the parent widget manager or other widgets may
79 // need to know about all of the top-level widgets. The IPython
79 // need to know about all of the top-level widgets. The IPython
80 // widget manager uses this to register the elements with the
80 // widget manager uses this to register the elements with the
81 // keyboard manager.
81 // keyboard manager.
82 this.additional_elements = [this.$window];
82 this.additional_elements = [this.$window];
83
83
84 this.$title_bar = $('<div />')
84 this.$title_bar = $('<div />')
85 .addClass('popover-title')
85 .addClass('popover-title')
86 .appendTo(this.$window)
86 .appendTo(this.$window)
87 .mousedown(function(){
87 .mousedown(function(){
88 that.bring_to_front();
88 that.bring_to_front();
89 });
89 });
90 this.$close = $('<button />')
90 this.$close = $('<button />')
91 .addClass('close icon-remove')
91 .addClass('close fa fa-remove')
92 .css('margin-left', '5px')
92 .css('margin-left', '5px')
93 .appendTo(this.$title_bar)
93 .appendTo(this.$title_bar)
94 .click(function(){
94 .click(function(){
95 that.hide();
95 that.hide();
96 event.stopPropagation();
96 event.stopPropagation();
97 });
97 });
98 this.$minimize = $('<button />')
98 this.$minimize = $('<button />')
99 .addClass('close icon-arrow-down')
99 .addClass('close fa fa-arrow-down')
100 .appendTo(this.$title_bar)
100 .appendTo(this.$title_bar)
101 .click(function(){
101 .click(function(){
102 that.popped_out = !that.popped_out;
102 that.popped_out = !that.popped_out;
103 if (!that.popped_out) {
103 if (!that.popped_out) {
104 that.$minimize
104 that.$minimize
105 .removeClass('icon-arrow-down')
105 .removeClass('fa fa-arrow-down')
106 .addClass('icon-arrow-up');
106 .addClass('fa fa-arrow-up');
107
107
108 that.$window
108 that.$window
109 .draggable('destroy')
109 .draggable('destroy')
110 .resizable('destroy')
110 .resizable('destroy')
111 .removeClass('widget-modal modal-content')
111 .removeClass('widget-modal modal-content')
112 .addClass('docked-widget-modal')
112 .addClass('docked-widget-modal')
113 .detach()
113 .detach()
114 .insertBefore(that.$show_button);
114 .insertBefore(that.$show_button);
115 that.$show_button.hide();
115 that.$show_button.hide();
116 that.$close.hide();
116 that.$close.hide();
117 } else {
117 } else {
118 that.$minimize
118 that.$minimize
119 .addClass('icon-arrow-down')
119 .addClass('fa fa-arrow-down')
120 .removeClass('icon-arrow-up');
120 .removeClass('fa fa-arrow-up');
121
121
122 that.$window
122 that.$window
123 .removeClass('docked-widget-modal')
123 .removeClass('docked-widget-modal')
124 .addClass('widget-modal modal-content')
124 .addClass('widget-modal modal-content')
125 .detach()
125 .detach()
126 .appendTo(that.$backdrop)
126 .appendTo(that.$backdrop)
127 .draggable({handle: '.popover-title', snap: '#notebook, .modal', snapMode: 'both'})
127 .draggable({handle: '.popover-title', snap: '#notebook, .modal', snapMode: 'both'})
128 .resizable()
128 .resizable()
129 .children('.ui-resizable-handle').show();
129 .children('.ui-resizable-handle').show();
130 that.show();
130 that.show();
131 that.$show_button.show();
131 that.$show_button.show();
132 that.$close.show();
132 that.$close.show();
133 }
133 }
134 event.stopPropagation();
134 event.stopPropagation();
135 });
135 });
136 this.$title = $('<div />')
136 this.$title = $('<div />')
137 .addClass('widget-modal-title')
137 .addClass('widget-modal-title')
138 .html("&nbsp;")
138 .html("&nbsp;")
139 .appendTo(this.$title_bar);
139 .appendTo(this.$title_bar);
140 this.$body = $('<div />')
140 this.$body = $('<div />')
141 .addClass('modal-body')
141 .addClass('modal-body')
142 .addClass('widget-modal-body')
142 .addClass('widget-modal-body')
143 .addClass('widget-container')
143 .addClass('widget-container')
144 .addClass('vbox')
144 .addClass('vbox')
145 .appendTo(this.$window);
145 .appendTo(this.$window);
146
146
147 this.$show_button = $('<button />')
147 this.$show_button = $('<button />')
148 .html("&nbsp;")
148 .html("&nbsp;")
149 .addClass('btn btn-info widget-modal-show')
149 .addClass('btn btn-info widget-modal-show')
150 .appendTo(this.$el)
150 .appendTo(this.$el)
151 .click(function(){
151 .click(function(){
152 that.show();
152 that.show();
153 });
153 });
154
154
155 this.$window.draggable({handle: '.popover-title', snap: '#notebook, .modal', snapMode: 'both'});
155 this.$window.draggable({handle: '.popover-title', snap: '#notebook, .modal', snapMode: 'both'});
156 this.$window.resizable();
156 this.$window.resizable();
157 this.$window.on('resize', function(){
157 this.$window.on('resize', function(){
158 that.$body.outerHeight(that.$window.innerHeight() - that.$title_bar.outerHeight());
158 that.$body.outerHeight(that.$window.innerHeight() - that.$title_bar.outerHeight());
159 });
159 });
160
160
161 this.$el_to_style = this.$body;
161 this.$el_to_style = this.$body;
162 this._shown_once = false;
162 this._shown_once = false;
163 this.popped_out = true;
163 this.popped_out = true;
164
164
165 this.update_children([], this.model.get('children'));
165 this.update_children([], this.model.get('children'));
166 this.model.on('change:children', function(model, value, options) {
166 this.model.on('change:children', function(model, value, options) {
167 this.update_children(model.previous('children'), value);
167 this.update_children(model.previous('children'), value);
168 }, this);
168 }, this);
169 this.update();
169 this.update();
170 },
170 },
171
171
172 hide: function() {
172 hide: function() {
173 // Called when the modal hide button is clicked.
173 // Called when the modal hide button is clicked.
174 this.$window.hide();
174 this.$window.hide();
175 this.$show_button.removeClass('btn-info');
175 this.$show_button.removeClass('btn-info');
176 },
176 },
177
177
178 show: function() {
178 show: function() {
179 // Called when the modal show button is clicked.
179 // Called when the modal show button is clicked.
180 this.$show_button.addClass('btn-info');
180 this.$show_button.addClass('btn-info');
181 this.$window.show();
181 this.$window.show();
182 if (this.popped_out) {
182 if (this.popped_out) {
183 this.$window.css("positon", "absolute");
183 this.$window.css("positon", "absolute");
184 this.$window.css("top", "0px");
184 this.$window.css("top", "0px");
185 this.$window.css("left", Math.max(0, (($('body').outerWidth() - this.$window.outerWidth()) / 2) +
185 this.$window.css("left", Math.max(0, (($('body').outerWidth() - this.$window.outerWidth()) / 2) +
186 $(window).scrollLeft()) + "px");
186 $(window).scrollLeft()) + "px");
187 this.bring_to_front();
187 this.bring_to_front();
188 }
188 }
189 },
189 },
190
190
191 bring_to_front: function() {
191 bring_to_front: function() {
192 // Make the modal top-most, z-ordered about the other modals.
192 // Make the modal top-most, z-ordered about the other modals.
193 var $widget_modals = $(".widget-modal");
193 var $widget_modals = $(".widget-modal");
194 var max_zindex = 0;
194 var max_zindex = 0;
195 $widget_modals.each(function (index, el){
195 $widget_modals.each(function (index, el){
196 var zindex = parseInt($(el).css('z-index'));
196 var zindex = parseInt($(el).css('z-index'));
197 if (!isNaN(zindex)) {
197 if (!isNaN(zindex)) {
198 max_zindex = Math.max(max_zindex, zindex);
198 max_zindex = Math.max(max_zindex, zindex);
199 }
199 }
200 });
200 });
201
201
202 // Start z-index of widget modals at 2000
202 // Start z-index of widget modals at 2000
203 max_zindex = Math.max(max_zindex, 2000);
203 max_zindex = Math.max(max_zindex, 2000);
204
204
205 $widget_modals.each(function (index, el){
205 $widget_modals.each(function (index, el){
206 $el = $(el);
206 $el = $(el);
207 if (max_zindex == parseInt($el.css('z-index'))) {
207 if (max_zindex == parseInt($el.css('z-index'))) {
208 $el.css('z-index', max_zindex - 1);
208 $el.css('z-index', max_zindex - 1);
209 }
209 }
210 });
210 });
211 this.$window.css('z-index', max_zindex);
211 this.$window.css('z-index', max_zindex);
212 },
212 },
213
213
214 update_children: function(old_list, new_list) {
214 update_children: function(old_list, new_list) {
215 // Called when the children list is modified.
215 // Called when the children list is modified.
216 this.do_diff(old_list,
216 this.do_diff(old_list,
217 new_list,
217 new_list,
218 $.proxy(this.remove_child_model, this),
218 $.proxy(this.remove_child_model, this),
219 $.proxy(this.add_child_model, this));
219 $.proxy(this.add_child_model, this));
220 },
220 },
221
221
222 remove_child_model: function(model) {
222 remove_child_model: function(model) {
223 // Called when a child is removed from children list.
223 // Called when a child is removed from children list.
224 this.pop_child_view(model).remove();
224 this.pop_child_view(model).remove();
225 },
225 },
226
226
227 add_child_model: function(model) {
227 add_child_model: function(model) {
228 // Called when a child is added to children list.
228 // Called when a child is added to children list.
229 var view = this.create_child_view(model);
229 var view = this.create_child_view(model);
230 this.$body.append(view.$el);
230 this.$body.append(view.$el);
231
231
232 // Trigger the displayed event once this view is displayed.
232 // Trigger the displayed event once this view is displayed.
233 this.after_displayed(function() {
233 this.after_displayed(function() {
234 view.trigger('displayed');
234 view.trigger('displayed');
235 });
235 });
236 },
236 },
237
237
238 update: function(){
238 update: function(){
239 // Update the contents of this view
239 // Update the contents of this view
240 //
240 //
241 // Called when the model is changed. The model may have been
241 // Called when the model is changed. The model may have been
242 // changed by another view or by a state update from the back-end.
242 // changed by another view or by a state update from the back-end.
243 var description = this.model.get('description');
243 var description = this.model.get('description');
244 if (description.trim().length === 0) {
244 if (description.trim().length === 0) {
245 this.$title.html("&nbsp;"); // Preserve title height
245 this.$title.html("&nbsp;"); // Preserve title height
246 } else {
246 } else {
247 this.$title.text(description);
247 this.$title.text(description);
248 MathJax.Hub.Queue(["Typeset",MathJax.Hub,this.$title.get(0)]);
248 MathJax.Hub.Queue(["Typeset",MathJax.Hub,this.$title.get(0)]);
249 }
249 }
250
250
251 var button_text = this.model.get('button_text');
251 var button_text = this.model.get('button_text');
252 if (button_text.trim().length === 0) {
252 if (button_text.trim().length === 0) {
253 this.$show_button.html("&nbsp;"); // Preserve button height
253 this.$show_button.html("&nbsp;"); // Preserve button height
254 } else {
254 } else {
255 this.$show_button.text(button_text);
255 this.$show_button.text(button_text);
256 }
256 }
257
257
258 if (!this._shown_once) {
258 if (!this._shown_once) {
259 this._shown_once = true;
259 this._shown_once = true;
260 this.show();
260 this.show();
261 }
261 }
262
262
263 return PopupView.__super__.update.apply(this);
263 return PopupView.__super__.update.apply(this);
264 },
264 },
265
265
266 _get_selector_element: function(selector) {
266 _get_selector_element: function(selector) {
267 // Get an element view a 'special' jquery selector. (see widget.js)
267 // Get an element view a 'special' jquery selector. (see widget.js)
268 //
268 //
269 // Since the modal actually isn't within the $el in the DOM, we need to extend
269 // Since the modal actually isn't within the $el in the DOM, we need to extend
270 // the selector logic to allow the user to set css on the modal if need be.
270 // the selector logic to allow the user to set css on the modal if need be.
271 // The convention used is:
271 // The convention used is:
272 // "modal" - select the modal div
272 // "modal" - select the modal div
273 // "modal [selector]" - select element(s) within the modal div.
273 // "modal [selector]" - select element(s) within the modal div.
274 // "[selector]" - select elements within $el
274 // "[selector]" - select elements within $el
275 // "" - select the $el_to_style
275 // "" - select the $el_to_style
276 if (selector.substring(0, 5) == 'modal') {
276 if (selector.substring(0, 5) == 'modal') {
277 if (selector == 'modal') {
277 if (selector == 'modal') {
278 return this.$window;
278 return this.$window;
279 } else {
279 } else {
280 return this.$window.find(selector.substring(6));
280 return this.$window.find(selector.substring(6));
281 }
281 }
282 } else {
282 } else {
283 return PopupView.__super__._get_selector_element.apply(this, [selector]);
283 return PopupView.__super__._get_selector_element.apply(this, [selector]);
284 }
284 }
285 },
285 },
286 });
286 });
287
287
288 return {
288 return {
289 'ContainerView': ContainerView,
289 'ContainerView': ContainerView,
290 'PopupView': PopupView,
290 'PopupView': PopupView,
291 };
291 };
292 });
292 });
@@ -1,336 +1,336
1 {% extends "page.html" %}
1 {% extends "page.html" %}
2
2
3 {% block stylesheet %}
3 {% block stylesheet %}
4
4
5 {% if mathjax_url %}
5 {% if mathjax_url %}
6 <script type="text/javascript" src="{{mathjax_url}}?config=TeX-AMS_HTML-full&delayStartupUntil=configured" charset="utf-8"></script>
6 <script type="text/javascript" src="{{mathjax_url}}?config=TeX-AMS_HTML-full&delayStartupUntil=configured" charset="utf-8"></script>
7 {% endif %}
7 {% endif %}
8 <script type="text/javascript">
8 <script type="text/javascript">
9 // MathJax disabled, set as null to distingish from *missing* MathJax,
9 // MathJax disabled, set as null to distingish from *missing* MathJax,
10 // where it will be undefined, and should prompt a dialog later.
10 // where it will be undefined, and should prompt a dialog later.
11 window.mathjax_url = "{{mathjax_url}}";
11 window.mathjax_url = "{{mathjax_url}}";
12 </script>
12 </script>
13
13
14 <link rel="stylesheet" href="{{ static_url("components/bootstrap-tour/build/css/bootstrap-tour.min.css") }}" type="text/css" />
14 <link rel="stylesheet" href="{{ static_url("components/bootstrap-tour/build/css/bootstrap-tour.min.css") }}" type="text/css" />
15 <link rel="stylesheet" href="{{ static_url("components/codemirror/lib/codemirror.css") }}">
15 <link rel="stylesheet" href="{{ static_url("components/codemirror/lib/codemirror.css") }}">
16
16
17 {{super()}}
17 {{super()}}
18
18
19 <link rel="stylesheet" href="{{ static_url("notebook/css/override.css") }}" type="text/css" />
19 <link rel="stylesheet" href="{{ static_url("notebook/css/override.css") }}" type="text/css" />
20
20
21 {% endblock %}
21 {% endblock %}
22
22
23 {% block params %}
23 {% block params %}
24
24
25 data-project="{{project}}"
25 data-project="{{project}}"
26 data-base-url="{{base_url}}"
26 data-base-url="{{base_url}}"
27 data-ws-url="{{ws_url}}"
27 data-ws-url="{{ws_url}}"
28 data-notebook-name="{{notebook_name}}"
28 data-notebook-name="{{notebook_name}}"
29 data-notebook-path="{{notebook_path}}"
29 data-notebook-path="{{notebook_path}}"
30 class="notebook_app"
30 class="notebook_app"
31
31
32 {% endblock %}
32 {% endblock %}
33
33
34
34
35 {% block header %}
35 {% block header %}
36
36
37
37
38 <span id="save_widget" class="nav pull-left">
38 <span id="save_widget" class="nav pull-left">
39 <span id="notebook_name"></span>
39 <span id="notebook_name"></span>
40 <span id="checkpoint_status"></span>
40 <span id="checkpoint_status"></span>
41 <span id="autosave_status"></span>
41 <span id="autosave_status"></span>
42 </span>
42 </span>
43
43
44 <span id="kernel_selector_widget" class="pull-right dropdown">
44 <span id="kernel_selector_widget" class="pull-right dropdown">
45 <button href="#" class="dropdown-toggle" data-toggle="dropdown" type='button' id="current_kernel_spec">
45 <button href="#" class="dropdown-toggle" data-toggle="dropdown" type='button' id="current_kernel_spec">
46 <span class='kernel_name'>Python</span>
46 <span class='kernel_name'>Python</span>
47 <span class="caret"></span>
47 <span class="caret"></span>
48 </button>
48 </button>
49 <ul id="kernel_selector" class="dropdown-menu">
49 <ul id="kernel_selector" class="dropdown-menu">
50 </ul>
50 </ul>
51 </span>
51 </span>
52
52
53 {% endblock %}
53 {% endblock %}
54
54
55
55
56 {% block site %}
56 {% block site %}
57
57
58 <div id="menubar-container" class="container">
58 <div id="menubar-container" class="container">
59 <div id="menubar">
59 <div id="menubar">
60 <div id="menus" class="navbar navbar-default" role="navigation">
60 <div id="menus" class="navbar navbar-default" role="navigation">
61 <div class="container-fluid">
61 <div class="container-fluid">
62 <ul class="nav navbar-nav">
62 <ul class="nav navbar-nav">
63 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">File</a>
63 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">File</a>
64 <ul id="file_menu" class="dropdown-menu">
64 <ul id="file_menu" class="dropdown-menu">
65 <li id="new_notebook"
65 <li id="new_notebook"
66 title="Make a new notebook (Opens a new window)">
66 title="Make a new notebook (Opens a new window)">
67 <a href="#">New</a></li>
67 <a href="#">New</a></li>
68 <li id="open_notebook"
68 <li id="open_notebook"
69 title="Opens a new window with the Dashboard view">
69 title="Opens a new window with the Dashboard view">
70 <a href="#">Open...</a></li>
70 <a href="#">Open...</a></li>
71 <!-- <hr/> -->
71 <!-- <hr/> -->
72 <li class="divider"></li>
72 <li class="divider"></li>
73 <li id="copy_notebook"
73 <li id="copy_notebook"
74 title="Open a copy of this notebook's contents and start a new kernel">
74 title="Open a copy of this notebook's contents and start a new kernel">
75 <a href="#">Make a Copy...</a></li>
75 <a href="#">Make a Copy...</a></li>
76 <li id="rename_notebook"><a href="#">Rename...</a></li>
76 <li id="rename_notebook"><a href="#">Rename...</a></li>
77 <li id="save_checkpoint"><a href="#">Save and Checkpoint</a></li>
77 <li id="save_checkpoint"><a href="#">Save and Checkpoint</a></li>
78 <!-- <hr/> -->
78 <!-- <hr/> -->
79 <li class="divider"></li>
79 <li class="divider"></li>
80 <li id="restore_checkpoint" class="dropdown-submenu"><a href="#">Revert to Checkpoint</a>
80 <li id="restore_checkpoint" class="dropdown-submenu"><a href="#">Revert to Checkpoint</a>
81 <ul class="dropdown-menu">
81 <ul class="dropdown-menu">
82 <li><a href="#"></a></li>
82 <li><a href="#"></a></li>
83 <li><a href="#"></a></li>
83 <li><a href="#"></a></li>
84 <li><a href="#"></a></li>
84 <li><a href="#"></a></li>
85 <li><a href="#"></a></li>
85 <li><a href="#"></a></li>
86 <li><a href="#"></a></li>
86 <li><a href="#"></a></li>
87 </ul>
87 </ul>
88 </li>
88 </li>
89 <li class="divider"></li>
89 <li class="divider"></li>
90 <li id="print_preview"><a href="#">Print Preview</a></li>
90 <li id="print_preview"><a href="#">Print Preview</a></li>
91 <li class="dropdown-submenu"><a href="#">Download as</a>
91 <li class="dropdown-submenu"><a href="#">Download as</a>
92 <ul class="dropdown-menu">
92 <ul class="dropdown-menu">
93 <li id="download_ipynb"><a href="#">IPython Notebook (.ipynb)</a></li>
93 <li id="download_ipynb"><a href="#">IPython Notebook (.ipynb)</a></li>
94 <li id="download_py"><a href="#">Python (.py)</a></li>
94 <li id="download_py"><a href="#">Python (.py)</a></li>
95 <li id="download_html"><a href="#">HTML (.html)</a></li>
95 <li id="download_html"><a href="#">HTML (.html)</a></li>
96 <li id="download_rst"><a href="#">reST (.rst)</a></li>
96 <li id="download_rst"><a href="#">reST (.rst)</a></li>
97 <li id="download_pdf"><a href="#">PDF (.pdf)</a></li>
97 <li id="download_pdf"><a href="#">PDF (.pdf)</a></li>
98 </ul>
98 </ul>
99 </li>
99 </li>
100 <li class="divider"></li>
100 <li class="divider"></li>
101 <li id="trust_notebook"
101 <li id="trust_notebook"
102 title="Trust the output of this notebook">
102 title="Trust the output of this notebook">
103 <a href="#" >Trust Notebook</a></li>
103 <a href="#" >Trust Notebook</a></li>
104 <li class="divider"></li>
104 <li class="divider"></li>
105 <li id="kill_and_exit"
105 <li id="kill_and_exit"
106 title="Shutdown this notebook's kernel, and close this window">
106 title="Shutdown this notebook's kernel, and close this window">
107 <a href="#" >Close and halt</a></li>
107 <a href="#" >Close and halt</a></li>
108 </ul>
108 </ul>
109 </li>
109 </li>
110 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Edit</a>
110 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Edit</a>
111 <ul id="edit_menu" class="dropdown-menu">
111 <ul id="edit_menu" class="dropdown-menu">
112 <li id="cut_cell"><a href="#">Cut Cell</a></li>
112 <li id="cut_cell"><a href="#">Cut Cell</a></li>
113 <li id="copy_cell"><a href="#">Copy Cell</a></li>
113 <li id="copy_cell"><a href="#">Copy Cell</a></li>
114 <li id="paste_cell_above" class="disabled"><a href="#">Paste Cell Above</a></li>
114 <li id="paste_cell_above" class="disabled"><a href="#">Paste Cell Above</a></li>
115 <li id="paste_cell_below" class="disabled"><a href="#">Paste Cell Below</a></li>
115 <li id="paste_cell_below" class="disabled"><a href="#">Paste Cell Below</a></li>
116 <li id="paste_cell_replace" class="disabled"><a href="#">Paste Cell &amp; Replace</a></li>
116 <li id="paste_cell_replace" class="disabled"><a href="#">Paste Cell &amp; Replace</a></li>
117 <li id="delete_cell"><a href="#">Delete Cell</a></li>
117 <li id="delete_cell"><a href="#">Delete Cell</a></li>
118 <li id="undelete_cell" class="disabled"><a href="#">Undo Delete Cell</a></li>
118 <li id="undelete_cell" class="disabled"><a href="#">Undo Delete Cell</a></li>
119 <li class="divider"></li>
119 <li class="divider"></li>
120 <li id="split_cell"><a href="#">Split Cell</a></li>
120 <li id="split_cell"><a href="#">Split Cell</a></li>
121 <li id="merge_cell_above"><a href="#">Merge Cell Above</a></li>
121 <li id="merge_cell_above"><a href="#">Merge Cell Above</a></li>
122 <li id="merge_cell_below"><a href="#">Merge Cell Below</a></li>
122 <li id="merge_cell_below"><a href="#">Merge Cell Below</a></li>
123 <li class="divider"></li>
123 <li class="divider"></li>
124 <li id="move_cell_up"><a href="#">Move Cell Up</a></li>
124 <li id="move_cell_up"><a href="#">Move Cell Up</a></li>
125 <li id="move_cell_down"><a href="#">Move Cell Down</a></li>
125 <li id="move_cell_down"><a href="#">Move Cell Down</a></li>
126 <li class="divider"></li>
126 <li class="divider"></li>
127 <li id="edit_nb_metadata"><a href="#">Edit Notebook Metadata</a></li>
127 <li id="edit_nb_metadata"><a href="#">Edit Notebook Metadata</a></li>
128 </ul>
128 </ul>
129 </li>
129 </li>
130 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">View</a>
130 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">View</a>
131 <ul id="view_menu" class="dropdown-menu">
131 <ul id="view_menu" class="dropdown-menu">
132 <li id="toggle_header"
132 <li id="toggle_header"
133 title="Show/Hide the IPython Notebook logo and notebook title (above menu bar)">
133 title="Show/Hide the IPython Notebook logo and notebook title (above menu bar)">
134 <a href="#">Toggle Header</a></li>
134 <a href="#">Toggle Header</a></li>
135 <li id="toggle_toolbar"
135 <li id="toggle_toolbar"
136 title="Show/Hide the action icons (below menu bar)">
136 title="Show/Hide the action icons (below menu bar)">
137 <a href="#">Toggle Toolbar</a></li>
137 <a href="#">Toggle Toolbar</a></li>
138 </ul>
138 </ul>
139 </li>
139 </li>
140 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Insert</a>
140 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Insert</a>
141 <ul id="insert_menu" class="dropdown-menu">
141 <ul id="insert_menu" class="dropdown-menu">
142 <li id="insert_cell_above"
142 <li id="insert_cell_above"
143 title="Insert an empty Code cell above the currently active cell">
143 title="Insert an empty Code cell above the currently active cell">
144 <a href="#">Insert Cell Above</a></li>
144 <a href="#">Insert Cell Above</a></li>
145 <li id="insert_cell_below"
145 <li id="insert_cell_below"
146 title="Insert an empty Code cell below the currently active cell">
146 title="Insert an empty Code cell below the currently active cell">
147 <a href="#">Insert Cell Below</a></li>
147 <a href="#">Insert Cell Below</a></li>
148 </ul>
148 </ul>
149 </li>
149 </li>
150 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Cell</a>
150 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Cell</a>
151 <ul id="cell_menu" class="dropdown-menu">
151 <ul id="cell_menu" class="dropdown-menu">
152 <li id="run_cell" title="Run this cell, and move cursor to the next one">
152 <li id="run_cell" title="Run this cell, and move cursor to the next one">
153 <a href="#">Run</a></li>
153 <a href="#">Run</a></li>
154 <li id="run_cell_select_below" title="Run this cell, select below">
154 <li id="run_cell_select_below" title="Run this cell, select below">
155 <a href="#">Run and Select Below</a></li>
155 <a href="#">Run and Select Below</a></li>
156 <li id="run_cell_insert_below" title="Run this cell, insert below">
156 <li id="run_cell_insert_below" title="Run this cell, insert below">
157 <a href="#">Run and Insert Below</a></li>
157 <a href="#">Run and Insert Below</a></li>
158 <li id="run_all_cells" title="Run all cells in the notebook">
158 <li id="run_all_cells" title="Run all cells in the notebook">
159 <a href="#">Run All</a></li>
159 <a href="#">Run All</a></li>
160 <li id="run_all_cells_above" title="Run all cells above (but not including) this cell">
160 <li id="run_all_cells_above" title="Run all cells above (but not including) this cell">
161 <a href="#">Run All Above</a></li>
161 <a href="#">Run All Above</a></li>
162 <li id="run_all_cells_below" title="Run this cell and all cells below it">
162 <li id="run_all_cells_below" title="Run this cell and all cells below it">
163 <a href="#">Run All Below</a></li>
163 <a href="#">Run All Below</a></li>
164 <li class="divider"></li>
164 <li class="divider"></li>
165 <li id="change_cell_type" class="dropdown-submenu"
165 <li id="change_cell_type" class="dropdown-submenu"
166 title="All cells in the notebook have a cell type. By default, new cells are created as 'Code' cells">
166 title="All cells in the notebook have a cell type. By default, new cells are created as 'Code' cells">
167 <a href="#">Cell Type</a>
167 <a href="#">Cell Type</a>
168 <ul class="dropdown-menu">
168 <ul class="dropdown-menu">
169 <li id="to_code"
169 <li id="to_code"
170 title="Contents will be sent to the kernel for execution, and output will display in the footer of cell">
170 title="Contents will be sent to the kernel for execution, and output will display in the footer of cell">
171 <a href="#">Code</a></li>
171 <a href="#">Code</a></li>
172 <li id="to_markdown"
172 <li id="to_markdown"
173 title="Contents will be rendered as HTML and serve as explanatory text">
173 title="Contents will be rendered as HTML and serve as explanatory text">
174 <a href="#">Markdown</a></li>
174 <a href="#">Markdown</a></li>
175 <li id="to_raw"
175 <li id="to_raw"
176 title="Contents will pass through nbconvert unmodified">
176 title="Contents will pass through nbconvert unmodified">
177 <a href="#">Raw NBConvert</a></li>
177 <a href="#">Raw NBConvert</a></li>
178 <li id="to_heading1"><a href="#">Heading 1</a></li>
178 <li id="to_heading1"><a href="#">Heading 1</a></li>
179 <li id="to_heading2"><a href="#">Heading 2</a></li>
179 <li id="to_heading2"><a href="#">Heading 2</a></li>
180 <li id="to_heading3"><a href="#">Heading 3</a></li>
180 <li id="to_heading3"><a href="#">Heading 3</a></li>
181 <li id="to_heading4"><a href="#">Heading 4</a></li>
181 <li id="to_heading4"><a href="#">Heading 4</a></li>
182 <li id="to_heading5"><a href="#">Heading 5</a></li>
182 <li id="to_heading5"><a href="#">Heading 5</a></li>
183 <li id="to_heading6"><a href="#">Heading 6</a></li>
183 <li id="to_heading6"><a href="#">Heading 6</a></li>
184 </ul>
184 </ul>
185 </li>
185 </li>
186 <li class="divider"></li>
186 <li class="divider"></li>
187 <li id="current_outputs" class="dropdown-submenu"><a href="#">Current Output</a>
187 <li id="current_outputs" class="dropdown-submenu"><a href="#">Current Output</a>
188 <ul class="dropdown-menu">
188 <ul class="dropdown-menu">
189 <li id="toggle_current_output"
189 <li id="toggle_current_output"
190 title="Hide/Show the output of the current cell">
190 title="Hide/Show the output of the current cell">
191 <a href="#">Toggle</a>
191 <a href="#">Toggle</a>
192 </li>
192 </li>
193 <li id="toggle_current_output_scroll"
193 <li id="toggle_current_output_scroll"
194 title="Scroll the output of the current cell">
194 title="Scroll the output of the current cell">
195 <a href="#">Toggle Scrolling</a>
195 <a href="#">Toggle Scrolling</a>
196 </li>
196 </li>
197 <li id="clear_current_output"
197 <li id="clear_current_output"
198 title="Clear the output of the current cell">
198 title="Clear the output of the current cell">
199 <a href="#">Clear</a>
199 <a href="#">Clear</a>
200 </li>
200 </li>
201 </ul>
201 </ul>
202 </li>
202 </li>
203 <li id="all_outputs" class="dropdown-submenu"><a href="#">All Output</a>
203 <li id="all_outputs" class="dropdown-submenu"><a href="#">All Output</a>
204 <ul class="dropdown-menu">
204 <ul class="dropdown-menu">
205 <li id="toggle_all_output"
205 <li id="toggle_all_output"
206 title="Hide/Show the output of all cells">
206 title="Hide/Show the output of all cells">
207 <a href="#">Toggle</a>
207 <a href="#">Toggle</a>
208 </li>
208 </li>
209 <li id="toggle_all_output_scroll"
209 <li id="toggle_all_output_scroll"
210 title="Scroll the output of all cells">
210 title="Scroll the output of all cells">
211 <a href="#">Toggle Scrolling</a>
211 <a href="#">Toggle Scrolling</a>
212 </li>
212 </li>
213 <li id="clear_all_output"
213 <li id="clear_all_output"
214 title="Clear the output of all cells">
214 title="Clear the output of all cells">
215 <a href="#">Clear</a>
215 <a href="#">Clear</a>
216 </li>
216 </li>
217 </ul>
217 </ul>
218 </li>
218 </li>
219 </ul>
219 </ul>
220 </li>
220 </li>
221 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Kernel</a>
221 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Kernel</a>
222 <ul id="kernel_menu" class="dropdown-menu">
222 <ul id="kernel_menu" class="dropdown-menu">
223 <li id="int_kernel"
223 <li id="int_kernel"
224 title="Send KeyboardInterrupt (CTRL-C) to the Kernel">
224 title="Send KeyboardInterrupt (CTRL-C) to the Kernel">
225 <a href="#">Interrupt</a></li>
225 <a href="#">Interrupt</a></li>
226 <li id="restart_kernel"
226 <li id="restart_kernel"
227 title="Restart the Kernel">
227 title="Restart the Kernel">
228 <a href="#">Restart</a></li>
228 <a href="#">Restart</a></li>
229 <li class="divider"></li>
229 <li class="divider"></li>
230 <li id="menu-change-kernel" class="dropdown-submenu">
230 <li id="menu-change-kernel" class="dropdown-submenu">
231 <a href="#">Change kernel</a>
231 <a href="#">Change kernel</a>
232 <ul class="dropdown-menu" id="menu-change-kernel-submenu"></ul>
232 <ul class="dropdown-menu" id="menu-change-kernel-submenu"></ul>
233 </li>
233 </li>
234 </ul>
234 </ul>
235 </li>
235 </li>
236 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Help</a>
236 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Help</a>
237 <ul id="help_menu" class="dropdown-menu">
237 <ul id="help_menu" class="dropdown-menu">
238 <li id="notebook_tour" title="A quick tour of the notebook user interface"><a href="#">User Interface Tour</a></li>
238 <li id="notebook_tour" title="A quick tour of the notebook user interface"><a href="#">User Interface Tour</a></li>
239 <li id="keyboard_shortcuts" title="Opens a tooltip with all keyboard shortcuts"><a href="#">Keyboard Shortcuts</a></li>
239 <li id="keyboard_shortcuts" title="Opens a tooltip with all keyboard shortcuts"><a href="#">Keyboard Shortcuts</a></li>
240 <li class="divider"></li>
240 <li class="divider"></li>
241 {% set
241 {% set
242 sections = (
242 sections = (
243 (
243 (
244 ("http://ipython.org/documentation.html","IPython Help",True),
244 ("http://ipython.org/documentation.html","IPython Help",True),
245 ("http://nbviewer.ipython.org/github/ipython/ipython/tree/2.x/examples/Index.ipynb", "Notebook Help", True),
245 ("http://nbviewer.ipython.org/github/ipython/ipython/tree/2.x/examples/Index.ipynb", "Notebook Help", True),
246 ),(
246 ),(
247 ("http://docs.python.org","Python",True),
247 ("http://docs.python.org","Python",True),
248 ("http://help.github.com/articles/github-flavored-markdown","Markdown",True),
248 ("http://help.github.com/articles/github-flavored-markdown","Markdown",True),
249 ("http://docs.scipy.org/doc/numpy/reference/","NumPy",True),
249 ("http://docs.scipy.org/doc/numpy/reference/","NumPy",True),
250 ("http://docs.scipy.org/doc/scipy/reference/","SciPy",True),
250 ("http://docs.scipy.org/doc/scipy/reference/","SciPy",True),
251 ("http://matplotlib.org/contents.html","Matplotlib",True),
251 ("http://matplotlib.org/contents.html","Matplotlib",True),
252 ("http://docs.sympy.org/latest/index.html","SymPy",True),
252 ("http://docs.sympy.org/latest/index.html","SymPy",True),
253 ("http://pandas.pydata.org/pandas-docs/stable/","pandas", True)
253 ("http://pandas.pydata.org/pandas-docs/stable/","pandas", True)
254 )
254 )
255 )
255 )
256 %}
256 %}
257
257
258 {% for helplinks in sections %}
258 {% for helplinks in sections %}
259 {% for link in helplinks %}
259 {% for link in helplinks %}
260 <li><a href="{{link[0]}}" {{'target="_blank" title="Opens in a new window"' if link[2]}}>
260 <li><a href="{{link[0]}}" {{'target="_blank" title="Opens in a new window"' if link[2]}}>
261 {{'<i class="icon-external-link menu-icon pull-right"></i>' if link[2]}}
261 {{'<i class="fa fa-external-link menu-icon pull-right"></i>' if link[2]}}
262 {{link[1]}}
262 {{link[1]}}
263 </a></li>
263 </a></li>
264 {% endfor %}
264 {% endfor %}
265 {% if not loop.last %}
265 {% if not loop.last %}
266 <li class="divider"></li>
266 <li class="divider"></li>
267 {% endif %}
267 {% endif %}
268 {% endfor %}
268 {% endfor %}
269 </li>
269 </li>
270 </ul>
270 </ul>
271 </li>
271 </li>
272 </ul>
272 </ul>
273 <ul class="nav navbar-nav navbar-right">
273 <ul class="nav navbar-nav navbar-right">
274 <div id="kernel_indicator">
274 <div id="kernel_indicator">
275 <i id="kernel_indicator_icon"></i>
275 <i id="kernel_indicator_icon"></i>
276 </div>
276 </div>
277 <div id="modal_indicator">
277 <div id="modal_indicator">
278 <i id="modal_indicator_icon"></i>
278 <i id="modal_indicator_icon"></i>
279 </div>
279 </div>
280 <div id="notification_area"></div>
280 <div id="notification_area"></div>
281 </ul>
281 </ul>
282 </div>
282 </div>
283 </div>
283 </div>
284 </div>
284 </div>
285 <div id="maintoolbar" class="navbar">
285 <div id="maintoolbar" class="navbar">
286 <div class="toolbar-inner navbar-inner navbar-nobg">
286 <div class="toolbar-inner navbar-inner navbar-nobg">
287 <div id="maintoolbar-container" class="container"></div>
287 <div id="maintoolbar-container" class="container"></div>
288 </div>
288 </div>
289 </div>
289 </div>
290 </div>
290 </div>
291
291
292 <div id="ipython-main-app">
292 <div id="ipython-main-app">
293
293
294 <div id="notebook_panel">
294 <div id="notebook_panel">
295 <div id="notebook"></div>
295 <div id="notebook"></div>
296 <div id="pager_splitter"></div>
296 <div id="pager_splitter"></div>
297 <div id="pager">
297 <div id="pager">
298 <div id='pager_button_area'>
298 <div id='pager_button_area'>
299 </div>
299 </div>
300 <div id="pager-container" class="container"></div>
300 <div id="pager-container" class="container"></div>
301 </div>
301 </div>
302 </div>
302 </div>
303
303
304 </div>
304 </div>
305 <div id='tooltip' class='ipython_tooltip' style='display:none'></div>
305 <div id='tooltip' class='ipython_tooltip' style='display:none'></div>
306
306
307
307
308 {% endblock %}
308 {% endblock %}
309
309
310
310
311 {% block script %}
311 {% block script %}
312 {{super()}}
312 {{super()}}
313
313
314 <script src="{{ static_url("components/codemirror/lib/codemirror.js") }}" charset="utf-8"></script>
314 <script src="{{ static_url("components/codemirror/lib/codemirror.js") }}" charset="utf-8"></script>
315 <script type="text/javascript">
315 <script type="text/javascript">
316 CodeMirror.modeURL = "{{ static_url("components/codemirror/mode/%N/%N.js", include_version=False) }}";
316 CodeMirror.modeURL = "{{ static_url("components/codemirror/mode/%N/%N.js", include_version=False) }}";
317 </script>
317 </script>
318 <script src="{{ static_url("components/codemirror/addon/mode/loadmode.js") }}" charset="utf-8"></script>
318 <script src="{{ static_url("components/codemirror/addon/mode/loadmode.js") }}" charset="utf-8"></script>
319 <script src="{{ static_url("components/codemirror/addon/mode/multiplex.js") }}" charset="utf-8"></script>
319 <script src="{{ static_url("components/codemirror/addon/mode/multiplex.js") }}" charset="utf-8"></script>
320 <script src="{{ static_url("components/codemirror/addon/mode/overlay.js") }}" charset="utf-8"></script>
320 <script src="{{ static_url("components/codemirror/addon/mode/overlay.js") }}" charset="utf-8"></script>
321 <script src="{{ static_url("components/codemirror/addon/edit/matchbrackets.js") }}" charset="utf-8"></script>
321 <script src="{{ static_url("components/codemirror/addon/edit/matchbrackets.js") }}" charset="utf-8"></script>
322 <script src="{{ static_url("components/codemirror/addon/edit/closebrackets.js") }}" charset="utf-8"></script>
322 <script src="{{ static_url("components/codemirror/addon/edit/closebrackets.js") }}" charset="utf-8"></script>
323 <script src="{{ static_url("components/codemirror/addon/comment/comment.js") }}" charset="utf-8"></script>
323 <script src="{{ static_url("components/codemirror/addon/comment/comment.js") }}" charset="utf-8"></script>
324 <script src="{{ static_url("components/codemirror/mode/htmlmixed/htmlmixed.js") }}" charset="utf-8"></script>
324 <script src="{{ static_url("components/codemirror/mode/htmlmixed/htmlmixed.js") }}" charset="utf-8"></script>
325 <script src="{{ static_url("components/codemirror/mode/xml/xml.js") }}" charset="utf-8"></script>
325 <script src="{{ static_url("components/codemirror/mode/xml/xml.js") }}" charset="utf-8"></script>
326 <script src="{{ static_url("components/codemirror/mode/javascript/javascript.js") }}" charset="utf-8"></script>
326 <script src="{{ static_url("components/codemirror/mode/javascript/javascript.js") }}" charset="utf-8"></script>
327 <script src="{{ static_url("components/codemirror/mode/css/css.js") }}" charset="utf-8"></script>
327 <script src="{{ static_url("components/codemirror/mode/css/css.js") }}" charset="utf-8"></script>
328 <script src="{{ static_url("components/codemirror/mode/rst/rst.js") }}" charset="utf-8"></script>
328 <script src="{{ static_url("components/codemirror/mode/rst/rst.js") }}" charset="utf-8"></script>
329 <script src="{{ static_url("components/codemirror/mode/markdown/markdown.js") }}" charset="utf-8"></script>
329 <script src="{{ static_url("components/codemirror/mode/markdown/markdown.js") }}" charset="utf-8"></script>
330 <script src="{{ static_url("components/codemirror/mode/python/python.js") }}" charset="utf-8"></script>
330 <script src="{{ static_url("components/codemirror/mode/python/python.js") }}" charset="utf-8"></script>
331 <script src="{{ static_url("notebook/js/codemirror-ipython.js") }}" charset="utf-8"></script>
331 <script src="{{ static_url("notebook/js/codemirror-ipython.js") }}" charset="utf-8"></script>
332 <script src="{{ static_url("notebook/js/codemirror-ipythongfm.js") }}" charset="utf-8"></script>
332 <script src="{{ static_url("notebook/js/codemirror-ipythongfm.js") }}" charset="utf-8"></script>
333
333
334 <script src="{{ static_url("notebook/js/main.js") }}" charset="utf-8"></script>
334 <script src="{{ static_url("notebook/js/main.js") }}" charset="utf-8"></script>
335
335
336 {% endblock %}
336 {% endblock %}
@@ -1,116 +1,116
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
5
6 {% block stylesheet %}
6 {% block stylesheet %}
7 {{super()}}
7 {{super()}}
8 <link rel="stylesheet" href="{{ static_url("tree/css/override.css") }}" type="text/css" />
8 <link rel="stylesheet" href="{{ static_url("tree/css/override.css") }}" type="text/css" />
9 {% endblock %}
9 {% endblock %}
10
10
11 {% block params %}
11 {% block params %}
12
12
13 data-project="{{project}}"
13 data-project="{{project}}"
14 data-base-url="{{base_url}}"
14 data-base-url="{{base_url}}"
15 data-notebook-path="{{notebook_path}}"
15 data-notebook-path="{{notebook_path}}"
16
16
17 {% endblock %}
17 {% endblock %}
18
18
19
19
20 {% block site %}
20 {% block site %}
21
21
22 <div id="ipython-main-app" class="container">
22 <div id="ipython-main-app" class="container">
23
23
24 <div id="tab_content" class="tabbable">
24 <div id="tab_content" class="tabbable">
25 <ul id="tabs" class="nav nav-tabs">
25 <ul id="tabs" class="nav nav-tabs">
26 <li class="active"><a href="#notebooks" data-toggle="tab">Notebooks</a></li>
26 <li class="active"><a href="#notebooks" data-toggle="tab">Notebooks</a></li>
27 <li><a href="#running" data-toggle="tab">Running</a></li>
27 <li><a href="#running" data-toggle="tab">Running</a></li>
28 <li><a href="#clusters" data-toggle="tab">Clusters</a></li>
28 <li><a href="#clusters" data-toggle="tab">Clusters</a></li>
29 </ul>
29 </ul>
30
30
31 <div class="tab-content">
31 <div class="tab-content">
32 <div id="notebooks" class="tab-pane active">
32 <div id="notebooks" class="tab-pane active">
33 <div id="notebook_toolbar" class="row">
33 <div id="notebook_toolbar" class="row">
34 <div class="col-sm-8 no-padding">
34 <div class="col-sm-8 no-padding">
35 <form id='alternate_upload' class='alternate_upload' >
35 <form id='alternate_upload' class='alternate_upload' >
36 <span id="notebook_list_info" style="position:absolute" >
36 <span id="notebook_list_info" style="position:absolute" >
37 To import a notebook, drag the file onto the listing below or <strong>click here</strong>.
37 To import a notebook, drag the file onto the listing below or <strong>click here</strong>.
38 </span>
38 </span>
39 <input type="file" name="datafile" class="fileinput" multiple='multiple'>
39 <input type="file" name="datafile" class="fileinput" multiple='multiple'>
40 </form>
40 </form>
41 </div>
41 </div>
42 <div class="col-sm-4 no-padding tree-buttons">
42 <div class="col-sm-4 no-padding tree-buttons">
43 <span id="notebook_buttons" class="pull-right">
43 <span id="notebook_buttons" class="pull-right">
44 <button id="new_notebook" title="Create new notebook" class="btn btn-default btn-xs">New Notebook</button>
44 <button id="new_notebook" title="Create new notebook" class="btn btn-default btn-xs">New Notebook</button>
45 <button id="refresh_notebook_list" title="Refresh notebook list" class="btn btn-default btn-xs"><i class="icon-refresh"></i></button>
45 <button id="refresh_notebook_list" title="Refresh notebook list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button>
46 </span>
46 </span>
47 </div>
47 </div>
48 </div>
48 </div>
49
49
50 <div id="notebook_list">
50 <div id="notebook_list">
51 <div id="notebook_list_header" class="row list_header">
51 <div id="notebook_list_header" class="row list_header">
52 <div id="project_name">
52 <div id="project_name">
53 <ul class="breadcrumb">
53 <ul class="breadcrumb">
54 <li><a href="{{breadcrumbs[0][0]}}"><i class="icon-home"></i></a></li>
54 <li><a href="{{breadcrumbs[0][0]}}"><i class="fa fa-home"></i></a></li>
55 {% for crumb in breadcrumbs[1:] %}
55 {% for crumb in breadcrumbs[1:] %}
56 <li><a href="{{crumb[0]}}">{{crumb[1]}}</a></li>
56 <li><a href="{{crumb[0]}}">{{crumb[1]}}</a></li>
57 {% endfor %}
57 {% endfor %}
58 </ul>
58 </ul>
59 </div>
59 </div>
60 </div>
60 </div>
61 </div>
61 </div>
62 </div>
62 </div>
63
63
64 <div id="running" class="tab-pane">
64 <div id="running" class="tab-pane">
65
65
66 <div id="running_toolbar" class="row">
66 <div id="running_toolbar" class="row">
67 <div class="col-sm-8 no-padding">
67 <div class="col-sm-8 no-padding">
68 <span id="running_list_info">Currently running IPython notebooks</span>
68 <span id="running_list_info">Currently running IPython notebooks</span>
69 </div>
69 </div>
70 <div class="col-sm-4 no-padding tree-buttons">
70 <div class="col-sm-4 no-padding tree-buttons">
71 <span id="running_buttons" class="pull-right">
71 <span id="running_buttons" class="pull-right">
72 <button id="refresh_running_list" title="Refresh running list" class="btn btn-default btn-xs"><i class="icon-refresh"></i></button>
72 <button id="refresh_running_list" title="Refresh running list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button>
73 </span>
73 </span>
74 </div>
74 </div>
75 </div>
75 </div>
76
76
77 <div id="running_list">
77 <div id="running_list">
78 <div id="running_list_header" class="row list_header">
78 <div id="running_list_header" class="row list_header">
79 <div> There are no notebooks running. </div>
79 <div> There are no notebooks running. </div>
80 </div>
80 </div>
81 </div>
81 </div>
82 </div>
82 </div>
83
83
84 <div id="clusters" class="tab-pane">
84 <div id="clusters" class="tab-pane">
85
85
86 <div id="cluster_toolbar" class="row">
86 <div id="cluster_toolbar" class="row">
87 <div class="col-xs-8 no-padding">
87 <div class="col-xs-8 no-padding">
88 <span id="cluster_list_info">IPython parallel computing clusters</span>
88 <span id="cluster_list_info">IPython parallel computing clusters</span>
89 </div>
89 </div>
90 <div class="col-xs-4 no-padding tree-buttons">
90 <div class="col-xs-4 no-padding tree-buttons">
91 <span id="cluster_buttons" class="pull-right">
91 <span id="cluster_buttons" class="pull-right">
92 <button id="refresh_cluster_list" title="Refresh cluster list" class="btn btn-default btn-xs"><i class="icon-refresh"></i></button>
92 <button id="refresh_cluster_list" title="Refresh cluster list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button>
93 </span>
93 </span>
94 </div>
94 </div>
95 </div>
95 </div>
96
96
97 <div id="cluster_list">
97 <div id="cluster_list">
98 <div id="cluster_list_header" class="row list_header">
98 <div id="cluster_list_header" class="row list_header">
99 <div class="profile_col col-xs-4">profile</div>
99 <div class="profile_col col-xs-4">profile</div>
100 <div class="status_col col-xs-3">status</div>
100 <div class="status_col col-xs-3">status</div>
101 <div class="engines_col col-xs-3" title="Enter the number of engines to start or empty for default"># of engines</div>
101 <div class="engines_col col-xs-3" title="Enter the number of engines to start or empty for default"># of engines</div>
102 <div class="action_col col-xs-2">action</div>
102 <div class="action_col col-xs-2">action</div>
103 </div>
103 </div>
104 </div>
104 </div>
105 </div>
105 </div>
106 </div>
106 </div>
107
107
108 </div>
108 </div>
109
109
110 {% endblock %}
110 {% endblock %}
111
111
112 {% block script %}
112 {% block script %}
113 {{super()}}
113 {{super()}}
114
114
115 <script src="{{ static_url("tree/js/main.js") }}" type="text/javascript" charset="utf-8"></script>
115 <script src="{{ static_url("tree/js/main.js") }}" type="text/javascript" charset="utf-8"></script>
116 {% endblock %}
116 {% endblock %}
@@ -1,203 +1,203
1 {%- extends 'basic.tpl' -%}
1 {%- extends 'basic.tpl' -%}
2 {% from 'mathjax.tpl' import mathjax %}
2 {% from 'mathjax.tpl' import mathjax %}
3
3
4 {%- block any_cell scoped -%}
4 {%- block any_cell scoped -%}
5 {%- if cell.metadata.slide_type in ['slide'] -%}
5 {%- if cell.metadata.slide_type in ['slide'] -%}
6 <section>
6 <section>
7 <section>
7 <section>
8 {{ super() }}
8 {{ super() }}
9 {%- elif cell.metadata.slide_type in ['subslide'] -%}
9 {%- elif cell.metadata.slide_type in ['subslide'] -%}
10 <section>
10 <section>
11 {{ super() }}
11 {{ super() }}
12 {%- elif cell.metadata.slide_type in ['-'] -%}
12 {%- elif cell.metadata.slide_type in ['-'] -%}
13 {%- if cell.metadata.frag_helper in ['fragment_end'] -%}
13 {%- if cell.metadata.frag_helper in ['fragment_end'] -%}
14 <div class="fragment" data-fragment-index="{{ cell.metadata.frag_number }}">
14 <div class="fragment" data-fragment-index="{{ cell.metadata.frag_number }}">
15 {{ super() }}
15 {{ super() }}
16 </div>
16 </div>
17 {%- else -%}
17 {%- else -%}
18 {{ super() }}
18 {{ super() }}
19 {%- endif -%}
19 {%- endif -%}
20 {%- elif cell.metadata.slide_type in ['skip'] -%}
20 {%- elif cell.metadata.slide_type in ['skip'] -%}
21 <div style=display:none>
21 <div style=display:none>
22 {{ super() }}
22 {{ super() }}
23 </div>
23 </div>
24 {%- elif cell.metadata.slide_type in ['notes'] -%}
24 {%- elif cell.metadata.slide_type in ['notes'] -%}
25 <aside class="notes">
25 <aside class="notes">
26 {{ super() }}
26 {{ super() }}
27 </aside>
27 </aside>
28 {%- elif cell.metadata.slide_type in ['fragment'] -%}
28 {%- elif cell.metadata.slide_type in ['fragment'] -%}
29 <div class="fragment" data-fragment-index="{{ cell.metadata.frag_number }}">
29 <div class="fragment" data-fragment-index="{{ cell.metadata.frag_number }}">
30 {{ super() }}
30 {{ super() }}
31 </div>
31 </div>
32 {%- endif -%}
32 {%- endif -%}
33 {%- if cell.metadata.slide_helper in ['subslide_end'] -%}
33 {%- if cell.metadata.slide_helper in ['subslide_end'] -%}
34 </section>
34 </section>
35 {%- elif cell.metadata.slide_helper in ['slide_end'] -%}
35 {%- elif cell.metadata.slide_helper in ['slide_end'] -%}
36 </section>
36 </section>
37 </section>
37 </section>
38 {%- endif -%}
38 {%- endif -%}
39 {%- endblock any_cell -%}
39 {%- endblock any_cell -%}
40
40
41 {% block header %}
41 {% block header %}
42 <!DOCTYPE html>
42 <!DOCTYPE html>
43 <html>
43 <html>
44 <head>
44 <head>
45
45
46 <meta charset="utf-8" />
46 <meta charset="utf-8" />
47 <meta http-equiv="X-UA-Compatible" content="chrome=1" />
47 <meta http-equiv="X-UA-Compatible" content="chrome=1" />
48
48
49 <meta name="apple-mobile-web-app-capable" content="yes" />
49 <meta name="apple-mobile-web-app-capable" content="yes" />
50 <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
50 <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
51
51
52 <title>{{resources['metadata']['name']}} slides</title>
52 <title>{{resources['metadata']['name']}} slides</title>
53
53
54 <script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
54 <script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
55 <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
55 <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
56
56
57 <!-- General and theme style sheets -->
57 <!-- General and theme style sheets -->
58 <link rel="stylesheet" href="{{resources.reveal.url_prefix}}/css/reveal.css">
58 <link rel="stylesheet" href="{{resources.reveal.url_prefix}}/css/reveal.css">
59 <link rel="stylesheet" href="{{resources.reveal.url_prefix}}/css/theme/simple.css" id="theme">
59 <link rel="stylesheet" href="{{resources.reveal.url_prefix}}/css/theme/simple.css" id="theme">
60
60
61 <!-- For syntax highlighting -->
61 <!-- For syntax highlighting -->
62 <link rel="stylesheet" href="{{resources.reveal.url_prefix}}/lib/css/zenburn.css">
62 <link rel="stylesheet" href="{{resources.reveal.url_prefix}}/lib/css/zenburn.css">
63
63
64 <!-- If the query includes 'print-pdf', include the PDF print sheet -->
64 <!-- If the query includes 'print-pdf', include the PDF print sheet -->
65 <script>
65 <script>
66 if( window.location.search.match( /print-pdf/gi ) ) {
66 if( window.location.search.match( /print-pdf/gi ) ) {
67 var link = document.createElement( 'link' );
67 var link = document.createElement( 'link' );
68 link.rel = 'stylesheet';
68 link.rel = 'stylesheet';
69 link.type = 'text/css';
69 link.type = 'text/css';
70 link.href = '{{resources.reveal.url_prefix}}/css/print/pdf.css';
70 link.href = '{{resources.reveal.url_prefix}}/css/print/pdf.css';
71 document.getElementsByTagName( 'head' )[0].appendChild( link );
71 document.getElementsByTagName( 'head' )[0].appendChild( link );
72 }
72 }
73
73
74 </script>
74 </script>
75
75
76 <!--[if lt IE 9]>
76 <!--[if lt IE 9]>
77 <script src="{{resources.reveal.url_prefix}}/lib/js/html5shiv.js"></script>
77 <script src="{{resources.reveal.url_prefix}}/lib/js/html5shiv.js"></script>
78 <![endif]-->
78 <![endif]-->
79
79
80 <!-- Get Font-awesome from cdn -->
80 <!-- Get Font-awesome from cdn -->
81 <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css">
81 <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css">
82
82
83 {% for css in resources.inlining.css -%}
83 {% for css in resources.inlining.css -%}
84 <style type="text/css">
84 <style type="text/css">
85 {{ css }}
85 {{ css }}
86 </style>
86 </style>
87 {% endfor %}
87 {% endfor %}
88
88
89 <style type="text/css">
89 <style type="text/css">
90 /* Overrides of notebook CSS for static HTML export */
90 /* Overrides of notebook CSS for static HTML export */
91 html {
91 html {
92 overflow-y: auto;
92 overflow-y: auto;
93 }
93 }
94 .reveal {
94 .reveal {
95 font-size: 160%;
95 font-size: 160%;
96 }
96 }
97 .reveal pre {
97 .reveal pre {
98 width: inherit;
98 width: inherit;
99 padding: 0.4em;
99 padding: 0.4em;
100 margin: 0px;
100 margin: 0px;
101 font-family: monospace, sans-serif;
101 font-family: monospace, sans-serif;
102 font-size: 80%;
102 font-size: 80%;
103 box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
103 box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
104 }
104 }
105 .reveal section img {
105 .reveal section img {
106 border: 0px solid black;
106 border: 0px solid black;
107 box-shadow: 0 0 10px rgba(0, 0, 0, 0);
107 box-shadow: 0 0 10px rgba(0, 0, 0, 0);
108 }
108 }
109 .reveal i {
109 .reveal i {
110 font-style: normal;
110 font-style: normal;
111 font-family: FontAwesome;
111 font-family: FontAwesome;
112 font-size: 2em;
112 font-size: 2em;
113 }
113 }
114 .reveal .slides {
114 .reveal .slides {
115 text-align: left;
115 text-align: left;
116 }
116 }
117 .reveal.fade {
117 .reveal.fade {
118 opacity: 1;
118 opacity: 1;
119 }
119 }
120 .reveal .progress {
120 .reveal .progress {
121 position: static;
121 position: static;
122 }
122 }
123 div.input_area {
123 div.input_area {
124 padding: 0.06em;
124 padding: 0.06em;
125 }
125 }
126 div.code_cell {
126 div.code_cell {
127 background-color: transparent;
127 background-color: transparent;
128 }
128 }
129 div.prompt {
129 div.prompt {
130 width: 11ex;
130 width: 11ex;
131 padding: 0.4em;
131 padding: 0.4em;
132 margin: 0px;
132 margin: 0px;
133 font-family: monospace, sans-serif;
133 font-family: monospace, sans-serif;
134 font-size: 80%;
134 font-size: 80%;
135 text-align: right;
135 text-align: right;
136 }
136 }
137 div.output_area pre {
137 div.output_area pre {
138 font-family: monospace, sans-serif;
138 font-family: monospace, sans-serif;
139 font-size: 80%;
139 font-size: 80%;
140 }
140 }
141 div.output_prompt {
141 div.output_prompt {
142 /* 5px right shift to account for margin in parent container */
142 /* 5px right shift to account for margin in parent container */
143 margin: 5px 5px 0 0;
143 margin: 5px 5px 0 0;
144 }
144 }
145 .rendered_html p {
145 .rendered_html p {
146 text-align: inherit;
146 text-align: inherit;
147 }
147 }
148 </style>
148 </style>
149
149
150 <!-- Custom stylesheet, it must be in the same directory as the html file -->
150 <!-- Custom stylesheet, it must be in the same directory as the html file -->
151 <link rel="stylesheet" href="custom.css">
151 <link rel="stylesheet" href="custom.css">
152
152
153 </head>
153 </head>
154 {% endblock header%}
154 {% endblock header%}
155
155
156
156
157 {% block body %}
157 {% block body %}
158 <body>
158 <body>
159 <div class="reveal">
159 <div class="reveal">
160 <div class="slides">
160 <div class="slides">
161 {{ super() }}
161 {{ super() }}
162 </div>
162 </div>
163 </div>
163 </div>
164
164
165 <script src="{{resources.reveal.url_prefix}}/lib/js/head.min.js"></script>
165 <script src="{{resources.reveal.url_prefix}}/lib/js/head.min.js"></script>
166
166
167 <script src="{{resources.reveal.url_prefix}}/js/reveal.js"></script>
167 <script src="{{resources.reveal.url_prefix}}/js/reveal.js"></script>
168
168
169 <script>
169 <script>
170
170
171 // Full list of configuration options available here: https://github.com/hakimel/reveal.js#configuration
171 // Full list of configuration options available here: https://github.com/hakimel/reveal.js#configuration
172 Reveal.initialize({
172 Reveal.initialize({
173 controls: true,
173 controls: true,
174 progress: true,
174 progress: true,
175 history: true,
175 history: true,
176
176
177 theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
177 theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
178 transition: Reveal.getQueryHash().transition || 'linear', // default/cube/page/concave/zoom/linear/none
178 transition: Reveal.getQueryHash().transition || 'linear', // default/cube/page/concave/zoom/linear/none
179
179
180 // Optional libraries used to extend on reveal.js
180 // Optional libraries used to extend on reveal.js
181 dependencies: [
181 dependencies: [
182 { src: "{{resources.reveal.url_prefix}}/lib/js/classList.js", condition: function() { return !document.body.classList; } },
182 { src: "{{resources.reveal.url_prefix}}/lib/js/classList.js", condition: function() { return !document.body.classList; } },
183 { src: "{{resources.reveal.url_prefix}}/plugin/notes/notes.js", async: true, condition: function() { return !!document.body.classList; } }
183 { src: "{{resources.reveal.url_prefix}}/plugin/notes/notes.js", async: true, condition: function() { return !!document.body.classList; } }
184 ]
184 ]
185 });
185 });
186 </script>
186 </script>
187
187
188 <!-- Loading mathjax macro -->
188 <!-- Loading mathjax macro -->
189 {{ mathjax() }}
189 {{ mathjax() }}
190
190
191 <script>
191 <script>
192 Reveal.addEventListener( 'slidechanged', function( event ) {
192 Reveal.addEventListener( 'slidechanged', function( event ) {
193 window.scrollTo(0,0);
193 window.scrollTo(0,0);
194 MathJax.Hub.Rerender(event.currentSlide);
194 MathJax.Hub.Rerender(event.currentSlide);
195 });
195 });
196 </script>
196 </script>
197
197
198 </body>
198 </body>
199 {% endblock body %}
199 {% endblock body %}
200
200
201 {% block footer %}
201 {% block footer %}
202 </html>
202 </html>
203 {% endblock footer %} No newline at end of file
203 {% endblock footer %}
@@ -1,467 +1,467
1 {
1 {
2 "metadata": {
2 "metadata": {
3 "name": "",
3 "name": "",
4 "signature": "sha256:344aa301a0ce679ebf87e2d1dd206cf3784854cde5fedc34109f38710aef680c"
4 "signature": "sha256:a52ac3735e5881fe8fe68f88d0113c3b1dca40cb809955db692fedb89b66a7fa"
5 },
5 },
6 "nbformat": 3,
6 "nbformat": 3,
7 "nbformat_minor": 0,
7 "nbformat_minor": 0,
8 "worksheets": [
8 "worksheets": [
9 {
9 {
10 "cells": [
10 "cells": [
11 {
11 {
12 "cell_type": "heading",
12 "cell_type": "heading",
13 "level": 1,
13 "level": 1,
14 "metadata": {},
14 "metadata": {},
15 "source": [
15 "source": [
16 "Running Code in the IPython Notebook"
16 "Running Code in the IPython Notebook"
17 ]
17 ]
18 },
18 },
19 {
19 {
20 "cell_type": "markdown",
20 "cell_type": "markdown",
21 "metadata": {},
21 "metadata": {},
22 "source": [
22 "source": [
23 "First and foremost, the IPython Notebook is an interactive environment for writing and running Python code."
23 "First and foremost, the IPython Notebook is an interactive environment for writing and running Python code."
24 ]
24 ]
25 },
25 },
26 {
26 {
27 "cell_type": "heading",
27 "cell_type": "heading",
28 "level": 2,
28 "level": 2,
29 "metadata": {},
29 "metadata": {},
30 "source": [
30 "source": [
31 "Code cells allow you to enter and run Python code"
31 "Code cells allow you to enter and run Python code"
32 ]
32 ]
33 },
33 },
34 {
34 {
35 "cell_type": "markdown",
35 "cell_type": "markdown",
36 "metadata": {},
36 "metadata": {},
37 "source": [
37 "source": [
38 "\n",
38 "\n",
39 "<script type=\"text/javascript\">\n",
39 "<script type=\"text/javascript\">\n",
40 "var _toggle=false;\n",
40 "var _toggle=false;\n",
41 "var hl = function (id, on){\n",
41 "var hl = function (id, on){\n",
42 " $(id)[0].style.background = '';\n",
42 " $(id)[0].style.background = '';\n",
43 " if (on) {\n",
43 " if (on) {\n",
44 " $(id)[0].style.background = 'lightcyan';\n",
44 " $(id)[0].style.background = 'lightcyan';\n",
45 " }\n",
45 " }\n",
46 "};\n",
46 "};\n",
47 "</script>\n",
47 "</script>\n",
48 "\n",
48 "\n",
49 "Run a code cell using `shift-enter` or pressing the <button><i class=\"icon-play\"></i></button> button in the <a href=\"#\" onMouseover=\"hl('#maintoolbar-container', 1)\" onMouseout=\"hl('#maintoolbar-container', 0)\">toolbar</a> above:"
49 "Run a code cell using `shift-enter` or pressing the <button class='btn btn-default btn-xs'><i class=\"icon-play fa fa-play\"></i></button> button in the <a href=\"#\" onMouseover=\"hl('#maintoolbar-container', 1)\" onMouseout=\"hl('#maintoolbar-container', 0)\">toolbar</a> above:"
50 ]
50 ]
51 },
51 },
52 {
52 {
53 "cell_type": "code",
53 "cell_type": "code",
54 "collapsed": false,
54 "collapsed": false,
55 "input": [
55 "input": [
56 "a = 10"
56 "a = 10"
57 ],
57 ],
58 "language": "python",
58 "language": "python",
59 "metadata": {},
59 "metadata": {},
60 "outputs": [],
60 "outputs": [],
61 "prompt_number": 1
61 "prompt_number": 1
62 },
62 },
63 {
63 {
64 "cell_type": "code",
64 "cell_type": "code",
65 "collapsed": false,
65 "collapsed": false,
66 "input": [
66 "input": [
67 "print(a)"
67 "print(a)"
68 ],
68 ],
69 "language": "python",
69 "language": "python",
70 "metadata": {},
70 "metadata": {},
71 "outputs": [
71 "outputs": [
72 {
72 {
73 "output_type": "stream",
73 "output_type": "stream",
74 "stream": "stdout",
74 "stream": "stdout",
75 "text": [
75 "text": [
76 "10\n"
76 "10\n"
77 ]
77 ]
78 }
78 }
79 ],
79 ],
80 "prompt_number": 2
80 "prompt_number": 2
81 },
81 },
82 {
82 {
83 "cell_type": "heading",
83 "cell_type": "heading",
84 "level": 2,
84 "level": 2,
85 "metadata": {},
85 "metadata": {},
86 "source": [
86 "source": [
87 "Managing the IPython Kernel"
87 "Managing the IPython Kernel"
88 ]
88 ]
89 },
89 },
90 {
90 {
91 "cell_type": "markdown",
91 "cell_type": "markdown",
92 "metadata": {},
92 "metadata": {},
93 "source": [
93 "source": [
94 "Code is run in a separate process called the IPython Kernel. The Kernel can be interrupted or restarted. Try running the following cell and then hit the <button><i class='icon-stop'></i></button> button in the <a href=\"#\" onMouseover=\"hl('#maintoolbar-container', 1)\" onMouseout=\"hl('#maintoolbar-container', 0)\">toolbar</a> above."
94 "Code is run in a separate process called the IPython Kernel. The Kernel can be interrupted or restarted. Try running the following cell and then hit the <button class='btn btn-default btn-xs'><i class='icon-stop fa fa-stop'></i></button> button in the <a href=\"#\" onMouseover=\"hl('#maintoolbar-container', 1)\" onMouseout=\"hl('#maintoolbar-container', 0)\">toolbar</a> above."
95 ]
95 ]
96 },
96 },
97 {
97 {
98 "cell_type": "code",
98 "cell_type": "code",
99 "collapsed": false,
99 "collapsed": false,
100 "input": [
100 "input": [
101 "import time\n",
101 "import time\n",
102 "time.sleep(10)"
102 "time.sleep(10)"
103 ],
103 ],
104 "language": "python",
104 "language": "python",
105 "metadata": {},
105 "metadata": {},
106 "outputs": []
106 "outputs": []
107 },
107 },
108 {
108 {
109 "cell_type": "markdown",
109 "cell_type": "markdown",
110 "metadata": {},
110 "metadata": {},
111 "source": [
111 "source": [
112 "If the Kernel dies you will be prompted to restart it. Here we call the low-level system libc.time routine with the wrong argument via\n",
112 "If the Kernel dies you will be prompted to restart it. Here we call the low-level system libc.time routine with the wrong argument via\n",
113 "ctypes to segfault the Python interpreter:"
113 "ctypes to segfault the Python interpreter:"
114 ]
114 ]
115 },
115 },
116 {
116 {
117 "cell_type": "code",
117 "cell_type": "code",
118 "collapsed": false,
118 "collapsed": false,
119 "input": [
119 "input": [
120 "import sys\n",
120 "import sys\n",
121 "from ctypes import CDLL\n",
121 "from ctypes import CDLL\n",
122 "# This will crash a Linux or Mac system; equivalent calls can be made on Windows\n",
122 "# This will crash a Linux or Mac system; equivalent calls can be made on Windows\n",
123 "dll = 'dylib' if sys.platform == 'darwin' else 'so.6'\n",
123 "dll = 'dylib' if sys.platform == 'darwin' else 'so.6'\n",
124 "libc = CDLL(\"libc.%s\" % dll) \n",
124 "libc = CDLL(\"libc.%s\" % dll) \n",
125 "libc.time(-1) # BOOM!!"
125 "libc.time(-1) # BOOM!!"
126 ],
126 ],
127 "language": "python",
127 "language": "python",
128 "metadata": {},
128 "metadata": {},
129 "outputs": []
129 "outputs": []
130 },
130 },
131 {
131 {
132 "cell_type": "heading",
132 "cell_type": "heading",
133 "level": 2,
133 "level": 2,
134 "metadata": {},
134 "metadata": {},
135 "source": [
135 "source": [
136 "All of the goodness of IPython works"
136 "All of the goodness of IPython works"
137 ]
137 ]
138 },
138 },
139 {
139 {
140 "cell_type": "markdown",
140 "cell_type": "markdown",
141 "metadata": {},
141 "metadata": {},
142 "source": [
142 "source": [
143 "Here are two system aliases:"
143 "Here are two system aliases:"
144 ]
144 ]
145 },
145 },
146 {
146 {
147 "cell_type": "code",
147 "cell_type": "code",
148 "collapsed": false,
148 "collapsed": false,
149 "input": [
149 "input": [
150 "pwd"
150 "pwd"
151 ],
151 ],
152 "language": "python",
152 "language": "python",
153 "metadata": {},
153 "metadata": {},
154 "outputs": [
154 "outputs": [
155 {
155 {
156 "metadata": {},
156 "metadata": {},
157 "output_type": "pyout",
157 "output_type": "pyout",
158 "prompt_number": 1,
158 "prompt_number": 1,
159 "text": [
159 "text": [
160 "u'/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Notebook/Tutorials'"
160 "u'/Users/bgranger/Documents/Computing/IPython/code/ipython/examples/Notebook/Tutorials'"
161 ]
161 ]
162 }
162 }
163 ],
163 ],
164 "prompt_number": 1
164 "prompt_number": 1
165 },
165 },
166 {
166 {
167 "cell_type": "code",
167 "cell_type": "code",
168 "collapsed": false,
168 "collapsed": false,
169 "input": [
169 "input": [
170 "ls"
170 "ls"
171 ],
171 ],
172 "language": "python",
172 "language": "python",
173 "metadata": {},
173 "metadata": {},
174 "outputs": [
174 "outputs": [
175 {
175 {
176 "output_type": "stream",
176 "output_type": "stream",
177 "stream": "stdout",
177 "stream": "stdout",
178 "text": [
178 "text": [
179 "Basic Output.ipynb Plotting with Matplotlib.ipynb data.csv\r\n",
179 "Basic Output.ipynb Plotting with Matplotlib.ipynb data.csv\r\n",
180 "Custom Display Logic.ipynb Running Code.ipynb \u001b[34mimages\u001b[m\u001b[m/\r\n",
180 "Custom Display Logic.ipynb Running Code.ipynb \u001b[34mimages\u001b[m\u001b[m/\r\n",
181 "Display System.ipynb Typesetting Math Using MathJax.ipynb\r\n",
181 "Display System.ipynb Typesetting Math Using MathJax.ipynb\r\n",
182 "Markdown Cells.ipynb User Interface.ipynb\r\n"
182 "Markdown Cells.ipynb User Interface.ipynb\r\n"
183 ]
183 ]
184 }
184 }
185 ],
185 ],
186 "prompt_number": 2
186 "prompt_number": 2
187 },
187 },
188 {
188 {
189 "cell_type": "markdown",
189 "cell_type": "markdown",
190 "metadata": {},
190 "metadata": {},
191 "source": [
191 "source": [
192 "Any command line program can be run using `!` with string interpolation from Python variables:"
192 "Any command line program can be run using `!` with string interpolation from Python variables:"
193 ]
193 ]
194 },
194 },
195 {
195 {
196 "cell_type": "code",
196 "cell_type": "code",
197 "collapsed": false,
197 "collapsed": false,
198 "input": [
198 "input": [
199 "message = 'The IPython notebook is great!'\n",
199 "message = 'The IPython notebook is great!'\n",
200 "# note: the echo command does not run on Windows, it's a unix command.\n",
200 "# note: the echo command does not run on Windows, it's a unix command.\n",
201 "!echo $message"
201 "!echo $message"
202 ],
202 ],
203 "language": "python",
203 "language": "python",
204 "metadata": {},
204 "metadata": {},
205 "outputs": [
205 "outputs": [
206 {
206 {
207 "output_type": "stream",
207 "output_type": "stream",
208 "stream": "stdout",
208 "stream": "stdout",
209 "text": [
209 "text": [
210 "The IPython notebook is great!\r\n"
210 "The IPython notebook is great!\r\n"
211 ]
211 ]
212 }
212 }
213 ],
213 ],
214 "prompt_number": 3
214 "prompt_number": 3
215 },
215 },
216 {
216 {
217 "cell_type": "markdown",
217 "cell_type": "markdown",
218 "metadata": {},
218 "metadata": {},
219 "source": [
219 "source": [
220 "Tab completion works:"
220 "Tab completion works:"
221 ]
221 ]
222 },
222 },
223 {
223 {
224 "cell_type": "code",
224 "cell_type": "code",
225 "collapsed": false,
225 "collapsed": false,
226 "input": [
226 "input": [
227 "import numpy"
227 "import numpy"
228 ],
228 ],
229 "language": "python",
229 "language": "python",
230 "metadata": {},
230 "metadata": {},
231 "outputs": [],
231 "outputs": [],
232 "prompt_number": 5
232 "prompt_number": 5
233 },
233 },
234 {
234 {
235 "cell_type": "code",
235 "cell_type": "code",
236 "collapsed": false,
236 "collapsed": false,
237 "input": [
237 "input": [
238 "numpy.random."
238 "numpy.random."
239 ],
239 ],
240 "language": "python",
240 "language": "python",
241 "metadata": {},
241 "metadata": {},
242 "outputs": []
242 "outputs": []
243 },
243 },
244 {
244 {
245 "cell_type": "markdown",
245 "cell_type": "markdown",
246 "metadata": {},
246 "metadata": {},
247 "source": [
247 "source": [
248 "Shift-Tab on selection, or after `(` brings up a tooltip with the docstring:"
248 "Shift-Tab on selection, or after `(` brings up a tooltip with the docstring:"
249 ]
249 ]
250 },
250 },
251 {
251 {
252 "cell_type": "code",
252 "cell_type": "code",
253 "collapsed": false,
253 "collapsed": false,
254 "input": [
254 "input": [
255 "numpy.random.rand("
255 "numpy.random.rand("
256 ],
256 ],
257 "language": "python",
257 "language": "python",
258 "metadata": {},
258 "metadata": {},
259 "outputs": []
259 "outputs": []
260 },
260 },
261 {
261 {
262 "cell_type": "markdown",
262 "cell_type": "markdown",
263 "metadata": {},
263 "metadata": {},
264 "source": [
264 "source": [
265 "Adding `?` opens the docstring in the pager below:"
265 "Adding `?` opens the docstring in the pager below:"
266 ]
266 ]
267 },
267 },
268 {
268 {
269 "cell_type": "code",
269 "cell_type": "code",
270 "collapsed": false,
270 "collapsed": false,
271 "input": [
271 "input": [
272 "magic?"
272 "magic?"
273 ],
273 ],
274 "language": "python",
274 "language": "python",
275 "metadata": {},
275 "metadata": {},
276 "outputs": [],
276 "outputs": [],
277 "prompt_number": 8
277 "prompt_number": 8
278 },
278 },
279 {
279 {
280 "cell_type": "markdown",
280 "cell_type": "markdown",
281 "metadata": {},
281 "metadata": {},
282 "source": [
282 "source": [
283 "Exceptions are formatted nicely:"
283 "Exceptions are formatted nicely:"
284 ]
284 ]
285 },
285 },
286 {
286 {
287 "cell_type": "code",
287 "cell_type": "code",
288 "collapsed": false,
288 "collapsed": false,
289 "input": [
289 "input": [
290 "x = 1\n",
290 "x = 1\n",
291 "y = 4\n",
291 "y = 4\n",
292 "z = y/(1-x)"
292 "z = y/(1-x)"
293 ],
293 ],
294 "language": "python",
294 "language": "python",
295 "metadata": {},
295 "metadata": {},
296 "outputs": [
296 "outputs": [
297 {
297 {
298 "ename": "ZeroDivisionError",
298 "ename": "ZeroDivisionError",
299 "evalue": "integer division or modulo by zero",
299 "evalue": "integer division or modulo by zero",
300 "output_type": "pyerr",
300 "output_type": "pyerr",
301 "traceback": [
301 "traceback": [
302 "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m\n\u001b[0;31mZeroDivisionError\u001b[0m Traceback (most recent call last)",
302 "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m\n\u001b[0;31mZeroDivisionError\u001b[0m Traceback (most recent call last)",
303 "\u001b[0;32m<ipython-input-6-dc39888fd1d2>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m()\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[0mx\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[0my\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;36m4\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 3\u001b[0;31m \u001b[0mz\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0my\u001b[0m\u001b[0;34m/\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m-\u001b[0m\u001b[0mx\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m",
303 "\u001b[0;32m<ipython-input-6-dc39888fd1d2>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m()\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[0mx\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[0my\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;36m4\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 3\u001b[0;31m \u001b[0mz\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0my\u001b[0m\u001b[0;34m/\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m-\u001b[0m\u001b[0mx\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m",
304 "\u001b[0;31mZeroDivisionError\u001b[0m: integer division or modulo by zero"
304 "\u001b[0;31mZeroDivisionError\u001b[0m: integer division or modulo by zero"
305 ]
305 ]
306 }
306 }
307 ],
307 ],
308 "prompt_number": 6
308 "prompt_number": 6
309 },
309 },
310 {
310 {
311 "cell_type": "heading",
311 "cell_type": "heading",
312 "level": 2,
312 "level": 2,
313 "metadata": {},
313 "metadata": {},
314 "source": [
314 "source": [
315 "Working with external code"
315 "Working with external code"
316 ]
316 ]
317 },
317 },
318 {
318 {
319 "cell_type": "markdown",
319 "cell_type": "markdown",
320 "metadata": {},
320 "metadata": {},
321 "source": [
321 "source": [
322 "There are a number of ways of getting external code into code cells."
322 "There are a number of ways of getting external code into code cells."
323 ]
323 ]
324 },
324 },
325 {
325 {
326 "cell_type": "markdown",
326 "cell_type": "markdown",
327 "metadata": {},
327 "metadata": {},
328 "source": [
328 "source": [
329 "Pasting code with `>>>` prompts works as expected:"
329 "Pasting code with `>>>` prompts works as expected:"
330 ]
330 ]
331 },
331 },
332 {
332 {
333 "cell_type": "code",
333 "cell_type": "code",
334 "collapsed": false,
334 "collapsed": false,
335 "input": [
335 "input": [
336 ">>> the_world_is_flat = 1\n",
336 ">>> the_world_is_flat = 1\n",
337 ">>> if the_world_is_flat:\n",
337 ">>> if the_world_is_flat:\n",
338 "... print(\"Be careful not to fall off!\")"
338 "... print(\"Be careful not to fall off!\")"
339 ],
339 ],
340 "language": "python",
340 "language": "python",
341 "metadata": {},
341 "metadata": {},
342 "outputs": [
342 "outputs": [
343 {
343 {
344 "output_type": "stream",
344 "output_type": "stream",
345 "stream": "stdout",
345 "stream": "stdout",
346 "text": [
346 "text": [
347 "Be careful not to fall off!\n"
347 "Be careful not to fall off!\n"
348 ]
348 ]
349 }
349 }
350 ],
350 ],
351 "prompt_number": 7
351 "prompt_number": 7
352 },
352 },
353 {
353 {
354 "cell_type": "markdown",
354 "cell_type": "markdown",
355 "metadata": {},
355 "metadata": {},
356 "source": [
356 "source": [
357 "The `%load` magic lets you load code from URLs or local files:"
357 "The `%load` magic lets you load code from URLs or local files:"
358 ]
358 ]
359 },
359 },
360 {
360 {
361 "cell_type": "code",
361 "cell_type": "code",
362 "collapsed": false,
362 "collapsed": false,
363 "input": [
363 "input": [
364 "%load?"
364 "%load?"
365 ],
365 ],
366 "language": "python",
366 "language": "python",
367 "metadata": {},
367 "metadata": {},
368 "outputs": [],
368 "outputs": [],
369 "prompt_number": 8
369 "prompt_number": 8
370 },
370 },
371 {
371 {
372 "cell_type": "code",
372 "cell_type": "code",
373 "collapsed": false,
373 "collapsed": false,
374 "input": [
374 "input": [
375 "%matplotlib inline"
375 "%matplotlib inline"
376 ],
376 ],
377 "language": "python",
377 "language": "python",
378 "metadata": {},
378 "metadata": {},
379 "outputs": [],
379 "outputs": [],
380 "prompt_number": 9
380 "prompt_number": 9
381 },
381 },
382 {
382 {
383 "cell_type": "code",
383 "cell_type": "code",
384 "collapsed": false,
384 "collapsed": false,
385 "input": [
385 "input": [
386 "%load http://matplotlib.org/mpl_examples/showcase/integral_demo.py"
386 "%load http://matplotlib.org/mpl_examples/showcase/integral_demo.py"
387 ],
387 ],
388 "language": "python",
388 "language": "python",
389 "metadata": {},
389 "metadata": {},
390 "outputs": [],
390 "outputs": [],
391 "prompt_number": 10
391 "prompt_number": 10
392 },
392 },
393 {
393 {
394 "cell_type": "code",
394 "cell_type": "code",
395 "collapsed": false,
395 "collapsed": false,
396 "input": [
396 "input": [
397 "\"\"\"\n",
397 "\"\"\"\n",
398 "Plot demonstrating the integral as the area under a curve.\n",
398 "Plot demonstrating the integral as the area under a curve.\n",
399 "\n",
399 "\n",
400 "Although this is a simple example, it demonstrates some important tweaks:\n",
400 "Although this is a simple example, it demonstrates some important tweaks:\n",
401 "\n",
401 "\n",
402 " * A simple line plot with custom color and line width.\n",
402 " * A simple line plot with custom color and line width.\n",
403 " * A shaded region created using a Polygon patch.\n",
403 " * A shaded region created using a Polygon patch.\n",
404 " * A text label with mathtext rendering.\n",
404 " * A text label with mathtext rendering.\n",
405 " * figtext calls to label the x- and y-axes.\n",
405 " * figtext calls to label the x- and y-axes.\n",
406 " * Use of axis spines to hide the top and right spines.\n",
406 " * Use of axis spines to hide the top and right spines.\n",
407 " * Custom tick placement and labels.\n",
407 " * Custom tick placement and labels.\n",
408 "\"\"\"\n",
408 "\"\"\"\n",
409 "import numpy as np\n",
409 "import numpy as np\n",
410 "import matplotlib.pyplot as plt\n",
410 "import matplotlib.pyplot as plt\n",
411 "from matplotlib.patches import Polygon\n",
411 "from matplotlib.patches import Polygon\n",
412 "\n",
412 "\n",
413 "\n",
413 "\n",
414 "def func(x):\n",
414 "def func(x):\n",
415 " return (x - 3) * (x - 5) * (x - 7) + 85\n",
415 " return (x - 3) * (x - 5) * (x - 7) + 85\n",
416 "\n",
416 "\n",
417 "\n",
417 "\n",
418 "a, b = 2, 9 # integral limits\n",
418 "a, b = 2, 9 # integral limits\n",
419 "x = np.linspace(0, 10)\n",
419 "x = np.linspace(0, 10)\n",
420 "y = func(x)\n",
420 "y = func(x)\n",
421 "\n",
421 "\n",
422 "fig, ax = plt.subplots()\n",
422 "fig, ax = plt.subplots()\n",
423 "plt.plot(x, y, 'r', linewidth=2)\n",
423 "plt.plot(x, y, 'r', linewidth=2)\n",
424 "plt.ylim(ymin=0)\n",
424 "plt.ylim(ymin=0)\n",
425 "\n",
425 "\n",
426 "# Make the shaded region\n",
426 "# Make the shaded region\n",
427 "ix = np.linspace(a, b)\n",
427 "ix = np.linspace(a, b)\n",
428 "iy = func(ix)\n",
428 "iy = func(ix)\n",
429 "verts = [(a, 0)] + list(zip(ix, iy)) + [(b, 0)]\n",
429 "verts = [(a, 0)] + list(zip(ix, iy)) + [(b, 0)]\n",
430 "poly = Polygon(verts, facecolor='0.9', edgecolor='0.5')\n",
430 "poly = Polygon(verts, facecolor='0.9', edgecolor='0.5')\n",
431 "ax.add_patch(poly)\n",
431 "ax.add_patch(poly)\n",
432 "\n",
432 "\n",
433 "plt.text(0.5 * (a + b), 30, r\"$\\int_a^b f(x)\\mathrm{d}x$\",\n",
433 "plt.text(0.5 * (a + b), 30, r\"$\\int_a^b f(x)\\mathrm{d}x$\",\n",
434 " horizontalalignment='center', fontsize=20)\n",
434 " horizontalalignment='center', fontsize=20)\n",
435 "\n",
435 "\n",
436 "plt.figtext(0.9, 0.05, '$x$')\n",
436 "plt.figtext(0.9, 0.05, '$x$')\n",
437 "plt.figtext(0.1, 0.9, '$y$')\n",
437 "plt.figtext(0.1, 0.9, '$y$')\n",
438 "\n",
438 "\n",
439 "ax.spines['right'].set_visible(False)\n",
439 "ax.spines['right'].set_visible(False)\n",
440 "ax.spines['top'].set_visible(False)\n",
440 "ax.spines['top'].set_visible(False)\n",
441 "ax.xaxis.set_ticks_position('bottom')\n",
441 "ax.xaxis.set_ticks_position('bottom')\n",
442 "\n",
442 "\n",
443 "ax.set_xticks((a, b))\n",
443 "ax.set_xticks((a, b))\n",
444 "ax.set_xticklabels(('$a$', '$b$'))\n",
444 "ax.set_xticklabels(('$a$', '$b$'))\n",
445 "ax.set_yticks([])\n",
445 "ax.set_yticks([])\n",
446 "\n",
446 "\n",
447 "plt.show()\n"
447 "plt.show()\n"
448 ],
448 ],
449 "language": "python",
449 "language": "python",
450 "metadata": {},
450 "metadata": {},
451 "outputs": [
451 "outputs": [
452 {
452 {
453 "metadata": {},
453 "metadata": {},
454 "output_type": "display_data",
454 "output_type": "display_data",
455 "png": "iVBORw0KGgoAAAANSUhEUgAAAW8AAAEMCAYAAAALXDfgAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3Xl4FFW+xvFvp9NJCAphkdUECAgqLigG2UZgrsB4YQZQ\nAZVFQQRxlAFFUQR1BMVxRAV0QMFxAUXUgRkXBrioiCJIhLAjO5KwG7ORpde6f5SJooGQpLuru/N+\nnqefFElXnR+QvBxOnTrHZhiGgYiIhJUoqwsQEZHyU3iLiIQhhbeISBhSeIuIhCGFt4hIGFJ4i4iE\nIYW3iEgYUniLiIShMsN727ZtTJ06lXXr1gFwxx13BLomEREpQ5nhXVBQgMPhwDAMdu7cyQUXXBCM\nukRE5CzKDO927dqxceNGOnTowLp16+jUqVMw6hIRkbM4pzHv+Ph4ANatW0eHDh0CWpCIiJTtnMI7\nKSmJ999/nw0bNlC/fv1A1yQiImUoM7znzZtH165dufLKKxkwYMAZ3/fEE0/4sy4RETkLW1lLwi5f\nvhyXy8Xx48cZPnw4UVGl573NZkOry4qIBEeZ4X3OF1J4i4gEjR7SEREJQwpvEZEwpPAWEQlDCm8R\nkTCk8BYRCUMKbxGRMKTwFhGxSmFhhU9VeIuIWCEnBxITK3y6wltExArz5kFmZoVP1xOWIiLB5vFA\n8+Zw6BBUMDfV8xYRCbYlS8zgbtGiwpdQeIuIBNsLL5gfx46t8CU0bCIiEkzffAPt20NCAqSnw3nn\nVegy6nmLiATTiy+aH0eOrHBwg3reIiLBk54OzZqZxwcOaKqgiEhYeOkl8Hqhf/9KBTeo5y0iEhyn\nTpmBnZ1tjnu3a1epy6nnLSISDG++aQZ3x46VDm5QeIuIBJ7PBzNmmMfjxvnlkgpvEZFA++QT2LMH\nmjSBvn39ckmFt4hIoBU/lDNmDERH++WSumEpIhJImzbBVVeZc7ozMqBmTb9cVj1vEZFAKn4oZ/hw\nvwU3qOctIhI4GRnm6oFutznm3by53y6tnreISKA89xy4XHDzzX4NblDPW0QkME6cgKZNza3ONm2C\nK6/06+XV8xYRCYQXXjCD+49/9Htwg3reIiL+l5VlzunOy4N16+Daa/3ehHreIiL+NmuWGdzXXx+Q\n4Ab1vEVE/Csvz+x1Z2XBqlXQpUtAmlHPW0TEn+bMMYO7Uye47rqANaOet4iIvxQWmjNMTpyA//4X\n/vCHgDWlnreIiL/Mm2cGd9u20LNnQJtSz1tExB9cLvNBnIwMWLwY+vULaHPqeYuI+MNbb5nB3bo1\n9OkT8OYU3iIileXxwLRp5vHEiRAV+GhVeIuIVNaiRbB/P7RoAQMGBKVJhbeISGV4PDB1qnn8yCN+\n22yhLApvEZHKmD8fvvsOmjWDwYOD1qxmm4iIVFRREbRsCenpsGABDBoUtKbV8xYRqajZs83gvuIK\nuPXWoDatnreISEXk5kJyMmRmwscfQ69eQW1ePW8RkYqYPt0M7k6d4H//N+jNq+ctIlJeJ06Yve78\nfPjyS+jcOeglqOctIlJeTz9tBnevXpYEN6jnLSJSPgcPQqtW5o7wmzaZNystoJ63iEh5PPGEuQjV\nbbdZFtygnreIyLnbts0MbLsddu0yx70top63iMi5mjQJDANGjbI0uEE9bxGRc7N2LXTsCPHxsG8f\nNGhgaTnqeYuIlMUwYPx483jcOMuDG9TzFhEp29tvm4tO1asHu3dDzZpWV6Set4jIWeXlwYMPmsd/\n+1tIBDcovEVEzu6pp+DoUWjXDoYOtbqaEho2ERE5kz17zD0p3W745hszwEOEet4iImcybpwZ3MOG\nhVRwg3reIiKl++QT6N0batQwb1LWr291RadRz1tE5NecThg71jx+4omQC25QeIuI/NaLL8LevXDJ\nJXDvvVZXUyoNm4iI/NLhw+aqgfn5sGIFdO9udUWlUs9bROSXJkwwg7tfv5ANblDPW0TkZ199Bb/7\nHcTGws6d0KyZ1RWdkXreIiJg3qQcOdI8fuihkA5uUHiLiJimTDF72y1bwsSJVldTJg2biIhs2gTX\nXAM+H6xebdm+lOWhnreIVG1uNwwfDl4v/PnPYRHcoPAWkaruuecgLQ2aNIFp06yu5pxp2EREqq7v\nvoM2bcyblcuXQ48eVld0ztTzFpGqyeuFO+80g3vYsLAKblB4i0hV9fLL8PXX5pZm06dbXU25adhE\nRKqeAwfgssugoACWLIG+fa2uqNzU8xaRqsUwcA8bZgb3gAFhGdyg8BaRKsb3j3/g+OILCqtXh1mz\nrC6nwhTeIlJ1bN2KMW4cAKsHDjR3gw9TCm8RqRoKCnDdeCN2t5uTf/oT+9q2tbqiSlF4i0iV4Bkz\nhpi9eyls0oQTjz5qdTmVpvAWkcj3/vtEv/YaXoeDU/PmYcTHW11RpSm8RSSyHTyI9847AcidPBlP\n69YWF+QfCm8RiVxuN+4BA7Dn5ZHTrRtFP4V4JFB4i0jE8k6ejCM1laK6dSmcNQtsNqtL8huFt4hE\nJOPTT4l69ll8Nhun5szBqF3b6pL8SuEtIpHn2DHct9yCzTDIGzMGd8eOVlfkdwpvEYksTieu3r2J\n+eEHCtq2peCBB6yuKCAU3iISOQwDz4gRxGzYgLNePfL++U+Ijra6qoBQeItIxPC98ALRCxbgiYkh\nd/58fBdcYHVJAaPwFpHIsHw5tgcfBCBnxgw8l19ucUGBpfAWkfC3axeem2/G5vORdd99uPr0sbqi\ngFN4i0h4y87GfcMNRJ86Re7111M0YYLVFQWFwltEwpfXi+umm3AcOEBBixYUzJ4NUVUj1qrG71JE\nIpLn/vuJ+ewzXDVrcurttzGqV7e6pKBReItIWPI++yzRM2fis9vJe/11vImJVpcUVApvEQk7vldf\nxf7T2Hb288/jat/e4oqCT+EtImHFWLQI2913A5A1ZQrO/v0trsgaCm8RCR/LlmEMHozNMMi+//6I\nWuK1vBTeIhIevvoKb9++RHk8ZA8fTmGErllyrhTeIhL6Nm3Ce8MN2J1Ocm68kcIpUyJqbe6KUHiL\nSGjbvRv373+P/dQpcrt3p+DFF6t8cIPCW0RC2Y4duDp3xpGVxamOHcl/9dWIXSWwvBTeIhKaUlPx\ndOxIzMmTFLRty6k334TYWKurChkKbxEJPatW4e3aleicHE5ddx05ixZVqacnz4XCW0RCy0cf4evZ\nE3tBATm9epE3fz7Ex1tdVchReItIyDDmz8fXty9RLhfZt95KwZw54HBYXVZIUniLSEjwzZqFbehQ\nonw+skePpvC558But7qskKXbtiJiLZ8Pz6RJRE+bBkD2xIkU3nuvxUWFPoW3iFgnNxf3rbfiWLoU\nn81GzjPPUDRkiNVVhQWFt4hYY9cu3L164di3D/d555H7yiu4unWzuqqwofAWkeD75BO8AwfiyM+n\noHlzTs2fj7dpU6urCiu6YSkiwWMY+KZMwfjjH7Hn55PbvTu5y5YpuCtAPW8RCY68PNyDB+P48EMM\nm42s8eMpGjdO65RUkMJbRAJv9WpcgwYRk5GBOz6e3NmzcXXvbnVVYU3DJiISOEVFeMeOxejalZiM\nDAouvpisZcsU3H6gnreIBMa33+K+7TYce/bgi4oi5777zA0U9MSkXyi8RcS/3G68f/0rtmnTcPh8\nFCQlUTBnDu42bayuLKIovEXEf9avx3nnncRu24Zhs5E9bBiFkyZBtWpWVxZxFN4iUnmHD+N56CGi\n33mHWKCoYUPyZ83C1bGj1ZVFLIW3iFRcQQG+v/8d45lniC4qwhsdzakRIyi8/36M886zurqIpvAW\nkfIzDIyFC/GMH4/j6FEAcrt3p+jJJ/E2aWJxcVWDwltEzp3PB0uX4nzsMWLT0nAA+S1bUjRtGq4O\nHayurkpReItI2dxuePddXFOnErN7N7GAs1YtCiZOpOiWW7TutgUU3iJyZvn5GPPm4Xn2WRxHjhAD\nOOvWpWj0aAqHDNG4toUU3lIxPh94PObL7f752G6HuDhzl+/oaK1bEa727sXz2msYs2fjyMnBARQk\nJuIcO5aim26CmBirK6zyFN5icrng4EHYvx/278fIyMB94gTekycxfvgBW1YWUdnZ2HNysBcVYfP5\nyrykYbPhi4nB+OnlO/98fAkJkJCArU4d7HXqYK9bl6i6daF+fWjQABo2ND8mJCj4gy0nB957D9e8\necSsX18SDqcuuwzXuHE4e/aEKK2oESoU3lVNQQGkpWGkpuLesAHvnj1Eff89McePYzOMkrfZgLL6\nVj67HSM6GsNuL3nh9RLldhPlchHl82F3OsHpNE/IzDznMn0OB566dfE1aIAtMRF7cjLRzZpBUpL5\nSkyEunUV8JXl9cLKlbjnziXqo4+wu1zEAJ7YWAr+8Afct9+O69pr9eccghTekczrNYN6/Xqca9Zg\npKYSt28fNp/vN+FsREVR1KAB7sREjKZNISkJo3ZtfAkJ+BISMGrVwlerlnkcH28Oj5T1A+3xYHO5\nwOnEVlREVF4etuxsonJyiMrJwZadjS0nxwz1Y8ewnThB9IkTOH78keiCAmKOHoWjRyEtrfTfXlwc\n7saNoWlT7BddRHSLFtiSk6FZM0hOhho1/PUnGVmOH4fly3F9+CFR//d/ROfmUrzaSF7btngGDcLZ\nu7fGs0OcwjvSHD2KsWwZRUuW4Fi1iui8PGxA3E9f9kVFUXDRRXjbtMHXpg3eZs3wNmmC98IL/b9g\nUHQ0RnQ0xMdjAL6GDc/5VFtBAVEnTmA/doyoI0ewZ2RAejqkp2M/fJiYY8dw5Odj37cP9u2DTz/9\nzTXcNWviTUrC1rw5jlatiGrRwgz1Zs3Mnnt0Ffn2d7lg/Xp8S5fi+egjYrZtA37+x7vwwgtxDRyI\nc8AAvImJ1tUp5VJFvnsjmM8Ha9bg/egj3B9/TNzOndiA4pUkCho3xp2SAm3b4r7yStyXXgrx8VZW\nfE6M+Hi8TZuedYcVW04O9vR07OnpRB86BAcOwIEDRKenE3v0qHmjbetW2Lr1t9ePisLVoAFGkyZE\nNW+Oo2VLs9fepIk5LNOoUXiGu8cDO3dCaire9evxrF2LY+dOcygLM7C9MTGcSknB6NED1//8D97k\nZKurlgoIw+9OAWDPHjyvvYbvrbeIOXoUO2AHvLGxFLZvj7dHD5zdukX09lJGzZp4atbEc9llOH/z\nRYOokyexf/890YcOEXXwIMb+/UQdOIAjI4PYzExijxyBI0dg7drfXjsqCne9evgaN8aWlER0s2bY\nExPNm6m/vLFao0bwx4MNA06eNP/HsX8/xr59eHbvxrtjB44dO8z7DFDyPQFQ2KQJ7m7d8HTvjrN9\ney0UFQEU3uEkOxvfwoU4586lWlpayV9eUYMGuHr1wn399ebNpbi4s16mSrDZ8NWrh69ePfN/Hr/m\ndGLPyCjptdsOHoQDB4jKyMBx7BgxP/5IzLFjcOwYbNhwxma8sbF46tTBKJ5FU7s2UT/NpImqUwdq\n1jSnTRZPn/zlR5vt9KmWv/yYmws//oiRmYn35MmSWT9kZuI4cgR7YeHPv1XA8dMLoLBhQ5xXXAHX\nXIO3TRvcl1+OofH/iKPwDgcbNuB+5hmi/vMf7G431QBPXByFvXrhuvVWXO3bawpXecXG4m3eHG/z\n5rhK+7rLhf3YMeyHD2M/fJiow4cxjh2Do0eJOn4c+w8/EJOZSXRREfbiHnwA2DB/SH/9g+o+7zyc\njRvjadIEW3IyRnIy3iZNcLdujVG7dkBqkdCi8A5VhoGxciVFf/0r1daswYE5b/pU+/Z4bruNohtu\nwKhe3eoqI1dMDN6kJLxJSWd9my0/n6iTJ0tmz5w2kyY7GyM3F6OoCKOoyJx143JhczqxOZ3m33F0\nNNjtGA6HOYMnOhqbw2H2lGvXxla7Nr7atTF+mvXjS0jA27ix2dOXKk3hHWq8Xox//Qvnk08St327\n2cuuVo38wYNx3nWXOStEQoZRvTre6tXxWl2IVDkK71Dh9WK88QbuJ58k5tAh4gBXQgJFo0ZRcPvt\n6mmJyGkU3qHg889xjh5N7K5dxABFjRpRdO+9FA4cqFkBIlIqhbeV9u7FOWYMsf/9r7nEZv36FEya\nRFGfPuE5x1hEgkYJYYWcHFxPPEH0Sy8R6/HgiYsjf8wYCkaNUk9bRM6JwjuYDAPjjTfwPPAAMVlZ\nAOTddBMFjz6Kr0EDi4sTkXCi8A6Wo0dx3XEHMStWmFtHXX01hU89hfvKK62uTETCkMI7CHzvvot3\n1ChicnNxn3ceeVOn4uzfX8tsikiFKbwD6ccfcY4YQeySJUQB+Z07c+rFF/E1amR1ZSIS5hTeAWIs\nXYrn9tuJ/eEHPHFxnHr8cQqHDlVvW0T8QuHtb243nr/8hejZs82x7auuIv/llyN6dT8RCT6Ftz+d\nOIGrTx9i1q3DGx1N3kMPUTh6tLlmhYiIHym8/WXDBujXj5j0dApr1SL/rbdwt21rdVUiEqG0jqg/\nLFgAnTtDejrZl1zC2lmzFNwiElDqeVeGxwMTJsDzz5u/HjGC1D598GiYREQCTD3vivrxR/jDH8zg\njo6G2bPh1VcxYmLKPldEpJLU866II0egRw/Yvh3q14cPPjCHTUREgkThXV779kH37uZO5ZdeCsuW\nQWKi1VWJSBWjYZPy2LrV7GEfOAApKbB6tYJbRCyh8D5X69ZBly7mbuLdusGnn0KdOlZXJSJVlML7\nXKxcCddfD1lZ0KcPLF0K559vdVUiUoUpvMuyeDH06gX5+TBkiHlzMi7O6qpEpIpTeJ/N++9D//7g\ncsF998Ebb2h7MhEJCQrvM1m2DAYNAp8PHn0UZsyAKP1xhaLXX3+dli1bsnHjRqtLEQkapVFpvvoK\nbrwR3G4YNw6mTNFSriGsf//+xMXFcdVVV1ldikjQKLx/bdMm6N0bCgth2DCYPl3BHeLWrFlD+/bt\nsenvSaoQhfcv7d5tPjmZk2P2vF99VcEdBr744gtsNhuLFy9mwoQJ7Ny50+qSRAJO4V0sPd2cDnjy\npPkE5Tvv6OZkCJo3bx6tW7emZ8+e7Nu3D4Avv/ySkSNHcuONN9K9e3f+9re/WVylSOApvAFOnDAD\nOz0dOnSAJUsgNtbqquRX1qxZw5NPPslbb73FqVOneOCBBzh8+DCGYdD2pyV4T5w4QWZmpsWVigSe\nwvvUKbjhBti1C664Aj75BKpXt7oqKcVTTz1F165dad26NYZh0KhRI7Zs2UK7du1K3vPFF1/w+9//\n3sIqRYKjao8L+HzmgzcbN0Lz5rB8OdSqZXVVUoqNGzeyefNmZsyYQVxcHF9//TVgDpnUrFkTgP37\n9/Pdd9/xwgsvWFmqSFBU7Z7344/Dv/8NNWuaj7w3aGB1RXIGH3zwAQDdunU77fOdO3fGZrPx3nvv\nMXfuXN5//33i4+OtKFEkqKpuz3vRIpg61Xzw5r33oGVLqyuSs1ixYgWtWrWizq8WA7PZbDz22GMA\nDBgwwIrSRCxRNXveGzeac7jBnMfdo4e19chZ7d+/n6NHj542ti1S1VW98D52zFwZsPghnL/8xeqK\npAxr1qwB0BOUIr9QtcLb6TQfvsnIgI4dzX0n9RBOyCsO7yuuuMLiSkRCR9UJb8OAu++GtWvN3W8W\nL9Zc7jCxbt06YmNjaan7EiIlqk54z5hhLularRr85z/mxsES8vbt28fJkye5+OKLsdvtVpcjEjKq\nRnh//TWMH28ev/kmaOw0bKxbtw6A1q1bW1yJSGiJ/PDOyoJbbwWvFx580NxcQcLGN998A8All1xi\ncSUioSWyw9sw4K674NAhc7f3qVOtrkjKacOGDUBohLfX663wuR6Px4+ViER6eM+dC//6l7lZ8Lvv\nQkyM1RVJOWRmZnLw4EFsNhutWrWytJalS5eWPOVZETNnziQ1NdWPFUlVF7nhvX37z3O4X3kFkpOt\nrUfK7dtvvwWgbt261K5dO+DtHThwgKFDhzJ16lQefvhhDMMAYO3ataxbt46BAwdW+Npjxoxh5syZ\n7Nmz55zeP3z4cHr06EFKSkqF25TIFpnhXVgIAwdCURHccYc55i1hpzi8L7744oC35XK5uO222+jV\nqxcnT55k4cKF5OXlkZeXx9SpU5k4cWKlrh8dHc20adMYM2bMOQ2hzJ07l/bt23PkyJFKtSuRKzLD\n+/77zZ53q1Ywa5bV1UgFFW8oHIzx7lWrVnHo0CE6dOjAsGHDWLBgATVq1GDmzJn069ePuLi4Srdx\n4YUX0qpVKxYtWlTme+12u2bYyFlF3sJUixfDnDnm+PbChXDeeVZXJBXg9XrZvHkzAJdeemnA21u7\ndi116tQhKSmJpKQkAAoKCnjnnXdKnvD0h+HDhzN69GgGDRrkt2tK1RRZPe9Dh+DOO83jZ5/VfO4w\ntnfvXgoLC7HZbEEJ77S0NNq0aXPa51auXEliYiIJCQl+a+eyyy4jKyuLrVu3+u2aUjVFTs+7eGOF\n7Gxz9/cxY6yuSCph06ZNgDlWHMjH4seOHcvJkydJTU2lRYsWDBo0iKSkJKZNm8bq1au55pprznju\nli1b+OCDD7Db7aSnp/Pcc88xf/58cnNzOXbsGOPHj6dJkyannRMVFUVKSgqrVq3i8ssvL/n8rl27\nmDlzJgkJCcTFxREbG3vWm7QVaVsiS+SE9+zZsHq1+dj7669rwakwVxzeF110EQ6HI2DtvPjiiyVj\n3Q8//DA33HBDyde2b9/O4MGDSz3v+++/59133+Xpp58GzH8EevfuzYwZM/D5fPTr14/LL7+ckSNH\n/ubc5ORkduzYUfLr1NRUhgwZwhtvvEH79u0ByM/PZ+DAgdhK+T6uTNsSOSJj2OT77+Hhh83jl1+G\nunWtrUcqbcuWLQCn9U4DZdu2bYA5pPFL6enp1KhRo9Rz5syZw6RJk0p+XVBQQK1atWjbti2NGzdm\n1KhRZ9wcIiEhgfT0dAB8Ph9jx46lU6dOJcENUL16dfr06VMyXdFfbUvkCP/wNgwYOdLcSPimm8yX\nhDWv18vOnTuB4CwDu23bNmrUqEFiYuJpn8/LyztjeN9zzz2nbbe2YcMGfve73wHQqFEjJk+efMax\n8lq1apGbmwuY0yEPHjxYrvnclWlbIkf4h/ebb8KKFebGwS+9ZHU14gd79+7F6XRis9m48sorA97e\n9u3bS52WZ7PZSu35AqcF/d69ezl27BgdO3Y8p/Z8Pl/JdYvncZcnbCvTtkSO8A7vo0dh3DjzeMYM\nbSAcIbZv3w6Aw+EIylznHTt2lNpOjRo1yMrKKvP8NWvWEBMTc9rNze+///6M78/Ozi7Z8b5hw4YA\nFBYWlrfsCrUtkSN8w9sw4M9/NmeX3HADnOHGkoSf4vC++OKLiQnwejRZWVkcOXKk1OmISUlJpYZ3\nYWEhU6ZM4bvvvgNg9erVXHrppSUP8vh8PmbPnn3GNrOzs0vmkl9zzTU0btyYtLS037yvtCcxK9u2\nRI7wDe8PPoAlS8xFp155RbNLIkhxMAVjz8rim5WlhXdKSkqpa5F89tlnzJkzh127drFnzx4OHjx4\n2j8yM2bMOOsNw927d5eM5dvtdp5//nlWrlx52gyU48ePlzyJeejQIb+1LZEjPKcKZmbCvfeax88+\na25rJhEjmOG9detWatasWeqwSbdu3Xj88cd/8/kOHTowYMAAtmzZwrZt2/joo4+YOHEiEyZMwOFw\n0LNnT66++upS2/N4PHz77benzRbp3Lkzb7/9Ni+88AIXXngh8fHxxMTEcPPNN/OPf/yDIUOGMHLk\nSAYNGlSptiWy2Iwz3ZEp74XOcnPH74YMgQULoEsX+OwziAqd/0CsWLECr9f7m6f15Nzk5ORw6aWX\nYrPZWLVqFS1atAhoe6NHj8br9fLqq6/+5mtOp5Orr76aTz/9lAZ+up+SmprKQw89xOeff+6X60nF\nZGZmsnr1au655x6rS6mw0Em9c7V0qRnc1arBvHkhFdxSebt27QLM2ReBCu6XXnqJW265BYDNmzfT\nq1evUt8XGxvLsGHDmDdvnt/anjt3LqNGjfLb9aTqCq/kKyw0b1ICTJkCAe6VSfDt3r0bgHbt2gWs\njcWLFxMTE8OOHTtwOBz07t37jO+95557+Pzzz8nOzq50u3v37uXw4cOVWhdcpFh4hff06XDwIFx+\n+c8bLUhEKe55//JpQ3+7++67adCgATNnzmTevHln3ZU+Pj6e6dOn8+CDD1ZqWLCoqIhJkybx8ssv\nl/rIu0h5hc8Ny/R0+GktB2bOhOjwKV3OXfGMi0D2vAcMGFCuGRlt2rRh8ODBvPbaa4wYMaJCbc6c\nOZNHHnmEpk2bVuh8kV8LnwQcP94cNhkwALp2tboaCZCdO3cSHx8flDVNyqNLly506dKlwuc/9NBD\nfqxGJFyGTVatgvfeM29S/v3vVlcjAZKRkUFOTg5XXXXVWYcyRCQcwtvj+Xlt7kcegZ+eTJPIU7yS\nYKdOnSyuRCT0hX54v/IKbN0KzZrBgw9aXY0EUPEj4p07d7a4EpHQF9rh/cMPMHmyefz88+CHTWAl\ndG3cuJHzzz8/KE9WioS70A7vSZMgKwu6d4c+fayuRgKosLCQtLQ0rrvuOqL04JVImUL3pyQtDV59\n1ZwSOGOGFp6KcGvWrMHpdNKzZ0+rSxEJC6EZ3oYB991nfhwzBi65xOqKxM8mT57M9ddfX7Ls6ZIl\nS0hISDjjo+oicrrQDO9334U1a6BePXjsMaurkQD48ssvKSwsxOv1cvjwYZYuXcpdd91Vsi61iJxd\n6D2k43LBo4+ax08/DT/tOCKRJSUlhQsuuIDs7GzGjRtHcnIyfy5et0ZEyhR6Pe+5c+HAAXOo5Pbb\nra5GAuSRRx4hLS2Njh07EhcXx9tvv43D4Sj1vR6Ph2effZa33nqL1157jaFDh2qrL6nyQqvnfeqU\nuVogwFNPaf2SCFa7dm0WLlx4Tu+dMGECl1xyCUOHDuXHH39k+vTpNGnSJMAVioS20Op5z5gBx49D\nu3bQt6/V1UgI2LFjBx9++CFDhgwBzLVPArnioEi4CJ3wzsw0tzQDeOYZTQ0UwLyxee211xIbGwvA\nV199RaeMRggBAAADwUlEQVROncjJybG4MhFrhU54P/MM5OZCjx7QrZvV1UiISEhI4IILLgAgPz+f\npUuXkpKSwuLFiy2uTMRaoTGonJEBs2aZx8VrdosAffv2Zf369fz73//G6XTSr18/Pvvss5BbMlYk\n2EIjvP/6V3A6zbW627a1uhoJIbGxsUyfPt3qMkRCjvXDJt99B//8J9jtP880ERGRs7I+vCdPBp8P\n7rwTWra0uhoRkbBgbXinpsIHH5hLveoxeBGRc2ZteE+caH4cMwYaN7a0FBGRcGJdeH/+Oaxcaa5d\nMmGCZWWIiIQj68K7+Obk+PFQu7ZlZYiIhCNrwvvrr82ed40acO+9lpQgIhLOrAnvp54yP953HyQk\nWFKCiEg4C354b9wIS5dCfDyMHRv05oNhy5YtVpcgImXYvXu31SVUSvDDu/jx97vvhrp1g958MCi8\nRULfnj17rC6hUoIb3tu3w7/+BbGx8MADQW1aRCSSBHdtk2nTzI/Dh0OjRkFtOpiKioq004tICMvL\ny7O6hMoz/KRLly4GoJdeeumlVzlejz/+eIUy12YYhoGIiIQV6xemEhGRclN4i4iEIYW3iEgYUniL\niIQhhbeIVClFRUXcfPPNzJ8/3+pSKiU09rCMEAsXLsTtdpORkUG9evUYMWKE1SWJyK/ExcVx4YUX\nkpKSYnUplaKet5/s2rWL5cuXM3ToUOx2O5dddpnVJYnIGezcuZNWrVpZXUalKLz9ZMGCBfzpT38C\nYPPmzVx11VUWVyQipXG73Rw6dIhPPvmEhx9+GJ/PZ3VJFaLw9pPs7GxatWqFy+UiLy+Pb7/91uqS\nRKQUW7ZsoW/fvvTu3Ruv18vWrVutLqlCNObtJ0OHDmXFihXs2LGD5s2bc/ToUatLEpFSpKWl0aVL\nFwB27NhB7TDdyUvh7ScpKSklN0D69+9vcTUicibZ2dlcd911ZGVlYbfbSUxMtLqkCtHaJiJSpezb\nt4+PP/6Y7OxsRo0aRYMGDawuqUIU3iIiYUg3LEVEwpDCW0QkDOmGpYiIxbxeL4sWLWL//v0kJiay\nfv16HnjgAZKTk894jnreIiIW27x5MzfddBPJycn4fD769+9Pw4YNz3qOwltExGJXX301sbGxrF27\nlq5du9K1a1eqVat21nMU3iIiFktNTeWHH35g27ZtNGvWjC+//LLMczTmLSJisWXLllG/fn06derE\nkiVLqFu3bpnnaJ63iEgY0rCJiEgYUniLiIQhhbeISBhSeIuIhCGFt4hIGFJ4i4iEIYW3iEgYUniL\niISh/weZPyRnS1m/IAAAAABJRU5ErkJggg==\n",
455 "png": "iVBORw0KGgoAAAANSUhEUgAAAW8AAAEMCAYAAAALXDfgAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3Xl4FFW+xvFvp9NJCAphkdUECAgqLigG2UZgrsB4YQZQ\nAZVFQQRxlAFFUQR1BMVxRAV0QMFxAUXUgRkXBrioiCJIhLAjO5KwG7ORpde6f5SJooGQpLuru/N+\nnqefFElXnR+QvBxOnTrHZhiGgYiIhJUoqwsQEZHyU3iLiIQhhbeISBhSeIuIhCGFt4hIGFJ4i4iE\nIYW3iEgYUniLiIShMsN727ZtTJ06lXXr1gFwxx13BLomEREpQ5nhXVBQgMPhwDAMdu7cyQUXXBCM\nukRE5CzKDO927dqxceNGOnTowLp16+jUqVMw6hIRkbM4pzHv+Ph4ANatW0eHDh0CWpCIiJTtnMI7\nKSmJ999/nw0bNlC/fv1A1yQiImUoM7znzZtH165dufLKKxkwYMAZ3/fEE0/4sy4RETkLW1lLwi5f\nvhyXy8Xx48cZPnw4UVGl573NZkOry4qIBEeZ4X3OF1J4i4gEjR7SEREJQwpvEZEwpPAWEQlDCm8R\nkTCk8BYRCUMKbxGRMKTwFhGxSmFhhU9VeIuIWCEnBxITK3y6wltExArz5kFmZoVP1xOWIiLB5vFA\n8+Zw6BBUMDfV8xYRCbYlS8zgbtGiwpdQeIuIBNsLL5gfx46t8CU0bCIiEkzffAPt20NCAqSnw3nn\nVegy6nmLiATTiy+aH0eOrHBwg3reIiLBk54OzZqZxwcOaKqgiEhYeOkl8Hqhf/9KBTeo5y0iEhyn\nTpmBnZ1tjnu3a1epy6nnLSISDG++aQZ3x46VDm5QeIuIBJ7PBzNmmMfjxvnlkgpvEZFA++QT2LMH\nmjSBvn39ckmFt4hIoBU/lDNmDERH++WSumEpIhJImzbBVVeZc7ozMqBmTb9cVj1vEZFAKn4oZ/hw\nvwU3qOctIhI4GRnm6oFutznm3by53y6tnreISKA89xy4XHDzzX4NblDPW0QkME6cgKZNza3ONm2C\nK6/06+XV8xYRCYQXXjCD+49/9Htwg3reIiL+l5VlzunOy4N16+Daa/3ehHreIiL+NmuWGdzXXx+Q\n4Ab1vEVE/Csvz+x1Z2XBqlXQpUtAmlHPW0TEn+bMMYO7Uye47rqANaOet4iIvxQWmjNMTpyA//4X\n/vCHgDWlnreIiL/Mm2cGd9u20LNnQJtSz1tExB9cLvNBnIwMWLwY+vULaHPqeYuI+MNbb5nB3bo1\n9OkT8OYU3iIileXxwLRp5vHEiRAV+GhVeIuIVNaiRbB/P7RoAQMGBKVJhbeISGV4PDB1qnn8yCN+\n22yhLApvEZHKmD8fvvsOmjWDwYOD1qxmm4iIVFRREbRsCenpsGABDBoUtKbV8xYRqajZs83gvuIK\nuPXWoDatnreISEXk5kJyMmRmwscfQ69eQW1ePW8RkYqYPt0M7k6d4H//N+jNq+ctIlJeJ06Yve78\nfPjyS+jcOeglqOctIlJeTz9tBnevXpYEN6jnLSJSPgcPQqtW5o7wmzaZNystoJ63iEh5PPGEuQjV\nbbdZFtygnreIyLnbts0MbLsddu0yx70top63iMi5mjQJDANGjbI0uEE9bxGRc7N2LXTsCPHxsG8f\nNGhgaTnqeYuIlMUwYPx483jcOMuDG9TzFhEp29tvm4tO1asHu3dDzZpWV6Set4jIWeXlwYMPmsd/\n+1tIBDcovEVEzu6pp+DoUWjXDoYOtbqaEho2ERE5kz17zD0p3W745hszwEOEet4iImcybpwZ3MOG\nhVRwg3reIiKl++QT6N0batQwb1LWr291RadRz1tE5NecThg71jx+4omQC25QeIuI/NaLL8LevXDJ\nJXDvvVZXUyoNm4iI/NLhw+aqgfn5sGIFdO9udUWlUs9bROSXJkwwg7tfv5ANblDPW0TkZ199Bb/7\nHcTGws6d0KyZ1RWdkXreIiJg3qQcOdI8fuihkA5uUHiLiJimTDF72y1bwsSJVldTJg2biIhs2gTX\nXAM+H6xebdm+lOWhnreIVG1uNwwfDl4v/PnPYRHcoPAWkaruuecgLQ2aNIFp06yu5pxp2EREqq7v\nvoM2bcyblcuXQ48eVld0ztTzFpGqyeuFO+80g3vYsLAKblB4i0hV9fLL8PXX5pZm06dbXU25adhE\nRKqeAwfgssugoACWLIG+fa2uqNzU8xaRqsUwcA8bZgb3gAFhGdyg8BaRKsb3j3/g+OILCqtXh1mz\nrC6nwhTeIlJ1bN2KMW4cAKsHDjR3gw9TCm8RqRoKCnDdeCN2t5uTf/oT+9q2tbqiSlF4i0iV4Bkz\nhpi9eyls0oQTjz5qdTmVpvAWkcj3/vtEv/YaXoeDU/PmYcTHW11RpSm8RSSyHTyI9847AcidPBlP\n69YWF+QfCm8RiVxuN+4BA7Dn5ZHTrRtFP4V4JFB4i0jE8k6ejCM1laK6dSmcNQtsNqtL8huFt4hE\nJOPTT4l69ll8Nhun5szBqF3b6pL8SuEtIpHn2DHct9yCzTDIGzMGd8eOVlfkdwpvEYksTieu3r2J\n+eEHCtq2peCBB6yuKCAU3iISOQwDz4gRxGzYgLNePfL++U+Ijra6qoBQeItIxPC98ALRCxbgiYkh\nd/58fBdcYHVJAaPwFpHIsHw5tgcfBCBnxgw8l19ucUGBpfAWkfC3axeem2/G5vORdd99uPr0sbqi\ngFN4i0h4y87GfcMNRJ86Re7111M0YYLVFQWFwltEwpfXi+umm3AcOEBBixYUzJ4NUVUj1qrG71JE\nIpLn/vuJ+ewzXDVrcurttzGqV7e6pKBReItIWPI++yzRM2fis9vJe/11vImJVpcUVApvEQk7vldf\nxf7T2Hb288/jat/e4oqCT+EtImHFWLQI2913A5A1ZQrO/v0trsgaCm8RCR/LlmEMHozNMMi+//6I\nWuK1vBTeIhIevvoKb9++RHk8ZA8fTmGErllyrhTeIhL6Nm3Ce8MN2J1Ocm68kcIpUyJqbe6KUHiL\nSGjbvRv373+P/dQpcrt3p+DFF6t8cIPCW0RC2Y4duDp3xpGVxamOHcl/9dWIXSWwvBTeIhKaUlPx\ndOxIzMmTFLRty6k334TYWKurChkKbxEJPatW4e3aleicHE5ddx05ixZVqacnz4XCW0RCy0cf4evZ\nE3tBATm9epE3fz7Ex1tdVchReItIyDDmz8fXty9RLhfZt95KwZw54HBYXVZIUniLSEjwzZqFbehQ\nonw+skePpvC558But7qskKXbtiJiLZ8Pz6RJRE+bBkD2xIkU3nuvxUWFPoW3iFgnNxf3rbfiWLoU\nn81GzjPPUDRkiNVVhQWFt4hYY9cu3L164di3D/d555H7yiu4unWzuqqwofAWkeD75BO8AwfiyM+n\noHlzTs2fj7dpU6urCiu6YSkiwWMY+KZMwfjjH7Hn55PbvTu5y5YpuCtAPW8RCY68PNyDB+P48EMM\nm42s8eMpGjdO65RUkMJbRAJv9WpcgwYRk5GBOz6e3NmzcXXvbnVVYU3DJiISOEVFeMeOxejalZiM\nDAouvpisZcsU3H6gnreIBMa33+K+7TYce/bgi4oi5777zA0U9MSkXyi8RcS/3G68f/0rtmnTcPh8\nFCQlUTBnDu42bayuLKIovEXEf9avx3nnncRu24Zhs5E9bBiFkyZBtWpWVxZxFN4iUnmHD+N56CGi\n33mHWKCoYUPyZ83C1bGj1ZVFLIW3iFRcQQG+v/8d45lniC4qwhsdzakRIyi8/36M886zurqIpvAW\nkfIzDIyFC/GMH4/j6FEAcrt3p+jJJ/E2aWJxcVWDwltEzp3PB0uX4nzsMWLT0nAA+S1bUjRtGq4O\nHayurkpReItI2dxuePddXFOnErN7N7GAs1YtCiZOpOiWW7TutgUU3iJyZvn5GPPm4Xn2WRxHjhAD\nOOvWpWj0aAqHDNG4toUU3lIxPh94PObL7f752G6HuDhzl+/oaK1bEa727sXz2msYs2fjyMnBARQk\nJuIcO5aim26CmBirK6zyFN5icrng4EHYvx/278fIyMB94gTekycxfvgBW1YWUdnZ2HNysBcVYfP5\nyrykYbPhi4nB+OnlO/98fAkJkJCArU4d7HXqYK9bl6i6daF+fWjQABo2ND8mJCj4gy0nB957D9e8\necSsX18SDqcuuwzXuHE4e/aEKK2oESoU3lVNQQGkpWGkpuLesAHvnj1Eff89McePYzOMkrfZgLL6\nVj67HSM6GsNuL3nh9RLldhPlchHl82F3OsHpNE/IzDznMn0OB566dfE1aIAtMRF7cjLRzZpBUpL5\nSkyEunUV8JXl9cLKlbjnziXqo4+wu1zEAJ7YWAr+8Afct9+O69pr9eccghTekczrNYN6/Xqca9Zg\npKYSt28fNp/vN+FsREVR1KAB7sREjKZNISkJo3ZtfAkJ+BISMGrVwlerlnkcH28Oj5T1A+3xYHO5\nwOnEVlREVF4etuxsonJyiMrJwZadjS0nxwz1Y8ewnThB9IkTOH78keiCAmKOHoWjRyEtrfTfXlwc\n7saNoWlT7BddRHSLFtiSk6FZM0hOhho1/PUnGVmOH4fly3F9+CFR//d/ROfmUrzaSF7btngGDcLZ\nu7fGs0OcwjvSHD2KsWwZRUuW4Fi1iui8PGxA3E9f9kVFUXDRRXjbtMHXpg3eZs3wNmmC98IL/b9g\nUHQ0RnQ0xMdjAL6GDc/5VFtBAVEnTmA/doyoI0ewZ2RAejqkp2M/fJiYY8dw5Odj37cP9u2DTz/9\nzTXcNWviTUrC1rw5jlatiGrRwgz1Zs3Mnnt0Ffn2d7lg/Xp8S5fi+egjYrZtA37+x7vwwgtxDRyI\nc8AAvImJ1tUp5VJFvnsjmM8Ha9bg/egj3B9/TNzOndiA4pUkCho3xp2SAm3b4r7yStyXXgrx8VZW\nfE6M+Hi8TZuedYcVW04O9vR07OnpRB86BAcOwIEDRKenE3v0qHmjbetW2Lr1t9ePisLVoAFGkyZE\nNW+Oo2VLs9fepIk5LNOoUXiGu8cDO3dCaire9evxrF2LY+dOcygLM7C9MTGcSknB6NED1//8D97k\nZKurlgoIw+9OAWDPHjyvvYbvrbeIOXoUO2AHvLGxFLZvj7dHD5zdukX09lJGzZp4atbEc9llOH/z\nRYOokyexf/890YcOEXXwIMb+/UQdOIAjI4PYzExijxyBI0dg7drfXjsqCne9evgaN8aWlER0s2bY\nExPNm6m/vLFao0bwx4MNA06eNP/HsX8/xr59eHbvxrtjB44dO8z7DFDyPQFQ2KQJ7m7d8HTvjrN9\ney0UFQEU3uEkOxvfwoU4586lWlpayV9eUYMGuHr1wn399ebNpbi4s16mSrDZ8NWrh69ePfN/Hr/m\ndGLPyCjptdsOHoQDB4jKyMBx7BgxP/5IzLFjcOwYbNhwxma8sbF46tTBKJ5FU7s2UT/NpImqUwdq\n1jSnTRZPn/zlR5vt9KmWv/yYmws//oiRmYn35MmSWT9kZuI4cgR7YeHPv1XA8dMLoLBhQ5xXXAHX\nXIO3TRvcl1+OofH/iKPwDgcbNuB+5hmi/vMf7G431QBPXByFvXrhuvVWXO3bawpXecXG4m3eHG/z\n5rhK+7rLhf3YMeyHD2M/fJiow4cxjh2Do0eJOn4c+w8/EJOZSXRREfbiHnwA2DB/SH/9g+o+7zyc\njRvjadIEW3IyRnIy3iZNcLdujVG7dkBqkdCi8A5VhoGxciVFf/0r1daswYE5b/pU+/Z4bruNohtu\nwKhe3eoqI1dMDN6kJLxJSWd9my0/n6iTJ0tmz5w2kyY7GyM3F6OoCKOoyJx143JhczqxOZ3m33F0\nNNjtGA6HOYMnOhqbw2H2lGvXxla7Nr7atTF+mvXjS0jA27ix2dOXKk3hHWq8Xox//Qvnk08St327\n2cuuVo38wYNx3nWXOStEQoZRvTre6tXxWl2IVDkK71Dh9WK88QbuJ58k5tAh4gBXQgJFo0ZRcPvt\n6mmJyGkU3qHg889xjh5N7K5dxABFjRpRdO+9FA4cqFkBIlIqhbeV9u7FOWYMsf/9r7nEZv36FEya\nRFGfPuE5x1hEgkYJYYWcHFxPPEH0Sy8R6/HgiYsjf8wYCkaNUk9bRM6JwjuYDAPjjTfwPPAAMVlZ\nAOTddBMFjz6Kr0EDi4sTkXCi8A6Wo0dx3XEHMStWmFtHXX01hU89hfvKK62uTETCkMI7CHzvvot3\n1ChicnNxn3ceeVOn4uzfX8tsikiFKbwD6ccfcY4YQeySJUQB+Z07c+rFF/E1amR1ZSIS5hTeAWIs\nXYrn9tuJ/eEHPHFxnHr8cQqHDlVvW0T8QuHtb243nr/8hejZs82x7auuIv/llyN6dT8RCT6Ftz+d\nOIGrTx9i1q3DGx1N3kMPUTh6tLlmhYiIHym8/WXDBujXj5j0dApr1SL/rbdwt21rdVUiEqG0jqg/\nLFgAnTtDejrZl1zC2lmzFNwiElDqeVeGxwMTJsDzz5u/HjGC1D598GiYREQCTD3vivrxR/jDH8zg\njo6G2bPh1VcxYmLKPldEpJLU866II0egRw/Yvh3q14cPPjCHTUREgkThXV779kH37uZO5ZdeCsuW\nQWKi1VWJSBWjYZPy2LrV7GEfOAApKbB6tYJbRCyh8D5X69ZBly7mbuLdusGnn0KdOlZXJSJVlML7\nXKxcCddfD1lZ0KcPLF0K559vdVUiUoUpvMuyeDH06gX5+TBkiHlzMi7O6qpEpIpTeJ/N++9D//7g\ncsF998Ebb2h7MhEJCQrvM1m2DAYNAp8PHn0UZsyAKP1xhaLXX3+dli1bsnHjRqtLEQkapVFpvvoK\nbrwR3G4YNw6mTNFSriGsf//+xMXFcdVVV1ldikjQKLx/bdMm6N0bCgth2DCYPl3BHeLWrFlD+/bt\nsenvSaoQhfcv7d5tPjmZk2P2vF99VcEdBr744gtsNhuLFy9mwoQJ7Ny50+qSRAJO4V0sPd2cDnjy\npPkE5Tvv6OZkCJo3bx6tW7emZ8+e7Nu3D4Avv/ySkSNHcuONN9K9e3f+9re/WVylSOApvAFOnDAD\nOz0dOnSAJUsgNtbqquRX1qxZw5NPPslbb73FqVOneOCBBzh8+DCGYdD2pyV4T5w4QWZmpsWVigSe\nwvvUKbjhBti1C664Aj75BKpXt7oqKcVTTz1F165dad26NYZh0KhRI7Zs2UK7du1K3vPFF1/w+9//\n3sIqRYKjao8L+HzmgzcbN0Lz5rB8OdSqZXVVUoqNGzeyefNmZsyYQVxcHF9//TVgDpnUrFkTgP37\n9/Pdd9/xwgsvWFmqSFBU7Z7344/Dv/8NNWuaj7w3aGB1RXIGH3zwAQDdunU77fOdO3fGZrPx3nvv\nMXfuXN5//33i4+OtKFEkqKpuz3vRIpg61Xzw5r33oGVLqyuSs1ixYgWtWrWizq8WA7PZbDz22GMA\nDBgwwIrSRCxRNXveGzeac7jBnMfdo4e19chZ7d+/n6NHj542ti1S1VW98D52zFwZsPghnL/8xeqK\npAxr1qwB0BOUIr9QtcLb6TQfvsnIgI4dzX0n9RBOyCsO7yuuuMLiSkRCR9UJb8OAu++GtWvN3W8W\nL9Zc7jCxbt06YmNjaan7EiIlqk54z5hhLularRr85z/mxsES8vbt28fJkye5+OKLsdvtVpcjEjKq\nRnh//TWMH28ev/kmaOw0bKxbtw6A1q1bW1yJSGiJ/PDOyoJbbwWvFx580NxcQcLGN998A8All1xi\ncSUioSWyw9sw4K674NAhc7f3qVOtrkjKacOGDUBohLfX663wuR6Px4+ViER6eM+dC//6l7lZ8Lvv\nQkyM1RVJOWRmZnLw4EFsNhutWrWytJalS5eWPOVZETNnziQ1NdWPFUlVF7nhvX37z3O4X3kFkpOt\nrUfK7dtvvwWgbt261K5dO+DtHThwgKFDhzJ16lQefvhhDMMAYO3ataxbt46BAwdW+Npjxoxh5syZ\n7Nmz55zeP3z4cHr06EFKSkqF25TIFpnhXVgIAwdCURHccYc55i1hpzi8L7744oC35XK5uO222+jV\nqxcnT55k4cKF5OXlkZeXx9SpU5k4cWKlrh8dHc20adMYM2bMOQ2hzJ07l/bt23PkyJFKtSuRKzLD\n+/77zZ53q1Ywa5bV1UgFFW8oHIzx7lWrVnHo0CE6dOjAsGHDWLBgATVq1GDmzJn069ePuLi4Srdx\n4YUX0qpVKxYtWlTme+12u2bYyFlF3sJUixfDnDnm+PbChXDeeVZXJBXg9XrZvHkzAJdeemnA21u7\ndi116tQhKSmJpKQkAAoKCnjnnXdKnvD0h+HDhzN69GgGDRrkt2tK1RRZPe9Dh+DOO83jZ5/VfO4w\ntnfvXgoLC7HZbEEJ77S0NNq0aXPa51auXEliYiIJCQl+a+eyyy4jKyuLrVu3+u2aUjVFTs+7eGOF\n7Gxz9/cxY6yuSCph06ZNgDlWHMjH4seOHcvJkydJTU2lRYsWDBo0iKSkJKZNm8bq1au55pprznju\nli1b+OCDD7Db7aSnp/Pcc88xf/58cnNzOXbsGOPHj6dJkyannRMVFUVKSgqrVq3i8ssvL/n8rl27\nmDlzJgkJCcTFxREbG3vWm7QVaVsiS+SE9+zZsHq1+dj7669rwakwVxzeF110EQ6HI2DtvPjiiyVj\n3Q8//DA33HBDyde2b9/O4MGDSz3v+++/59133+Xpp58GzH8EevfuzYwZM/D5fPTr14/LL7+ckSNH\n/ubc5ORkduzYUfLr1NRUhgwZwhtvvEH79u0ByM/PZ+DAgdhK+T6uTNsSOSJj2OT77+Hhh83jl1+G\nunWtrUcqbcuWLQCn9U4DZdu2bYA5pPFL6enp1KhRo9Rz5syZw6RJk0p+XVBQQK1atWjbti2NGzdm\n1KhRZ9wcIiEhgfT0dAB8Ph9jx46lU6dOJcENUL16dfr06VMyXdFfbUvkCP/wNgwYOdLcSPimm8yX\nhDWv18vOnTuB4CwDu23bNmrUqEFiYuJpn8/LyztjeN9zzz2nbbe2YcMGfve73wHQqFEjJk+efMax\n8lq1apGbmwuY0yEPHjxYrvnclWlbIkf4h/ebb8KKFebGwS+9ZHU14gd79+7F6XRis9m48sorA97e\n9u3bS52WZ7PZSu35AqcF/d69ezl27BgdO3Y8p/Z8Pl/JdYvncZcnbCvTtkSO8A7vo0dh3DjzeMYM\nbSAcIbZv3w6Aw+EIylznHTt2lNpOjRo1yMrKKvP8NWvWEBMTc9rNze+///6M78/Ozi7Z8b5hw4YA\nFBYWlrfsCrUtkSN8w9sw4M9/NmeX3HADnOHGkoSf4vC++OKLiQnwejRZWVkcOXKk1OmISUlJpYZ3\nYWEhU6ZM4bvvvgNg9erVXHrppSUP8vh8PmbPnn3GNrOzs0vmkl9zzTU0btyYtLS037yvtCcxK9u2\nRI7wDe8PPoAlS8xFp155RbNLIkhxMAVjz8rim5WlhXdKSkqpa5F89tlnzJkzh127drFnzx4OHjx4\n2j8yM2bMOOsNw927d5eM5dvtdp5//nlWrlx52gyU48ePlzyJeejQIb+1LZEjPKcKZmbCvfeax88+\na25rJhEjmOG9detWatasWeqwSbdu3Xj88cd/8/kOHTowYMAAtmzZwrZt2/joo4+YOHEiEyZMwOFw\n0LNnT66++upS2/N4PHz77benzRbp3Lkzb7/9Ni+88AIXXngh8fHxxMTEcPPNN/OPf/yDIUOGMHLk\nSAYNGlSptiWy2Iwz3ZEp74XOcnPH74YMgQULoEsX+OwziAqd/0CsWLECr9f7m6f15Nzk5ORw6aWX\nYrPZWLVqFS1atAhoe6NHj8br9fLqq6/+5mtOp5Orr76aTz/9lAZ+up+SmprKQw89xOeff+6X60nF\nZGZmsnr1au655x6rS6mw0Em9c7V0qRnc1arBvHkhFdxSebt27QLM2ReBCu6XXnqJW265BYDNmzfT\nq1evUt8XGxvLsGHDmDdvnt/anjt3LqNGjfLb9aTqCq/kKyw0b1ICTJkCAe6VSfDt3r0bgHbt2gWs\njcWLFxMTE8OOHTtwOBz07t37jO+95557+Pzzz8nOzq50u3v37uXw4cOVWhdcpFh4hff06XDwIFx+\n+c8bLUhEKe55//JpQ3+7++67adCgATNnzmTevHln3ZU+Pj6e6dOn8+CDD1ZqWLCoqIhJkybx8ssv\nl/rIu0h5hc8Ny/R0+GktB2bOhOjwKV3OXfGMi0D2vAcMGFCuGRlt2rRh8ODBvPbaa4wYMaJCbc6c\nOZNHHnmEpk2bVuh8kV8LnwQcP94cNhkwALp2tboaCZCdO3cSHx8flDVNyqNLly506dKlwuc/9NBD\nfqxGJFyGTVatgvfeM29S/v3vVlcjAZKRkUFOTg5XXXXVWYcyRCQcwtvj+Xlt7kcegZ+eTJPIU7yS\nYKdOnSyuRCT0hX54v/IKbN0KzZrBgw9aXY0EUPEj4p07d7a4EpHQF9rh/cMPMHmyefz88+CHTWAl\ndG3cuJHzzz8/KE9WioS70A7vSZMgKwu6d4c+fayuRgKosLCQtLQ0rrvuOqL04JVImUL3pyQtDV59\n1ZwSOGOGFp6KcGvWrMHpdNKzZ0+rSxEJC6EZ3oYB991nfhwzBi65xOqKxM8mT57M9ddfX7Ls6ZIl\nS0hISDjjo+oicrrQDO9334U1a6BePXjsMaurkQD48ssvKSwsxOv1cvjwYZYuXcpdd91Vsi61iJxd\n6D2k43LBo4+ax08/DT/tOCKRJSUlhQsuuIDs7GzGjRtHcnIyfy5et0ZEyhR6Pe+5c+HAAXOo5Pbb\nra5GAuSRRx4hLS2Njh07EhcXx9tvv43D4Sj1vR6Ph2effZa33nqL1157jaFDh2qrL6nyQqvnfeqU\nuVogwFNPaf2SCFa7dm0WLlx4Tu+dMGECl1xyCUOHDuXHH39k+vTpNGnSJMAVioS20Op5z5gBx49D\nu3bQt6/V1UgI2LFjBx9++CFDhgwBzLVPArnioEi4CJ3wzsw0tzQDeOYZTQ0UwLyxee211xIbGwvA\nV199RaeMRggBAAADwUlEQVROncjJybG4MhFrhU54P/MM5OZCjx7QrZvV1UiISEhI4IILLgAgPz+f\npUuXkpKSwuLFiy2uTMRaoTGonJEBs2aZx8VrdosAffv2Zf369fz73//G6XTSr18/Pvvss5BbMlYk\n2EIjvP/6V3A6zbW627a1uhoJIbGxsUyfPt3qMkRCjvXDJt99B//8J9jtP880ERGRs7I+vCdPBp8P\n7rwTWra0uhoRkbBgbXinpsIHH5hLveoxeBGRc2ZteE+caH4cMwYaN7a0FBGRcGJdeH/+Oaxcaa5d\nMmGCZWWIiIQj68K7+Obk+PFQu7ZlZYiIhCNrwvvrr82ed40acO+9lpQgIhLOrAnvp54yP953HyQk\nWFKCiEg4C354b9wIS5dCfDyMHRv05oNhy5YtVpcgImXYvXu31SVUSvDDu/jx97vvhrp1g958MCi8\nRULfnj17rC6hUoIb3tu3w7/+BbGx8MADQW1aRCSSBHdtk2nTzI/Dh0OjRkFtOpiKioq004tICMvL\ny7O6hMoz/KRLly4GoJdeeumlVzlejz/+eIUy12YYhoGIiIQV6xemEhGRclN4i4iEIYW3iEgYUniL\niIQhhbeIVClFRUXcfPPNzJ8/3+pSKiU09rCMEAsXLsTtdpORkUG9evUYMWKE1SWJyK/ExcVx4YUX\nkpKSYnUplaKet5/s2rWL5cuXM3ToUOx2O5dddpnVJYnIGezcuZNWrVpZXUalKLz9ZMGCBfzpT38C\nYPPmzVx11VUWVyQipXG73Rw6dIhPPvmEhx9+GJ/PZ3VJFaLw9pPs7GxatWqFy+UiLy+Pb7/91uqS\nRKQUW7ZsoW/fvvTu3Ruv18vWrVutLqlCNObtJ0OHDmXFihXs2LGD5s2bc/ToUatLEpFSpKWl0aVL\nFwB27NhB7TDdyUvh7ScpKSklN0D69+9vcTUicibZ2dlcd911ZGVlYbfbSUxMtLqkCtHaJiJSpezb\nt4+PP/6Y7OxsRo0aRYMGDawuqUIU3iIiYUg3LEVEwpDCW0QkDOmGpYiIxbxeL4sWLWL//v0kJiay\nfv16HnjgAZKTk894jnreIiIW27x5MzfddBPJycn4fD769+9Pw4YNz3qOwltExGJXX301sbGxrF27\nlq5du9K1a1eqVat21nMU3iIiFktNTeWHH35g27ZtNGvWjC+//LLMczTmLSJisWXLllG/fn06derE\nkiVLqFu3bpnnaJ63iEgY0rCJiEgYUniLiIQhhbeISBhSeIuIhCGFt4hIGFJ4i4iEIYW3iEgYUniL\niISh/weZPyRnS1m/IAAAAABJRU5ErkJggg==\n",
456 "text": [
456 "text": [
457 "<matplotlib.figure.Figure at 0x108604e50>"
457 "<matplotlib.figure.Figure at 0x108604e50>"
458 ]
458 ]
459 }
459 }
460 ],
460 ],
461 "prompt_number": 11
461 "prompt_number": 11
462 }
462 }
463 ],
463 ],
464 "metadata": {}
464 "metadata": {}
465 }
465 }
466 ]
466 ]
467 } No newline at end of file
467 }
@@ -1,728 +1,728
1 # encoding: utf-8
1 # encoding: utf-8
2 """
2 """
3 This module defines the things that are used in setup.py for building IPython
3 This module defines the things that are used in setup.py for building IPython
4
4
5 This includes:
5 This includes:
6
6
7 * The basic arguments to setup
7 * The basic arguments to setup
8 * Functions for finding things like packages, package data, etc.
8 * Functions for finding things like packages, package data, etc.
9 * A function for checking dependencies.
9 * A function for checking dependencies.
10 """
10 """
11
11
12 # Copyright (c) IPython Development Team.
12 # Copyright (c) IPython Development Team.
13 # Distributed under the terms of the Modified BSD License.
13 # Distributed under the terms of the Modified BSD License.
14
14
15 from __future__ import print_function
15 from __future__ import print_function
16
16
17 import errno
17 import errno
18 import os
18 import os
19 import sys
19 import sys
20
20
21 from distutils import log
21 from distutils import log
22 from distutils.command.build_py import build_py
22 from distutils.command.build_py import build_py
23 from distutils.command.build_scripts import build_scripts
23 from distutils.command.build_scripts import build_scripts
24 from distutils.command.install import install
24 from distutils.command.install import install
25 from distutils.command.install_scripts import install_scripts
25 from distutils.command.install_scripts import install_scripts
26 from distutils.cmd import Command
26 from distutils.cmd import Command
27 from fnmatch import fnmatch
27 from fnmatch import fnmatch
28 from glob import glob
28 from glob import glob
29 from subprocess import check_call
29 from subprocess import check_call
30
30
31 from setupext import install_data_ext
31 from setupext import install_data_ext
32
32
33 #-------------------------------------------------------------------------------
33 #-------------------------------------------------------------------------------
34 # Useful globals and utility functions
34 # Useful globals and utility functions
35 #-------------------------------------------------------------------------------
35 #-------------------------------------------------------------------------------
36
36
37 # A few handy globals
37 # A few handy globals
38 isfile = os.path.isfile
38 isfile = os.path.isfile
39 pjoin = os.path.join
39 pjoin = os.path.join
40 repo_root = os.path.dirname(os.path.abspath(__file__))
40 repo_root = os.path.dirname(os.path.abspath(__file__))
41
41
42 def oscmd(s):
42 def oscmd(s):
43 print(">", s)
43 print(">", s)
44 os.system(s)
44 os.system(s)
45
45
46 # Py3 compatibility hacks, without assuming IPython itself is installed with
46 # Py3 compatibility hacks, without assuming IPython itself is installed with
47 # the full py3compat machinery.
47 # the full py3compat machinery.
48
48
49 try:
49 try:
50 execfile
50 execfile
51 except NameError:
51 except NameError:
52 def execfile(fname, globs, locs=None):
52 def execfile(fname, globs, locs=None):
53 locs = locs or globs
53 locs = locs or globs
54 exec(compile(open(fname).read(), fname, "exec"), globs, locs)
54 exec(compile(open(fname).read(), fname, "exec"), globs, locs)
55
55
56 # A little utility we'll need below, since glob() does NOT allow you to do
56 # A little utility we'll need below, since glob() does NOT allow you to do
57 # exclusion on multiple endings!
57 # exclusion on multiple endings!
58 def file_doesnt_endwith(test,endings):
58 def file_doesnt_endwith(test,endings):
59 """Return true if test is a file and its name does NOT end with any
59 """Return true if test is a file and its name does NOT end with any
60 of the strings listed in endings."""
60 of the strings listed in endings."""
61 if not isfile(test):
61 if not isfile(test):
62 return False
62 return False
63 for e in endings:
63 for e in endings:
64 if test.endswith(e):
64 if test.endswith(e):
65 return False
65 return False
66 return True
66 return True
67
67
68 #---------------------------------------------------------------------------
68 #---------------------------------------------------------------------------
69 # Basic project information
69 # Basic project information
70 #---------------------------------------------------------------------------
70 #---------------------------------------------------------------------------
71
71
72 # release.py contains version, authors, license, url, keywords, etc.
72 # release.py contains version, authors, license, url, keywords, etc.
73 execfile(pjoin(repo_root, 'IPython','core','release.py'), globals())
73 execfile(pjoin(repo_root, 'IPython','core','release.py'), globals())
74
74
75 # Create a dict with the basic information
75 # Create a dict with the basic information
76 # This dict is eventually passed to setup after additional keys are added.
76 # This dict is eventually passed to setup after additional keys are added.
77 setup_args = dict(
77 setup_args = dict(
78 name = name,
78 name = name,
79 version = version,
79 version = version,
80 description = description,
80 description = description,
81 long_description = long_description,
81 long_description = long_description,
82 author = author,
82 author = author,
83 author_email = author_email,
83 author_email = author_email,
84 url = url,
84 url = url,
85 download_url = download_url,
85 download_url = download_url,
86 license = license,
86 license = license,
87 platforms = platforms,
87 platforms = platforms,
88 keywords = keywords,
88 keywords = keywords,
89 classifiers = classifiers,
89 classifiers = classifiers,
90 cmdclass = {'install_data': install_data_ext},
90 cmdclass = {'install_data': install_data_ext},
91 )
91 )
92
92
93
93
94 #---------------------------------------------------------------------------
94 #---------------------------------------------------------------------------
95 # Find packages
95 # Find packages
96 #---------------------------------------------------------------------------
96 #---------------------------------------------------------------------------
97
97
98 def find_packages():
98 def find_packages():
99 """
99 """
100 Find all of IPython's packages.
100 Find all of IPython's packages.
101 """
101 """
102 excludes = ['deathrow', 'quarantine']
102 excludes = ['deathrow', 'quarantine']
103 packages = []
103 packages = []
104 for dir,subdirs,files in os.walk('IPython'):
104 for dir,subdirs,files in os.walk('IPython'):
105 package = dir.replace(os.path.sep, '.')
105 package = dir.replace(os.path.sep, '.')
106 if any(package.startswith('IPython.'+exc) for exc in excludes):
106 if any(package.startswith('IPython.'+exc) for exc in excludes):
107 # package is to be excluded (e.g. deathrow)
107 # package is to be excluded (e.g. deathrow)
108 continue
108 continue
109 if '__init__.py' not in files:
109 if '__init__.py' not in files:
110 # not a package
110 # not a package
111 continue
111 continue
112 packages.append(package)
112 packages.append(package)
113 return packages
113 return packages
114
114
115 #---------------------------------------------------------------------------
115 #---------------------------------------------------------------------------
116 # Find package data
116 # Find package data
117 #---------------------------------------------------------------------------
117 #---------------------------------------------------------------------------
118
118
119 def find_package_data():
119 def find_package_data():
120 """
120 """
121 Find IPython's package_data.
121 Find IPython's package_data.
122 """
122 """
123 # This is not enough for these things to appear in an sdist.
123 # This is not enough for these things to appear in an sdist.
124 # We need to muck with the MANIFEST to get this to work
124 # We need to muck with the MANIFEST to get this to work
125
125
126 # exclude components and less from the walk;
126 # exclude components and less from the walk;
127 # we will build the components separately
127 # we will build the components separately
128 excludes = [
128 excludes = [
129 pjoin('static', 'components'),
129 pjoin('static', 'components'),
130 pjoin('static', '*', 'less'),
130 pjoin('static', '*', 'less'),
131 ]
131 ]
132
132
133 # walk notebook resources:
133 # walk notebook resources:
134 cwd = os.getcwd()
134 cwd = os.getcwd()
135 os.chdir(os.path.join('IPython', 'html'))
135 os.chdir(os.path.join('IPython', 'html'))
136 static_data = []
136 static_data = []
137 for parent, dirs, files in os.walk('static'):
137 for parent, dirs, files in os.walk('static'):
138 if any(fnmatch(parent, pat) for pat in excludes):
138 if any(fnmatch(parent, pat) for pat in excludes):
139 # prevent descending into subdirs
139 # prevent descending into subdirs
140 dirs[:] = []
140 dirs[:] = []
141 continue
141 continue
142 for f in files:
142 for f in files:
143 static_data.append(pjoin(parent, f))
143 static_data.append(pjoin(parent, f))
144
144
145 components = pjoin("static", "components")
145 components = pjoin("static", "components")
146 # select the components we actually need to install
146 # select the components we actually need to install
147 # (there are lots of resources we bundle for sdist-reasons that we don't actually use)
147 # (there are lots of resources we bundle for sdist-reasons that we don't actually use)
148 static_data.extend([
148 static_data.extend([
149 pjoin(components, "backbone", "backbone-min.js"),
149 pjoin(components, "backbone", "backbone-min.js"),
150 pjoin(components, "bootstrap", "js", "bootstrap.min.js"),
150 pjoin(components, "bootstrap", "js", "bootstrap.min.js"),
151 pjoin(components, "bootstrap-tour", "build", "css", "bootstrap-tour.min.css"),
151 pjoin(components, "bootstrap-tour", "build", "css", "bootstrap-tour.min.css"),
152 pjoin(components, "bootstrap-tour", "build", "js", "bootstrap-tour.min.js"),
152 pjoin(components, "bootstrap-tour", "build", "js", "bootstrap-tour.min.js"),
153 pjoin(components, "font-awesome", "font", "*.*"),
153 pjoin(components, "font-awesome", "fonts", "*.*"),
154 pjoin(components, "google-caja", "html-css-sanitizer-minified.js"),
154 pjoin(components, "google-caja", "html-css-sanitizer-minified.js"),
155 pjoin(components, "highlight.js", "build", "highlight.pack.js"),
155 pjoin(components, "highlight.js", "build", "highlight.pack.js"),
156 pjoin(components, "jquery", "jquery.min.js"),
156 pjoin(components, "jquery", "jquery.min.js"),
157 pjoin(components, "jquery-ui", "ui", "minified", "jquery-ui.min.js"),
157 pjoin(components, "jquery-ui", "ui", "minified", "jquery-ui.min.js"),
158 pjoin(components, "jquery-ui", "themes", "smoothness", "jquery-ui.min.css"),
158 pjoin(components, "jquery-ui", "themes", "smoothness", "jquery-ui.min.css"),
159 pjoin(components, "jquery-ui", "themes", "smoothness", "images", "*"),
159 pjoin(components, "jquery-ui", "themes", "smoothness", "images", "*"),
160 pjoin(components, "marked", "lib", "marked.js"),
160 pjoin(components, "marked", "lib", "marked.js"),
161 pjoin(components, "requirejs", "require.js"),
161 pjoin(components, "requirejs", "require.js"),
162 pjoin(components, "underscore", "underscore-min.js"),
162 pjoin(components, "underscore", "underscore-min.js"),
163 ])
163 ])
164
164
165 # Ship all of Codemirror's CSS and JS
165 # Ship all of Codemirror's CSS and JS
166 for parent, dirs, files in os.walk(pjoin(components, 'codemirror')):
166 for parent, dirs, files in os.walk(pjoin(components, 'codemirror')):
167 for f in files:
167 for f in files:
168 if f.endswith(('.js', '.css')):
168 if f.endswith(('.js', '.css')):
169 static_data.append(pjoin(parent, f))
169 static_data.append(pjoin(parent, f))
170
170
171 os.chdir(os.path.join('tests',))
171 os.chdir(os.path.join('tests',))
172 js_tests = glob('*.js') + glob('*/*.js')
172 js_tests = glob('*.js') + glob('*/*.js')
173
173
174 os.chdir(os.path.join(cwd, 'IPython', 'nbconvert'))
174 os.chdir(os.path.join(cwd, 'IPython', 'nbconvert'))
175 nbconvert_templates = [os.path.join(dirpath, '*.*')
175 nbconvert_templates = [os.path.join(dirpath, '*.*')
176 for dirpath, _, _ in os.walk('templates')]
176 for dirpath, _, _ in os.walk('templates')]
177
177
178 os.chdir(cwd)
178 os.chdir(cwd)
179
179
180 package_data = {
180 package_data = {
181 'IPython.config.profile' : ['README*', '*/*.py'],
181 'IPython.config.profile' : ['README*', '*/*.py'],
182 'IPython.core.tests' : ['*.png', '*.jpg'],
182 'IPython.core.tests' : ['*.png', '*.jpg'],
183 'IPython.lib.tests' : ['*.wav'],
183 'IPython.lib.tests' : ['*.wav'],
184 'IPython.testing.plugin' : ['*.txt'],
184 'IPython.testing.plugin' : ['*.txt'],
185 'IPython.html' : ['templates/*'] + static_data,
185 'IPython.html' : ['templates/*'] + static_data,
186 'IPython.html.tests' : js_tests,
186 'IPython.html.tests' : js_tests,
187 'IPython.qt.console' : ['resources/icon/*.svg'],
187 'IPython.qt.console' : ['resources/icon/*.svg'],
188 'IPython.nbconvert' : nbconvert_templates +
188 'IPython.nbconvert' : nbconvert_templates +
189 [
189 [
190 'tests/files/*.*',
190 'tests/files/*.*',
191 'exporters/tests/files/*.*',
191 'exporters/tests/files/*.*',
192 'preprocessors/tests/files/*.*',
192 'preprocessors/tests/files/*.*',
193 ],
193 ],
194 'IPython.nbconvert.filters' : ['marked.js'],
194 'IPython.nbconvert.filters' : ['marked.js'],
195 'IPython.nbformat' : ['tests/*.ipynb','v3/v3.withref.json']
195 'IPython.nbformat' : ['tests/*.ipynb','v3/v3.withref.json']
196 }
196 }
197
197
198 return package_data
198 return package_data
199
199
200
200
201 def check_package_data(package_data):
201 def check_package_data(package_data):
202 """verify that package_data globs make sense"""
202 """verify that package_data globs make sense"""
203 print("checking package data")
203 print("checking package data")
204 for pkg, data in package_data.items():
204 for pkg, data in package_data.items():
205 pkg_root = pjoin(*pkg.split('.'))
205 pkg_root = pjoin(*pkg.split('.'))
206 for d in data:
206 for d in data:
207 path = pjoin(pkg_root, d)
207 path = pjoin(pkg_root, d)
208 if '*' in path:
208 if '*' in path:
209 assert len(glob(path)) > 0, "No files match pattern %s" % path
209 assert len(glob(path)) > 0, "No files match pattern %s" % path
210 else:
210 else:
211 assert os.path.exists(path), "Missing package data: %s" % path
211 assert os.path.exists(path), "Missing package data: %s" % path
212
212
213
213
214 def check_package_data_first(command):
214 def check_package_data_first(command):
215 """decorator for checking package_data before running a given command
215 """decorator for checking package_data before running a given command
216
216
217 Probably only needs to wrap build_py
217 Probably only needs to wrap build_py
218 """
218 """
219 class DecoratedCommand(command):
219 class DecoratedCommand(command):
220 def run(self):
220 def run(self):
221 check_package_data(self.package_data)
221 check_package_data(self.package_data)
222 command.run(self)
222 command.run(self)
223 return DecoratedCommand
223 return DecoratedCommand
224
224
225
225
226 #---------------------------------------------------------------------------
226 #---------------------------------------------------------------------------
227 # Find data files
227 # Find data files
228 #---------------------------------------------------------------------------
228 #---------------------------------------------------------------------------
229
229
230 def make_dir_struct(tag,base,out_base):
230 def make_dir_struct(tag,base,out_base):
231 """Make the directory structure of all files below a starting dir.
231 """Make the directory structure of all files below a starting dir.
232
232
233 This is just a convenience routine to help build a nested directory
233 This is just a convenience routine to help build a nested directory
234 hierarchy because distutils is too stupid to do this by itself.
234 hierarchy because distutils is too stupid to do this by itself.
235
235
236 XXX - this needs a proper docstring!
236 XXX - this needs a proper docstring!
237 """
237 """
238
238
239 # we'll use these a lot below
239 # we'll use these a lot below
240 lbase = len(base)
240 lbase = len(base)
241 pathsep = os.path.sep
241 pathsep = os.path.sep
242 lpathsep = len(pathsep)
242 lpathsep = len(pathsep)
243
243
244 out = []
244 out = []
245 for (dirpath,dirnames,filenames) in os.walk(base):
245 for (dirpath,dirnames,filenames) in os.walk(base):
246 # we need to strip out the dirpath from the base to map it to the
246 # we need to strip out the dirpath from the base to map it to the
247 # output (installation) path. This requires possibly stripping the
247 # output (installation) path. This requires possibly stripping the
248 # path separator, because otherwise pjoin will not work correctly
248 # path separator, because otherwise pjoin will not work correctly
249 # (pjoin('foo/','/bar') returns '/bar').
249 # (pjoin('foo/','/bar') returns '/bar').
250
250
251 dp_eff = dirpath[lbase:]
251 dp_eff = dirpath[lbase:]
252 if dp_eff.startswith(pathsep):
252 if dp_eff.startswith(pathsep):
253 dp_eff = dp_eff[lpathsep:]
253 dp_eff = dp_eff[lpathsep:]
254 # The output path must be anchored at the out_base marker
254 # The output path must be anchored at the out_base marker
255 out_path = pjoin(out_base,dp_eff)
255 out_path = pjoin(out_base,dp_eff)
256 # Now we can generate the final filenames. Since os.walk only produces
256 # Now we can generate the final filenames. Since os.walk only produces
257 # filenames, we must join back with the dirpath to get full valid file
257 # filenames, we must join back with the dirpath to get full valid file
258 # paths:
258 # paths:
259 pfiles = [pjoin(dirpath,f) for f in filenames]
259 pfiles = [pjoin(dirpath,f) for f in filenames]
260 # Finally, generate the entry we need, which is a pari of (output
260 # Finally, generate the entry we need, which is a pari of (output
261 # path, files) for use as a data_files parameter in install_data.
261 # path, files) for use as a data_files parameter in install_data.
262 out.append((out_path, pfiles))
262 out.append((out_path, pfiles))
263
263
264 return out
264 return out
265
265
266
266
267 def find_data_files():
267 def find_data_files():
268 """
268 """
269 Find IPython's data_files.
269 Find IPython's data_files.
270
270
271 Just man pages at this point.
271 Just man pages at this point.
272 """
272 """
273
273
274 manpagebase = pjoin('share', 'man', 'man1')
274 manpagebase = pjoin('share', 'man', 'man1')
275
275
276 # Simple file lists can be made by hand
276 # Simple file lists can be made by hand
277 manpages = [f for f in glob(pjoin('docs','man','*.1.gz')) if isfile(f)]
277 manpages = [f for f in glob(pjoin('docs','man','*.1.gz')) if isfile(f)]
278 if not manpages:
278 if not manpages:
279 # When running from a source tree, the manpages aren't gzipped
279 # When running from a source tree, the manpages aren't gzipped
280 manpages = [f for f in glob(pjoin('docs','man','*.1')) if isfile(f)]
280 manpages = [f for f in glob(pjoin('docs','man','*.1')) if isfile(f)]
281
281
282 # And assemble the entire output list
282 # And assemble the entire output list
283 data_files = [ (manpagebase, manpages) ]
283 data_files = [ (manpagebase, manpages) ]
284
284
285 return data_files
285 return data_files
286
286
287
287
288 def make_man_update_target(manpage):
288 def make_man_update_target(manpage):
289 """Return a target_update-compliant tuple for the given manpage.
289 """Return a target_update-compliant tuple for the given manpage.
290
290
291 Parameters
291 Parameters
292 ----------
292 ----------
293 manpage : string
293 manpage : string
294 Name of the manpage, must include the section number (trailing number).
294 Name of the manpage, must include the section number (trailing number).
295
295
296 Example
296 Example
297 -------
297 -------
298
298
299 >>> make_man_update_target('ipython.1') #doctest: +NORMALIZE_WHITESPACE
299 >>> make_man_update_target('ipython.1') #doctest: +NORMALIZE_WHITESPACE
300 ('docs/man/ipython.1.gz',
300 ('docs/man/ipython.1.gz',
301 ['docs/man/ipython.1'],
301 ['docs/man/ipython.1'],
302 'cd docs/man && gzip -9c ipython.1 > ipython.1.gz')
302 'cd docs/man && gzip -9c ipython.1 > ipython.1.gz')
303 """
303 """
304 man_dir = pjoin('docs', 'man')
304 man_dir = pjoin('docs', 'man')
305 manpage_gz = manpage + '.gz'
305 manpage_gz = manpage + '.gz'
306 manpath = pjoin(man_dir, manpage)
306 manpath = pjoin(man_dir, manpage)
307 manpath_gz = pjoin(man_dir, manpage_gz)
307 manpath_gz = pjoin(man_dir, manpage_gz)
308 gz_cmd = ( "cd %(man_dir)s && gzip -9c %(manpage)s > %(manpage_gz)s" %
308 gz_cmd = ( "cd %(man_dir)s && gzip -9c %(manpage)s > %(manpage_gz)s" %
309 locals() )
309 locals() )
310 return (manpath_gz, [manpath], gz_cmd)
310 return (manpath_gz, [manpath], gz_cmd)
311
311
312 # The two functions below are copied from IPython.utils.path, so we don't need
312 # The two functions below are copied from IPython.utils.path, so we don't need
313 # to import IPython during setup, which fails on Python 3.
313 # to import IPython during setup, which fails on Python 3.
314
314
315 def target_outdated(target,deps):
315 def target_outdated(target,deps):
316 """Determine whether a target is out of date.
316 """Determine whether a target is out of date.
317
317
318 target_outdated(target,deps) -> 1/0
318 target_outdated(target,deps) -> 1/0
319
319
320 deps: list of filenames which MUST exist.
320 deps: list of filenames which MUST exist.
321 target: single filename which may or may not exist.
321 target: single filename which may or may not exist.
322
322
323 If target doesn't exist or is older than any file listed in deps, return
323 If target doesn't exist or is older than any file listed in deps, return
324 true, otherwise return false.
324 true, otherwise return false.
325 """
325 """
326 try:
326 try:
327 target_time = os.path.getmtime(target)
327 target_time = os.path.getmtime(target)
328 except os.error:
328 except os.error:
329 return 1
329 return 1
330 for dep in deps:
330 for dep in deps:
331 dep_time = os.path.getmtime(dep)
331 dep_time = os.path.getmtime(dep)
332 if dep_time > target_time:
332 if dep_time > target_time:
333 #print "For target",target,"Dep failed:",dep # dbg
333 #print "For target",target,"Dep failed:",dep # dbg
334 #print "times (dep,tar):",dep_time,target_time # dbg
334 #print "times (dep,tar):",dep_time,target_time # dbg
335 return 1
335 return 1
336 return 0
336 return 0
337
337
338
338
339 def target_update(target,deps,cmd):
339 def target_update(target,deps,cmd):
340 """Update a target with a given command given a list of dependencies.
340 """Update a target with a given command given a list of dependencies.
341
341
342 target_update(target,deps,cmd) -> runs cmd if target is outdated.
342 target_update(target,deps,cmd) -> runs cmd if target is outdated.
343
343
344 This is just a wrapper around target_outdated() which calls the given
344 This is just a wrapper around target_outdated() which calls the given
345 command if target is outdated."""
345 command if target is outdated."""
346
346
347 if target_outdated(target,deps):
347 if target_outdated(target,deps):
348 os.system(cmd)
348 os.system(cmd)
349
349
350 #---------------------------------------------------------------------------
350 #---------------------------------------------------------------------------
351 # Find scripts
351 # Find scripts
352 #---------------------------------------------------------------------------
352 #---------------------------------------------------------------------------
353
353
354 def find_entry_points():
354 def find_entry_points():
355 """Find IPython's scripts.
355 """Find IPython's scripts.
356
356
357 if entry_points is True:
357 if entry_points is True:
358 return setuptools entry_point-style definitions
358 return setuptools entry_point-style definitions
359 else:
359 else:
360 return file paths of plain scripts [default]
360 return file paths of plain scripts [default]
361
361
362 suffix is appended to script names if entry_points is True, so that the
362 suffix is appended to script names if entry_points is True, so that the
363 Python 3 scripts get named "ipython3" etc.
363 Python 3 scripts get named "ipython3" etc.
364 """
364 """
365 ep = [
365 ep = [
366 'ipython%s = IPython:start_ipython',
366 'ipython%s = IPython:start_ipython',
367 'ipcontroller%s = IPython.parallel.apps.ipcontrollerapp:launch_new_instance',
367 'ipcontroller%s = IPython.parallel.apps.ipcontrollerapp:launch_new_instance',
368 'ipengine%s = IPython.parallel.apps.ipengineapp:launch_new_instance',
368 'ipengine%s = IPython.parallel.apps.ipengineapp:launch_new_instance',
369 'ipcluster%s = IPython.parallel.apps.ipclusterapp:launch_new_instance',
369 'ipcluster%s = IPython.parallel.apps.ipclusterapp:launch_new_instance',
370 'iptest%s = IPython.testing.iptestcontroller:main',
370 'iptest%s = IPython.testing.iptestcontroller:main',
371 ]
371 ]
372 suffix = str(sys.version_info[0])
372 suffix = str(sys.version_info[0])
373 return [e % '' for e in ep] + [e % suffix for e in ep]
373 return [e % '' for e in ep] + [e % suffix for e in ep]
374
374
375 script_src = """#!{executable}
375 script_src = """#!{executable}
376 # This script was automatically generated by setup.py
376 # This script was automatically generated by setup.py
377 if __name__ == '__main__':
377 if __name__ == '__main__':
378 from {mod} import {func}
378 from {mod} import {func}
379 {func}()
379 {func}()
380 """
380 """
381
381
382 class build_scripts_entrypt(build_scripts):
382 class build_scripts_entrypt(build_scripts):
383 def run(self):
383 def run(self):
384 self.mkpath(self.build_dir)
384 self.mkpath(self.build_dir)
385 outfiles = []
385 outfiles = []
386 for script in find_entry_points():
386 for script in find_entry_points():
387 name, entrypt = script.split('=')
387 name, entrypt = script.split('=')
388 name = name.strip()
388 name = name.strip()
389 entrypt = entrypt.strip()
389 entrypt = entrypt.strip()
390 outfile = os.path.join(self.build_dir, name)
390 outfile = os.path.join(self.build_dir, name)
391 outfiles.append(outfile)
391 outfiles.append(outfile)
392 print('Writing script to', outfile)
392 print('Writing script to', outfile)
393
393
394 mod, func = entrypt.split(':')
394 mod, func = entrypt.split(':')
395 with open(outfile, 'w') as f:
395 with open(outfile, 'w') as f:
396 f.write(script_src.format(executable=sys.executable,
396 f.write(script_src.format(executable=sys.executable,
397 mod=mod, func=func))
397 mod=mod, func=func))
398
398
399 return outfiles, outfiles
399 return outfiles, outfiles
400
400
401 class install_lib_symlink(Command):
401 class install_lib_symlink(Command):
402 user_options = [
402 user_options = [
403 ('install-dir=', 'd', "directory to install to"),
403 ('install-dir=', 'd', "directory to install to"),
404 ]
404 ]
405
405
406 def initialize_options(self):
406 def initialize_options(self):
407 self.install_dir = None
407 self.install_dir = None
408
408
409 def finalize_options(self):
409 def finalize_options(self):
410 self.set_undefined_options('symlink',
410 self.set_undefined_options('symlink',
411 ('install_lib', 'install_dir'),
411 ('install_lib', 'install_dir'),
412 )
412 )
413
413
414 def run(self):
414 def run(self):
415 if sys.platform == 'win32':
415 if sys.platform == 'win32':
416 raise Exception("This doesn't work on Windows.")
416 raise Exception("This doesn't work on Windows.")
417 pkg = os.path.join(os.getcwd(), 'IPython')
417 pkg = os.path.join(os.getcwd(), 'IPython')
418 dest = os.path.join(self.install_dir, 'IPython')
418 dest = os.path.join(self.install_dir, 'IPython')
419 if os.path.islink(dest):
419 if os.path.islink(dest):
420 print('removing existing symlink at %s' % dest)
420 print('removing existing symlink at %s' % dest)
421 os.unlink(dest)
421 os.unlink(dest)
422 print('symlinking %s -> %s' % (pkg, dest))
422 print('symlinking %s -> %s' % (pkg, dest))
423 os.symlink(pkg, dest)
423 os.symlink(pkg, dest)
424
424
425 class unsymlink(install):
425 class unsymlink(install):
426 def run(self):
426 def run(self):
427 dest = os.path.join(self.install_lib, 'IPython')
427 dest = os.path.join(self.install_lib, 'IPython')
428 if os.path.islink(dest):
428 if os.path.islink(dest):
429 print('removing symlink at %s' % dest)
429 print('removing symlink at %s' % dest)
430 os.unlink(dest)
430 os.unlink(dest)
431 else:
431 else:
432 print('No symlink exists at %s' % dest)
432 print('No symlink exists at %s' % dest)
433
433
434 class install_symlinked(install):
434 class install_symlinked(install):
435 def run(self):
435 def run(self):
436 if sys.platform == 'win32':
436 if sys.platform == 'win32':
437 raise Exception("This doesn't work on Windows.")
437 raise Exception("This doesn't work on Windows.")
438
438
439 # Run all sub-commands (at least those that need to be run)
439 # Run all sub-commands (at least those that need to be run)
440 for cmd_name in self.get_sub_commands():
440 for cmd_name in self.get_sub_commands():
441 self.run_command(cmd_name)
441 self.run_command(cmd_name)
442
442
443 # 'sub_commands': a list of commands this command might have to run to
443 # 'sub_commands': a list of commands this command might have to run to
444 # get its work done. See cmd.py for more info.
444 # get its work done. See cmd.py for more info.
445 sub_commands = [('install_lib_symlink', lambda self:True),
445 sub_commands = [('install_lib_symlink', lambda self:True),
446 ('install_scripts_sym', lambda self:True),
446 ('install_scripts_sym', lambda self:True),
447 ]
447 ]
448
448
449 class install_scripts_for_symlink(install_scripts):
449 class install_scripts_for_symlink(install_scripts):
450 """Redefined to get options from 'symlink' instead of 'install'.
450 """Redefined to get options from 'symlink' instead of 'install'.
451
451
452 I love distutils almost as much as I love setuptools.
452 I love distutils almost as much as I love setuptools.
453 """
453 """
454 def finalize_options(self):
454 def finalize_options(self):
455 self.set_undefined_options('build', ('build_scripts', 'build_dir'))
455 self.set_undefined_options('build', ('build_scripts', 'build_dir'))
456 self.set_undefined_options('symlink',
456 self.set_undefined_options('symlink',
457 ('install_scripts', 'install_dir'),
457 ('install_scripts', 'install_dir'),
458 ('force', 'force'),
458 ('force', 'force'),
459 ('skip_build', 'skip_build'),
459 ('skip_build', 'skip_build'),
460 )
460 )
461
461
462 #---------------------------------------------------------------------------
462 #---------------------------------------------------------------------------
463 # Verify all dependencies
463 # Verify all dependencies
464 #---------------------------------------------------------------------------
464 #---------------------------------------------------------------------------
465
465
466 def check_for_dependencies():
466 def check_for_dependencies():
467 """Check for IPython's dependencies.
467 """Check for IPython's dependencies.
468
468
469 This function should NOT be called if running under setuptools!
469 This function should NOT be called if running under setuptools!
470 """
470 """
471 from setupext.setupext import (
471 from setupext.setupext import (
472 print_line, print_raw, print_status,
472 print_line, print_raw, print_status,
473 check_for_sphinx, check_for_pygments,
473 check_for_sphinx, check_for_pygments,
474 check_for_nose, check_for_pexpect,
474 check_for_nose, check_for_pexpect,
475 check_for_pyzmq, check_for_readline,
475 check_for_pyzmq, check_for_readline,
476 check_for_jinja2, check_for_tornado
476 check_for_jinja2, check_for_tornado
477 )
477 )
478 print_line()
478 print_line()
479 print_raw("BUILDING IPYTHON")
479 print_raw("BUILDING IPYTHON")
480 print_status('python', sys.version)
480 print_status('python', sys.version)
481 print_status('platform', sys.platform)
481 print_status('platform', sys.platform)
482 if sys.platform == 'win32':
482 if sys.platform == 'win32':
483 print_status('Windows version', sys.getwindowsversion())
483 print_status('Windows version', sys.getwindowsversion())
484
484
485 print_raw("")
485 print_raw("")
486 print_raw("OPTIONAL DEPENDENCIES")
486 print_raw("OPTIONAL DEPENDENCIES")
487
487
488 check_for_sphinx()
488 check_for_sphinx()
489 check_for_pygments()
489 check_for_pygments()
490 check_for_nose()
490 check_for_nose()
491 if os.name == 'posix':
491 if os.name == 'posix':
492 check_for_pexpect()
492 check_for_pexpect()
493 check_for_pyzmq()
493 check_for_pyzmq()
494 check_for_tornado()
494 check_for_tornado()
495 check_for_readline()
495 check_for_readline()
496 check_for_jinja2()
496 check_for_jinja2()
497
497
498 #---------------------------------------------------------------------------
498 #---------------------------------------------------------------------------
499 # VCS related
499 # VCS related
500 #---------------------------------------------------------------------------
500 #---------------------------------------------------------------------------
501
501
502 # utils.submodule has checks for submodule status
502 # utils.submodule has checks for submodule status
503 execfile(pjoin('IPython','utils','submodule.py'), globals())
503 execfile(pjoin('IPython','utils','submodule.py'), globals())
504
504
505 class UpdateSubmodules(Command):
505 class UpdateSubmodules(Command):
506 """Update git submodules
506 """Update git submodules
507
507
508 IPython's external javascript dependencies live in a separate repo.
508 IPython's external javascript dependencies live in a separate repo.
509 """
509 """
510 description = "Update git submodules"
510 description = "Update git submodules"
511 user_options = []
511 user_options = []
512
512
513 def initialize_options(self):
513 def initialize_options(self):
514 pass
514 pass
515
515
516 def finalize_options(self):
516 def finalize_options(self):
517 pass
517 pass
518
518
519 def run(self):
519 def run(self):
520 failure = False
520 failure = False
521 try:
521 try:
522 self.spawn('git submodule init'.split())
522 self.spawn('git submodule init'.split())
523 self.spawn('git submodule update --recursive'.split())
523 self.spawn('git submodule update --recursive'.split())
524 except Exception as e:
524 except Exception as e:
525 failure = e
525 failure = e
526 print(e)
526 print(e)
527
527
528 if not check_submodule_status(repo_root) == 'clean':
528 if not check_submodule_status(repo_root) == 'clean':
529 print("submodules could not be checked out")
529 print("submodules could not be checked out")
530 sys.exit(1)
530 sys.exit(1)
531
531
532
532
533 def git_prebuild(pkg_dir, build_cmd=build_py):
533 def git_prebuild(pkg_dir, build_cmd=build_py):
534 """Return extended build or sdist command class for recording commit
534 """Return extended build or sdist command class for recording commit
535
535
536 records git commit in IPython.utils._sysinfo.commit
536 records git commit in IPython.utils._sysinfo.commit
537
537
538 for use in IPython.utils.sysinfo.sys_info() calls after installation.
538 for use in IPython.utils.sysinfo.sys_info() calls after installation.
539
539
540 Also ensures that submodules exist prior to running
540 Also ensures that submodules exist prior to running
541 """
541 """
542
542
543 class MyBuildPy(build_cmd):
543 class MyBuildPy(build_cmd):
544 ''' Subclass to write commit data into installation tree '''
544 ''' Subclass to write commit data into installation tree '''
545 def run(self):
545 def run(self):
546 build_cmd.run(self)
546 build_cmd.run(self)
547 # this one will only fire for build commands
547 # this one will only fire for build commands
548 if hasattr(self, 'build_lib'):
548 if hasattr(self, 'build_lib'):
549 self._record_commit(self.build_lib)
549 self._record_commit(self.build_lib)
550
550
551 def make_release_tree(self, base_dir, files):
551 def make_release_tree(self, base_dir, files):
552 # this one will fire for sdist
552 # this one will fire for sdist
553 build_cmd.make_release_tree(self, base_dir, files)
553 build_cmd.make_release_tree(self, base_dir, files)
554 self._record_commit(base_dir)
554 self._record_commit(base_dir)
555
555
556 def _record_commit(self, base_dir):
556 def _record_commit(self, base_dir):
557 import subprocess
557 import subprocess
558 proc = subprocess.Popen('git rev-parse --short HEAD',
558 proc = subprocess.Popen('git rev-parse --short HEAD',
559 stdout=subprocess.PIPE,
559 stdout=subprocess.PIPE,
560 stderr=subprocess.PIPE,
560 stderr=subprocess.PIPE,
561 shell=True)
561 shell=True)
562 repo_commit, _ = proc.communicate()
562 repo_commit, _ = proc.communicate()
563 repo_commit = repo_commit.strip().decode("ascii")
563 repo_commit = repo_commit.strip().decode("ascii")
564
564
565 out_pth = pjoin(base_dir, pkg_dir, 'utils', '_sysinfo.py')
565 out_pth = pjoin(base_dir, pkg_dir, 'utils', '_sysinfo.py')
566 if os.path.isfile(out_pth) and not repo_commit:
566 if os.path.isfile(out_pth) and not repo_commit:
567 # nothing to write, don't clobber
567 # nothing to write, don't clobber
568 return
568 return
569
569
570 print("writing git commit '%s' to %s" % (repo_commit, out_pth))
570 print("writing git commit '%s' to %s" % (repo_commit, out_pth))
571
571
572 # remove to avoid overwriting original via hard link
572 # remove to avoid overwriting original via hard link
573 try:
573 try:
574 os.remove(out_pth)
574 os.remove(out_pth)
575 except (IOError, OSError):
575 except (IOError, OSError):
576 pass
576 pass
577 with open(out_pth, 'w') as out_file:
577 with open(out_pth, 'w') as out_file:
578 out_file.writelines([
578 out_file.writelines([
579 '# GENERATED BY setup.py\n',
579 '# GENERATED BY setup.py\n',
580 'commit = "%s"\n' % repo_commit,
580 'commit = "%s"\n' % repo_commit,
581 ])
581 ])
582 return require_submodules(MyBuildPy)
582 return require_submodules(MyBuildPy)
583
583
584
584
585 def require_submodules(command):
585 def require_submodules(command):
586 """decorator for instructing a command to check for submodules before running"""
586 """decorator for instructing a command to check for submodules before running"""
587 class DecoratedCommand(command):
587 class DecoratedCommand(command):
588 def run(self):
588 def run(self):
589 if not check_submodule_status(repo_root) == 'clean':
589 if not check_submodule_status(repo_root) == 'clean':
590 print("submodules missing! Run `setup.py submodule` and try again")
590 print("submodules missing! Run `setup.py submodule` and try again")
591 sys.exit(1)
591 sys.exit(1)
592 command.run(self)
592 command.run(self)
593 return DecoratedCommand
593 return DecoratedCommand
594
594
595 #---------------------------------------------------------------------------
595 #---------------------------------------------------------------------------
596 # bdist related
596 # bdist related
597 #---------------------------------------------------------------------------
597 #---------------------------------------------------------------------------
598
598
599 def get_bdist_wheel():
599 def get_bdist_wheel():
600 """Construct bdist_wheel command for building wheels
600 """Construct bdist_wheel command for building wheels
601
601
602 Constructs py2-none-any tag, instead of py2.7-none-any
602 Constructs py2-none-any tag, instead of py2.7-none-any
603 """
603 """
604 class RequiresWheel(Command):
604 class RequiresWheel(Command):
605 description = "Dummy command for missing bdist_wheel"
605 description = "Dummy command for missing bdist_wheel"
606 user_options = []
606 user_options = []
607
607
608 def initialize_options(self):
608 def initialize_options(self):
609 pass
609 pass
610
610
611 def finalize_options(self):
611 def finalize_options(self):
612 pass
612 pass
613
613
614 def run(self):
614 def run(self):
615 print("bdist_wheel requires the wheel package")
615 print("bdist_wheel requires the wheel package")
616 sys.exit(1)
616 sys.exit(1)
617
617
618 if 'setuptools' not in sys.modules:
618 if 'setuptools' not in sys.modules:
619 return RequiresWheel
619 return RequiresWheel
620 else:
620 else:
621 try:
621 try:
622 from wheel.bdist_wheel import bdist_wheel, read_pkg_info, write_pkg_info
622 from wheel.bdist_wheel import bdist_wheel, read_pkg_info, write_pkg_info
623 except ImportError:
623 except ImportError:
624 return RequiresWheel
624 return RequiresWheel
625
625
626 class bdist_wheel_tag(bdist_wheel):
626 class bdist_wheel_tag(bdist_wheel):
627
627
628 def add_requirements(self, metadata_path):
628 def add_requirements(self, metadata_path):
629 """transform platform-dependent requirements"""
629 """transform platform-dependent requirements"""
630 pkg_info = read_pkg_info(metadata_path)
630 pkg_info = read_pkg_info(metadata_path)
631 # pkg_info is an email.Message object (?!)
631 # pkg_info is an email.Message object (?!)
632 # we have to remove the unconditional 'readline' and/or 'pyreadline' entries
632 # we have to remove the unconditional 'readline' and/or 'pyreadline' entries
633 # and transform them to conditionals
633 # and transform them to conditionals
634 requires = pkg_info.get_all('Requires-Dist')
634 requires = pkg_info.get_all('Requires-Dist')
635 del pkg_info['Requires-Dist']
635 del pkg_info['Requires-Dist']
636 def _remove_startswith(lis, prefix):
636 def _remove_startswith(lis, prefix):
637 """like list.remove, but with startswith instead of =="""
637 """like list.remove, but with startswith instead of =="""
638 found = False
638 found = False
639 for idx, item in enumerate(lis):
639 for idx, item in enumerate(lis):
640 if item.startswith(prefix):
640 if item.startswith(prefix):
641 found = True
641 found = True
642 break
642 break
643 if found:
643 if found:
644 lis.pop(idx)
644 lis.pop(idx)
645
645
646 for pkg in ("gnureadline", "pyreadline", "mock"):
646 for pkg in ("gnureadline", "pyreadline", "mock"):
647 _remove_startswith(requires, pkg)
647 _remove_startswith(requires, pkg)
648 requires.append("gnureadline; sys.platform == 'darwin' and platform.python_implementation == 'CPython'")
648 requires.append("gnureadline; sys.platform == 'darwin' and platform.python_implementation == 'CPython'")
649 requires.append("pyreadline (>=2.0); extra == 'terminal' and sys.platform == 'win32' and platform.python_implementation == 'CPython'")
649 requires.append("pyreadline (>=2.0); extra == 'terminal' and sys.platform == 'win32' and platform.python_implementation == 'CPython'")
650 requires.append("pyreadline (>=2.0); extra == 'all' and sys.platform == 'win32' and platform.python_implementation == 'CPython'")
650 requires.append("pyreadline (>=2.0); extra == 'all' and sys.platform == 'win32' and platform.python_implementation == 'CPython'")
651 requires.append("mock; extra == 'test' and python_version < '3.3'")
651 requires.append("mock; extra == 'test' and python_version < '3.3'")
652 for r in requires:
652 for r in requires:
653 pkg_info['Requires-Dist'] = r
653 pkg_info['Requires-Dist'] = r
654 write_pkg_info(metadata_path, pkg_info)
654 write_pkg_info(metadata_path, pkg_info)
655
655
656 return bdist_wheel_tag
656 return bdist_wheel_tag
657
657
658 #---------------------------------------------------------------------------
658 #---------------------------------------------------------------------------
659 # Notebook related
659 # Notebook related
660 #---------------------------------------------------------------------------
660 #---------------------------------------------------------------------------
661
661
662 class CompileCSS(Command):
662 class CompileCSS(Command):
663 """Recompile Notebook CSS
663 """Recompile Notebook CSS
664
664
665 Regenerate the compiled CSS from LESS sources.
665 Regenerate the compiled CSS from LESS sources.
666
666
667 Requires various dev dependencies, such as fabric and lessc.
667 Requires various dev dependencies, such as fabric and lessc.
668 """
668 """
669 description = "Recompile Notebook CSS"
669 description = "Recompile Notebook CSS"
670 user_options = [
670 user_options = [
671 ('minify', 'x', "minify CSS"),
671 ('minify', 'x', "minify CSS"),
672 ('force', 'f', "force recompilation of CSS"),
672 ('force', 'f', "force recompilation of CSS"),
673 ]
673 ]
674
674
675 def initialize_options(self):
675 def initialize_options(self):
676 self.minify = False
676 self.minify = False
677 self.force = False
677 self.force = False
678
678
679 def finalize_options(self):
679 def finalize_options(self):
680 self.minify = bool(self.minify)
680 self.minify = bool(self.minify)
681 self.force = bool(self.force)
681 self.force = bool(self.force)
682
682
683 def run(self):
683 def run(self):
684 check_call([
684 check_call([
685 "fab",
685 "fab",
686 "css:minify=%s,force=%s" % (self.minify, self.force),
686 "css:minify=%s,force=%s" % (self.minify, self.force),
687 ], cwd=pjoin(repo_root, "IPython", "html"),
687 ], cwd=pjoin(repo_root, "IPython", "html"),
688 )
688 )
689
689
690
690
691 class JavascriptVersion(Command):
691 class JavascriptVersion(Command):
692 """write the javascript version to notebook javascript"""
692 """write the javascript version to notebook javascript"""
693 description = "Write IPython version to javascript"
693 description = "Write IPython version to javascript"
694 user_options = []
694 user_options = []
695
695
696 def initialize_options(self):
696 def initialize_options(self):
697 pass
697 pass
698
698
699 def finalize_options(self):
699 def finalize_options(self):
700 pass
700 pass
701
701
702 def run(self):
702 def run(self):
703 nsfile = pjoin(repo_root, "IPython", "html", "static", "base", "js", "namespace.js")
703 nsfile = pjoin(repo_root, "IPython", "html", "static", "base", "js", "namespace.js")
704 with open(nsfile) as f:
704 with open(nsfile) as f:
705 lines = f.readlines()
705 lines = f.readlines()
706 with open(nsfile, 'w') as f:
706 with open(nsfile, 'w') as f:
707 for line in lines:
707 for line in lines:
708 if line.startswith("IPython.version"):
708 if line.startswith("IPython.version"):
709 line = 'IPython.version = "{0}";\n'.format(version)
709 line = 'IPython.version = "{0}";\n'.format(version)
710 f.write(line)
710 f.write(line)
711
711
712
712
713 def css_js_prerelease(command, strict=True):
713 def css_js_prerelease(command, strict=True):
714 """decorator for building js/minified css prior to a release"""
714 """decorator for building js/minified css prior to a release"""
715 class DecoratedCommand(command):
715 class DecoratedCommand(command):
716 def run(self):
716 def run(self):
717 self.distribution.run_command('jsversion')
717 self.distribution.run_command('jsversion')
718 css = self.distribution.get_command_obj('css')
718 css = self.distribution.get_command_obj('css')
719 css.minify = True
719 css.minify = True
720 try:
720 try:
721 self.distribution.run_command('css')
721 self.distribution.run_command('css')
722 except Exception as e:
722 except Exception as e:
723 if strict:
723 if strict:
724 raise
724 raise
725 else:
725 else:
726 log.warn("Failed to build css sourcemaps: %s" % e)
726 log.warn("Failed to build css sourcemaps: %s" % e)
727 command.run(self)
727 command.run(self)
728 return DecoratedCommand
728 return DecoratedCommand
General Comments 0
You need to be logged in to leave comments. Login now