##// END OF EJS Templates
regen css (non-minified)...
MinRK -
Show More
This diff has been collapsed as it changes many lines, (1742 lines changed) Show them Hide them
@@ -1,9 +1,1747 b''
1 /*!
1 /*!
2 *
2 *
3 * IPython base
3 * IPython base
4 *
4 *
5 */.modal.fade .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);transform:translate(0, 0)}code{color:#000}pre{font-size:inherit;line-height:inherit}label{font-weight:normal}.border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.corner-all{border-radius:4px}.no-padding{padding:0}.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;display:flex;flex-direction:row;align-items:stretch}.hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.vbox{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;display:flex;flex-direction:column;align-items:stretch}.vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.hbox.reverse,.vbox.reverse,.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse;flex-direction:row-reverse}.hbox.box-flex0,.vbox.box-flex0,.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;width:auto}.hbox.box-flex1,.vbox.box-flex1,.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.hbox.box-flex,.vbox.box-flex,.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.hbox.box-flex2,.vbox.box-flex2,.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2;flex:2}.box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1}.box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2}.hbox.start,.vbox.start,.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;justify-content:flex-start}.hbox.end,.vbox.end,.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end;justify-content:flex-end}.hbox.center,.vbox.center,.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center;justify-content:center}.hbox.align-start,.vbox.align-start,.align-start{-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.hbox.align-end,.vbox.align-end,.align-end{-webkit-box-align:end;-moz-box-align:end;box-align:end;align-items:flex-end}.hbox.align-center,.vbox.align-center,.align-center{-webkit-box-align:center;-moz-box-align:center;box-align:center;align-items:center}div.error{margin:2em;text-align:center}div.error>h1{font-size:500%;line-height:normal}div.error>p{font-size:200%;line-height:normal}div.traceback-wrapper{text-align:left;max-width:800px;margin:auto}/*!
5 */
6 .modal.fade .modal-dialog {
7 -webkit-transform: translate(0, 0);
8 -ms-transform: translate(0, 0);
9 transform: translate(0, 0);
10 }
11 code {
12 color: #000000;
13 }
14 pre {
15 font-size: inherit;
16 line-height: inherit;
17 }
18 label {
19 font-weight: normal;
20 }
21 .border-box-sizing {
22 box-sizing: border-box;
23 -moz-box-sizing: border-box;
24 -webkit-box-sizing: border-box;
25 }
26 .corner-all {
27 border-radius: 4px;
28 }
29 .no-padding {
30 padding: 0px;
31 }
32 /* Flexible box model classes */
33 /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
34 /* This file is a compatability layer. It allows the usage of flexible box
35 model layouts accross multiple browsers, including older browsers. The newest,
36 universal implementation of the flexible box model is used when available (see
37 `Modern browsers` comments below). Browsers that are known to implement this
38 new spec completely include:
39
40 Firefox 28.0+
41 Chrome 29.0+
42 Internet Explorer 11+
43 Opera 17.0+
44
45 Browsers not listed, including Safari, are supported via the styling under the
46 `Old browsers` comments below.
47 */
48 .hbox {
49 /* Old browsers */
50 display: -webkit-box;
51 -webkit-box-orient: horizontal;
52 -webkit-box-align: stretch;
53 display: -moz-box;
54 -moz-box-orient: horizontal;
55 -moz-box-align: stretch;
56 display: box;
57 box-orient: horizontal;
58 box-align: stretch;
59 /* Modern browsers */
60 display: flex;
61 flex-direction: row;
62 align-items: stretch;
63 }
64 .hbox > * {
65 /* Old browsers */
66 -webkit-box-flex: 0;
67 -moz-box-flex: 0;
68 box-flex: 0;
69 /* Modern browsers */
70 flex: none;
71 }
72 .vbox {
73 /* Old browsers */
74 display: -webkit-box;
75 -webkit-box-orient: vertical;
76 -webkit-box-align: stretch;
77 display: -moz-box;
78 -moz-box-orient: vertical;
79 -moz-box-align: stretch;
80 display: box;
81 box-orient: vertical;
82 box-align: stretch;
83 /* Modern browsers */
84 display: flex;
85 flex-direction: column;
86 align-items: stretch;
87 }
88 .vbox > * {
89 /* Old browsers */
90 -webkit-box-flex: 0;
91 -moz-box-flex: 0;
92 box-flex: 0;
93 /* Modern browsers */
94 flex: none;
95 }
96 .hbox.reverse,
97 .vbox.reverse,
98 .reverse {
99 /* Old browsers */
100 -webkit-box-direction: reverse;
101 -moz-box-direction: reverse;
102 box-direction: reverse;
103 /* Modern browsers */
104 flex-direction: row-reverse;
105 }
106 .hbox.box-flex0,
107 .vbox.box-flex0,
108 .box-flex0 {
109 /* Old browsers */
110 -webkit-box-flex: 0;
111 -moz-box-flex: 0;
112 box-flex: 0;
113 /* Modern browsers */
114 flex: none;
115 width: auto;
116 }
117 .hbox.box-flex1,
118 .vbox.box-flex1,
119 .box-flex1 {
120 /* Old browsers */
121 -webkit-box-flex: 1;
122 -moz-box-flex: 1;
123 box-flex: 1;
124 /* Modern browsers */
125 flex: 1;
126 }
127 .hbox.box-flex,
128 .vbox.box-flex,
129 .box-flex {
130 /* Old browsers */
131 /* Old browsers */
132 -webkit-box-flex: 1;
133 -moz-box-flex: 1;
134 box-flex: 1;
135 /* Modern browsers */
136 flex: 1;
137 }
138 .hbox.box-flex2,
139 .vbox.box-flex2,
140 .box-flex2 {
141 /* Old browsers */
142 -webkit-box-flex: 2;
143 -moz-box-flex: 2;
144 box-flex: 2;
145 /* Modern browsers */
146 flex: 2;
147 }
148 .box-group1 {
149 /* Deprecated */
150 -webkit-box-flex-group: 1;
151 -moz-box-flex-group: 1;
152 box-flex-group: 1;
153 }
154 .box-group2 {
155 /* Deprecated */
156 -webkit-box-flex-group: 2;
157 -moz-box-flex-group: 2;
158 box-flex-group: 2;
159 }
160 .hbox.start,
161 .vbox.start,
162 .start {
163 /* Old browsers */
164 -webkit-box-pack: start;
165 -moz-box-pack: start;
166 box-pack: start;
167 /* Modern browsers */
168 justify-content: flex-start;
169 }
170 .hbox.end,
171 .vbox.end,
172 .end {
173 /* Old browsers */
174 -webkit-box-pack: end;
175 -moz-box-pack: end;
176 box-pack: end;
177 /* Modern browsers */
178 justify-content: flex-end;
179 }
180 .hbox.center,
181 .vbox.center,
182 .center {
183 /* Old browsers */
184 -webkit-box-pack: center;
185 -moz-box-pack: center;
186 box-pack: center;
187 /* Modern browsers */
188 justify-content: center;
189 }
190 .hbox.align-start,
191 .vbox.align-start,
192 .align-start {
193 /* Old browsers */
194 -webkit-box-align: start;
195 -moz-box-align: start;
196 box-align: start;
197 /* Modern browsers */
198 align-items: flex-start;
199 }
200 .hbox.align-end,
201 .vbox.align-end,
202 .align-end {
203 /* Old browsers */
204 -webkit-box-align: end;
205 -moz-box-align: end;
206 box-align: end;
207 /* Modern browsers */
208 align-items: flex-end;
209 }
210 .hbox.align-center,
211 .vbox.align-center,
212 .align-center {
213 /* Old browsers */
214 -webkit-box-align: center;
215 -moz-box-align: center;
216 box-align: center;
217 /* Modern browsers */
218 align-items: center;
219 }
220 div.error {
221 margin: 2em;
222 text-align: center;
223 }
224 div.error > h1 {
225 font-size: 500%;
226 line-height: normal;
227 }
228 div.error > p {
229 font-size: 200%;
230 line-height: normal;
231 }
232 div.traceback-wrapper {
233 text-align: left;
234 max-width: 800px;
235 margin: auto;
236 }
237 /*!
6 *
238 *
7 * IPython notebook
239 * IPython notebook
8 *
240 *
9 */.ansibold{font-weight:bold}.ansiblack{color:#000}.ansired{color:#8b0000}.ansigreen{color:#006400}.ansiyellow{color:#a52a2a}.ansiblue{color:#00008b}.ansipurple{color:#9400d3}.ansicyan{color:#4682b4}.ansigray{color:#808080}.ansibgblack{background-color:#000}.ansibgred{background-color:#f00}.ansibggreen{background-color:#008000}.ansibgyellow{background-color:#ff0}.ansibgblue{background-color:#00f}.ansibgpurple{background-color:#f0f}.ansibgcyan{background-color:#0ff}.ansibggray{background-color:#808080}div.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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;border-radius:4px;border-width:thin;border-style:solid}div.cell.selected{border-color:#ababab}div.cell.edit_mode{border-color:#008000}div.cell{width:100%;padding:5px 5px 5px 0;margin:0;outline:none}div.prompt{min-width:15ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.21429em}@media (max-width:480px){div.prompt{text-align:left}}div.inner_cell{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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7;line-height:1.21429em}div.prompt:empty{padding-top:0;padding-bottom:0}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;display:flex;flex-direction:row;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}@media (max-width:480px){div.input{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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}}div.input_prompt{color:#000080;border-top:1px solid transparent}div.input_area>div.highlight{margin:.4em;border:none;padding:0;background-color:transparent}div.input_area>div.highlight>pre{margin:0;border:none;padding:0;background-color:transparent}.CodeMirror{line-height:1.21429em;height:auto;background:none}.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto}.CodeMirror-lines{padding:.4em}.CodeMirror-linenumber{padding:0 8px 0 4px}.CodeMirror-gutters{border-bottom-left-radius:4px;border-top-left-radius:4px}.CodeMirror pre{padding:0;border:0;border-radius:0}.CodeMirror-vscrollbar,.CodeMirror-hscrollbar{display:none !important}pre code{display:block;padding:.5em}.highlight-base,pre code,pre .subst,pre .tag .title,pre .lisp .title,pre .clojure .built_in,pre .nginx .title{color:#000}.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}.highlight-comment,pre .comment,pre .annotation,pre .template_comment,pre .diff .header,pre .chunk,pre .markdown .blockquote{color:#408080;font-style:italic}.highlight-number,pre .number,pre .date,pre .regexp,pre .literal,pre .smalltalk .symbol,pre .smalltalk .char,pre .go .constant,pre .change,pre .markdown .bullet,pre .markdown .link_url{color:#080}pre .label,pre .javadoc,pre .ruby .string,pre .decorator,pre .filter .argument,pre .localvars,pre .array,pre .attr_selector,pre .important,pre .pseudo,pre .pi,pre .doctype,pre .deletion,pre .envvar,pre .shebang,pre .apache .sqbracket,pre .nginx .built_in,pre .tex .formula,pre .erlang_repl .reserved,pre .prompt,pre .markdown .link_label,pre .vhdl .attribute,pre .clojure .attribute,pre .coffeescript .property{color:#88f}.highlight-keyword,pre .keyword,pre .id,pre .phpdoc,pre .aggregate,pre .css .tag,pre .javadoctag,pre .phpdoc,pre .yardoctag,pre .smalltalk .class,pre .winutils,pre .bash .variable,pre .apache .tag,pre .go .typename,pre .tex .command,pre .markdown .strong,pre .request,pre .status{color:#008000;font-weight:bold}.highlight-builtin,pre .built_in{color:#008000}pre .markdown .emphasis{font-style:italic}pre .nginx .built_in{font-weight:normal}pre .coffeescript .javascript,pre .javascript .xml,pre .tex .formula,pre .xml .javascript,pre .xml .vbscript,pre .xml .css,pre .xml .cdata{opacity:.5}.cm-s-ipython span.cm-variable{color:#000}.cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold}.cm-s-ipython span.cm-number{color:#080}.cm-s-ipython span.cm-comment{color:#408080;font-style:italic}.cm-s-ipython span.cm-string{color:#ba2121}.cm-s-ipython span.cm-builtin{color:#008000}.cm-s-ipython span.cm-error{color:#f00}.cm-s-ipython span.cm-operator{color:#a2f;font-weight:bold}.cm-s-ipython span.cm-meta{color:#a2f}.cm-s-ipython span.cm-tab{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);background-position:right;background-repeat:no-repeat}div.output_wrapper{position:relative;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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}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);box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);display:block}div.output_collapsed{margin:0;padding:0;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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:4px}div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000;box-shadow:inset 0 0 1px #000;background:rgba(240,240,240,0.5)}div.output_prompt{color:#8b0000}div.output_area{padding:0;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;display:flex;flex-direction:row;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}div.output_area .MathJax_Display{text-align:left !important}div.output_area .rendered_html table{margin-left:0;margin-right:0}div.output_area .rendered_html img{margin-left:0;margin-right:0}.output{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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}@media (max-width:480px){div.output_area{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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}}div.output_area pre{margin:0;padding:0;border:0;vertical-align:baseline;color:#000;background-color:transparent;border-radius:0}div.output_subarea{padding:.4em .4em 0 .4em;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}div.output_text{text-align:left;color:#000;line-height:1.21429em}div.output_stderr{background:#fdd}div.output_latex{text-align:left}div.output_javascript:empty{padding:0}.js-error{color:#8b0000}div.raw_input_container{font-family:monospace;padding-top:5px}input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;vertical-align:baseline;padding:0 .25em;margin:0 .25em}input.raw_input:focus{box-shadow:none}p.p-space{margin-bottom:10px}.rendered_html{color:#000}.rendered_html em{font-style:italic}.rendered_html strong{font-weight:bold}.rendered_html u{text-decoration:underline}.rendered_html :link{text-decoration:underline}.rendered_html :visited{text-decoration:underline}.rendered_html h1{font-size:185.7%;margin:1.08em 0 0 0;font-weight:bold;line-height:1}.rendered_html h2{font-size:157.1%;margin:1.27em 0 0 0;font-weight:bold;line-height:1}.rendered_html h3{font-size:128.6%;margin:1.55em 0 0 0;font-weight:bold;line-height:1}.rendered_html h4{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1}.rendered_html h5{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1;font-style:italic}.rendered_html h6{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1;font-style:italic}.rendered_html h1:first-child{margin-top:.538em}.rendered_html h2:first-child{margin-top:.636em}.rendered_html h3:first-child{margin-top:.777em}.rendered_html h4:first-child{margin-top:1em}.rendered_html h5:first-child{margin-top:1em}.rendered_html h6:first-child{margin-top:1em}.rendered_html ul{list-style:disc;margin:0 2em;padding-left:0}.rendered_html ul ul{list-style:square;margin:0 2em}.rendered_html ul ul ul{list-style:circle;margin:0 2em}.rendered_html ol{list-style:decimal;margin:0 2em;padding-left:0}.rendered_html ol ol{list-style:upper-alpha;margin:0 2em}.rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em}.rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em}.rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em}.rendered_html *+ul{margin-top:1em}.rendered_html *+ol{margin-top:1em}.rendered_html hr{color:#000;background-color:#000}.rendered_html pre{margin:1em 2em}.rendered_html pre,.rendered_html code{border:0;background-color:#fff;color:#000;font-size:100%;padding:0}.rendered_html blockquote{margin:1em 2em}.rendered_html table{margin-left:auto;margin-right:auto;border:1px solid #000;border-collapse:collapse}.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid #000;border-collapse:collapse;margin:1em 2em}.rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px}.rendered_html th{font-weight:bold}.rendered_html *+table{margin-top:1em}.rendered_html p{text-align:justify}.rendered_html *+p{margin-top:1em}.rendered_html img{display:block;margin-left:auto;margin-right:auto}.rendered_html *+img{margin-top:1em}div.text_cell{padding:5px 5px 5px 0;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;display:flex;flex-direction:row;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}@media (max-width:480px){div.text_cell>div.prompt{display:none}}div.text_cell_render{outline:none;resize:none;width:inherit;border-style:none;padding:.5em .5em .5em .4em;color:#000}a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden}h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible}div.cell.text_cell.rendered{padding:0}.widget-area{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;display:flex;flex-direction:row;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.widget-area .widget-subarea{padding:.44em .4em .4em 1px;margin-left:6px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;-webkit-box-flex:2;-moz-box-flex:2;box-flex:2;flex:2;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.widget-hlabel{min-width:10ex;padding-right:8px;padding-top:5px;text-align:right;vertical-align:text-top}.widget-vlabel{padding-bottom:5px;text-align:center;vertical-align:text-bottom}.widget-hreadout{padding-left:8px;padding-top:5px;text-align:left;vertical-align:text-top}.widget-vreadout{padding-top:5px;text-align:center;vertical-align:text-top}.slide-track{border:1px solid #ccc;background:#fff;border-radius:4px}.widget-hslider{padding-left:8px;padding-right:5px;overflow:visible;width:350px;height:5px;max-height:5px;margin-top:13px;margin-bottom:10px;border:1px solid #ccc;background:#fff;border-radius:4px;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;display:flex;flex-direction:row;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.widget-hslider .ui-slider{border:0 !important;background:none !important;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;display:flex;flex-direction:row;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.widget-hslider .ui-slider .ui-slider-handle{width:14px !important;height:28px !important;margin-top:-8px !important}.widget-vslider{padding-bottom:8px;overflow:visible;width:5px;max-width:5px;height:250px;margin-left:12px;border:1px solid #ccc;background:#fff;border-radius:4px;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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.widget-vslider .ui-slider{border:0 !important;background:none !important;margin-left:-4px;margin-top:5px;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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.widget-vslider .ui-slider .ui-slider-handle{width:28px !important;height:14px !important;margin-left:-9px}.widget-text{width:350px;margin:0 !important}.widget-listbox{width:350px;margin-bottom:0}.widget-numeric-text{width:150px;margin:0 !important}.widget-progress{margin-top:6px;width:350px}.widget-progress .progress-bar{-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}.widget-combo-btn{min-width:125px}.widget-box{margin:5px;-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;justify-content:flex-start;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.widget-hbox{margin:5px;-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;justify-content:flex-start;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start;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;display:flex;flex-direction:row;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.widget-hbox-single{margin:5px;-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;justify-content:flex-start;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start;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;display:flex;flex-direction:row;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;height:30px}.widget-hbox-single input[type="checkbox"]{margin-top:9px}.widget-vbox{margin:5px;-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;justify-content:flex-start;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start;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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.widget-vbox-single{margin:5px;-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;justify-content:flex-start;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start;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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;width:30px}.widget-modal{overflow:hidden;position:absolute !important;top:0;left:0;margin-left:0 !important}.widget-modal-body{max-height:none !important}.widget-container{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.widget-radio-box{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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding-top:4px}.widget-radio-box label{margin-top:0}.docked-widget-modal{overflow:hidden;position:relative !important;top:0 !important;left:0 !important;margin-left:0 !important}/*# sourceMappingURL=../style/ipython.min.css.map */ No newline at end of file
241 */
242 /* CSS font colors for translated ANSI colors. */
243 .ansibold {
244 font-weight: bold;
245 }
246 /* use dark versions for foreground, to improve visibility */
247 .ansiblack {
248 color: black;
249 }
250 .ansired {
251 color: darkred;
252 }
253 .ansigreen {
254 color: darkgreen;
255 }
256 .ansiyellow {
257 color: brown;
258 }
259 .ansiblue {
260 color: darkblue;
261 }
262 .ansipurple {
263 color: darkviolet;
264 }
265 .ansicyan {
266 color: steelblue;
267 }
268 .ansigray {
269 color: gray;
270 }
271 /* and light for background, for the same reason */
272 .ansibgblack {
273 background-color: black;
274 }
275 .ansibgred {
276 background-color: red;
277 }
278 .ansibggreen {
279 background-color: green;
280 }
281 .ansibgyellow {
282 background-color: yellow;
283 }
284 .ansibgblue {
285 background-color: blue;
286 }
287 .ansibgpurple {
288 background-color: magenta;
289 }
290 .ansibgcyan {
291 background-color: cyan;
292 }
293 .ansibggray {
294 background-color: gray;
295 }
296 div.cell {
297 border: 1px solid transparent;
298 /* Old browsers */
299 display: -webkit-box;
300 -webkit-box-orient: vertical;
301 -webkit-box-align: stretch;
302 display: -moz-box;
303 -moz-box-orient: vertical;
304 -moz-box-align: stretch;
305 display: box;
306 box-orient: vertical;
307 box-align: stretch;
308 /* Modern browsers */
309 display: flex;
310 flex-direction: column;
311 align-items: stretch;
312 /* Old browsers */
313 -webkit-box-flex: 0;
314 -moz-box-flex: 0;
315 box-flex: 0;
316 /* Modern browsers */
317 flex: none;
318 border-radius: 4px;
319 border-width: thin;
320 border-style: solid;
321 }
322 div.cell.selected {
323 border-color: #ababab;
324 }
325 div.cell.edit_mode {
326 border-color: green;
327 }
328 div.cell {
329 width: 100%;
330 padding: 5px 5px 5px 0px;
331 /* This acts as a spacer between cells, that is outside the border */
332 margin: 0px;
333 outline: none;
334 }
335 div.prompt {
336 /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
337 min-width: 15ex;
338 /* This padding is tuned to match the padding on the CodeMirror editor. */
339 padding: 0.4em;
340 margin: 0px;
341 font-family: monospace;
342 text-align: right;
343 /* This has to match that of the the CodeMirror class line-height below */
344 line-height: 1.21429em;
345 }
346 @media (max-width: 480px) {
347 div.prompt {
348 text-align: left;
349 }
350 }
351 div.inner_cell {
352 /* Old browsers */
353 display: -webkit-box;
354 -webkit-box-orient: vertical;
355 -webkit-box-align: stretch;
356 display: -moz-box;
357 -moz-box-orient: vertical;
358 -moz-box-align: stretch;
359 display: box;
360 box-orient: vertical;
361 box-align: stretch;
362 /* Modern browsers */
363 display: flex;
364 flex-direction: column;
365 align-items: stretch;
366 /* Old browsers */
367 -webkit-box-flex: 0;
368 -moz-box-flex: 0;
369 box-flex: 0;
370 /* Modern browsers */
371 flex: none;
372 /* Old browsers */
373 -webkit-box-flex: 1;
374 -moz-box-flex: 1;
375 box-flex: 1;
376 /* Modern browsers */
377 flex: 1;
378 }
379 /* input_area and input_prompt must match in top border and margin for alignment */
380 div.input_area {
381 border: 1px solid #cfcfcf;
382 border-radius: 4px;
383 background: #f7f7f7;
384 line-height: 1.21429em;
385 }
386 /* This is needed so that empty prompt areas can collapse to zero height when there
387 is no content in the output_subarea and the prompt. The main purpose of this is
388 to make sure that empty JavaScript output_subareas have no height. */
389 div.prompt:empty {
390 padding-top: 0;
391 padding-bottom: 0;
392 }
393 /* any special styling for code cells that are currently running goes here */
394 div.input {
395 page-break-inside: avoid;
396 /* Old browsers */
397 display: -webkit-box;
398 -webkit-box-orient: horizontal;
399 -webkit-box-align: stretch;
400 display: -moz-box;
401 -moz-box-orient: horizontal;
402 -moz-box-align: stretch;
403 display: box;
404 box-orient: horizontal;
405 box-align: stretch;
406 /* Modern browsers */
407 display: flex;
408 flex-direction: row;
409 align-items: stretch;
410 /* Old browsers */
411 -webkit-box-flex: 0;
412 -moz-box-flex: 0;
413 box-flex: 0;
414 /* Modern browsers */
415 flex: none;
416 }
417 @media (max-width: 480px) {
418 div.input {
419 /* Old browsers */
420 display: -webkit-box;
421 -webkit-box-orient: vertical;
422 -webkit-box-align: stretch;
423 display: -moz-box;
424 -moz-box-orient: vertical;
425 -moz-box-align: stretch;
426 display: box;
427 box-orient: vertical;
428 box-align: stretch;
429 /* Modern browsers */
430 display: flex;
431 flex-direction: column;
432 align-items: stretch;
433 /* Old browsers */
434 -webkit-box-flex: 0;
435 -moz-box-flex: 0;
436 box-flex: 0;
437 /* Modern browsers */
438 flex: none;
439 }
440 }
441 /* input_area and input_prompt must match in top border and margin for alignment */
442 div.input_prompt {
443 color: #000080;
444 border-top: 1px solid transparent;
445 }
446 div.input_area > div.highlight {
447 margin: 0.4em;
448 border: none;
449 padding: 0px;
450 background-color: transparent;
451 }
452 div.input_area > div.highlight > pre {
453 margin: 0px;
454 border: none;
455 padding: 0px;
456 background-color: transparent;
457 }
458 /* The following gets added to the <head> if it is detected that the user has a
459 * monospace font with inconsistent normal/bold/italic height. See
460 * notebookmain.js. Such fonts will have keywords vertically offset with
461 * respect to the rest of the text. The user should select a better font.
462 * See: https://github.com/ipython/ipython/issues/1503
463 *
464 * .CodeMirror span {
465 * vertical-align: bottom;
466 * }
467 */
468 .CodeMirror {
469 line-height: 1.21429em;
470 /* Changed from 1em to our global default */
471 height: auto;
472 /* Changed to auto to autogrow */
473 background: none;
474 /* Changed from white to allow our bg to show through */
475 }
476 .CodeMirror-scroll {
477 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
478 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
479 overflow-y: hidden;
480 overflow-x: auto;
481 }
482 .CodeMirror-lines {
483 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
484 /* we have set a different line-height and want this to scale with that. */
485 padding: 0.4em;
486 }
487 .CodeMirror-linenumber {
488 padding: 0 8px 0 4px;
489 }
490 .CodeMirror-gutters {
491 border-bottom-left-radius: 4px;
492 border-top-left-radius: 4px;
493 }
494 .CodeMirror pre {
495 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
496 /* .CodeMirror-lines */
497 padding: 0;
498 border: 0;
499 border-radius: 0;
500 }
501 .CodeMirror-vscrollbar,
502 .CodeMirror-hscrollbar {
503 display: none !important;
504 }
505 /*
506
507 Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
508 Adapted from GitHub theme
509
510 */
511 pre code {
512 display: block;
513 padding: 0.5em;
514 }
515 .highlight-base,
516 pre code,
517 pre .subst,
518 pre .tag .title,
519 pre .lisp .title,
520 pre .clojure .built_in,
521 pre .nginx .title {
522 color: black;
523 }
524 .highlight-string,
525 pre .string,
526 pre .constant,
527 pre .parent,
528 pre .tag .value,
529 pre .rules .value,
530 pre .rules .value .number,
531 pre .preprocessor,
532 pre .ruby .symbol,
533 pre .ruby .symbol .string,
534 pre .aggregate,
535 pre .template_tag,
536 pre .django .variable,
537 pre .smalltalk .class,
538 pre .addition,
539 pre .flow,
540 pre .stream,
541 pre .bash .variable,
542 pre .apache .tag,
543 pre .apache .cbracket,
544 pre .tex .command,
545 pre .tex .special,
546 pre .erlang_repl .function_or_atom,
547 pre .markdown .header {
548 color: #BA2121;
549 }
550 .highlight-comment,
551 pre .comment,
552 pre .annotation,
553 pre .template_comment,
554 pre .diff .header,
555 pre .chunk,
556 pre .markdown .blockquote {
557 color: #408080;
558 font-style: italic;
559 }
560 .highlight-number,
561 pre .number,
562 pre .date,
563 pre .regexp,
564 pre .literal,
565 pre .smalltalk .symbol,
566 pre .smalltalk .char,
567 pre .go .constant,
568 pre .change,
569 pre .markdown .bullet,
570 pre .markdown .link_url {
571 color: #080;
572 }
573 pre .label,
574 pre .javadoc,
575 pre .ruby .string,
576 pre .decorator,
577 pre .filter .argument,
578 pre .localvars,
579 pre .array,
580 pre .attr_selector,
581 pre .important,
582 pre .pseudo,
583 pre .pi,
584 pre .doctype,
585 pre .deletion,
586 pre .envvar,
587 pre .shebang,
588 pre .apache .sqbracket,
589 pre .nginx .built_in,
590 pre .tex .formula,
591 pre .erlang_repl .reserved,
592 pre .prompt,
593 pre .markdown .link_label,
594 pre .vhdl .attribute,
595 pre .clojure .attribute,
596 pre .coffeescript .property {
597 color: #8888ff;
598 }
599 .highlight-keyword,
600 pre .keyword,
601 pre .id,
602 pre .phpdoc,
603 pre .aggregate,
604 pre .css .tag,
605 pre .javadoctag,
606 pre .phpdoc,
607 pre .yardoctag,
608 pre .smalltalk .class,
609 pre .winutils,
610 pre .bash .variable,
611 pre .apache .tag,
612 pre .go .typename,
613 pre .tex .command,
614 pre .markdown .strong,
615 pre .request,
616 pre .status {
617 color: #008000;
618 font-weight: bold;
619 }
620 .highlight-builtin,
621 pre .built_in {
622 color: #008000;
623 }
624 pre .markdown .emphasis {
625 font-style: italic;
626 }
627 pre .nginx .built_in {
628 font-weight: normal;
629 }
630 pre .coffeescript .javascript,
631 pre .javascript .xml,
632 pre .tex .formula,
633 pre .xml .javascript,
634 pre .xml .vbscript,
635 pre .xml .css,
636 pre .xml .cdata {
637 opacity: 0.5;
638 }
639 /* apply the same style to codemirror */
640 .cm-s-ipython span.cm-variable {
641 color: black;
642 }
643 .cm-s-ipython span.cm-keyword {
644 color: #008000;
645 font-weight: bold;
646 }
647 .cm-s-ipython span.cm-number {
648 color: #080;
649 }
650 .cm-s-ipython span.cm-comment {
651 color: #408080;
652 font-style: italic;
653 }
654 .cm-s-ipython span.cm-string {
655 color: #BA2121;
656 }
657 .cm-s-ipython span.cm-builtin {
658 color: #008000;
659 }
660 .cm-s-ipython span.cm-error {
661 color: #f00;
662 }
663 .cm-s-ipython span.cm-operator {
664 color: #AA22FF;
665 font-weight: bold;
666 }
667 .cm-s-ipython span.cm-meta {
668 color: #AA22FF;
669 }
670 .cm-s-ipython span.cm-tab {
671 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
672 background-position: right;
673 background-repeat: no-repeat;
674 }
675 div.output_wrapper {
676 /* this position must be relative to enable descendents to be absolute within it */
677 position: relative;
678 /* Old browsers */
679 display: -webkit-box;
680 -webkit-box-orient: vertical;
681 -webkit-box-align: stretch;
682 display: -moz-box;
683 -moz-box-orient: vertical;
684 -moz-box-align: stretch;
685 display: box;
686 box-orient: vertical;
687 box-align: stretch;
688 /* Modern browsers */
689 display: flex;
690 flex-direction: column;
691 align-items: stretch;
692 /* Old browsers */
693 -webkit-box-flex: 0;
694 -moz-box-flex: 0;
695 box-flex: 0;
696 /* Modern browsers */
697 flex: none;
698 }
699 /* class for the output area when it should be height-limited */
700 div.output_scroll {
701 /* ideally, this would be max-height, but FF barfs all over that */
702 height: 24em;
703 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
704 width: 100%;
705 overflow: auto;
706 border-radius: 4px;
707 -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
708 box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
709 display: block;
710 }
711 /* output div while it is collapsed */
712 div.output_collapsed {
713 margin: 0px;
714 padding: 0px;
715 /* Old browsers */
716 display: -webkit-box;
717 -webkit-box-orient: vertical;
718 -webkit-box-align: stretch;
719 display: -moz-box;
720 -moz-box-orient: vertical;
721 -moz-box-align: stretch;
722 display: box;
723 box-orient: vertical;
724 box-align: stretch;
725 /* Modern browsers */
726 display: flex;
727 flex-direction: column;
728 align-items: stretch;
729 /* Old browsers */
730 -webkit-box-flex: 0;
731 -moz-box-flex: 0;
732 box-flex: 0;
733 /* Modern browsers */
734 flex: none;
735 }
736 div.out_prompt_overlay {
737 height: 100%;
738 padding: 0px 0.4em;
739 position: absolute;
740 border-radius: 4px;
741 }
742 div.out_prompt_overlay:hover {
743 /* use inner shadow to get border that is computed the same on WebKit/FF */
744 -webkit-box-shadow: inset 0 0 1px #000000;
745 box-shadow: inset 0 0 1px #000000;
746 background: rgba(240, 240, 240, 0.5);
747 }
748 div.output_prompt {
749 color: #8b0000;
750 }
751 /* This class is the outer container of all output sections. */
752 div.output_area {
753 padding: 0px;
754 page-break-inside: avoid;
755 /* Old browsers */
756 display: -webkit-box;
757 -webkit-box-orient: horizontal;
758 -webkit-box-align: stretch;
759 display: -moz-box;
760 -moz-box-orient: horizontal;
761 -moz-box-align: stretch;
762 display: box;
763 box-orient: horizontal;
764 box-align: stretch;
765 /* Modern browsers */
766 display: flex;
767 flex-direction: row;
768 align-items: stretch;
769 /* Old browsers */
770 -webkit-box-flex: 0;
771 -moz-box-flex: 0;
772 box-flex: 0;
773 /* Modern browsers */
774 flex: none;
775 }
776 div.output_area .MathJax_Display {
777 text-align: left !important;
778 }
779 div.output_area .rendered_html table {
780 margin-left: 0;
781 margin-right: 0;
782 }
783 div.output_area .rendered_html img {
784 margin-left: 0;
785 margin-right: 0;
786 }
787 /* This is needed to protect the pre formating from global settings such
788 as that of bootstrap */
789 .output {
790 /* Old browsers */
791 display: -webkit-box;
792 -webkit-box-orient: vertical;
793 -webkit-box-align: stretch;
794 display: -moz-box;
795 -moz-box-orient: vertical;
796 -moz-box-align: stretch;
797 display: box;
798 box-orient: vertical;
799 box-align: stretch;
800 /* Modern browsers */
801 display: flex;
802 flex-direction: column;
803 align-items: stretch;
804 /* Old browsers */
805 -webkit-box-flex: 0;
806 -moz-box-flex: 0;
807 box-flex: 0;
808 /* Modern browsers */
809 flex: none;
810 }
811 @media (max-width: 480px) {
812 div.output_area {
813 /* Old browsers */
814 display: -webkit-box;
815 -webkit-box-orient: vertical;
816 -webkit-box-align: stretch;
817 display: -moz-box;
818 -moz-box-orient: vertical;
819 -moz-box-align: stretch;
820 display: box;
821 box-orient: vertical;
822 box-align: stretch;
823 /* Modern browsers */
824 display: flex;
825 flex-direction: column;
826 align-items: stretch;
827 /* Old browsers */
828 -webkit-box-flex: 0;
829 -moz-box-flex: 0;
830 box-flex: 0;
831 /* Modern browsers */
832 flex: none;
833 }
834 }
835 div.output_area pre {
836 margin: 0;
837 padding: 0;
838 border: 0;
839 vertical-align: baseline;
840 color: #000000;
841 background-color: transparent;
842 border-radius: 0;
843 }
844 /* This class is for the output subarea inside the output_area and after
845 the prompt div. */
846 div.output_subarea {
847 padding: 0.4em 0.4em 0em 0.4em;
848 /* Old browsers */
849 -webkit-box-flex: 1;
850 -moz-box-flex: 1;
851 box-flex: 1;
852 /* Modern browsers */
853 flex: 1;
854 }
855 /* The rest of the output_* classes are for special styling of the different
856 output types */
857 /* all text output has this class: */
858 div.output_text {
859 text-align: left;
860 color: #000000;
861 /* This has to match that of the the CodeMirror class line-height below */
862 line-height: 1.21429em;
863 }
864 /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
865 div.output_stderr {
866 background: #fdd;
867 /* very light red background for stderr */
868 }
869 div.output_latex {
870 text-align: left;
871 }
872 /* Empty output_javascript divs should have no height */
873 div.output_javascript:empty {
874 padding: 0;
875 }
876 .js-error {
877 color: darkred;
878 }
879 /* raw_input styles */
880 div.raw_input_container {
881 font-family: monospace;
882 padding-top: 5px;
883 }
884 span.raw_input_prompt {
885 /* nothing needed here */
886 }
887 input.raw_input {
888 font-family: inherit;
889 font-size: inherit;
890 color: inherit;
891 width: auto;
892 /* make sure input baseline aligns with prompt */
893 vertical-align: baseline;
894 /* padding + margin = 0.5em between prompt and cursor */
895 padding: 0em 0.25em;
896 margin: 0em 0.25em;
897 }
898 input.raw_input:focus {
899 box-shadow: none;
900 }
901 p.p-space {
902 margin-bottom: 10px;
903 }
904 .rendered_html {
905 color: #000000;
906 /* any extras will just be numbers: */
907 }
908 .rendered_html em {
909 font-style: italic;
910 }
911 .rendered_html strong {
912 font-weight: bold;
913 }
914 .rendered_html u {
915 text-decoration: underline;
916 }
917 .rendered_html :link {
918 text-decoration: underline;
919 }
920 .rendered_html :visited {
921 text-decoration: underline;
922 }
923 .rendered_html h1 {
924 font-size: 185.7%;
925 margin: 1.08em 0 0 0;
926 font-weight: bold;
927 line-height: 1.0;
928 }
929 .rendered_html h2 {
930 font-size: 157.1%;
931 margin: 1.27em 0 0 0;
932 font-weight: bold;
933 line-height: 1.0;
934 }
935 .rendered_html h3 {
936 font-size: 128.6%;
937 margin: 1.55em 0 0 0;
938 font-weight: bold;
939 line-height: 1.0;
940 }
941 .rendered_html h4 {
942 font-size: 100%;
943 margin: 2em 0 0 0;
944 font-weight: bold;
945 line-height: 1.0;
946 }
947 .rendered_html h5 {
948 font-size: 100%;
949 margin: 2em 0 0 0;
950 font-weight: bold;
951 line-height: 1.0;
952 font-style: italic;
953 }
954 .rendered_html h6 {
955 font-size: 100%;
956 margin: 2em 0 0 0;
957 font-weight: bold;
958 line-height: 1.0;
959 font-style: italic;
960 }
961 .rendered_html h1:first-child {
962 margin-top: 0.538em;
963 }
964 .rendered_html h2:first-child {
965 margin-top: 0.636em;
966 }
967 .rendered_html h3:first-child {
968 margin-top: 0.777em;
969 }
970 .rendered_html h4:first-child {
971 margin-top: 1em;
972 }
973 .rendered_html h5:first-child {
974 margin-top: 1em;
975 }
976 .rendered_html h6:first-child {
977 margin-top: 1em;
978 }
979 .rendered_html ul {
980 list-style: disc;
981 margin: 0em 2em;
982 padding-left: 0px;
983 }
984 .rendered_html ul ul {
985 list-style: square;
986 margin: 0em 2em;
987 }
988 .rendered_html ul ul ul {
989 list-style: circle;
990 margin: 0em 2em;
991 }
992 .rendered_html ol {
993 list-style: decimal;
994 margin: 0em 2em;
995 padding-left: 0px;
996 }
997 .rendered_html ol ol {
998 list-style: upper-alpha;
999 margin: 0em 2em;
1000 }
1001 .rendered_html ol ol ol {
1002 list-style: lower-alpha;
1003 margin: 0em 2em;
1004 }
1005 .rendered_html ol ol ol ol {
1006 list-style: lower-roman;
1007 margin: 0em 2em;
1008 }
1009 .rendered_html ol ol ol ol ol {
1010 list-style: decimal;
1011 margin: 0em 2em;
1012 }
1013 .rendered_html * + ul {
1014 margin-top: 1em;
1015 }
1016 .rendered_html * + ol {
1017 margin-top: 1em;
1018 }
1019 .rendered_html hr {
1020 color: #000000;
1021 background-color: #000000;
1022 }
1023 .rendered_html pre {
1024 margin: 1em 2em;
1025 }
1026 .rendered_html pre,
1027 .rendered_html code {
1028 border: 0;
1029 background-color: #ffffff;
1030 color: #000000;
1031 font-size: 100%;
1032 padding: 0px;
1033 }
1034 .rendered_html blockquote {
1035 margin: 1em 2em;
1036 }
1037 .rendered_html table {
1038 margin-left: auto;
1039 margin-right: auto;
1040 border: 1px solid #000000;
1041 border-collapse: collapse;
1042 }
1043 .rendered_html tr,
1044 .rendered_html th,
1045 .rendered_html td {
1046 border: 1px solid #000000;
1047 border-collapse: collapse;
1048 margin: 1em 2em;
1049 }
1050 .rendered_html td,
1051 .rendered_html th {
1052 text-align: left;
1053 vertical-align: middle;
1054 padding: 4px;
1055 }
1056 .rendered_html th {
1057 font-weight: bold;
1058 }
1059 .rendered_html * + table {
1060 margin-top: 1em;
1061 }
1062 .rendered_html p {
1063 text-align: justify;
1064 }
1065 .rendered_html * + p {
1066 margin-top: 1em;
1067 }
1068 .rendered_html img {
1069 display: block;
1070 margin-left: auto;
1071 margin-right: auto;
1072 }
1073 .rendered_html * + img {
1074 margin-top: 1em;
1075 }
1076 div.text_cell {
1077 padding: 5px 5px 5px 0px;
1078 /* Old browsers */
1079 display: -webkit-box;
1080 -webkit-box-orient: horizontal;
1081 -webkit-box-align: stretch;
1082 display: -moz-box;
1083 -moz-box-orient: horizontal;
1084 -moz-box-align: stretch;
1085 display: box;
1086 box-orient: horizontal;
1087 box-align: stretch;
1088 /* Modern browsers */
1089 display: flex;
1090 flex-direction: row;
1091 align-items: stretch;
1092 /* Old browsers */
1093 -webkit-box-flex: 0;
1094 -moz-box-flex: 0;
1095 box-flex: 0;
1096 /* Modern browsers */
1097 flex: none;
1098 }
1099 @media (max-width: 480px) {
1100 div.text_cell > div.prompt {
1101 display: none;
1102 }
1103 }
1104 div.text_cell_render {
1105 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
1106 outline: none;
1107 resize: none;
1108 width: inherit;
1109 border-style: none;
1110 padding: 0.5em 0.5em 0.5em 0.4em;
1111 color: #000000;
1112 }
1113 a.anchor-link:link {
1114 text-decoration: none;
1115 padding: 0px 20px;
1116 visibility: hidden;
1117 }
1118 h1:hover .anchor-link,
1119 h2:hover .anchor-link,
1120 h3:hover .anchor-link,
1121 h4:hover .anchor-link,
1122 h5:hover .anchor-link,
1123 h6:hover .anchor-link {
1124 visibility: visible;
1125 }
1126 div.cell.text_cell.rendered {
1127 padding: 0px;
1128 }
1129 .widget-area {
1130 /*
1131 LESS file that styles IPython notebook widgets and the area they sit in.
1132
1133 The widget area typically looks something like this:
1134 +------------------------------------------+
1135 | widget-area |
1136 | +--------+---------------------------+ |
1137 | | prompt | widget-subarea | |
1138 | | | +--------+ +--------+ | |
1139 | | | | widget | | widget | | |
1140 | | | +--------+ +--------+ | |
1141 | +--------+---------------------------+ |
1142 +------------------------------------------+
1143 */
1144 page-break-inside: avoid;
1145 /* Old browsers */
1146 display: -webkit-box;
1147 -webkit-box-orient: horizontal;
1148 -webkit-box-align: stretch;
1149 display: -moz-box;
1150 -moz-box-orient: horizontal;
1151 -moz-box-align: stretch;
1152 display: box;
1153 box-orient: horizontal;
1154 box-align: stretch;
1155 /* Modern browsers */
1156 display: flex;
1157 flex-direction: row;
1158 align-items: stretch;
1159 /* Old browsers */
1160 -webkit-box-flex: 0;
1161 -moz-box-flex: 0;
1162 box-flex: 0;
1163 /* Modern browsers */
1164 flex: none;
1165 }
1166 .widget-area .widget-subarea {
1167 padding: 0.44em 0.4em 0.4em 1px;
1168 margin-left: 6px;
1169 box-sizing: border-box;
1170 -moz-box-sizing: border-box;
1171 -webkit-box-sizing: border-box;
1172 /* Old browsers */
1173 display: -webkit-box;
1174 -webkit-box-orient: vertical;
1175 -webkit-box-align: stretch;
1176 display: -moz-box;
1177 -moz-box-orient: vertical;
1178 -moz-box-align: stretch;
1179 display: box;
1180 box-orient: vertical;
1181 box-align: stretch;
1182 /* Modern browsers */
1183 display: flex;
1184 flex-direction: column;
1185 align-items: stretch;
1186 /* Old browsers */
1187 -webkit-box-flex: 0;
1188 -moz-box-flex: 0;
1189 box-flex: 0;
1190 /* Modern browsers */
1191 flex: none;
1192 /* Old browsers */
1193 -webkit-box-flex: 2;
1194 -moz-box-flex: 2;
1195 box-flex: 2;
1196 /* Modern browsers */
1197 flex: 2;
1198 /* Old browsers */
1199 -webkit-box-align: start;
1200 -moz-box-align: start;
1201 box-align: start;
1202 /* Modern browsers */
1203 align-items: flex-start;
1204 }
1205 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
1206 THE WIDGET AREA). */
1207 .widget-hlabel {
1208 /* Horizontal Label */
1209 min-width: 10ex;
1210 padding-right: 8px;
1211 padding-top: 5px;
1212 text-align: right;
1213 vertical-align: text-top;
1214 }
1215 .widget-vlabel {
1216 /* Vertical Label */
1217 padding-bottom: 5px;
1218 text-align: center;
1219 vertical-align: text-bottom;
1220 }
1221 .widget-hreadout {
1222 padding-left: 8px;
1223 padding-top: 5px;
1224 text-align: left;
1225 vertical-align: text-top;
1226 }
1227 .widget-vreadout {
1228 /* Vertical Label */
1229 padding-top: 5px;
1230 text-align: center;
1231 vertical-align: text-top;
1232 }
1233 .slide-track {
1234 /* Slider Track */
1235 border: 1px solid #CCCCCC;
1236 background: #FFFFFF;
1237 border-radius: 4px;
1238 /* Round the corners of the slide track */
1239 }
1240 .widget-hslider {
1241 /* Horizontal jQuery Slider
1242
1243 Both the horizontal and vertical versions of the slider are characterized
1244 by a styled div that contains an invisible jQuery slide div which
1245 contains a visible slider handle div. This is requred so we can control
1246 how the slider is drawn and 'fix' the issue where the slide handle
1247 doesn't stop at the end of the slide.
1248
1249 Both horizontal and vertical sliders have this div nesting:
1250 +------------------------------------------+
1251 | widget-(h/v)slider |
1252 | +--------+---------------------------+ |
1253 | | ui-slider | |
1254 | | +------------------+ | |
1255 | | | ui-slider-handle | | |
1256 | | +------------------+ | |
1257 | +--------+---------------------------+ |
1258 +------------------------------------------+
1259 */
1260 /* Fix the padding of the slide track so the ui-slider is sized
1261 correctly. */
1262 padding-left: 8px;
1263 padding-right: 5px;
1264 overflow: visible;
1265 /* Default size of the slider */
1266 width: 350px;
1267 height: 5px;
1268 max-height: 5px;
1269 margin-top: 13px;
1270 margin-bottom: 10px;
1271 /* Style the slider track */
1272 /* Slider Track */
1273 border: 1px solid #CCCCCC;
1274 background: #FFFFFF;
1275 border-radius: 4px;
1276 /* Round the corners of the slide track */
1277 /* Make the div a flex box (makes FF behave correctly). */
1278 /* Old browsers */
1279 display: -webkit-box;
1280 -webkit-box-orient: horizontal;
1281 -webkit-box-align: stretch;
1282 display: -moz-box;
1283 -moz-box-orient: horizontal;
1284 -moz-box-align: stretch;
1285 display: box;
1286 box-orient: horizontal;
1287 box-align: stretch;
1288 /* Modern browsers */
1289 display: flex;
1290 flex-direction: row;
1291 align-items: stretch;
1292 /* Old browsers */
1293 -webkit-box-flex: 0;
1294 -moz-box-flex: 0;
1295 box-flex: 0;
1296 /* Modern browsers */
1297 flex: none;
1298 }
1299 .widget-hslider .ui-slider {
1300 /* Inner, invisible slide div */
1301 border: 0px !important;
1302 background: none !important;
1303 /* Old browsers */
1304 display: -webkit-box;
1305 -webkit-box-orient: horizontal;
1306 -webkit-box-align: stretch;
1307 display: -moz-box;
1308 -moz-box-orient: horizontal;
1309 -moz-box-align: stretch;
1310 display: box;
1311 box-orient: horizontal;
1312 box-align: stretch;
1313 /* Modern browsers */
1314 display: flex;
1315 flex-direction: row;
1316 align-items: stretch;
1317 /* Old browsers */
1318 -webkit-box-flex: 0;
1319 -moz-box-flex: 0;
1320 box-flex: 0;
1321 /* Modern browsers */
1322 flex: none;
1323 /* Old browsers */
1324 -webkit-box-flex: 1;
1325 -moz-box-flex: 1;
1326 box-flex: 1;
1327 /* Modern browsers */
1328 flex: 1;
1329 }
1330 .widget-hslider .ui-slider .ui-slider-handle {
1331 width: 14px !important;
1332 height: 28px !important;
1333 margin-top: -8px !important;
1334 }
1335 .widget-vslider {
1336 /* Vertical jQuery Slider */
1337 /* Fix the padding of the slide track so the ui-slider is sized
1338 correctly. */
1339 padding-bottom: 8px;
1340 overflow: visible;
1341 /* Default size of the slider */
1342 width: 5px;
1343 max-width: 5px;
1344 height: 250px;
1345 margin-left: 12px;
1346 /* Style the slider track */
1347 /* Slider Track */
1348 border: 1px solid #CCCCCC;
1349 background: #FFFFFF;
1350 border-radius: 4px;
1351 /* Round the corners of the slide track */
1352 /* Make the div a flex box (makes FF behave correctly). */
1353 /* Old browsers */
1354 display: -webkit-box;
1355 -webkit-box-orient: vertical;
1356 -webkit-box-align: stretch;
1357 display: -moz-box;
1358 -moz-box-orient: vertical;
1359 -moz-box-align: stretch;
1360 display: box;
1361 box-orient: vertical;
1362 box-align: stretch;
1363 /* Modern browsers */
1364 display: flex;
1365 flex-direction: column;
1366 align-items: stretch;
1367 /* Old browsers */
1368 -webkit-box-flex: 0;
1369 -moz-box-flex: 0;
1370 box-flex: 0;
1371 /* Modern browsers */
1372 flex: none;
1373 }
1374 .widget-vslider .ui-slider {
1375 /* Inner, invisible slide div */
1376 border: 0px !important;
1377 background: none !important;
1378 margin-left: -4px;
1379 margin-top: 5px;
1380 /* Old browsers */
1381 display: -webkit-box;
1382 -webkit-box-orient: vertical;
1383 -webkit-box-align: stretch;
1384 display: -moz-box;
1385 -moz-box-orient: vertical;
1386 -moz-box-align: stretch;
1387 display: box;
1388 box-orient: vertical;
1389 box-align: stretch;
1390 /* Modern browsers */
1391 display: flex;
1392 flex-direction: column;
1393 align-items: stretch;
1394 /* Old browsers */
1395 -webkit-box-flex: 0;
1396 -moz-box-flex: 0;
1397 box-flex: 0;
1398 /* Modern browsers */
1399 flex: none;
1400 /* Old browsers */
1401 -webkit-box-flex: 1;
1402 -moz-box-flex: 1;
1403 box-flex: 1;
1404 /* Modern browsers */
1405 flex: 1;
1406 }
1407 .widget-vslider .ui-slider .ui-slider-handle {
1408 width: 28px !important;
1409 height: 14px !important;
1410 margin-left: -9px;
1411 }
1412 .widget-text {
1413 /* String Textbox - used for TextBoxView and TextAreaView */
1414 width: 350px;
1415 margin: 0px !important;
1416 }
1417 .widget-listbox {
1418 /* Listbox */
1419 width: 350px;
1420 margin-bottom: 0px;
1421 }
1422 .widget-numeric-text {
1423 /* Single Line Textbox - used for IntTextView and FloatTextView */
1424 width: 150px;
1425 margin: 0px !important;
1426 }
1427 .widget-progress {
1428 /* Progress Bar */
1429 margin-top: 6px;
1430 width: 350px;
1431 }
1432 .widget-progress .progress-bar {
1433 /* Disable progress bar animation */
1434 -webkit-transition: none;
1435 -moz-transition: none;
1436 -ms-transition: none;
1437 -o-transition: none;
1438 transition: none;
1439 }
1440 .widget-combo-btn {
1441 /* ComboBox Main Button */
1442 min-width: 125px;
1443 }
1444 .widget-box {
1445 /* The following section sets the style for the invisible div that
1446 hold widgets and their accompanying labels.
1447
1448 Looks like this:
1449 +-----------------------------+
1450 | widget-box (or similar) |
1451 | +-------+---------------+ |
1452 | | Label | Actual Widget | |
1453 | +-------+---------------+ |
1454 +-----------------------------+
1455 */
1456 margin: 5px;
1457 /* Old browsers */
1458 -webkit-box-pack: start;
1459 -moz-box-pack: start;
1460 box-pack: start;
1461 /* Modern browsers */
1462 justify-content: flex-start;
1463 /* ContainerWidget */
1464 box-sizing: border-box;
1465 -moz-box-sizing: border-box;
1466 -webkit-box-sizing: border-box;
1467 /* Old browsers */
1468 -webkit-box-align: start;
1469 -moz-box-align: start;
1470 box-align: start;
1471 /* Modern browsers */
1472 align-items: flex-start;
1473 }
1474 .widget-hbox {
1475 /* Horizontal widgets */
1476 /* The following section sets the style for the invisible div that
1477 hold widgets and their accompanying labels.
1478
1479 Looks like this:
1480 +-----------------------------+
1481 | widget-box (or similar) |
1482 | +-------+---------------+ |
1483 | | Label | Actual Widget | |
1484 | +-------+---------------+ |
1485 +-----------------------------+
1486 */
1487 margin: 5px;
1488 /* Old browsers */
1489 -webkit-box-pack: start;
1490 -moz-box-pack: start;
1491 box-pack: start;
1492 /* Modern browsers */
1493 justify-content: flex-start;
1494 /* ContainerWidget */
1495 box-sizing: border-box;
1496 -moz-box-sizing: border-box;
1497 -webkit-box-sizing: border-box;
1498 /* Old browsers */
1499 -webkit-box-align: start;
1500 -moz-box-align: start;
1501 box-align: start;
1502 /* Modern browsers */
1503 align-items: flex-start;
1504 /* Old browsers */
1505 display: -webkit-box;
1506 -webkit-box-orient: horizontal;
1507 -webkit-box-align: stretch;
1508 display: -moz-box;
1509 -moz-box-orient: horizontal;
1510 -moz-box-align: stretch;
1511 display: box;
1512 box-orient: horizontal;
1513 box-align: stretch;
1514 /* Modern browsers */
1515 display: flex;
1516 flex-direction: row;
1517 align-items: stretch;
1518 /* Old browsers */
1519 -webkit-box-flex: 0;
1520 -moz-box-flex: 0;
1521 box-flex: 0;
1522 /* Modern browsers */
1523 flex: none;
1524 }
1525 .widget-hbox-single {
1526 /* Single line horizontal widgets */
1527 /* Horizontal widgets */
1528 /* The following section sets the style for the invisible div that
1529 hold widgets and their accompanying labels.
1530
1531 Looks like this:
1532 +-----------------------------+
1533 | widget-box (or similar) |
1534 | +-------+---------------+ |
1535 | | Label | Actual Widget | |
1536 | +-------+---------------+ |
1537 +-----------------------------+
1538 */
1539 margin: 5px;
1540 /* Old browsers */
1541 -webkit-box-pack: start;
1542 -moz-box-pack: start;
1543 box-pack: start;
1544 /* Modern browsers */
1545 justify-content: flex-start;
1546 /* ContainerWidget */
1547 box-sizing: border-box;
1548 -moz-box-sizing: border-box;
1549 -webkit-box-sizing: border-box;
1550 /* Old browsers */
1551 -webkit-box-align: start;
1552 -moz-box-align: start;
1553 box-align: start;
1554 /* Modern browsers */
1555 align-items: flex-start;
1556 /* Old browsers */
1557 display: -webkit-box;
1558 -webkit-box-orient: horizontal;
1559 -webkit-box-align: stretch;
1560 display: -moz-box;
1561 -moz-box-orient: horizontal;
1562 -moz-box-align: stretch;
1563 display: box;
1564 box-orient: horizontal;
1565 box-align: stretch;
1566 /* Modern browsers */
1567 display: flex;
1568 flex-direction: row;
1569 align-items: stretch;
1570 /* Old browsers */
1571 -webkit-box-flex: 0;
1572 -moz-box-flex: 0;
1573 box-flex: 0;
1574 /* Modern browsers */
1575 flex: none;
1576 height: 30px;
1577 }
1578 .widget-hbox-single input[type="checkbox"] {
1579 margin-top: 9px;
1580 }
1581 .widget-vbox {
1582 /* Vertical widgets */
1583 /* The following section sets the style for the invisible div that
1584 hold widgets and their accompanying labels.
1585
1586 Looks like this:
1587 +-----------------------------+
1588 | widget-box (or similar) |
1589 | +-------+---------------+ |
1590 | | Label | Actual Widget | |
1591 | +-------+---------------+ |
1592 +-----------------------------+
1593 */
1594 margin: 5px;
1595 /* Old browsers */
1596 -webkit-box-pack: start;
1597 -moz-box-pack: start;
1598 box-pack: start;
1599 /* Modern browsers */
1600 justify-content: flex-start;
1601 /* ContainerWidget */
1602 box-sizing: border-box;
1603 -moz-box-sizing: border-box;
1604 -webkit-box-sizing: border-box;
1605 /* Old browsers */
1606 -webkit-box-align: start;
1607 -moz-box-align: start;
1608 box-align: start;
1609 /* Modern browsers */
1610 align-items: flex-start;
1611 /* Old browsers */
1612 display: -webkit-box;
1613 -webkit-box-orient: vertical;
1614 -webkit-box-align: stretch;
1615 display: -moz-box;
1616 -moz-box-orient: vertical;
1617 -moz-box-align: stretch;
1618 display: box;
1619 box-orient: vertical;
1620 box-align: stretch;
1621 /* Modern browsers */
1622 display: flex;
1623 flex-direction: column;
1624 align-items: stretch;
1625 /* Old browsers */
1626 -webkit-box-flex: 0;
1627 -moz-box-flex: 0;
1628 box-flex: 0;
1629 /* Modern browsers */
1630 flex: none;
1631 }
1632 .widget-vbox-single {
1633 /* For vertical slides */
1634 /* Vertical widgets */
1635 /* The following section sets the style for the invisible div that
1636 hold widgets and their accompanying labels.
1637
1638 Looks like this:
1639 +-----------------------------+
1640 | widget-box (or similar) |
1641 | +-------+---------------+ |
1642 | | Label | Actual Widget | |
1643 | +-------+---------------+ |
1644 +-----------------------------+
1645 */
1646 margin: 5px;
1647 /* Old browsers */
1648 -webkit-box-pack: start;
1649 -moz-box-pack: start;
1650 box-pack: start;
1651 /* Modern browsers */
1652 justify-content: flex-start;
1653 /* ContainerWidget */
1654 box-sizing: border-box;
1655 -moz-box-sizing: border-box;
1656 -webkit-box-sizing: border-box;
1657 /* Old browsers */
1658 -webkit-box-align: start;
1659 -moz-box-align: start;
1660 box-align: start;
1661 /* Modern browsers */
1662 align-items: flex-start;
1663 /* Old browsers */
1664 display: -webkit-box;
1665 -webkit-box-orient: vertical;
1666 -webkit-box-align: stretch;
1667 display: -moz-box;
1668 -moz-box-orient: vertical;
1669 -moz-box-align: stretch;
1670 display: box;
1671 box-orient: vertical;
1672 box-align: stretch;
1673 /* Modern browsers */
1674 display: flex;
1675 flex-direction: column;
1676 align-items: stretch;
1677 /* Old browsers */
1678 -webkit-box-flex: 0;
1679 -moz-box-flex: 0;
1680 box-flex: 0;
1681 /* Modern browsers */
1682 flex: none;
1683 width: 30px;
1684 }
1685 .widget-modal {
1686 /* ContainerWidget - ModalView */
1687 overflow: hidden;
1688 position: absolute !important;
1689 top: 0px;
1690 left: 0px;
1691 margin-left: 0px !important;
1692 }
1693 .widget-modal-body {
1694 /* ContainerWidget - ModalView Body */
1695 max-height: none !important;
1696 }
1697 .widget-container {
1698 /* ContainerWidget */
1699 box-sizing: border-box;
1700 -moz-box-sizing: border-box;
1701 -webkit-box-sizing: border-box;
1702 /* Old browsers */
1703 -webkit-box-align: start;
1704 -moz-box-align: start;
1705 box-align: start;
1706 /* Modern browsers */
1707 align-items: flex-start;
1708 }
1709 .widget-radio-box {
1710 /* Contains RadioButtonsWidget */
1711 /* Old browsers */
1712 display: -webkit-box;
1713 -webkit-box-orient: vertical;
1714 -webkit-box-align: stretch;
1715 display: -moz-box;
1716 -moz-box-orient: vertical;
1717 -moz-box-align: stretch;
1718 display: box;
1719 box-orient: vertical;
1720 box-align: stretch;
1721 /* Modern browsers */
1722 display: flex;
1723 flex-direction: column;
1724 align-items: stretch;
1725 /* Old browsers */
1726 -webkit-box-flex: 0;
1727 -moz-box-flex: 0;
1728 box-flex: 0;
1729 /* Modern browsers */
1730 flex: none;
1731 box-sizing: border-box;
1732 -moz-box-sizing: border-box;
1733 -webkit-box-sizing: border-box;
1734 padding-top: 4px;
1735 }
1736 .widget-radio-box label {
1737 margin-top: 0px;
1738 }
1739 .docked-widget-modal {
1740 /* Horizontal Label */
1741 overflow: hidden;
1742 position: relative !important;
1743 top: 0px !important;
1744 left: 0px !important;
1745 margin-left: 0px !important;
1746 }
1747 /*# sourceMappingURL=../style/ipython.min.css.map */ No newline at end of file
This diff has been collapsed as it changes many lines, (9836 lines changed) Show them Hide them
@@ -1,53 +1,9873 b''
1 /*!
1 /*!
2 *
2 *
3 * Twitter Bootstrap
3 * Twitter Bootstrap
4 *
4 *
5 *//*! normalize.css v3.0.0 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@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) ")"}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}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff !important}.navbar{display:none}.table td,.table th{background-color:#fff !important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:1.42857143;color:#000;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:18px;margin-bottom:18px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#999}h1,.h1,h2,.h2,h3,.h3{margin-top:18px;margin-bottom:9px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:9px;margin-bottom:9px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:33px}h2,.h2{font-size:27px}h3,.h3{font-size:23px}h4,.h4{font-size:17px}h5,.h5{font-size:13px}h6,.h6{font-size:12px}p{margin:0 0 9px}.lead{margin-bottom:18px;font-size:14px;font-weight:200;line-height:1.4}@media (min-width:768px){.lead{font-size:19.5px}}small,.small{font-size:85%}cite{font-style:normal}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-muted{color:#999}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:8px;margin:36px 0 18px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:9px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:18px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:9px 18px;margin:0 0 18px;font-size:inherit;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#999}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:18px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;white-space:nowrap;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}pre{display:block;padding:8.5px;margin:0 0 9px;font-size:12px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:0}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:0}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:18px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}@media (max-width:767px){.table-responsive{width:100%;margin-bottom:13.5px;overflow-y:hidden;overflow-x:scroll;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:18px;font-size:19.5px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:13px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:32px;padding:6px 12px;font-size:13px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}input[type="date"]{line-height:32px}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:18px;margin-top:10px;margin-bottom:10px;padding-left:20px}.radio label,.checkbox label{display:inline;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.input-lg{height:45px;padding:10px 16px;font-size:17px;line-height:1.33;border-radius:6px}select.input-lg{height:45px;line-height:45px}textarea.input-lg,select[multiple].input-lg{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:40px}.has-feedback .form-control-feedback{position:absolute;top:23px;right:0;display:block;width:32px;height:32px;line-height:32px;text-align:center}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#404040}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:none;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:25px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-control-static{padding-top:7px}@media (min-width:768px){.form-horizontal .control-label{text-align:right}}.form-horizontal .has-feedback .form-control-feedback{top:0;right:15px}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:13px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#428bca;font-weight:normal;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:17px;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%;padding-left:0;padding-right:0}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:13px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#428bca}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#999}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:none}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:45px;padding:10px 16px;font-size:17px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:45px;line-height:45px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:13px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:17px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:36px;margin-bottom:18px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:9px 15px;font-size:17px;line-height:18px;height:36px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:1px;margin-bottom:1px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:none}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:4.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:18px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:18px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:9px;padding-bottom:9px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}@media (min-width:768px){.navbar-left{float:left !important;float:left}.navbar-right{float:right !important;float:right}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:2px;margin-bottom:2px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{float:none;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:2px;margin-bottom:2px}.navbar-btn.btn-sm{margin-top:3px;margin-bottom:3px}.navbar-btn.btn-xs{margin-top:7px;margin-bottom:7px}.navbar-text{margin-top:9px;margin-bottom:9px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:18px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#5e5e5e}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:18px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#428bca;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#2a6496;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:17px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:18px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:#808080}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#999;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:20px;font-weight:200}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:58.5px}}.thumbnail{display:block;padding:4px;margin-bottom:18px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#000}.alert{padding:15px;margin-bottom:18px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:18px;margin-bottom:18px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:18px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{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:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,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)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image: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)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image: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)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image: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)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:18px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:15px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:18px}.panel-group .panel{margin-bottom:0;border-radius:4px;overflow:hidden}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#faebcc}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#ebccd1}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ebccd1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:19.5px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:auto;overflow-y:scroll;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);transform:translate(0, 0)}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:none}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.42857143px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{margin-top:15px;padding:14px 15px 15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:13px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left, color-stop(rgba(0,0,0,0.5) 0), color-stop(rgba(0,0,0,0.0001) 100%));background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, color-stop(rgba(0,0,0,0.0001) 0), color-stop(rgba(0,0,0,0.5) 100%));background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:none;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important;visibility:hidden !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}@media print{.hidden-print{display:none !important}}/*!
5 */
6 /*! normalize.css v3.0.0 | MIT License | git.io/normalize */
7 html {
8 font-family: sans-serif;
9 -ms-text-size-adjust: 100%;
10 -webkit-text-size-adjust: 100%;
11 }
12 body {
13 margin: 0;
14 }
15 article,
16 aside,
17 details,
18 figcaption,
19 figure,
20 footer,
21 header,
22 hgroup,
23 main,
24 nav,
25 section,
26 summary {
27 display: block;
28 }
29 audio,
30 canvas,
31 progress,
32 video {
33 display: inline-block;
34 vertical-align: baseline;
35 }
36 audio:not([controls]) {
37 display: none;
38 height: 0;
39 }
40 [hidden],
41 template {
42 display: none;
43 }
44 a {
45 background: transparent;
46 }
47 a:active,
48 a:hover {
49 outline: 0;
50 }
51 abbr[title] {
52 border-bottom: 1px dotted;
53 }
54 b,
55 strong {
56 font-weight: bold;
57 }
58 dfn {
59 font-style: italic;
60 }
61 h1 {
62 font-size: 2em;
63 margin: 0.67em 0;
64 }
65 mark {
66 background: #ff0;
67 color: #000;
68 }
69 small {
70 font-size: 80%;
71 }
72 sub,
73 sup {
74 font-size: 75%;
75 line-height: 0;
76 position: relative;
77 vertical-align: baseline;
78 }
79 sup {
80 top: -0.5em;
81 }
82 sub {
83 bottom: -0.25em;
84 }
85 img {
86 border: 0;
87 }
88 svg:not(:root) {
89 overflow: hidden;
90 }
91 figure {
92 margin: 1em 40px;
93 }
94 hr {
95 -moz-box-sizing: content-box;
96 box-sizing: content-box;
97 height: 0;
98 }
99 pre {
100 overflow: auto;
101 }
102 code,
103 kbd,
104 pre,
105 samp {
106 font-family: monospace, monospace;
107 font-size: 1em;
108 }
109 button,
110 input,
111 optgroup,
112 select,
113 textarea {
114 color: inherit;
115 font: inherit;
116 margin: 0;
117 }
118 button {
119 overflow: visible;
120 }
121 button,
122 select {
123 text-transform: none;
124 }
125 button,
126 html input[type="button"],
127 input[type="reset"],
128 input[type="submit"] {
129 -webkit-appearance: button;
130 cursor: pointer;
131 }
132 button[disabled],
133 html input[disabled] {
134 cursor: default;
135 }
136 button::-moz-focus-inner,
137 input::-moz-focus-inner {
138 border: 0;
139 padding: 0;
140 }
141 input {
142 line-height: normal;
143 }
144 input[type="checkbox"],
145 input[type="radio"] {
146 box-sizing: border-box;
147 padding: 0;
148 }
149 input[type="number"]::-webkit-inner-spin-button,
150 input[type="number"]::-webkit-outer-spin-button {
151 height: auto;
152 }
153 input[type="search"] {
154 -webkit-appearance: textfield;
155 -moz-box-sizing: content-box;
156 -webkit-box-sizing: content-box;
157 box-sizing: content-box;
158 }
159 input[type="search"]::-webkit-search-cancel-button,
160 input[type="search"]::-webkit-search-decoration {
161 -webkit-appearance: none;
162 }
163 fieldset {
164 border: 1px solid #c0c0c0;
165 margin: 0 2px;
166 padding: 0.35em 0.625em 0.75em;
167 }
168 legend {
169 border: 0;
170 padding: 0;
171 }
172 textarea {
173 overflow: auto;
174 }
175 optgroup {
176 font-weight: bold;
177 }
178 table {
179 border-collapse: collapse;
180 border-spacing: 0;
181 }
182 td,
183 th {
184 padding: 0;
185 }
186 @media print {
187 * {
188 text-shadow: none !important;
189 color: #000 !important;
190 background: transparent !important;
191 box-shadow: none !important;
192 }
193 a,
194 a:visited {
195 text-decoration: underline;
196 }
197 a[href]:after {
198 content: " (" attr(href) ")";
199 }
200 abbr[title]:after {
201 content: " (" attr(title) ")";
202 }
203 a[href^="javascript:"]:after,
204 a[href^="#"]:after {
205 content: "";
206 }
207 pre,
208 blockquote {
209 border: 1px solid #999;
210 page-break-inside: avoid;
211 }
212 thead {
213 display: table-header-group;
214 }
215 tr,
216 img {
217 page-break-inside: avoid;
218 }
219 img {
220 max-width: 100% !important;
221 }
222 p,
223 h2,
224 h3 {
225 orphans: 3;
226 widows: 3;
227 }
228 h2,
229 h3 {
230 page-break-after: avoid;
231 }
232 select {
233 background: #fff !important;
234 }
235 .navbar {
236 display: none;
237 }
238 .table td,
239 .table th {
240 background-color: #fff !important;
241 }
242 .btn > .caret,
243 .dropup > .btn > .caret {
244 border-top-color: #000 !important;
245 }
246 .label {
247 border: 1px solid #000;
248 }
249 .table {
250 border-collapse: collapse !important;
251 }
252 .table-bordered th,
253 .table-bordered td {
254 border: 1px solid #ddd !important;
255 }
256 }
257 * {
258 -webkit-box-sizing: border-box;
259 -moz-box-sizing: border-box;
260 box-sizing: border-box;
261 }
262 *:before,
263 *:after {
264 -webkit-box-sizing: border-box;
265 -moz-box-sizing: border-box;
266 box-sizing: border-box;
267 }
268 html {
269 font-size: 62.5%;
270 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
271 }
272 body {
273 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
274 font-size: 13px;
275 line-height: 1.42857143;
276 color: #000000;
277 background-color: #ffffff;
278 }
279 input,
280 button,
281 select,
282 textarea {
283 font-family: inherit;
284 font-size: inherit;
285 line-height: inherit;
286 }
287 a {
288 color: #428bca;
289 text-decoration: none;
290 }
291 a:hover,
292 a:focus {
293 color: #2a6496;
294 text-decoration: underline;
295 }
296 a:focus {
297 outline: thin dotted;
298 outline: 5px auto -webkit-focus-ring-color;
299 outline-offset: -2px;
300 }
301 figure {
302 margin: 0;
303 }
304 img {
305 vertical-align: middle;
306 }
307 .img-responsive,
308 .thumbnail > img,
309 .thumbnail a > img,
310 .carousel-inner > .item > img,
311 .carousel-inner > .item > a > img {
312 display: block;
313 max-width: 100%;
314 height: auto;
315 }
316 .img-rounded {
317 border-radius: 6px;
318 }
319 .img-thumbnail {
320 padding: 4px;
321 line-height: 1.42857143;
322 background-color: #ffffff;
323 border: 1px solid #dddddd;
324 border-radius: 4px;
325 -webkit-transition: all 0.2s ease-in-out;
326 transition: all 0.2s ease-in-out;
327 display: inline-block;
328 max-width: 100%;
329 height: auto;
330 }
331 .img-circle {
332 border-radius: 50%;
333 }
334 hr {
335 margin-top: 18px;
336 margin-bottom: 18px;
337 border: 0;
338 border-top: 1px solid #eeeeee;
339 }
340 .sr-only {
341 position: absolute;
342 width: 1px;
343 height: 1px;
344 margin: -1px;
345 padding: 0;
346 overflow: hidden;
347 clip: rect(0, 0, 0, 0);
348 border: 0;
349 }
350 h1,
351 h2,
352 h3,
353 h4,
354 h5,
355 h6,
356 .h1,
357 .h2,
358 .h3,
359 .h4,
360 .h5,
361 .h6 {
362 font-family: inherit;
363 font-weight: 500;
364 line-height: 1.1;
365 color: inherit;
366 }
367 h1 small,
368 h2 small,
369 h3 small,
370 h4 small,
371 h5 small,
372 h6 small,
373 .h1 small,
374 .h2 small,
375 .h3 small,
376 .h4 small,
377 .h5 small,
378 .h6 small,
379 h1 .small,
380 h2 .small,
381 h3 .small,
382 h4 .small,
383 h5 .small,
384 h6 .small,
385 .h1 .small,
386 .h2 .small,
387 .h3 .small,
388 .h4 .small,
389 .h5 .small,
390 .h6 .small {
391 font-weight: normal;
392 line-height: 1;
393 color: #999999;
394 }
395 h1,
396 .h1,
397 h2,
398 .h2,
399 h3,
400 .h3 {
401 margin-top: 18px;
402 margin-bottom: 9px;
403 }
404 h1 small,
405 .h1 small,
406 h2 small,
407 .h2 small,
408 h3 small,
409 .h3 small,
410 h1 .small,
411 .h1 .small,
412 h2 .small,
413 .h2 .small,
414 h3 .small,
415 .h3 .small {
416 font-size: 65%;
417 }
418 h4,
419 .h4,
420 h5,
421 .h5,
422 h6,
423 .h6 {
424 margin-top: 9px;
425 margin-bottom: 9px;
426 }
427 h4 small,
428 .h4 small,
429 h5 small,
430 .h5 small,
431 h6 small,
432 .h6 small,
433 h4 .small,
434 .h4 .small,
435 h5 .small,
436 .h5 .small,
437 h6 .small,
438 .h6 .small {
439 font-size: 75%;
440 }
441 h1,
442 .h1 {
443 font-size: 33px;
444 }
445 h2,
446 .h2 {
447 font-size: 27px;
448 }
449 h3,
450 .h3 {
451 font-size: 23px;
452 }
453 h4,
454 .h4 {
455 font-size: 17px;
456 }
457 h5,
458 .h5 {
459 font-size: 13px;
460 }
461 h6,
462 .h6 {
463 font-size: 12px;
464 }
465 p {
466 margin: 0 0 9px;
467 }
468 .lead {
469 margin-bottom: 18px;
470 font-size: 14px;
471 font-weight: 200;
472 line-height: 1.4;
473 }
474 @media (min-width: 768px) {
475 .lead {
476 font-size: 19.5px;
477 }
478 }
479 small,
480 .small {
481 font-size: 85%;
482 }
483 cite {
484 font-style: normal;
485 }
486 .text-left {
487 text-align: left;
488 }
489 .text-right {
490 text-align: right;
491 }
492 .text-center {
493 text-align: center;
494 }
495 .text-justify {
496 text-align: justify;
497 }
498 .text-muted {
499 color: #999999;
500 }
501 .text-primary {
502 color: #428bca;
503 }
504 a.text-primary:hover {
505 color: #3071a9;
506 }
507 .text-success {
508 color: #3c763d;
509 }
510 a.text-success:hover {
511 color: #2b542c;
512 }
513 .text-info {
514 color: #31708f;
515 }
516 a.text-info:hover {
517 color: #245269;
518 }
519 .text-warning {
520 color: #8a6d3b;
521 }
522 a.text-warning:hover {
523 color: #66512c;
524 }
525 .text-danger {
526 color: #a94442;
527 }
528 a.text-danger:hover {
529 color: #843534;
530 }
531 .bg-primary {
532 color: #fff;
533 background-color: #428bca;
534 }
535 a.bg-primary:hover {
536 background-color: #3071a9;
537 }
538 .bg-success {
539 background-color: #dff0d8;
540 }
541 a.bg-success:hover {
542 background-color: #c1e2b3;
543 }
544 .bg-info {
545 background-color: #d9edf7;
546 }
547 a.bg-info:hover {
548 background-color: #afd9ee;
549 }
550 .bg-warning {
551 background-color: #fcf8e3;
552 }
553 a.bg-warning:hover {
554 background-color: #f7ecb5;
555 }
556 .bg-danger {
557 background-color: #f2dede;
558 }
559 a.bg-danger:hover {
560 background-color: #e4b9b9;
561 }
562 .page-header {
563 padding-bottom: 8px;
564 margin: 36px 0 18px;
565 border-bottom: 1px solid #eeeeee;
566 }
567 ul,
568 ol {
569 margin-top: 0;
570 margin-bottom: 9px;
571 }
572 ul ul,
573 ol ul,
574 ul ol,
575 ol ol {
576 margin-bottom: 0;
577 }
578 .list-unstyled {
579 padding-left: 0;
580 list-style: none;
581 }
582 .list-inline {
583 padding-left: 0;
584 list-style: none;
585 margin-left: -5px;
586 }
587 .list-inline > li {
588 display: inline-block;
589 padding-left: 5px;
590 padding-right: 5px;
591 }
592 dl {
593 margin-top: 0;
594 margin-bottom: 18px;
595 }
596 dt,
597 dd {
598 line-height: 1.42857143;
599 }
600 dt {
601 font-weight: bold;
602 }
603 dd {
604 margin-left: 0;
605 }
606 @media (min-width: 768px) {
607 .dl-horizontal dt {
608 float: left;
609 width: 160px;
610 clear: left;
611 text-align: right;
612 overflow: hidden;
613 text-overflow: ellipsis;
614 white-space: nowrap;
615 }
616 .dl-horizontal dd {
617 margin-left: 180px;
618 }
619 }
620 abbr[title],
621 abbr[data-original-title] {
622 cursor: help;
623 border-bottom: 1px dotted #999999;
624 }
625 .initialism {
626 font-size: 90%;
627 text-transform: uppercase;
628 }
629 blockquote {
630 padding: 9px 18px;
631 margin: 0 0 18px;
632 font-size: inherit;
633 border-left: 5px solid #eeeeee;
634 }
635 blockquote p:last-child,
636 blockquote ul:last-child,
637 blockquote ol:last-child {
638 margin-bottom: 0;
639 }
640 blockquote footer,
641 blockquote small,
642 blockquote .small {
643 display: block;
644 font-size: 80%;
645 line-height: 1.42857143;
646 color: #999999;
647 }
648 blockquote footer:before,
649 blockquote small:before,
650 blockquote .small:before {
651 content: '\2014 \00A0';
652 }
653 .blockquote-reverse,
654 blockquote.pull-right {
655 padding-right: 15px;
656 padding-left: 0;
657 border-right: 5px solid #eeeeee;
658 border-left: 0;
659 text-align: right;
660 }
661 .blockquote-reverse footer:before,
662 blockquote.pull-right footer:before,
663 .blockquote-reverse small:before,
664 blockquote.pull-right small:before,
665 .blockquote-reverse .small:before,
666 blockquote.pull-right .small:before {
667 content: '';
668 }
669 .blockquote-reverse footer:after,
670 blockquote.pull-right footer:after,
671 .blockquote-reverse small:after,
672 blockquote.pull-right small:after,
673 .blockquote-reverse .small:after,
674 blockquote.pull-right .small:after {
675 content: '\00A0 \2014';
676 }
677 blockquote:before,
678 blockquote:after {
679 content: "";
680 }
681 address {
682 margin-bottom: 18px;
683 font-style: normal;
684 line-height: 1.42857143;
685 }
686 code,
687 kbd,
688 pre,
689 samp {
690 font-family: monospace;
691 }
692 code {
693 padding: 2px 4px;
694 font-size: 90%;
695 color: #c7254e;
696 background-color: #f9f2f4;
697 white-space: nowrap;
698 border-radius: 4px;
699 }
700 kbd {
701 padding: 2px 4px;
702 font-size: 90%;
703 color: #ffffff;
704 background-color: #333333;
705 border-radius: 3px;
706 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
707 }
708 pre {
709 display: block;
710 padding: 8.5px;
711 margin: 0 0 9px;
712 font-size: 12px;
713 line-height: 1.42857143;
714 word-break: break-all;
715 word-wrap: break-word;
716 color: #333333;
717 background-color: #f5f5f5;
718 border: 1px solid #cccccc;
719 border-radius: 4px;
720 }
721 pre code {
722 padding: 0;
723 font-size: inherit;
724 color: inherit;
725 white-space: pre-wrap;
726 background-color: transparent;
727 border-radius: 0;
728 }
729 .pre-scrollable {
730 max-height: 340px;
731 overflow-y: scroll;
732 }
733 .container {
734 margin-right: auto;
735 margin-left: auto;
736 padding-left: 15px;
737 padding-right: 15px;
738 }
739 @media (min-width: 768px) {
740 .container {
741 width: 750px;
742 }
743 }
744 @media (min-width: 992px) {
745 .container {
746 width: 970px;
747 }
748 }
749 @media (min-width: 1200px) {
750 .container {
751 width: 1170px;
752 }
753 }
754 .container-fluid {
755 margin-right: auto;
756 margin-left: auto;
757 padding-left: 15px;
758 padding-right: 15px;
759 }
760 .row {
761 margin-left: -15px;
762 margin-right: -15px;
763 }
764 .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
765 position: relative;
766 min-height: 1px;
767 padding-left: 15px;
768 padding-right: 15px;
769 }
770 .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
771 float: left;
772 }
773 .col-xs-12 {
774 width: 100%;
775 }
776 .col-xs-11 {
777 width: 91.66666667%;
778 }
779 .col-xs-10 {
780 width: 83.33333333%;
781 }
782 .col-xs-9 {
783 width: 75%;
784 }
785 .col-xs-8 {
786 width: 66.66666667%;
787 }
788 .col-xs-7 {
789 width: 58.33333333%;
790 }
791 .col-xs-6 {
792 width: 50%;
793 }
794 .col-xs-5 {
795 width: 41.66666667%;
796 }
797 .col-xs-4 {
798 width: 33.33333333%;
799 }
800 .col-xs-3 {
801 width: 25%;
802 }
803 .col-xs-2 {
804 width: 16.66666667%;
805 }
806 .col-xs-1 {
807 width: 8.33333333%;
808 }
809 .col-xs-pull-12 {
810 right: 100%;
811 }
812 .col-xs-pull-11 {
813 right: 91.66666667%;
814 }
815 .col-xs-pull-10 {
816 right: 83.33333333%;
817 }
818 .col-xs-pull-9 {
819 right: 75%;
820 }
821 .col-xs-pull-8 {
822 right: 66.66666667%;
823 }
824 .col-xs-pull-7 {
825 right: 58.33333333%;
826 }
827 .col-xs-pull-6 {
828 right: 50%;
829 }
830 .col-xs-pull-5 {
831 right: 41.66666667%;
832 }
833 .col-xs-pull-4 {
834 right: 33.33333333%;
835 }
836 .col-xs-pull-3 {
837 right: 25%;
838 }
839 .col-xs-pull-2 {
840 right: 16.66666667%;
841 }
842 .col-xs-pull-1 {
843 right: 8.33333333%;
844 }
845 .col-xs-pull-0 {
846 right: 0%;
847 }
848 .col-xs-push-12 {
849 left: 100%;
850 }
851 .col-xs-push-11 {
852 left: 91.66666667%;
853 }
854 .col-xs-push-10 {
855 left: 83.33333333%;
856 }
857 .col-xs-push-9 {
858 left: 75%;
859 }
860 .col-xs-push-8 {
861 left: 66.66666667%;
862 }
863 .col-xs-push-7 {
864 left: 58.33333333%;
865 }
866 .col-xs-push-6 {
867 left: 50%;
868 }
869 .col-xs-push-5 {
870 left: 41.66666667%;
871 }
872 .col-xs-push-4 {
873 left: 33.33333333%;
874 }
875 .col-xs-push-3 {
876 left: 25%;
877 }
878 .col-xs-push-2 {
879 left: 16.66666667%;
880 }
881 .col-xs-push-1 {
882 left: 8.33333333%;
883 }
884 .col-xs-push-0 {
885 left: 0%;
886 }
887 .col-xs-offset-12 {
888 margin-left: 100%;
889 }
890 .col-xs-offset-11 {
891 margin-left: 91.66666667%;
892 }
893 .col-xs-offset-10 {
894 margin-left: 83.33333333%;
895 }
896 .col-xs-offset-9 {
897 margin-left: 75%;
898 }
899 .col-xs-offset-8 {
900 margin-left: 66.66666667%;
901 }
902 .col-xs-offset-7 {
903 margin-left: 58.33333333%;
904 }
905 .col-xs-offset-6 {
906 margin-left: 50%;
907 }
908 .col-xs-offset-5 {
909 margin-left: 41.66666667%;
910 }
911 .col-xs-offset-4 {
912 margin-left: 33.33333333%;
913 }
914 .col-xs-offset-3 {
915 margin-left: 25%;
916 }
917 .col-xs-offset-2 {
918 margin-left: 16.66666667%;
919 }
920 .col-xs-offset-1 {
921 margin-left: 8.33333333%;
922 }
923 .col-xs-offset-0 {
924 margin-left: 0%;
925 }
926 @media (min-width: 768px) {
927 .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
928 float: left;
929 }
930 .col-sm-12 {
931 width: 100%;
932 }
933 .col-sm-11 {
934 width: 91.66666667%;
935 }
936 .col-sm-10 {
937 width: 83.33333333%;
938 }
939 .col-sm-9 {
940 width: 75%;
941 }
942 .col-sm-8 {
943 width: 66.66666667%;
944 }
945 .col-sm-7 {
946 width: 58.33333333%;
947 }
948 .col-sm-6 {
949 width: 50%;
950 }
951 .col-sm-5 {
952 width: 41.66666667%;
953 }
954 .col-sm-4 {
955 width: 33.33333333%;
956 }
957 .col-sm-3 {
958 width: 25%;
959 }
960 .col-sm-2 {
961 width: 16.66666667%;
962 }
963 .col-sm-1 {
964 width: 8.33333333%;
965 }
966 .col-sm-pull-12 {
967 right: 100%;
968 }
969 .col-sm-pull-11 {
970 right: 91.66666667%;
971 }
972 .col-sm-pull-10 {
973 right: 83.33333333%;
974 }
975 .col-sm-pull-9 {
976 right: 75%;
977 }
978 .col-sm-pull-8 {
979 right: 66.66666667%;
980 }
981 .col-sm-pull-7 {
982 right: 58.33333333%;
983 }
984 .col-sm-pull-6 {
985 right: 50%;
986 }
987 .col-sm-pull-5 {
988 right: 41.66666667%;
989 }
990 .col-sm-pull-4 {
991 right: 33.33333333%;
992 }
993 .col-sm-pull-3 {
994 right: 25%;
995 }
996 .col-sm-pull-2 {
997 right: 16.66666667%;
998 }
999 .col-sm-pull-1 {
1000 right: 8.33333333%;
1001 }
1002 .col-sm-pull-0 {
1003 right: 0%;
1004 }
1005 .col-sm-push-12 {
1006 left: 100%;
1007 }
1008 .col-sm-push-11 {
1009 left: 91.66666667%;
1010 }
1011 .col-sm-push-10 {
1012 left: 83.33333333%;
1013 }
1014 .col-sm-push-9 {
1015 left: 75%;
1016 }
1017 .col-sm-push-8 {
1018 left: 66.66666667%;
1019 }
1020 .col-sm-push-7 {
1021 left: 58.33333333%;
1022 }
1023 .col-sm-push-6 {
1024 left: 50%;
1025 }
1026 .col-sm-push-5 {
1027 left: 41.66666667%;
1028 }
1029 .col-sm-push-4 {
1030 left: 33.33333333%;
1031 }
1032 .col-sm-push-3 {
1033 left: 25%;
1034 }
1035 .col-sm-push-2 {
1036 left: 16.66666667%;
1037 }
1038 .col-sm-push-1 {
1039 left: 8.33333333%;
1040 }
1041 .col-sm-push-0 {
1042 left: 0%;
1043 }
1044 .col-sm-offset-12 {
1045 margin-left: 100%;
1046 }
1047 .col-sm-offset-11 {
1048 margin-left: 91.66666667%;
1049 }
1050 .col-sm-offset-10 {
1051 margin-left: 83.33333333%;
1052 }
1053 .col-sm-offset-9 {
1054 margin-left: 75%;
1055 }
1056 .col-sm-offset-8 {
1057 margin-left: 66.66666667%;
1058 }
1059 .col-sm-offset-7 {
1060 margin-left: 58.33333333%;
1061 }
1062 .col-sm-offset-6 {
1063 margin-left: 50%;
1064 }
1065 .col-sm-offset-5 {
1066 margin-left: 41.66666667%;
1067 }
1068 .col-sm-offset-4 {
1069 margin-left: 33.33333333%;
1070 }
1071 .col-sm-offset-3 {
1072 margin-left: 25%;
1073 }
1074 .col-sm-offset-2 {
1075 margin-left: 16.66666667%;
1076 }
1077 .col-sm-offset-1 {
1078 margin-left: 8.33333333%;
1079 }
1080 .col-sm-offset-0 {
1081 margin-left: 0%;
1082 }
1083 }
1084 @media (min-width: 992px) {
1085 .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
1086 float: left;
1087 }
1088 .col-md-12 {
1089 width: 100%;
1090 }
1091 .col-md-11 {
1092 width: 91.66666667%;
1093 }
1094 .col-md-10 {
1095 width: 83.33333333%;
1096 }
1097 .col-md-9 {
1098 width: 75%;
1099 }
1100 .col-md-8 {
1101 width: 66.66666667%;
1102 }
1103 .col-md-7 {
1104 width: 58.33333333%;
1105 }
1106 .col-md-6 {
1107 width: 50%;
1108 }
1109 .col-md-5 {
1110 width: 41.66666667%;
1111 }
1112 .col-md-4 {
1113 width: 33.33333333%;
1114 }
1115 .col-md-3 {
1116 width: 25%;
1117 }
1118 .col-md-2 {
1119 width: 16.66666667%;
1120 }
1121 .col-md-1 {
1122 width: 8.33333333%;
1123 }
1124 .col-md-pull-12 {
1125 right: 100%;
1126 }
1127 .col-md-pull-11 {
1128 right: 91.66666667%;
1129 }
1130 .col-md-pull-10 {
1131 right: 83.33333333%;
1132 }
1133 .col-md-pull-9 {
1134 right: 75%;
1135 }
1136 .col-md-pull-8 {
1137 right: 66.66666667%;
1138 }
1139 .col-md-pull-7 {
1140 right: 58.33333333%;
1141 }
1142 .col-md-pull-6 {
1143 right: 50%;
1144 }
1145 .col-md-pull-5 {
1146 right: 41.66666667%;
1147 }
1148 .col-md-pull-4 {
1149 right: 33.33333333%;
1150 }
1151 .col-md-pull-3 {
1152 right: 25%;
1153 }
1154 .col-md-pull-2 {
1155 right: 16.66666667%;
1156 }
1157 .col-md-pull-1 {
1158 right: 8.33333333%;
1159 }
1160 .col-md-pull-0 {
1161 right: 0%;
1162 }
1163 .col-md-push-12 {
1164 left: 100%;
1165 }
1166 .col-md-push-11 {
1167 left: 91.66666667%;
1168 }
1169 .col-md-push-10 {
1170 left: 83.33333333%;
1171 }
1172 .col-md-push-9 {
1173 left: 75%;
1174 }
1175 .col-md-push-8 {
1176 left: 66.66666667%;
1177 }
1178 .col-md-push-7 {
1179 left: 58.33333333%;
1180 }
1181 .col-md-push-6 {
1182 left: 50%;
1183 }
1184 .col-md-push-5 {
1185 left: 41.66666667%;
1186 }
1187 .col-md-push-4 {
1188 left: 33.33333333%;
1189 }
1190 .col-md-push-3 {
1191 left: 25%;
1192 }
1193 .col-md-push-2 {
1194 left: 16.66666667%;
1195 }
1196 .col-md-push-1 {
1197 left: 8.33333333%;
1198 }
1199 .col-md-push-0 {
1200 left: 0%;
1201 }
1202 .col-md-offset-12 {
1203 margin-left: 100%;
1204 }
1205 .col-md-offset-11 {
1206 margin-left: 91.66666667%;
1207 }
1208 .col-md-offset-10 {
1209 margin-left: 83.33333333%;
1210 }
1211 .col-md-offset-9 {
1212 margin-left: 75%;
1213 }
1214 .col-md-offset-8 {
1215 margin-left: 66.66666667%;
1216 }
1217 .col-md-offset-7 {
1218 margin-left: 58.33333333%;
1219 }
1220 .col-md-offset-6 {
1221 margin-left: 50%;
1222 }
1223 .col-md-offset-5 {
1224 margin-left: 41.66666667%;
1225 }
1226 .col-md-offset-4 {
1227 margin-left: 33.33333333%;
1228 }
1229 .col-md-offset-3 {
1230 margin-left: 25%;
1231 }
1232 .col-md-offset-2 {
1233 margin-left: 16.66666667%;
1234 }
1235 .col-md-offset-1 {
1236 margin-left: 8.33333333%;
1237 }
1238 .col-md-offset-0 {
1239 margin-left: 0%;
1240 }
1241 }
1242 @media (min-width: 1200px) {
1243 .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
1244 float: left;
1245 }
1246 .col-lg-12 {
1247 width: 100%;
1248 }
1249 .col-lg-11 {
1250 width: 91.66666667%;
1251 }
1252 .col-lg-10 {
1253 width: 83.33333333%;
1254 }
1255 .col-lg-9 {
1256 width: 75%;
1257 }
1258 .col-lg-8 {
1259 width: 66.66666667%;
1260 }
1261 .col-lg-7 {
1262 width: 58.33333333%;
1263 }
1264 .col-lg-6 {
1265 width: 50%;
1266 }
1267 .col-lg-5 {
1268 width: 41.66666667%;
1269 }
1270 .col-lg-4 {
1271 width: 33.33333333%;
1272 }
1273 .col-lg-3 {
1274 width: 25%;
1275 }
1276 .col-lg-2 {
1277 width: 16.66666667%;
1278 }
1279 .col-lg-1 {
1280 width: 8.33333333%;
1281 }
1282 .col-lg-pull-12 {
1283 right: 100%;
1284 }
1285 .col-lg-pull-11 {
1286 right: 91.66666667%;
1287 }
1288 .col-lg-pull-10 {
1289 right: 83.33333333%;
1290 }
1291 .col-lg-pull-9 {
1292 right: 75%;
1293 }
1294 .col-lg-pull-8 {
1295 right: 66.66666667%;
1296 }
1297 .col-lg-pull-7 {
1298 right: 58.33333333%;
1299 }
1300 .col-lg-pull-6 {
1301 right: 50%;
1302 }
1303 .col-lg-pull-5 {
1304 right: 41.66666667%;
1305 }
1306 .col-lg-pull-4 {
1307 right: 33.33333333%;
1308 }
1309 .col-lg-pull-3 {
1310 right: 25%;
1311 }
1312 .col-lg-pull-2 {
1313 right: 16.66666667%;
1314 }
1315 .col-lg-pull-1 {
1316 right: 8.33333333%;
1317 }
1318 .col-lg-pull-0 {
1319 right: 0%;
1320 }
1321 .col-lg-push-12 {
1322 left: 100%;
1323 }
1324 .col-lg-push-11 {
1325 left: 91.66666667%;
1326 }
1327 .col-lg-push-10 {
1328 left: 83.33333333%;
1329 }
1330 .col-lg-push-9 {
1331 left: 75%;
1332 }
1333 .col-lg-push-8 {
1334 left: 66.66666667%;
1335 }
1336 .col-lg-push-7 {
1337 left: 58.33333333%;
1338 }
1339 .col-lg-push-6 {
1340 left: 50%;
1341 }
1342 .col-lg-push-5 {
1343 left: 41.66666667%;
1344 }
1345 .col-lg-push-4 {
1346 left: 33.33333333%;
1347 }
1348 .col-lg-push-3 {
1349 left: 25%;
1350 }
1351 .col-lg-push-2 {
1352 left: 16.66666667%;
1353 }
1354 .col-lg-push-1 {
1355 left: 8.33333333%;
1356 }
1357 .col-lg-push-0 {
1358 left: 0%;
1359 }
1360 .col-lg-offset-12 {
1361 margin-left: 100%;
1362 }
1363 .col-lg-offset-11 {
1364 margin-left: 91.66666667%;
1365 }
1366 .col-lg-offset-10 {
1367 margin-left: 83.33333333%;
1368 }
1369 .col-lg-offset-9 {
1370 margin-left: 75%;
1371 }
1372 .col-lg-offset-8 {
1373 margin-left: 66.66666667%;
1374 }
1375 .col-lg-offset-7 {
1376 margin-left: 58.33333333%;
1377 }
1378 .col-lg-offset-6 {
1379 margin-left: 50%;
1380 }
1381 .col-lg-offset-5 {
1382 margin-left: 41.66666667%;
1383 }
1384 .col-lg-offset-4 {
1385 margin-left: 33.33333333%;
1386 }
1387 .col-lg-offset-3 {
1388 margin-left: 25%;
1389 }
1390 .col-lg-offset-2 {
1391 margin-left: 16.66666667%;
1392 }
1393 .col-lg-offset-1 {
1394 margin-left: 8.33333333%;
1395 }
1396 .col-lg-offset-0 {
1397 margin-left: 0%;
1398 }
1399 }
1400 table {
1401 max-width: 100%;
1402 background-color: transparent;
1403 }
1404 th {
1405 text-align: left;
1406 }
1407 .table {
1408 width: 100%;
1409 margin-bottom: 18px;
1410 }
1411 .table > thead > tr > th,
1412 .table > tbody > tr > th,
1413 .table > tfoot > tr > th,
1414 .table > thead > tr > td,
1415 .table > tbody > tr > td,
1416 .table > tfoot > tr > td {
1417 padding: 8px;
1418 line-height: 1.42857143;
1419 vertical-align: top;
1420 border-top: 1px solid #dddddd;
1421 }
1422 .table > thead > tr > th {
1423 vertical-align: bottom;
1424 border-bottom: 2px solid #dddddd;
1425 }
1426 .table > caption + thead > tr:first-child > th,
1427 .table > colgroup + thead > tr:first-child > th,
1428 .table > thead:first-child > tr:first-child > th,
1429 .table > caption + thead > tr:first-child > td,
1430 .table > colgroup + thead > tr:first-child > td,
1431 .table > thead:first-child > tr:first-child > td {
1432 border-top: 0;
1433 }
1434 .table > tbody + tbody {
1435 border-top: 2px solid #dddddd;
1436 }
1437 .table .table {
1438 background-color: #ffffff;
1439 }
1440 .table-condensed > thead > tr > th,
1441 .table-condensed > tbody > tr > th,
1442 .table-condensed > tfoot > tr > th,
1443 .table-condensed > thead > tr > td,
1444 .table-condensed > tbody > tr > td,
1445 .table-condensed > tfoot > tr > td {
1446 padding: 5px;
1447 }
1448 .table-bordered {
1449 border: 1px solid #dddddd;
1450 }
1451 .table-bordered > thead > tr > th,
1452 .table-bordered > tbody > tr > th,
1453 .table-bordered > tfoot > tr > th,
1454 .table-bordered > thead > tr > td,
1455 .table-bordered > tbody > tr > td,
1456 .table-bordered > tfoot > tr > td {
1457 border: 1px solid #dddddd;
1458 }
1459 .table-bordered > thead > tr > th,
1460 .table-bordered > thead > tr > td {
1461 border-bottom-width: 2px;
1462 }
1463 .table-striped > tbody > tr:nth-child(odd) > td,
1464 .table-striped > tbody > tr:nth-child(odd) > th {
1465 background-color: #f9f9f9;
1466 }
1467 .table-hover > tbody > tr:hover > td,
1468 .table-hover > tbody > tr:hover > th {
1469 background-color: #f5f5f5;
1470 }
1471 table col[class*="col-"] {
1472 position: static;
1473 float: none;
1474 display: table-column;
1475 }
1476 table td[class*="col-"],
1477 table th[class*="col-"] {
1478 position: static;
1479 float: none;
1480 display: table-cell;
1481 }
1482 .table > thead > tr > td.active,
1483 .table > tbody > tr > td.active,
1484 .table > tfoot > tr > td.active,
1485 .table > thead > tr > th.active,
1486 .table > tbody > tr > th.active,
1487 .table > tfoot > tr > th.active,
1488 .table > thead > tr.active > td,
1489 .table > tbody > tr.active > td,
1490 .table > tfoot > tr.active > td,
1491 .table > thead > tr.active > th,
1492 .table > tbody > tr.active > th,
1493 .table > tfoot > tr.active > th {
1494 background-color: #f5f5f5;
1495 }
1496 .table-hover > tbody > tr > td.active:hover,
1497 .table-hover > tbody > tr > th.active:hover,
1498 .table-hover > tbody > tr.active:hover > td,
1499 .table-hover > tbody > tr.active:hover > th {
1500 background-color: #e8e8e8;
1501 }
1502 .table > thead > tr > td.success,
1503 .table > tbody > tr > td.success,
1504 .table > tfoot > tr > td.success,
1505 .table > thead > tr > th.success,
1506 .table > tbody > tr > th.success,
1507 .table > tfoot > tr > th.success,
1508 .table > thead > tr.success > td,
1509 .table > tbody > tr.success > td,
1510 .table > tfoot > tr.success > td,
1511 .table > thead > tr.success > th,
1512 .table > tbody > tr.success > th,
1513 .table > tfoot > tr.success > th {
1514 background-color: #dff0d8;
1515 }
1516 .table-hover > tbody > tr > td.success:hover,
1517 .table-hover > tbody > tr > th.success:hover,
1518 .table-hover > tbody > tr.success:hover > td,
1519 .table-hover > tbody > tr.success:hover > th {
1520 background-color: #d0e9c6;
1521 }
1522 .table > thead > tr > td.info,
1523 .table > tbody > tr > td.info,
1524 .table > tfoot > tr > td.info,
1525 .table > thead > tr > th.info,
1526 .table > tbody > tr > th.info,
1527 .table > tfoot > tr > th.info,
1528 .table > thead > tr.info > td,
1529 .table > tbody > tr.info > td,
1530 .table > tfoot > tr.info > td,
1531 .table > thead > tr.info > th,
1532 .table > tbody > tr.info > th,
1533 .table > tfoot > tr.info > th {
1534 background-color: #d9edf7;
1535 }
1536 .table-hover > tbody > tr > td.info:hover,
1537 .table-hover > tbody > tr > th.info:hover,
1538 .table-hover > tbody > tr.info:hover > td,
1539 .table-hover > tbody > tr.info:hover > th {
1540 background-color: #c4e3f3;
1541 }
1542 .table > thead > tr > td.warning,
1543 .table > tbody > tr > td.warning,
1544 .table > tfoot > tr > td.warning,
1545 .table > thead > tr > th.warning,
1546 .table > tbody > tr > th.warning,
1547 .table > tfoot > tr > th.warning,
1548 .table > thead > tr.warning > td,
1549 .table > tbody > tr.warning > td,
1550 .table > tfoot > tr.warning > td,
1551 .table > thead > tr.warning > th,
1552 .table > tbody > tr.warning > th,
1553 .table > tfoot > tr.warning > th {
1554 background-color: #fcf8e3;
1555 }
1556 .table-hover > tbody > tr > td.warning:hover,
1557 .table-hover > tbody > tr > th.warning:hover,
1558 .table-hover > tbody > tr.warning:hover > td,
1559 .table-hover > tbody > tr.warning:hover > th {
1560 background-color: #faf2cc;
1561 }
1562 .table > thead > tr > td.danger,
1563 .table > tbody > tr > td.danger,
1564 .table > tfoot > tr > td.danger,
1565 .table > thead > tr > th.danger,
1566 .table > tbody > tr > th.danger,
1567 .table > tfoot > tr > th.danger,
1568 .table > thead > tr.danger > td,
1569 .table > tbody > tr.danger > td,
1570 .table > tfoot > tr.danger > td,
1571 .table > thead > tr.danger > th,
1572 .table > tbody > tr.danger > th,
1573 .table > tfoot > tr.danger > th {
1574 background-color: #f2dede;
1575 }
1576 .table-hover > tbody > tr > td.danger:hover,
1577 .table-hover > tbody > tr > th.danger:hover,
1578 .table-hover > tbody > tr.danger:hover > td,
1579 .table-hover > tbody > tr.danger:hover > th {
1580 background-color: #ebcccc;
1581 }
1582 @media (max-width: 767px) {
1583 .table-responsive {
1584 width: 100%;
1585 margin-bottom: 13.5px;
1586 overflow-y: hidden;
1587 overflow-x: scroll;
1588 -ms-overflow-style: -ms-autohiding-scrollbar;
1589 border: 1px solid #dddddd;
1590 -webkit-overflow-scrolling: touch;
1591 }
1592 .table-responsive > .table {
1593 margin-bottom: 0;
1594 }
1595 .table-responsive > .table > thead > tr > th,
1596 .table-responsive > .table > tbody > tr > th,
1597 .table-responsive > .table > tfoot > tr > th,
1598 .table-responsive > .table > thead > tr > td,
1599 .table-responsive > .table > tbody > tr > td,
1600 .table-responsive > .table > tfoot > tr > td {
1601 white-space: nowrap;
1602 }
1603 .table-responsive > .table-bordered {
1604 border: 0;
1605 }
1606 .table-responsive > .table-bordered > thead > tr > th:first-child,
1607 .table-responsive > .table-bordered > tbody > tr > th:first-child,
1608 .table-responsive > .table-bordered > tfoot > tr > th:first-child,
1609 .table-responsive > .table-bordered > thead > tr > td:first-child,
1610 .table-responsive > .table-bordered > tbody > tr > td:first-child,
1611 .table-responsive > .table-bordered > tfoot > tr > td:first-child {
1612 border-left: 0;
1613 }
1614 .table-responsive > .table-bordered > thead > tr > th:last-child,
1615 .table-responsive > .table-bordered > tbody > tr > th:last-child,
1616 .table-responsive > .table-bordered > tfoot > tr > th:last-child,
1617 .table-responsive > .table-bordered > thead > tr > td:last-child,
1618 .table-responsive > .table-bordered > tbody > tr > td:last-child,
1619 .table-responsive > .table-bordered > tfoot > tr > td:last-child {
1620 border-right: 0;
1621 }
1622 .table-responsive > .table-bordered > tbody > tr:last-child > th,
1623 .table-responsive > .table-bordered > tfoot > tr:last-child > th,
1624 .table-responsive > .table-bordered > tbody > tr:last-child > td,
1625 .table-responsive > .table-bordered > tfoot > tr:last-child > td {
1626 border-bottom: 0;
1627 }
1628 }
1629 fieldset {
1630 padding: 0;
1631 margin: 0;
1632 border: 0;
1633 min-width: 0;
1634 }
1635 legend {
1636 display: block;
1637 width: 100%;
1638 padding: 0;
1639 margin-bottom: 18px;
1640 font-size: 19.5px;
1641 line-height: inherit;
1642 color: #333333;
1643 border: 0;
1644 border-bottom: 1px solid #e5e5e5;
1645 }
1646 label {
1647 display: inline-block;
1648 margin-bottom: 5px;
1649 font-weight: bold;
1650 }
1651 input[type="search"] {
1652 -webkit-box-sizing: border-box;
1653 -moz-box-sizing: border-box;
1654 box-sizing: border-box;
1655 }
1656 input[type="radio"],
1657 input[type="checkbox"] {
1658 margin: 4px 0 0;
1659 margin-top: 1px \9;
1660 /* IE8-9 */
1661 line-height: normal;
1662 }
1663 input[type="file"] {
1664 display: block;
1665 }
1666 input[type="range"] {
1667 display: block;
1668 width: 100%;
1669 }
1670 select[multiple],
1671 select[size] {
1672 height: auto;
1673 }
1674 input[type="file"]:focus,
1675 input[type="radio"]:focus,
1676 input[type="checkbox"]:focus {
1677 outline: thin dotted;
1678 outline: 5px auto -webkit-focus-ring-color;
1679 outline-offset: -2px;
1680 }
1681 output {
1682 display: block;
1683 padding-top: 7px;
1684 font-size: 13px;
1685 line-height: 1.42857143;
1686 color: #555555;
1687 }
1688 .form-control {
1689 display: block;
1690 width: 100%;
1691 height: 32px;
1692 padding: 6px 12px;
1693 font-size: 13px;
1694 line-height: 1.42857143;
1695 color: #555555;
1696 background-color: #ffffff;
1697 background-image: none;
1698 border: 1px solid #cccccc;
1699 border-radius: 4px;
1700 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1701 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1702 -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
1703 transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
1704 }
1705 .form-control:focus {
1706 border-color: #66afe9;
1707 outline: 0;
1708 -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
1709 box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
1710 }
1711 .form-control::-moz-placeholder {
1712 color: #999999;
1713 opacity: 1;
1714 }
1715 .form-control:-ms-input-placeholder {
1716 color: #999999;
1717 }
1718 .form-control::-webkit-input-placeholder {
1719 color: #999999;
1720 }
1721 .form-control[disabled],
1722 .form-control[readonly],
1723 fieldset[disabled] .form-control {
1724 cursor: not-allowed;
1725 background-color: #eeeeee;
1726 opacity: 1;
1727 }
1728 textarea.form-control {
1729 height: auto;
1730 }
1731 input[type="search"] {
1732 -webkit-appearance: none;
1733 }
1734 input[type="date"] {
1735 line-height: 32px;
1736 }
1737 .form-group {
1738 margin-bottom: 15px;
1739 }
1740 .radio,
1741 .checkbox {
1742 display: block;
1743 min-height: 18px;
1744 margin-top: 10px;
1745 margin-bottom: 10px;
1746 padding-left: 20px;
1747 }
1748 .radio label,
1749 .checkbox label {
1750 display: inline;
1751 font-weight: normal;
1752 cursor: pointer;
1753 }
1754 .radio input[type="radio"],
1755 .radio-inline input[type="radio"],
1756 .checkbox input[type="checkbox"],
1757 .checkbox-inline input[type="checkbox"] {
1758 float: left;
1759 margin-left: -20px;
1760 }
1761 .radio + .radio,
1762 .checkbox + .checkbox {
1763 margin-top: -5px;
1764 }
1765 .radio-inline,
1766 .checkbox-inline {
1767 display: inline-block;
1768 padding-left: 20px;
1769 margin-bottom: 0;
1770 vertical-align: middle;
1771 font-weight: normal;
1772 cursor: pointer;
1773 }
1774 .radio-inline + .radio-inline,
1775 .checkbox-inline + .checkbox-inline {
1776 margin-top: 0;
1777 margin-left: 10px;
1778 }
1779 input[type="radio"][disabled],
1780 input[type="checkbox"][disabled],
1781 .radio[disabled],
1782 .radio-inline[disabled],
1783 .checkbox[disabled],
1784 .checkbox-inline[disabled],
1785 fieldset[disabled] input[type="radio"],
1786 fieldset[disabled] input[type="checkbox"],
1787 fieldset[disabled] .radio,
1788 fieldset[disabled] .radio-inline,
1789 fieldset[disabled] .checkbox,
1790 fieldset[disabled] .checkbox-inline {
1791 cursor: not-allowed;
1792 }
1793 .input-sm {
1794 height: 30px;
1795 padding: 5px 10px;
1796 font-size: 12px;
1797 line-height: 1.5;
1798 border-radius: 3px;
1799 }
1800 select.input-sm {
1801 height: 30px;
1802 line-height: 30px;
1803 }
1804 textarea.input-sm,
1805 select[multiple].input-sm {
1806 height: auto;
1807 }
1808 .input-lg {
1809 height: 45px;
1810 padding: 10px 16px;
1811 font-size: 17px;
1812 line-height: 1.33;
1813 border-radius: 6px;
1814 }
1815 select.input-lg {
1816 height: 45px;
1817 line-height: 45px;
1818 }
1819 textarea.input-lg,
1820 select[multiple].input-lg {
1821 height: auto;
1822 }
1823 .has-feedback {
1824 position: relative;
1825 }
1826 .has-feedback .form-control {
1827 padding-right: 40px;
1828 }
1829 .has-feedback .form-control-feedback {
1830 position: absolute;
1831 top: 23px;
1832 right: 0;
1833 display: block;
1834 width: 32px;
1835 height: 32px;
1836 line-height: 32px;
1837 text-align: center;
1838 }
1839 .has-success .help-block,
1840 .has-success .control-label,
1841 .has-success .radio,
1842 .has-success .checkbox,
1843 .has-success .radio-inline,
1844 .has-success .checkbox-inline {
1845 color: #3c763d;
1846 }
1847 .has-success .form-control {
1848 border-color: #3c763d;
1849 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1850 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1851 }
1852 .has-success .form-control:focus {
1853 border-color: #2b542c;
1854 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1855 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1856 }
1857 .has-success .input-group-addon {
1858 color: #3c763d;
1859 border-color: #3c763d;
1860 background-color: #dff0d8;
1861 }
1862 .has-success .form-control-feedback {
1863 color: #3c763d;
1864 }
1865 .has-warning .help-block,
1866 .has-warning .control-label,
1867 .has-warning .radio,
1868 .has-warning .checkbox,
1869 .has-warning .radio-inline,
1870 .has-warning .checkbox-inline {
1871 color: #8a6d3b;
1872 }
1873 .has-warning .form-control {
1874 border-color: #8a6d3b;
1875 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1876 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1877 }
1878 .has-warning .form-control:focus {
1879 border-color: #66512c;
1880 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1881 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1882 }
1883 .has-warning .input-group-addon {
1884 color: #8a6d3b;
1885 border-color: #8a6d3b;
1886 background-color: #fcf8e3;
1887 }
1888 .has-warning .form-control-feedback {
1889 color: #8a6d3b;
1890 }
1891 .has-error .help-block,
1892 .has-error .control-label,
1893 .has-error .radio,
1894 .has-error .checkbox,
1895 .has-error .radio-inline,
1896 .has-error .checkbox-inline {
1897 color: #a94442;
1898 }
1899 .has-error .form-control {
1900 border-color: #a94442;
1901 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1902 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1903 }
1904 .has-error .form-control:focus {
1905 border-color: #843534;
1906 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1907 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1908 }
1909 .has-error .input-group-addon {
1910 color: #a94442;
1911 border-color: #a94442;
1912 background-color: #f2dede;
1913 }
1914 .has-error .form-control-feedback {
1915 color: #a94442;
1916 }
1917 .form-control-static {
1918 margin-bottom: 0;
1919 }
1920 .help-block {
1921 display: block;
1922 margin-top: 5px;
1923 margin-bottom: 10px;
1924 color: #404040;
1925 }
1926 @media (min-width: 768px) {
1927 .form-inline .form-group {
1928 display: inline-block;
1929 margin-bottom: 0;
1930 vertical-align: middle;
1931 }
1932 .form-inline .form-control {
1933 display: inline-block;
1934 width: auto;
1935 vertical-align: middle;
1936 }
1937 .form-inline .input-group > .form-control {
1938 width: 100%;
1939 }
1940 .form-inline .control-label {
1941 margin-bottom: 0;
1942 vertical-align: middle;
1943 }
1944 .form-inline .radio,
1945 .form-inline .checkbox {
1946 display: inline-block;
1947 margin-top: 0;
1948 margin-bottom: 0;
1949 padding-left: 0;
1950 vertical-align: middle;
1951 }
1952 .form-inline .radio input[type="radio"],
1953 .form-inline .checkbox input[type="checkbox"] {
1954 float: none;
1955 margin-left: 0;
1956 }
1957 .form-inline .has-feedback .form-control-feedback {
1958 top: 0;
1959 }
1960 }
1961 .form-horizontal .control-label,
1962 .form-horizontal .radio,
1963 .form-horizontal .checkbox,
1964 .form-horizontal .radio-inline,
1965 .form-horizontal .checkbox-inline {
1966 margin-top: 0;
1967 margin-bottom: 0;
1968 padding-top: 7px;
1969 }
1970 .form-horizontal .radio,
1971 .form-horizontal .checkbox {
1972 min-height: 25px;
1973 }
1974 .form-horizontal .form-group {
1975 margin-left: -15px;
1976 margin-right: -15px;
1977 }
1978 .form-horizontal .form-control-static {
1979 padding-top: 7px;
1980 }
1981 @media (min-width: 768px) {
1982 .form-horizontal .control-label {
1983 text-align: right;
1984 }
1985 }
1986 .form-horizontal .has-feedback .form-control-feedback {
1987 top: 0;
1988 right: 15px;
1989 }
1990 .btn {
1991 display: inline-block;
1992 margin-bottom: 0;
1993 font-weight: normal;
1994 text-align: center;
1995 vertical-align: middle;
1996 cursor: pointer;
1997 background-image: none;
1998 border: 1px solid transparent;
1999 white-space: nowrap;
2000 padding: 6px 12px;
2001 font-size: 13px;
2002 line-height: 1.42857143;
2003 border-radius: 4px;
2004 -webkit-user-select: none;
2005 -moz-user-select: none;
2006 -ms-user-select: none;
2007 user-select: none;
2008 }
2009 .btn:focus,
2010 .btn:active:focus,
2011 .btn.active:focus {
2012 outline: thin dotted;
2013 outline: 5px auto -webkit-focus-ring-color;
2014 outline-offset: -2px;
2015 }
2016 .btn:hover,
2017 .btn:focus {
2018 color: #333333;
2019 text-decoration: none;
2020 }
2021 .btn:active,
2022 .btn.active {
2023 outline: 0;
2024 background-image: none;
2025 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2026 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2027 }
2028 .btn.disabled,
2029 .btn[disabled],
2030 fieldset[disabled] .btn {
2031 cursor: not-allowed;
2032 pointer-events: none;
2033 opacity: 0.65;
2034 filter: alpha(opacity=65);
2035 -webkit-box-shadow: none;
2036 box-shadow: none;
2037 }
2038 .btn-default {
2039 color: #333333;
2040 background-color: #ffffff;
2041 border-color: #cccccc;
2042 }
2043 .btn-default:hover,
2044 .btn-default:focus,
2045 .btn-default:active,
2046 .btn-default.active,
2047 .open .dropdown-toggle.btn-default {
2048 color: #333333;
2049 background-color: #ebebeb;
2050 border-color: #adadad;
2051 }
2052 .btn-default:active,
2053 .btn-default.active,
2054 .open .dropdown-toggle.btn-default {
2055 background-image: none;
2056 }
2057 .btn-default.disabled,
2058 .btn-default[disabled],
2059 fieldset[disabled] .btn-default,
2060 .btn-default.disabled:hover,
2061 .btn-default[disabled]:hover,
2062 fieldset[disabled] .btn-default:hover,
2063 .btn-default.disabled:focus,
2064 .btn-default[disabled]:focus,
2065 fieldset[disabled] .btn-default:focus,
2066 .btn-default.disabled:active,
2067 .btn-default[disabled]:active,
2068 fieldset[disabled] .btn-default:active,
2069 .btn-default.disabled.active,
2070 .btn-default[disabled].active,
2071 fieldset[disabled] .btn-default.active {
2072 background-color: #ffffff;
2073 border-color: #cccccc;
2074 }
2075 .btn-default .badge {
2076 color: #ffffff;
2077 background-color: #333333;
2078 }
2079 .btn-primary {
2080 color: #ffffff;
2081 background-color: #428bca;
2082 border-color: #357ebd;
2083 }
2084 .btn-primary:hover,
2085 .btn-primary:focus,
2086 .btn-primary:active,
2087 .btn-primary.active,
2088 .open .dropdown-toggle.btn-primary {
2089 color: #ffffff;
2090 background-color: #3276b1;
2091 border-color: #285e8e;
2092 }
2093 .btn-primary:active,
2094 .btn-primary.active,
2095 .open .dropdown-toggle.btn-primary {
2096 background-image: none;
2097 }
2098 .btn-primary.disabled,
2099 .btn-primary[disabled],
2100 fieldset[disabled] .btn-primary,
2101 .btn-primary.disabled:hover,
2102 .btn-primary[disabled]:hover,
2103 fieldset[disabled] .btn-primary:hover,
2104 .btn-primary.disabled:focus,
2105 .btn-primary[disabled]:focus,
2106 fieldset[disabled] .btn-primary:focus,
2107 .btn-primary.disabled:active,
2108 .btn-primary[disabled]:active,
2109 fieldset[disabled] .btn-primary:active,
2110 .btn-primary.disabled.active,
2111 .btn-primary[disabled].active,
2112 fieldset[disabled] .btn-primary.active {
2113 background-color: #428bca;
2114 border-color: #357ebd;
2115 }
2116 .btn-primary .badge {
2117 color: #428bca;
2118 background-color: #ffffff;
2119 }
2120 .btn-success {
2121 color: #ffffff;
2122 background-color: #5cb85c;
2123 border-color: #4cae4c;
2124 }
2125 .btn-success:hover,
2126 .btn-success:focus,
2127 .btn-success:active,
2128 .btn-success.active,
2129 .open .dropdown-toggle.btn-success {
2130 color: #ffffff;
2131 background-color: #47a447;
2132 border-color: #398439;
2133 }
2134 .btn-success:active,
2135 .btn-success.active,
2136 .open .dropdown-toggle.btn-success {
2137 background-image: none;
2138 }
2139 .btn-success.disabled,
2140 .btn-success[disabled],
2141 fieldset[disabled] .btn-success,
2142 .btn-success.disabled:hover,
2143 .btn-success[disabled]:hover,
2144 fieldset[disabled] .btn-success:hover,
2145 .btn-success.disabled:focus,
2146 .btn-success[disabled]:focus,
2147 fieldset[disabled] .btn-success:focus,
2148 .btn-success.disabled:active,
2149 .btn-success[disabled]:active,
2150 fieldset[disabled] .btn-success:active,
2151 .btn-success.disabled.active,
2152 .btn-success[disabled].active,
2153 fieldset[disabled] .btn-success.active {
2154 background-color: #5cb85c;
2155 border-color: #4cae4c;
2156 }
2157 .btn-success .badge {
2158 color: #5cb85c;
2159 background-color: #ffffff;
2160 }
2161 .btn-info {
2162 color: #ffffff;
2163 background-color: #5bc0de;
2164 border-color: #46b8da;
2165 }
2166 .btn-info:hover,
2167 .btn-info:focus,
2168 .btn-info:active,
2169 .btn-info.active,
2170 .open .dropdown-toggle.btn-info {
2171 color: #ffffff;
2172 background-color: #39b3d7;
2173 border-color: #269abc;
2174 }
2175 .btn-info:active,
2176 .btn-info.active,
2177 .open .dropdown-toggle.btn-info {
2178 background-image: none;
2179 }
2180 .btn-info.disabled,
2181 .btn-info[disabled],
2182 fieldset[disabled] .btn-info,
2183 .btn-info.disabled:hover,
2184 .btn-info[disabled]:hover,
2185 fieldset[disabled] .btn-info:hover,
2186 .btn-info.disabled:focus,
2187 .btn-info[disabled]:focus,
2188 fieldset[disabled] .btn-info:focus,
2189 .btn-info.disabled:active,
2190 .btn-info[disabled]:active,
2191 fieldset[disabled] .btn-info:active,
2192 .btn-info.disabled.active,
2193 .btn-info[disabled].active,
2194 fieldset[disabled] .btn-info.active {
2195 background-color: #5bc0de;
2196 border-color: #46b8da;
2197 }
2198 .btn-info .badge {
2199 color: #5bc0de;
2200 background-color: #ffffff;
2201 }
2202 .btn-warning {
2203 color: #ffffff;
2204 background-color: #f0ad4e;
2205 border-color: #eea236;
2206 }
2207 .btn-warning:hover,
2208 .btn-warning:focus,
2209 .btn-warning:active,
2210 .btn-warning.active,
2211 .open .dropdown-toggle.btn-warning {
2212 color: #ffffff;
2213 background-color: #ed9c28;
2214 border-color: #d58512;
2215 }
2216 .btn-warning:active,
2217 .btn-warning.active,
2218 .open .dropdown-toggle.btn-warning {
2219 background-image: none;
2220 }
2221 .btn-warning.disabled,
2222 .btn-warning[disabled],
2223 fieldset[disabled] .btn-warning,
2224 .btn-warning.disabled:hover,
2225 .btn-warning[disabled]:hover,
2226 fieldset[disabled] .btn-warning:hover,
2227 .btn-warning.disabled:focus,
2228 .btn-warning[disabled]:focus,
2229 fieldset[disabled] .btn-warning:focus,
2230 .btn-warning.disabled:active,
2231 .btn-warning[disabled]:active,
2232 fieldset[disabled] .btn-warning:active,
2233 .btn-warning.disabled.active,
2234 .btn-warning[disabled].active,
2235 fieldset[disabled] .btn-warning.active {
2236 background-color: #f0ad4e;
2237 border-color: #eea236;
2238 }
2239 .btn-warning .badge {
2240 color: #f0ad4e;
2241 background-color: #ffffff;
2242 }
2243 .btn-danger {
2244 color: #ffffff;
2245 background-color: #d9534f;
2246 border-color: #d43f3a;
2247 }
2248 .btn-danger:hover,
2249 .btn-danger:focus,
2250 .btn-danger:active,
2251 .btn-danger.active,
2252 .open .dropdown-toggle.btn-danger {
2253 color: #ffffff;
2254 background-color: #d2322d;
2255 border-color: #ac2925;
2256 }
2257 .btn-danger:active,
2258 .btn-danger.active,
2259 .open .dropdown-toggle.btn-danger {
2260 background-image: none;
2261 }
2262 .btn-danger.disabled,
2263 .btn-danger[disabled],
2264 fieldset[disabled] .btn-danger,
2265 .btn-danger.disabled:hover,
2266 .btn-danger[disabled]:hover,
2267 fieldset[disabled] .btn-danger:hover,
2268 .btn-danger.disabled:focus,
2269 .btn-danger[disabled]:focus,
2270 fieldset[disabled] .btn-danger:focus,
2271 .btn-danger.disabled:active,
2272 .btn-danger[disabled]:active,
2273 fieldset[disabled] .btn-danger:active,
2274 .btn-danger.disabled.active,
2275 .btn-danger[disabled].active,
2276 fieldset[disabled] .btn-danger.active {
2277 background-color: #d9534f;
2278 border-color: #d43f3a;
2279 }
2280 .btn-danger .badge {
2281 color: #d9534f;
2282 background-color: #ffffff;
2283 }
2284 .btn-link {
2285 color: #428bca;
2286 font-weight: normal;
2287 cursor: pointer;
2288 border-radius: 0;
2289 }
2290 .btn-link,
2291 .btn-link:active,
2292 .btn-link[disabled],
2293 fieldset[disabled] .btn-link {
2294 background-color: transparent;
2295 -webkit-box-shadow: none;
2296 box-shadow: none;
2297 }
2298 .btn-link,
2299 .btn-link:hover,
2300 .btn-link:focus,
2301 .btn-link:active {
2302 border-color: transparent;
2303 }
2304 .btn-link:hover,
2305 .btn-link:focus {
2306 color: #2a6496;
2307 text-decoration: underline;
2308 background-color: transparent;
2309 }
2310 .btn-link[disabled]:hover,
2311 fieldset[disabled] .btn-link:hover,
2312 .btn-link[disabled]:focus,
2313 fieldset[disabled] .btn-link:focus {
2314 color: #999999;
2315 text-decoration: none;
2316 }
2317 .btn-lg,
2318 .btn-group-lg > .btn {
2319 padding: 10px 16px;
2320 font-size: 17px;
2321 line-height: 1.33;
2322 border-radius: 6px;
2323 }
2324 .btn-sm,
2325 .btn-group-sm > .btn {
2326 padding: 5px 10px;
2327 font-size: 12px;
2328 line-height: 1.5;
2329 border-radius: 3px;
2330 }
2331 .btn-xs,
2332 .btn-group-xs > .btn {
2333 padding: 1px 5px;
2334 font-size: 12px;
2335 line-height: 1.5;
2336 border-radius: 3px;
2337 }
2338 .btn-block {
2339 display: block;
2340 width: 100%;
2341 padding-left: 0;
2342 padding-right: 0;
2343 }
2344 .btn-block + .btn-block {
2345 margin-top: 5px;
2346 }
2347 input[type="submit"].btn-block,
2348 input[type="reset"].btn-block,
2349 input[type="button"].btn-block {
2350 width: 100%;
2351 }
2352 .fade {
2353 opacity: 0;
2354 -webkit-transition: opacity 0.15s linear;
2355 transition: opacity 0.15s linear;
2356 }
2357 .fade.in {
2358 opacity: 1;
2359 }
2360 .collapse {
2361 display: none;
2362 }
2363 .collapse.in {
2364 display: block;
2365 }
2366 .collapsing {
2367 position: relative;
2368 height: 0;
2369 overflow: hidden;
2370 -webkit-transition: height 0.35s ease;
2371 transition: height 0.35s ease;
2372 }
2373 @font-face {
2374 font-family: 'Glyphicons Halflings';
2375 src: url('../fonts/glyphicons-halflings-regular.eot');
2376 src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
2377 }
2378 .glyphicon {
2379 position: relative;
2380 top: 1px;
2381 display: inline-block;
2382 font-family: 'Glyphicons Halflings';
2383 font-style: normal;
2384 font-weight: normal;
2385 line-height: 1;
2386 -webkit-font-smoothing: antialiased;
2387 -moz-osx-font-smoothing: grayscale;
2388 }
2389 .glyphicon-asterisk:before {
2390 content: "\2a";
2391 }
2392 .glyphicon-plus:before {
2393 content: "\2b";
2394 }
2395 .glyphicon-euro:before {
2396 content: "\20ac";
2397 }
2398 .glyphicon-minus:before {
2399 content: "\2212";
2400 }
2401 .glyphicon-cloud:before {
2402 content: "\2601";
2403 }
2404 .glyphicon-envelope:before {
2405 content: "\2709";
2406 }
2407 .glyphicon-pencil:before {
2408 content: "\270f";
2409 }
2410 .glyphicon-glass:before {
2411 content: "\e001";
2412 }
2413 .glyphicon-music:before {
2414 content: "\e002";
2415 }
2416 .glyphicon-search:before {
2417 content: "\e003";
2418 }
2419 .glyphicon-heart:before {
2420 content: "\e005";
2421 }
2422 .glyphicon-star:before {
2423 content: "\e006";
2424 }
2425 .glyphicon-star-empty:before {
2426 content: "\e007";
2427 }
2428 .glyphicon-user:before {
2429 content: "\e008";
2430 }
2431 .glyphicon-film:before {
2432 content: "\e009";
2433 }
2434 .glyphicon-th-large:before {
2435 content: "\e010";
2436 }
2437 .glyphicon-th:before {
2438 content: "\e011";
2439 }
2440 .glyphicon-th-list:before {
2441 content: "\e012";
2442 }
2443 .glyphicon-ok:before {
2444 content: "\e013";
2445 }
2446 .glyphicon-remove:before {
2447 content: "\e014";
2448 }
2449 .glyphicon-zoom-in:before {
2450 content: "\e015";
2451 }
2452 .glyphicon-zoom-out:before {
2453 content: "\e016";
2454 }
2455 .glyphicon-off:before {
2456 content: "\e017";
2457 }
2458 .glyphicon-signal:before {
2459 content: "\e018";
2460 }
2461 .glyphicon-cog:before {
2462 content: "\e019";
2463 }
2464 .glyphicon-trash:before {
2465 content: "\e020";
2466 }
2467 .glyphicon-home:before {
2468 content: "\e021";
2469 }
2470 .glyphicon-file:before {
2471 content: "\e022";
2472 }
2473 .glyphicon-time:before {
2474 content: "\e023";
2475 }
2476 .glyphicon-road:before {
2477 content: "\e024";
2478 }
2479 .glyphicon-download-alt:before {
2480 content: "\e025";
2481 }
2482 .glyphicon-download:before {
2483 content: "\e026";
2484 }
2485 .glyphicon-upload:before {
2486 content: "\e027";
2487 }
2488 .glyphicon-inbox:before {
2489 content: "\e028";
2490 }
2491 .glyphicon-play-circle:before {
2492 content: "\e029";
2493 }
2494 .glyphicon-repeat:before {
2495 content: "\e030";
2496 }
2497 .glyphicon-refresh:before {
2498 content: "\e031";
2499 }
2500 .glyphicon-list-alt:before {
2501 content: "\e032";
2502 }
2503 .glyphicon-lock:before {
2504 content: "\e033";
2505 }
2506 .glyphicon-flag:before {
2507 content: "\e034";
2508 }
2509 .glyphicon-headphones:before {
2510 content: "\e035";
2511 }
2512 .glyphicon-volume-off:before {
2513 content: "\e036";
2514 }
2515 .glyphicon-volume-down:before {
2516 content: "\e037";
2517 }
2518 .glyphicon-volume-up:before {
2519 content: "\e038";
2520 }
2521 .glyphicon-qrcode:before {
2522 content: "\e039";
2523 }
2524 .glyphicon-barcode:before {
2525 content: "\e040";
2526 }
2527 .glyphicon-tag:before {
2528 content: "\e041";
2529 }
2530 .glyphicon-tags:before {
2531 content: "\e042";
2532 }
2533 .glyphicon-book:before {
2534 content: "\e043";
2535 }
2536 .glyphicon-bookmark:before {
2537 content: "\e044";
2538 }
2539 .glyphicon-print:before {
2540 content: "\e045";
2541 }
2542 .glyphicon-camera:before {
2543 content: "\e046";
2544 }
2545 .glyphicon-font:before {
2546 content: "\e047";
2547 }
2548 .glyphicon-bold:before {
2549 content: "\e048";
2550 }
2551 .glyphicon-italic:before {
2552 content: "\e049";
2553 }
2554 .glyphicon-text-height:before {
2555 content: "\e050";
2556 }
2557 .glyphicon-text-width:before {
2558 content: "\e051";
2559 }
2560 .glyphicon-align-left:before {
2561 content: "\e052";
2562 }
2563 .glyphicon-align-center:before {
2564 content: "\e053";
2565 }
2566 .glyphicon-align-right:before {
2567 content: "\e054";
2568 }
2569 .glyphicon-align-justify:before {
2570 content: "\e055";
2571 }
2572 .glyphicon-list:before {
2573 content: "\e056";
2574 }
2575 .glyphicon-indent-left:before {
2576 content: "\e057";
2577 }
2578 .glyphicon-indent-right:before {
2579 content: "\e058";
2580 }
2581 .glyphicon-facetime-video:before {
2582 content: "\e059";
2583 }
2584 .glyphicon-picture:before {
2585 content: "\e060";
2586 }
2587 .glyphicon-map-marker:before {
2588 content: "\e062";
2589 }
2590 .glyphicon-adjust:before {
2591 content: "\e063";
2592 }
2593 .glyphicon-tint:before {
2594 content: "\e064";
2595 }
2596 .glyphicon-edit:before {
2597 content: "\e065";
2598 }
2599 .glyphicon-share:before {
2600 content: "\e066";
2601 }
2602 .glyphicon-check:before {
2603 content: "\e067";
2604 }
2605 .glyphicon-move:before {
2606 content: "\e068";
2607 }
2608 .glyphicon-step-backward:before {
2609 content: "\e069";
2610 }
2611 .glyphicon-fast-backward:before {
2612 content: "\e070";
2613 }
2614 .glyphicon-backward:before {
2615 content: "\e071";
2616 }
2617 .glyphicon-play:before {
2618 content: "\e072";
2619 }
2620 .glyphicon-pause:before {
2621 content: "\e073";
2622 }
2623 .glyphicon-stop:before {
2624 content: "\e074";
2625 }
2626 .glyphicon-forward:before {
2627 content: "\e075";
2628 }
2629 .glyphicon-fast-forward:before {
2630 content: "\e076";
2631 }
2632 .glyphicon-step-forward:before {
2633 content: "\e077";
2634 }
2635 .glyphicon-eject:before {
2636 content: "\e078";
2637 }
2638 .glyphicon-chevron-left:before {
2639 content: "\e079";
2640 }
2641 .glyphicon-chevron-right:before {
2642 content: "\e080";
2643 }
2644 .glyphicon-plus-sign:before {
2645 content: "\e081";
2646 }
2647 .glyphicon-minus-sign:before {
2648 content: "\e082";
2649 }
2650 .glyphicon-remove-sign:before {
2651 content: "\e083";
2652 }
2653 .glyphicon-ok-sign:before {
2654 content: "\e084";
2655 }
2656 .glyphicon-question-sign:before {
2657 content: "\e085";
2658 }
2659 .glyphicon-info-sign:before {
2660 content: "\e086";
2661 }
2662 .glyphicon-screenshot:before {
2663 content: "\e087";
2664 }
2665 .glyphicon-remove-circle:before {
2666 content: "\e088";
2667 }
2668 .glyphicon-ok-circle:before {
2669 content: "\e089";
2670 }
2671 .glyphicon-ban-circle:before {
2672 content: "\e090";
2673 }
2674 .glyphicon-arrow-left:before {
2675 content: "\e091";
2676 }
2677 .glyphicon-arrow-right:before {
2678 content: "\e092";
2679 }
2680 .glyphicon-arrow-up:before {
2681 content: "\e093";
2682 }
2683 .glyphicon-arrow-down:before {
2684 content: "\e094";
2685 }
2686 .glyphicon-share-alt:before {
2687 content: "\e095";
2688 }
2689 .glyphicon-resize-full:before {
2690 content: "\e096";
2691 }
2692 .glyphicon-resize-small:before {
2693 content: "\e097";
2694 }
2695 .glyphicon-exclamation-sign:before {
2696 content: "\e101";
2697 }
2698 .glyphicon-gift:before {
2699 content: "\e102";
2700 }
2701 .glyphicon-leaf:before {
2702 content: "\e103";
2703 }
2704 .glyphicon-fire:before {
2705 content: "\e104";
2706 }
2707 .glyphicon-eye-open:before {
2708 content: "\e105";
2709 }
2710 .glyphicon-eye-close:before {
2711 content: "\e106";
2712 }
2713 .glyphicon-warning-sign:before {
2714 content: "\e107";
2715 }
2716 .glyphicon-plane:before {
2717 content: "\e108";
2718 }
2719 .glyphicon-calendar:before {
2720 content: "\e109";
2721 }
2722 .glyphicon-random:before {
2723 content: "\e110";
2724 }
2725 .glyphicon-comment:before {
2726 content: "\e111";
2727 }
2728 .glyphicon-magnet:before {
2729 content: "\e112";
2730 }
2731 .glyphicon-chevron-up:before {
2732 content: "\e113";
2733 }
2734 .glyphicon-chevron-down:before {
2735 content: "\e114";
2736 }
2737 .glyphicon-retweet:before {
2738 content: "\e115";
2739 }
2740 .glyphicon-shopping-cart:before {
2741 content: "\e116";
2742 }
2743 .glyphicon-folder-close:before {
2744 content: "\e117";
2745 }
2746 .glyphicon-folder-open:before {
2747 content: "\e118";
2748 }
2749 .glyphicon-resize-vertical:before {
2750 content: "\e119";
2751 }
2752 .glyphicon-resize-horizontal:before {
2753 content: "\e120";
2754 }
2755 .glyphicon-hdd:before {
2756 content: "\e121";
2757 }
2758 .glyphicon-bullhorn:before {
2759 content: "\e122";
2760 }
2761 .glyphicon-bell:before {
2762 content: "\e123";
2763 }
2764 .glyphicon-certificate:before {
2765 content: "\e124";
2766 }
2767 .glyphicon-thumbs-up:before {
2768 content: "\e125";
2769 }
2770 .glyphicon-thumbs-down:before {
2771 content: "\e126";
2772 }
2773 .glyphicon-hand-right:before {
2774 content: "\e127";
2775 }
2776 .glyphicon-hand-left:before {
2777 content: "\e128";
2778 }
2779 .glyphicon-hand-up:before {
2780 content: "\e129";
2781 }
2782 .glyphicon-hand-down:before {
2783 content: "\e130";
2784 }
2785 .glyphicon-circle-arrow-right:before {
2786 content: "\e131";
2787 }
2788 .glyphicon-circle-arrow-left:before {
2789 content: "\e132";
2790 }
2791 .glyphicon-circle-arrow-up:before {
2792 content: "\e133";
2793 }
2794 .glyphicon-circle-arrow-down:before {
2795 content: "\e134";
2796 }
2797 .glyphicon-globe:before {
2798 content: "\e135";
2799 }
2800 .glyphicon-wrench:before {
2801 content: "\e136";
2802 }
2803 .glyphicon-tasks:before {
2804 content: "\e137";
2805 }
2806 .glyphicon-filter:before {
2807 content: "\e138";
2808 }
2809 .glyphicon-briefcase:before {
2810 content: "\e139";
2811 }
2812 .glyphicon-fullscreen:before {
2813 content: "\e140";
2814 }
2815 .glyphicon-dashboard:before {
2816 content: "\e141";
2817 }
2818 .glyphicon-paperclip:before {
2819 content: "\e142";
2820 }
2821 .glyphicon-heart-empty:before {
2822 content: "\e143";
2823 }
2824 .glyphicon-link:before {
2825 content: "\e144";
2826 }
2827 .glyphicon-phone:before {
2828 content: "\e145";
2829 }
2830 .glyphicon-pushpin:before {
2831 content: "\e146";
2832 }
2833 .glyphicon-usd:before {
2834 content: "\e148";
2835 }
2836 .glyphicon-gbp:before {
2837 content: "\e149";
2838 }
2839 .glyphicon-sort:before {
2840 content: "\e150";
2841 }
2842 .glyphicon-sort-by-alphabet:before {
2843 content: "\e151";
2844 }
2845 .glyphicon-sort-by-alphabet-alt:before {
2846 content: "\e152";
2847 }
2848 .glyphicon-sort-by-order:before {
2849 content: "\e153";
2850 }
2851 .glyphicon-sort-by-order-alt:before {
2852 content: "\e154";
2853 }
2854 .glyphicon-sort-by-attributes:before {
2855 content: "\e155";
2856 }
2857 .glyphicon-sort-by-attributes-alt:before {
2858 content: "\e156";
2859 }
2860 .glyphicon-unchecked:before {
2861 content: "\e157";
2862 }
2863 .glyphicon-expand:before {
2864 content: "\e158";
2865 }
2866 .glyphicon-collapse-down:before {
2867 content: "\e159";
2868 }
2869 .glyphicon-collapse-up:before {
2870 content: "\e160";
2871 }
2872 .glyphicon-log-in:before {
2873 content: "\e161";
2874 }
2875 .glyphicon-flash:before {
2876 content: "\e162";
2877 }
2878 .glyphicon-log-out:before {
2879 content: "\e163";
2880 }
2881 .glyphicon-new-window:before {
2882 content: "\e164";
2883 }
2884 .glyphicon-record:before {
2885 content: "\e165";
2886 }
2887 .glyphicon-save:before {
2888 content: "\e166";
2889 }
2890 .glyphicon-open:before {
2891 content: "\e167";
2892 }
2893 .glyphicon-saved:before {
2894 content: "\e168";
2895 }
2896 .glyphicon-import:before {
2897 content: "\e169";
2898 }
2899 .glyphicon-export:before {
2900 content: "\e170";
2901 }
2902 .glyphicon-send:before {
2903 content: "\e171";
2904 }
2905 .glyphicon-floppy-disk:before {
2906 content: "\e172";
2907 }
2908 .glyphicon-floppy-saved:before {
2909 content: "\e173";
2910 }
2911 .glyphicon-floppy-remove:before {
2912 content: "\e174";
2913 }
2914 .glyphicon-floppy-save:before {
2915 content: "\e175";
2916 }
2917 .glyphicon-floppy-open:before {
2918 content: "\e176";
2919 }
2920 .glyphicon-credit-card:before {
2921 content: "\e177";
2922 }
2923 .glyphicon-transfer:before {
2924 content: "\e178";
2925 }
2926 .glyphicon-cutlery:before {
2927 content: "\e179";
2928 }
2929 .glyphicon-header:before {
2930 content: "\e180";
2931 }
2932 .glyphicon-compressed:before {
2933 content: "\e181";
2934 }
2935 .glyphicon-earphone:before {
2936 content: "\e182";
2937 }
2938 .glyphicon-phone-alt:before {
2939 content: "\e183";
2940 }
2941 .glyphicon-tower:before {
2942 content: "\e184";
2943 }
2944 .glyphicon-stats:before {
2945 content: "\e185";
2946 }
2947 .glyphicon-sd-video:before {
2948 content: "\e186";
2949 }
2950 .glyphicon-hd-video:before {
2951 content: "\e187";
2952 }
2953 .glyphicon-subtitles:before {
2954 content: "\e188";
2955 }
2956 .glyphicon-sound-stereo:before {
2957 content: "\e189";
2958 }
2959 .glyphicon-sound-dolby:before {
2960 content: "\e190";
2961 }
2962 .glyphicon-sound-5-1:before {
2963 content: "\e191";
2964 }
2965 .glyphicon-sound-6-1:before {
2966 content: "\e192";
2967 }
2968 .glyphicon-sound-7-1:before {
2969 content: "\e193";
2970 }
2971 .glyphicon-copyright-mark:before {
2972 content: "\e194";
2973 }
2974 .glyphicon-registration-mark:before {
2975 content: "\e195";
2976 }
2977 .glyphicon-cloud-download:before {
2978 content: "\e197";
2979 }
2980 .glyphicon-cloud-upload:before {
2981 content: "\e198";
2982 }
2983 .glyphicon-tree-conifer:before {
2984 content: "\e199";
2985 }
2986 .glyphicon-tree-deciduous:before {
2987 content: "\e200";
2988 }
2989 .caret {
2990 display: inline-block;
2991 width: 0;
2992 height: 0;
2993 margin-left: 2px;
2994 vertical-align: middle;
2995 border-top: 4px solid;
2996 border-right: 4px solid transparent;
2997 border-left: 4px solid transparent;
2998 }
2999 .dropdown {
3000 position: relative;
3001 }
3002 .dropdown-toggle:focus {
3003 outline: 0;
3004 }
3005 .dropdown-menu {
3006 position: absolute;
3007 top: 100%;
3008 left: 0;
3009 z-index: 1000;
3010 display: none;
3011 float: left;
3012 min-width: 160px;
3013 padding: 5px 0;
3014 margin: 2px 0 0;
3015 list-style: none;
3016 font-size: 13px;
3017 background-color: #ffffff;
3018 border: 1px solid #cccccc;
3019 border: 1px solid rgba(0, 0, 0, 0.15);
3020 border-radius: 4px;
3021 -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3022 box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3023 background-clip: padding-box;
3024 }
3025 .dropdown-menu.pull-right {
3026 right: 0;
3027 left: auto;
3028 }
3029 .dropdown-menu .divider {
3030 height: 1px;
3031 margin: 8px 0;
3032 overflow: hidden;
3033 background-color: #e5e5e5;
3034 }
3035 .dropdown-menu > li > a {
3036 display: block;
3037 padding: 3px 20px;
3038 clear: both;
3039 font-weight: normal;
3040 line-height: 1.42857143;
3041 color: #333333;
3042 white-space: nowrap;
3043 }
3044 .dropdown-menu > li > a:hover,
3045 .dropdown-menu > li > a:focus {
3046 text-decoration: none;
3047 color: #262626;
3048 background-color: #f5f5f5;
3049 }
3050 .dropdown-menu > .active > a,
3051 .dropdown-menu > .active > a:hover,
3052 .dropdown-menu > .active > a:focus {
3053 color: #ffffff;
3054 text-decoration: none;
3055 outline: 0;
3056 background-color: #428bca;
3057 }
3058 .dropdown-menu > .disabled > a,
3059 .dropdown-menu > .disabled > a:hover,
3060 .dropdown-menu > .disabled > a:focus {
3061 color: #999999;
3062 }
3063 .dropdown-menu > .disabled > a:hover,
3064 .dropdown-menu > .disabled > a:focus {
3065 text-decoration: none;
3066 background-color: transparent;
3067 background-image: none;
3068 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
3069 cursor: not-allowed;
3070 }
3071 .open > .dropdown-menu {
3072 display: block;
3073 }
3074 .open > a {
3075 outline: 0;
3076 }
3077 .dropdown-menu-right {
3078 left: auto;
3079 right: 0;
3080 }
3081 .dropdown-menu-left {
3082 left: 0;
3083 right: auto;
3084 }
3085 .dropdown-header {
3086 display: block;
3087 padding: 3px 20px;
3088 font-size: 12px;
3089 line-height: 1.42857143;
3090 color: #999999;
3091 }
3092 .dropdown-backdrop {
3093 position: fixed;
3094 left: 0;
3095 right: 0;
3096 bottom: 0;
3097 top: 0;
3098 z-index: 990;
3099 }
3100 .pull-right > .dropdown-menu {
3101 right: 0;
3102 left: auto;
3103 }
3104 .dropup .caret,
3105 .navbar-fixed-bottom .dropdown .caret {
3106 border-top: 0;
3107 border-bottom: 4px solid;
3108 content: "";
3109 }
3110 .dropup .dropdown-menu,
3111 .navbar-fixed-bottom .dropdown .dropdown-menu {
3112 top: auto;
3113 bottom: 100%;
3114 margin-bottom: 1px;
3115 }
3116 @media (min-width: 768px) {
3117 .navbar-right .dropdown-menu {
3118 left: auto;
3119 right: 0;
3120 }
3121 .navbar-right .dropdown-menu-left {
3122 left: 0;
3123 right: auto;
3124 }
3125 }
3126 .btn-group,
3127 .btn-group-vertical {
3128 position: relative;
3129 display: inline-block;
3130 vertical-align: middle;
3131 }
3132 .btn-group > .btn,
3133 .btn-group-vertical > .btn {
3134 position: relative;
3135 float: left;
3136 }
3137 .btn-group > .btn:hover,
3138 .btn-group-vertical > .btn:hover,
3139 .btn-group > .btn:focus,
3140 .btn-group-vertical > .btn:focus,
3141 .btn-group > .btn:active,
3142 .btn-group-vertical > .btn:active,
3143 .btn-group > .btn.active,
3144 .btn-group-vertical > .btn.active {
3145 z-index: 2;
3146 }
3147 .btn-group > .btn:focus,
3148 .btn-group-vertical > .btn:focus {
3149 outline: none;
3150 }
3151 .btn-group .btn + .btn,
3152 .btn-group .btn + .btn-group,
3153 .btn-group .btn-group + .btn,
3154 .btn-group .btn-group + .btn-group {
3155 margin-left: -1px;
3156 }
3157 .btn-toolbar {
3158 margin-left: -5px;
3159 }
3160 .btn-toolbar .btn-group,
3161 .btn-toolbar .input-group {
3162 float: left;
3163 }
3164 .btn-toolbar > .btn,
3165 .btn-toolbar > .btn-group,
3166 .btn-toolbar > .input-group {
3167 margin-left: 5px;
3168 }
3169 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
3170 border-radius: 0;
3171 }
3172 .btn-group > .btn:first-child {
3173 margin-left: 0;
3174 }
3175 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
3176 border-bottom-right-radius: 0;
3177 border-top-right-radius: 0;
3178 }
3179 .btn-group > .btn:last-child:not(:first-child),
3180 .btn-group > .dropdown-toggle:not(:first-child) {
3181 border-bottom-left-radius: 0;
3182 border-top-left-radius: 0;
3183 }
3184 .btn-group > .btn-group {
3185 float: left;
3186 }
3187 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
3188 border-radius: 0;
3189 }
3190 .btn-group > .btn-group:first-child > .btn:last-child,
3191 .btn-group > .btn-group:first-child > .dropdown-toggle {
3192 border-bottom-right-radius: 0;
3193 border-top-right-radius: 0;
3194 }
3195 .btn-group > .btn-group:last-child > .btn:first-child {
3196 border-bottom-left-radius: 0;
3197 border-top-left-radius: 0;
3198 }
3199 .btn-group .dropdown-toggle:active,
3200 .btn-group.open .dropdown-toggle {
3201 outline: 0;
3202 }
3203 .btn-group > .btn + .dropdown-toggle {
3204 padding-left: 8px;
3205 padding-right: 8px;
3206 }
3207 .btn-group > .btn-lg + .dropdown-toggle {
3208 padding-left: 12px;
3209 padding-right: 12px;
3210 }
3211 .btn-group.open .dropdown-toggle {
3212 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3213 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3214 }
3215 .btn-group.open .dropdown-toggle.btn-link {
3216 -webkit-box-shadow: none;
3217 box-shadow: none;
3218 }
3219 .btn .caret {
3220 margin-left: 0;
3221 }
3222 .btn-lg .caret {
3223 border-width: 5px 5px 0;
3224 border-bottom-width: 0;
3225 }
3226 .dropup .btn-lg .caret {
3227 border-width: 0 5px 5px;
3228 }
3229 .btn-group-vertical > .btn,
3230 .btn-group-vertical > .btn-group,
3231 .btn-group-vertical > .btn-group > .btn {
3232 display: block;
3233 float: none;
3234 width: 100%;
3235 max-width: 100%;
3236 }
3237 .btn-group-vertical > .btn-group > .btn {
3238 float: none;
3239 }
3240 .btn-group-vertical > .btn + .btn,
3241 .btn-group-vertical > .btn + .btn-group,
3242 .btn-group-vertical > .btn-group + .btn,
3243 .btn-group-vertical > .btn-group + .btn-group {
3244 margin-top: -1px;
3245 margin-left: 0;
3246 }
3247 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
3248 border-radius: 0;
3249 }
3250 .btn-group-vertical > .btn:first-child:not(:last-child) {
3251 border-top-right-radius: 4px;
3252 border-bottom-right-radius: 0;
3253 border-bottom-left-radius: 0;
3254 }
3255 .btn-group-vertical > .btn:last-child:not(:first-child) {
3256 border-bottom-left-radius: 4px;
3257 border-top-right-radius: 0;
3258 border-top-left-radius: 0;
3259 }
3260 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
3261 border-radius: 0;
3262 }
3263 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
3264 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
3265 border-bottom-right-radius: 0;
3266 border-bottom-left-radius: 0;
3267 }
3268 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
3269 border-top-right-radius: 0;
3270 border-top-left-radius: 0;
3271 }
3272 .btn-group-justified {
3273 display: table;
3274 width: 100%;
3275 table-layout: fixed;
3276 border-collapse: separate;
3277 }
3278 .btn-group-justified > .btn,
3279 .btn-group-justified > .btn-group {
3280 float: none;
3281 display: table-cell;
3282 width: 1%;
3283 }
3284 .btn-group-justified > .btn-group .btn {
3285 width: 100%;
3286 }
3287 [data-toggle="buttons"] > .btn > input[type="radio"],
3288 [data-toggle="buttons"] > .btn > input[type="checkbox"] {
3289 display: none;
3290 }
3291 .input-group {
3292 position: relative;
3293 display: table;
3294 border-collapse: separate;
3295 }
3296 .input-group[class*="col-"] {
3297 float: none;
3298 padding-left: 0;
3299 padding-right: 0;
3300 }
3301 .input-group .form-control {
3302 position: relative;
3303 z-index: 2;
3304 float: left;
3305 width: 100%;
3306 margin-bottom: 0;
3307 }
3308 .input-group-lg > .form-control,
3309 .input-group-lg > .input-group-addon,
3310 .input-group-lg > .input-group-btn > .btn {
3311 height: 45px;
3312 padding: 10px 16px;
3313 font-size: 17px;
3314 line-height: 1.33;
3315 border-radius: 6px;
3316 }
3317 select.input-group-lg > .form-control,
3318 select.input-group-lg > .input-group-addon,
3319 select.input-group-lg > .input-group-btn > .btn {
3320 height: 45px;
3321 line-height: 45px;
3322 }
3323 textarea.input-group-lg > .form-control,
3324 textarea.input-group-lg > .input-group-addon,
3325 textarea.input-group-lg > .input-group-btn > .btn,
3326 select[multiple].input-group-lg > .form-control,
3327 select[multiple].input-group-lg > .input-group-addon,
3328 select[multiple].input-group-lg > .input-group-btn > .btn {
3329 height: auto;
3330 }
3331 .input-group-sm > .form-control,
3332 .input-group-sm > .input-group-addon,
3333 .input-group-sm > .input-group-btn > .btn {
3334 height: 30px;
3335 padding: 5px 10px;
3336 font-size: 12px;
3337 line-height: 1.5;
3338 border-radius: 3px;
3339 }
3340 select.input-group-sm > .form-control,
3341 select.input-group-sm > .input-group-addon,
3342 select.input-group-sm > .input-group-btn > .btn {
3343 height: 30px;
3344 line-height: 30px;
3345 }
3346 textarea.input-group-sm > .form-control,
3347 textarea.input-group-sm > .input-group-addon,
3348 textarea.input-group-sm > .input-group-btn > .btn,
3349 select[multiple].input-group-sm > .form-control,
3350 select[multiple].input-group-sm > .input-group-addon,
3351 select[multiple].input-group-sm > .input-group-btn > .btn {
3352 height: auto;
3353 }
3354 .input-group-addon,
3355 .input-group-btn,
3356 .input-group .form-control {
3357 display: table-cell;
3358 }
3359 .input-group-addon:not(:first-child):not(:last-child),
3360 .input-group-btn:not(:first-child):not(:last-child),
3361 .input-group .form-control:not(:first-child):not(:last-child) {
3362 border-radius: 0;
3363 }
3364 .input-group-addon,
3365 .input-group-btn {
3366 width: 1%;
3367 white-space: nowrap;
3368 vertical-align: middle;
3369 }
3370 .input-group-addon {
3371 padding: 6px 12px;
3372 font-size: 13px;
3373 font-weight: normal;
3374 line-height: 1;
3375 color: #555555;
3376 text-align: center;
3377 background-color: #eeeeee;
3378 border: 1px solid #cccccc;
3379 border-radius: 4px;
3380 }
3381 .input-group-addon.input-sm {
3382 padding: 5px 10px;
3383 font-size: 12px;
3384 border-radius: 3px;
3385 }
3386 .input-group-addon.input-lg {
3387 padding: 10px 16px;
3388 font-size: 17px;
3389 border-radius: 6px;
3390 }
3391 .input-group-addon input[type="radio"],
3392 .input-group-addon input[type="checkbox"] {
3393 margin-top: 0;
3394 }
3395 .input-group .form-control:first-child,
3396 .input-group-addon:first-child,
3397 .input-group-btn:first-child > .btn,
3398 .input-group-btn:first-child > .btn-group > .btn,
3399 .input-group-btn:first-child > .dropdown-toggle,
3400 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
3401 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
3402 border-bottom-right-radius: 0;
3403 border-top-right-radius: 0;
3404 }
3405 .input-group-addon:first-child {
3406 border-right: 0;
3407 }
3408 .input-group .form-control:last-child,
3409 .input-group-addon:last-child,
3410 .input-group-btn:last-child > .btn,
3411 .input-group-btn:last-child > .btn-group > .btn,
3412 .input-group-btn:last-child > .dropdown-toggle,
3413 .input-group-btn:first-child > .btn:not(:first-child),
3414 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
3415 border-bottom-left-radius: 0;
3416 border-top-left-radius: 0;
3417 }
3418 .input-group-addon:last-child {
3419 border-left: 0;
3420 }
3421 .input-group-btn {
3422 position: relative;
3423 font-size: 0;
3424 white-space: nowrap;
3425 }
3426 .input-group-btn > .btn {
3427 position: relative;
3428 }
3429 .input-group-btn > .btn + .btn {
3430 margin-left: -1px;
3431 }
3432 .input-group-btn > .btn:hover,
3433 .input-group-btn > .btn:focus,
3434 .input-group-btn > .btn:active {
3435 z-index: 2;
3436 }
3437 .input-group-btn:first-child > .btn,
3438 .input-group-btn:first-child > .btn-group {
3439 margin-right: -1px;
3440 }
3441 .input-group-btn:last-child > .btn,
3442 .input-group-btn:last-child > .btn-group {
3443 margin-left: -1px;
3444 }
3445 .nav {
3446 margin-bottom: 0;
3447 padding-left: 0;
3448 list-style: none;
3449 }
3450 .nav > li {
3451 position: relative;
3452 display: block;
3453 }
3454 .nav > li > a {
3455 position: relative;
3456 display: block;
3457 padding: 10px 15px;
3458 }
3459 .nav > li > a:hover,
3460 .nav > li > a:focus {
3461 text-decoration: none;
3462 background-color: #eeeeee;
3463 }
3464 .nav > li.disabled > a {
3465 color: #999999;
3466 }
3467 .nav > li.disabled > a:hover,
3468 .nav > li.disabled > a:focus {
3469 color: #999999;
3470 text-decoration: none;
3471 background-color: transparent;
3472 cursor: not-allowed;
3473 }
3474 .nav .open > a,
3475 .nav .open > a:hover,
3476 .nav .open > a:focus {
3477 background-color: #eeeeee;
3478 border-color: #428bca;
3479 }
3480 .nav .nav-divider {
3481 height: 1px;
3482 margin: 8px 0;
3483 overflow: hidden;
3484 background-color: #e5e5e5;
3485 }
3486 .nav > li > a > img {
3487 max-width: none;
3488 }
3489 .nav-tabs {
3490 border-bottom: 1px solid #dddddd;
3491 }
3492 .nav-tabs > li {
3493 float: left;
3494 margin-bottom: -1px;
3495 }
3496 .nav-tabs > li > a {
3497 margin-right: 2px;
3498 line-height: 1.42857143;
3499 border: 1px solid transparent;
3500 border-radius: 4px 4px 0 0;
3501 }
3502 .nav-tabs > li > a:hover {
3503 border-color: #eeeeee #eeeeee #dddddd;
3504 }
3505 .nav-tabs > li.active > a,
3506 .nav-tabs > li.active > a:hover,
3507 .nav-tabs > li.active > a:focus {
3508 color: #555555;
3509 background-color: #ffffff;
3510 border: 1px solid #dddddd;
3511 border-bottom-color: transparent;
3512 cursor: default;
3513 }
3514 .nav-tabs.nav-justified {
3515 width: 100%;
3516 border-bottom: 0;
3517 }
3518 .nav-tabs.nav-justified > li {
3519 float: none;
3520 }
3521 .nav-tabs.nav-justified > li > a {
3522 text-align: center;
3523 margin-bottom: 5px;
3524 }
3525 .nav-tabs.nav-justified > .dropdown .dropdown-menu {
3526 top: auto;
3527 left: auto;
3528 }
3529 @media (min-width: 768px) {
3530 .nav-tabs.nav-justified > li {
3531 display: table-cell;
3532 width: 1%;
3533 }
3534 .nav-tabs.nav-justified > li > a {
3535 margin-bottom: 0;
3536 }
3537 }
3538 .nav-tabs.nav-justified > li > a {
3539 margin-right: 0;
3540 border-radius: 4px;
3541 }
3542 .nav-tabs.nav-justified > .active > a,
3543 .nav-tabs.nav-justified > .active > a:hover,
3544 .nav-tabs.nav-justified > .active > a:focus {
3545 border: 1px solid #dddddd;
3546 }
3547 @media (min-width: 768px) {
3548 .nav-tabs.nav-justified > li > a {
3549 border-bottom: 1px solid #dddddd;
3550 border-radius: 4px 4px 0 0;
3551 }
3552 .nav-tabs.nav-justified > .active > a,
3553 .nav-tabs.nav-justified > .active > a:hover,
3554 .nav-tabs.nav-justified > .active > a:focus {
3555 border-bottom-color: #ffffff;
3556 }
3557 }
3558 .nav-pills > li {
3559 float: left;
3560 }
3561 .nav-pills > li > a {
3562 border-radius: 4px;
3563 }
3564 .nav-pills > li + li {
3565 margin-left: 2px;
3566 }
3567 .nav-pills > li.active > a,
3568 .nav-pills > li.active > a:hover,
3569 .nav-pills > li.active > a:focus {
3570 color: #ffffff;
3571 background-color: #428bca;
3572 }
3573 .nav-stacked > li {
3574 float: none;
3575 }
3576 .nav-stacked > li + li {
3577 margin-top: 2px;
3578 margin-left: 0;
3579 }
3580 .nav-justified {
3581 width: 100%;
3582 }
3583 .nav-justified > li {
3584 float: none;
3585 }
3586 .nav-justified > li > a {
3587 text-align: center;
3588 margin-bottom: 5px;
3589 }
3590 .nav-justified > .dropdown .dropdown-menu {
3591 top: auto;
3592 left: auto;
3593 }
3594 @media (min-width: 768px) {
3595 .nav-justified > li {
3596 display: table-cell;
3597 width: 1%;
3598 }
3599 .nav-justified > li > a {
3600 margin-bottom: 0;
3601 }
3602 }
3603 .nav-tabs-justified {
3604 border-bottom: 0;
3605 }
3606 .nav-tabs-justified > li > a {
3607 margin-right: 0;
3608 border-radius: 4px;
3609 }
3610 .nav-tabs-justified > .active > a,
3611 .nav-tabs-justified > .active > a:hover,
3612 .nav-tabs-justified > .active > a:focus {
3613 border: 1px solid #dddddd;
3614 }
3615 @media (min-width: 768px) {
3616 .nav-tabs-justified > li > a {
3617 border-bottom: 1px solid #dddddd;
3618 border-radius: 4px 4px 0 0;
3619 }
3620 .nav-tabs-justified > .active > a,
3621 .nav-tabs-justified > .active > a:hover,
3622 .nav-tabs-justified > .active > a:focus {
3623 border-bottom-color: #ffffff;
3624 }
3625 }
3626 .tab-content > .tab-pane {
3627 display: none;
3628 }
3629 .tab-content > .active {
3630 display: block;
3631 }
3632 .nav-tabs .dropdown-menu {
3633 margin-top: -1px;
3634 border-top-right-radius: 0;
3635 border-top-left-radius: 0;
3636 }
3637 .navbar {
3638 position: relative;
3639 min-height: 36px;
3640 margin-bottom: 18px;
3641 border: 1px solid transparent;
3642 }
3643 @media (min-width: 768px) {
3644 .navbar {
3645 border-radius: 4px;
3646 }
3647 }
3648 @media (min-width: 768px) {
3649 .navbar-header {
3650 float: left;
3651 }
3652 }
3653 .navbar-collapse {
3654 max-height: 340px;
3655 overflow-x: visible;
3656 padding-right: 15px;
3657 padding-left: 15px;
3658 border-top: 1px solid transparent;
3659 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
3660 -webkit-overflow-scrolling: touch;
3661 }
3662 .navbar-collapse.in {
3663 overflow-y: auto;
3664 }
3665 @media (min-width: 768px) {
3666 .navbar-collapse {
3667 width: auto;
3668 border-top: 0;
3669 box-shadow: none;
3670 }
3671 .navbar-collapse.collapse {
3672 display: block !important;
3673 height: auto !important;
3674 padding-bottom: 0;
3675 overflow: visible !important;
3676 }
3677 .navbar-collapse.in {
3678 overflow-y: visible;
3679 }
3680 .navbar-fixed-top .navbar-collapse,
3681 .navbar-static-top .navbar-collapse,
3682 .navbar-fixed-bottom .navbar-collapse {
3683 padding-left: 0;
3684 padding-right: 0;
3685 }
3686 }
3687 .container > .navbar-header,
3688 .container-fluid > .navbar-header,
3689 .container > .navbar-collapse,
3690 .container-fluid > .navbar-collapse {
3691 margin-right: -15px;
3692 margin-left: -15px;
3693 }
3694 @media (min-width: 768px) {
3695 .container > .navbar-header,
3696 .container-fluid > .navbar-header,
3697 .container > .navbar-collapse,
3698 .container-fluid > .navbar-collapse {
3699 margin-right: 0;
3700 margin-left: 0;
3701 }
3702 }
3703 .navbar-static-top {
3704 z-index: 1000;
3705 border-width: 0 0 1px;
3706 }
3707 @media (min-width: 768px) {
3708 .navbar-static-top {
3709 border-radius: 0;
3710 }
3711 }
3712 .navbar-fixed-top,
3713 .navbar-fixed-bottom {
3714 position: fixed;
3715 right: 0;
3716 left: 0;
3717 z-index: 1030;
3718 }
3719 @media (min-width: 768px) {
3720 .navbar-fixed-top,
3721 .navbar-fixed-bottom {
3722 border-radius: 0;
3723 }
3724 }
3725 .navbar-fixed-top {
3726 top: 0;
3727 border-width: 0 0 1px;
3728 }
3729 .navbar-fixed-bottom {
3730 bottom: 0;
3731 margin-bottom: 0;
3732 border-width: 1px 0 0;
3733 }
3734 .navbar-brand {
3735 float: left;
3736 padding: 9px 15px;
3737 font-size: 17px;
3738 line-height: 18px;
3739 height: 36px;
3740 }
3741 .navbar-brand:hover,
3742 .navbar-brand:focus {
3743 text-decoration: none;
3744 }
3745 @media (min-width: 768px) {
3746 .navbar > .container .navbar-brand,
3747 .navbar > .container-fluid .navbar-brand {
3748 margin-left: -15px;
3749 }
3750 }
3751 .navbar-toggle {
3752 position: relative;
3753 float: right;
3754 margin-right: 15px;
3755 padding: 9px 10px;
3756 margin-top: 1px;
3757 margin-bottom: 1px;
3758 background-color: transparent;
3759 background-image: none;
3760 border: 1px solid transparent;
3761 border-radius: 4px;
3762 }
3763 .navbar-toggle:focus {
3764 outline: none;
3765 }
3766 .navbar-toggle .icon-bar {
3767 display: block;
3768 width: 22px;
3769 height: 2px;
3770 border-radius: 1px;
3771 }
3772 .navbar-toggle .icon-bar + .icon-bar {
3773 margin-top: 4px;
3774 }
3775 @media (min-width: 768px) {
3776 .navbar-toggle {
3777 display: none;
3778 }
3779 }
3780 .navbar-nav {
3781 margin: 4.5px -15px;
3782 }
3783 .navbar-nav > li > a {
3784 padding-top: 10px;
3785 padding-bottom: 10px;
3786 line-height: 18px;
3787 }
3788 @media (max-width: 767px) {
3789 .navbar-nav .open .dropdown-menu {
3790 position: static;
3791 float: none;
3792 width: auto;
3793 margin-top: 0;
3794 background-color: transparent;
3795 border: 0;
3796 box-shadow: none;
3797 }
3798 .navbar-nav .open .dropdown-menu > li > a,
3799 .navbar-nav .open .dropdown-menu .dropdown-header {
3800 padding: 5px 15px 5px 25px;
3801 }
3802 .navbar-nav .open .dropdown-menu > li > a {
3803 line-height: 18px;
3804 }
3805 .navbar-nav .open .dropdown-menu > li > a:hover,
3806 .navbar-nav .open .dropdown-menu > li > a:focus {
3807 background-image: none;
3808 }
3809 }
3810 @media (min-width: 768px) {
3811 .navbar-nav {
3812 float: left;
3813 margin: 0;
3814 }
3815 .navbar-nav > li {
3816 float: left;
3817 }
3818 .navbar-nav > li > a {
3819 padding-top: 9px;
3820 padding-bottom: 9px;
3821 }
3822 .navbar-nav.navbar-right:last-child {
3823 margin-right: -15px;
3824 }
3825 }
3826 @media (min-width: 768px) {
3827 .navbar-left {
3828 float: left !important;
3829 float: left;
3830 }
3831 .navbar-right {
3832 float: right !important;
3833 float: right;
3834 }
3835 }
3836 .navbar-form {
3837 margin-left: -15px;
3838 margin-right: -15px;
3839 padding: 10px 15px;
3840 border-top: 1px solid transparent;
3841 border-bottom: 1px solid transparent;
3842 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3843 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3844 margin-top: 2px;
3845 margin-bottom: 2px;
3846 }
3847 @media (min-width: 768px) {
3848 .navbar-form .form-group {
3849 display: inline-block;
3850 margin-bottom: 0;
3851 vertical-align: middle;
3852 }
3853 .navbar-form .form-control {
3854 display: inline-block;
3855 width: auto;
3856 vertical-align: middle;
3857 }
3858 .navbar-form .input-group > .form-control {
3859 width: 100%;
3860 }
3861 .navbar-form .control-label {
3862 margin-bottom: 0;
3863 vertical-align: middle;
3864 }
3865 .navbar-form .radio,
3866 .navbar-form .checkbox {
3867 display: inline-block;
3868 margin-top: 0;
3869 margin-bottom: 0;
3870 padding-left: 0;
3871 vertical-align: middle;
3872 }
3873 .navbar-form .radio input[type="radio"],
3874 .navbar-form .checkbox input[type="checkbox"] {
3875 float: none;
3876 margin-left: 0;
3877 }
3878 .navbar-form .has-feedback .form-control-feedback {
3879 top: 0;
3880 }
3881 }
3882 @media (max-width: 767px) {
3883 .navbar-form .form-group {
3884 margin-bottom: 5px;
3885 }
3886 }
3887 @media (min-width: 768px) {
3888 .navbar-form {
3889 width: auto;
3890 border: 0;
3891 margin-left: 0;
3892 margin-right: 0;
3893 padding-top: 0;
3894 padding-bottom: 0;
3895 -webkit-box-shadow: none;
3896 box-shadow: none;
3897 }
3898 .navbar-form.navbar-right:last-child {
3899 margin-right: -15px;
3900 }
3901 }
3902 .navbar-nav > li > .dropdown-menu {
3903 margin-top: 0;
3904 border-top-right-radius: 0;
3905 border-top-left-radius: 0;
3906 }
3907 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
3908 border-bottom-right-radius: 0;
3909 border-bottom-left-radius: 0;
3910 }
3911 .navbar-btn {
3912 margin-top: 2px;
3913 margin-bottom: 2px;
3914 }
3915 .navbar-btn.btn-sm {
3916 margin-top: 3px;
3917 margin-bottom: 3px;
3918 }
3919 .navbar-btn.btn-xs {
3920 margin-top: 7px;
3921 margin-bottom: 7px;
3922 }
3923 .navbar-text {
3924 margin-top: 9px;
3925 margin-bottom: 9px;
3926 }
3927 @media (min-width: 768px) {
3928 .navbar-text {
3929 float: left;
3930 margin-left: 15px;
3931 margin-right: 15px;
3932 }
3933 .navbar-text.navbar-right:last-child {
3934 margin-right: 0;
3935 }
3936 }
3937 .navbar-default {
3938 background-color: #f8f8f8;
3939 border-color: #e7e7e7;
3940 }
3941 .navbar-default .navbar-brand {
3942 color: #777777;
3943 }
3944 .navbar-default .navbar-brand:hover,
3945 .navbar-default .navbar-brand:focus {
3946 color: #5e5e5e;
3947 background-color: transparent;
3948 }
3949 .navbar-default .navbar-text {
3950 color: #777777;
3951 }
3952 .navbar-default .navbar-nav > li > a {
3953 color: #777777;
3954 }
3955 .navbar-default .navbar-nav > li > a:hover,
3956 .navbar-default .navbar-nav > li > a:focus {
3957 color: #333333;
3958 background-color: transparent;
3959 }
3960 .navbar-default .navbar-nav > .active > a,
3961 .navbar-default .navbar-nav > .active > a:hover,
3962 .navbar-default .navbar-nav > .active > a:focus {
3963 color: #555555;
3964 background-color: #e7e7e7;
3965 }
3966 .navbar-default .navbar-nav > .disabled > a,
3967 .navbar-default .navbar-nav > .disabled > a:hover,
3968 .navbar-default .navbar-nav > .disabled > a:focus {
3969 color: #cccccc;
3970 background-color: transparent;
3971 }
3972 .navbar-default .navbar-toggle {
3973 border-color: #dddddd;
3974 }
3975 .navbar-default .navbar-toggle:hover,
3976 .navbar-default .navbar-toggle:focus {
3977 background-color: #dddddd;
3978 }
3979 .navbar-default .navbar-toggle .icon-bar {
3980 background-color: #888888;
3981 }
3982 .navbar-default .navbar-collapse,
3983 .navbar-default .navbar-form {
3984 border-color: #e7e7e7;
3985 }
3986 .navbar-default .navbar-nav > .open > a,
3987 .navbar-default .navbar-nav > .open > a:hover,
3988 .navbar-default .navbar-nav > .open > a:focus {
3989 background-color: #e7e7e7;
3990 color: #555555;
3991 }
3992 @media (max-width: 767px) {
3993 .navbar-default .navbar-nav .open .dropdown-menu > li > a {
3994 color: #777777;
3995 }
3996 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
3997 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
3998 color: #333333;
3999 background-color: transparent;
4000 }
4001 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
4002 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
4003 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
4004 color: #555555;
4005 background-color: #e7e7e7;
4006 }
4007 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
4008 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4009 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4010 color: #cccccc;
4011 background-color: transparent;
4012 }
4013 }
4014 .navbar-default .navbar-link {
4015 color: #777777;
4016 }
4017 .navbar-default .navbar-link:hover {
4018 color: #333333;
4019 }
4020 .navbar-inverse {
4021 background-color: #222222;
4022 border-color: #080808;
4023 }
4024 .navbar-inverse .navbar-brand {
4025 color: #999999;
4026 }
4027 .navbar-inverse .navbar-brand:hover,
4028 .navbar-inverse .navbar-brand:focus {
4029 color: #ffffff;
4030 background-color: transparent;
4031 }
4032 .navbar-inverse .navbar-text {
4033 color: #999999;
4034 }
4035 .navbar-inverse .navbar-nav > li > a {
4036 color: #999999;
4037 }
4038 .navbar-inverse .navbar-nav > li > a:hover,
4039 .navbar-inverse .navbar-nav > li > a:focus {
4040 color: #ffffff;
4041 background-color: transparent;
4042 }
4043 .navbar-inverse .navbar-nav > .active > a,
4044 .navbar-inverse .navbar-nav > .active > a:hover,
4045 .navbar-inverse .navbar-nav > .active > a:focus {
4046 color: #ffffff;
4047 background-color: #080808;
4048 }
4049 .navbar-inverse .navbar-nav > .disabled > a,
4050 .navbar-inverse .navbar-nav > .disabled > a:hover,
4051 .navbar-inverse .navbar-nav > .disabled > a:focus {
4052 color: #444444;
4053 background-color: transparent;
4054 }
4055 .navbar-inverse .navbar-toggle {
4056 border-color: #333333;
4057 }
4058 .navbar-inverse .navbar-toggle:hover,
4059 .navbar-inverse .navbar-toggle:focus {
4060 background-color: #333333;
4061 }
4062 .navbar-inverse .navbar-toggle .icon-bar {
4063 background-color: #ffffff;
4064 }
4065 .navbar-inverse .navbar-collapse,
4066 .navbar-inverse .navbar-form {
4067 border-color: #101010;
4068 }
4069 .navbar-inverse .navbar-nav > .open > a,
4070 .navbar-inverse .navbar-nav > .open > a:hover,
4071 .navbar-inverse .navbar-nav > .open > a:focus {
4072 background-color: #080808;
4073 color: #ffffff;
4074 }
4075 @media (max-width: 767px) {
4076 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
4077 border-color: #080808;
4078 }
4079 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
4080 background-color: #080808;
4081 }
4082 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
4083 color: #999999;
4084 }
4085 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
4086 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
4087 color: #ffffff;
4088 background-color: transparent;
4089 }
4090 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
4091 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
4092 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
4093 color: #ffffff;
4094 background-color: #080808;
4095 }
4096 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
4097 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4098 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4099 color: #444444;
4100 background-color: transparent;
4101 }
4102 }
4103 .navbar-inverse .navbar-link {
4104 color: #999999;
4105 }
4106 .navbar-inverse .navbar-link:hover {
4107 color: #ffffff;
4108 }
4109 .breadcrumb {
4110 padding: 8px 15px;
4111 margin-bottom: 18px;
4112 list-style: none;
4113 background-color: #f5f5f5;
4114 border-radius: 4px;
4115 }
4116 .breadcrumb > li {
4117 display: inline-block;
4118 }
4119 .breadcrumb > li + li:before {
4120 content: "/\00a0";
4121 padding: 0 5px;
4122 color: #5e5e5e;
4123 }
4124 .breadcrumb > .active {
4125 color: #999999;
4126 }
4127 .pagination {
4128 display: inline-block;
4129 padding-left: 0;
4130 margin: 18px 0;
4131 border-radius: 4px;
4132 }
4133 .pagination > li {
4134 display: inline;
4135 }
4136 .pagination > li > a,
4137 .pagination > li > span {
4138 position: relative;
4139 float: left;
4140 padding: 6px 12px;
4141 line-height: 1.42857143;
4142 text-decoration: none;
4143 color: #428bca;
4144 background-color: #ffffff;
4145 border: 1px solid #dddddd;
4146 margin-left: -1px;
4147 }
4148 .pagination > li:first-child > a,
4149 .pagination > li:first-child > span {
4150 margin-left: 0;
4151 border-bottom-left-radius: 4px;
4152 border-top-left-radius: 4px;
4153 }
4154 .pagination > li:last-child > a,
4155 .pagination > li:last-child > span {
4156 border-bottom-right-radius: 4px;
4157 border-top-right-radius: 4px;
4158 }
4159 .pagination > li > a:hover,
4160 .pagination > li > span:hover,
4161 .pagination > li > a:focus,
4162 .pagination > li > span:focus {
4163 color: #2a6496;
4164 background-color: #eeeeee;
4165 border-color: #dddddd;
4166 }
4167 .pagination > .active > a,
4168 .pagination > .active > span,
4169 .pagination > .active > a:hover,
4170 .pagination > .active > span:hover,
4171 .pagination > .active > a:focus,
4172 .pagination > .active > span:focus {
4173 z-index: 2;
4174 color: #ffffff;
4175 background-color: #428bca;
4176 border-color: #428bca;
4177 cursor: default;
4178 }
4179 .pagination > .disabled > span,
4180 .pagination > .disabled > span:hover,
4181 .pagination > .disabled > span:focus,
4182 .pagination > .disabled > a,
4183 .pagination > .disabled > a:hover,
4184 .pagination > .disabled > a:focus {
4185 color: #999999;
4186 background-color: #ffffff;
4187 border-color: #dddddd;
4188 cursor: not-allowed;
4189 }
4190 .pagination-lg > li > a,
4191 .pagination-lg > li > span {
4192 padding: 10px 16px;
4193 font-size: 17px;
4194 }
4195 .pagination-lg > li:first-child > a,
4196 .pagination-lg > li:first-child > span {
4197 border-bottom-left-radius: 6px;
4198 border-top-left-radius: 6px;
4199 }
4200 .pagination-lg > li:last-child > a,
4201 .pagination-lg > li:last-child > span {
4202 border-bottom-right-radius: 6px;
4203 border-top-right-radius: 6px;
4204 }
4205 .pagination-sm > li > a,
4206 .pagination-sm > li > span {
4207 padding: 5px 10px;
4208 font-size: 12px;
4209 }
4210 .pagination-sm > li:first-child > a,
4211 .pagination-sm > li:first-child > span {
4212 border-bottom-left-radius: 3px;
4213 border-top-left-radius: 3px;
4214 }
4215 .pagination-sm > li:last-child > a,
4216 .pagination-sm > li:last-child > span {
4217 border-bottom-right-radius: 3px;
4218 border-top-right-radius: 3px;
4219 }
4220 .pager {
4221 padding-left: 0;
4222 margin: 18px 0;
4223 list-style: none;
4224 text-align: center;
4225 }
4226 .pager li {
4227 display: inline;
4228 }
4229 .pager li > a,
4230 .pager li > span {
4231 display: inline-block;
4232 padding: 5px 14px;
4233 background-color: #ffffff;
4234 border: 1px solid #dddddd;
4235 border-radius: 15px;
4236 }
4237 .pager li > a:hover,
4238 .pager li > a:focus {
4239 text-decoration: none;
4240 background-color: #eeeeee;
4241 }
4242 .pager .next > a,
4243 .pager .next > span {
4244 float: right;
4245 }
4246 .pager .previous > a,
4247 .pager .previous > span {
4248 float: left;
4249 }
4250 .pager .disabled > a,
4251 .pager .disabled > a:hover,
4252 .pager .disabled > a:focus,
4253 .pager .disabled > span {
4254 color: #999999;
4255 background-color: #ffffff;
4256 cursor: not-allowed;
4257 }
4258 .label {
4259 display: inline;
4260 padding: .2em .6em .3em;
4261 font-size: 75%;
4262 font-weight: bold;
4263 line-height: 1;
4264 color: #ffffff;
4265 text-align: center;
4266 white-space: nowrap;
4267 vertical-align: baseline;
4268 border-radius: .25em;
4269 }
4270 .label[href]:hover,
4271 .label[href]:focus {
4272 color: #ffffff;
4273 text-decoration: none;
4274 cursor: pointer;
4275 }
4276 .label:empty {
4277 display: none;
4278 }
4279 .btn .label {
4280 position: relative;
4281 top: -1px;
4282 }
4283 .label-default {
4284 background-color: #999999;
4285 }
4286 .label-default[href]:hover,
4287 .label-default[href]:focus {
4288 background-color: #808080;
4289 }
4290 .label-primary {
4291 background-color: #428bca;
4292 }
4293 .label-primary[href]:hover,
4294 .label-primary[href]:focus {
4295 background-color: #3071a9;
4296 }
4297 .label-success {
4298 background-color: #5cb85c;
4299 }
4300 .label-success[href]:hover,
4301 .label-success[href]:focus {
4302 background-color: #449d44;
4303 }
4304 .label-info {
4305 background-color: #5bc0de;
4306 }
4307 .label-info[href]:hover,
4308 .label-info[href]:focus {
4309 background-color: #31b0d5;
4310 }
4311 .label-warning {
4312 background-color: #f0ad4e;
4313 }
4314 .label-warning[href]:hover,
4315 .label-warning[href]:focus {
4316 background-color: #ec971f;
4317 }
4318 .label-danger {
4319 background-color: #d9534f;
4320 }
4321 .label-danger[href]:hover,
4322 .label-danger[href]:focus {
4323 background-color: #c9302c;
4324 }
4325 .badge {
4326 display: inline-block;
4327 min-width: 10px;
4328 padding: 3px 7px;
4329 font-size: 12px;
4330 font-weight: bold;
4331 color: #ffffff;
4332 line-height: 1;
4333 vertical-align: baseline;
4334 white-space: nowrap;
4335 text-align: center;
4336 background-color: #999999;
4337 border-radius: 10px;
4338 }
4339 .badge:empty {
4340 display: none;
4341 }
4342 .btn .badge {
4343 position: relative;
4344 top: -1px;
4345 }
4346 .btn-xs .badge {
4347 top: 0;
4348 padding: 1px 5px;
4349 }
4350 a.badge:hover,
4351 a.badge:focus {
4352 color: #ffffff;
4353 text-decoration: none;
4354 cursor: pointer;
4355 }
4356 a.list-group-item.active > .badge,
4357 .nav-pills > .active > a > .badge {
4358 color: #428bca;
4359 background-color: #ffffff;
4360 }
4361 .nav-pills > li > a > .badge {
4362 margin-left: 3px;
4363 }
4364 .jumbotron {
4365 padding: 30px;
4366 margin-bottom: 30px;
4367 color: inherit;
4368 background-color: #eeeeee;
4369 }
4370 .jumbotron h1,
4371 .jumbotron .h1 {
4372 color: inherit;
4373 }
4374 .jumbotron p {
4375 margin-bottom: 15px;
4376 font-size: 20px;
4377 font-weight: 200;
4378 }
4379 .container .jumbotron {
4380 border-radius: 6px;
4381 }
4382 .jumbotron .container {
4383 max-width: 100%;
4384 }
4385 @media screen and (min-width: 768px) {
4386 .jumbotron {
4387 padding-top: 48px;
4388 padding-bottom: 48px;
4389 }
4390 .container .jumbotron {
4391 padding-left: 60px;
4392 padding-right: 60px;
4393 }
4394 .jumbotron h1,
4395 .jumbotron .h1 {
4396 font-size: 58.5px;
4397 }
4398 }
4399 .thumbnail {
4400 display: block;
4401 padding: 4px;
4402 margin-bottom: 18px;
4403 line-height: 1.42857143;
4404 background-color: #ffffff;
4405 border: 1px solid #dddddd;
4406 border-radius: 4px;
4407 -webkit-transition: all 0.2s ease-in-out;
4408 transition: all 0.2s ease-in-out;
4409 }
4410 .thumbnail > img,
4411 .thumbnail a > img {
4412 margin-left: auto;
4413 margin-right: auto;
4414 }
4415 a.thumbnail:hover,
4416 a.thumbnail:focus,
4417 a.thumbnail.active {
4418 border-color: #428bca;
4419 }
4420 .thumbnail .caption {
4421 padding: 9px;
4422 color: #000000;
4423 }
4424 .alert {
4425 padding: 15px;
4426 margin-bottom: 18px;
4427 border: 1px solid transparent;
4428 border-radius: 4px;
4429 }
4430 .alert h4 {
4431 margin-top: 0;
4432 color: inherit;
4433 }
4434 .alert .alert-link {
4435 font-weight: bold;
4436 }
4437 .alert > p,
4438 .alert > ul {
4439 margin-bottom: 0;
4440 }
4441 .alert > p + p {
4442 margin-top: 5px;
4443 }
4444 .alert-dismissable {
4445 padding-right: 35px;
4446 }
4447 .alert-dismissable .close {
4448 position: relative;
4449 top: -2px;
4450 right: -21px;
4451 color: inherit;
4452 }
4453 .alert-success {
4454 background-color: #dff0d8;
4455 border-color: #d6e9c6;
4456 color: #3c763d;
4457 }
4458 .alert-success hr {
4459 border-top-color: #c9e2b3;
4460 }
4461 .alert-success .alert-link {
4462 color: #2b542c;
4463 }
4464 .alert-info {
4465 background-color: #d9edf7;
4466 border-color: #bce8f1;
4467 color: #31708f;
4468 }
4469 .alert-info hr {
4470 border-top-color: #a6e1ec;
4471 }
4472 .alert-info .alert-link {
4473 color: #245269;
4474 }
4475 .alert-warning {
4476 background-color: #fcf8e3;
4477 border-color: #faebcc;
4478 color: #8a6d3b;
4479 }
4480 .alert-warning hr {
4481 border-top-color: #f7e1b5;
4482 }
4483 .alert-warning .alert-link {
4484 color: #66512c;
4485 }
4486 .alert-danger {
4487 background-color: #f2dede;
4488 border-color: #ebccd1;
4489 color: #a94442;
4490 }
4491 .alert-danger hr {
4492 border-top-color: #e4b9c0;
4493 }
4494 .alert-danger .alert-link {
4495 color: #843534;
4496 }
4497 @-webkit-keyframes progress-bar-stripes {
4498 from {
4499 background-position: 40px 0;
4500 }
4501 to {
4502 background-position: 0 0;
4503 }
4504 }
4505 @keyframes progress-bar-stripes {
4506 from {
4507 background-position: 40px 0;
4508 }
4509 to {
4510 background-position: 0 0;
4511 }
4512 }
4513 .progress {
4514 overflow: hidden;
4515 height: 18px;
4516 margin-bottom: 18px;
4517 background-color: #f5f5f5;
4518 border-radius: 4px;
4519 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4520 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4521 }
4522 .progress-bar {
4523 float: left;
4524 width: 0%;
4525 height: 100%;
4526 font-size: 12px;
4527 line-height: 18px;
4528 color: #ffffff;
4529 text-align: center;
4530 background-color: #428bca;
4531 -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4532 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4533 -webkit-transition: width 0.6s ease;
4534 transition: width 0.6s ease;
4535 }
4536 .progress-striped .progress-bar {
4537 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4538 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4539 background-size: 40px 40px;
4540 }
4541 .progress.active .progress-bar {
4542 -webkit-animation: progress-bar-stripes 2s linear infinite;
4543 animation: progress-bar-stripes 2s linear infinite;
4544 }
4545 .progress-bar-success {
4546 background-color: #5cb85c;
4547 }
4548 .progress-striped .progress-bar-success {
4549 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4550 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4551 }
4552 .progress-bar-info {
4553 background-color: #5bc0de;
4554 }
4555 .progress-striped .progress-bar-info {
4556 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4557 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4558 }
4559 .progress-bar-warning {
4560 background-color: #f0ad4e;
4561 }
4562 .progress-striped .progress-bar-warning {
4563 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4564 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4565 }
4566 .progress-bar-danger {
4567 background-color: #d9534f;
4568 }
4569 .progress-striped .progress-bar-danger {
4570 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4571 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4572 }
4573 .media,
4574 .media-body {
4575 overflow: hidden;
4576 zoom: 1;
4577 }
4578 .media,
4579 .media .media {
4580 margin-top: 15px;
4581 }
4582 .media:first-child {
4583 margin-top: 0;
4584 }
4585 .media-object {
4586 display: block;
4587 }
4588 .media-heading {
4589 margin: 0 0 5px;
4590 }
4591 .media > .pull-left {
4592 margin-right: 10px;
4593 }
4594 .media > .pull-right {
4595 margin-left: 10px;
4596 }
4597 .media-list {
4598 padding-left: 0;
4599 list-style: none;
4600 }
4601 .list-group {
4602 margin-bottom: 20px;
4603 padding-left: 0;
4604 }
4605 .list-group-item {
4606 position: relative;
4607 display: block;
4608 padding: 10px 15px;
4609 margin-bottom: -1px;
4610 background-color: #ffffff;
4611 border: 1px solid #dddddd;
4612 }
4613 .list-group-item:first-child {
4614 border-top-right-radius: 4px;
4615 border-top-left-radius: 4px;
4616 }
4617 .list-group-item:last-child {
4618 margin-bottom: 0;
4619 border-bottom-right-radius: 4px;
4620 border-bottom-left-radius: 4px;
4621 }
4622 .list-group-item > .badge {
4623 float: right;
4624 }
4625 .list-group-item > .badge + .badge {
4626 margin-right: 5px;
4627 }
4628 a.list-group-item {
4629 color: #555555;
4630 }
4631 a.list-group-item .list-group-item-heading {
4632 color: #333333;
4633 }
4634 a.list-group-item:hover,
4635 a.list-group-item:focus {
4636 text-decoration: none;
4637 background-color: #f5f5f5;
4638 }
4639 a.list-group-item.active,
4640 a.list-group-item.active:hover,
4641 a.list-group-item.active:focus {
4642 z-index: 2;
4643 color: #ffffff;
4644 background-color: #428bca;
4645 border-color: #428bca;
4646 }
4647 a.list-group-item.active .list-group-item-heading,
4648 a.list-group-item.active:hover .list-group-item-heading,
4649 a.list-group-item.active:focus .list-group-item-heading {
4650 color: inherit;
4651 }
4652 a.list-group-item.active .list-group-item-text,
4653 a.list-group-item.active:hover .list-group-item-text,
4654 a.list-group-item.active:focus .list-group-item-text {
4655 color: #e1edf7;
4656 }
4657 .list-group-item-success {
4658 color: #3c763d;
4659 background-color: #dff0d8;
4660 }
4661 a.list-group-item-success {
4662 color: #3c763d;
4663 }
4664 a.list-group-item-success .list-group-item-heading {
4665 color: inherit;
4666 }
4667 a.list-group-item-success:hover,
4668 a.list-group-item-success:focus {
4669 color: #3c763d;
4670 background-color: #d0e9c6;
4671 }
4672 a.list-group-item-success.active,
4673 a.list-group-item-success.active:hover,
4674 a.list-group-item-success.active:focus {
4675 color: #fff;
4676 background-color: #3c763d;
4677 border-color: #3c763d;
4678 }
4679 .list-group-item-info {
4680 color: #31708f;
4681 background-color: #d9edf7;
4682 }
4683 a.list-group-item-info {
4684 color: #31708f;
4685 }
4686 a.list-group-item-info .list-group-item-heading {
4687 color: inherit;
4688 }
4689 a.list-group-item-info:hover,
4690 a.list-group-item-info:focus {
4691 color: #31708f;
4692 background-color: #c4e3f3;
4693 }
4694 a.list-group-item-info.active,
4695 a.list-group-item-info.active:hover,
4696 a.list-group-item-info.active:focus {
4697 color: #fff;
4698 background-color: #31708f;
4699 border-color: #31708f;
4700 }
4701 .list-group-item-warning {
4702 color: #8a6d3b;
4703 background-color: #fcf8e3;
4704 }
4705 a.list-group-item-warning {
4706 color: #8a6d3b;
4707 }
4708 a.list-group-item-warning .list-group-item-heading {
4709 color: inherit;
4710 }
4711 a.list-group-item-warning:hover,
4712 a.list-group-item-warning:focus {
4713 color: #8a6d3b;
4714 background-color: #faf2cc;
4715 }
4716 a.list-group-item-warning.active,
4717 a.list-group-item-warning.active:hover,
4718 a.list-group-item-warning.active:focus {
4719 color: #fff;
4720 background-color: #8a6d3b;
4721 border-color: #8a6d3b;
4722 }
4723 .list-group-item-danger {
4724 color: #a94442;
4725 background-color: #f2dede;
4726 }
4727 a.list-group-item-danger {
4728 color: #a94442;
4729 }
4730 a.list-group-item-danger .list-group-item-heading {
4731 color: inherit;
4732 }
4733 a.list-group-item-danger:hover,
4734 a.list-group-item-danger:focus {
4735 color: #a94442;
4736 background-color: #ebcccc;
4737 }
4738 a.list-group-item-danger.active,
4739 a.list-group-item-danger.active:hover,
4740 a.list-group-item-danger.active:focus {
4741 color: #fff;
4742 background-color: #a94442;
4743 border-color: #a94442;
4744 }
4745 .list-group-item-heading {
4746 margin-top: 0;
4747 margin-bottom: 5px;
4748 }
4749 .list-group-item-text {
4750 margin-bottom: 0;
4751 line-height: 1.3;
4752 }
4753 .panel {
4754 margin-bottom: 18px;
4755 background-color: #ffffff;
4756 border: 1px solid transparent;
4757 border-radius: 4px;
4758 -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
4759 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
4760 }
4761 .panel-body {
4762 padding: 15px;
4763 }
4764 .panel-heading {
4765 padding: 10px 15px;
4766 border-bottom: 1px solid transparent;
4767 border-top-right-radius: 3px;
4768 border-top-left-radius: 3px;
4769 }
4770 .panel-heading > .dropdown .dropdown-toggle {
4771 color: inherit;
4772 }
4773 .panel-title {
4774 margin-top: 0;
4775 margin-bottom: 0;
4776 font-size: 15px;
4777 color: inherit;
4778 }
4779 .panel-title > a {
4780 color: inherit;
4781 }
4782 .panel-footer {
4783 padding: 10px 15px;
4784 background-color: #f5f5f5;
4785 border-top: 1px solid #dddddd;
4786 border-bottom-right-radius: 3px;
4787 border-bottom-left-radius: 3px;
4788 }
4789 .panel > .list-group {
4790 margin-bottom: 0;
4791 }
4792 .panel > .list-group .list-group-item {
4793 border-width: 1px 0;
4794 border-radius: 0;
4795 }
4796 .panel > .list-group:first-child .list-group-item:first-child {
4797 border-top: 0;
4798 border-top-right-radius: 3px;
4799 border-top-left-radius: 3px;
4800 }
4801 .panel > .list-group:last-child .list-group-item:last-child {
4802 border-bottom: 0;
4803 border-bottom-right-radius: 3px;
4804 border-bottom-left-radius: 3px;
4805 }
4806 .panel-heading + .list-group .list-group-item:first-child {
4807 border-top-width: 0;
4808 }
4809 .panel > .table,
4810 .panel > .table-responsive > .table {
4811 margin-bottom: 0;
4812 }
4813 .panel > .table:first-child,
4814 .panel > .table-responsive:first-child > .table:first-child {
4815 border-top-right-radius: 3px;
4816 border-top-left-radius: 3px;
4817 }
4818 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
4819 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
4820 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
4821 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
4822 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
4823 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
4824 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
4825 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
4826 border-top-left-radius: 3px;
4827 }
4828 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
4829 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
4830 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
4831 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
4832 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
4833 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
4834 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
4835 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
4836 border-top-right-radius: 3px;
4837 }
4838 .panel > .table:last-child,
4839 .panel > .table-responsive:last-child > .table:last-child {
4840 border-bottom-right-radius: 3px;
4841 border-bottom-left-radius: 3px;
4842 }
4843 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
4844 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
4845 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
4846 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
4847 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
4848 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
4849 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
4850 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
4851 border-bottom-left-radius: 3px;
4852 }
4853 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
4854 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
4855 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
4856 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
4857 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
4858 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
4859 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
4860 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
4861 border-bottom-right-radius: 3px;
4862 }
4863 .panel > .panel-body + .table,
4864 .panel > .panel-body + .table-responsive {
4865 border-top: 1px solid #dddddd;
4866 }
4867 .panel > .table > tbody:first-child > tr:first-child th,
4868 .panel > .table > tbody:first-child > tr:first-child td {
4869 border-top: 0;
4870 }
4871 .panel > .table-bordered,
4872 .panel > .table-responsive > .table-bordered {
4873 border: 0;
4874 }
4875 .panel > .table-bordered > thead > tr > th:first-child,
4876 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
4877 .panel > .table-bordered > tbody > tr > th:first-child,
4878 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
4879 .panel > .table-bordered > tfoot > tr > th:first-child,
4880 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
4881 .panel > .table-bordered > thead > tr > td:first-child,
4882 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
4883 .panel > .table-bordered > tbody > tr > td:first-child,
4884 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
4885 .panel > .table-bordered > tfoot > tr > td:first-child,
4886 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
4887 border-left: 0;
4888 }
4889 .panel > .table-bordered > thead > tr > th:last-child,
4890 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
4891 .panel > .table-bordered > tbody > tr > th:last-child,
4892 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
4893 .panel > .table-bordered > tfoot > tr > th:last-child,
4894 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
4895 .panel > .table-bordered > thead > tr > td:last-child,
4896 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
4897 .panel > .table-bordered > tbody > tr > td:last-child,
4898 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
4899 .panel > .table-bordered > tfoot > tr > td:last-child,
4900 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
4901 border-right: 0;
4902 }
4903 .panel > .table-bordered > thead > tr:first-child > td,
4904 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
4905 .panel > .table-bordered > tbody > tr:first-child > td,
4906 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
4907 .panel > .table-bordered > thead > tr:first-child > th,
4908 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
4909 .panel > .table-bordered > tbody > tr:first-child > th,
4910 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
4911 border-bottom: 0;
4912 }
4913 .panel > .table-bordered > tbody > tr:last-child > td,
4914 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
4915 .panel > .table-bordered > tfoot > tr:last-child > td,
4916 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
4917 .panel > .table-bordered > tbody > tr:last-child > th,
4918 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
4919 .panel > .table-bordered > tfoot > tr:last-child > th,
4920 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
4921 border-bottom: 0;
4922 }
4923 .panel > .table-responsive {
4924 border: 0;
4925 margin-bottom: 0;
4926 }
4927 .panel-group {
4928 margin-bottom: 18px;
4929 }
4930 .panel-group .panel {
4931 margin-bottom: 0;
4932 border-radius: 4px;
4933 overflow: hidden;
4934 }
4935 .panel-group .panel + .panel {
4936 margin-top: 5px;
4937 }
4938 .panel-group .panel-heading {
4939 border-bottom: 0;
4940 }
4941 .panel-group .panel-heading + .panel-collapse .panel-body {
4942 border-top: 1px solid #dddddd;
4943 }
4944 .panel-group .panel-footer {
4945 border-top: 0;
4946 }
4947 .panel-group .panel-footer + .panel-collapse .panel-body {
4948 border-bottom: 1px solid #dddddd;
4949 }
4950 .panel-default {
4951 border-color: #dddddd;
4952 }
4953 .panel-default > .panel-heading {
4954 color: #333333;
4955 background-color: #f5f5f5;
4956 border-color: #dddddd;
4957 }
4958 .panel-default > .panel-heading + .panel-collapse .panel-body {
4959 border-top-color: #dddddd;
4960 }
4961 .panel-default > .panel-footer + .panel-collapse .panel-body {
4962 border-bottom-color: #dddddd;
4963 }
4964 .panel-primary {
4965 border-color: #428bca;
4966 }
4967 .panel-primary > .panel-heading {
4968 color: #ffffff;
4969 background-color: #428bca;
4970 border-color: #428bca;
4971 }
4972 .panel-primary > .panel-heading + .panel-collapse .panel-body {
4973 border-top-color: #428bca;
4974 }
4975 .panel-primary > .panel-footer + .panel-collapse .panel-body {
4976 border-bottom-color: #428bca;
4977 }
4978 .panel-success {
4979 border-color: #d6e9c6;
4980 }
4981 .panel-success > .panel-heading {
4982 color: #3c763d;
4983 background-color: #dff0d8;
4984 border-color: #d6e9c6;
4985 }
4986 .panel-success > .panel-heading + .panel-collapse .panel-body {
4987 border-top-color: #d6e9c6;
4988 }
4989 .panel-success > .panel-footer + .panel-collapse .panel-body {
4990 border-bottom-color: #d6e9c6;
4991 }
4992 .panel-info {
4993 border-color: #bce8f1;
4994 }
4995 .panel-info > .panel-heading {
4996 color: #31708f;
4997 background-color: #d9edf7;
4998 border-color: #bce8f1;
4999 }
5000 .panel-info > .panel-heading + .panel-collapse .panel-body {
5001 border-top-color: #bce8f1;
5002 }
5003 .panel-info > .panel-footer + .panel-collapse .panel-body {
5004 border-bottom-color: #bce8f1;
5005 }
5006 .panel-warning {
5007 border-color: #faebcc;
5008 }
5009 .panel-warning > .panel-heading {
5010 color: #8a6d3b;
5011 background-color: #fcf8e3;
5012 border-color: #faebcc;
5013 }
5014 .panel-warning > .panel-heading + .panel-collapse .panel-body {
5015 border-top-color: #faebcc;
5016 }
5017 .panel-warning > .panel-footer + .panel-collapse .panel-body {
5018 border-bottom-color: #faebcc;
5019 }
5020 .panel-danger {
5021 border-color: #ebccd1;
5022 }
5023 .panel-danger > .panel-heading {
5024 color: #a94442;
5025 background-color: #f2dede;
5026 border-color: #ebccd1;
5027 }
5028 .panel-danger > .panel-heading + .panel-collapse .panel-body {
5029 border-top-color: #ebccd1;
5030 }
5031 .panel-danger > .panel-footer + .panel-collapse .panel-body {
5032 border-bottom-color: #ebccd1;
5033 }
5034 .well {
5035 min-height: 20px;
5036 padding: 19px;
5037 margin-bottom: 20px;
5038 background-color: #f5f5f5;
5039 border: 1px solid #e3e3e3;
5040 border-radius: 4px;
5041 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
5042 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
5043 }
5044 .well blockquote {
5045 border-color: #ddd;
5046 border-color: rgba(0, 0, 0, 0.15);
5047 }
5048 .well-lg {
5049 padding: 24px;
5050 border-radius: 6px;
5051 }
5052 .well-sm {
5053 padding: 9px;
5054 border-radius: 3px;
5055 }
5056 .close {
5057 float: right;
5058 font-size: 19.5px;
5059 font-weight: bold;
5060 line-height: 1;
5061 color: #000000;
5062 text-shadow: 0 1px 0 #ffffff;
5063 opacity: 0.2;
5064 filter: alpha(opacity=20);
5065 }
5066 .close:hover,
5067 .close:focus {
5068 color: #000000;
5069 text-decoration: none;
5070 cursor: pointer;
5071 opacity: 0.5;
5072 filter: alpha(opacity=50);
5073 }
5074 button.close {
5075 padding: 0;
5076 cursor: pointer;
5077 background: transparent;
5078 border: 0;
5079 -webkit-appearance: none;
5080 }
5081 .modal-open {
5082 overflow: hidden;
5083 }
5084 .modal {
5085 display: none;
5086 overflow: auto;
5087 overflow-y: scroll;
5088 position: fixed;
5089 top: 0;
5090 right: 0;
5091 bottom: 0;
5092 left: 0;
5093 z-index: 1050;
5094 -webkit-overflow-scrolling: touch;
5095 outline: 0;
5096 }
5097 .modal.fade .modal-dialog {
5098 -webkit-transform: translate(0, -25%);
5099 -ms-transform: translate(0, -25%);
5100 transform: translate(0, -25%);
5101 -webkit-transition: -webkit-transform 0.3s ease-out;
5102 -moz-transition: -moz-transform 0.3s ease-out;
5103 -o-transition: -o-transform 0.3s ease-out;
5104 transition: transform 0.3s ease-out;
5105 }
5106 .modal.in .modal-dialog {
5107 -webkit-transform: translate(0, 0);
5108 -ms-transform: translate(0, 0);
5109 transform: translate(0, 0);
5110 }
5111 .modal-dialog {
5112 position: relative;
5113 width: auto;
5114 margin: 10px;
5115 }
5116 .modal-content {
5117 position: relative;
5118 background-color: #ffffff;
5119 border: 1px solid #999999;
5120 border: 1px solid rgba(0, 0, 0, 0.2);
5121 border-radius: 6px;
5122 -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
5123 box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
5124 background-clip: padding-box;
5125 outline: none;
5126 }
5127 .modal-backdrop {
5128 position: fixed;
5129 top: 0;
5130 right: 0;
5131 bottom: 0;
5132 left: 0;
5133 z-index: 1040;
5134 background-color: #000000;
5135 }
5136 .modal-backdrop.fade {
5137 opacity: 0;
5138 filter: alpha(opacity=0);
5139 }
5140 .modal-backdrop.in {
5141 opacity: 0.5;
5142 filter: alpha(opacity=50);
5143 }
5144 .modal-header {
5145 padding: 15px;
5146 border-bottom: 1px solid #e5e5e5;
5147 min-height: 16.42857143px;
5148 }
5149 .modal-header .close {
5150 margin-top: -2px;
5151 }
5152 .modal-title {
5153 margin: 0;
5154 line-height: 1.42857143;
5155 }
5156 .modal-body {
5157 position: relative;
5158 padding: 15px;
5159 }
5160 .modal-footer {
5161 margin-top: 15px;
5162 padding: 14px 15px 15px;
5163 text-align: right;
5164 border-top: 1px solid #e5e5e5;
5165 }
5166 .modal-footer .btn + .btn {
5167 margin-left: 5px;
5168 margin-bottom: 0;
5169 }
5170 .modal-footer .btn-group .btn + .btn {
5171 margin-left: -1px;
5172 }
5173 .modal-footer .btn-block + .btn-block {
5174 margin-left: 0;
5175 }
5176 @media (min-width: 768px) {
5177 .modal-dialog {
5178 width: 600px;
5179 margin: 30px auto;
5180 }
5181 .modal-content {
5182 -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
5183 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
5184 }
5185 .modal-sm {
5186 width: 300px;
5187 }
5188 }
5189 @media (min-width: 992px) {
5190 .modal-lg {
5191 width: 900px;
5192 }
5193 }
5194 .tooltip {
5195 position: absolute;
5196 z-index: 1030;
5197 display: block;
5198 visibility: visible;
5199 font-size: 12px;
5200 line-height: 1.4;
5201 opacity: 0;
5202 filter: alpha(opacity=0);
5203 }
5204 .tooltip.in {
5205 opacity: 0.9;
5206 filter: alpha(opacity=90);
5207 }
5208 .tooltip.top {
5209 margin-top: -3px;
5210 padding: 5px 0;
5211 }
5212 .tooltip.right {
5213 margin-left: 3px;
5214 padding: 0 5px;
5215 }
5216 .tooltip.bottom {
5217 margin-top: 3px;
5218 padding: 5px 0;
5219 }
5220 .tooltip.left {
5221 margin-left: -3px;
5222 padding: 0 5px;
5223 }
5224 .tooltip-inner {
5225 max-width: 200px;
5226 padding: 3px 8px;
5227 color: #ffffff;
5228 text-align: center;
5229 text-decoration: none;
5230 background-color: #000000;
5231 border-radius: 4px;
5232 }
5233 .tooltip-arrow {
5234 position: absolute;
5235 width: 0;
5236 height: 0;
5237 border-color: transparent;
5238 border-style: solid;
5239 }
5240 .tooltip.top .tooltip-arrow {
5241 bottom: 0;
5242 left: 50%;
5243 margin-left: -5px;
5244 border-width: 5px 5px 0;
5245 border-top-color: #000000;
5246 }
5247 .tooltip.top-left .tooltip-arrow {
5248 bottom: 0;
5249 left: 5px;
5250 border-width: 5px 5px 0;
5251 border-top-color: #000000;
5252 }
5253 .tooltip.top-right .tooltip-arrow {
5254 bottom: 0;
5255 right: 5px;
5256 border-width: 5px 5px 0;
5257 border-top-color: #000000;
5258 }
5259 .tooltip.right .tooltip-arrow {
5260 top: 50%;
5261 left: 0;
5262 margin-top: -5px;
5263 border-width: 5px 5px 5px 0;
5264 border-right-color: #000000;
5265 }
5266 .tooltip.left .tooltip-arrow {
5267 top: 50%;
5268 right: 0;
5269 margin-top: -5px;
5270 border-width: 5px 0 5px 5px;
5271 border-left-color: #000000;
5272 }
5273 .tooltip.bottom .tooltip-arrow {
5274 top: 0;
5275 left: 50%;
5276 margin-left: -5px;
5277 border-width: 0 5px 5px;
5278 border-bottom-color: #000000;
5279 }
5280 .tooltip.bottom-left .tooltip-arrow {
5281 top: 0;
5282 left: 5px;
5283 border-width: 0 5px 5px;
5284 border-bottom-color: #000000;
5285 }
5286 .tooltip.bottom-right .tooltip-arrow {
5287 top: 0;
5288 right: 5px;
5289 border-width: 0 5px 5px;
5290 border-bottom-color: #000000;
5291 }
5292 .popover {
5293 position: absolute;
5294 top: 0;
5295 left: 0;
5296 z-index: 1010;
5297 display: none;
5298 max-width: 276px;
5299 padding: 1px;
5300 text-align: left;
5301 background-color: #ffffff;
5302 background-clip: padding-box;
5303 border: 1px solid #cccccc;
5304 border: 1px solid rgba(0, 0, 0, 0.2);
5305 border-radius: 6px;
5306 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5307 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5308 white-space: normal;
5309 }
5310 .popover.top {
5311 margin-top: -10px;
5312 }
5313 .popover.right {
5314 margin-left: 10px;
5315 }
5316 .popover.bottom {
5317 margin-top: 10px;
5318 }
5319 .popover.left {
5320 margin-left: -10px;
5321 }
5322 .popover-title {
5323 margin: 0;
5324 padding: 8px 14px;
5325 font-size: 13px;
5326 font-weight: normal;
5327 line-height: 18px;
5328 background-color: #f7f7f7;
5329 border-bottom: 1px solid #ebebeb;
5330 border-radius: 5px 5px 0 0;
5331 }
5332 .popover-content {
5333 padding: 9px 14px;
5334 }
5335 .popover > .arrow,
5336 .popover > .arrow:after {
5337 position: absolute;
5338 display: block;
5339 width: 0;
5340 height: 0;
5341 border-color: transparent;
5342 border-style: solid;
5343 }
5344 .popover > .arrow {
5345 border-width: 11px;
5346 }
5347 .popover > .arrow:after {
5348 border-width: 10px;
5349 content: "";
5350 }
5351 .popover.top > .arrow {
5352 left: 50%;
5353 margin-left: -11px;
5354 border-bottom-width: 0;
5355 border-top-color: #999999;
5356 border-top-color: rgba(0, 0, 0, 0.25);
5357 bottom: -11px;
5358 }
5359 .popover.top > .arrow:after {
5360 content: " ";
5361 bottom: 1px;
5362 margin-left: -10px;
5363 border-bottom-width: 0;
5364 border-top-color: #ffffff;
5365 }
5366 .popover.right > .arrow {
5367 top: 50%;
5368 left: -11px;
5369 margin-top: -11px;
5370 border-left-width: 0;
5371 border-right-color: #999999;
5372 border-right-color: rgba(0, 0, 0, 0.25);
5373 }
5374 .popover.right > .arrow:after {
5375 content: " ";
5376 left: 1px;
5377 bottom: -10px;
5378 border-left-width: 0;
5379 border-right-color: #ffffff;
5380 }
5381 .popover.bottom > .arrow {
5382 left: 50%;
5383 margin-left: -11px;
5384 border-top-width: 0;
5385 border-bottom-color: #999999;
5386 border-bottom-color: rgba(0, 0, 0, 0.25);
5387 top: -11px;
5388 }
5389 .popover.bottom > .arrow:after {
5390 content: " ";
5391 top: 1px;
5392 margin-left: -10px;
5393 border-top-width: 0;
5394 border-bottom-color: #ffffff;
5395 }
5396 .popover.left > .arrow {
5397 top: 50%;
5398 right: -11px;
5399 margin-top: -11px;
5400 border-right-width: 0;
5401 border-left-color: #999999;
5402 border-left-color: rgba(0, 0, 0, 0.25);
5403 }
5404 .popover.left > .arrow:after {
5405 content: " ";
5406 right: 1px;
5407 border-right-width: 0;
5408 border-left-color: #ffffff;
5409 bottom: -10px;
5410 }
5411 .carousel {
5412 position: relative;
5413 }
5414 .carousel-inner {
5415 position: relative;
5416 overflow: hidden;
5417 width: 100%;
5418 }
5419 .carousel-inner > .item {
5420 display: none;
5421 position: relative;
5422 -webkit-transition: 0.6s ease-in-out left;
5423 transition: 0.6s ease-in-out left;
5424 }
5425 .carousel-inner > .item > img,
5426 .carousel-inner > .item > a > img {
5427 line-height: 1;
5428 }
5429 .carousel-inner > .active,
5430 .carousel-inner > .next,
5431 .carousel-inner > .prev {
5432 display: block;
5433 }
5434 .carousel-inner > .active {
5435 left: 0;
5436 }
5437 .carousel-inner > .next,
5438 .carousel-inner > .prev {
5439 position: absolute;
5440 top: 0;
5441 width: 100%;
5442 }
5443 .carousel-inner > .next {
5444 left: 100%;
5445 }
5446 .carousel-inner > .prev {
5447 left: -100%;
5448 }
5449 .carousel-inner > .next.left,
5450 .carousel-inner > .prev.right {
5451 left: 0;
5452 }
5453 .carousel-inner > .active.left {
5454 left: -100%;
5455 }
5456 .carousel-inner > .active.right {
5457 left: 100%;
5458 }
5459 .carousel-control {
5460 position: absolute;
5461 top: 0;
5462 left: 0;
5463 bottom: 0;
5464 width: 15%;
5465 opacity: 0.5;
5466 filter: alpha(opacity=50);
5467 font-size: 20px;
5468 color: #ffffff;
5469 text-align: center;
5470 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5471 }
5472 .carousel-control.left {
5473 background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
5474 background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
5475 background-repeat: repeat-x;
5476 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
5477 }
5478 .carousel-control.right {
5479 left: auto;
5480 right: 0;
5481 background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
5482 background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
5483 background-repeat: repeat-x;
5484 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
5485 }
5486 .carousel-control:hover,
5487 .carousel-control:focus {
5488 outline: none;
5489 color: #ffffff;
5490 text-decoration: none;
5491 opacity: 0.9;
5492 filter: alpha(opacity=90);
5493 }
5494 .carousel-control .icon-prev,
5495 .carousel-control .icon-next,
5496 .carousel-control .glyphicon-chevron-left,
5497 .carousel-control .glyphicon-chevron-right {
5498 position: absolute;
5499 top: 50%;
5500 z-index: 5;
5501 display: inline-block;
5502 }
5503 .carousel-control .icon-prev,
5504 .carousel-control .glyphicon-chevron-left {
5505 left: 50%;
5506 }
5507 .carousel-control .icon-next,
5508 .carousel-control .glyphicon-chevron-right {
5509 right: 50%;
5510 }
5511 .carousel-control .icon-prev,
5512 .carousel-control .icon-next {
5513 width: 20px;
5514 height: 20px;
5515 margin-top: -10px;
5516 margin-left: -10px;
5517 font-family: serif;
5518 }
5519 .carousel-control .icon-prev:before {
5520 content: '\2039';
5521 }
5522 .carousel-control .icon-next:before {
5523 content: '\203a';
5524 }
5525 .carousel-indicators {
5526 position: absolute;
5527 bottom: 10px;
5528 left: 50%;
5529 z-index: 15;
5530 width: 60%;
5531 margin-left: -30%;
5532 padding-left: 0;
5533 list-style: none;
5534 text-align: center;
5535 }
5536 .carousel-indicators li {
5537 display: inline-block;
5538 width: 10px;
5539 height: 10px;
5540 margin: 1px;
5541 text-indent: -999px;
5542 border: 1px solid #ffffff;
5543 border-radius: 10px;
5544 cursor: pointer;
5545 background-color: #000 \9;
5546 background-color: rgba(0, 0, 0, 0);
5547 }
5548 .carousel-indicators .active {
5549 margin: 0;
5550 width: 12px;
5551 height: 12px;
5552 background-color: #ffffff;
5553 }
5554 .carousel-caption {
5555 position: absolute;
5556 left: 15%;
5557 right: 15%;
5558 bottom: 20px;
5559 z-index: 10;
5560 padding-top: 20px;
5561 padding-bottom: 20px;
5562 color: #ffffff;
5563 text-align: center;
5564 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5565 }
5566 .carousel-caption .btn {
5567 text-shadow: none;
5568 }
5569 @media screen and (min-width: 768px) {
5570 .carousel-control .glyphicon-chevron-left,
5571 .carousel-control .glyphicon-chevron-right,
5572 .carousel-control .icon-prev,
5573 .carousel-control .icon-next {
5574 width: 30px;
5575 height: 30px;
5576 margin-top: -15px;
5577 margin-left: -15px;
5578 font-size: 30px;
5579 }
5580 .carousel-caption {
5581 left: 20%;
5582 right: 20%;
5583 padding-bottom: 30px;
5584 }
5585 .carousel-indicators {
5586 bottom: 20px;
5587 }
5588 }
5589 .clearfix:before,
5590 .clearfix:after,
5591 .container:before,
5592 .container:after,
5593 .container-fluid:before,
5594 .container-fluid:after,
5595 .row:before,
5596 .row:after,
5597 .form-horizontal .form-group:before,
5598 .form-horizontal .form-group:after,
5599 .btn-toolbar:before,
5600 .btn-toolbar:after,
5601 .btn-group-vertical > .btn-group:before,
5602 .btn-group-vertical > .btn-group:after,
5603 .nav:before,
5604 .nav:after,
5605 .navbar:before,
5606 .navbar:after,
5607 .navbar-header:before,
5608 .navbar-header:after,
5609 .navbar-collapse:before,
5610 .navbar-collapse:after,
5611 .pager:before,
5612 .pager:after,
5613 .panel-body:before,
5614 .panel-body:after,
5615 .modal-footer:before,
5616 .modal-footer:after {
5617 content: " ";
5618 display: table;
5619 }
5620 .clearfix:after,
5621 .container:after,
5622 .container-fluid:after,
5623 .row:after,
5624 .form-horizontal .form-group:after,
5625 .btn-toolbar:after,
5626 .btn-group-vertical > .btn-group:after,
5627 .nav:after,
5628 .navbar:after,
5629 .navbar-header:after,
5630 .navbar-collapse:after,
5631 .pager:after,
5632 .panel-body:after,
5633 .modal-footer:after {
5634 clear: both;
5635 }
5636 .center-block {
5637 display: block;
5638 margin-left: auto;
5639 margin-right: auto;
5640 }
5641 .pull-right {
5642 float: right !important;
5643 }
5644 .pull-left {
5645 float: left !important;
5646 }
5647 .hide {
5648 display: none !important;
5649 }
5650 .show {
5651 display: block !important;
5652 }
5653 .invisible {
5654 visibility: hidden;
5655 }
5656 .text-hide {
5657 font: 0/0 a;
5658 color: transparent;
5659 text-shadow: none;
5660 background-color: transparent;
5661 border: 0;
5662 }
5663 .hidden {
5664 display: none !important;
5665 visibility: hidden !important;
5666 }
5667 .affix {
5668 position: fixed;
5669 }
5670 @-ms-viewport {
5671 width: device-width;
5672 }
5673 .visible-xs,
5674 .visible-sm,
5675 .visible-md,
5676 .visible-lg {
5677 display: none !important;
5678 }
5679 @media (max-width: 767px) {
5680 .visible-xs {
5681 display: block !important;
5682 }
5683 table.visible-xs {
5684 display: table;
5685 }
5686 tr.visible-xs {
5687 display: table-row !important;
5688 }
5689 th.visible-xs,
5690 td.visible-xs {
5691 display: table-cell !important;
5692 }
5693 }
5694 @media (min-width: 768px) and (max-width: 991px) {
5695 .visible-sm {
5696 display: block !important;
5697 }
5698 table.visible-sm {
5699 display: table;
5700 }
5701 tr.visible-sm {
5702 display: table-row !important;
5703 }
5704 th.visible-sm,
5705 td.visible-sm {
5706 display: table-cell !important;
5707 }
5708 }
5709 @media (min-width: 992px) and (max-width: 1199px) {
5710 .visible-md {
5711 display: block !important;
5712 }
5713 table.visible-md {
5714 display: table;
5715 }
5716 tr.visible-md {
5717 display: table-row !important;
5718 }
5719 th.visible-md,
5720 td.visible-md {
5721 display: table-cell !important;
5722 }
5723 }
5724 @media (min-width: 1200px) {
5725 .visible-lg {
5726 display: block !important;
5727 }
5728 table.visible-lg {
5729 display: table;
5730 }
5731 tr.visible-lg {
5732 display: table-row !important;
5733 }
5734 th.visible-lg,
5735 td.visible-lg {
5736 display: table-cell !important;
5737 }
5738 }
5739 @media (max-width: 767px) {
5740 .hidden-xs {
5741 display: none !important;
5742 }
5743 }
5744 @media (min-width: 768px) and (max-width: 991px) {
5745 .hidden-sm {
5746 display: none !important;
5747 }
5748 }
5749 @media (min-width: 992px) and (max-width: 1199px) {
5750 .hidden-md {
5751 display: none !important;
5752 }
5753 }
5754 @media (min-width: 1200px) {
5755 .hidden-lg {
5756 display: none !important;
5757 }
5758 }
5759 .visible-print {
5760 display: none !important;
5761 }
5762 @media print {
5763 .visible-print {
5764 display: block !important;
5765 }
5766 table.visible-print {
5767 display: table;
5768 }
5769 tr.visible-print {
5770 display: table-row !important;
5771 }
5772 th.visible-print,
5773 td.visible-print {
5774 display: table-cell !important;
5775 }
5776 }
5777 @media print {
5778 .hidden-print {
5779 display: none !important;
5780 }
5781 }
5782 /*!
6 *
5783 *
7 * Font Awesome
5784 * Font Awesome
8 *
5785 *
9 *//*!
5786 */
5787 /*!
10 * Font Awesome 3.2.1
5788 * Font Awesome 3.2.1
11 * the iconic font designed for Bootstrap
5789 * the iconic font designed for Bootstrap
12 * ------------------------------------------------------------------------------
5790 * ------------------------------------------------------------------------------
13 * The full suite of pictographic icons, examples, and documentation can be
5791 * The full suite of pictographic icons, examples, and documentation can be
14 * found at http://fontawesome.io. Stay up to date on Twitter at
5792 * found at http://fontawesome.io. Stay up to date on Twitter at
15 * http://twitter.com/fontawesome.
5793 * http://twitter.com/fontawesome.
16 *
5794 *
17 * License
5795 * License
18 * ------------------------------------------------------------------------------
5796 * ------------------------------------------------------------------------------
19 * - The Font Awesome font is licensed under SIL OFL 1.1 -
5797 * - The Font Awesome font is licensed under SIL OFL 1.1 -
20 * http://scripts.sil.org/OFL
5798 * http://scripts.sil.org/OFL
21 * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
5799 * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
22 * http://opensource.org/licenses/mit-license.html
5800 * http://opensource.org/licenses/mit-license.html
23 * - Font Awesome documentation licensed under CC BY 3.0 -
5801 * - Font Awesome documentation licensed under CC BY 3.0 -
24 * http://creativecommons.org/licenses/by/3.0/
5802 * http://creativecommons.org/licenses/by/3.0/
25 * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
5803 * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
26 * "Font Awesome by Dave Gandy - http://fontawesome.io"
5804 * "Font Awesome by Dave Gandy - http://fontawesome.io"
27 *
5805 *
28 * Author - Dave Gandy
5806 * Author - Dave Gandy
29 * ------------------------------------------------------------------------------
5807 * ------------------------------------------------------------------------------
30 * Email: dave@fontawesome.io
5808 * Email: dave@fontawesome.io
31 * Twitter: http://twitter.com/davegandy
5809 * Twitter: http://twitter.com/davegandy
32 * Work: Lead Product Designer @ Kyruus - http://kyruus.com
5810 * Work: Lead Product Designer @ Kyruus - http://kyruus.com
33 */@font-face{font-family:'FontAwesome';src:url('../components/font-awesome/font/fontawesome-webfont.eot?v=3.2.1');src:url('../components/font-awesome/font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'),url('../components/font-awesome/font/fontawesome-webfont.woff?v=3.2.1') format('woff'),url('../components/font-awesome/font/fontawesome-webfont.ttf?v=3.2.1') format('truetype'),url('../components/font-awesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');font-weight:normal;font-style:normal}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em}[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none}.icon-large:before{vertical-align:-10%;font-size:1.33333333em}a [class^="icon-"],a [class*=" icon-"]{display:inline}[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.14285714em;text-align:right;padding-right:.28571429em}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.42857143em}.icons-ul{margin-left:2.14285714em;list-style-type:none}.icons-ul>li{position:relative}.icons-ul .icon-li{position:absolute;left:-2.14285714em;width:2.14285714em;text-align:center;line-height:inherit}[class^="icon-"].hide,[class*=" icon-"].hide{display:none}.icon-muted{color:#eee}.icon-light{color:#fff}.icon-dark{color:#333}.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.icon-5x{font-size:5em}.icon-5x.icon-border{border-width:5px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.pull-right{float:right}.pull-left{float:left}[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em}[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em}[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0}.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none}.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em}.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block}.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em}.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em}.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em}.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em}.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em}.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em}.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{line-height:inherit}.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em}.icon-stack .icon-stack-base{font-size:2em;*line-height:1em}.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear}a .icon-stack,a .icon-spin{display:inline-block;text-decoration:none}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)}100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2)}.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)}.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}a .icon-rotate-90:before,a .icon-rotate-180:before,a .icon-rotate-270:before,a .icon-flip-horizontal:before,a .icon-flip-vertical:before{display:inline-block}.icon-glass:before{content:"\f000"}.icon-music:before{content:"\f001"}.icon-search:before{content:"\f002"}.icon-envelope-alt:before{content:"\f003"}.icon-heart:before{content:"\f004"}.icon-star:before{content:"\f005"}.icon-star-empty:before{content:"\f006"}.icon-user:before{content:"\f007"}.icon-film:before{content:"\f008"}.icon-th-large:before{content:"\f009"}.icon-th:before{content:"\f00a"}.icon-th-list:before{content:"\f00b"}.icon-ok:before{content:"\f00c"}.icon-remove:before{content:"\f00d"}.icon-zoom-in:before{content:"\f00e"}.icon-zoom-out:before{content:"\f010"}.icon-power-off:before,.icon-off:before{content:"\f011"}.icon-signal:before{content:"\f012"}.icon-gear:before,.icon-cog:before{content:"\f013"}.icon-trash:before{content:"\f014"}.icon-home:before{content:"\f015"}.icon-file-alt:before{content:"\f016"}.icon-time:before{content:"\f017"}.icon-road:before{content:"\f018"}.icon-download-alt:before{content:"\f019"}.icon-download:before{content:"\f01a"}.icon-upload:before{content:"\f01b"}.icon-inbox:before{content:"\f01c"}.icon-play-circle:before{content:"\f01d"}.icon-rotate-right:before,.icon-repeat:before{content:"\f01e"}.icon-refresh:before{content:"\f021"}.icon-list-alt:before{content:"\f022"}.icon-lock:before{content:"\f023"}.icon-flag:before{content:"\f024"}.icon-headphones:before{content:"\f025"}.icon-volume-off:before{content:"\f026"}.icon-volume-down:before{content:"\f027"}.icon-volume-up:before{content:"\f028"}.icon-qrcode:before{content:"\f029"}.icon-barcode:before{content:"\f02a"}.icon-tag:before{content:"\f02b"}.icon-tags:before{content:"\f02c"}.icon-book:before{content:"\f02d"}.icon-bookmark:before{content:"\f02e"}.icon-print:before{content:"\f02f"}.icon-camera:before{content:"\f030"}.icon-font:before{content:"\f031"}.icon-bold:before{content:"\f032"}.icon-italic:before{content:"\f033"}.icon-text-height:before{content:"\f034"}.icon-text-width:before{content:"\f035"}.icon-align-left:before{content:"\f036"}.icon-align-center:before{content:"\f037"}.icon-align-right:before{content:"\f038"}.icon-align-justify:before{content:"\f039"}.icon-list:before{content:"\f03a"}.icon-indent-left:before{content:"\f03b"}.icon-indent-right:before{content:"\f03c"}.icon-facetime-video:before{content:"\f03d"}.icon-picture:before{content:"\f03e"}.icon-pencil:before{content:"\f040"}.icon-map-marker:before{content:"\f041"}.icon-adjust:before{content:"\f042"}.icon-tint:before{content:"\f043"}.icon-edit:before{content:"\f044"}.icon-share:before{content:"\f045"}.icon-check:before{content:"\f046"}.icon-move:before{content:"\f047"}.icon-step-backward:before{content:"\f048"}.icon-fast-backward:before{content:"\f049"}.icon-backward:before{content:"\f04a"}.icon-play:before{content:"\f04b"}.icon-pause:before{content:"\f04c"}.icon-stop:before{content:"\f04d"}.icon-forward:before{content:"\f04e"}.icon-fast-forward:before{content:"\f050"}.icon-step-forward:before{content:"\f051"}.icon-eject:before{content:"\f052"}.icon-chevron-left:before{content:"\f053"}.icon-chevron-right:before{content:"\f054"}.icon-plus-sign:before{content:"\f055"}.icon-minus-sign:before{content:"\f056"}.icon-remove-sign:before{content:"\f057"}.icon-ok-sign:before{content:"\f058"}.icon-question-sign:before{content:"\f059"}.icon-info-sign:before{content:"\f05a"}.icon-screenshot:before{content:"\f05b"}.icon-remove-circle:before{content:"\f05c"}.icon-ok-circle:before{content:"\f05d"}.icon-ban-circle:before{content:"\f05e"}.icon-arrow-left:before{content:"\f060"}.icon-arrow-right:before{content:"\f061"}.icon-arrow-up:before{content:"\f062"}.icon-arrow-down:before{content:"\f063"}.icon-mail-forward:before,.icon-share-alt:before{content:"\f064"}.icon-resize-full:before{content:"\f065"}.icon-resize-small:before{content:"\f066"}.icon-plus:before{content:"\f067"}.icon-minus:before{content:"\f068"}.icon-asterisk:before{content:"\f069"}.icon-exclamation-sign:before{content:"\f06a"}.icon-gift:before{content:"\f06b"}.icon-leaf:before{content:"\f06c"}.icon-fire:before{content:"\f06d"}.icon-eye-open:before{content:"\f06e"}.icon-eye-close:before{content:"\f070"}.icon-warning-sign:before{content:"\f071"}.icon-plane:before{content:"\f072"}.icon-calendar:before{content:"\f073"}.icon-random:before{content:"\f074"}.icon-comment:before{content:"\f075"}.icon-magnet:before{content:"\f076"}.icon-chevron-up:before{content:"\f077"}.icon-chevron-down:before{content:"\f078"}.icon-retweet:before{content:"\f079"}.icon-shopping-cart:before{content:"\f07a"}.icon-folder-close:before{content:"\f07b"}.icon-folder-open:before{content:"\f07c"}.icon-resize-vertical:before{content:"\f07d"}.icon-resize-horizontal:before{content:"\f07e"}.icon-bar-chart:before{content:"\f080"}.icon-twitter-sign:before{content:"\f081"}.icon-facebook-sign:before{content:"\f082"}.icon-camera-retro:before{content:"\f083"}.icon-key:before{content:"\f084"}.icon-gears:before,.icon-cogs:before{content:"\f085"}.icon-comments:before{content:"\f086"}.icon-thumbs-up-alt:before{content:"\f087"}.icon-thumbs-down-alt:before{content:"\f088"}.icon-star-half:before{content:"\f089"}.icon-heart-empty:before{content:"\f08a"}.icon-signout:before{content:"\f08b"}.icon-linkedin-sign:before{content:"\f08c"}.icon-pushpin:before{content:"\f08d"}.icon-external-link:before{content:"\f08e"}.icon-signin:before{content:"\f090"}.icon-trophy:before{content:"\f091"}.icon-github-sign:before{content:"\f092"}.icon-upload-alt:before{content:"\f093"}.icon-lemon:before{content:"\f094"}.icon-phone:before{content:"\f095"}.icon-unchecked:before,.icon-check-empty:before{content:"\f096"}.icon-bookmark-empty:before{content:"\f097"}.icon-phone-sign:before{content:"\f098"}.icon-twitter:before{content:"\f099"}.icon-facebook:before{content:"\f09a"}.icon-github:before{content:"\f09b"}.icon-unlock:before{content:"\f09c"}.icon-credit-card:before{content:"\f09d"}.icon-rss:before{content:"\f09e"}.icon-hdd:before{content:"\f0a0"}.icon-bullhorn:before{content:"\f0a1"}.icon-bell:before{content:"\f0a2"}.icon-certificate:before{content:"\f0a3"}.icon-hand-right:before{content:"\f0a4"}.icon-hand-left:before{content:"\f0a5"}.icon-hand-up:before{content:"\f0a6"}.icon-hand-down:before{content:"\f0a7"}.icon-circle-arrow-left:before{content:"\f0a8"}.icon-circle-arrow-right:before{content:"\f0a9"}.icon-circle-arrow-up:before{content:"\f0aa"}.icon-circle-arrow-down:before{content:"\f0ab"}.icon-globe:before{content:"\f0ac"}.icon-wrench:before{content:"\f0ad"}.icon-tasks:before{content:"\f0ae"}.icon-filter:before{content:"\f0b0"}.icon-briefcase:before{content:"\f0b1"}.icon-fullscreen:before{content:"\f0b2"}.icon-group:before{content:"\f0c0"}.icon-link:before{content:"\f0c1"}.icon-cloud:before{content:"\f0c2"}.icon-beaker:before{content:"\f0c3"}.icon-cut:before{content:"\f0c4"}.icon-copy:before{content:"\f0c5"}.icon-paperclip:before,.icon-paper-clip:before{content:"\f0c6"}.icon-save:before{content:"\f0c7"}.icon-sign-blank:before{content:"\f0c8"}.icon-reorder:before{content:"\f0c9"}.icon-list-ul:before{content:"\f0ca"}.icon-list-ol:before{content:"\f0cb"}.icon-strikethrough:before{content:"\f0cc"}.icon-underline:before{content:"\f0cd"}.icon-table:before{content:"\f0ce"}.icon-magic:before{content:"\f0d0"}.icon-truck:before{content:"\f0d1"}.icon-pinterest:before{content:"\f0d2"}.icon-pinterest-sign:before{content:"\f0d3"}.icon-google-plus-sign:before{content:"\f0d4"}.icon-google-plus:before{content:"\f0d5"}.icon-money:before{content:"\f0d6"}.icon-caret-down:before{content:"\f0d7"}.icon-caret-up:before{content:"\f0d8"}.icon-caret-left:before{content:"\f0d9"}.icon-caret-right:before{content:"\f0da"}.icon-columns:before{content:"\f0db"}.icon-sort:before{content:"\f0dc"}.icon-sort-down:before{content:"\f0dd"}.icon-sort-up:before{content:"\f0de"}.icon-envelope:before{content:"\f0e0"}.icon-linkedin:before{content:"\f0e1"}.icon-rotate-left:before,.icon-undo:before{content:"\f0e2"}.icon-legal:before{content:"\f0e3"}.icon-dashboard:before{content:"\f0e4"}.icon-comment-alt:before{content:"\f0e5"}.icon-comments-alt:before{content:"\f0e6"}.icon-bolt:before{content:"\f0e7"}.icon-sitemap:before{content:"\f0e8"}.icon-umbrella:before{content:"\f0e9"}.icon-paste:before{content:"\f0ea"}.icon-lightbulb:before{content:"\f0eb"}.icon-exchange:before{content:"\f0ec"}.icon-cloud-download:before{content:"\f0ed"}.icon-cloud-upload:before{content:"\f0ee"}.icon-user-md:before{content:"\f0f0"}.icon-stethoscope:before{content:"\f0f1"}.icon-suitcase:before{content:"\f0f2"}.icon-bell-alt:before{content:"\f0f3"}.icon-coffee:before{content:"\f0f4"}.icon-food:before{content:"\f0f5"}.icon-file-text-alt:before{content:"\f0f6"}.icon-building:before{content:"\f0f7"}.icon-hospital:before{content:"\f0f8"}.icon-ambulance:before{content:"\f0f9"}.icon-medkit:before{content:"\f0fa"}.icon-fighter-jet:before{content:"\f0fb"}.icon-beer:before{content:"\f0fc"}.icon-h-sign:before{content:"\f0fd"}.icon-plus-sign-alt:before{content:"\f0fe"}.icon-double-angle-left:before{content:"\f100"}.icon-double-angle-right:before{content:"\f101"}.icon-double-angle-up:before{content:"\f102"}.icon-double-angle-down:before{content:"\f103"}.icon-angle-left:before{content:"\f104"}.icon-angle-right:before{content:"\f105"}.icon-angle-up:before{content:"\f106"}.icon-angle-down:before{content:"\f107"}.icon-desktop:before{content:"\f108"}.icon-laptop:before{content:"\f109"}.icon-tablet:before{content:"\f10a"}.icon-mobile-phone:before{content:"\f10b"}.icon-circle-blank:before{content:"\f10c"}.icon-quote-left:before{content:"\f10d"}.icon-quote-right:before{content:"\f10e"}.icon-spinner:before{content:"\f110"}.icon-circle:before{content:"\f111"}.icon-mail-reply:before,.icon-reply:before{content:"\f112"}.icon-github-alt:before{content:"\f113"}.icon-folder-close-alt:before{content:"\f114"}.icon-folder-open-alt:before{content:"\f115"}.icon-expand-alt:before{content:"\f116"}.icon-collapse-alt:before{content:"\f117"}.icon-smile:before{content:"\f118"}.icon-frown:before{content:"\f119"}.icon-meh:before{content:"\f11a"}.icon-gamepad:before{content:"\f11b"}.icon-keyboard:before{content:"\f11c"}.icon-flag-alt:before{content:"\f11d"}.icon-flag-checkered:before{content:"\f11e"}.icon-terminal:before{content:"\f120"}.icon-code:before{content:"\f121"}.icon-reply-all:before{content:"\f122"}.icon-mail-reply-all:before{content:"\f122"}.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123"}.icon-location-arrow:before{content:"\f124"}.icon-crop:before{content:"\f125"}.icon-code-fork:before{content:"\f126"}.icon-unlink:before{content:"\f127"}.icon-question:before{content:"\f128"}.icon-info:before{content:"\f129"}.icon-exclamation:before{content:"\f12a"}.icon-superscript:before{content:"\f12b"}.icon-subscript:before{content:"\f12c"}.icon-eraser:before{content:"\f12d"}.icon-puzzle-piece:before{content:"\f12e"}.icon-microphone:before{content:"\f130"}.icon-microphone-off:before{content:"\f131"}.icon-shield:before{content:"\f132"}.icon-calendar-empty:before{content:"\f133"}.icon-fire-extinguisher:before{content:"\f134"}.icon-rocket:before{content:"\f135"}.icon-maxcdn:before{content:"\f136"}.icon-chevron-sign-left:before{content:"\f137"}.icon-chevron-sign-right:before{content:"\f138"}.icon-chevron-sign-up:before{content:"\f139"}.icon-chevron-sign-down:before{content:"\f13a"}.icon-html5:before{content:"\f13b"}.icon-css3:before{content:"\f13c"}.icon-anchor:before{content:"\f13d"}.icon-unlock-alt:before{content:"\f13e"}.icon-bullseye:before{content:"\f140"}.icon-ellipsis-horizontal:before{content:"\f141"}.icon-ellipsis-vertical:before{content:"\f142"}.icon-rss-sign:before{content:"\f143"}.icon-play-sign:before{content:"\f144"}.icon-ticket:before{content:"\f145"}.icon-minus-sign-alt:before{content:"\f146"}.icon-check-minus:before{content:"\f147"}.icon-level-up:before{content:"\f148"}.icon-level-down:before{content:"\f149"}.icon-check-sign:before{content:"\f14a"}.icon-edit-sign:before{content:"\f14b"}.icon-external-link-sign:before{content:"\f14c"}.icon-share-sign:before{content:"\f14d"}.icon-compass:before{content:"\f14e"}.icon-collapse:before{content:"\f150"}.icon-collapse-top:before{content:"\f151"}.icon-expand:before{content:"\f152"}.icon-euro:before,.icon-eur:before{content:"\f153"}.icon-gbp:before{content:"\f154"}.icon-dollar:before,.icon-usd:before{content:"\f155"}.icon-rupee:before,.icon-inr:before{content:"\f156"}.icon-yen:before,.icon-jpy:before{content:"\f157"}.icon-renminbi:before,.icon-cny:before{content:"\f158"}.icon-won:before,.icon-krw:before{content:"\f159"}.icon-bitcoin:before,.icon-btc:before{content:"\f15a"}.icon-file:before{content:"\f15b"}.icon-file-text:before{content:"\f15c"}.icon-sort-by-alphabet:before{content:"\f15d"}.icon-sort-by-alphabet-alt:before{content:"\f15e"}.icon-sort-by-attributes:before{content:"\f160"}.icon-sort-by-attributes-alt:before{content:"\f161"}.icon-sort-by-order:before{content:"\f162"}.icon-sort-by-order-alt:before{content:"\f163"}.icon-thumbs-up:before{content:"\f164"}.icon-thumbs-down:before{content:"\f165"}.icon-youtube-sign:before{content:"\f166"}.icon-youtube:before{content:"\f167"}.icon-xing:before{content:"\f168"}.icon-xing-sign:before{content:"\f169"}.icon-youtube-play:before{content:"\f16a"}.icon-dropbox:before{content:"\f16b"}.icon-stackexchange:before{content:"\f16c"}.icon-instagram:before{content:"\f16d"}.icon-flickr:before{content:"\f16e"}.icon-adn:before{content:"\f170"}.icon-bitbucket:before{content:"\f171"}.icon-bitbucket-sign:before{content:"\f172"}.icon-tumblr:before{content:"\f173"}.icon-tumblr-sign:before{content:"\f174"}.icon-long-arrow-down:before{content:"\f175"}.icon-long-arrow-up:before{content:"\f176"}.icon-long-arrow-left:before{content:"\f177"}.icon-long-arrow-right:before{content:"\f178"}.icon-apple:before{content:"\f179"}.icon-windows:before{content:"\f17a"}.icon-android:before{content:"\f17b"}.icon-linux:before{content:"\f17c"}.icon-dribbble:before{content:"\f17d"}.icon-skype:before{content:"\f17e"}.icon-foursquare:before{content:"\f180"}.icon-trello:before{content:"\f181"}.icon-female:before{content:"\f182"}.icon-male:before{content:"\f183"}.icon-gittip:before{content:"\f184"}.icon-sun:before{content:"\f185"}.icon-moon:before{content:"\f186"}.icon-archive:before{content:"\f187"}.icon-bug:before{content:"\f188"}.icon-vk:before{content:"\f189"}.icon-weibo:before{content:"\f18a"}.icon-renren:before{content:"\f18b"}/*!
5811 */
5812 /* FONT PATH
5813 * -------------------------- */
5814 @font-face {
5815 font-family: 'FontAwesome';
5816 src: url('../components/font-awesome/font/fontawesome-webfont.eot?v=3.2.1');
5817 src: url('../components/font-awesome/font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'), url('../components/font-awesome/font/fontawesome-webfont.woff?v=3.2.1') format('woff'), url('../components/font-awesome/font/fontawesome-webfont.ttf?v=3.2.1') format('truetype'), url('../components/font-awesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');
5818 font-weight: normal;
5819 font-style: normal;
5820 }
5821 /* FONT AWESOME CORE
5822 * -------------------------- */
5823 [class^="icon-"],
5824 [class*=" icon-"] {
5825 font-family: FontAwesome;
5826 font-weight: normal;
5827 font-style: normal;
5828 text-decoration: inherit;
5829 -webkit-font-smoothing: antialiased;
5830 *margin-right: .3em;
5831 }
5832 [class^="icon-"]:before,
5833 [class*=" icon-"]:before {
5834 text-decoration: inherit;
5835 display: inline-block;
5836 speak: none;
5837 }
5838 /* makes the font 33% larger relative to the icon container */
5839 .icon-large:before {
5840 vertical-align: -10%;
5841 font-size: 1.33333333em;
5842 }
5843 /* makes sure icons active on rollover in links */
5844 a [class^="icon-"],
5845 a [class*=" icon-"] {
5846 display: inline;
5847 }
5848 /* increased font size for icon-large */
5849 [class^="icon-"].icon-fixed-width,
5850 [class*=" icon-"].icon-fixed-width {
5851 display: inline-block;
5852 width: 1.14285714em;
5853 text-align: right;
5854 padding-right: 0.28571429em;
5855 }
5856 [class^="icon-"].icon-fixed-width.icon-large,
5857 [class*=" icon-"].icon-fixed-width.icon-large {
5858 width: 1.42857143em;
5859 }
5860 .icons-ul {
5861 margin-left: 2.14285714em;
5862 list-style-type: none;
5863 }
5864 .icons-ul > li {
5865 position: relative;
5866 }
5867 .icons-ul .icon-li {
5868 position: absolute;
5869 left: -2.14285714em;
5870 width: 2.14285714em;
5871 text-align: center;
5872 line-height: inherit;
5873 }
5874 [class^="icon-"].hide,
5875 [class*=" icon-"].hide {
5876 display: none;
5877 }
5878 .icon-muted {
5879 color: #eeeeee;
5880 }
5881 .icon-light {
5882 color: #ffffff;
5883 }
5884 .icon-dark {
5885 color: #333333;
5886 }
5887 .icon-border {
5888 border: solid 1px #eeeeee;
5889 padding: .2em .25em .15em;
5890 -webkit-border-radius: 3px;
5891 -moz-border-radius: 3px;
5892 border-radius: 3px;
5893 }
5894 .icon-2x {
5895 font-size: 2em;
5896 }
5897 .icon-2x.icon-border {
5898 border-width: 2px;
5899 -webkit-border-radius: 4px;
5900 -moz-border-radius: 4px;
5901 border-radius: 4px;
5902 }
5903 .icon-3x {
5904 font-size: 3em;
5905 }
5906 .icon-3x.icon-border {
5907 border-width: 3px;
5908 -webkit-border-radius: 5px;
5909 -moz-border-radius: 5px;
5910 border-radius: 5px;
5911 }
5912 .icon-4x {
5913 font-size: 4em;
5914 }
5915 .icon-4x.icon-border {
5916 border-width: 4px;
5917 -webkit-border-radius: 6px;
5918 -moz-border-radius: 6px;
5919 border-radius: 6px;
5920 }
5921 .icon-5x {
5922 font-size: 5em;
5923 }
5924 .icon-5x.icon-border {
5925 border-width: 5px;
5926 -webkit-border-radius: 7px;
5927 -moz-border-radius: 7px;
5928 border-radius: 7px;
5929 }
5930 .pull-right {
5931 float: right;
5932 }
5933 .pull-left {
5934 float: left;
5935 }
5936 [class^="icon-"].pull-left,
5937 [class*=" icon-"].pull-left {
5938 margin-right: .3em;
5939 }
5940 [class^="icon-"].pull-right,
5941 [class*=" icon-"].pull-right {
5942 margin-left: .3em;
5943 }
5944 /* BOOTSTRAP SPECIFIC CLASSES
5945 * -------------------------- */
5946 /* Bootstrap 2.0 sprites.less reset */
5947 [class^="icon-"],
5948 [class*=" icon-"] {
5949 display: inline;
5950 width: auto;
5951 height: auto;
5952 line-height: normal;
5953 vertical-align: baseline;
5954 background-image: none;
5955 background-position: 0% 0%;
5956 background-repeat: repeat;
5957 margin-top: 0;
5958 }
5959 /* more sprites.less reset */
5960 .icon-white,
5961 .nav-pills > .active > a > [class^="icon-"],
5962 .nav-pills > .active > a > [class*=" icon-"],
5963 .nav-list > .active > a > [class^="icon-"],
5964 .nav-list > .active > a > [class*=" icon-"],
5965 .navbar-inverse .nav > .active > a > [class^="icon-"],
5966 .navbar-inverse .nav > .active > a > [class*=" icon-"],
5967 .dropdown-menu > li > a:hover > [class^="icon-"],
5968 .dropdown-menu > li > a:hover > [class*=" icon-"],
5969 .dropdown-menu > .active > a > [class^="icon-"],
5970 .dropdown-menu > .active > a > [class*=" icon-"],
5971 .dropdown-submenu:hover > a > [class^="icon-"],
5972 .dropdown-submenu:hover > a > [class*=" icon-"] {
5973 background-image: none;
5974 }
5975 /* keeps Bootstrap styles with and without icons the same */
5976 .btn [class^="icon-"].icon-large,
5977 .nav [class^="icon-"].icon-large,
5978 .btn [class*=" icon-"].icon-large,
5979 .nav [class*=" icon-"].icon-large {
5980 line-height: .9em;
5981 }
5982 .btn [class^="icon-"].icon-spin,
5983 .nav [class^="icon-"].icon-spin,
5984 .btn [class*=" icon-"].icon-spin,
5985 .nav [class*=" icon-"].icon-spin {
5986 display: inline-block;
5987 }
5988 .nav-tabs [class^="icon-"],
5989 .nav-pills [class^="icon-"],
5990 .nav-tabs [class*=" icon-"],
5991 .nav-pills [class*=" icon-"],
5992 .nav-tabs [class^="icon-"].icon-large,
5993 .nav-pills [class^="icon-"].icon-large,
5994 .nav-tabs [class*=" icon-"].icon-large,
5995 .nav-pills [class*=" icon-"].icon-large {
5996 line-height: .9em;
5997 }
5998 .btn [class^="icon-"].pull-left.icon-2x,
5999 .btn [class*=" icon-"].pull-left.icon-2x,
6000 .btn [class^="icon-"].pull-right.icon-2x,
6001 .btn [class*=" icon-"].pull-right.icon-2x {
6002 margin-top: .18em;
6003 }
6004 .btn [class^="icon-"].icon-spin.icon-large,
6005 .btn [class*=" icon-"].icon-spin.icon-large {
6006 line-height: .8em;
6007 }
6008 .btn.btn-small [class^="icon-"].pull-left.icon-2x,
6009 .btn.btn-small [class*=" icon-"].pull-left.icon-2x,
6010 .btn.btn-small [class^="icon-"].pull-right.icon-2x,
6011 .btn.btn-small [class*=" icon-"].pull-right.icon-2x {
6012 margin-top: .25em;
6013 }
6014 .btn.btn-large [class^="icon-"],
6015 .btn.btn-large [class*=" icon-"] {
6016 margin-top: 0;
6017 }
6018 .btn.btn-large [class^="icon-"].pull-left.icon-2x,
6019 .btn.btn-large [class*=" icon-"].pull-left.icon-2x,
6020 .btn.btn-large [class^="icon-"].pull-right.icon-2x,
6021 .btn.btn-large [class*=" icon-"].pull-right.icon-2x {
6022 margin-top: .05em;
6023 }
6024 .btn.btn-large [class^="icon-"].pull-left.icon-2x,
6025 .btn.btn-large [class*=" icon-"].pull-left.icon-2x {
6026 margin-right: .2em;
6027 }
6028 .btn.btn-large [class^="icon-"].pull-right.icon-2x,
6029 .btn.btn-large [class*=" icon-"].pull-right.icon-2x {
6030 margin-left: .2em;
6031 }
6032 /* Fixes alignment in nav lists */
6033 .nav-list [class^="icon-"],
6034 .nav-list [class*=" icon-"] {
6035 line-height: inherit;
6036 }
6037 /* EXTRAS
6038 * -------------------------- */
6039 /* Stacked and layered icon */
6040 .icon-stack {
6041 position: relative;
6042 display: inline-block;
6043 width: 2em;
6044 height: 2em;
6045 line-height: 2em;
6046 vertical-align: -35%;
6047 }
6048 .icon-stack [class^="icon-"],
6049 .icon-stack [class*=" icon-"] {
6050 display: block;
6051 text-align: center;
6052 position: absolute;
6053 width: 100%;
6054 height: 100%;
6055 font-size: 1em;
6056 line-height: inherit;
6057 *line-height: 2em;
6058 }
6059 .icon-stack .icon-stack-base {
6060 font-size: 2em;
6061 *line-height: 1em;
6062 }
6063 /* Animated rotating icon */
6064 .icon-spin {
6065 display: inline-block;
6066 -moz-animation: spin 2s infinite linear;
6067 -o-animation: spin 2s infinite linear;
6068 -webkit-animation: spin 2s infinite linear;
6069 animation: spin 2s infinite linear;
6070 }
6071 /* Prevent stack and spinners from being taken inline when inside a link */
6072 a .icon-stack,
6073 a .icon-spin {
6074 display: inline-block;
6075 text-decoration: none;
6076 }
6077 @-moz-keyframes spin {
6078 0% {
6079 -moz-transform: rotate(0deg);
6080 }
6081 100% {
6082 -moz-transform: rotate(359deg);
6083 }
6084 }
6085 @-webkit-keyframes spin {
6086 0% {
6087 -webkit-transform: rotate(0deg);
6088 }
6089 100% {
6090 -webkit-transform: rotate(359deg);
6091 }
6092 }
6093 @-o-keyframes spin {
6094 0% {
6095 -o-transform: rotate(0deg);
6096 }
6097 100% {
6098 -o-transform: rotate(359deg);
6099 }
6100 }
6101 @-ms-keyframes spin {
6102 0% {
6103 -ms-transform: rotate(0deg);
6104 }
6105 100% {
6106 -ms-transform: rotate(359deg);
6107 }
6108 }
6109 @keyframes spin {
6110 0% {
6111 transform: rotate(0deg);
6112 }
6113 100% {
6114 transform: rotate(359deg);
6115 }
6116 }
6117 /* Icon rotations and mirroring */
6118 .icon-rotate-90:before {
6119 -webkit-transform: rotate(90deg);
6120 -moz-transform: rotate(90deg);
6121 -ms-transform: rotate(90deg);
6122 -o-transform: rotate(90deg);
6123 transform: rotate(90deg);
6124 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
6125 }
6126 .icon-rotate-180:before {
6127 -webkit-transform: rotate(180deg);
6128 -moz-transform: rotate(180deg);
6129 -ms-transform: rotate(180deg);
6130 -o-transform: rotate(180deg);
6131 transform: rotate(180deg);
6132 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
6133 }
6134 .icon-rotate-270:before {
6135 -webkit-transform: rotate(270deg);
6136 -moz-transform: rotate(270deg);
6137 -ms-transform: rotate(270deg);
6138 -o-transform: rotate(270deg);
6139 transform: rotate(270deg);
6140 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
6141 }
6142 .icon-flip-horizontal:before {
6143 -webkit-transform: scale(-1, 1);
6144 -moz-transform: scale(-1, 1);
6145 -ms-transform: scale(-1, 1);
6146 -o-transform: scale(-1, 1);
6147 transform: scale(-1, 1);
6148 }
6149 .icon-flip-vertical:before {
6150 -webkit-transform: scale(1, -1);
6151 -moz-transform: scale(1, -1);
6152 -ms-transform: scale(1, -1);
6153 -o-transform: scale(1, -1);
6154 transform: scale(1, -1);
6155 }
6156 /* ensure rotation occurs inside anchor tags */
6157 a .icon-rotate-90:before,
6158 a .icon-rotate-180:before,
6159 a .icon-rotate-270:before,
6160 a .icon-flip-horizontal:before,
6161 a .icon-flip-vertical:before {
6162 display: inline-block;
6163 }
6164 /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
6165 readers do not read off random characters that represent icons */
6166 .icon-glass:before {
6167 content: "\f000";
6168 }
6169 .icon-music:before {
6170 content: "\f001";
6171 }
6172 .icon-search:before {
6173 content: "\f002";
6174 }
6175 .icon-envelope-alt:before {
6176 content: "\f003";
6177 }
6178 .icon-heart:before {
6179 content: "\f004";
6180 }
6181 .icon-star:before {
6182 content: "\f005";
6183 }
6184 .icon-star-empty:before {
6185 content: "\f006";
6186 }
6187 .icon-user:before {
6188 content: "\f007";
6189 }
6190 .icon-film:before {
6191 content: "\f008";
6192 }
6193 .icon-th-large:before {
6194 content: "\f009";
6195 }
6196 .icon-th:before {
6197 content: "\f00a";
6198 }
6199 .icon-th-list:before {
6200 content: "\f00b";
6201 }
6202 .icon-ok:before {
6203 content: "\f00c";
6204 }
6205 .icon-remove:before {
6206 content: "\f00d";
6207 }
6208 .icon-zoom-in:before {
6209 content: "\f00e";
6210 }
6211 .icon-zoom-out:before {
6212 content: "\f010";
6213 }
6214 .icon-power-off:before,
6215 .icon-off:before {
6216 content: "\f011";
6217 }
6218 .icon-signal:before {
6219 content: "\f012";
6220 }
6221 .icon-gear:before,
6222 .icon-cog:before {
6223 content: "\f013";
6224 }
6225 .icon-trash:before {
6226 content: "\f014";
6227 }
6228 .icon-home:before {
6229 content: "\f015";
6230 }
6231 .icon-file-alt:before {
6232 content: "\f016";
6233 }
6234 .icon-time:before {
6235 content: "\f017";
6236 }
6237 .icon-road:before {
6238 content: "\f018";
6239 }
6240 .icon-download-alt:before {
6241 content: "\f019";
6242 }
6243 .icon-download:before {
6244 content: "\f01a";
6245 }
6246 .icon-upload:before {
6247 content: "\f01b";
6248 }
6249 .icon-inbox:before {
6250 content: "\f01c";
6251 }
6252 .icon-play-circle:before {
6253 content: "\f01d";
6254 }
6255 .icon-rotate-right:before,
6256 .icon-repeat:before {
6257 content: "\f01e";
6258 }
6259 .icon-refresh:before {
6260 content: "\f021";
6261 }
6262 .icon-list-alt:before {
6263 content: "\f022";
6264 }
6265 .icon-lock:before {
6266 content: "\f023";
6267 }
6268 .icon-flag:before {
6269 content: "\f024";
6270 }
6271 .icon-headphones:before {
6272 content: "\f025";
6273 }
6274 .icon-volume-off:before {
6275 content: "\f026";
6276 }
6277 .icon-volume-down:before {
6278 content: "\f027";
6279 }
6280 .icon-volume-up:before {
6281 content: "\f028";
6282 }
6283 .icon-qrcode:before {
6284 content: "\f029";
6285 }
6286 .icon-barcode:before {
6287 content: "\f02a";
6288 }
6289 .icon-tag:before {
6290 content: "\f02b";
6291 }
6292 .icon-tags:before {
6293 content: "\f02c";
6294 }
6295 .icon-book:before {
6296 content: "\f02d";
6297 }
6298 .icon-bookmark:before {
6299 content: "\f02e";
6300 }
6301 .icon-print:before {
6302 content: "\f02f";
6303 }
6304 .icon-camera:before {
6305 content: "\f030";
6306 }
6307 .icon-font:before {
6308 content: "\f031";
6309 }
6310 .icon-bold:before {
6311 content: "\f032";
6312 }
6313 .icon-italic:before {
6314 content: "\f033";
6315 }
6316 .icon-text-height:before {
6317 content: "\f034";
6318 }
6319 .icon-text-width:before {
6320 content: "\f035";
6321 }
6322 .icon-align-left:before {
6323 content: "\f036";
6324 }
6325 .icon-align-center:before {
6326 content: "\f037";
6327 }
6328 .icon-align-right:before {
6329 content: "\f038";
6330 }
6331 .icon-align-justify:before {
6332 content: "\f039";
6333 }
6334 .icon-list:before {
6335 content: "\f03a";
6336 }
6337 .icon-indent-left:before {
6338 content: "\f03b";
6339 }
6340 .icon-indent-right:before {
6341 content: "\f03c";
6342 }
6343 .icon-facetime-video:before {
6344 content: "\f03d";
6345 }
6346 .icon-picture:before {
6347 content: "\f03e";
6348 }
6349 .icon-pencil:before {
6350 content: "\f040";
6351 }
6352 .icon-map-marker:before {
6353 content: "\f041";
6354 }
6355 .icon-adjust:before {
6356 content: "\f042";
6357 }
6358 .icon-tint:before {
6359 content: "\f043";
6360 }
6361 .icon-edit:before {
6362 content: "\f044";
6363 }
6364 .icon-share:before {
6365 content: "\f045";
6366 }
6367 .icon-check:before {
6368 content: "\f046";
6369 }
6370 .icon-move:before {
6371 content: "\f047";
6372 }
6373 .icon-step-backward:before {
6374 content: "\f048";
6375 }
6376 .icon-fast-backward:before {
6377 content: "\f049";
6378 }
6379 .icon-backward:before {
6380 content: "\f04a";
6381 }
6382 .icon-play:before {
6383 content: "\f04b";
6384 }
6385 .icon-pause:before {
6386 content: "\f04c";
6387 }
6388 .icon-stop:before {
6389 content: "\f04d";
6390 }
6391 .icon-forward:before {
6392 content: "\f04e";
6393 }
6394 .icon-fast-forward:before {
6395 content: "\f050";
6396 }
6397 .icon-step-forward:before {
6398 content: "\f051";
6399 }
6400 .icon-eject:before {
6401 content: "\f052";
6402 }
6403 .icon-chevron-left:before {
6404 content: "\f053";
6405 }
6406 .icon-chevron-right:before {
6407 content: "\f054";
6408 }
6409 .icon-plus-sign:before {
6410 content: "\f055";
6411 }
6412 .icon-minus-sign:before {
6413 content: "\f056";
6414 }
6415 .icon-remove-sign:before {
6416 content: "\f057";
6417 }
6418 .icon-ok-sign:before {
6419 content: "\f058";
6420 }
6421 .icon-question-sign:before {
6422 content: "\f059";
6423 }
6424 .icon-info-sign:before {
6425 content: "\f05a";
6426 }
6427 .icon-screenshot:before {
6428 content: "\f05b";
6429 }
6430 .icon-remove-circle:before {
6431 content: "\f05c";
6432 }
6433 .icon-ok-circle:before {
6434 content: "\f05d";
6435 }
6436 .icon-ban-circle:before {
6437 content: "\f05e";
6438 }
6439 .icon-arrow-left:before {
6440 content: "\f060";
6441 }
6442 .icon-arrow-right:before {
6443 content: "\f061";
6444 }
6445 .icon-arrow-up:before {
6446 content: "\f062";
6447 }
6448 .icon-arrow-down:before {
6449 content: "\f063";
6450 }
6451 .icon-mail-forward:before,
6452 .icon-share-alt:before {
6453 content: "\f064";
6454 }
6455 .icon-resize-full:before {
6456 content: "\f065";
6457 }
6458 .icon-resize-small:before {
6459 content: "\f066";
6460 }
6461 .icon-plus:before {
6462 content: "\f067";
6463 }
6464 .icon-minus:before {
6465 content: "\f068";
6466 }
6467 .icon-asterisk:before {
6468 content: "\f069";
6469 }
6470 .icon-exclamation-sign:before {
6471 content: "\f06a";
6472 }
6473 .icon-gift:before {
6474 content: "\f06b";
6475 }
6476 .icon-leaf:before {
6477 content: "\f06c";
6478 }
6479 .icon-fire:before {
6480 content: "\f06d";
6481 }
6482 .icon-eye-open:before {
6483 content: "\f06e";
6484 }
6485 .icon-eye-close:before {
6486 content: "\f070";
6487 }
6488 .icon-warning-sign:before {
6489 content: "\f071";
6490 }
6491 .icon-plane:before {
6492 content: "\f072";
6493 }
6494 .icon-calendar:before {
6495 content: "\f073";
6496 }
6497 .icon-random:before {
6498 content: "\f074";
6499 }
6500 .icon-comment:before {
6501 content: "\f075";
6502 }
6503 .icon-magnet:before {
6504 content: "\f076";
6505 }
6506 .icon-chevron-up:before {
6507 content: "\f077";
6508 }
6509 .icon-chevron-down:before {
6510 content: "\f078";
6511 }
6512 .icon-retweet:before {
6513 content: "\f079";
6514 }
6515 .icon-shopping-cart:before {
6516 content: "\f07a";
6517 }
6518 .icon-folder-close:before {
6519 content: "\f07b";
6520 }
6521 .icon-folder-open:before {
6522 content: "\f07c";
6523 }
6524 .icon-resize-vertical:before {
6525 content: "\f07d";
6526 }
6527 .icon-resize-horizontal:before {
6528 content: "\f07e";
6529 }
6530 .icon-bar-chart:before {
6531 content: "\f080";
6532 }
6533 .icon-twitter-sign:before {
6534 content: "\f081";
6535 }
6536 .icon-facebook-sign:before {
6537 content: "\f082";
6538 }
6539 .icon-camera-retro:before {
6540 content: "\f083";
6541 }
6542 .icon-key:before {
6543 content: "\f084";
6544 }
6545 .icon-gears:before,
6546 .icon-cogs:before {
6547 content: "\f085";
6548 }
6549 .icon-comments:before {
6550 content: "\f086";
6551 }
6552 .icon-thumbs-up-alt:before {
6553 content: "\f087";
6554 }
6555 .icon-thumbs-down-alt:before {
6556 content: "\f088";
6557 }
6558 .icon-star-half:before {
6559 content: "\f089";
6560 }
6561 .icon-heart-empty:before {
6562 content: "\f08a";
6563 }
6564 .icon-signout:before {
6565 content: "\f08b";
6566 }
6567 .icon-linkedin-sign:before {
6568 content: "\f08c";
6569 }
6570 .icon-pushpin:before {
6571 content: "\f08d";
6572 }
6573 .icon-external-link:before {
6574 content: "\f08e";
6575 }
6576 .icon-signin:before {
6577 content: "\f090";
6578 }
6579 .icon-trophy:before {
6580 content: "\f091";
6581 }
6582 .icon-github-sign:before {
6583 content: "\f092";
6584 }
6585 .icon-upload-alt:before {
6586 content: "\f093";
6587 }
6588 .icon-lemon:before {
6589 content: "\f094";
6590 }
6591 .icon-phone:before {
6592 content: "\f095";
6593 }
6594 .icon-unchecked:before,
6595 .icon-check-empty:before {
6596 content: "\f096";
6597 }
6598 .icon-bookmark-empty:before {
6599 content: "\f097";
6600 }
6601 .icon-phone-sign:before {
6602 content: "\f098";
6603 }
6604 .icon-twitter:before {
6605 content: "\f099";
6606 }
6607 .icon-facebook:before {
6608 content: "\f09a";
6609 }
6610 .icon-github:before {
6611 content: "\f09b";
6612 }
6613 .icon-unlock:before {
6614 content: "\f09c";
6615 }
6616 .icon-credit-card:before {
6617 content: "\f09d";
6618 }
6619 .icon-rss:before {
6620 content: "\f09e";
6621 }
6622 .icon-hdd:before {
6623 content: "\f0a0";
6624 }
6625 .icon-bullhorn:before {
6626 content: "\f0a1";
6627 }
6628 .icon-bell:before {
6629 content: "\f0a2";
6630 }
6631 .icon-certificate:before {
6632 content: "\f0a3";
6633 }
6634 .icon-hand-right:before {
6635 content: "\f0a4";
6636 }
6637 .icon-hand-left:before {
6638 content: "\f0a5";
6639 }
6640 .icon-hand-up:before {
6641 content: "\f0a6";
6642 }
6643 .icon-hand-down:before {
6644 content: "\f0a7";
6645 }
6646 .icon-circle-arrow-left:before {
6647 content: "\f0a8";
6648 }
6649 .icon-circle-arrow-right:before {
6650 content: "\f0a9";
6651 }
6652 .icon-circle-arrow-up:before {
6653 content: "\f0aa";
6654 }
6655 .icon-circle-arrow-down:before {
6656 content: "\f0ab";
6657 }
6658 .icon-globe:before {
6659 content: "\f0ac";
6660 }
6661 .icon-wrench:before {
6662 content: "\f0ad";
6663 }
6664 .icon-tasks:before {
6665 content: "\f0ae";
6666 }
6667 .icon-filter:before {
6668 content: "\f0b0";
6669 }
6670 .icon-briefcase:before {
6671 content: "\f0b1";
6672 }
6673 .icon-fullscreen:before {
6674 content: "\f0b2";
6675 }
6676 .icon-group:before {
6677 content: "\f0c0";
6678 }
6679 .icon-link:before {
6680 content: "\f0c1";
6681 }
6682 .icon-cloud:before {
6683 content: "\f0c2";
6684 }
6685 .icon-beaker:before {
6686 content: "\f0c3";
6687 }
6688 .icon-cut:before {
6689 content: "\f0c4";
6690 }
6691 .icon-copy:before {
6692 content: "\f0c5";
6693 }
6694 .icon-paperclip:before,
6695 .icon-paper-clip:before {
6696 content: "\f0c6";
6697 }
6698 .icon-save:before {
6699 content: "\f0c7";
6700 }
6701 .icon-sign-blank:before {
6702 content: "\f0c8";
6703 }
6704 .icon-reorder:before {
6705 content: "\f0c9";
6706 }
6707 .icon-list-ul:before {
6708 content: "\f0ca";
6709 }
6710 .icon-list-ol:before {
6711 content: "\f0cb";
6712 }
6713 .icon-strikethrough:before {
6714 content: "\f0cc";
6715 }
6716 .icon-underline:before {
6717 content: "\f0cd";
6718 }
6719 .icon-table:before {
6720 content: "\f0ce";
6721 }
6722 .icon-magic:before {
6723 content: "\f0d0";
6724 }
6725 .icon-truck:before {
6726 content: "\f0d1";
6727 }
6728 .icon-pinterest:before {
6729 content: "\f0d2";
6730 }
6731 .icon-pinterest-sign:before {
6732 content: "\f0d3";
6733 }
6734 .icon-google-plus-sign:before {
6735 content: "\f0d4";
6736 }
6737 .icon-google-plus:before {
6738 content: "\f0d5";
6739 }
6740 .icon-money:before {
6741 content: "\f0d6";
6742 }
6743 .icon-caret-down:before {
6744 content: "\f0d7";
6745 }
6746 .icon-caret-up:before {
6747 content: "\f0d8";
6748 }
6749 .icon-caret-left:before {
6750 content: "\f0d9";
6751 }
6752 .icon-caret-right:before {
6753 content: "\f0da";
6754 }
6755 .icon-columns:before {
6756 content: "\f0db";
6757 }
6758 .icon-sort:before {
6759 content: "\f0dc";
6760 }
6761 .icon-sort-down:before {
6762 content: "\f0dd";
6763 }
6764 .icon-sort-up:before {
6765 content: "\f0de";
6766 }
6767 .icon-envelope:before {
6768 content: "\f0e0";
6769 }
6770 .icon-linkedin:before {
6771 content: "\f0e1";
6772 }
6773 .icon-rotate-left:before,
6774 .icon-undo:before {
6775 content: "\f0e2";
6776 }
6777 .icon-legal:before {
6778 content: "\f0e3";
6779 }
6780 .icon-dashboard:before {
6781 content: "\f0e4";
6782 }
6783 .icon-comment-alt:before {
6784 content: "\f0e5";
6785 }
6786 .icon-comments-alt:before {
6787 content: "\f0e6";
6788 }
6789 .icon-bolt:before {
6790 content: "\f0e7";
6791 }
6792 .icon-sitemap:before {
6793 content: "\f0e8";
6794 }
6795 .icon-umbrella:before {
6796 content: "\f0e9";
6797 }
6798 .icon-paste:before {
6799 content: "\f0ea";
6800 }
6801 .icon-lightbulb:before {
6802 content: "\f0eb";
6803 }
6804 .icon-exchange:before {
6805 content: "\f0ec";
6806 }
6807 .icon-cloud-download:before {
6808 content: "\f0ed";
6809 }
6810 .icon-cloud-upload:before {
6811 content: "\f0ee";
6812 }
6813 .icon-user-md:before {
6814 content: "\f0f0";
6815 }
6816 .icon-stethoscope:before {
6817 content: "\f0f1";
6818 }
6819 .icon-suitcase:before {
6820 content: "\f0f2";
6821 }
6822 .icon-bell-alt:before {
6823 content: "\f0f3";
6824 }
6825 .icon-coffee:before {
6826 content: "\f0f4";
6827 }
6828 .icon-food:before {
6829 content: "\f0f5";
6830 }
6831 .icon-file-text-alt:before {
6832 content: "\f0f6";
6833 }
6834 .icon-building:before {
6835 content: "\f0f7";
6836 }
6837 .icon-hospital:before {
6838 content: "\f0f8";
6839 }
6840 .icon-ambulance:before {
6841 content: "\f0f9";
6842 }
6843 .icon-medkit:before {
6844 content: "\f0fa";
6845 }
6846 .icon-fighter-jet:before {
6847 content: "\f0fb";
6848 }
6849 .icon-beer:before {
6850 content: "\f0fc";
6851 }
6852 .icon-h-sign:before {
6853 content: "\f0fd";
6854 }
6855 .icon-plus-sign-alt:before {
6856 content: "\f0fe";
6857 }
6858 .icon-double-angle-left:before {
6859 content: "\f100";
6860 }
6861 .icon-double-angle-right:before {
6862 content: "\f101";
6863 }
6864 .icon-double-angle-up:before {
6865 content: "\f102";
6866 }
6867 .icon-double-angle-down:before {
6868 content: "\f103";
6869 }
6870 .icon-angle-left:before {
6871 content: "\f104";
6872 }
6873 .icon-angle-right:before {
6874 content: "\f105";
6875 }
6876 .icon-angle-up:before {
6877 content: "\f106";
6878 }
6879 .icon-angle-down:before {
6880 content: "\f107";
6881 }
6882 .icon-desktop:before {
6883 content: "\f108";
6884 }
6885 .icon-laptop:before {
6886 content: "\f109";
6887 }
6888 .icon-tablet:before {
6889 content: "\f10a";
6890 }
6891 .icon-mobile-phone:before {
6892 content: "\f10b";
6893 }
6894 .icon-circle-blank:before {
6895 content: "\f10c";
6896 }
6897 .icon-quote-left:before {
6898 content: "\f10d";
6899 }
6900 .icon-quote-right:before {
6901 content: "\f10e";
6902 }
6903 .icon-spinner:before {
6904 content: "\f110";
6905 }
6906 .icon-circle:before {
6907 content: "\f111";
6908 }
6909 .icon-mail-reply:before,
6910 .icon-reply:before {
6911 content: "\f112";
6912 }
6913 .icon-github-alt:before {
6914 content: "\f113";
6915 }
6916 .icon-folder-close-alt:before {
6917 content: "\f114";
6918 }
6919 .icon-folder-open-alt:before {
6920 content: "\f115";
6921 }
6922 .icon-expand-alt:before {
6923 content: "\f116";
6924 }
6925 .icon-collapse-alt:before {
6926 content: "\f117";
6927 }
6928 .icon-smile:before {
6929 content: "\f118";
6930 }
6931 .icon-frown:before {
6932 content: "\f119";
6933 }
6934 .icon-meh:before {
6935 content: "\f11a";
6936 }
6937 .icon-gamepad:before {
6938 content: "\f11b";
6939 }
6940 .icon-keyboard:before {
6941 content: "\f11c";
6942 }
6943 .icon-flag-alt:before {
6944 content: "\f11d";
6945 }
6946 .icon-flag-checkered:before {
6947 content: "\f11e";
6948 }
6949 .icon-terminal:before {
6950 content: "\f120";
6951 }
6952 .icon-code:before {
6953 content: "\f121";
6954 }
6955 .icon-reply-all:before {
6956 content: "\f122";
6957 }
6958 .icon-mail-reply-all:before {
6959 content: "\f122";
6960 }
6961 .icon-star-half-full:before,
6962 .icon-star-half-empty:before {
6963 content: "\f123";
6964 }
6965 .icon-location-arrow:before {
6966 content: "\f124";
6967 }
6968 .icon-crop:before {
6969 content: "\f125";
6970 }
6971 .icon-code-fork:before {
6972 content: "\f126";
6973 }
6974 .icon-unlink:before {
6975 content: "\f127";
6976 }
6977 .icon-question:before {
6978 content: "\f128";
6979 }
6980 .icon-info:before {
6981 content: "\f129";
6982 }
6983 .icon-exclamation:before {
6984 content: "\f12a";
6985 }
6986 .icon-superscript:before {
6987 content: "\f12b";
6988 }
6989 .icon-subscript:before {
6990 content: "\f12c";
6991 }
6992 .icon-eraser:before {
6993 content: "\f12d";
6994 }
6995 .icon-puzzle-piece:before {
6996 content: "\f12e";
6997 }
6998 .icon-microphone:before {
6999 content: "\f130";
7000 }
7001 .icon-microphone-off:before {
7002 content: "\f131";
7003 }
7004 .icon-shield:before {
7005 content: "\f132";
7006 }
7007 .icon-calendar-empty:before {
7008 content: "\f133";
7009 }
7010 .icon-fire-extinguisher:before {
7011 content: "\f134";
7012 }
7013 .icon-rocket:before {
7014 content: "\f135";
7015 }
7016 .icon-maxcdn:before {
7017 content: "\f136";
7018 }
7019 .icon-chevron-sign-left:before {
7020 content: "\f137";
7021 }
7022 .icon-chevron-sign-right:before {
7023 content: "\f138";
7024 }
7025 .icon-chevron-sign-up:before {
7026 content: "\f139";
7027 }
7028 .icon-chevron-sign-down:before {
7029 content: "\f13a";
7030 }
7031 .icon-html5:before {
7032 content: "\f13b";
7033 }
7034 .icon-css3:before {
7035 content: "\f13c";
7036 }
7037 .icon-anchor:before {
7038 content: "\f13d";
7039 }
7040 .icon-unlock-alt:before {
7041 content: "\f13e";
7042 }
7043 .icon-bullseye:before {
7044 content: "\f140";
7045 }
7046 .icon-ellipsis-horizontal:before {
7047 content: "\f141";
7048 }
7049 .icon-ellipsis-vertical:before {
7050 content: "\f142";
7051 }
7052 .icon-rss-sign:before {
7053 content: "\f143";
7054 }
7055 .icon-play-sign:before {
7056 content: "\f144";
7057 }
7058 .icon-ticket:before {
7059 content: "\f145";
7060 }
7061 .icon-minus-sign-alt:before {
7062 content: "\f146";
7063 }
7064 .icon-check-minus:before {
7065 content: "\f147";
7066 }
7067 .icon-level-up:before {
7068 content: "\f148";
7069 }
7070 .icon-level-down:before {
7071 content: "\f149";
7072 }
7073 .icon-check-sign:before {
7074 content: "\f14a";
7075 }
7076 .icon-edit-sign:before {
7077 content: "\f14b";
7078 }
7079 .icon-external-link-sign:before {
7080 content: "\f14c";
7081 }
7082 .icon-share-sign:before {
7083 content: "\f14d";
7084 }
7085 .icon-compass:before {
7086 content: "\f14e";
7087 }
7088 .icon-collapse:before {
7089 content: "\f150";
7090 }
7091 .icon-collapse-top:before {
7092 content: "\f151";
7093 }
7094 .icon-expand:before {
7095 content: "\f152";
7096 }
7097 .icon-euro:before,
7098 .icon-eur:before {
7099 content: "\f153";
7100 }
7101 .icon-gbp:before {
7102 content: "\f154";
7103 }
7104 .icon-dollar:before,
7105 .icon-usd:before {
7106 content: "\f155";
7107 }
7108 .icon-rupee:before,
7109 .icon-inr:before {
7110 content: "\f156";
7111 }
7112 .icon-yen:before,
7113 .icon-jpy:before {
7114 content: "\f157";
7115 }
7116 .icon-renminbi:before,
7117 .icon-cny:before {
7118 content: "\f158";
7119 }
7120 .icon-won:before,
7121 .icon-krw:before {
7122 content: "\f159";
7123 }
7124 .icon-bitcoin:before,
7125 .icon-btc:before {
7126 content: "\f15a";
7127 }
7128 .icon-file:before {
7129 content: "\f15b";
7130 }
7131 .icon-file-text:before {
7132 content: "\f15c";
7133 }
7134 .icon-sort-by-alphabet:before {
7135 content: "\f15d";
7136 }
7137 .icon-sort-by-alphabet-alt:before {
7138 content: "\f15e";
7139 }
7140 .icon-sort-by-attributes:before {
7141 content: "\f160";
7142 }
7143 .icon-sort-by-attributes-alt:before {
7144 content: "\f161";
7145 }
7146 .icon-sort-by-order:before {
7147 content: "\f162";
7148 }
7149 .icon-sort-by-order-alt:before {
7150 content: "\f163";
7151 }
7152 .icon-thumbs-up:before {
7153 content: "\f164";
7154 }
7155 .icon-thumbs-down:before {
7156 content: "\f165";
7157 }
7158 .icon-youtube-sign:before {
7159 content: "\f166";
7160 }
7161 .icon-youtube:before {
7162 content: "\f167";
7163 }
7164 .icon-xing:before {
7165 content: "\f168";
7166 }
7167 .icon-xing-sign:before {
7168 content: "\f169";
7169 }
7170 .icon-youtube-play:before {
7171 content: "\f16a";
7172 }
7173 .icon-dropbox:before {
7174 content: "\f16b";
7175 }
7176 .icon-stackexchange:before {
7177 content: "\f16c";
7178 }
7179 .icon-instagram:before {
7180 content: "\f16d";
7181 }
7182 .icon-flickr:before {
7183 content: "\f16e";
7184 }
7185 .icon-adn:before {
7186 content: "\f170";
7187 }
7188 .icon-bitbucket:before {
7189 content: "\f171";
7190 }
7191 .icon-bitbucket-sign:before {
7192 content: "\f172";
7193 }
7194 .icon-tumblr:before {
7195 content: "\f173";
7196 }
7197 .icon-tumblr-sign:before {
7198 content: "\f174";
7199 }
7200 .icon-long-arrow-down:before {
7201 content: "\f175";
7202 }
7203 .icon-long-arrow-up:before {
7204 content: "\f176";
7205 }
7206 .icon-long-arrow-left:before {
7207 content: "\f177";
7208 }
7209 .icon-long-arrow-right:before {
7210 content: "\f178";
7211 }
7212 .icon-apple:before {
7213 content: "\f179";
7214 }
7215 .icon-windows:before {
7216 content: "\f17a";
7217 }
7218 .icon-android:before {
7219 content: "\f17b";
7220 }
7221 .icon-linux:before {
7222 content: "\f17c";
7223 }
7224 .icon-dribbble:before {
7225 content: "\f17d";
7226 }
7227 .icon-skype:before {
7228 content: "\f17e";
7229 }
7230 .icon-foursquare:before {
7231 content: "\f180";
7232 }
7233 .icon-trello:before {
7234 content: "\f181";
7235 }
7236 .icon-female:before {
7237 content: "\f182";
7238 }
7239 .icon-male:before {
7240 content: "\f183";
7241 }
7242 .icon-gittip:before {
7243 content: "\f184";
7244 }
7245 .icon-sun:before {
7246 content: "\f185";
7247 }
7248 .icon-moon:before {
7249 content: "\f186";
7250 }
7251 .icon-archive:before {
7252 content: "\f187";
7253 }
7254 .icon-bug:before {
7255 content: "\f188";
7256 }
7257 .icon-vk:before {
7258 content: "\f189";
7259 }
7260 .icon-weibo:before {
7261 content: "\f18a";
7262 }
7263 .icon-renren:before {
7264 content: "\f18b";
7265 }
7266 /*!
34 *
7267 *
35 * IPython base
7268 * IPython base
36 *
7269 *
37 */.modal.fade .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);transform:translate(0, 0)}code{color:#000}pre{font-size:inherit;line-height:inherit}label{font-weight:normal}.border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.corner-all{border-radius:4px}.no-padding{padding:0}.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;display:flex;flex-direction:row;align-items:stretch}.hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.vbox{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;display:flex;flex-direction:column;align-items:stretch}.vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.hbox.reverse,.vbox.reverse,.reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse;flex-direction:row-reverse}.hbox.box-flex0,.vbox.box-flex0,.box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;width:auto}.hbox.box-flex1,.vbox.box-flex1,.box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.hbox.box-flex,.vbox.box-flex,.box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.hbox.box-flex2,.vbox.box-flex2,.box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2;flex:2}.box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1}.box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2}.hbox.start,.vbox.start,.start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;justify-content:flex-start}.hbox.end,.vbox.end,.end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end;justify-content:flex-end}.hbox.center,.vbox.center,.center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center;justify-content:center}.hbox.align-start,.vbox.align-start,.align-start{-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.hbox.align-end,.vbox.align-end,.align-end{-webkit-box-align:end;-moz-box-align:end;box-align:end;align-items:flex-end}.hbox.align-center,.vbox.align-center,.align-center{-webkit-box-align:center;-moz-box-align:center;box-align:center;align-items:center}div.error{margin:2em;text-align:center}div.error>h1{font-size:500%;line-height:normal}div.error>p{font-size:200%;line-height:normal}div.traceback-wrapper{text-align:left;max-width:800px;margin:auto}body{background-color:#fff;position:absolute;left:0;right:0;top:0;bottom:0;overflow:visible}div#header{display:none;margin-bottom:0;padding-left:30px;padding-bottom:5px;border-bottom:1px solid #e7e7e7}#ipython_notebook{padding-left:0}#noscript{width:auto;padding-top:16px;padding-bottom:16px;text-align:center;font-size:22px;color:#f00;font-weight:bold}#ipython_notebook img{font-family:Verdana,"Helvetica Neue",Arial,Helvetica,Geneva,sans-serif;height:24px;text-decoration:none;color:#000}#site{width:100%;display:none}.ui-button .ui-button-text{padding:.2em .8em;font-size:77%}input.ui-button{padding:.3em .9em}.navbar span{margin-top:3px}span#login_widget{float:right}.nav-header{text-transform:none}#header>span{margin-top:10px}.modal_stretch .modal-dialog{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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;min-height:80%}.modal_stretch .modal-dialog .modal-body{max-height:none;flex:1}@media (min-width:768px){.modal .modal-dialog{width:700px}}/*!
7270 */
7271 .modal.fade .modal-dialog {
7272 -webkit-transform: translate(0, 0);
7273 -ms-transform: translate(0, 0);
7274 transform: translate(0, 0);
7275 }
7276 code {
7277 color: #000000;
7278 }
7279 pre {
7280 font-size: inherit;
7281 line-height: inherit;
7282 }
7283 label {
7284 font-weight: normal;
7285 }
7286 .border-box-sizing {
7287 box-sizing: border-box;
7288 -moz-box-sizing: border-box;
7289 -webkit-box-sizing: border-box;
7290 }
7291 .corner-all {
7292 border-radius: 4px;
7293 }
7294 .no-padding {
7295 padding: 0px;
7296 }
7297 /* Flexible box model classes */
7298 /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
7299 /* This file is a compatability layer. It allows the usage of flexible box
7300 model layouts accross multiple browsers, including older browsers. The newest,
7301 universal implementation of the flexible box model is used when available (see
7302 `Modern browsers` comments below). Browsers that are known to implement this
7303 new spec completely include:
7304
7305 Firefox 28.0+
7306 Chrome 29.0+
7307 Internet Explorer 11+
7308 Opera 17.0+
7309
7310 Browsers not listed, including Safari, are supported via the styling under the
7311 `Old browsers` comments below.
7312 */
7313 .hbox {
7314 /* Old browsers */
7315 display: -webkit-box;
7316 -webkit-box-orient: horizontal;
7317 -webkit-box-align: stretch;
7318 display: -moz-box;
7319 -moz-box-orient: horizontal;
7320 -moz-box-align: stretch;
7321 display: box;
7322 box-orient: horizontal;
7323 box-align: stretch;
7324 /* Modern browsers */
7325 display: flex;
7326 flex-direction: row;
7327 align-items: stretch;
7328 }
7329 .hbox > * {
7330 /* Old browsers */
7331 -webkit-box-flex: 0;
7332 -moz-box-flex: 0;
7333 box-flex: 0;
7334 /* Modern browsers */
7335 flex: none;
7336 }
7337 .vbox {
7338 /* Old browsers */
7339 display: -webkit-box;
7340 -webkit-box-orient: vertical;
7341 -webkit-box-align: stretch;
7342 display: -moz-box;
7343 -moz-box-orient: vertical;
7344 -moz-box-align: stretch;
7345 display: box;
7346 box-orient: vertical;
7347 box-align: stretch;
7348 /* Modern browsers */
7349 display: flex;
7350 flex-direction: column;
7351 align-items: stretch;
7352 }
7353 .vbox > * {
7354 /* Old browsers */
7355 -webkit-box-flex: 0;
7356 -moz-box-flex: 0;
7357 box-flex: 0;
7358 /* Modern browsers */
7359 flex: none;
7360 }
7361 .hbox.reverse,
7362 .vbox.reverse,
7363 .reverse {
7364 /* Old browsers */
7365 -webkit-box-direction: reverse;
7366 -moz-box-direction: reverse;
7367 box-direction: reverse;
7368 /* Modern browsers */
7369 flex-direction: row-reverse;
7370 }
7371 .hbox.box-flex0,
7372 .vbox.box-flex0,
7373 .box-flex0 {
7374 /* Old browsers */
7375 -webkit-box-flex: 0;
7376 -moz-box-flex: 0;
7377 box-flex: 0;
7378 /* Modern browsers */
7379 flex: none;
7380 width: auto;
7381 }
7382 .hbox.box-flex1,
7383 .vbox.box-flex1,
7384 .box-flex1 {
7385 /* Old browsers */
7386 -webkit-box-flex: 1;
7387 -moz-box-flex: 1;
7388 box-flex: 1;
7389 /* Modern browsers */
7390 flex: 1;
7391 }
7392 .hbox.box-flex,
7393 .vbox.box-flex,
7394 .box-flex {
7395 /* Old browsers */
7396 /* Old browsers */
7397 -webkit-box-flex: 1;
7398 -moz-box-flex: 1;
7399 box-flex: 1;
7400 /* Modern browsers */
7401 flex: 1;
7402 }
7403 .hbox.box-flex2,
7404 .vbox.box-flex2,
7405 .box-flex2 {
7406 /* Old browsers */
7407 -webkit-box-flex: 2;
7408 -moz-box-flex: 2;
7409 box-flex: 2;
7410 /* Modern browsers */
7411 flex: 2;
7412 }
7413 .box-group1 {
7414 /* Deprecated */
7415 -webkit-box-flex-group: 1;
7416 -moz-box-flex-group: 1;
7417 box-flex-group: 1;
7418 }
7419 .box-group2 {
7420 /* Deprecated */
7421 -webkit-box-flex-group: 2;
7422 -moz-box-flex-group: 2;
7423 box-flex-group: 2;
7424 }
7425 .hbox.start,
7426 .vbox.start,
7427 .start {
7428 /* Old browsers */
7429 -webkit-box-pack: start;
7430 -moz-box-pack: start;
7431 box-pack: start;
7432 /* Modern browsers */
7433 justify-content: flex-start;
7434 }
7435 .hbox.end,
7436 .vbox.end,
7437 .end {
7438 /* Old browsers */
7439 -webkit-box-pack: end;
7440 -moz-box-pack: end;
7441 box-pack: end;
7442 /* Modern browsers */
7443 justify-content: flex-end;
7444 }
7445 .hbox.center,
7446 .vbox.center,
7447 .center {
7448 /* Old browsers */
7449 -webkit-box-pack: center;
7450 -moz-box-pack: center;
7451 box-pack: center;
7452 /* Modern browsers */
7453 justify-content: center;
7454 }
7455 .hbox.align-start,
7456 .vbox.align-start,
7457 .align-start {
7458 /* Old browsers */
7459 -webkit-box-align: start;
7460 -moz-box-align: start;
7461 box-align: start;
7462 /* Modern browsers */
7463 align-items: flex-start;
7464 }
7465 .hbox.align-end,
7466 .vbox.align-end,
7467 .align-end {
7468 /* Old browsers */
7469 -webkit-box-align: end;
7470 -moz-box-align: end;
7471 box-align: end;
7472 /* Modern browsers */
7473 align-items: flex-end;
7474 }
7475 .hbox.align-center,
7476 .vbox.align-center,
7477 .align-center {
7478 /* Old browsers */
7479 -webkit-box-align: center;
7480 -moz-box-align: center;
7481 box-align: center;
7482 /* Modern browsers */
7483 align-items: center;
7484 }
7485 div.error {
7486 margin: 2em;
7487 text-align: center;
7488 }
7489 div.error > h1 {
7490 font-size: 500%;
7491 line-height: normal;
7492 }
7493 div.error > p {
7494 font-size: 200%;
7495 line-height: normal;
7496 }
7497 div.traceback-wrapper {
7498 text-align: left;
7499 max-width: 800px;
7500 margin: auto;
7501 }
7502 /**
7503 * Primary styles
7504 *
7505 * Author: IPython Development Team
7506 */
7507 body {
7508 background-color: white;
7509 /* This makes sure that the body covers the entire window and needs to
7510 be in a different element than the display: box in wrapper below */
7511 position: absolute;
7512 left: 0px;
7513 right: 0px;
7514 top: 0px;
7515 bottom: 0px;
7516 overflow: visible;
7517 }
7518 div#header {
7519 /* Initially hidden to prevent FLOUC */
7520 display: none;
7521 margin-bottom: 0px;
7522 padding-left: 30px;
7523 padding-bottom: 5px;
7524 border-bottom: 1px solid #e7e7e7;
7525 }
7526 #ipython_notebook {
7527 padding-left: 0px;
7528 }
7529 #noscript {
7530 width: auto;
7531 padding-top: 16px;
7532 padding-bottom: 16px;
7533 text-align: center;
7534 font-size: 22px;
7535 color: red;
7536 font-weight: bold;
7537 }
7538 #ipython_notebook img {
7539 font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
7540 height: 24px;
7541 text-decoration: none;
7542 color: black;
7543 }
7544 #site {
7545 width: 100%;
7546 display: none;
7547 }
7548 /* Smaller buttons */
7549 .ui-button .ui-button-text {
7550 padding: 0.2em 0.8em;
7551 font-size: 77%;
7552 }
7553 input.ui-button {
7554 padding: 0.3em 0.9em;
7555 }
7556 .navbar span {
7557 margin-top: 3px;
7558 }
7559 span#login_widget {
7560 float: right;
7561 }
7562 .nav-header {
7563 text-transform: none;
7564 }
7565 #header > span {
7566 margin-top: 10px;
7567 }
7568 .modal_stretch .modal-dialog {
7569 /* Old browsers */
7570 display: -webkit-box;
7571 -webkit-box-orient: vertical;
7572 -webkit-box-align: stretch;
7573 display: -moz-box;
7574 -moz-box-orient: vertical;
7575 -moz-box-align: stretch;
7576 display: box;
7577 box-orient: vertical;
7578 box-align: stretch;
7579 /* Modern browsers */
7580 display: flex;
7581 flex-direction: column;
7582 align-items: stretch;
7583 /* Old browsers */
7584 -webkit-box-flex: 0;
7585 -moz-box-flex: 0;
7586 box-flex: 0;
7587 /* Modern browsers */
7588 flex: none;
7589 min-height: 80%;
7590 }
7591 .modal_stretch .modal-dialog .modal-body {
7592 max-height: none;
7593 flex: 1;
7594 }
7595 @media (min-width: 768px) {
7596 .modal .modal-dialog {
7597 width: 700px;
7598 }
7599 }
7600 /*!
38 *
7601 *
39 * IPython auth
7602 * IPython auth
40 *
7603 *
41 */.center-nav{display:inline-block;margin-bottom:-4px}/*!
7604 */
7605 .center-nav {
7606 display: inline-block;
7607 margin-bottom: -4px;
7608 }
7609 /*!
42 *
7610 *
43 * IPython tree view
7611 * IPython tree view
44 *
7612 *
45 */.alternate_upload{background-color:none;display:inline}.alternate_upload.form{padding:0;margin:0}.alternate_upload input.fileinput{background-color:#f00;position:relative;opacity:0;z-index:2;width:295px;margin-left:163px;cursor:pointer;height:26px}ul#tabs{margin-bottom:4px}ul#tabs a{padding-top:6px;padding-bottom:4px}ul.breadcrumb a:focus,ul.breadcrumb a:hover{text-decoration:none}ul.breadcrumb i.icon-home{font-size:16px;margin-right:4px}ul.breadcrumb span{color:#5e5e5e}.list_toolbar{padding:4px 0 4px 0;vertical-align:middle}.list_toolbar .tree-buttons{padding-top:2px}.list_toolbar [class*="span"]{min-height:24px}.list_header{font-weight:bold}.list_container{margin-top:4px;margin-bottom:20px;border:1px solid #ababab;border-radius:4px}.list_container>div{border-bottom:1px solid #ababab}.list_container>div:hover .list-item{background-color:#f00}.list_container>div:last-child{border:none}.list_item:hover .list_item{background-color:#ddd}.list_item a{text-decoration:none}.action_col{text-align:right}.list_header>div,.list_item>div{padding-top:4px;padding-bottom:4px;padding-left:7px;padding-right:7px;line-height:22px}.item_name{line-height:22px;height:24px}.item_icon{font-size:14px;color:#5e5e5e;margin-right:7px}.item_buttons{line-height:1em}.toolbar_info{height:24px;line-height:24px}input.nbname_input,input.engine_num_input{padding-top:3px;padding-bottom:3px;height:22px;line-height:14px;margin:0}input.engine_num_input{width:60px}.highlight_text{color:#00f}#project_name>.breadcrumb{padding:0;margin-bottom:0;background-color:transparent;font-weight:bold}.tab-content .row{margin-left:0;margin-right:0}.folder_icon:before{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;content:"\f114"}.notebook_icon:before{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;content:"\f02d"}/*!
7613 */
7614 /* We need an invisible input field on top of the sentense*/
7615 /* "Drag file onto the list ..." */
7616 .alternate_upload {
7617 background-color: none;
7618 display: inline;
7619 }
7620 .alternate_upload.form {
7621 padding: 0;
7622 margin: 0;
7623 }
7624 .alternate_upload input.fileinput {
7625 background-color: red;
7626 position: relative;
7627 opacity: 0;
7628 z-index: 2;
7629 width: 295px;
7630 margin-left: 163px;
7631 cursor: pointer;
7632 height: 26px;
7633 }
7634 /**
7635 * Primary styles
7636 *
7637 * Author: IPython Development Team
7638 */
7639 ul#tabs {
7640 margin-bottom: 4px;
7641 }
7642 ul#tabs a {
7643 padding-top: 6px;
7644 padding-bottom: 4px;
7645 }
7646 ul.breadcrumb a:focus,
7647 ul.breadcrumb a:hover {
7648 text-decoration: none;
7649 }
7650 ul.breadcrumb i.icon-home {
7651 font-size: 16px;
7652 margin-right: 4px;
7653 }
7654 ul.breadcrumb span {
7655 color: #5e5e5e;
7656 }
7657 .list_toolbar {
7658 padding: 4px 0 4px 0;
7659 vertical-align: middle;
7660 }
7661 .list_toolbar .tree-buttons {
7662 padding-top: 2px;
7663 }
7664 .list_toolbar [class*="span"] {
7665 min-height: 24px;
7666 }
7667 .list_header {
7668 font-weight: bold;
7669 }
7670 .list_container {
7671 margin-top: 4px;
7672 margin-bottom: 20px;
7673 border: 1px solid #ababab;
7674 border-radius: 4px;
7675 }
7676 .list_container > div {
7677 border-bottom: 1px solid #ababab;
7678 }
7679 .list_container > div:hover .list-item {
7680 background-color: red;
7681 }
7682 .list_container > div:last-child {
7683 border: none;
7684 }
7685 .list_item:hover .list_item {
7686 background-color: #ddd;
7687 }
7688 .list_item a {
7689 text-decoration: none;
7690 }
7691 .action_col {
7692 text-align: right;
7693 }
7694 .list_header > div,
7695 .list_item > div {
7696 padding-top: 4px;
7697 padding-bottom: 4px;
7698 padding-left: 7px;
7699 padding-right: 7px;
7700 line-height: 22px;
7701 }
7702 .item_name {
7703 line-height: 22px;
7704 height: 24px;
7705 }
7706 .item_icon {
7707 font-size: 14px;
7708 color: #5e5e5e;
7709 margin-right: 7px;
7710 }
7711 .item_buttons {
7712 line-height: 1em;
7713 }
7714 .toolbar_info {
7715 height: 24px;
7716 line-height: 24px;
7717 }
7718 input.nbname_input,
7719 input.engine_num_input {
7720 padding-top: 3px;
7721 padding-bottom: 3px;
7722 height: 22px;
7723 line-height: 14px;
7724 margin: 0px;
7725 }
7726 input.engine_num_input {
7727 width: 60px;
7728 }
7729 .highlight_text {
7730 color: blue;
7731 }
7732 #project_name > .breadcrumb {
7733 padding: 0px;
7734 margin-bottom: 0px;
7735 background-color: transparent;
7736 font-weight: bold;
7737 }
7738 .tab-content .row {
7739 margin-left: 0px;
7740 margin-right: 0px;
7741 }
7742 .folder_icon:before {
7743 font-family: FontAwesome;
7744 font-weight: normal;
7745 font-style: normal;
7746 text-decoration: inherit;
7747 -webkit-font-smoothing: antialiased;
7748 *margin-right: .3em;
7749 content: "\f114";
7750 }
7751 .notebook_icon:before {
7752 font-family: FontAwesome;
7753 font-weight: normal;
7754 font-style: normal;
7755 text-decoration: inherit;
7756 -webkit-font-smoothing: antialiased;
7757 *margin-right: .3em;
7758 content: "\f02d";
7759 }
7760 /*!
46 *
7761 *
47 * IPython notebook
7762 * IPython notebook
48 *
7763 *
49 */.ansibold{font-weight:bold}.ansiblack{color:#000}.ansired{color:#8b0000}.ansigreen{color:#006400}.ansiyellow{color:#a52a2a}.ansiblue{color:#00008b}.ansipurple{color:#9400d3}.ansicyan{color:#4682b4}.ansigray{color:#808080}.ansibgblack{background-color:#000}.ansibgred{background-color:#f00}.ansibggreen{background-color:#008000}.ansibgyellow{background-color:#ff0}.ansibgblue{background-color:#00f}.ansibgpurple{background-color:#f0f}.ansibgcyan{background-color:#0ff}.ansibggray{background-color:#808080}div.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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;border-radius:4px;border-width:thin;border-style:solid}div.cell.selected{border-color:#ababab}div.cell.edit_mode{border-color:#008000}div.cell{width:100%;padding:5px 5px 5px 0;margin:0;outline:none}div.prompt{min-width:15ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.21429em}@media (max-width:480px){div.prompt{text-align:left}}div.inner_cell{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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7;line-height:1.21429em}div.prompt:empty{padding-top:0;padding-bottom:0}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;display:flex;flex-direction:row;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}@media (max-width:480px){div.input{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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}}div.input_prompt{color:#000080;border-top:1px solid transparent}div.input_area>div.highlight{margin:.4em;border:none;padding:0;background-color:transparent}div.input_area>div.highlight>pre{margin:0;border:none;padding:0;background-color:transparent}.CodeMirror{line-height:1.21429em;height:auto;background:none}.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto}.CodeMirror-lines{padding:.4em}.CodeMirror-linenumber{padding:0 8px 0 4px}.CodeMirror-gutters{border-bottom-left-radius:4px;border-top-left-radius:4px}.CodeMirror pre{padding:0;border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.CodeMirror-vscrollbar,.CodeMirror-hscrollbar{display:none !important}pre code{display:block;padding:.5em}.highlight-base,pre code,pre .subst,pre .tag .title,pre .lisp .title,pre .clojure .built_in,pre .nginx .title{color:#000}.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}.highlight-comment,pre .comment,pre .annotation,pre .template_comment,pre .diff .header,pre .chunk,pre .markdown .blockquote{color:#408080;font-style:italic}.highlight-number,pre .number,pre .date,pre .regexp,pre .literal,pre .smalltalk .symbol,pre .smalltalk .char,pre .go .constant,pre .change,pre .markdown .bullet,pre .markdown .link_url{color:#080}pre .label,pre .javadoc,pre .ruby .string,pre .decorator,pre .filter .argument,pre .localvars,pre .array,pre .attr_selector,pre .important,pre .pseudo,pre .pi,pre .doctype,pre .deletion,pre .envvar,pre .shebang,pre .apache .sqbracket,pre .nginx .built_in,pre .tex .formula,pre .erlang_repl .reserved,pre .prompt,pre .markdown .link_label,pre .vhdl .attribute,pre .clojure .attribute,pre .coffeescript .property{color:#88f}.highlight-keyword,pre .keyword,pre .id,pre .phpdoc,pre .aggregate,pre .css .tag,pre .javadoctag,pre .phpdoc,pre .yardoctag,pre .smalltalk .class,pre .winutils,pre .bash .variable,pre .apache .tag,pre .go .typename,pre .tex .command,pre .markdown .strong,pre .request,pre .status{color:#008000;font-weight:bold}.highlight-builtin,pre .built_in{color:#008000}pre .markdown .emphasis{font-style:italic}pre .nginx .built_in{font-weight:normal}pre .coffeescript .javascript,pre .javascript .xml,pre .tex .formula,pre .xml .javascript,pre .xml .vbscript,pre .xml .css,pre .xml .cdata{opacity:.5}.cm-s-ipython span.cm-variable{color:#000}.cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold}.cm-s-ipython span.cm-number{color:#080}.cm-s-ipython span.cm-comment{color:#408080;font-style:italic}.cm-s-ipython span.cm-string{color:#ba2121}.cm-s-ipython span.cm-builtin{color:#008000}.cm-s-ipython span.cm-error{color:#f00}.cm-s-ipython span.cm-operator{color:#a2f;font-weight:bold}.cm-s-ipython span.cm-meta{color:#a2f}.cm-s-ipython span.cm-tab{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);background-position:right;background-repeat:no-repeat}div.output_wrapper{position:relative;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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}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);box-shadow:inset 0 2px 8px rgba(0,0,0,0.8);display:block}div.output_collapsed{margin:0;padding:0;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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}div.out_prompt_overlay{height:100%;padding:0 .4em;position:absolute;border-radius:4px}div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000;box-shadow:inset 0 0 1px #000;background:rgba(240,240,240,0.5)}div.output_prompt{color:#8b0000}div.output_area{padding:0;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;display:flex;flex-direction:row;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}div.output_area .MathJax_Display{text-align:left !important}div.output_area .rendered_html table{margin-left:0;margin-right:0}div.output_area .rendered_html img{margin-left:0;margin-right:0}.output{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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}@media (max-width:480px){div.output_area{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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}}div.output_area pre{margin:0;padding:0;border:0;vertical-align:baseline;color:#000;background-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}div.output_subarea{padding:.4em .4em 0 .4em;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}div.output_text{text-align:left;color:#000;line-height:1.21429em}div.output_stderr{background:#fdd}div.output_latex{text-align:left}div.output_javascript:empty{padding:0}.js-error{color:#8b0000}div.raw_input_container{font-family:monospace;padding-top:5px}input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;vertical-align:baseline;padding:0 .25em;margin:0 .25em}input.raw_input:focus{box-shadow:none}p.p-space{margin-bottom:10px}.rendered_html{color:#000}.rendered_html em{font-style:italic}.rendered_html strong{font-weight:bold}.rendered_html u{text-decoration:underline}.rendered_html :link{text-decoration:underline}.rendered_html :visited{text-decoration:underline}.rendered_html h1{font-size:185.7%;margin:1.08em 0 0 0;font-weight:bold;line-height:1}.rendered_html h2{font-size:157.1%;margin:1.27em 0 0 0;font-weight:bold;line-height:1}.rendered_html h3{font-size:128.6%;margin:1.55em 0 0 0;font-weight:bold;line-height:1}.rendered_html h4{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1}.rendered_html h5{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1;font-style:italic}.rendered_html h6{font-size:100%;margin:2em 0 0 0;font-weight:bold;line-height:1;font-style:italic}.rendered_html h1:first-child{margin-top:.538em}.rendered_html h2:first-child{margin-top:.636em}.rendered_html h3:first-child{margin-top:.777em}.rendered_html h4:first-child{margin-top:1em}.rendered_html h5:first-child{margin-top:1em}.rendered_html h6:first-child{margin-top:1em}.rendered_html ul{list-style:disc;margin:0 2em;padding-left:0}.rendered_html ul ul{list-style:square;margin:0 2em}.rendered_html ul ul ul{list-style:circle;margin:0 2em}.rendered_html ol{list-style:decimal;margin:0 2em;padding-left:0}.rendered_html ol ol{list-style:upper-alpha;margin:0 2em}.rendered_html ol ol ol{list-style:lower-alpha;margin:0 2em}.rendered_html ol ol ol ol{list-style:lower-roman;margin:0 2em}.rendered_html ol ol ol ol ol{list-style:decimal;margin:0 2em}.rendered_html *+ul{margin-top:1em}.rendered_html *+ol{margin-top:1em}.rendered_html hr{color:#000;background-color:#000}.rendered_html pre{margin:1em 2em}.rendered_html pre,.rendered_html code{border:0;background-color:#fff;color:#000;font-size:100%;padding:0}.rendered_html blockquote{margin:1em 2em}.rendered_html table{margin-left:auto;margin-right:auto;border:1px solid #000;border-collapse:collapse}.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid #000;border-collapse:collapse;margin:1em 2em}.rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px}.rendered_html th{font-weight:bold}.rendered_html *+table{margin-top:1em}.rendered_html p{text-align:justify}.rendered_html *+p{margin-top:1em}.rendered_html img{display:block;margin-left:auto;margin-right:auto}.rendered_html *+img{margin-top:1em}div.text_cell{padding:5px 5px 5px 0;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;display:flex;flex-direction:row;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}@media (max-width:480px){div.text_cell>div.prompt{display:none}}div.text_cell_render{outline:none;resize:none;width:inherit;border-style:none;padding:.5em .5em .5em .4em;color:#000}a.anchor-link:link{text-decoration:none;padding:0 20px;visibility:hidden}h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible}div.cell.text_cell.rendered{padding:0}.widget-area{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;display:flex;flex-direction:row;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.widget-area .widget-subarea{padding:.44em .4em .4em 1px;margin-left:6px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;-webkit-box-flex:2;-moz-box-flex:2;box-flex:2;flex:2;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.widget-hlabel{min-width:10ex;padding-right:8px;padding-top:5px;text-align:right;vertical-align:text-top}.widget-vlabel{padding-bottom:5px;text-align:center;vertical-align:text-bottom}.widget-hreadout{padding-left:8px;padding-top:5px;text-align:left;vertical-align:text-top}.widget-vreadout{padding-top:5px;text-align:center;vertical-align:text-top}.slide-track{border:1px solid #ccc;background:#fff;border-radius:4px}.widget-hslider{padding-left:8px;padding-right:5px;overflow:visible;width:350px;height:5px;max-height:5px;margin-top:13px;margin-bottom:10px;border:1px solid #ccc;background:#fff;border-radius:4px;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;display:flex;flex-direction:row;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.widget-hslider .ui-slider{border:0 !important;background:none !important;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;display:flex;flex-direction:row;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.widget-hslider .ui-slider .ui-slider-handle{width:14px !important;height:28px !important;margin-top:-8px !important}.widget-vslider{padding-bottom:8px;overflow:visible;width:5px;max-width:5px;height:250px;margin-left:12px;border:1px solid #ccc;background:#fff;border-radius:4px;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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.widget-vslider .ui-slider{border:0 !important;background:none !important;margin-left:-4px;margin-top:5px;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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}.widget-vslider .ui-slider .ui-slider-handle{width:28px !important;height:14px !important;margin-left:-9px}.widget-text{width:350px;margin:0 !important}.widget-listbox{width:350px;margin-bottom:0}.widget-numeric-text{width:150px;margin:0 !important}.widget-progress{margin-top:6px;width:350px}.widget-progress .progress-bar{-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}.widget-combo-btn{min-width:125px}.widget-box{margin:5px;-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;justify-content:flex-start;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.widget-hbox{margin:5px;-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;justify-content:flex-start;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start;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;display:flex;flex-direction:row;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.widget-hbox-single{margin:5px;-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;justify-content:flex-start;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start;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;display:flex;flex-direction:row;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;height:30px}.widget-hbox-single input[type="checkbox"]{margin-top:9px}.widget-vbox{margin:5px;-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;justify-content:flex-start;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start;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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.widget-vbox-single{margin:5px;-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;justify-content:flex-start;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start;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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;width:30px}.widget-modal{overflow:hidden;position:absolute !important;top:0;left:0;margin-left:0 !important}.widget-modal-body{max-height:none !important}.widget-container{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-box-align:start;-moz-box-align:start;box-align:start;align-items:flex-start}.widget-radio-box{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;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding-top:4px}.widget-radio-box label{margin-top:0}.docked-widget-modal{overflow:hidden;position:relative !important;top:0 !important;left:0 !important;margin-left:0 !important}/*!
7764 */
7765 /* CSS font colors for translated ANSI colors. */
7766 .ansibold {
7767 font-weight: bold;
7768 }
7769 /* use dark versions for foreground, to improve visibility */
7770 .ansiblack {
7771 color: black;
7772 }
7773 .ansired {
7774 color: darkred;
7775 }
7776 .ansigreen {
7777 color: darkgreen;
7778 }
7779 .ansiyellow {
7780 color: brown;
7781 }
7782 .ansiblue {
7783 color: darkblue;
7784 }
7785 .ansipurple {
7786 color: darkviolet;
7787 }
7788 .ansicyan {
7789 color: steelblue;
7790 }
7791 .ansigray {
7792 color: gray;
7793 }
7794 /* and light for background, for the same reason */
7795 .ansibgblack {
7796 background-color: black;
7797 }
7798 .ansibgred {
7799 background-color: red;
7800 }
7801 .ansibggreen {
7802 background-color: green;
7803 }
7804 .ansibgyellow {
7805 background-color: yellow;
7806 }
7807 .ansibgblue {
7808 background-color: blue;
7809 }
7810 .ansibgpurple {
7811 background-color: magenta;
7812 }
7813 .ansibgcyan {
7814 background-color: cyan;
7815 }
7816 .ansibggray {
7817 background-color: gray;
7818 }
7819 div.cell {
7820 border: 1px solid transparent;
7821 /* Old browsers */
7822 display: -webkit-box;
7823 -webkit-box-orient: vertical;
7824 -webkit-box-align: stretch;
7825 display: -moz-box;
7826 -moz-box-orient: vertical;
7827 -moz-box-align: stretch;
7828 display: box;
7829 box-orient: vertical;
7830 box-align: stretch;
7831 /* Modern browsers */
7832 display: flex;
7833 flex-direction: column;
7834 align-items: stretch;
7835 /* Old browsers */
7836 -webkit-box-flex: 0;
7837 -moz-box-flex: 0;
7838 box-flex: 0;
7839 /* Modern browsers */
7840 flex: none;
7841 border-radius: 4px;
7842 border-width: thin;
7843 border-style: solid;
7844 }
7845 div.cell.selected {
7846 border-color: #ababab;
7847 }
7848 div.cell.edit_mode {
7849 border-color: green;
7850 }
7851 div.cell {
7852 width: 100%;
7853 padding: 5px 5px 5px 0px;
7854 /* This acts as a spacer between cells, that is outside the border */
7855 margin: 0px;
7856 outline: none;
7857 }
7858 div.prompt {
7859 /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
7860 min-width: 15ex;
7861 /* This padding is tuned to match the padding on the CodeMirror editor. */
7862 padding: 0.4em;
7863 margin: 0px;
7864 font-family: monospace;
7865 text-align: right;
7866 /* This has to match that of the the CodeMirror class line-height below */
7867 line-height: 1.21429em;
7868 }
7869 @media (max-width: 480px) {
7870 div.prompt {
7871 text-align: left;
7872 }
7873 }
7874 div.inner_cell {
7875 /* Old browsers */
7876 display: -webkit-box;
7877 -webkit-box-orient: vertical;
7878 -webkit-box-align: stretch;
7879 display: -moz-box;
7880 -moz-box-orient: vertical;
7881 -moz-box-align: stretch;
7882 display: box;
7883 box-orient: vertical;
7884 box-align: stretch;
7885 /* Modern browsers */
7886 display: flex;
7887 flex-direction: column;
7888 align-items: stretch;
7889 /* Old browsers */
7890 -webkit-box-flex: 0;
7891 -moz-box-flex: 0;
7892 box-flex: 0;
7893 /* Modern browsers */
7894 flex: none;
7895 /* Old browsers */
7896 -webkit-box-flex: 1;
7897 -moz-box-flex: 1;
7898 box-flex: 1;
7899 /* Modern browsers */
7900 flex: 1;
7901 }
7902 /* input_area and input_prompt must match in top border and margin for alignment */
7903 div.input_area {
7904 border: 1px solid #cfcfcf;
7905 border-radius: 4px;
7906 background: #f7f7f7;
7907 line-height: 1.21429em;
7908 }
7909 /* This is needed so that empty prompt areas can collapse to zero height when there
7910 is no content in the output_subarea and the prompt. The main purpose of this is
7911 to make sure that empty JavaScript output_subareas have no height. */
7912 div.prompt:empty {
7913 padding-top: 0;
7914 padding-bottom: 0;
7915 }
7916 /* any special styling for code cells that are currently running goes here */
7917 div.input {
7918 page-break-inside: avoid;
7919 /* Old browsers */
7920 display: -webkit-box;
7921 -webkit-box-orient: horizontal;
7922 -webkit-box-align: stretch;
7923 display: -moz-box;
7924 -moz-box-orient: horizontal;
7925 -moz-box-align: stretch;
7926 display: box;
7927 box-orient: horizontal;
7928 box-align: stretch;
7929 /* Modern browsers */
7930 display: flex;
7931 flex-direction: row;
7932 align-items: stretch;
7933 /* Old browsers */
7934 -webkit-box-flex: 0;
7935 -moz-box-flex: 0;
7936 box-flex: 0;
7937 /* Modern browsers */
7938 flex: none;
7939 }
7940 @media (max-width: 480px) {
7941 div.input {
7942 /* Old browsers */
7943 display: -webkit-box;
7944 -webkit-box-orient: vertical;
7945 -webkit-box-align: stretch;
7946 display: -moz-box;
7947 -moz-box-orient: vertical;
7948 -moz-box-align: stretch;
7949 display: box;
7950 box-orient: vertical;
7951 box-align: stretch;
7952 /* Modern browsers */
7953 display: flex;
7954 flex-direction: column;
7955 align-items: stretch;
7956 /* Old browsers */
7957 -webkit-box-flex: 0;
7958 -moz-box-flex: 0;
7959 box-flex: 0;
7960 /* Modern browsers */
7961 flex: none;
7962 }
7963 }
7964 /* input_area and input_prompt must match in top border and margin for alignment */
7965 div.input_prompt {
7966 color: #000080;
7967 border-top: 1px solid transparent;
7968 }
7969 div.input_area > div.highlight {
7970 margin: 0.4em;
7971 border: none;
7972 padding: 0px;
7973 background-color: transparent;
7974 }
7975 div.input_area > div.highlight > pre {
7976 margin: 0px;
7977 border: none;
7978 padding: 0px;
7979 background-color: transparent;
7980 }
7981 /* The following gets added to the <head> if it is detected that the user has a
7982 * monospace font with inconsistent normal/bold/italic height. See
7983 * notebookmain.js. Such fonts will have keywords vertically offset with
7984 * respect to the rest of the text. The user should select a better font.
7985 * See: https://github.com/ipython/ipython/issues/1503
7986 *
7987 * .CodeMirror span {
7988 * vertical-align: bottom;
7989 * }
7990 */
7991 .CodeMirror {
7992 line-height: 1.21429em;
7993 /* Changed from 1em to our global default */
7994 height: auto;
7995 /* Changed to auto to autogrow */
7996 background: none;
7997 /* Changed from white to allow our bg to show through */
7998 }
7999 .CodeMirror-scroll {
8000 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
8001 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
8002 overflow-y: hidden;
8003 overflow-x: auto;
8004 }
8005 .CodeMirror-lines {
8006 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
8007 /* we have set a different line-height and want this to scale with that. */
8008 padding: 0.4em;
8009 }
8010 .CodeMirror-linenumber {
8011 padding: 0 8px 0 4px;
8012 }
8013 .CodeMirror-gutters {
8014 border-bottom-left-radius: 4px;
8015 border-top-left-radius: 4px;
8016 }
8017 .CodeMirror pre {
8018 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
8019 /* .CodeMirror-lines */
8020 padding: 0;
8021 border: 0;
8022 -webkit-border-radius: 0;
8023 -moz-border-radius: 0;
8024 border-radius: 0;
8025 }
8026 .CodeMirror-vscrollbar,
8027 .CodeMirror-hscrollbar {
8028 display: none !important;
8029 }
8030 /*
8031
8032 Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
8033 Adapted from GitHub theme
8034
8035 */
8036 pre code {
8037 display: block;
8038 padding: 0.5em;
8039 }
8040 .highlight-base,
8041 pre code,
8042 pre .subst,
8043 pre .tag .title,
8044 pre .lisp .title,
8045 pre .clojure .built_in,
8046 pre .nginx .title {
8047 color: black;
8048 }
8049 .highlight-string,
8050 pre .string,
8051 pre .constant,
8052 pre .parent,
8053 pre .tag .value,
8054 pre .rules .value,
8055 pre .rules .value .number,
8056 pre .preprocessor,
8057 pre .ruby .symbol,
8058 pre .ruby .symbol .string,
8059 pre .aggregate,
8060 pre .template_tag,
8061 pre .django .variable,
8062 pre .smalltalk .class,
8063 pre .addition,
8064 pre .flow,
8065 pre .stream,
8066 pre .bash .variable,
8067 pre .apache .tag,
8068 pre .apache .cbracket,
8069 pre .tex .command,
8070 pre .tex .special,
8071 pre .erlang_repl .function_or_atom,
8072 pre .markdown .header {
8073 color: #BA2121;
8074 }
8075 .highlight-comment,
8076 pre .comment,
8077 pre .annotation,
8078 pre .template_comment,
8079 pre .diff .header,
8080 pre .chunk,
8081 pre .markdown .blockquote {
8082 color: #408080;
8083 font-style: italic;
8084 }
8085 .highlight-number,
8086 pre .number,
8087 pre .date,
8088 pre .regexp,
8089 pre .literal,
8090 pre .smalltalk .symbol,
8091 pre .smalltalk .char,
8092 pre .go .constant,
8093 pre .change,
8094 pre .markdown .bullet,
8095 pre .markdown .link_url {
8096 color: #080;
8097 }
8098 pre .label,
8099 pre .javadoc,
8100 pre .ruby .string,
8101 pre .decorator,
8102 pre .filter .argument,
8103 pre .localvars,
8104 pre .array,
8105 pre .attr_selector,
8106 pre .important,
8107 pre .pseudo,
8108 pre .pi,
8109 pre .doctype,
8110 pre .deletion,
8111 pre .envvar,
8112 pre .shebang,
8113 pre .apache .sqbracket,
8114 pre .nginx .built_in,
8115 pre .tex .formula,
8116 pre .erlang_repl .reserved,
8117 pre .prompt,
8118 pre .markdown .link_label,
8119 pre .vhdl .attribute,
8120 pre .clojure .attribute,
8121 pre .coffeescript .property {
8122 color: #8888ff;
8123 }
8124 .highlight-keyword,
8125 pre .keyword,
8126 pre .id,
8127 pre .phpdoc,
8128 pre .aggregate,
8129 pre .css .tag,
8130 pre .javadoctag,
8131 pre .phpdoc,
8132 pre .yardoctag,
8133 pre .smalltalk .class,
8134 pre .winutils,
8135 pre .bash .variable,
8136 pre .apache .tag,
8137 pre .go .typename,
8138 pre .tex .command,
8139 pre .markdown .strong,
8140 pre .request,
8141 pre .status {
8142 color: #008000;
8143 font-weight: bold;
8144 }
8145 .highlight-builtin,
8146 pre .built_in {
8147 color: #008000;
8148 }
8149 pre .markdown .emphasis {
8150 font-style: italic;
8151 }
8152 pre .nginx .built_in {
8153 font-weight: normal;
8154 }
8155 pre .coffeescript .javascript,
8156 pre .javascript .xml,
8157 pre .tex .formula,
8158 pre .xml .javascript,
8159 pre .xml .vbscript,
8160 pre .xml .css,
8161 pre .xml .cdata {
8162 opacity: 0.5;
8163 }
8164 /* apply the same style to codemirror */
8165 .cm-s-ipython span.cm-variable {
8166 color: black;
8167 }
8168 .cm-s-ipython span.cm-keyword {
8169 color: #008000;
8170 font-weight: bold;
8171 }
8172 .cm-s-ipython span.cm-number {
8173 color: #080;
8174 }
8175 .cm-s-ipython span.cm-comment {
8176 color: #408080;
8177 font-style: italic;
8178 }
8179 .cm-s-ipython span.cm-string {
8180 color: #BA2121;
8181 }
8182 .cm-s-ipython span.cm-builtin {
8183 color: #008000;
8184 }
8185 .cm-s-ipython span.cm-error {
8186 color: #f00;
8187 }
8188 .cm-s-ipython span.cm-operator {
8189 color: #AA22FF;
8190 font-weight: bold;
8191 }
8192 .cm-s-ipython span.cm-meta {
8193 color: #AA22FF;
8194 }
8195 .cm-s-ipython span.cm-tab {
8196 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
8197 background-position: right;
8198 background-repeat: no-repeat;
8199 }
8200 div.output_wrapper {
8201 /* this position must be relative to enable descendents to be absolute within it */
8202 position: relative;
8203 /* Old browsers */
8204 display: -webkit-box;
8205 -webkit-box-orient: vertical;
8206 -webkit-box-align: stretch;
8207 display: -moz-box;
8208 -moz-box-orient: vertical;
8209 -moz-box-align: stretch;
8210 display: box;
8211 box-orient: vertical;
8212 box-align: stretch;
8213 /* Modern browsers */
8214 display: flex;
8215 flex-direction: column;
8216 align-items: stretch;
8217 /* Old browsers */
8218 -webkit-box-flex: 0;
8219 -moz-box-flex: 0;
8220 box-flex: 0;
8221 /* Modern browsers */
8222 flex: none;
8223 }
8224 /* class for the output area when it should be height-limited */
8225 div.output_scroll {
8226 /* ideally, this would be max-height, but FF barfs all over that */
8227 height: 24em;
8228 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
8229 width: 100%;
8230 overflow: auto;
8231 border-radius: 4px;
8232 -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8233 box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8234 display: block;
8235 }
8236 /* output div while it is collapsed */
8237 div.output_collapsed {
8238 margin: 0px;
8239 padding: 0px;
8240 /* Old browsers */
8241 display: -webkit-box;
8242 -webkit-box-orient: vertical;
8243 -webkit-box-align: stretch;
8244 display: -moz-box;
8245 -moz-box-orient: vertical;
8246 -moz-box-align: stretch;
8247 display: box;
8248 box-orient: vertical;
8249 box-align: stretch;
8250 /* Modern browsers */
8251 display: flex;
8252 flex-direction: column;
8253 align-items: stretch;
8254 /* Old browsers */
8255 -webkit-box-flex: 0;
8256 -moz-box-flex: 0;
8257 box-flex: 0;
8258 /* Modern browsers */
8259 flex: none;
8260 }
8261 div.out_prompt_overlay {
8262 height: 100%;
8263 padding: 0px 0.4em;
8264 position: absolute;
8265 border-radius: 4px;
8266 }
8267 div.out_prompt_overlay:hover {
8268 /* use inner shadow to get border that is computed the same on WebKit/FF */
8269 -webkit-box-shadow: inset 0 0 1px #000000;
8270 box-shadow: inset 0 0 1px #000000;
8271 background: rgba(240, 240, 240, 0.5);
8272 }
8273 div.output_prompt {
8274 color: #8b0000;
8275 }
8276 /* This class is the outer container of all output sections. */
8277 div.output_area {
8278 padding: 0px;
8279 page-break-inside: avoid;
8280 /* Old browsers */
8281 display: -webkit-box;
8282 -webkit-box-orient: horizontal;
8283 -webkit-box-align: stretch;
8284 display: -moz-box;
8285 -moz-box-orient: horizontal;
8286 -moz-box-align: stretch;
8287 display: box;
8288 box-orient: horizontal;
8289 box-align: stretch;
8290 /* Modern browsers */
8291 display: flex;
8292 flex-direction: row;
8293 align-items: stretch;
8294 /* Old browsers */
8295 -webkit-box-flex: 0;
8296 -moz-box-flex: 0;
8297 box-flex: 0;
8298 /* Modern browsers */
8299 flex: none;
8300 }
8301 div.output_area .MathJax_Display {
8302 text-align: left !important;
8303 }
8304 div.output_area .rendered_html table {
8305 margin-left: 0;
8306 margin-right: 0;
8307 }
8308 div.output_area .rendered_html img {
8309 margin-left: 0;
8310 margin-right: 0;
8311 }
8312 /* This is needed to protect the pre formating from global settings such
8313 as that of bootstrap */
8314 .output {
8315 /* Old browsers */
8316 display: -webkit-box;
8317 -webkit-box-orient: vertical;
8318 -webkit-box-align: stretch;
8319 display: -moz-box;
8320 -moz-box-orient: vertical;
8321 -moz-box-align: stretch;
8322 display: box;
8323 box-orient: vertical;
8324 box-align: stretch;
8325 /* Modern browsers */
8326 display: flex;
8327 flex-direction: column;
8328 align-items: stretch;
8329 /* Old browsers */
8330 -webkit-box-flex: 0;
8331 -moz-box-flex: 0;
8332 box-flex: 0;
8333 /* Modern browsers */
8334 flex: none;
8335 }
8336 @media (max-width: 480px) {
8337 div.output_area {
8338 /* Old browsers */
8339 display: -webkit-box;
8340 -webkit-box-orient: vertical;
8341 -webkit-box-align: stretch;
8342 display: -moz-box;
8343 -moz-box-orient: vertical;
8344 -moz-box-align: stretch;
8345 display: box;
8346 box-orient: vertical;
8347 box-align: stretch;
8348 /* Modern browsers */
8349 display: flex;
8350 flex-direction: column;
8351 align-items: stretch;
8352 /* Old browsers */
8353 -webkit-box-flex: 0;
8354 -moz-box-flex: 0;
8355 box-flex: 0;
8356 /* Modern browsers */
8357 flex: none;
8358 }
8359 }
8360 div.output_area pre {
8361 margin: 0;
8362 padding: 0;
8363 border: 0;
8364 vertical-align: baseline;
8365 color: #000000;
8366 background-color: transparent;
8367 -webkit-border-radius: 0;
8368 -moz-border-radius: 0;
8369 border-radius: 0;
8370 }
8371 /* This class is for the output subarea inside the output_area and after
8372 the prompt div. */
8373 div.output_subarea {
8374 padding: 0.4em 0.4em 0em 0.4em;
8375 /* Old browsers */
8376 -webkit-box-flex: 1;
8377 -moz-box-flex: 1;
8378 box-flex: 1;
8379 /* Modern browsers */
8380 flex: 1;
8381 }
8382 /* The rest of the output_* classes are for special styling of the different
8383 output types */
8384 /* all text output has this class: */
8385 div.output_text {
8386 text-align: left;
8387 color: #000000;
8388 /* This has to match that of the the CodeMirror class line-height below */
8389 line-height: 1.21429em;
8390 }
8391 /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
8392 div.output_stderr {
8393 background: #fdd;
8394 /* very light red background for stderr */
8395 }
8396 div.output_latex {
8397 text-align: left;
8398 }
8399 /* Empty output_javascript divs should have no height */
8400 div.output_javascript:empty {
8401 padding: 0;
8402 }
8403 .js-error {
8404 color: darkred;
8405 }
8406 /* raw_input styles */
8407 div.raw_input_container {
8408 font-family: monospace;
8409 padding-top: 5px;
8410 }
8411 span.raw_input_prompt {
8412 /* nothing needed here */
8413 }
8414 input.raw_input {
8415 font-family: inherit;
8416 font-size: inherit;
8417 color: inherit;
8418 width: auto;
8419 /* make sure input baseline aligns with prompt */
8420 vertical-align: baseline;
8421 /* padding + margin = 0.5em between prompt and cursor */
8422 padding: 0em 0.25em;
8423 margin: 0em 0.25em;
8424 }
8425 input.raw_input:focus {
8426 box-shadow: none;
8427 }
8428 p.p-space {
8429 margin-bottom: 10px;
8430 }
8431 .rendered_html {
8432 color: #000000;
8433 /* any extras will just be numbers: */
8434 }
8435 .rendered_html em {
8436 font-style: italic;
8437 }
8438 .rendered_html strong {
8439 font-weight: bold;
8440 }
8441 .rendered_html u {
8442 text-decoration: underline;
8443 }
8444 .rendered_html :link {
8445 text-decoration: underline;
8446 }
8447 .rendered_html :visited {
8448 text-decoration: underline;
8449 }
8450 .rendered_html h1 {
8451 font-size: 185.7%;
8452 margin: 1.08em 0 0 0;
8453 font-weight: bold;
8454 line-height: 1.0;
8455 }
8456 .rendered_html h2 {
8457 font-size: 157.1%;
8458 margin: 1.27em 0 0 0;
8459 font-weight: bold;
8460 line-height: 1.0;
8461 }
8462 .rendered_html h3 {
8463 font-size: 128.6%;
8464 margin: 1.55em 0 0 0;
8465 font-weight: bold;
8466 line-height: 1.0;
8467 }
8468 .rendered_html h4 {
8469 font-size: 100%;
8470 margin: 2em 0 0 0;
8471 font-weight: bold;
8472 line-height: 1.0;
8473 }
8474 .rendered_html h5 {
8475 font-size: 100%;
8476 margin: 2em 0 0 0;
8477 font-weight: bold;
8478 line-height: 1.0;
8479 font-style: italic;
8480 }
8481 .rendered_html h6 {
8482 font-size: 100%;
8483 margin: 2em 0 0 0;
8484 font-weight: bold;
8485 line-height: 1.0;
8486 font-style: italic;
8487 }
8488 .rendered_html h1:first-child {
8489 margin-top: 0.538em;
8490 }
8491 .rendered_html h2:first-child {
8492 margin-top: 0.636em;
8493 }
8494 .rendered_html h3:first-child {
8495 margin-top: 0.777em;
8496 }
8497 .rendered_html h4:first-child {
8498 margin-top: 1em;
8499 }
8500 .rendered_html h5:first-child {
8501 margin-top: 1em;
8502 }
8503 .rendered_html h6:first-child {
8504 margin-top: 1em;
8505 }
8506 .rendered_html ul {
8507 list-style: disc;
8508 margin: 0em 2em;
8509 padding-left: 0px;
8510 }
8511 .rendered_html ul ul {
8512 list-style: square;
8513 margin: 0em 2em;
8514 }
8515 .rendered_html ul ul ul {
8516 list-style: circle;
8517 margin: 0em 2em;
8518 }
8519 .rendered_html ol {
8520 list-style: decimal;
8521 margin: 0em 2em;
8522 padding-left: 0px;
8523 }
8524 .rendered_html ol ol {
8525 list-style: upper-alpha;
8526 margin: 0em 2em;
8527 }
8528 .rendered_html ol ol ol {
8529 list-style: lower-alpha;
8530 margin: 0em 2em;
8531 }
8532 .rendered_html ol ol ol ol {
8533 list-style: lower-roman;
8534 margin: 0em 2em;
8535 }
8536 .rendered_html ol ol ol ol ol {
8537 list-style: decimal;
8538 margin: 0em 2em;
8539 }
8540 .rendered_html * + ul {
8541 margin-top: 1em;
8542 }
8543 .rendered_html * + ol {
8544 margin-top: 1em;
8545 }
8546 .rendered_html hr {
8547 color: #000000;
8548 background-color: #000000;
8549 }
8550 .rendered_html pre {
8551 margin: 1em 2em;
8552 }
8553 .rendered_html pre,
8554 .rendered_html code {
8555 border: 0;
8556 background-color: #ffffff;
8557 color: #000000;
8558 font-size: 100%;
8559 padding: 0px;
8560 }
8561 .rendered_html blockquote {
8562 margin: 1em 2em;
8563 }
8564 .rendered_html table {
8565 margin-left: auto;
8566 margin-right: auto;
8567 border: 1px solid #000000;
8568 border-collapse: collapse;
8569 }
8570 .rendered_html tr,
8571 .rendered_html th,
8572 .rendered_html td {
8573 border: 1px solid #000000;
8574 border-collapse: collapse;
8575 margin: 1em 2em;
8576 }
8577 .rendered_html td,
8578 .rendered_html th {
8579 text-align: left;
8580 vertical-align: middle;
8581 padding: 4px;
8582 }
8583 .rendered_html th {
8584 font-weight: bold;
8585 }
8586 .rendered_html * + table {
8587 margin-top: 1em;
8588 }
8589 .rendered_html p {
8590 text-align: justify;
8591 }
8592 .rendered_html * + p {
8593 margin-top: 1em;
8594 }
8595 .rendered_html img {
8596 display: block;
8597 margin-left: auto;
8598 margin-right: auto;
8599 }
8600 .rendered_html * + img {
8601 margin-top: 1em;
8602 }
8603 div.text_cell {
8604 padding: 5px 5px 5px 0px;
8605 /* Old browsers */
8606 display: -webkit-box;
8607 -webkit-box-orient: horizontal;
8608 -webkit-box-align: stretch;
8609 display: -moz-box;
8610 -moz-box-orient: horizontal;
8611 -moz-box-align: stretch;
8612 display: box;
8613 box-orient: horizontal;
8614 box-align: stretch;
8615 /* Modern browsers */
8616 display: flex;
8617 flex-direction: row;
8618 align-items: stretch;
8619 /* Old browsers */
8620 -webkit-box-flex: 0;
8621 -moz-box-flex: 0;
8622 box-flex: 0;
8623 /* Modern browsers */
8624 flex: none;
8625 }
8626 @media (max-width: 480px) {
8627 div.text_cell > div.prompt {
8628 display: none;
8629 }
8630 }
8631 div.text_cell_render {
8632 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
8633 outline: none;
8634 resize: none;
8635 width: inherit;
8636 border-style: none;
8637 padding: 0.5em 0.5em 0.5em 0.4em;
8638 color: #000000;
8639 }
8640 a.anchor-link:link {
8641 text-decoration: none;
8642 padding: 0px 20px;
8643 visibility: hidden;
8644 }
8645 h1:hover .anchor-link,
8646 h2:hover .anchor-link,
8647 h3:hover .anchor-link,
8648 h4:hover .anchor-link,
8649 h5:hover .anchor-link,
8650 h6:hover .anchor-link {
8651 visibility: visible;
8652 }
8653 div.cell.text_cell.rendered {
8654 padding: 0px;
8655 }
8656 .widget-area {
8657 /*
8658 LESS file that styles IPython notebook widgets and the area they sit in.
8659
8660 The widget area typically looks something like this:
8661 +------------------------------------------+
8662 | widget-area |
8663 | +--------+---------------------------+ |
8664 | | prompt | widget-subarea | |
8665 | | | +--------+ +--------+ | |
8666 | | | | widget | | widget | | |
8667 | | | +--------+ +--------+ | |
8668 | +--------+---------------------------+ |
8669 +------------------------------------------+
8670 */
8671 page-break-inside: avoid;
8672 /* Old browsers */
8673 display: -webkit-box;
8674 -webkit-box-orient: horizontal;
8675 -webkit-box-align: stretch;
8676 display: -moz-box;
8677 -moz-box-orient: horizontal;
8678 -moz-box-align: stretch;
8679 display: box;
8680 box-orient: horizontal;
8681 box-align: stretch;
8682 /* Modern browsers */
8683 display: flex;
8684 flex-direction: row;
8685 align-items: stretch;
8686 /* Old browsers */
8687 -webkit-box-flex: 0;
8688 -moz-box-flex: 0;
8689 box-flex: 0;
8690 /* Modern browsers */
8691 flex: none;
8692 }
8693 .widget-area .widget-subarea {
8694 padding: 0.44em 0.4em 0.4em 1px;
8695 margin-left: 6px;
8696 box-sizing: border-box;
8697 -moz-box-sizing: border-box;
8698 -webkit-box-sizing: border-box;
8699 /* Old browsers */
8700 display: -webkit-box;
8701 -webkit-box-orient: vertical;
8702 -webkit-box-align: stretch;
8703 display: -moz-box;
8704 -moz-box-orient: vertical;
8705 -moz-box-align: stretch;
8706 display: box;
8707 box-orient: vertical;
8708 box-align: stretch;
8709 /* Modern browsers */
8710 display: flex;
8711 flex-direction: column;
8712 align-items: stretch;
8713 /* Old browsers */
8714 -webkit-box-flex: 0;
8715 -moz-box-flex: 0;
8716 box-flex: 0;
8717 /* Modern browsers */
8718 flex: none;
8719 /* Old browsers */
8720 -webkit-box-flex: 2;
8721 -moz-box-flex: 2;
8722 box-flex: 2;
8723 /* Modern browsers */
8724 flex: 2;
8725 /* Old browsers */
8726 -webkit-box-align: start;
8727 -moz-box-align: start;
8728 box-align: start;
8729 /* Modern browsers */
8730 align-items: flex-start;
8731 }
8732 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
8733 THE WIDGET AREA). */
8734 .widget-hlabel {
8735 /* Horizontal Label */
8736 min-width: 10ex;
8737 padding-right: 8px;
8738 padding-top: 5px;
8739 text-align: right;
8740 vertical-align: text-top;
8741 }
8742 .widget-vlabel {
8743 /* Vertical Label */
8744 padding-bottom: 5px;
8745 text-align: center;
8746 vertical-align: text-bottom;
8747 }
8748 .widget-hreadout {
8749 padding-left: 8px;
8750 padding-top: 5px;
8751 text-align: left;
8752 vertical-align: text-top;
8753 }
8754 .widget-vreadout {
8755 /* Vertical Label */
8756 padding-top: 5px;
8757 text-align: center;
8758 vertical-align: text-top;
8759 }
8760 .slide-track {
8761 /* Slider Track */
8762 border: 1px solid #CCCCCC;
8763 background: #FFFFFF;
8764 border-radius: 4px;
8765 /* Round the corners of the slide track */
8766 }
8767 .widget-hslider {
8768 /* Horizontal jQuery Slider
8769
8770 Both the horizontal and vertical versions of the slider are characterized
8771 by a styled div that contains an invisible jQuery slide div which
8772 contains a visible slider handle div. This is requred so we can control
8773 how the slider is drawn and 'fix' the issue where the slide handle
8774 doesn't stop at the end of the slide.
8775
8776 Both horizontal and vertical sliders have this div nesting:
8777 +------------------------------------------+
8778 | widget-(h/v)slider |
8779 | +--------+---------------------------+ |
8780 | | ui-slider | |
8781 | | +------------------+ | |
8782 | | | ui-slider-handle | | |
8783 | | +------------------+ | |
8784 | +--------+---------------------------+ |
8785 +------------------------------------------+
8786 */
8787 /* Fix the padding of the slide track so the ui-slider is sized
8788 correctly. */
8789 padding-left: 8px;
8790 padding-right: 5px;
8791 overflow: visible;
8792 /* Default size of the slider */
8793 width: 350px;
8794 height: 5px;
8795 max-height: 5px;
8796 margin-top: 13px;
8797 margin-bottom: 10px;
8798 /* Style the slider track */
8799 /* Slider Track */
8800 border: 1px solid #CCCCCC;
8801 background: #FFFFFF;
8802 border-radius: 4px;
8803 /* Round the corners of the slide track */
8804 /* Make the div a flex box (makes FF behave correctly). */
8805 /* Old browsers */
8806 display: -webkit-box;
8807 -webkit-box-orient: horizontal;
8808 -webkit-box-align: stretch;
8809 display: -moz-box;
8810 -moz-box-orient: horizontal;
8811 -moz-box-align: stretch;
8812 display: box;
8813 box-orient: horizontal;
8814 box-align: stretch;
8815 /* Modern browsers */
8816 display: flex;
8817 flex-direction: row;
8818 align-items: stretch;
8819 /* Old browsers */
8820 -webkit-box-flex: 0;
8821 -moz-box-flex: 0;
8822 box-flex: 0;
8823 /* Modern browsers */
8824 flex: none;
8825 }
8826 .widget-hslider .ui-slider {
8827 /* Inner, invisible slide div */
8828 border: 0px !important;
8829 background: none !important;
8830 /* Old browsers */
8831 display: -webkit-box;
8832 -webkit-box-orient: horizontal;
8833 -webkit-box-align: stretch;
8834 display: -moz-box;
8835 -moz-box-orient: horizontal;
8836 -moz-box-align: stretch;
8837 display: box;
8838 box-orient: horizontal;
8839 box-align: stretch;
8840 /* Modern browsers */
8841 display: flex;
8842 flex-direction: row;
8843 align-items: stretch;
8844 /* Old browsers */
8845 -webkit-box-flex: 0;
8846 -moz-box-flex: 0;
8847 box-flex: 0;
8848 /* Modern browsers */
8849 flex: none;
8850 /* Old browsers */
8851 -webkit-box-flex: 1;
8852 -moz-box-flex: 1;
8853 box-flex: 1;
8854 /* Modern browsers */
8855 flex: 1;
8856 }
8857 .widget-hslider .ui-slider .ui-slider-handle {
8858 width: 14px !important;
8859 height: 28px !important;
8860 margin-top: -8px !important;
8861 }
8862 .widget-vslider {
8863 /* Vertical jQuery Slider */
8864 /* Fix the padding of the slide track so the ui-slider is sized
8865 correctly. */
8866 padding-bottom: 8px;
8867 overflow: visible;
8868 /* Default size of the slider */
8869 width: 5px;
8870 max-width: 5px;
8871 height: 250px;
8872 margin-left: 12px;
8873 /* Style the slider track */
8874 /* Slider Track */
8875 border: 1px solid #CCCCCC;
8876 background: #FFFFFF;
8877 border-radius: 4px;
8878 /* Round the corners of the slide track */
8879 /* Make the div a flex box (makes FF behave correctly). */
8880 /* Old browsers */
8881 display: -webkit-box;
8882 -webkit-box-orient: vertical;
8883 -webkit-box-align: stretch;
8884 display: -moz-box;
8885 -moz-box-orient: vertical;
8886 -moz-box-align: stretch;
8887 display: box;
8888 box-orient: vertical;
8889 box-align: stretch;
8890 /* Modern browsers */
8891 display: flex;
8892 flex-direction: column;
8893 align-items: stretch;
8894 /* Old browsers */
8895 -webkit-box-flex: 0;
8896 -moz-box-flex: 0;
8897 box-flex: 0;
8898 /* Modern browsers */
8899 flex: none;
8900 }
8901 .widget-vslider .ui-slider {
8902 /* Inner, invisible slide div */
8903 border: 0px !important;
8904 background: none !important;
8905 margin-left: -4px;
8906 margin-top: 5px;
8907 /* Old browsers */
8908 display: -webkit-box;
8909 -webkit-box-orient: vertical;
8910 -webkit-box-align: stretch;
8911 display: -moz-box;
8912 -moz-box-orient: vertical;
8913 -moz-box-align: stretch;
8914 display: box;
8915 box-orient: vertical;
8916 box-align: stretch;
8917 /* Modern browsers */
8918 display: flex;
8919 flex-direction: column;
8920 align-items: stretch;
8921 /* Old browsers */
8922 -webkit-box-flex: 0;
8923 -moz-box-flex: 0;
8924 box-flex: 0;
8925 /* Modern browsers */
8926 flex: none;
8927 /* Old browsers */
8928 -webkit-box-flex: 1;
8929 -moz-box-flex: 1;
8930 box-flex: 1;
8931 /* Modern browsers */
8932 flex: 1;
8933 }
8934 .widget-vslider .ui-slider .ui-slider-handle {
8935 width: 28px !important;
8936 height: 14px !important;
8937 margin-left: -9px;
8938 }
8939 .widget-text {
8940 /* String Textbox - used for TextBoxView and TextAreaView */
8941 width: 350px;
8942 margin: 0px !important;
8943 }
8944 .widget-listbox {
8945 /* Listbox */
8946 width: 350px;
8947 margin-bottom: 0px;
8948 }
8949 .widget-numeric-text {
8950 /* Single Line Textbox - used for IntTextView and FloatTextView */
8951 width: 150px;
8952 margin: 0px !important;
8953 }
8954 .widget-progress {
8955 /* Progress Bar */
8956 margin-top: 6px;
8957 width: 350px;
8958 }
8959 .widget-progress .progress-bar {
8960 /* Disable progress bar animation */
8961 -webkit-transition: none;
8962 -moz-transition: none;
8963 -ms-transition: none;
8964 -o-transition: none;
8965 transition: none;
8966 }
8967 .widget-combo-btn {
8968 /* ComboBox Main Button */
8969 min-width: 125px;
8970 }
8971 .widget-box {
8972 /* The following section sets the style for the invisible div that
8973 hold widgets and their accompanying labels.
8974
8975 Looks like this:
8976 +-----------------------------+
8977 | widget-box (or similar) |
8978 | +-------+---------------+ |
8979 | | Label | Actual Widget | |
8980 | +-------+---------------+ |
8981 +-----------------------------+
8982 */
8983 margin: 5px;
8984 /* Old browsers */
8985 -webkit-box-pack: start;
8986 -moz-box-pack: start;
8987 box-pack: start;
8988 /* Modern browsers */
8989 justify-content: flex-start;
8990 /* ContainerWidget */
8991 box-sizing: border-box;
8992 -moz-box-sizing: border-box;
8993 -webkit-box-sizing: border-box;
8994 /* Old browsers */
8995 -webkit-box-align: start;
8996 -moz-box-align: start;
8997 box-align: start;
8998 /* Modern browsers */
8999 align-items: flex-start;
9000 }
9001 .widget-hbox {
9002 /* Horizontal widgets */
9003 /* The following section sets the style for the invisible div that
9004 hold widgets and their accompanying labels.
9005
9006 Looks like this:
9007 +-----------------------------+
9008 | widget-box (or similar) |
9009 | +-------+---------------+ |
9010 | | Label | Actual Widget | |
9011 | +-------+---------------+ |
9012 +-----------------------------+
9013 */
9014 margin: 5px;
9015 /* Old browsers */
9016 -webkit-box-pack: start;
9017 -moz-box-pack: start;
9018 box-pack: start;
9019 /* Modern browsers */
9020 justify-content: flex-start;
9021 /* ContainerWidget */
9022 box-sizing: border-box;
9023 -moz-box-sizing: border-box;
9024 -webkit-box-sizing: border-box;
9025 /* Old browsers */
9026 -webkit-box-align: start;
9027 -moz-box-align: start;
9028 box-align: start;
9029 /* Modern browsers */
9030 align-items: flex-start;
9031 /* Old browsers */
9032 display: -webkit-box;
9033 -webkit-box-orient: horizontal;
9034 -webkit-box-align: stretch;
9035 display: -moz-box;
9036 -moz-box-orient: horizontal;
9037 -moz-box-align: stretch;
9038 display: box;
9039 box-orient: horizontal;
9040 box-align: stretch;
9041 /* Modern browsers */
9042 display: flex;
9043 flex-direction: row;
9044 align-items: stretch;
9045 /* Old browsers */
9046 -webkit-box-flex: 0;
9047 -moz-box-flex: 0;
9048 box-flex: 0;
9049 /* Modern browsers */
9050 flex: none;
9051 }
9052 .widget-hbox-single {
9053 /* Single line horizontal widgets */
9054 /* Horizontal widgets */
9055 /* The following section sets the style for the invisible div that
9056 hold widgets and their accompanying labels.
9057
9058 Looks like this:
9059 +-----------------------------+
9060 | widget-box (or similar) |
9061 | +-------+---------------+ |
9062 | | Label | Actual Widget | |
9063 | +-------+---------------+ |
9064 +-----------------------------+
9065 */
9066 margin: 5px;
9067 /* Old browsers */
9068 -webkit-box-pack: start;
9069 -moz-box-pack: start;
9070 box-pack: start;
9071 /* Modern browsers */
9072 justify-content: flex-start;
9073 /* ContainerWidget */
9074 box-sizing: border-box;
9075 -moz-box-sizing: border-box;
9076 -webkit-box-sizing: border-box;
9077 /* Old browsers */
9078 -webkit-box-align: start;
9079 -moz-box-align: start;
9080 box-align: start;
9081 /* Modern browsers */
9082 align-items: flex-start;
9083 /* Old browsers */
9084 display: -webkit-box;
9085 -webkit-box-orient: horizontal;
9086 -webkit-box-align: stretch;
9087 display: -moz-box;
9088 -moz-box-orient: horizontal;
9089 -moz-box-align: stretch;
9090 display: box;
9091 box-orient: horizontal;
9092 box-align: stretch;
9093 /* Modern browsers */
9094 display: flex;
9095 flex-direction: row;
9096 align-items: stretch;
9097 /* Old browsers */
9098 -webkit-box-flex: 0;
9099 -moz-box-flex: 0;
9100 box-flex: 0;
9101 /* Modern browsers */
9102 flex: none;
9103 height: 30px;
9104 }
9105 .widget-hbox-single input[type="checkbox"] {
9106 margin-top: 9px;
9107 }
9108 .widget-vbox {
9109 /* Vertical widgets */
9110 /* The following section sets the style for the invisible div that
9111 hold widgets and their accompanying labels.
9112
9113 Looks like this:
9114 +-----------------------------+
9115 | widget-box (or similar) |
9116 | +-------+---------------+ |
9117 | | Label | Actual Widget | |
9118 | +-------+---------------+ |
9119 +-----------------------------+
9120 */
9121 margin: 5px;
9122 /* Old browsers */
9123 -webkit-box-pack: start;
9124 -moz-box-pack: start;
9125 box-pack: start;
9126 /* Modern browsers */
9127 justify-content: flex-start;
9128 /* ContainerWidget */
9129 box-sizing: border-box;
9130 -moz-box-sizing: border-box;
9131 -webkit-box-sizing: border-box;
9132 /* Old browsers */
9133 -webkit-box-align: start;
9134 -moz-box-align: start;
9135 box-align: start;
9136 /* Modern browsers */
9137 align-items: flex-start;
9138 /* Old browsers */
9139 display: -webkit-box;
9140 -webkit-box-orient: vertical;
9141 -webkit-box-align: stretch;
9142 display: -moz-box;
9143 -moz-box-orient: vertical;
9144 -moz-box-align: stretch;
9145 display: box;
9146 box-orient: vertical;
9147 box-align: stretch;
9148 /* Modern browsers */
9149 display: flex;
9150 flex-direction: column;
9151 align-items: stretch;
9152 /* Old browsers */
9153 -webkit-box-flex: 0;
9154 -moz-box-flex: 0;
9155 box-flex: 0;
9156 /* Modern browsers */
9157 flex: none;
9158 }
9159 .widget-vbox-single {
9160 /* For vertical slides */
9161 /* Vertical widgets */
9162 /* The following section sets the style for the invisible div that
9163 hold widgets and their accompanying labels.
9164
9165 Looks like this:
9166 +-----------------------------+
9167 | widget-box (or similar) |
9168 | +-------+---------------+ |
9169 | | Label | Actual Widget | |
9170 | +-------+---------------+ |
9171 +-----------------------------+
9172 */
9173 margin: 5px;
9174 /* Old browsers */
9175 -webkit-box-pack: start;
9176 -moz-box-pack: start;
9177 box-pack: start;
9178 /* Modern browsers */
9179 justify-content: flex-start;
9180 /* ContainerWidget */
9181 box-sizing: border-box;
9182 -moz-box-sizing: border-box;
9183 -webkit-box-sizing: border-box;
9184 /* Old browsers */
9185 -webkit-box-align: start;
9186 -moz-box-align: start;
9187 box-align: start;
9188 /* Modern browsers */
9189 align-items: flex-start;
9190 /* Old browsers */
9191 display: -webkit-box;
9192 -webkit-box-orient: vertical;
9193 -webkit-box-align: stretch;
9194 display: -moz-box;
9195 -moz-box-orient: vertical;
9196 -moz-box-align: stretch;
9197 display: box;
9198 box-orient: vertical;
9199 box-align: stretch;
9200 /* Modern browsers */
9201 display: flex;
9202 flex-direction: column;
9203 align-items: stretch;
9204 /* Old browsers */
9205 -webkit-box-flex: 0;
9206 -moz-box-flex: 0;
9207 box-flex: 0;
9208 /* Modern browsers */
9209 flex: none;
9210 width: 30px;
9211 }
9212 .widget-modal {
9213 /* ContainerWidget - ModalView */
9214 overflow: hidden;
9215 position: absolute !important;
9216 top: 0px;
9217 left: 0px;
9218 margin-left: 0px !important;
9219 }
9220 .widget-modal-body {
9221 /* ContainerWidget - ModalView Body */
9222 max-height: none !important;
9223 }
9224 .widget-container {
9225 /* ContainerWidget */
9226 box-sizing: border-box;
9227 -moz-box-sizing: border-box;
9228 -webkit-box-sizing: border-box;
9229 /* Old browsers */
9230 -webkit-box-align: start;
9231 -moz-box-align: start;
9232 box-align: start;
9233 /* Modern browsers */
9234 align-items: flex-start;
9235 }
9236 .widget-radio-box {
9237 /* Contains RadioButtonsWidget */
9238 /* Old browsers */
9239 display: -webkit-box;
9240 -webkit-box-orient: vertical;
9241 -webkit-box-align: stretch;
9242 display: -moz-box;
9243 -moz-box-orient: vertical;
9244 -moz-box-align: stretch;
9245 display: box;
9246 box-orient: vertical;
9247 box-align: stretch;
9248 /* Modern browsers */
9249 display: flex;
9250 flex-direction: column;
9251 align-items: stretch;
9252 /* Old browsers */
9253 -webkit-box-flex: 0;
9254 -moz-box-flex: 0;
9255 box-flex: 0;
9256 /* Modern browsers */
9257 flex: none;
9258 box-sizing: border-box;
9259 -moz-box-sizing: border-box;
9260 -webkit-box-sizing: border-box;
9261 padding-top: 4px;
9262 }
9263 .widget-radio-box label {
9264 margin-top: 0px;
9265 }
9266 .docked-widget-modal {
9267 /* Horizontal Label */
9268 overflow: hidden;
9269 position: relative !important;
9270 top: 0px !important;
9271 left: 0px !important;
9272 margin-left: 0px !important;
9273 }
9274 /*!
50 *
9275 *
51 * IPython notebook webapp
9276 * IPython notebook webapp
52 *
9277 *
53 */body{background-color:#fff}body.notebook_app{overflow:hidden}@media (max-width:767px){body.notebook_app{padding-left:0;padding-right:0}}span#notebook_name{height:1em;line-height:1em;padding:3px;border:none;font-size:146.5%}div#notebook_panel{margin:0 0 0 0;padding:0;-webkit-box-shadow:inset 1px 4px 9px -6px rgba(0,0,0,0.25);box-shadow:inset 1px 4px 9px -6px rgba(0,0,0,0.25)}div#notebook{font-size:14px;line-height:20px;overflow-y:scroll;overflow-x:auto;width:100%;padding:1em 0 1em 0;margin:0;border-top:1px solid #e7e7e7;outline:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}div.ui-widget-content{border:1px solid #ababab;outline:none}pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:4px;padding:.4em;padding-left:2em}p.dialog{padding:.2em}pre,code,kbd,samp{white-space:pre-wrap}#fonttest{font-family:monospace}p{margin-bottom:0}.end_space{height:200px}.celltoolbar{border:thin solid #cfcfcf;border-bottom:none;background:#eee;border-radius:3px 3px 0 0;width:100%;-webkit-box-pack:end;height:29px;padding-right:4px;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;display:flex;flex-direction:row;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none;-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse;flex-direction:row-reverse}.ctb_hideshow{display:none;vertical-align:bottom}.ctb_global_show .ctb_show.ctb_hideshow{display:block}.ctb_global_show .ctb_show+.input_area,.ctb_global_show .ctb_show+div.text_cell_input{border-top-right-radius:0;border-top-left-radius:0}.celltoolbar{font-size:87%;padding-top:3px}.celltoolbar select{font-size:87%;height:22px}.celltoolbar label{margin-left:5px;margin-right:5px}.completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:4px;-webkit-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad}.completions select{background:#fff;outline:none;border:none;padding:0;margin:0;overflow:auto;font-family:monospace;font-size:110%;color:#000;width:auto}.completions select option.context{color:#3071a9}#menubar{margin-top:0;margin-bottom:-19px;position:relative}#menubar .navbar{border-top:1px;border-radius:0 0 4px 4px}#menubar li.dropdown{line-height:12px}#menubar li.dropdown a{padding-top:6px;padding-bottom:5px}#menubar ul.navbar-right{padding-top:2px}.nav-wrapper{border-bottom:1px solid #e7e7e7}i.menu-icon{padding-top:4px}ul#help_menu li a{overflow:hidden;padding-right:2.2em}ul#help_menu li a i{margin-right:-1.2em}#menus{min-height:30px}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#ccc;margin-top:5px;margin-right:-10px}.dropdown-submenu:hover>a:after{border-left-color:#fff}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}#notification_area{float:right !important;float:right;z-index:10}.indicator_area{color:#777;padding:4px 3px;margin:0;width:11px;z-index:10;text-align:center}#kernel_indicator{float:right !important;float:right;color:#777;padding:4px 3px;margin:0;width:11px;z-index:10;text-align:center;margin-right:12px}#modal_indicator{float:right !important;float:right;color:#777;padding:4px 3px;margin:0;width:11px;z-index:10;text-align:center;margin-right:5px}.edit_mode_icon:before{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;content:"\f040"}.command_mode_icon:before{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;content:' '}.kernel_idle_icon:before{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;content:"\f10c"}.kernel_busy_icon:before{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;content:"\f111"}.notification_widget{color:#777;padding:1px 12px;margin:2px 4px;z-index:10;border:1px solid #ccc;border-radius:4px;background:rgba(240,240,240,0.5)}.notification_widget.span{padding-right:2px}div#pager_splitter{height:8px}#pager-container{position:relative;padding:15px 0}div#pager{font-size:14px;line-height:20px;overflow:auto;display:none}div#pager pre{line-height:1.21429em;color:#000;background-color:#f7f7f7;padding:.4em}.quickhelp{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;display:flex;flex-direction:row;align-items:stretch;-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;flex:none}.shortcut_key{display:inline-block;width:20ex;text-align:right;font-family:monospace}.shortcut_descr{display:inline-block;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1}span#save_widget{padding:0 5px;margin-top:12px}span#checkpoint_status,span#autosave_status{font-size:small}@media (max-width:767px){span#save_widget{font-size:small}span#checkpoint_status,span#autosave_status{font-size:x-small}}@media (max-width:767px){span#checkpoint_status,span#autosave_status{display:none}}@media (min-width:768px) and (max-width:979px){span#checkpoint_status{display:none}span#autosave_status{font-size:x-small}}.toolbar{padding:0;margin-left:-5px;margin-top:-5px}.toolbar select,.toolbar label{width:auto;vertical-align:middle;margin-right:2px;margin-bottom:0;display:inline;font-size:92%;margin-left:.3em;margin-right:.3em;padding:0;padding-top:3px}.toolbar .btn{padding:2px 8px}.toolbar .btn-group{margin-top:0;margin-left:5px}#maintoolbar{margin-bottom:-3px;margin-top:-8px;border:0;min-height:27px;margin-left:32px;padding-top:6px;padding-bottom:8px}#maintoolbar .navbar-text{float:none;vertical-align:middle;text-align:right;margin-left:5px;margin-right:0;margin-top:0}#maintoolbar .toolbar{margin-top:0}.select-xs{height:24px}@-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}.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}.tooltipbuttons{position:absolute;padding-right:15px;top:0;right:0}.tooltiptext{padding-right:30px}.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:0;padding-left:7px;font-family:monospace;min-height:50px;-moz-box-shadow:0 6px 10px -1px #adadad;-webkit-box-shadow:0 6px 10px -1px #adadad;box-shadow:0 6px 10px -1px #adadad;border-radius:4px;position:absolute;z-index:1000}.ipython_tooltip a{float:right}.ipython_tooltip .tooltiptext pre{border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;font-size:100%;background-color:#f7f7f7}.pretooltiparrow{left:0;margin:0;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute}.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)}/*# sourceMappingURL=../style/style.min.css.map */ No newline at end of file
9278 */
9279 body {
9280 background-color: #ffffff;
9281 }
9282 body.notebook_app {
9283 overflow: hidden;
9284 }
9285 @media (max-width: 767px) {
9286 body.notebook_app {
9287 padding-left: 0px;
9288 padding-right: 0px;
9289 }
9290 }
9291 span#notebook_name {
9292 height: 1em;
9293 line-height: 1em;
9294 padding: 3px;
9295 border: none;
9296 font-size: 146.5%;
9297 }
9298 div#notebook_panel {
9299 margin: 0px 0px 0px 0px;
9300 padding: 0px;
9301 -webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9302 box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9303 }
9304 div#notebook {
9305 font-size: 14px;
9306 line-height: 20px;
9307 overflow-y: scroll;
9308 overflow-x: auto;
9309 width: 100%;
9310 /* This spaces the cell away from the edge of the notebook area */
9311 padding: 1em 0 1em 0;
9312 margin: 0px;
9313 border-top: 1px solid #e7e7e7;
9314 outline: none;
9315 box-sizing: border-box;
9316 -moz-box-sizing: border-box;
9317 -webkit-box-sizing: border-box;
9318 }
9319 div.ui-widget-content {
9320 border: 1px solid #ababab;
9321 outline: none;
9322 }
9323 pre.dialog {
9324 background-color: #f7f7f7;
9325 border: 1px solid #ddd;
9326 border-radius: 4px;
9327 padding: 0.4em;
9328 padding-left: 2em;
9329 }
9330 p.dialog {
9331 padding: 0.2em;
9332 }
9333 /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
9334 to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
9335 */
9336 pre,
9337 code,
9338 kbd,
9339 samp {
9340 white-space: pre-wrap;
9341 }
9342 #fonttest {
9343 font-family: monospace;
9344 }
9345 p {
9346 margin-bottom: 0;
9347 }
9348 .end_space {
9349 height: 200px;
9350 }
9351 /* CSS for the cell toolbar */
9352 .celltoolbar {
9353 border: thin solid #CFCFCF;
9354 border-bottom: none;
9355 background: #EEE;
9356 border-radius: 3px 3px 0px 0px;
9357 width: 100%;
9358 -webkit-box-pack: end;
9359 height: 29px;
9360 padding-right: 4px;
9361 /* Old browsers */
9362 display: -webkit-box;
9363 -webkit-box-orient: horizontal;
9364 -webkit-box-align: stretch;
9365 display: -moz-box;
9366 -moz-box-orient: horizontal;
9367 -moz-box-align: stretch;
9368 display: box;
9369 box-orient: horizontal;
9370 box-align: stretch;
9371 /* Modern browsers */
9372 display: flex;
9373 flex-direction: row;
9374 align-items: stretch;
9375 /* Old browsers */
9376 -webkit-box-flex: 0;
9377 -moz-box-flex: 0;
9378 box-flex: 0;
9379 /* Modern browsers */
9380 flex: none;
9381 /* Old browsers */
9382 -webkit-box-direction: reverse;
9383 -moz-box-direction: reverse;
9384 box-direction: reverse;
9385 /* Modern browsers */
9386 flex-direction: row-reverse;
9387 }
9388 .ctb_hideshow {
9389 display: none;
9390 vertical-align: bottom;
9391 }
9392 /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
9393 Cell toolbars are only shown when the ctb_global_show class is also set.
9394 */
9395 .ctb_global_show .ctb_show.ctb_hideshow {
9396 display: block;
9397 }
9398 .ctb_global_show .ctb_show + .input_area,
9399 .ctb_global_show .ctb_show + div.text_cell_input {
9400 border-top-right-radius: 0px;
9401 border-top-left-radius: 0px;
9402 }
9403 .celltoolbar {
9404 font-size: 87%;
9405 padding-top: 3px;
9406 }
9407 .celltoolbar select {
9408 font-size: 87%;
9409 height: 22px;
9410 }
9411 .celltoolbar label {
9412 margin-left: 5px;
9413 margin-right: 5px;
9414 }
9415 .completions {
9416 position: absolute;
9417 z-index: 10;
9418 overflow: hidden;
9419 border: 1px solid #ababab;
9420 border-radius: 4px;
9421 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
9422 box-shadow: 0px 6px 10px -1px #adadad;
9423 }
9424 .completions select {
9425 background: white;
9426 outline: none;
9427 border: none;
9428 padding: 0px;
9429 margin: 0px;
9430 overflow: auto;
9431 font-family: monospace;
9432 font-size: 110%;
9433 color: #000000;
9434 width: auto;
9435 }
9436 .completions select option.context {
9437 color: #3071a9;
9438 }
9439 #menubar {
9440 margin-top: 0px;
9441 margin-bottom: -19px;
9442 position: relative;
9443 }
9444 #menubar .navbar {
9445 border-top: 1px;
9446 border-radius: 0px 0px 4px 4px;
9447 }
9448 #menubar li.dropdown {
9449 line-height: 12px;
9450 }
9451 #menubar li.dropdown a {
9452 padding-top: 6px;
9453 padding-bottom: 5px;
9454 }
9455 #menubar ul.navbar-right {
9456 padding-top: 2px;
9457 }
9458 .nav-wrapper {
9459 border-bottom: 1px solid #e7e7e7;
9460 }
9461 i.menu-icon {
9462 padding-top: 4px;
9463 }
9464 ul#help_menu li a {
9465 overflow: hidden;
9466 padding-right: 2.2em;
9467 }
9468 ul#help_menu li a i {
9469 margin-right: -1.2em;
9470 }
9471 #menus {
9472 min-height: 30px;
9473 }
9474 .dropdown-submenu {
9475 position: relative;
9476 }
9477 .dropdown-submenu > .dropdown-menu {
9478 top: 0;
9479 left: 100%;
9480 margin-top: -6px;
9481 margin-left: -1px;
9482 -webkit-border-radius: 0 6px 6px 6px;
9483 -moz-border-radius: 0 6px 6px 6px;
9484 border-radius: 0 6px 6px 6px;
9485 }
9486 .dropdown-submenu:hover > .dropdown-menu {
9487 display: block;
9488 }
9489 .dropdown-submenu > a:after {
9490 display: block;
9491 content: " ";
9492 float: right;
9493 width: 0;
9494 height: 0;
9495 border-color: transparent;
9496 border-style: solid;
9497 border-width: 5px 0 5px 5px;
9498 border-left-color: #cccccc;
9499 margin-top: 5px;
9500 margin-right: -10px;
9501 }
9502 .dropdown-submenu:hover > a:after {
9503 border-left-color: #ffffff;
9504 }
9505 .dropdown-submenu.pull-left {
9506 float: none;
9507 }
9508 .dropdown-submenu.pull-left > .dropdown-menu {
9509 left: -100%;
9510 margin-left: 10px;
9511 -webkit-border-radius: 6px 0 6px 6px;
9512 -moz-border-radius: 6px 0 6px 6px;
9513 border-radius: 6px 0 6px 6px;
9514 }
9515 #notification_area {
9516 float: right !important;
9517 float: right;
9518 z-index: 10;
9519 }
9520 .indicator_area {
9521 color: #777777;
9522 padding: 4px 3px;
9523 margin: 0px;
9524 width: 11px;
9525 z-index: 10;
9526 text-align: center;
9527 }
9528 #kernel_indicator {
9529 float: right !important;
9530 float: right;
9531 color: #777777;
9532 padding: 4px 3px;
9533 margin: 0px;
9534 width: 11px;
9535 z-index: 10;
9536 text-align: center;
9537 margin-right: 12px;
9538 }
9539 #modal_indicator {
9540 float: right !important;
9541 float: right;
9542 color: #777777;
9543 padding: 4px 3px;
9544 margin: 0px;
9545 width: 11px;
9546 z-index: 10;
9547 text-align: center;
9548 margin-right: 5px;
9549 }
9550 .edit_mode_icon:before {
9551 font-family: FontAwesome;
9552 font-weight: normal;
9553 font-style: normal;
9554 text-decoration: inherit;
9555 -webkit-font-smoothing: antialiased;
9556 *margin-right: .3em;
9557 content: "\f040";
9558 }
9559 .command_mode_icon:before {
9560 font-family: FontAwesome;
9561 font-weight: normal;
9562 font-style: normal;
9563 text-decoration: inherit;
9564 -webkit-font-smoothing: antialiased;
9565 *margin-right: .3em;
9566 content: ' ';
9567 }
9568 .kernel_idle_icon:before {
9569 font-family: FontAwesome;
9570 font-weight: normal;
9571 font-style: normal;
9572 text-decoration: inherit;
9573 -webkit-font-smoothing: antialiased;
9574 *margin-right: .3em;
9575 content: "\f10c";
9576 }
9577 .kernel_busy_icon:before {
9578 font-family: FontAwesome;
9579 font-weight: normal;
9580 font-style: normal;
9581 text-decoration: inherit;
9582 -webkit-font-smoothing: antialiased;
9583 *margin-right: .3em;
9584 content: "\f111";
9585 }
9586 .notification_widget {
9587 color: #777777;
9588 padding: 1px 12px;
9589 margin: 2px 4px;
9590 z-index: 10;
9591 border: 1px solid #ccc;
9592 border-radius: 4px;
9593 background: rgba(240, 240, 240, 0.5);
9594 }
9595 .notification_widget.span {
9596 padding-right: 2px;
9597 }
9598 div#pager_splitter {
9599 height: 8px;
9600 }
9601 #pager-container {
9602 position: relative;
9603 padding: 15px 0px;
9604 }
9605 div#pager {
9606 font-size: 14px;
9607 line-height: 20px;
9608 overflow: auto;
9609 display: none;
9610 }
9611 div#pager pre {
9612 line-height: 1.21429em;
9613 color: #000000;
9614 background-color: #f7f7f7;
9615 padding: 0.4em;
9616 }
9617 .quickhelp {
9618 /* Old browsers */
9619 display: -webkit-box;
9620 -webkit-box-orient: horizontal;
9621 -webkit-box-align: stretch;
9622 display: -moz-box;
9623 -moz-box-orient: horizontal;
9624 -moz-box-align: stretch;
9625 display: box;
9626 box-orient: horizontal;
9627 box-align: stretch;
9628 /* Modern browsers */
9629 display: flex;
9630 flex-direction: row;
9631 align-items: stretch;
9632 /* Old browsers */
9633 -webkit-box-flex: 0;
9634 -moz-box-flex: 0;
9635 box-flex: 0;
9636 /* Modern browsers */
9637 flex: none;
9638 }
9639 .shortcut_key {
9640 display: inline-block;
9641 width: 20ex;
9642 text-align: right;
9643 font-family: monospace;
9644 }
9645 .shortcut_descr {
9646 display: inline-block;
9647 /* Old browsers */
9648 -webkit-box-flex: 1;
9649 -moz-box-flex: 1;
9650 box-flex: 1;
9651 /* Modern browsers */
9652 flex: 1;
9653 }
9654 span#save_widget {
9655 padding: 0px 5px;
9656 margin-top: 12px;
9657 }
9658 span#checkpoint_status,
9659 span#autosave_status {
9660 font-size: small;
9661 }
9662 @media (max-width: 767px) {
9663 span#save_widget {
9664 font-size: small;
9665 }
9666 span#checkpoint_status,
9667 span#autosave_status {
9668 font-size: x-small;
9669 }
9670 }
9671 @media (max-width: 767px) {
9672 span#checkpoint_status,
9673 span#autosave_status {
9674 display: none;
9675 }
9676 }
9677 @media (min-width: 768px) and (max-width: 979px) {
9678 span#checkpoint_status {
9679 display: none;
9680 }
9681 span#autosave_status {
9682 font-size: x-small;
9683 }
9684 }
9685 .toolbar {
9686 padding: 0px;
9687 margin-left: -5px;
9688 margin-top: -5px;
9689 }
9690 .toolbar select,
9691 .toolbar label {
9692 width: auto;
9693 vertical-align: middle;
9694 margin-right: 2px;
9695 margin-bottom: 0px;
9696 display: inline;
9697 font-size: 92%;
9698 margin-left: 0.3em;
9699 margin-right: 0.3em;
9700 padding: 0px;
9701 padding-top: 3px;
9702 }
9703 .toolbar .btn {
9704 padding: 2px 8px;
9705 }
9706 .toolbar .btn-group {
9707 margin-top: 0px;
9708 margin-left: 5px;
9709 }
9710 #maintoolbar {
9711 margin-bottom: -3px;
9712 margin-top: -8px;
9713 border: 0px;
9714 min-height: 27px;
9715 margin-left: 32px;
9716 padding-top: 6px;
9717 padding-bottom: 8px;
9718 }
9719 #maintoolbar .navbar-text {
9720 float: none;
9721 vertical-align: middle;
9722 text-align: right;
9723 margin-left: 5px;
9724 margin-right: 0px;
9725 margin-top: 0px;
9726 }
9727 #maintoolbar .toolbar {
9728 margin-top: 0px;
9729 }
9730 .select-xs {
9731 height: 24px;
9732 }
9733 /**
9734 * Primary styles
9735 *
9736 * Author: IPython Development Team
9737 */
9738 /** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
9739 * of chance of beeing generated from the ../less/[samename].less file, you can
9740 * try to get back the less file by reverting somme commit in history
9741 **/
9742 /*
9743 * We'll try to get something pretty, so we
9744 * have some strange css to have the scroll bar on
9745 * the left with fix button on the top right of the tooltip
9746 */
9747 @-moz-keyframes fadeOut {
9748 from {
9749 opacity: 1;
9750 }
9751 to {
9752 opacity: 0;
9753 }
9754 }
9755 @-webkit-keyframes fadeOut {
9756 from {
9757 opacity: 1;
9758 }
9759 to {
9760 opacity: 0;
9761 }
9762 }
9763 @-moz-keyframes fadeIn {
9764 from {
9765 opacity: 0;
9766 }
9767 to {
9768 opacity: 1;
9769 }
9770 }
9771 @-webkit-keyframes fadeIn {
9772 from {
9773 opacity: 0;
9774 }
9775 to {
9776 opacity: 1;
9777 }
9778 }
9779 /*properties of tooltip after "expand"*/
9780 .bigtooltip {
9781 overflow: auto;
9782 height: 200px;
9783 -webkit-transition-property: height;
9784 -webkit-transition-duration: 500ms;
9785 -moz-transition-property: height;
9786 -moz-transition-duration: 500ms;
9787 transition-property: height;
9788 transition-duration: 500ms;
9789 }
9790 /*properties of tooltip before "expand"*/
9791 .smalltooltip {
9792 -webkit-transition-property: height;
9793 -webkit-transition-duration: 500ms;
9794 -moz-transition-property: height;
9795 -moz-transition-duration: 500ms;
9796 transition-property: height;
9797 transition-duration: 500ms;
9798 text-overflow: ellipsis;
9799 overflow: hidden;
9800 height: 80px;
9801 }
9802 .tooltipbuttons {
9803 position: absolute;
9804 padding-right: 15px;
9805 top: 0px;
9806 right: 0px;
9807 }
9808 .tooltiptext {
9809 /*avoid the button to overlap on some docstring*/
9810 padding-right: 30px;
9811 }
9812 .ipython_tooltip {
9813 max-width: 700px;
9814 /*fade-in animation when inserted*/
9815 -webkit-animation: fadeOut 400ms;
9816 -moz-animation: fadeOut 400ms;
9817 animation: fadeOut 400ms;
9818 -webkit-animation: fadeIn 400ms;
9819 -moz-animation: fadeIn 400ms;
9820 animation: fadeIn 400ms;
9821 vertical-align: middle;
9822 background-color: #f7f7f7;
9823 overflow: visible;
9824 border: #ababab 1px solid;
9825 outline: none;
9826 padding: 3px;
9827 margin: 0px;
9828 padding-left: 7px;
9829 font-family: monospace;
9830 min-height: 50px;
9831 -moz-box-shadow: 0px 6px 10px -1px #adadad;
9832 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
9833 box-shadow: 0px 6px 10px -1px #adadad;
9834 border-radius: 4px;
9835 position: absolute;
9836 z-index: 1000;
9837 }
9838 .ipython_tooltip a {
9839 float: right;
9840 }
9841 .ipython_tooltip .tooltiptext pre {
9842 border: 0;
9843 -webkit-border-radius: 0;
9844 -moz-border-radius: 0;
9845 border-radius: 0;
9846 font-size: 100%;
9847 background-color: #f7f7f7;
9848 }
9849 .pretooltiparrow {
9850 left: 0px;
9851 margin: 0px;
9852 top: -16px;
9853 width: 40px;
9854 height: 16px;
9855 overflow: hidden;
9856 position: absolute;
9857 }
9858 .pretooltiparrow:before {
9859 background-color: #f7f7f7;
9860 border: 1px #ababab solid;
9861 z-index: 11;
9862 content: "";
9863 position: absolute;
9864 left: 15px;
9865 top: 10px;
9866 width: 25px;
9867 height: 25px;
9868 -webkit-transform: rotate(45deg);
9869 -moz-transform: rotate(45deg);
9870 -ms-transform: rotate(45deg);
9871 -o-transform: rotate(45deg);
9872 }
9873 /*# sourceMappingURL=../style/style.min.css.map */ No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now