##// END OF EJS Templates
Merge pull request #3325 from ellisonbg/jsreorg...
Fernando Perez -
r10748:f166c754 merge
parent child Browse files
Show More
@@ -0,0 +1,8 b''
1 /*This file contains any manual css for this page that needs to override the global styles.
2 This is only required when different pages style the same element differently. This is just
3 a hack to deal with our current css styles and no new styling should be added in this file.*/
4
5 #ipython-main-app {
6 margin: 50px auto;
7 text-align: center;
8 } No newline at end of file
@@ -0,0 +1,1 b''
1 // Custom styles for login.html No newline at end of file
@@ -0,0 +1,2 b''
1 // Custom styles for logout.html
2
@@ -0,0 +1,2 b''
1 @import "../auth/less/login.less";
2 @import "../auth/less/logout.less";
@@ -0,0 +1,11 b''
1 // Mixin CSS classes
2
3 .border-box-sizing {
4 box-sizing: border-box;
5 -moz-box-sizing: border-box;
6 -webkit-box-sizing: border-box;
7 }
8
9 .corner-all {
10 border-radius: @corner_radius;
11 } No newline at end of file
@@ -0,0 +1,4 b''
1 @import "../base/less/variables.less";
2 @import "../base/less/mixins.less";
3 @import "../base/less/flexbox.less";
4 @import "../base/less/page.less";
@@ -0,0 +1,10 b''
1 // Our customizations to bootstrap go here.
2
3 @textColor: @black;
4 @baseFontSize: 13px;
5 @baseLineHeight: 1.231;
6 @monoFontFamily: monospace; // to allow user to customize their fonts
7
8 // Our own global variables for all pages go here
9
10 @corner_radius: 4px; No newline at end of file
@@ -0,0 +1,9 b''
1 /*This file contains any manual css for this page that needs to override the global styles.
2 This is only required when different pages style the same element differently. This is just
3 a hack to deal with our current css styles and no new styling should be added in this file.*/
4
5 #ipython-main-app {
6 width: 100%;
7 position: relative;
8 font-size: 110%;
9 } No newline at end of file
@@ -0,0 +1,13 b''
1 /* CSS font colors for translated ANSI colors. */
2
3
4 .ansiblack {color: black;}
5 .ansired {color: darkred;}
6 .ansigreen {color: darkgreen;}
7 .ansiyellow {color: brown;}
8 .ansiblue {color: darkblue;}
9 .ansipurple {color: darkviolet;}
10 .ansicyan {color: steelblue;}
11 .ansigrey {color: grey;}
12 .ansibold {font-weight: bold;}
13
@@ -0,0 +1,29 b''
1 .cell {
2 border: 1px solid transparent;
3 .vbox();
4
5 &.selected {
6 .corner-all;
7 border : thin @border_color solid;
8 }
9 }
10
11 div.cell {
12 width: 100%;
13 padding: 5px 5px 5px 0px;
14 /* This acts as a spacer between cells, that is outside the border */
15 margin: 2px 0px 2px 0px;
16 outline: none;
17 }
18
19 div.prompt {
20 /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
21 width: 11ex;
22 /* This 0.4em is tuned to match the padding on the CodeMirror editor. */
23 padding: 0.4em;
24 margin: 0px;
25 font-family: @monoFontFamily;
26 text-align: right;
27 /* This has to match that of the the CodeMirror class line-height below */
28 line-height: @baseLineHeight;
29 }
@@ -0,0 +1,69 b''
1 div.code_cell {
2 }
3
4 /* any special styling for code cells that are currently running goes here */
5 div.code_cell.running {
6 }
7
8 div.input {
9 page-break-inside: avoid;
10 .hbox();
11 }
12
13 /* input_area and input_prompt must match in top border and margin for alignment */
14 div.input_area {
15 border: 1px solid @light_border_color;
16 .corner-all;
17 background: @cell_background;
18 }
19
20 div.input_prompt {
21 color: navy;
22 border-top: 1px solid transparent;
23 }
24
25 div.output_wrapper {
26 /* This is a spacer between the input and output of each cell */
27 margin-top: 5px;
28 margin-left: 5px;
29 /* FF needs explicit width to stretch */
30 width: 100%;
31 /* this position must be relative to enable descendents to be absolute within it */
32 position: relative;
33 }
34
35 /* class for the output area when it should be height-limited */
36 div.output_scroll {
37 /* ideally, this would be max-height, but FF barfs all over that */
38 height: 24em;
39 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
40 width: 100%;
41
42 overflow: auto;
43 .corner-all;
44 .box-shadow(inset 0 2px 8px rgba(0, 0, 0, .8));
45 }
46
47 /* output div while it is collapsed */
48 div.output_collapsed {
49 margin-right: 5px;
50 }
51
52 div.out_prompt_overlay {
53 height: 100%;
54 padding: 0px;
55 position: absolute;
56 .corner-all;
57 }
58
59 div.out_prompt_overlay:hover {
60 /* use inner shadow to get border that is computed the same on WebKit/FF */
61 .box-shadow(inset 0 0 1px #000);
62 background: rgba(240, 240, 240, 0.5);
63 }
64
65 div.output_prompt {
66 color: darkred;
67 /* 5px right shift to account for margin in parent container */
68 margin: 0 5px 0 -5px;
69 }
@@ -0,0 +1,50 b''
1 /* The following gets added to the <head> if it is detected that the user has a
2 * monospace font with inconsistent normal/bold/italic height. See
3 * notebookmain.js. Such fonts will have keywords vertically offset with
4 * respect to the rest of the text. The user should select a better font.
5 * See: https://github.com/ipython/ipython/issues/1503
6 *
7 * .CodeMirror span {
8 * vertical-align: bottom;
9 * }
10 */
11
12 .CodeMirror {
13 line-height: @baseLineHeight; /* Changed from 1em to our global default */
14 height: auto; /* Changed to auto to autogrow */
15 background: none; /* Changed from white to allow our bg to show through */
16 }
17
18 .CodeMirror-scroll {
19 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
20 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
21 overflow-y: hidden;
22 overflow-x: auto; /* Changed from auto to remove scrollbar */
23 }
24
25 .CodeMirror-lines {
26 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
27 /* we have set a different line-height and want this to scale with that. */
28 padding: 0.4em;
29 }
30
31 .CodeMirror-linenumber {
32 // This is needed to fine tune the position of the line numbers because we use the 0.4em
33 // spacing in various places. Fine tuned to look right.
34 padding: 0 8px 0 4px;
35 }
36
37 .CodeMirror-gutters {
38 // This is needed because our cell has rounded corners, otherwise the gutter area square
39 // corner cuts into the rounded cell border.
40 border-bottom-left-radius: @corner_radius;
41 border-top-left-radius: @corner_radius;
42 }
43
44 .CodeMirror pre {
45 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
46 /* .CodeMirror-lines */
47 padding: 0;
48 border: 0;
49 .border-radius(0)
50 }
@@ -0,0 +1,24 b''
1 .completions {
2 position: absolute;
3 z-index: 10;
4 overflow: hidden;
5 border: 1px solid @border_color;
6 .corner-all;
7 .box-shadow(0px 6px 10px -1px #adadad);
8 }
9
10 .completions select {
11 background: white;
12 outline: none;
13 border: none;
14 padding: 0px;
15 margin: 0px;
16 overflow: auto;
17 font-family: @monoFontFamily;
18 font-size: 110%;
19 color: @textColor;
20 }
21
22 .completions select option.context {
23 color: @blueDark;
24 }
@@ -0,0 +1,25 b''
1 .ui-menubar-item .ui-button .ui-button-text {
2 padding: 0.4em 1.0em;
3 font-size: 100%;
4 }
5
6 .ui-menu {
7 .box-shadow(0px 6px 10px -1px #adadad);
8 }
9
10 .ui-menu .ui-menu-item a {
11 border: 1px solid transparent;
12 padding: 2px 1.6em;
13 }
14
15 .ui-menu .ui-menu-item a.ui-state-focus {
16 margin: 0;
17 }
18
19 .ui-menu hr {
20 margin: 0.3em 0;
21 }
22
23 #menubar_container {
24 position: relative;
25 }
@@ -0,0 +1,71 b''
1
2 body {
3 background-color: @bodyBackground;
4 }
5
6 body.notebook_app {
7 overflow: hidden;
8 }
9
10 span#notebook_name {
11 height: 1em;
12 line-height: 1em;
13 padding: 3px;
14 border: none;
15 font-size: 146.5%;
16 }
17
18 div#notebook_panel {
19 margin: 0px 0px 0px 0px;
20 padding: 0px;
21 }
22
23 div#notebook {
24 overflow-y: scroll;
25 overflow-x: auto;
26 width: 100%;
27 /* This spaces the cell away from the edge of the notebook area */
28 padding: 5px 5px 15px 5px;
29 margin: 0px;
30 }
31
32 div.ui-widget-content {
33 border: 1px solid @border_color;
34 outline: none;
35 }
36
37 pre.dialog {
38 background-color: @cell_background;
39 border: 1px solid #ddd;
40 .corner-all;
41 padding: 0.4em;
42 padding-left: 2em;
43 }
44
45 p.dialog {
46 padding : 0.2em;
47 }
48
49 /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
50 to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
51 */
52 pre, code, kbd, samp { white-space: pre-wrap; }
53
54 #fonttest {
55 font-family: @monoFontFamily;
56 }
57
58 a {
59 text-decoration: underline;
60 }
61
62 p {
63 margin-bottom:0;
64 }
65
66 a.heading-anchor:link, a.heading-anchor:visited {
67 text-decoration: none;
68 outline: none;
69 color: inherit;
70 }
71
@@ -0,0 +1,9 b''
1 #notification_area {
2 position: absolute;
3 right: 0px;
4 top: 0px;
5 height: 25px;
6 padding: 3px 0px;
7 padding-right: 3px;
8 z-index: 10;
9 }
@@ -0,0 +1,8 b''
1 .notification_widget{
2 float : right;
3 right: 0px;
4 top: 1px;
5 height: 25px;
6 padding: 3px 6px;
7 z-index: 10;
8 }
@@ -0,0 +1,96 b''
1 /* This class is the outer container of all output sections. */
2 div.output_area {
3 padding: 0px;
4 page-break-inside: avoid;
5 .hbox();
6 }
7
8
9 /* This is needed to protect the pre formating from global settings such
10 as that of bootstrap */
11 div.output_area pre {
12 font-family: @monoFontFamily;
13 margin: 0;
14 padding: 0;
15 border: 0;
16 font-size: 100%;
17 vertical-align: baseline;
18 color: black;
19 background-color: transparent;
20 .border-radius(0);
21 line-height: inherit;
22 }
23
24 /* This class is for the output subarea inside the output_area and after
25 the prompt div. */
26 div.output_subarea {
27 padding: 0.44em 0.4em 0.4em 1px;
28 .box-flex1();
29 }
30
31 /* The rest of the output_* classes are for special styling of the different
32 output types */
33
34 /* all text output has this class: */
35 div.output_text {
36 text-align: left;
37 color: @textColor;
38 font-family: @monoFontFamily;
39 /* This has to match that of the the CodeMirror class line-height below */
40 line-height: @baseLineHeight;
41 }
42
43 /* stdout/stderr are 'text' as well as 'stream', but pyout/pyerr are *not* streams */
44 div.output_stream {
45 padding-top: 0.0em;
46 padding-bottom: 0.0em;
47 }
48 div.output_stdout {
49 }
50 div.output_stderr {
51 background: #fdd; /* very light red background for stderr */
52 }
53
54 div.output_latex {
55 text-align: left;
56 }
57
58 div.output_html {
59 }
60
61 div.output_png {
62 }
63
64 div.output_jpeg {
65 }
66
67 .js-error {
68 color: darkred;
69 }
70
71 /* raw_input styles */
72
73 div.raw_input {
74 padding-top: 0px;
75 padding-bottom: 0px;
76 height: 1em;
77 line-height: 1em;
78 font-family: @monoFontFamily;
79 }
80 span.input_prompt {
81 font-family: inherit;
82 }
83 input.raw_input {
84 font-family: inherit;
85 font-size: inherit;
86 color: inherit;
87 width: auto;
88 margin: -2px 0px 0px 1px;
89 padding-left: 1px;
90 padding-top: 2px;
91 height: 1em;
92 }
93
94 p.p-space {
95 margin-bottom: 10px;
96 } No newline at end of file
@@ -0,0 +1,21 b''
1 div#pager_splitter {
2 height: 8px;
3 }
4
5 #pager_container {
6 position : relative;
7 }
8
9 div#pager {
10 padding: 15px;
11 overflow: auto;
12 display: none;
13
14 pre {
15 font-size: @baseFontSize;
16 line-height: @baseLineHeight;
17 color: @textColor;
18 background-color: @cell_background;
19 padding: 0.4em;
20 }
21 }
@@ -0,0 +1,9 b''
1 .shortcut_key {
2 display: inline-block;
3 width: 15ex;
4 text-align: right;
5 font-family: @monoFontFamily;
6 }
7
8 .shortcut_descr {
9 }
@@ -0,0 +1,9 b''
1 span#save_widget {
2 padding: 5px;
3 margin: 0px 0px 0px 300px;
4 display:inline-block;
5 }
6
7 span#checkpoint_status span#autosave_status {
8 font-size: small;
9 }
@@ -0,0 +1,20 b''
1 @import "variables.less";
2 @import "ansicolors.less";
3 @import "cell.less";
4 @import "celltoolbar.less";
5 @import "codecell.less";
6 @import "codemirror.less";
7 @import "completer.less";
8 @import "highlight.less";
9 @import "menubar.less";
10 @import "notebook.less";
11 @import "notificationarea.less";
12 @import "notificationwidget.less";
13 @import "outputarea.less";
14 @import "pager.less";
15 @import "quickhelp.less";
16 @import "renderedhtml.less";
17 @import "savewidget.less";
18 @import "textcell.less";
19 @import "toolbar.less";
20 @import "tooltip.less";
@@ -0,0 +1,21 b''
1 div.text_cell {
2 padding: 5px 5px 5px 5px;
3 }
4
5 div.text_cell_input {
6 color: @textColor;
7 border: 1px solid @light_border_color;
8 .corner-all;
9 background: @cell_background;
10 }
11
12 div.text_cell_render {
13 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
14 outline: none;
15 resize: none;
16 width: inherit;
17 border-style: none;
18 padding: 5px;
19 color: @textColor;
20 }
21
@@ -0,0 +1,26 b''
1 .toolbar {
2 padding: 3px 15px;
3 border-bottom: @border_width @border_color solid;
4
5 button {
6 margin-top:2px;
7 margin-bottom:2px;
8 }
9
10
11 select, label {
12 height : 19px;
13 vertical-align:middle;
14 margin-right:2px;
15 margin-bottom:0;
16 display: inline;
17 font-size: 92%;
18 margin-left:0.3em;
19 margin-right:0.3em;
20 padding: 0px;
21 }
22 }
23
24 .toolbar select{
25 width:auto;
26 }
@@ -0,0 +1,9 b''
1
2 // Our own variables for this page
3
4 @cell_selected_background: darken(@bodyBackground, 2%);
5 @cell_background: darken(@bodyBackground, 3.2%);
6 @border_color: darken(@cell_selected_background, 31%);
7 @light_border_color: darken(@cell_selected_background, 17%);
8 @border_width: 1px;
9
@@ -0,0 +1,16 b''
1 // Bootstrap
2 @import "../components/bootstrap/less/bootstrap.less";
3
4 // base
5 @import "../base/less/style.less";
6
7 // auth
8 @import "../auth/less/style.less";
9
10 // tree
11 @import "../tree/less/style.less";
12
13 // notebook
14 @import "../notebook/less/style.less";
15
16
@@ -0,0 +1,8 b''
1 /*This file contains any manual css for this page that needs to override the global styles.
2 This is only required when different pages style the same element differently. This is just
3 a hack to deal with our current css styles and no new styling should be added in this file.*/
4
5 #ipython-main-app {
6 width: 920px;
7 margin: 30px auto 0px auto;
8 }
@@ -0,0 +1,2 b''
1 @import "../tree/less/altuploadform.less";
2 @import "../tree/less/tree.less";
@@ -29,7 +29,7 b' def test_image_filename_defaults():'
29 embed=True)
29 embed=True)
30 nt.assert_raises(ValueError, display.Image)
30 nt.assert_raises(ValueError, display.Image)
31 nt.assert_raises(ValueError, display.Image, data='this is not an image', format='badformat', embed=True)
31 nt.assert_raises(ValueError, display.Image, data='this is not an image', format='badformat', embed=True)
32 imgfile = os.path.join(tpath, 'frontend/html/notebook/static/ipynblogo.png')
32 imgfile = os.path.join(tpath, 'frontend/html/notebook/static/base/images/ipynblogo.png')
33 img = display.Image(filename=imgfile)
33 img = display.Image(filename=imgfile)
34 nt.assert_equal('png', img.format)
34 nt.assert_equal('png', img.format)
35 nt.assert_is_not_none(img._repr_png_())
35 nt.assert_is_not_none(img._repr_png_())
@@ -1,6 +1,6 b''
1 # IPython Notebook development
1 # IPython Notebook development
2
2
3 # Development dependencies
3 ## Development dependencies
4
4
5 Developers of the IPython Notebook will need to install the following tools:
5 Developers of the IPython Notebook will need to install the following tools:
6
6
@@ -9,7 +9,7 b' Developers of the IPython Notebook will need to install the following tools:'
9 * less (`npm install -g less`)
9 * less (`npm install -g less`)
10 * bower (`npm install -g bower`)
10 * bower (`npm install -g bower`)
11
11
12 # Components
12 ## Components
13
13
14 We are moving to a model where our JavaScript dependencies are managed using
14 We are moving to a model where our JavaScript dependencies are managed using
15 [bower](http://bower.io/). These packages are installed in `static/components`
15 [bower](http://bower.io/). These packages are installed in `static/components`
@@ -22,8 +22,52 b' we maintain our own fork of CodeMirror that is used with bower. This fork should'
22 track the upstream CodeMirror exactly; the only difference is that we are adding
22 track the upstream CodeMirror exactly; the only difference is that we are adding
23 semantic versioned tags to our repo.
23 semantic versioned tags to our repo.
24
24
25 # less
25 ## less
26
26
27 If you edit our `.less` files you will need to run the less compiler to build
27 If you edit our `.less` files you will need to run the less compiler to build
28 our minified css files. This can be done by running `fab css` from this directory.
28 our minified css files. This can be done by running `fab css` from this directory.
29
29
30 ## JavaScript Documentation
31
32
33 How to Build/ view the doc for JavaScript. JavaScript documentation should follow a
34 style close to JSDoc one, so you should be able to build them with your favorite
35 documentation builder. Still the documentation comment are mainly written to be read
36 with YUI doc. You can either build a static version, or start a YUIdoc server that
37 will live update the doc at every page request.
38
39
40
41 To do so, you will need to install YUIdoc.
42
43 ### Install NodeJS
44
45 Node is a browser less javascript interpreter. To install it please refer to
46 the documentation for your platform. Install also NPM (node package manager) if
47 it does not come bundled with it.
48
49 ### Get YUIdoc
50
51 npm does by default install package in `./node_modules` instead of doing a
52 system wide install. I'll leave you to yuidoc docs if you want to make a system
53 wide install.
54
55 First, cd into js directory :
56 ```bash
57 cd IPython/frontend/html/notebook/static/js/
58 # install yuidoc
59 npm install yuidocjs
60 ```
61
62
63 ### Run YUIdoc server
64
65 From IPython/frontend/html/notebook/static/js/
66 ```bash
67 # run yuidoc for install dir
68 ./node_modules/yuidocjs/lib/cli.js --server .
69 ```
70
71 Follow the instruction and the documentation should be available on localhost:3000
72
73 Omitting `--server` will build a static version in the `out` folder by default. No newline at end of file
@@ -7,15 +7,24 b' import os'
7 static_dir = 'static'
7 static_dir = 'static'
8 components_dir = os.path.join(static_dir, 'components')
8 components_dir = os.path.join(static_dir, 'components')
9
9
10
10 def css(minify=True, verbose=False):
11 def css(minify=True):
12 """generate the css from less files"""
11 """generate the css from less files"""
13 if minify not in ['True', 'False', True, False]:
12 source = os.path.join('style', 'style.less')
14 abort('minify must be Boolean')
13 target = os.path.join('style', 'style.min.css')
15 minify = (minify in ['True',True])
14 _compile_less(source, target, minify, verbose)
15
16 def _to_bool(b):
17 if not b in ['True', 'False', True, False]:
18 abort('boolean expected, got: %s' % b)
19 return (b in ['True', True])
16
20
17 min_flag= '-x' if minify is True else ''
21 def _compile_less(source, target, minify=True, verbose=False):
22 """Complie a less file by source and target relative to static_dir"""
23 minify = _to_bool(minify)
24 verbose = _to_bool(verbose)
25 min_flag = '-x' if minify is True else ''
26 ver_flag = '--verbose' if verbose is True else ''
18 lessc = os.path.join('components', 'less.js', 'bin', 'lessc')
27 lessc = os.path.join('components', 'less.js', 'bin', 'lessc')
19 with lcd(static_dir):
28 with lcd(static_dir):
20 local('{lessc} {min_flag} less/style.less css/style.min.css'.format(**locals()))
29 local('{lessc} {min_flag} {ver_flag} {source} {target}'.format(**locals()))
21
30
@@ -43,7 +43,7 b' class NamedNotebookHandler(IPythonHandler):'
43 nbm = self.notebook_manager
43 nbm = self.notebook_manager
44 if not nbm.notebook_exists(notebook_id):
44 if not nbm.notebook_exists(notebook_id):
45 raise web.HTTPError(404, u'Notebook does not exist: %s' % notebook_id)
45 raise web.HTTPError(404, u'Notebook does not exist: %s' % notebook_id)
46 self.write(self.render_template('notebooks.html',
46 self.write(self.render_template('notebook.html',
47 project=self.project,
47 project=self.project,
48 notebook_id=notebook_id,
48 notebook_id=notebook_id,
49 kill_kernel=False,
49 kill_kernel=False,
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/loginmain.js to IPython/frontend/html/notebook/static/auth/js/loginmain.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/loginmain.js to IPython/frontend/html/notebook/static/auth/js/loginmain.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/loginwidget.js to IPython/frontend/html/notebook/static/auth/js/loginwidget.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/loginwidget.js to IPython/frontend/html/notebook/static/auth/js/loginwidget.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/logoutmain.js to IPython/frontend/html/notebook/static/auth/js/logoutmain.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/logoutmain.js to IPython/frontend/html/notebook/static/auth/js/logoutmain.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/css/boilerplate.css to IPython/frontend/html/notebook/static/base/css/boilerplate.css
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/css/boilerplate.css to IPython/frontend/html/notebook/static/base/css/boilerplate.css
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/favicon.ico to IPython/frontend/html/notebook/static/base/images/favicon.ico
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/favicon.ico to IPython/frontend/html/notebook/static/base/images/favicon.ico
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/ipynblogo.png to IPython/frontend/html/notebook/static/base/images/ipynblogo.png
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/ipynblogo.png to IPython/frontend/html/notebook/static/base/images/ipynblogo.png
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/IPy_Notebook_logo.svg to IPython/frontend/html/notebook/static/base/images/ipynblogo.svg
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/IPy_Notebook_logo.svg to IPython/frontend/html/notebook/static/base/images/ipynblogo.svg
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/events.js to IPython/frontend/html/notebook/static/base/js/events.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/events.js to IPython/frontend/html/notebook/static/base/js/events.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/namespace.js to IPython/frontend/html/notebook/static/base/js/namespace.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/namespace.js to IPython/frontend/html/notebook/static/base/js/namespace.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/page.js to IPython/frontend/html/notebook/static/base/js/page.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/page.js to IPython/frontend/html/notebook/static/base/js/page.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/pagemain.js to IPython/frontend/html/notebook/static/base/js/pagemain.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/pagemain.js to IPython/frontend/html/notebook/static/base/js/pagemain.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/utils.js to IPython/frontend/html/notebook/static/base/js/utils.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/utils.js to IPython/frontend/html/notebook/static/base/js/utils.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/less/flexible-box-model.less to IPython/frontend/html/notebook/static/base/less/flexbox.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/less/flexible-box-model.less to IPython/frontend/html/notebook/static/base/less/flexbox.less
@@ -68,10 +68,3 b' input.ui-button {'
68 span#login_widget {
68 span#login_widget {
69 float: right;
69 float: right;
70 }
70 }
71
72 .border-box-sizing {
73 box-sizing: border-box;
74 -moz-box-sizing: border-box;
75 -webkit-box-sizing: border-box;
76 }
77
@@ -1,7 +1,7 b''
1 /*
1 /*
2 Placeholder for custom user CSS
2 Placeholder for custom user CSS
3
3
4 mainly to be overridden in profile/static/css/custom.css
4 mainly to be overridden in profile/static/custom/custom.css
5
5
6 This will always be an empty file in IPython
6 This will always be an empty file in IPython
7 */ No newline at end of file
7 */
@@ -3,14 +3,14 b''
3 *
3 *
4 *
4 *
5 * Placeholder for custom user javascript
5 * Placeholder for custom user javascript
6 * mainly to be overridden in profile/static/js/custom.js
6 * mainly to be overridden in profile/static/custom/custom.js
7 * This will always be an empty file in IPython
7 * This will always be an empty file in IPython
8 *
8 *
9 * User could add any javascript in the `profile/static/js/custom.js` file
9 * User could add any javascript in the `profile/static/custom/custom.js` file
10 * (and should create it if it does not exist).
10 * (and should create it if it does not exist).
11 * It will be executed by the ipython notebook at load time.
11 * It will be executed by the ipython notebook at load time.
12 *
12 *
13 * Same thing with `profile/static/css/custom.css` to inject custom css into the notebook.
13 * Same thing with `profile/static/custom/custom.css` to inject custom css into the notebook.
14 *
14 *
15 * Example :
15 * Example :
16 *
16 *
@@ -34,10 +34,10 b''
34 * to load custom script into the notebook.
34 * to load custom script into the notebook.
35 *
35 *
36 * // to load the metadata ui extension example.
36 * // to load the metadata ui extension example.
37 * $.getScript('/static/js/celltoolbarpresets/example.js');
37 * $.getScript('/static/notebook/js/celltoolbarpresets/example.js');
38 * // or
38 * // or
39 * // to load the metadata ui extension to control slideshow mode / reveal js for nbconvert
39 * // to load the metadata ui extension to control slideshow mode / reveal js for nbconvert
40 * $.getScript('/static/js/celltoolbarpresets/slideshow.js');
40 * $.getScript('/static/notebook/js/celltoolbarpresets/slideshow.js');
41 *
41 *
42 *
42 *
43 * @module IPython
43 * @module IPython
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/cell.js to IPython/frontend/html/notebook/static/notebook/js/cell.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/cell.js to IPython/frontend/html/notebook/static/notebook/js/cell.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/celltoolbar.js to IPython/frontend/html/notebook/static/notebook/js/celltoolbar.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/celltoolbar.js to IPython/frontend/html/notebook/static/notebook/js/celltoolbar.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/celltoolbarpresets/default.js to IPython/frontend/html/notebook/static/notebook/js/celltoolbarpresets/default.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/celltoolbarpresets/default.js to IPython/frontend/html/notebook/static/notebook/js/celltoolbarpresets/default.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/celltoolbarpresets/example.js to IPython/frontend/html/notebook/static/notebook/js/celltoolbarpresets/example.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/celltoolbarpresets/example.js to IPython/frontend/html/notebook/static/notebook/js/celltoolbarpresets/example.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/celltoolbarpresets/slideshow.js to IPython/frontend/html/notebook/static/notebook/js/celltoolbarpresets/slideshow.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/celltoolbarpresets/slideshow.js to IPython/frontend/html/notebook/static/notebook/js/celltoolbarpresets/slideshow.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/codecell.js to IPython/frontend/html/notebook/static/notebook/js/codecell.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/codecell.js to IPython/frontend/html/notebook/static/notebook/js/codecell.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/codemirror-ipython.js to IPython/frontend/html/notebook/static/notebook/js/codemirror-ipython.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/codemirror-ipython.js to IPython/frontend/html/notebook/static/notebook/js/codemirror-ipython.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/completer.js to IPython/frontend/html/notebook/static/notebook/js/completer.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/completer.js to IPython/frontend/html/notebook/static/notebook/js/completer.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/config.js to IPython/frontend/html/notebook/static/notebook/js/config.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/config.js to IPython/frontend/html/notebook/static/notebook/js/config.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/contexthint.js to IPython/frontend/html/notebook/static/notebook/js/contexthint.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/contexthint.js to IPython/frontend/html/notebook/static/notebook/js/contexthint.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/layoutmanager.js to IPython/frontend/html/notebook/static/notebook/js/layoutmanager.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/layoutmanager.js to IPython/frontend/html/notebook/static/notebook/js/layoutmanager.js
@@ -44,7 +44,7 b' $(document).ready(function () {'
44 IPython.page = new IPython.Page();
44 IPython.page = new IPython.Page();
45 IPython.layout_manager = new IPython.LayoutManager();
45 IPython.layout_manager = new IPython.LayoutManager();
46 IPython.pager = new IPython.Pager('div#pager', 'div#pager_splitter');
46 IPython.pager = new IPython.Pager('div#pager', 'div#pager_splitter');
47 IPython.quick_help = new IPython.QuickHelp('span#quick_help_area');
47 IPython.quick_help = new IPython.QuickHelp();
48 IPython.login_widget = new IPython.LoginWidget('span#login_widget',{baseProjectUrl:baseProjectUrl});
48 IPython.login_widget = new IPython.LoginWidget('span#login_widget',{baseProjectUrl:baseProjectUrl});
49 IPython.notebook = new IPython.Notebook('div#notebook',{baseProjectUrl:baseProjectUrl, read_only:IPython.read_only});
49 IPython.notebook = new IPython.Notebook('div#notebook',{baseProjectUrl:baseProjectUrl, read_only:IPython.read_only});
50 IPython.save_widget = new IPython.SaveWidget('span#save_widget');
50 IPython.save_widget = new IPython.SaveWidget('span#save_widget');
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/maintoolbar.js to IPython/frontend/html/notebook/static/notebook/js/maintoolbar.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/maintoolbar.js to IPython/frontend/html/notebook/static/notebook/js/maintoolbar.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/mathjaxutils.js to IPython/frontend/html/notebook/static/notebook/js/mathjaxutils.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/mathjaxutils.js to IPython/frontend/html/notebook/static/notebook/js/mathjaxutils.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/menubar.js to IPython/frontend/html/notebook/static/notebook/js/menubar.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/menubar.js to IPython/frontend/html/notebook/static/notebook/js/menubar.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/notebook.js to IPython/frontend/html/notebook/static/notebook/js/notebook.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/notebook.js to IPython/frontend/html/notebook/static/notebook/js/notebook.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/notificationarea.js to IPython/frontend/html/notebook/static/notebook/js/notificationarea.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/notificationarea.js to IPython/frontend/html/notebook/static/notebook/js/notificationarea.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/notificationwidget.js to IPython/frontend/html/notebook/static/notebook/js/notificationwidget.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/notificationwidget.js to IPython/frontend/html/notebook/static/notebook/js/notificationwidget.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/outputarea.js to IPython/frontend/html/notebook/static/notebook/js/outputarea.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/outputarea.js to IPython/frontend/html/notebook/static/notebook/js/outputarea.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/pager.js to IPython/frontend/html/notebook/static/notebook/js/pager.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/pager.js to IPython/frontend/html/notebook/static/notebook/js/pager.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/quickhelp.js to IPython/frontend/html/notebook/static/notebook/js/quickhelp.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/quickhelp.js to IPython/frontend/html/notebook/static/notebook/js/quickhelp.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/savewidget.js to IPython/frontend/html/notebook/static/notebook/js/savewidget.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/savewidget.js to IPython/frontend/html/notebook/static/notebook/js/savewidget.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/textcell.js to IPython/frontend/html/notebook/static/notebook/js/textcell.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/textcell.js to IPython/frontend/html/notebook/static/notebook/js/textcell.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/toolbar.js to IPython/frontend/html/notebook/static/notebook/js/toolbar.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/toolbar.js to IPython/frontend/html/notebook/static/notebook/js/toolbar.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/tooltip.js to IPython/frontend/html/notebook/static/notebook/js/tooltip.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/tooltip.js to IPython/frontend/html/notebook/static/notebook/js/tooltip.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/css/celltoolbar.css to IPython/frontend/html/notebook/static/notebook/less/celltoolbar.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/css/celltoolbar.css to IPython/frontend/html/notebook/static/notebook/less/celltoolbar.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/less/highlight.less to IPython/frontend/html/notebook/static/notebook/less/highlight.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/less/highlight.less to IPython/frontend/html/notebook/static/notebook/less/highlight.less
@@ -31,6 +31,14 b''
31 margin: 1em 2em;
31 margin: 1em 2em;
32 }
32 }
33
33
34 pre, code {
35 border: 0;
36 background-color: @bodyBackground;
37 color: @textColor;
38 font-size: 100%;
39 padding: 0px;
40 }
41
34 blockquote {
42 blockquote {
35 margin: 1em 2em;
43 margin: 1em 2em;
36 }
44 }
@@ -101,12 +101,12 b''
101 background-color: @cell_background;
101 background-color: @cell_background;
102
102
103 overflow : visible;
103 overflow : visible;
104 border: @border_color @borderwidth solid;
104 border: @border_color @border_width solid;
105 outline: none;
105 outline: none;
106 padding: 3px;
106 padding: 3px;
107 margin: 0px;
107 margin: 0px;
108 padding-left:7px;
108 padding-left:7px;
109 font-family: monospace;
109 font-family: @monoFontFamily;
110 min-height:50px;
110 min-height:50px;
111
111
112 .dropshadow;
112 .dropshadow;
@@ -118,7 +118,15 b''
118 position: absolute;
118 position: absolute;
119
119
120 z-index: 2;
120 z-index: 2;
121
121
122 .tooltiptext {
123 pre {
124 border: 0;
125 .border-radius(0);
126 font-size: 100%;
127 background-color: @cell_background;
128 }
129 }
122 }
130 }
123
131
124 .pretooltiparrow {
132 .pretooltiparrow {
@@ -134,7 +142,7 b''
134
142
135 .pretooltiparrow:before {
143 .pretooltiparrow:before {
136 background-color : @cell_background;
144 background-color : @cell_background;
137 border : @borderwidth @border_color solid;
145 border : @border_width @border_color solid;
138 z-index:11;
146 z-index:11;
139 content: "";
147 content: "";
140 position: absolute;
148 position: absolute;
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/kernel.js to IPython/frontend/html/notebook/static/services/kernels/js/kernel.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/kernel.js to IPython/frontend/html/notebook/static/services/kernels/js/kernel.js
@@ -1,3 +1,7 b''
1 .clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;}
2 .clearfix:after{clear:both;}
3 .hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;}
4 .input-block-level{display:block;width:100%;min-height:11.231px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
1 article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;}
5 article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;}
2 audio,canvas,video{display:inline-block;*display:inline;*zoom:1;}
6 audio,canvas,video{display:inline-block;*display:inline;*zoom:1;}
3 audio:not([controls]){display:none;}
7 audio:not([controls]){display:none;}
@@ -17,11 +21,7 b' label,select,button,input[type="button"],input[type="reset"],input[type="submit"'
17 input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield;}
21 input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield;}
18 input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;}
22 input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;}
19 textarea{overflow:auto;vertical-align:top;}
23 textarea{overflow:auto;vertical-align:top;}
20 @media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important;} a,a:visited{text-decoration:underline;} a[href]:after{content:" (" attr(href) ")";} abbr[title]:after{content:" (" attr(title) ")";} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:"";} pre,blockquote{border:1px solid #999;page-break-inside:avoid;} thead{display:table-header-group;} tr,img{page-break-inside:avoid;} img{max-width:100% !important;} @page {margin:0.5cm;}p,h2,h3{orphans:3;widows:3;} h2,h3{page-break-after:avoid;}}.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;}
24 @media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important;} a,a:visited{text-decoration:underline;} a[href]:after{content:" (" attr(href) ")";} abbr[title]:after{content:" (" attr(title) ")";} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:"";} pre,blockquote{border:1px solid #999;page-break-inside:avoid;} thead{display:table-header-group;} tr,img{page-break-inside:avoid;} img{max-width:100% !important;} @page {margin:0.5cm;}p,h2,h3{orphans:3;widows:3;} h2,h3{page-break-after:avoid;}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:1.231;color:#000000;background-color:#ffffff;}
21 .clearfix:after{clear:both;}
22 .hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;}
23 .input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
24 body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:20px;color:#000000;background-color:#ffffff;}
25 a{color:#0088cc;text-decoration:none;}
25 a{color:#0088cc;text-decoration:none;}
26 a:hover,a:focus{color:#005580;text-decoration:underline;}
26 a:hover,a:focus{color:#005580;text-decoration:underline;}
27 .img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
27 .img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
@@ -57,7 +57,7 b' a:hover,a:focus{color:#005580;text-decoration:underline;}'
57 .offset1{margin-left:100px;}
57 .offset1{margin-left:100px;}
58 .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;}
58 .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;}
59 .row-fluid:after{clear:both;}
59 .row-fluid:after{clear:both;}
60 .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;}
60 .row-fluid [class*="span"]{display:block;width:100%;min-height:11.231px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;}
61 .row-fluid [class*="span"]:first-child{margin-left:0;}
61 .row-fluid [class*="span"]:first-child{margin-left:0;}
62 .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%;}
62 .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%;}
63 .row-fluid .span12{width:100%;*width:99.94680851063829%;}
63 .row-fluid .span12{width:100%;*width:99.94680851063829%;}
@@ -102,8 +102,8 b' a:hover,a:focus{color:#005580;text-decoration:underline;}'
102 .container:after{clear:both;}
102 .container:after{clear:both;}
103 .container-fluid{padding-right:20px;padding-left:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0;}
103 .container-fluid{padding-right:20px;padding-left:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0;}
104 .container-fluid:after{clear:both;}
104 .container-fluid:after{clear:both;}
105 p{margin:0 0 10px;}
105 p{margin:0 0 0.6155;}
106 .lead{margin-bottom:20px;font-size:19.5px;font-weight:200;line-height:30px;}
106 .lead{margin-bottom:1.231;font-size:19.5px;font-weight:200;line-height:1.8465000000000003;}
107 small{font-size:85%;}
107 small{font-size:85%;}
108 strong{font-weight:bold;}
108 strong{font-weight:bold;}
109 em{font-style:italic;}
109 em{font-style:italic;}
@@ -121,8 +121,8 b' a.text-success:hover,a.text-success:focus{color:#356635;}'
121 .text-left{text-align:left;}
121 .text-left{text-align:left;}
122 .text-right{text-align:right;}
122 .text-right{text-align:right;}
123 .text-center{text-align:center;}
123 .text-center{text-align:center;}
124 h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999999;}
124 h1,h2,h3,h4,h5,h6{margin:0.6155 0;font-family:inherit;font-weight:bold;line-height:1.231;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999999;}
125 h1,h2,h3{line-height:40px;}
125 h1,h2,h3{line-height:2.462;}
126 h1{font-size:35.75px;}
126 h1{font-size:35.75px;}
127 h2{font-size:29.25px;}
127 h2{font-size:29.25px;}
128 h3{font-size:22.75px;}
128 h3{font-size:22.75px;}
@@ -133,43 +133,48 b' h1 small{font-size:22.75px;}'
133 h2 small{font-size:16.25px;}
133 h2 small{font-size:16.25px;}
134 h3 small{font-size:13px;}
134 h3 small{font-size:13px;}
135 h4 small{font-size:13px;}
135 h4 small{font-size:13px;}
136 .page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eeeeee;}
136 .page-header{padding-bottom:-0.38449999999999995;margin:1.231 0 1.8465000000000003;border-bottom:1px solid #eeeeee;}
137 ul,ol{padding:0;margin:0 0 10px 25px;}
137 ul,ol{padding:0;margin:0 0 0.6155 25px;}
138 ul ul,ul ol,ol ol,ol ul{margin-bottom:0;}
138 ul ul,ul ol,ol ol,ol ul{margin-bottom:0;}
139 li{line-height:20px;}
139 li{line-height:1.231;}
140 ul.unstyled,ol.unstyled{margin-left:0;list-style:none;}
140 ul.unstyled,ol.unstyled{margin-left:0;list-style:none;}
141 ul.inline,ol.inline{margin-left:0;list-style:none;}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;*zoom:1;padding-left:5px;padding-right:5px;}
141 ul.inline,ol.inline{margin-left:0;list-style:none;}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;*zoom:1;padding-left:5px;padding-right:5px;}
142 dl{margin-bottom:20px;}
142 dl{margin-bottom:1.231;}
143 dt,dd{line-height:20px;}
143 dt,dd{line-height:1.231;}
144 dt{font-weight:bold;}
144 dt{font-weight:bold;}
145 dd{margin-left:10px;}
145 dd{margin-left:0.6155;}
146 .dl-horizontal{*zoom:1;}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0;}
146 .dl-horizontal{*zoom:1;}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0;}
147 .dl-horizontal:after{clear:both;}
147 .dl-horizontal:after{clear:both;}
148 .dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
148 .dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
149 .dl-horizontal dd{margin-left:180px;}
149 .dl-horizontal dd{margin-left:180px;}
150 hr{margin:20px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;}
150 hr{margin:1.231 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;}
151 abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999999;}
151 abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999999;}
152 abbr.initialism{font-size:90%;text-transform:uppercase;}
152 abbr.initialism{font-size:90%;text-transform:uppercase;}
153 blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16.25px;font-weight:300;line-height:1.25;}
153 blockquote{padding:0 0 0 15px;margin:0 0 1.231;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16.25px;font-weight:300;line-height:1.25;}
154 blockquote small{display:block;line-height:20px;color:#999999;}blockquote small:before{content:'\2014 \00A0';}
154 blockquote small{display:block;line-height:1.231;color:#999999;}blockquote small:before{content:'\2014 \00A0';}
155 blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eeeeee;border-left:0;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;}
155 blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eeeeee;border-left:0;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;}
156 blockquote.pull-right small:before{content:'';}
156 blockquote.pull-right small:before{content:'';}
157 blockquote.pull-right small:after{content:'\00A0 \2014';}
157 blockquote.pull-right small:after{content:'\00A0 \2014';}
158 q:before,q:after,blockquote:before,blockquote:after{content:"";}
158 q:before,q:after,blockquote:before,blockquote:after{content:"";}
159 address{display:block;margin-bottom:20px;font-style:normal;line-height:20px;}
159 address{display:block;margin-bottom:1.231;font-style:normal;line-height:1.231;}
160 form{margin:0 0 20px;}
160 code,pre{padding:0 3px 2px;font-family:monospace;font-size:11px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
161 code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap;}
162 pre{display:block;padding:0.11550000000000005;margin:0 0 0.6155;font-size:12px;line-height:1.231;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}pre.prettyprint{margin-bottom:1.231;}
163 pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0;}
164 .pre-scrollable{max-height:340px;overflow-y:scroll;}
165 form{margin:0 0 1.231;}
161 fieldset{padding:0;margin:0;border:0;}
166 fieldset{padding:0;margin:0;border:0;}
162 legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:19.5px;line-height:40px;color:#333333;border:0;border-bottom:1px solid #e5e5e5;}legend small{font-size:15px;color:#999999;}
167 legend{display:block;width:100%;padding:0;margin-bottom:1.231;font-size:19.5px;line-height:2.462;color:#333333;border:0;border-bottom:1px solid #e5e5e5;}legend small{font-size:0.9232500000000001;color:#999999;}
163 label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:20px;}
168 label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:1.231;}
164 input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;}
169 input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;}
165 label{display:block;margin-bottom:5px;}
170 label{display:block;margin-bottom:5px;}
166 select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:13px;line-height:20px;color:#555555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle;}
171 select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:1.231;padding:4px 6px;margin-bottom:0.6155;font-size:13px;line-height:1.231;color:#555555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle;}
167 input,textarea,.uneditable-input{width:206px;}
172 input,textarea,.uneditable-input{width:206px;}
168 textarea{height:auto;}
173 textarea{height:auto;}
169 textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s;}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82, 168, 236, 0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);}
174 textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s;}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82, 168, 236, 0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);}
170 input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal;}
175 input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal;}
171 input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto;}
176 input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto;}
172 select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px;}
177 select,input[type="file"]{height:11.231px;*margin-top:4px;line-height:11.231px;}
173 select{width:220px;border:1px solid #cccccc;background-color:#ffffff;}
178 select{width:220px;border:1px solid #cccccc;background-color:#ffffff;}
174 select[multiple],select[size]{height:auto;}
179 select[multiple],select[size]{height:auto;}
175 select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
180 select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
@@ -179,7 +184,7 b' select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="chec'
179 input:-moz-placeholder,textarea:-moz-placeholder{color:#999999;}
184 input:-moz-placeholder,textarea:-moz-placeholder{color:#999999;}
180 input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999999;}
185 input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999999;}
181 input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999999;}
186 input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999999;}
182 .radio,.checkbox{min-height:20px;padding-left:20px;}
187 .radio,.checkbox{min-height:1.231;padding-left:20px;}
183 .radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px;}
188 .radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px;}
184 .controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;}
189 .controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;}
185 .radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;}
190 .radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;}
@@ -229,14 +234,14 b' input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio'
229 .control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;}
234 .control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;}
230 .control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad;}
235 .control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad;}
231 input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;}
236 input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;}
232 .form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0;}
237 .form-actions{padding:0.2310000000000001 20px 1.231;margin-top:1.231;margin-bottom:1.231;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0;}
233 .form-actions:after{clear:both;}
238 .form-actions:after{clear:both;}
234 .help-block,.help-inline{color:#262626;}
239 .help-block,.help-inline{color:#262626;}
235 .help-block{display:block;margin-bottom:10px;}
240 .help-block{display:block;margin-bottom:0.6155;}
236 .help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;}
241 .help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;}
237 .input-append,.input-prepend{display:inline-block;margin-bottom:10px;vertical-align:middle;font-size:0;white-space:nowrap;}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:13px;}
242 .input-append,.input-prepend{display:inline-block;margin-bottom:0.6155;vertical-align:middle;font-size:0;white-space:nowrap;}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:13px;}
238 .input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2;}
243 .input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2;}
239 .input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:13px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#eeeeee;border:1px solid #ccc;}
244 .input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:1.231;min-width:16px;padding:4px 5px;font-size:13px;font-weight:normal;line-height:1.231;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#eeeeee;border:1px solid #ccc;}
240 .input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
245 .input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
241 .input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546;}
246 .input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546;}
242 .input-prepend .add-on,.input-prepend .btn{margin-right:-1px;}
247 .input-prepend .add-on,.input-prepend .btn{margin-right:-1px;}
@@ -260,17 +265,17 b' input.search-query{padding-right:14px;padding-right:4px \\9;padding-left:14px;pad'
260 .form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;}
265 .form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;}
261 .form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;}
266 .form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;}
262 .form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0;}
267 .form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0;}
263 .control-group{margin-bottom:10px;}
268 .control-group{margin-bottom:0.6155;}
264 legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate;}
269 legend+.control-group{margin-top:1.231;-webkit-margin-top-collapse:separate;}
265 .form-horizontal .control-group{margin-bottom:20px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0;}
270 .form-horizontal .control-group{margin-bottom:1.231;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0;}
266 .form-horizontal .control-group:after{clear:both;}
271 .form-horizontal .control-group:after{clear:both;}
267 .form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right;}
272 .form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right;}
268 .form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0;}.form-horizontal .controls:first-child{*padding-left:180px;}
273 .form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0;}.form-horizontal .controls:first-child{*padding-left:180px;}
269 .form-horizontal .help-block{margin-bottom:0;}
274 .form-horizontal .help-block{margin-bottom:0;}
270 .form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px;}
275 .form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:0.6155;}
271 .form-horizontal .form-actions{padding-left:180px;}
276 .form-horizontal .form-actions{padding-left:180px;}
272 table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;}
277 table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;}
273 .table{width:100%;margin-bottom:20px;}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;}
278 .table{width:100%;margin-bottom:1.231;}.table th,.table td{padding:8px;line-height:1.231;text-align:left;vertical-align:top;border-top:1px solid #dddddd;}
274 .table th{font-weight:bold;}
279 .table th{font-weight:bold;}
275 .table thead th{vertical-align:bottom;}
280 .table thead th{vertical-align:bottom;}
276 .table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;}
281 .table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;}
@@ -458,8 +463,8 b' table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span'
458 .caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";}
463 .caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";}
459 .dropdown .caret{margin-top:8px;margin-left:2px;}
464 .dropdown .caret{margin-top:8px;margin-left:2px;}
460 .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#ffffff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.dropdown-menu.pull-right{right:0;left:auto;}
465 .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#ffffff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.dropdown-menu.pull-right{right:0;left:auto;}
461 .dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;}
466 .dropdown-menu .divider{*width:100%;height:1px;margin:-0.38449999999999995 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;}
462 .dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333333;white-space:nowrap;}
467 .dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.231;color:#333333;white-space:nowrap;}
463 .dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#ffffff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);}
468 .dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#ffffff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);}
464 .dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#ffffff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);}
469 .dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#ffffff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);}
465 .dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999999;}
470 .dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999999;}
@@ -482,9 +487,9 b' table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span'
482 .well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
487 .well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
483 .fade{opacity:0;-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;}.fade.in{opacity:1;}
488 .fade{opacity:0;-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;}.fade.in{opacity:1;}
484 .collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;}.collapse.in{height:auto;}
489 .collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;}.collapse.in{height:auto;}
485 .close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover,.close:focus{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);}
490 .close{float:right;font-size:20px;font-weight:bold;line-height:1.231;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover,.close:focus{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);}
486 button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;}
491 button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;}
487 .btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:13px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333333;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(to bottom, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #bbbbbb;*border:0;border-bottom-color:#a2a2a2;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;}
492 .btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:13px;line-height:1.231;text-align:center;vertical-align:middle;cursor:pointer;color:#333333;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(to bottom, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #cccccc;*border:0;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;}
488 .btn:active,.btn.active{background-color:#cccccc \9;}
493 .btn:active,.btn.active{background-color:#cccccc \9;}
489 .btn:first-child{*margin-left:0;}
494 .btn:first-child{*margin-left:0;}
490 .btn:hover,.btn:focus{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;}
495 .btn:hover,.btn:focus{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;}
@@ -523,7 +528,7 b' button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-'
523 .btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333333;text-decoration:none;}
528 .btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333333;text-decoration:none;}
524 .btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em;}.btn-group:first-child{*margin-left:0;}
529 .btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em;}.btn-group:first-child{*margin-left:0;}
525 .btn-group+.btn-group{margin-left:5px;}
530 .btn-group+.btn-group{margin-left:5px;}
526 .btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;}
531 .btn-toolbar{font-size:0;margin-top:0.6155;margin-bottom:0.6155;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;}
527 .btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
532 .btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
528 .btn-group>.btn+.btn{margin-left:-1px;}
533 .btn-group>.btn+.btn{margin-left:-1px;}
529 .btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:13px;}
534 .btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:13px;}
@@ -561,10 +566,10 b' button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-'
561 .btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}
566 .btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}
562 .btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;}
567 .btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;}
563 .btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;}
568 .btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;}
564 .alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
569 .alert{padding:8px 35px 8px 14px;margin-bottom:1.231;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
565 .alert,.alert h4{color:#c09853;}
570 .alert,.alert h4{color:#c09853;}
566 .alert h4{margin:0;}
571 .alert h4{margin:0;}
567 .alert .close{position:relative;top:-2px;right:-21px;line-height:20px;}
572 .alert .close{position:relative;top:-2px;right:-21px;line-height:1.231;}
568 .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;}
573 .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;}
569 .alert-success h4{color:#468847;}
574 .alert-success h4{color:#468847;}
570 .alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;}
575 .alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;}
@@ -574,26 +579,26 b' button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-'
574 .alert-block{padding-top:14px;padding-bottom:14px;}
579 .alert-block{padding-top:14px;padding-bottom:14px;}
575 .alert-block>p,.alert-block>ul{margin-bottom:0;}
580 .alert-block>p,.alert-block>ul{margin-bottom:0;}
576 .alert-block p+p{margin-top:5px;}
581 .alert-block p+p{margin-top:5px;}
577 .nav{margin-left:0;margin-bottom:20px;list-style:none;}
582 .nav{margin-left:0;margin-bottom:1.231;list-style:none;}
578 .nav>li>a{display:block;}
583 .nav>li>a{display:block;}
579 .nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eeeeee;}
584 .nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eeeeee;}
580 .nav>li>a>img{max-width:none;}
585 .nav>li>a>img{max-width:none;}
581 .nav>.pull-right{float:right;}
586 .nav>.pull-right{float:right;}
582 .nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;}
587 .nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:1.231;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;}
583 .nav li+.nav-header{margin-top:9px;}
588 .nav li+.nav-header{margin-top:9px;}
584 .nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;}
589 .nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;}
585 .nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);}
590 .nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);}
586 .nav-list>li>a{padding:3px 15px;}
591 .nav-list>li>a{padding:3px 15px;}
587 .nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;}
592 .nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;}
588 .nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px;}
593 .nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px;}
589 .nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;}
594 .nav-list .divider{*width:100%;height:1px;margin:-0.38449999999999995 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;}
590 .nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0;}
595 .nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0;}
591 .nav-tabs:after,.nav-pills:after{clear:both;}
596 .nav-tabs:after,.nav-pills:after{clear:both;}
592 .nav-tabs>li,.nav-pills>li{float:left;}
597 .nav-tabs>li,.nav-pills>li{float:left;}
593 .nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;}
598 .nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;}
594 .nav-tabs{border-bottom:1px solid #ddd;}
599 .nav-tabs{border-bottom:1px solid #ddd;}
595 .nav-tabs>li{margin-bottom:-1px;}
600 .nav-tabs>li{margin-bottom:-1px;}
596 .nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eeeeee #eeeeee #dddddd;}
601 .nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:1.231;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eeeeee #eeeeee #dddddd;}
597 .nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;}
602 .nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;}
598 .nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
603 .nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
599 .nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#ffffff;background-color:#0088cc;}
604 .nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#ffffff;background-color:#0088cc;}
@@ -639,12 +644,12 b' button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-'
639 .tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;}
644 .tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;}
640 .nav>.disabled>a{color:#999999;}
645 .nav>.disabled>a{color:#999999;}
641 .nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default;}
646 .nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default;}
642 .navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2;}
647 .navbar{overflow:visible;margin-bottom:1.231;*position:relative;*z-index:2;}
643 .navbar-inner{min-height:40px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #ffffff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #ffffff, #f2f2f2);background-image:-o-linear-gradient(top, #ffffff, #f2f2f2);background-image:linear-gradient(to bottom, #ffffff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);*zoom:1;}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0;}
648 .navbar-inner{min-height:40px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #ffffff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #ffffff, #f2f2f2);background-image:-o-linear-gradient(top, #ffffff, #f2f2f2);background-image:linear-gradient(to bottom, #ffffff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);*zoom:1;}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0;}
644 .navbar-inner:after{clear:both;}
649 .navbar-inner:after{clear:both;}
645 .navbar .container{width:auto;}
650 .navbar .container{width:auto;}
646 .nav-collapse.collapse{height:auto;overflow:visible;}
651 .nav-collapse.collapse{height:auto;overflow:visible;}
647 .navbar .brand{float:left;display:block;padding:10px 20px 10px;margin-left:-20px;font-size:20px;font-weight:200;color:#777777;text-shadow:0 1px 0 #ffffff;}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none;}
652 .navbar .brand{float:left;display:block;padding:19.3845px 20px 19.3845px;margin-left:-20px;font-size:20px;font-weight:200;color:#777777;text-shadow:0 1px 0 #ffffff;}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none;}
648 .navbar-text{margin-bottom:0;line-height:40px;color:#777777;}
653 .navbar-text{margin-bottom:0;line-height:40px;color:#777777;}
649 .navbar-link{color:#777777;}.navbar-link:hover,.navbar-link:focus{color:#333333;}
654 .navbar-link{color:#777777;}.navbar-link:hover,.navbar-link:focus{color:#333333;}
650 .navbar .divider-vertical{height:40px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #ffffff;}
655 .navbar .divider-vertical{height:40px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #ffffff;}
@@ -669,7 +674,7 b' button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-'
669 .navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;}
674 .navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;}
670 .navbar .nav.pull-right{float:right;margin-right:0;}
675 .navbar .nav.pull-right{float:right;margin-right:0;}
671 .navbar .nav>li{float:left;}
676 .navbar .nav>li{float:left;}
672 .navbar .nav>li>a{float:none;padding:10px 15px 10px;color:#777777;text-decoration:none;text-shadow:0 1px 0 #ffffff;}
677 .navbar .nav>li>a{float:none;padding:19.3845px 15px 19.3845px;color:#777777;text-decoration:none;text-shadow:0 1px 0 #ffffff;}
673 .navbar .nav .dropdown-toggle .caret{margin-top:8px;}
678 .navbar .nav .dropdown-toggle .caret{margin-top:8px;}
674 .navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333333;text-decoration:none;}
679 .navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333333;text-decoration:none;}
675 .navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);-moz-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);}
680 .navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);-moz-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);}
@@ -706,12 +711,12 b' button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-'
706 .navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;}
711 .navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;}
707 .navbar-inverse .btn-navbar{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#ffffff;background-color:#040404;*background-color:#000000;}
712 .navbar-inverse .btn-navbar{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#ffffff;background-color:#040404;*background-color:#000000;}
708 .navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000000 \9;}
713 .navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000000 \9;}
709 .breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;}.breadcrumb>li>.divider{padding:0 5px;color:#ccc;}
714 .breadcrumb{padding:8px 15px;margin:0 0 1.231;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;}.breadcrumb>li>.divider{padding:0 5px;color:#ccc;}
710 .breadcrumb>.active{color:#999999;}
715 .breadcrumb>.active{color:#999999;}
711 .pagination{margin:20px 0;}
716 .pagination{margin:1.231 0;}
712 .pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);}
717 .pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);}
713 .pagination ul>li{display:inline;}
718 .pagination ul>li{display:inline;}
714 .pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#ffffff;border:1px solid #dddddd;border-left-width:0;}
719 .pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:1.231;text-decoration:none;background-color:#ffffff;border:1px solid #dddddd;border-left-width:0;}
715 .pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5;}
720 .pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5;}
716 .pagination ul>.active>a,.pagination ul>.active>span{color:#999999;cursor:default;}
721 .pagination ul>.active>a,.pagination ul>.active>span{color:#999999;cursor:default;}
717 .pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999999;background-color:transparent;cursor:default;}
722 .pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999999;background-color:transparent;cursor:default;}
@@ -726,7 +731,7 b' button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-'
726 .pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;}
731 .pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;}
727 .pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.049999999999999px;}
732 .pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.049999999999999px;}
728 .pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:9.75px;}
733 .pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:9.75px;}
729 .pager{margin:20px 0;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";line-height:0;}
734 .pager{margin:1.231 0;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";line-height:0;}
730 .pager:after{clear:both;}
735 .pager:after{clear:both;}
731 .pager li{display:inline;}
736 .pager li{display:inline;}
732 .pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;}
737 .pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;}
@@ -774,8 +779,8 b' button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-'
774 .thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0;}
779 .thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0;}
775 .thumbnails:after{clear:both;}
780 .thumbnails:after{clear:both;}
776 .row-fluid .thumbnails{margin-left:0;}
781 .row-fluid .thumbnails{margin-left:0;}
777 .thumbnails>li{float:left;margin-bottom:20px;margin-left:20px;}
782 .thumbnails>li{float:left;margin-bottom:1.231;margin-left:20px;}
778 .thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}
783 .thumbnail{display:block;padding:4px;line-height:1.231;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}
779 a.thumbnail:hover,a.thumbnail:focus{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);}
784 a.thumbnail:hover,a.thumbnail:focus{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);}
780 .thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;}
785 .thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;}
781 .thumbnail .caption{padding:9px;color:#555555;}
786 .thumbnail .caption{padding:9px;color:#555555;}
@@ -804,7 +809,7 b' a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#ffffff;text-decor'
804 .label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a;}
809 .label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a;}
805 .btn .label,.btn .badge{position:relative;top:-1px;}
810 .btn .label,.btn .badge{position:relative;top:-1px;}
806 .btn-mini .label,.btn-mini .badge{top:0;}
811 .btn-mini .label,.btn-mini .badge{top:0;}
807 @-webkit-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-o-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
812 @-webkit-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-o-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}.progress{overflow:hidden;height:1.231;margin-bottom:1.231;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
808 .progress .bar{width:0%;height:100%;color:#ffffff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;}
813 .progress .bar{width:0%;height:100%;color:#ffffff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;}
809 .progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);}
814 .progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);}
810 .progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;}
815 .progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;}
@@ -817,13 +822,13 b' a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#ffffff;text-decor'
817 .progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);}
822 .progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);}
818 .progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);}
823 .progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);}
819 .progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);}
824 .progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);}
820 .accordion{margin-bottom:20px;}
825 .accordion{margin-bottom:1.231;}
821 .accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
826 .accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
822 .accordion-heading{border-bottom:0;}
827 .accordion-heading{border-bottom:0;}
823 .accordion-heading .accordion-toggle{display:block;padding:8px 15px;}
828 .accordion-heading .accordion-toggle{display:block;padding:8px 15px;}
824 .accordion-toggle{cursor:pointer;}
829 .accordion-toggle{cursor:pointer;}
825 .accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;}
830 .accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;}
826 .carousel{position:relative;margin-bottom:20px;line-height:1;}
831 .carousel{position:relative;margin-bottom:1.231;line-height:1;}
827 .carousel-inner{overflow:hidden;width:100%;position:relative;}
832 .carousel-inner{overflow:hidden;width:100%;position:relative;}
828 .carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1;}
833 .carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1;}
829 .carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block;}
834 .carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block;}
@@ -839,17 +844,18 b' a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#ffffff;text-decor'
839 .carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none;}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255, 255, 255, 0.25);border-radius:5px;}
844 .carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none;}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255, 255, 255, 0.25);border-radius:5px;}
840 .carousel-indicators .active{background-color:#fff;}
845 .carousel-indicators .active{background-color:#fff;}
841 .carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333333;background:rgba(0, 0, 0, 0.75);}
846 .carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333333;background:rgba(0, 0, 0, 0.75);}
842 .carousel-caption h4,.carousel-caption p{color:#ffffff;line-height:20px;}
847 .carousel-caption h4,.carousel-caption p{color:#ffffff;line-height:1.231;}
843 .carousel-caption h4{margin:0 0 5px;}
848 .carousel-caption h4{margin:0 0 5px;}
844 .carousel-caption p{margin-bottom:0;}
849 .carousel-caption p{margin-bottom:0;}
845 .hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;}
850 .hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:1.8465000000000003;color:inherit;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;}
846 .hero-unit li{line-height:30px;}
851 .hero-unit li{line-height:1.8465000000000003;}
847 .pull-right{float:right;}
852 .pull-right{float:right;}
848 .pull-left{float:left;}
853 .pull-left{float:left;}
849 .hide{display:none;}
854 .hide{display:none;}
850 .show{display:block;}
855 .show{display:block;}
851 .invisible{visibility:hidden;}
856 .invisible{visibility:hidden;}
852 .affix{position:fixed;}
857 .affix{position:fixed;}
858 .border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;}
853 .corner-all{border-radius:4px;}
859 .corner-all{border-radius:4px;}
854 .hbox{display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;}
860 .hbox{display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;}
855 .hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;}
861 .hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;}
@@ -865,7 +871,83 b' a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#ffffff;text-decor'
865 .start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;}
871 .start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;}
866 .end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end;}
872 .end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end;}
867 .center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center;}
873 .center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center;}
868 .corner-all{border-radius:4px;}
874 body{background-color:white;position:absolute;left:0px;right:0px;top:0px;bottom:0px;overflow:visible;}
875 div#header{display:none;position:relative;height:40px;padding:5px;margin:0px;width:100%;}
876 span#ipython_notebook{position:absolute;padding:2px 2px 2px 5px;}
877 span#ipython_notebook img{font-family:Verdana,"Helvetica Neue",Arial,Helvetica,Geneva,sans-serif;height:24px;text-decoration:none;display:inline;color:black;}
878 #site{width:100%;display:none;}
879 .ui-widget{font-family:"Lucinda Grande","Lucinda Sans Unicode",Helvetica,Arial,Verdana,sans-serif;}
880 .ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:"Lucinda Grande","Lucinda Sans Unicode",Helvetica,Arial,Verdana,sans-serif;}
881 .ui-button .ui-button-text{padding:0.2em 0.8em;font-size:77%;}
882 input.ui-button{padding:0.3em 0.9em;}
883 span#login_widget{float:right;}
884 .alternate_upload{background-color:none;display:inline;}
885 .alternate_upload.form{padding:0;margin:0;}
886 .alternate_upload input.fileinput{background-color:red;position:relative;opacity:0;z-index:2;width:295px;margin-left:163px;cursor:pointer;}
887 #tabs{border-style:none;}
888 #tab1,#tab2{padding:1em 0em;}
889 .list_toolbar{padding:5px;height:25px;line-height:25px;}
890 .toolbar_info{float:left;}
891 .toolbar_buttons{float:right;}
892 .list_header{height:25px;line-height:25px;padding:3px 5px;}
893 .list_item{height:25px;line-height:25px;padding:3px 5px;}
894 .notebook_item a{text-decoration:none;}
895 .status_col{float:right;width:325px;}
896 .engines_col{float:right;width:325px;}
897 .action_col{float:right;}
898 .item_buttons{float:right;}
899 .item_buttons .upload_button{color:darkred;}
900 .highlight_text{color:blue;}
901 .ui-tabs .ui-tabs-nav li a{padding:.3em .5em;}
902 #project_name>.breadcrumb{padding:0;background-color:transparent;}
903 input.engine_num_input{height:20px;margin-bottom:2px;padding-top:0;padding-bottom:0;width:90px;}
904 .ansiblack{color:black;}
905 .ansired{color:darkred;}
906 .ansigreen{color:darkgreen;}
907 .ansiyellow{color:brown;}
908 .ansiblue{color:darkblue;}
909 .ansipurple{color:darkviolet;}
910 .ansicyan{color:steelblue;}
911 .ansigrey{color:grey;}
912 .ansibold{font-weight:bold;}
913 .cell{border:1px solid transparent;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;width:100%;}.cell.selected{border-radius:4px;border:thin #ababab solid;}
914 div.cell{width:100%;padding:5px 5px 5px 0px;margin:2px 0px 2px 0px;outline:none;}
915 div.prompt{width:11ex;padding:0.4em;margin:0px;font-family:monospace;text-align:right;line-height:1.231;}
916 .celltoolbar{border:thin solid #CFCFCF;border-bottom:none;background:#EEE;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;-webkit-box-pack:end;height:20px;}
917 .no_input_radius{border-top-right-radius:0px;border-top-left-radius:0px;}
918 .text_cell .ctb_prompt{display:none;}
919 .code_cell .ctb_prompt{display:block;}
920 .ctb_hideshow{display:none;vertical-align:bottom;padding-right:2px;}
921 .celltoolbar>div{padding-top:0px;}
922 .ctb_area{margin:0;padding:0;width:100%;}
923 .ctb_show.ctb_hideshow,.ctb_show .ctb_hideshow{display:block;}
924 .ctb_show .input_area,.ctb_show .ctb_hideshow+div.text_cell_input{border-top-right-radius:0px;border-top-left-radius:0px;}
925 .ctb_show>.celltoolbar{border-bottom-right-radius:0px;border-bottom-left-radius:0px;}
926 .button_container{margin-top:0;margin-bottom:0;}
927 .ui-button{min-width:30px;}
928 .celltoolbar .button_container select{margin:10px;margin-top:1px;margin-bottom:0px;padding:0;font-size:87%;width:auto;display:inline-block;height:18px;line-height:18px;vertical-align:top;}
929 .celltoolbar label{display:inline-block;height:15px;line-height:15px;vertical-align:top;}
930 .celltoolbar label span{font-size:85%;}
931 .celltoolbar input[type=checkbox]{margin:0px;margin-left:4px;margin-right:4px;}
932 .celltoolbar .ui-button{border:none;vertical-align:top;height:20px;}
933 div.input{page-break-inside:avoid;display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;}
934 div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7;}
935 div.input_prompt{color:navy;border-top:1px solid transparent;}
936 div.output_wrapper{margin-top:5px;margin-left:5px;width:100%;position:relative;}
937 div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:4px;-webkit-box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);-moz-box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);}
938 div.output_collapsed{margin-right:5px;}
939 div.out_prompt_overlay{height:100%;padding:0px;position:absolute;border-radius:4px;}
940 div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000000;-moz-box-shadow:inset 0 0 1px #000000;box-shadow:inset 0 0 1px #000000;background:rgba(240, 240, 240, 0.5);}
941 div.output_prompt{color:darkred;margin:0 5px 0 -5px;}
942 .CodeMirror{line-height:1.231;height:auto;background:none;}
943 .CodeMirror-scroll{overflow-y:hidden;overflow-x:auto;}
944 .CodeMirror-lines{padding:0.4em;}
945 .CodeMirror-linenumber{padding:0 8px 0 4px;}
946 .CodeMirror-gutters{border-bottom-left-radius:4px;border-top-left-radius:4px;}
947 .CodeMirror pre{padding:0;border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
948 .completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:4px;-webkit-box-shadow:0px 6px 10px -1px #adadad;-moz-box-shadow:0px 6px 10px -1px #adadad;box-shadow:0px 6px 10px -1px #adadad;}
949 .completions select{background:white;outline:none;border:none;padding:0px;margin:0px;overflow:auto;font-family:monospace;font-size:110%;color:#000000;}
950 .completions select option.context{color:#0064cd;}
869 pre code{display:block;padding:0.5em;}
951 pre code{display:block;padding:0.5em;}
870 .highlight-base,pre code,pre .subst,pre .tag .title,pre .lisp .title,pre .clojure .built_in,pre .nginx .title{color:black;}
952 .highlight-base,pre code,pre .subst,pre .tag .title,pre .lisp .title,pre .clojure .built_in,pre .nginx .title{color:black;}
871 .highlight-string,pre .string,pre .constant,pre .parent,pre .tag .value,pre .rules .value,pre .rules .value .number,pre .preprocessor,pre .ruby .symbol,pre .ruby .symbol .string,pre .aggregate,pre .template_tag,pre .django .variable,pre .smalltalk .class,pre .addition,pre .flow,pre .stream,pre .bash .variable,pre .apache .tag,pre .apache .cbracket,pre .tex .command,pre .tex .special,pre .erlang_repl .function_or_atom,pre .markdown .header{color:#BA2121;}
953 .highlight-string,pre .string,pre .constant,pre .parent,pre .tag .value,pre .rules .value,pre .rules .value .number,pre .preprocessor,pre .ruby .symbol,pre .ruby .symbol .string,pre .aggregate,pre .template_tag,pre .django .variable,pre .smalltalk .class,pre .addition,pre .flow,pre .stream,pre .bash .variable,pre .apache .tag,pre .apache .cbracket,pre .tex .command,pre .tex .special,pre .erlang_repl .function_or_atom,pre .markdown .header{color:#BA2121;}
@@ -886,84 +968,43 b' pre .coffeescript .javascript,pre .javascript .xml,pre .tex .formula,pre .xml .j'
886 .cm-s-ipython span.cm-error{color:#f00;}
968 .cm-s-ipython span.cm-error{color:#f00;}
887 .cm-s-ipython span.cm-operator{color:#AA22FF;font-weight:bold;}
969 .cm-s-ipython span.cm-operator{color:#AA22FF;font-weight:bold;}
888 .cm-s-ipython span.cm-meta{color:#AA22FF;}
970 .cm-s-ipython span.cm-meta{color:#AA22FF;}
889 body{background-color:#ffffff;}
890 body.notebook_app{overflow:hidden;}
891 blockquote{border-left:4px solid #DDD;padding:0 15px;color:#777;}
892 span#save_widget{padding:5px;margin:0px 0px 0px 300px;display:inline-block;}
893 span#checkpoint_status span#autosave_status{font-size:small;}
894 span#notebook_name{height:1em;line-height:1em;padding:3px;border:none;font-size:146.5%;}
895 .ui-menubar-item .ui-button .ui-button-text{padding:0.4em 1.0em;font-size:100%;}
971 .ui-menubar-item .ui-button .ui-button-text{padding:0.4em 1.0em;font-size:100%;}
896 .ui-menu{-webkit-box-shadow:0px 6px 10px -1px #adadad;-moz-box-shadow:0px 6px 10px -1px #adadad;box-shadow:0px 6px 10px -1px #adadad;}
972 .ui-menu{-webkit-box-shadow:0px 6px 10px -1px #adadad;-moz-box-shadow:0px 6px 10px -1px #adadad;box-shadow:0px 6px 10px -1px #adadad;}
897 .ui-menu .ui-menu-item a{border:1px solid transparent;padding:2px 1.6em;}
973 .ui-menu .ui-menu-item a{border:1px solid transparent;padding:2px 1.6em;}
898 .ui-menu .ui-menu-item a.ui-state-focus{margin:0;}
974 .ui-menu .ui-menu-item a.ui-state-focus{margin:0;}
899 .ui-menu hr{margin:0.3em 0;}
975 .ui-menu hr{margin:0.3em 0;}
900 #menubar_container{position:relative;}
976 #menubar_container{position:relative;}
901 #notification_area{position:absolute;right:0px;top:0px;height:25px;padding:3px 0px;padding-right:3px;z-index:10;}
977 body{background-color:#ffffff;}
902 .notification_widget{float:right;right:0px;top:1px;height:25px;padding:3px 6px;z-index:10;}
978 body.notebook_app{overflow:hidden;}
903 .toolbar{padding:3px 15px;border-bottom:1px #ababab solid;}.toolbar button{margin-top:2px;margin-bottom:2px;}
979 span#notebook_name{height:1em;line-height:1em;padding:3px;border:none;font-size:146.5%;}
904 .toolbar select,.toolbar label{height:19px;vertical-align:middle;margin-right:2px;margin-bottom:0;display:inline;font-size:92%;margin-left:0.3em;margin-right:0.3em;padding:0px;}
905 .toolbar select{width:auto;}
906 #ipython-main-app{width:100%;position:relative;font-size:110%;}
907 span#quick_help_area{position:static;padding:5px 0px;margin:0px 0px 0px 0px;}
908 .help_string{float:right;width:170px;padding:0px 5px;text-align:left;font-size:85%;}
909 .help_string_label{float:right;font-size:85%;}
910 div#notebook_panel{margin:0px 0px 0px 0px;padding:0px;}
980 div#notebook_panel{margin:0px 0px 0px 0px;padding:0px;}
911 div#notebook{overflow-y:scroll;overflow-x:auto;width:100%;padding:5px 5px 15px 5px;margin:0px;}
981 div#notebook{overflow-y:scroll;overflow-x:auto;width:100%;padding:5px 5px 15px 5px;margin:0px;}
912 div#pager_splitter{height:8px;}
913 #pager_container{position:relative;}
914 div#pager{padding:15px;overflow:auto;display:none;}
915 div.ui-widget-content{border:1px solid #ababab;outline:none;}
982 div.ui-widget-content{border:1px solid #ababab;outline:none;}
916 .cell{border:1px solid transparent;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;width:100%;}.cell.selected{border-radius:4px;border:thin #ababab solid;}
983 pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:4px;padding:0.4em;padding-left:2em;}
917 div.cell{width:100%;padding:5px 5px 5px 0px;margin:2px 0px 2px 0px;outline:none;}
984 p.dialog{padding:0.2em;}
918 div.prompt{width:11ex;padding:0.4em;margin:0px;font-family:monospace;text-align:right;line-height:1.231;}
985 pre,code,kbd,samp{white-space:pre-wrap;}
919 div.input{page-break-inside:avoid;display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;}
986 #fonttest{font-family:monospace;}
920 div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7;}
987 a{text-decoration:underline;}
921 div.input_prompt{color:navy;border-top:1px solid transparent;}
988 p{margin-bottom:0;}
922 div.output_wrapper{margin-top:5px;margin-left:5px;width:100%;position:relative;}
989 a.heading-anchor:link,a.heading-anchor:visited{text-decoration:none;outline:none;color:inherit;}
923 div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:4px;-webkit-box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);-moz-box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);}
990 #notification_area{position:absolute;right:0px;top:0px;height:25px;padding:3px 0px;padding-right:3px;z-index:10;}
924 div.output_collapsed{margin-right:5px;}
991 .notification_widget{float:right;right:0px;top:1px;height:25px;padding:3px 6px;z-index:10;}
925 div.out_prompt_overlay{height:100%;padding:0px;position:absolute;border-radius:4px;}
926 div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000000;-moz-box-shadow:inset 0 0 1px #000000;box-shadow:inset 0 0 1px #000000;background:rgba(240, 240, 240, 0.5);}
927 div.output_prompt{color:darkred;margin:0 5px 0 -5px;}
928 div.output_area{padding:0px;page-break-inside:avoid;display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;}
992 div.output_area{padding:0px;page-break-inside:avoid;display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;}
929 div.output_area pre{font-family:monospace;margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;color:black;}
993 div.output_area pre{font-family:monospace;margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;color:black;background-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;line-height:inherit;}
930 div.output_subarea{padding:0.44em 0.4em 0.4em 1px;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;}
994 div.output_subarea{padding:0.44em 0.4em 0.4em 1px;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;}
931 div.output_text{text-align:left;color:#000000;font-family:monospace;line-height:1.231;}
995 div.output_text{text-align:left;color:#000000;font-family:monospace;line-height:1.231;}
932 div.output_stream{padding-top:0.0em;padding-bottom:0.0em;}
996 div.output_stream{padding-top:0.0em;padding-bottom:0.0em;}
933 div.output_stderr{background:#fdd;}
997 div.output_stderr{background:#fdd;}
934 div.output_latex{text-align:left;}
998 div.output_latex{text-align:left;}
935 div.text_cell{padding:5px 5px 5px 5px;}
936 div.text_cell_input{color:#000000;border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7;}
937 div.text_cell_render{outline:none;resize:none;width:inherit;border-style:none;padding:5px;color:#000000;}
938 .CodeMirror{line-height:1.231;height:auto;background:none;}
939 .CodeMirror-scroll{overflow-y:hidden;overflow-x:auto;}
940 .CodeMirror-lines{padding:0.4em;}
941 .CodeMirror pre{padding:0;}
942 .ansiblack{color:#000000;}
943 .ansired{color:darkred;}
944 .ansigreen{color:darkgreen;}
945 .ansiyellow{color:brown;}
946 .ansiblue{color:darkblue;}
947 .ansipurple{color:darkviolet;}
948 .ansicyan{color:steelblue;}
949 .ansigrey{color:grey;}
950 .ansibold{font-weight:bold;}
951 .completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:4px;-webkit-box-shadow:0px 6px 10px -1px #adadad;-moz-box-shadow:0px 6px 10px -1px #adadad;box-shadow:0px 6px 10px -1px #adadad;}
952 .completions select{background:white;outline:none;border:none;padding:0px;margin:0px;overflow:auto;font-family:monospace;font-size:110%;color:#000000;}
953 .completions select option.context{color:#0064cd;}
954 pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:4px;padding:0.4em;padding-left:2em;}
955 p.dialog{padding:0.2em;}
956 .shortcut_key{display:inline-block;width:15ex;text-align:right;font-family:monospace;}
957 pre,code,kbd,samp{white-space:pre-wrap;}
958 #fonttest{font-family:monospace;}
959 .js-error{color:darkred;}
999 .js-error{color:darkred;}
960 a{text-decoration:underline;}
961 p{margin-bottom:0;}
962 a.heading-anchor:link,a.heading-anchor:visited{text-decoration:none;color:inherit;}
963 div.raw_input{padding-top:0px;padding-bottom:0px;height:1em;line-height:1em;font-family:monospace;}
1000 div.raw_input{padding-top:0px;padding-bottom:0px;height:1em;line-height:1em;font-family:monospace;}
964 span.input_prompt{font-family:inherit;}
1001 span.input_prompt{font-family:inherit;}
965 input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;margin:-2px 0px 0px 1px;padding-left:1px;padding-top:2px;height:1em;}
1002 input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;margin:-2px 0px 0px 1px;padding-left:1px;padding-top:2px;height:1em;}
966 p.p-space{margin-bottom:10px;}
1003 p.p-space{margin-bottom:10px;}
1004 div#pager_splitter{height:8px;}
1005 #pager_container{position:relative;}
1006 div#pager{padding:15px;overflow:auto;display:none;}div#pager pre{font-size:13px;line-height:1.231;color:#000000;background-color:#f7f7f7;padding:0.4em;}
1007 .shortcut_key{display:inline-block;width:15ex;text-align:right;font-family:monospace;}
967 .rendered_html{color:black;}.rendered_html em{font-style:italic;}
1008 .rendered_html{color:black;}.rendered_html em{font-style:italic;}
968 .rendered_html strong{font-weight:bold;}
1009 .rendered_html strong{font-weight:bold;}
969 .rendered_html u{text-decoration:underline;}
1010 .rendered_html u{text-decoration:underline;}
@@ -985,17 +1026,26 b' p.p-space{margin-bottom:10px;}'
985 .rendered_html ol ol ol ol ol{list-style:decimal;margin:0em 2em;}
1026 .rendered_html ol ol ol ol ol{list-style:decimal;margin:0em 2em;}
986 .rendered_html hr{color:black;background-color:black;}
1027 .rendered_html hr{color:black;background-color:black;}
987 .rendered_html pre{margin:1em 2em;}
1028 .rendered_html pre{margin:1em 2em;}
1029 .rendered_html pre,.rendered_html code{border:0;background-color:#ffffff;color:#000000;font-size:100%;padding:0px;}
988 .rendered_html blockquote{margin:1em 2em;}
1030 .rendered_html blockquote{margin:1em 2em;}
989 .rendered_html table,.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid black;border-collapse:collapse;margin:1em 2em;}
1031 .rendered_html table,.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid black;border-collapse:collapse;margin:1em 2em;}
990 .rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px;}
1032 .rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px;}
991 .rendered_html th{font-weight:bold;}
1033 .rendered_html th{font-weight:bold;}
992 .rendered_html p{text-align:justify;}
1034 .rendered_html p{text-align:justify;}
993 .rendered_html p+p{margin-top:1em;}
1035 .rendered_html p+p{margin-top:1em;}
994 .corner-all{border-radius:4px;}
1036 span#save_widget{padding:5px;margin:0px 0px 0px 300px;display:inline-block;}
1037 span#checkpoint_status span#autosave_status{font-size:small;}
1038 div.text_cell{padding:5px 5px 5px 5px;}
1039 div.text_cell_input{color:#000000;border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7;}
1040 div.text_cell_render{outline:none;resize:none;width:inherit;border-style:none;padding:5px;color:#000000;}
1041 .toolbar{padding:3px 15px;border-bottom:1px #ababab solid;}.toolbar button{margin-top:2px;margin-bottom:2px;}
1042 .toolbar select,.toolbar label{height:19px;vertical-align:middle;margin-right:2px;margin-bottom:0;display:inline;font-size:92%;margin-left:0.3em;margin-right:0.3em;padding:0px;}
1043 .toolbar select{width:auto;}
995 @-moz-keyframes fadeOut{from{opacity:1;} to{opacity:0;}}@-webkit-keyframes fadeOut{from{opacity:1;} to{opacity:0;}}@-moz-keyframes fadeIn{from{opacity:0;} to{opacity:1;}}@-webkit-keyframes fadeIn{from{opacity:0;} to{opacity:1;}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;}
1044 @-moz-keyframes fadeOut{from{opacity:1;} to{opacity:0;}}@-webkit-keyframes fadeOut{from{opacity:1;} to{opacity:0;}}@-moz-keyframes fadeIn{from{opacity:0;} to{opacity:1;}}@-webkit-keyframes fadeIn{from{opacity:0;} to{opacity:1;}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;}
996 .smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px;}
1045 .smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px;}
997 .tooltipbuttons{position:absolute;padding-right:15px;top:0px;right:0px;}
1046 .tooltipbuttons{position:absolute;padding-right:15px;top:0px;right:0px;}
998 .tooltiptext{padding-right:30px;}
1047 .tooltiptext{padding-right:30px;}
999 .ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;padding:3px;margin:0px;padding-left:7px;font-family:monospace;min-height:50px;-moz-box-shadow:0px 6px 10px -1px #adadad;-webkit-box-shadow:0px 6px 10px -1px #adadad;box-shadow:0px 6px 10px -1px #adadad;border-radius:4px;position:absolute;z-index:2;}.ipython_tooltip a{float:right;}
1048 .ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;padding:3px;margin:0px;padding-left:7px;font-family:monospace;min-height:50px;-moz-box-shadow:0px 6px 10px -1px #adadad;-webkit-box-shadow:0px 6px 10px -1px #adadad;box-shadow:0px 6px 10px -1px #adadad;border-radius:4px;position:absolute;z-index:2;}.ipython_tooltip a{float:right;}
1049 .ipython_tooltip .tooltiptext pre{border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;font-size:100%;background-color:#f7f7f7;}
1000 .pretooltiparrow{left:0px;margin:0px;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute;}
1050 .pretooltiparrow{left:0px;margin:0px;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute;}
1001 .pretooltiparrow:before{background-color:#f7f7f7;border:1px #ababab solid;z-index:11;content:"";position:absolute;left:15px;top:10px;width:25px;height:25px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);}
1051 .pretooltiparrow:before{background-color:#f7f7f7;border:1px #ababab solid;z-index:11;content:"";position:absolute;left:15px;top:10px;width:25px;height:25px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);}
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/clusterlist.js to IPython/frontend/html/notebook/static/tree/js/clusterlist.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/clusterlist.js to IPython/frontend/html/notebook/static/tree/js/clusterlist.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/projectdashboardmain.js to IPython/frontend/html/notebook/static/tree/js/main.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/projectdashboardmain.js to IPython/frontend/html/notebook/static/tree/js/main.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/notebooklist.js to IPython/frontend/html/notebook/static/tree/js/notebooklist.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/js/notebooklist.js to IPython/frontend/html/notebook/static/tree/js/notebooklist.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/css/alternateuploadform.css to IPython/frontend/html/notebook/static/tree/less/altuploadform.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/css/alternateuploadform.css to IPython/frontend/html/notebook/static/tree/less/altuploadform.less
@@ -5,11 +5,6 b''
5 * Author: IPython Development Team
5 * Author: IPython Development Team
6 */
6 */
7
7
8 #ipython-main-app {
9 width: 920px;
10 margin: 30px auto 0px auto;
11 }
12
13 #tabs {
8 #tabs {
14 border-style: none;
9 border-style: none;
15 }
10 }
@@ -1,16 +1,14 b''
1 {% extends "base.html" %}
1 {% extends "page.html" %}
2
2
3 {% block stylesheet %}
4
5 <link rel="stylesheet" href="{{static_url("css/login.css") }}" type="text/css"/>
6
3
4 {% block stylesheet %}
5 {{super()}}
6 <link rel="stylesheet" href="{{ static_url("auth/css/override.css") }}" type="text/css" />
7 {% endblock %}
7 {% endblock %}
8
8
9
10 {% block login_widget %}
9 {% block login_widget %}
11 {% endblock %}
10 {% endblock %}
12
11
13
14 {% block site %}
12 {% block site %}
15
13
16 <div id="ipython-main-app">
14 <div id="ipython-main-app">
@@ -37,6 +35,6 b''
37
35
38 {% block script %}
36 {% block script %}
39
37
40 <script src="{{static_url("js/loginmain.js") }}" type="text/javascript" charset="utf-8"></script>
38 <script src="{{static_url("auth/js/loginmain.js") }}" type="text/javascript" charset="utf-8"></script>
41
39
42 {% endblock %}
40 {% endblock %}
@@ -1,12 +1,10 b''
1 {% extends "base.html" %}
1 {% extends "page.html" %}
2
2
3 {% block stylesheet %}
3 {% block stylesheet %}
4
4 {{super()}}
5 <link rel="stylesheet" href="{{static_url("css/logout.css") }}" type="text/css"/>
5 <link rel="stylesheet" href="{{ static_url("auth/css/override.css") }}" type="text/css" />
6
7 {% endblock %}
6 {% endblock %}
8
7
9
10 {% block login_widget %}
8 {% block login_widget %}
11 {% endblock %}
9 {% endblock %}
12
10
@@ -35,6 +33,6 b''
35
33
36 {% block script %}
34 {% block script %}
37
35
38 <script src="{{static_url("js/logoutmain.js") }}" type="text/javascript" charset="utf-8"></script>
36 <script src="{{static_url("auth/js/logoutmain.js") }}" type="text/javascript" charset="utf-8"></script>
39
37
40 {% endblock %}
38 {% endblock %}
@@ -1,4 +1,4 b''
1 {% extends "base.html" %}
1 {% extends "page.html" %}
2
2
3 {% block stylesheet %}
3 {% block stylesheet %}
4
4
@@ -13,10 +13,10 b' window.mathjax_url = "{{mathjax_url}}";'
13
13
14 <link rel="stylesheet" href="{{ static_url("components/codemirror/lib/codemirror.css") }}">
14 <link rel="stylesheet" href="{{ static_url("components/codemirror/lib/codemirror.css") }}">
15
15
16 <link rel="stylesheet" href="{{ static_url("css/celltoolbar.css") }}" type="text/css" />
17
18 {{super()}}
16 {{super()}}
19
17
18 <link rel="stylesheet" href="{{ static_url("notebook/css/override.css") }}" type="text/css" />
19
20 {% endblock %}
20 {% endblock %}
21
21
22 {% block params %}
22 {% block params %}
@@ -196,7 +196,7 b' class="notebook_app"'
196 <script src="{{ static_url("components/codemirror/addon/mode/loadmode.js") }}" charset="utf-8"></script>
196 <script src="{{ static_url("components/codemirror/addon/mode/loadmode.js") }}" charset="utf-8"></script>
197 <script src="{{ static_url("components/codemirror/addon/mode/multiplex.js") }}" charset="utf-8"></script>
197 <script src="{{ static_url("components/codemirror/addon/mode/multiplex.js") }}" charset="utf-8"></script>
198 <script src="{{ static_url("components/codemirror/addon/mode/overlay.js") }}" charset="utf-8"></script>
198 <script src="{{ static_url("components/codemirror/addon/mode/overlay.js") }}" charset="utf-8"></script>
199 <script src="{{ static_url("js/codemirror-ipython.js") }}" charset="utf-8"></script>
199 <script src="{{ static_url("notebook/js/codemirror-ipython.js") }}" charset="utf-8"></script>
200 <script src="{{ static_url("components/codemirror/mode/htmlmixed/htmlmixed.js") }}" charset="utf-8"></script>
200 <script src="{{ static_url("components/codemirror/mode/htmlmixed/htmlmixed.js") }}" charset="utf-8"></script>
201 <script src="{{ static_url("components/codemirror/mode/xml/xml.js") }}" charset="utf-8"></script>
201 <script src="{{ static_url("components/codemirror/mode/xml/xml.js") }}" charset="utf-8"></script>
202 <script src="{{ static_url("components/codemirror/mode/javascript/javascript.js") }}" charset="utf-8"></script>
202 <script src="{{ static_url("components/codemirror/mode/javascript/javascript.js") }}" charset="utf-8"></script>
@@ -210,33 +210,33 b' class="notebook_app"'
210
210
211 <script src="{{ static_url("dateformat/date.format.js") }}" charset="utf-8"></script>
211 <script src="{{ static_url("dateformat/date.format.js") }}" charset="utf-8"></script>
212
212
213 <script src="{{ static_url("js/events.js") }}" type="text/javascript" charset="utf-8"></script>
213 <script src="{{ static_url("base/js/events.js") }}" type="text/javascript" charset="utf-8"></script>
214 <script src="{{ static_url("js/utils.js") }}" type="text/javascript" charset="utf-8"></script>
214 <script src="{{ static_url("base/js/utils.js") }}" type="text/javascript" charset="utf-8"></script>
215 <script src="{{ static_url("js/layoutmanager.js") }}" type="text/javascript" charset="utf-8"></script>
215 <script src="{{ static_url("notebook/js/layoutmanager.js") }}" type="text/javascript" charset="utf-8"></script>
216 <script src="{{ static_url("js/mathjaxutils.js") }}" type="text/javascript" charset="utf-8"></script>
216 <script src="{{ static_url("notebook/js/mathjaxutils.js") }}" type="text/javascript" charset="utf-8"></script>
217 <script src="{{ static_url("js/outputarea.js") }}" type="text/javascript" charset="utf-8"></script>
217 <script src="{{ static_url("notebook/js/outputarea.js") }}" type="text/javascript" charset="utf-8"></script>
218 <script src="{{ static_url("js/cell.js") }}" type="text/javascript" charset="utf-8"></script>
218 <script src="{{ static_url("notebook/js/cell.js") }}" type="text/javascript" charset="utf-8"></script>
219 <script src="{{ static_url("js/celltoolbar.js") }}" type="text/javascript" charset="utf-8"></script>
219 <script src="{{ static_url("notebook/js/celltoolbar.js") }}" type="text/javascript" charset="utf-8"></script>
220 <script src="{{ static_url("js/codecell.js") }}" type="text/javascript" charset="utf-8"></script>
220 <script src="{{ static_url("notebook/js/codecell.js") }}" type="text/javascript" charset="utf-8"></script>
221 <script src="{{ static_url("js/completer.js") }}" type="text/javascript" charset="utf-8"></script>
221 <script src="{{ static_url("notebook/js/completer.js") }}" type="text/javascript" charset="utf-8"></script>
222 <script src="{{ static_url("js/textcell.js") }}" type="text/javascript" charset="utf-8"></script>
222 <script src="{{ static_url("notebook/js/textcell.js") }}" type="text/javascript" charset="utf-8"></script>
223 <script src="{{ static_url("js/kernel.js") }}" type="text/javascript" charset="utf-8"></script>
223 <script src="{{ static_url("services/kernels/js/kernel.js") }}" type="text/javascript" charset="utf-8"></script>
224 <script src="{{ static_url("js/savewidget.js") }}" type="text/javascript" charset="utf-8"></script>
224 <script src="{{ static_url("notebook/js/savewidget.js") }}" type="text/javascript" charset="utf-8"></script>
225 <script src="{{ static_url("js/quickhelp.js") }}" type="text/javascript" charset="utf-8"></script>
225 <script src="{{ static_url("notebook/js/quickhelp.js") }}" type="text/javascript" charset="utf-8"></script>
226 <script src="{{ static_url("js/pager.js") }}" type="text/javascript" charset="utf-8"></script>
226 <script src="{{ static_url("notebook/js/pager.js") }}" type="text/javascript" charset="utf-8"></script>
227 <script src="{{ static_url("js/menubar.js") }}" type="text/javascript" charset="utf-8"></script>
227 <script src="{{ static_url("notebook/js/menubar.js") }}" type="text/javascript" charset="utf-8"></script>
228 <script src="{{ static_url("js/toolbar.js") }}" type="text/javascript" charset="utf-8"></script>
228 <script src="{{ static_url("notebook/js/toolbar.js") }}" type="text/javascript" charset="utf-8"></script>
229 <script src="{{ static_url("js/maintoolbar.js") }}" type="text/javascript" charset="utf-8"></script>
229 <script src="{{ static_url("notebook/js/maintoolbar.js") }}" type="text/javascript" charset="utf-8"></script>
230 <script src="{{ static_url("js/notebook.js") }}" type="text/javascript" charset="utf-8"></script>
230 <script src="{{ static_url("notebook/js/notebook.js") }}" type="text/javascript" charset="utf-8"></script>
231 <script src="{{ static_url("js/notificationwidget.js") }}" type="text/javascript" charset="utf-8"></script>
231 <script src="{{ static_url("notebook/js/notificationwidget.js") }}" type="text/javascript" charset="utf-8"></script>
232 <script src="{{ static_url("js/notificationarea.js") }}" type="text/javascript" charset="utf-8"></script>
232 <script src="{{ static_url("notebook/js/notificationarea.js") }}" type="text/javascript" charset="utf-8"></script>
233 <script src="{{ static_url("js/tooltip.js") }}" type="text/javascript" charset="utf-8"></script>
233 <script src="{{ static_url("notebook/js/tooltip.js") }}" type="text/javascript" charset="utf-8"></script>
234 <script src="{{ static_url("js/config.js") }}" type="text/javascript" charset="utf-8"></script>
234 <script src="{{ static_url("notebook/js/config.js") }}" type="text/javascript" charset="utf-8"></script>
235 <script src="{{ static_url("js/notebookmain.js") }}" type="text/javascript" charset="utf-8"></script>
235 <script src="{{ static_url("notebook/js/main.js") }}" type="text/javascript" charset="utf-8"></script>
236
236
237 <script src="{{ static_url("js/contexthint.js") }}" charset="utf-8"></script>
237 <script src="{{ static_url("notebook/js/contexthint.js") }}" charset="utf-8"></script>
238
238
239 <script src="{{ static_url("js/celltoolbarpresets/default.js") }}" type="text/javascript" charset="utf-8"></script>
239 <script src="{{ static_url("notebook/js/celltoolbarpresets/default.js") }}" type="text/javascript" charset="utf-8"></script>
240 <script src="{{ static_url("js/celltoolbarpresets/slideshow.js") }}" type="text/javascript" charset="utf-8"></script>
240 <script src="{{ static_url("notebook/js/celltoolbarpresets/slideshow.js") }}" type="text/javascript" charset="utf-8"></script>
241
241
242 {% endblock %}
242 {% endblock %}
@@ -10,20 +10,20 b''
10 <meta charset="utf-8">
10 <meta charset="utf-8">
11
11
12 <title>{% block title %}IPython Notebook{% endblock %}</title>
12 <title>{% block title %}IPython Notebook{% endblock %}</title>
13 <link rel="shortcut icon" type="image/x-icon" href="{{static_url("base/images/favicon.ico") }}">
13 <meta http-equiv="X-UA-Compatible" content="chrome=1">
14 <meta http-equiv="X-UA-Compatible" content="chrome=1">
14 <link rel="stylesheet" href="{{static_url("jquery/css/themes/base/jquery-ui.min.css") }}" type="text/css" />
15 <link rel="stylesheet" href="{{static_url("jquery/css/themes/base/jquery-ui.min.css") }}" type="text/css" />
15 <link rel="stylesheet" href="{{static_url("css/boilerplate.css") }}" type="text/css" />
16 <link rel="stylesheet" href="{{static_url("base/css/boilerplate.css") }}" type="text/css" />
16 <link rel="stylesheet" href="{{static_url("css/page.css") }}" type="text/css"/>
17 {% block stylesheet %}
17 {% block stylesheet %}
18 {% block lesscss %}
18 {% block lesscss %}
19 {% if use_less %}
19 {% if use_less %}
20 <link rel="stylesheet/less" href="{{ static_url("less/style.less") }}" type="text/css" />
20 <link rel="stylesheet/less" href="{{ static_url("style/style.less") }}" type="text/css" />
21 {% else %}
21 {% else %}
22 <link rel="stylesheet" href="{{ static_url("css/style.min.css") }}" type="text/css"/>
22 <link rel="stylesheet" href="{{ static_url("style/style.min.css") }}" type="text/css"/>
23 {% endif %}
23 {% endif %}
24 {% endblock lesscss%}
24 {% endblock %}
25 {% endblock %}
25 {% endblock %}
26 <link rel="stylesheet" href="{{ static_url("css/custom.css") }}" type="text/css" />
26 <link rel="stylesheet" href="{{ static_url("custom/custom.css") }}" type="text/css" />
27
27
28
28
29 {% block meta %}
29 {% block meta %}
@@ -34,7 +34,7 b''
34 <body {% block params %}{% endblock %}>
34 <body {% block params %}{% endblock %}>
35
35
36 <div id="header">
36 <div id="header">
37 <span id="ipython_notebook"><div><a href="{{base_project_url}}" alt='dashboard'><img src='{{static_url("ipynblogo.png") }}' alt='IPython Notebook'/></a></div></span>
37 <span id="ipython_notebook"><div><a href="{{base_project_url}}" alt='dashboard'><img src='{{static_url("base/images/ipynblogo.png") }}' alt='IPython Notebook'/></a></div></span>
38
38
39 {% block login_widget %}
39 {% block login_widget %}
40
40
@@ -59,9 +59,9 b''
59
59
60 <script src="{{static_url("jquery/js/jquery-1.7.1.min.js") }}" type="text/javascript" charset="utf-8"></script>
60 <script src="{{static_url("jquery/js/jquery-1.7.1.min.js") }}" type="text/javascript" charset="utf-8"></script>
61 <script src="{{static_url("jquery/js/jquery-ui.min.js") }}" type="text/javascript" charset="utf-8"></script>
61 <script src="{{static_url("jquery/js/jquery-ui.min.js") }}" type="text/javascript" charset="utf-8"></script>
62 <script src="{{static_url("js/namespace.js") }}" type="text/javascript" charset="utf-8"></script>
62 <script src="{{static_url("base/js/namespace.js") }}" type="text/javascript" charset="utf-8"></script>
63 <script src="{{static_url("js/page.js") }}" type="text/javascript" charset="utf-8"></script>
63 <script src="{{static_url("base/js/page.js") }}" type="text/javascript" charset="utf-8"></script>
64 <script src="{{static_url("js/loginwidget.js") }}" type="text/javascript" charset="utf-8"></script>
64 <script src="{{static_url("auth/js/loginwidget.js") }}" type="text/javascript" charset="utf-8"></script>
65
65
66 {% block script %}
66 {% block script %}
67 {% if use_less %}
67 {% if use_less %}
@@ -69,7 +69,7 b''
69 {% endif %}
69 {% endif %}
70 {% endblock %}
70 {% endblock %}
71
71
72 <script src="{{static_url("js/custom.js") }}" type="text/javascript" charset="utf-8"></script>
72 <script src="{{static_url("custom/custom.js") }}" type="text/javascript" charset="utf-8"></script>
73
73
74 </body>
74 </body>
75
75
@@ -1,15 +1,13 b''
1 {% extends "base.html" %}
1 {% extends "page.html" %}
2
2
3 {% block title %}IPython Dashboard{% endblock %}
3 {% block title %}IPython Dashboard{% endblock %}
4
4
5
5 {% block stylesheet %}
6 {% block stylesheet %}
6 {{super()}}
7 {{super()}}
7 <link rel="stylesheet" href="{{static_url("css/alternateuploadform.css") }}" type="text/css" />
8 <link rel="stylesheet" href="{{ static_url("tree/css/override.css") }}" type="text/css" />
8 <link rel="stylesheet" href="{{static_url("css/style.min.css") }}" type="text/css" />
9 <link rel="stylesheet" href="{{static_url("css/projectdashboard.css") }}" type="text/css" />
10 {% endblock %}
9 {% endblock %}
11
10
12
13 {% block params %}
11 {% block params %}
14
12
15 data-project={{project}}
13 data-project={{project}}
@@ -84,7 +82,7 b' data-read-only={{read_only}}'
84
82
85 {% block script %}
83 {% block script %}
86 {{super()}}
84 {{super()}}
87 <script src="{{static_url("js/notebooklist.js") }}" type="text/javascript" charset="utf-8"></script>
85 <script src="{{static_url("tree/js/notebooklist.js") }}" type="text/javascript" charset="utf-8"></script>
88 <script src="{{static_url("js/clusterlist.js") }}" type="text/javascript" charset="utf-8"></script>
86 <script src="{{static_url("tree/js/clusterlist.js") }}" type="text/javascript" charset="utf-8"></script>
89 <script src="{{static_url("js/projectdashboardmain.js") }}" type="text/javascript" charset="utf-8"></script>
87 <script src="{{static_url("tree/js/main.js") }}" type="text/javascript" charset="utf-8"></script>
90 {% endblock %}
88 {% endblock %}
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
This diff has been collapsed as it changes many lines, (513 lines changed) Show them Hide them
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now