[IMP] width of dialogs
[odoo/odoo.git] / addons / web / static / src / css / base.css
1 @charset "utf-8";
2 @font-face {
3   font-family: "mnmliconsRegular";
4   src: url("/web/static/src/font/mnmliconsv21-webfont.eot") format("eot");
5   src: url("/web/static/src/font/mnmliconsv21-webfont.woff") format("woff");
6   src: url("/web/static/src/font/mnmliconsv21-webfont.ttf") format("truetype");
7   src: url("/web/static/src/font/mnmliconsv21-webfont.svg") format("svg") active;
8   font-weight: normal;
9   font-style: normal;
10 }
11
12 @font-face {
13   font-family: "EntypoRegular";
14   src: url("/web/static/src/font/entypo-webfont.eot") format("eot");
15   src: url("/web/static/src/font/entypo-webfont.eot?#iefix") format("embedded-opentype");
16   src: url("/web/static/src/font/entypo-webfont.woff") format("woff");
17   src: url("/web/static/src/font/entypo-webfont.ttf") format("truetype");
18   src: url("/web/static/src/font/entypo-webfont.svg") format("svg") active;
19   font-weight: normal;
20   font-style: normal;
21 }
22
23 .openerp.openerp_webclient_container {
24   height: 100%;
25   position: relative;
26 }
27
28 .openerp {
29   padding: 0;
30   margin: 0;
31   font-family: "Lucida Grande", Helvetica, Verdana, Arial, sans-serif;
32   color: #4c4c4c;
33   font-size: 13px;
34   background: white;
35   /* http://www.quirksmode.org/dom/inputfile.html
36    * http://stackoverflow.com/questions/2855589/replace-input-type-file-by-an-image
37    */ */
38 }
39 .openerp a {
40   text-decoration: none;
41 }
42 .openerp table {
43   padding: 0;
44   border-collapse: collapse;
45 }
46 .openerp thead {
47   font-weight: bold;
48   background-color: #f0f0f0;
49 }
50 .openerp thead th {
51   border-right: 1px dotted #afafb6;
52 }
53 .openerp thead th:last-child {
54   border-right: none;
55 }
56 .openerp th, .openerp td {
57   padding: 0;
58   text-align: left;
59 }
60 .openerp th {
61   font-weight: bold;
62   vertical-align: middle;
63 }
64 .openerp td {
65   vertical-align: top;
66 }
67 .openerp .zebra tbody tr:nth-child(odd) td {
68   background-color: #f0f0fa;
69   background-color: #f0f0fa;
70   background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0fa), to(#eeeef6));
71   background-image: -webkit-linear-gradient(top, #f0f0fa, #eeeef6);
72   background-image: -moz-linear-gradient(top, #f0f0fa, #eeeef6);
73   background-image: -ms-linear-gradient(top, #f0f0fa, #eeeef6);
74   background-image: -o-linear-gradient(top, #f0f0fa, #eeeef6);
75   background-image: linear-gradient(to bottom, #f0f0fa, #eeeef6);
76 }
77 .openerp .zebra tbody tr:hover td {
78   background-color: #eeeeee;
79   background-image: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#dedede));
80   background-image: -webkit-linear-gradient(top, #eeeeee, #dedede);
81   background-image: -moz-linear-gradient(top, #eeeeee, #dedede);
82   background-image: -ms-linear-gradient(top, #eeeeee, #dedede);
83   background-image: -o-linear-gradient(top, #eeeeee, #dedede);
84   background-image: linear-gradient(to bottom, #eeeeee, #dedede);
85 }
86 .openerp ul, .openerp li, .openerp ol {
87   margin: 0;
88   padding: 0;
89 }
90 .openerp li {
91   list-style-type: none;
92 }
93 .openerp input, .openerp textarea, .openerp select {
94   padding: 2px 4px;
95   border: 1px solid #cccccc;
96   -moz-border-radius: 3px;
97   -webkit-border-radius: 3px;
98   border-radius: 3px;
99   background: white;
100 }
101 .openerp img {
102   vertical-align: middle;
103 }
104 .openerp h4 {
105   margin: 4px 0;
106 }
107 .openerp a.button:link, .openerp a.button:visited, .openerp button, .openerp input[type='submit'] {
108   display: inline-block;
109   border: 1px solid #ababab;
110   color: #404040;
111   margin: 0;
112   padding: 3px 12px;
113   font-size: 13px;
114   text-align: center;
115   background-color: #efefef;
116   background-image: -webkit-gradient(linear, left top, left bottom, from(#efefef), to(#d8d8d8));
117   background-image: -webkit-linear-gradient(top, #efefef, #d8d8d8);
118   background-image: -moz-linear-gradient(top, #efefef, #d8d8d8);
119   background-image: -ms-linear-gradient(top, #efefef, #d8d8d8);
120   background-image: -o-linear-gradient(top, #efefef, #d8d8d8);
121   background-image: linear-gradient(to bottom, #efefef, #d8d8d8);
122   -moz-border-radius: 3px;
123   -webkit-border-radius: 3px;
124   border-radius: 3px;
125   -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
126   -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
127   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
128   text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
129   -webkit-font-smoothing: antialiased;
130   outline: none;
131 }
132 .openerp a.button:hover, .openerp button:hover, .openerp input[type='submit']:hover {
133   background-color: #f6f6f6;
134   background-image: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#e3e3e3));
135   background-image: -webkit-linear-gradient(top, #f6f6f6, #e3e3e3);
136   background-image: -moz-linear-gradient(top, #f6f6f6, #e3e3e3);
137   background-image: -ms-linear-gradient(top, #f6f6f6, #e3e3e3);
138   background-image: -o-linear-gradient(top, #f6f6f6, #e3e3e3);
139   background-image: linear-gradient(to bottom, #f6f6f6, #e3e3e3);
140   cursor: pointer;
141 }
142 .openerp a.button:focus, .openerp button:focus, .openerp input[type='submit']:focus {
143   border: 1px solid #80bfff;
144   background-color: #f6f6f6;
145   background-image: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#e3e3e3));
146   background-image: -webkit-linear-gradient(top, #f6f6f6, #e3e3e3);
147   background-image: -moz-linear-gradient(top, #f6f6f6, #e3e3e3);
148   background-image: -ms-linear-gradient(top, #f6f6f6, #e3e3e3);
149   background-image: -o-linear-gradient(top, #f6f6f6, #e3e3e3);
150   background-image: linear-gradient(to bottom, #f6f6f6, #e3e3e3);
151   -moz-box-shadow: 0 0 3px #80bfff, 0 1px 1px rgba(255, 255, 255, 0.8) inset;
152   -webkit-box-shadow: 0 0 3px #80bfff, 0 1px 1px rgba(255, 255, 255, 0.8) inset;
153   box-shadow: 0 0 3px #80bfff, 0 1px 1px rgba(255, 255, 255, 0.8) inset;
154 }
155 .openerp a.button:active, .openerp a.button.active, .openerp button:active, .openerp button.active, .openerp input[type='submit']:active, .openerp input[type='submit'].active {
156   background-color: #e3e3e3;
157   background-image: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#f6f6f6));
158   background-image: -webkit-linear-gradient(top, #e3e3e3, #f6f6f6);
159   background-image: -moz-linear-gradient(top, #e3e3e3, #f6f6f6);
160   background-image: -ms-linear-gradient(top, #e3e3e3, #f6f6f6);
161   background-image: -o-linear-gradient(top, #e3e3e3, #f6f6f6);
162   background-image: linear-gradient(to bottom, #e3e3e3, #f6f6f6);
163   -moz-box-shadow: none;
164   -webkit-box-shadow: none;
165   box-shadow: none;
166 }
167 .openerp a.button.disabled, .openerp button:disabled, .openerp input[type='submit']:disabled {
168   background: #efefef !important;
169   border: 1px solid #d1d1d1 !important;
170   -moz-box-shadow: none !important;
171   -webkit-box-shadow: none !important;
172   box-shadow: none !important;
173   color: #aaaaaa !important;
174   cursor: default;
175   text-shadow: 0 1px 1px white !important;
176 }
177 .openerp .ui-widget {
178   font-family: "Lucida Grande", Helvetica, Verdana, Arial, sans-serif;
179   font-size: 13px;
180 }
181 .openerp .ui-menu .ui-menu-item {
182   margin: 0 8px 0 0;
183   padding: 0 0 0 12px;
184   width: auto;
185 }
186 .openerp .ui-menu .ui-menu-item a.ui-state-active {
187   background: #f0f0fa;
188 }
189 .openerp.ui-dialog {
190   display: none;
191   padding: 6px;
192   background-color: rgba(60, 60, 60, 0.7);
193   border: 1px solid;
194   border-color: #888888 #555555 #444444;
195   -moz-border-radius: 8px;
196   -webkit-border-radius: 8px;
197   border-radius: 8px;
198   -moz-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
199   -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
200   box-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
201   -webkit-background-clip: padding-box;
202   -moz-background-clip: padding-box;
203   background-clip: padding-box;
204 }
205 .openerp.ui-dialog .ui-dialog-titlebar, .openerp.ui-dialog .ui-dialog-content, .openerp.ui-dialog .ui-dialog-buttonpane {
206   padding: 16px;
207 }
208 .openerp.ui-dialog .ui-dialog-titlebar {
209   border-bottom: 1px solid #cacaca;
210   -moz-border-radius: 2px 2px 0 0;
211   -webkit-border-radius: 2px 2px 0 0;
212   border-radius: 2px 2px 0 0;
213   background-color: #fcfcfc;
214   background-image: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#dedede));
215   background-image: -webkit-linear-gradient(top, #fcfcfc, #dedede);
216   background-image: -moz-linear-gradient(top, #fcfcfc, #dedede);
217   background-image: -ms-linear-gradient(top, #fcfcfc, #dedede);
218   background-image: -o-linear-gradient(top, #fcfcfc, #dedede);
219   background-image: linear-gradient(to bottom, #fcfcfc, #dedede);
220 }
221 .openerp.ui-dialog .ui-dialog-titlebar .ui-dialog-title {
222   margin: 0;
223   padding: 0;
224 }
225 .openerp.ui-dialog .ui-widget-header {
226   border: none;
227 }
228 .openerp.ui-dialog .ui-dialog-content {
229   background: white;
230 }
231 .openerp.ui-dialog .ui-dialog-buttonpane {
232   border-top: 1px solid #e0e0e0;
233   background: #f5f7f9;
234   padding: 8px;
235   margin: 0;
236   -moz-border-radius: 0 0 2px 2px;
237   -webkit-border-radius: 0 0 2px 2px;
238   border-radius: 0 0 2px 2px;
239 }
240 .openerp.ui-dialog .ui-dialog-buttonpane button {
241   margin-left: 8px;
242 }
243 .openerp.ui-dialog .ui-dialog-titlebar-close {
244   padding: 0;
245 }
246 .openerp.ui-dialog .ui-dialog-titlebar-close .ui-icon-closethick {
247   display: none;
248 }
249 .openerp.ui-dialog .ui-dialog-titlebar-close:before {
250   content: "×";
251   font-size: 18px;
252   font-weight: bold;
253   line-height: 16px;
254   color: black;
255   text-shadow: 0 1px 0 white;
256   padding: 0;
257   cursor: pointer;
258   background: transparent;
259   border: 0;
260 }
261 .openerp.ui-dialog .ui-dialog-titlebar-close:before:hover {
262   color: black;
263   text-decoration: none;
264 }
265 .openerp .modal-backdrop {
266   position: fixed;
267   top: 0;
268   right: 0;
269   bottom: 0;
270   left: 0;
271   z-index: 1040;
272   background-color: black;
273   filter: alpha(opacity=30);
274   opacity: 0.3;
275 }
276 .openerp .oe_i {
277   font-family: "mnmliconsRegular" !important;
278   font-size: 21px;
279   font-weight: 300 !important;
280 }
281 .openerp .oe_e {
282   font-family: "entypoRegular" !important;
283   font-size: 34px;
284   font-weight: 300 !important;
285 }
286 .openerp .oe_left {
287   float: left;
288   margin-right: 8px;
289 }
290 .openerp .oe_right {
291   float: right;
292   margin-left: 8px;
293 }
294 .openerp .oe_text_right {
295   text-align: right;
296 }
297 .openerp .oe_clear {
298   clear: both;
299 }
300 .openerp .oe_wait {
301   cursor: wait;
302 }
303 .openerp .oe_fade {
304   color: #888888;
305 }
306 .openerp .oe_bold {
307   font-weight: bold;
308 }
309 .openerp .oe_inline {
310   width: auto !important;
311 }
312 .openerp .oe_highlight {
313   color: white;
314   background: #dc5f59;
315 }
316 .openerp button.oe_highlight {
317   background-color: #dc5f59;
318   background-image: -webkit-gradient(linear, left top, left bottom, from(#dc5f59), to(#b33630));
319   background-image: -webkit-linear-gradient(top, #dc5f59, #b33630);
320   background-image: -moz-linear-gradient(top, #dc5f59, #b33630);
321   background-image: -ms-linear-gradient(top, #dc5f59, #b33630);
322   background-image: -o-linear-gradient(top, #dc5f59, #b33630);
323   background-image: linear-gradient(to bottom, #dc5f59, #b33630);
324   -moz-box-shadow: none;
325   -webkit-box-shadow: none;
326   box-shadow: none;
327 }
328 .openerp button.oe_highlight:active {
329   background-color: #b33630;
330   background-image: -webkit-gradient(linear, left top, left bottom, from(#b33630), to(#dc5f59));
331   background-image: -webkit-linear-gradient(top, #b33630, #dc5f59);
332   background-image: -moz-linear-gradient(top, #b33630, #dc5f59);
333   background-image: -ms-linear-gradient(top, #b33630, #dc5f59);
334   background-image: -o-linear-gradient(top, #b33630, #dc5f59);
335   background-image: linear-gradient(to bottom, #b33630, #dc5f59);
336   -moz-box-shadow: none;
337   -webkit-box-shadow: none;
338   box-shadow: none;
339 }
340 .openerp button.oe_highlight:hover {
341   background-color: #df6b66;
342   background-image: -webkit-gradient(linear, left top, left bottom, from(#df6b66), to(#bf3a33));
343   background-image: -webkit-linear-gradient(top, #df6b66, #bf3a33);
344   background-image: -moz-linear-gradient(top, #df6b66, #bf3a33);
345   background-image: -ms-linear-gradient(top, #df6b66, #bf3a33);
346   background-image: -o-linear-gradient(top, #df6b66, #bf3a33);
347   background-image: linear-gradient(to bottom, #df6b66, #bf3a33);
348   -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
349   -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
350   box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
351 }
352 .openerp .oe_form_dirty .oe_highlight_on_dirty {
353   color: white;
354   background: #dc5f59;
355   font-weight: bold;
356 }
357 .openerp .oe_form_dirty button.oe_highlight_on_dirty {
358   background-color: #dc5f59;
359   background-image: -webkit-gradient(linear, left top, left bottom, from(#dc5f59), to(#b33630));
360   background-image: -webkit-linear-gradient(top, #dc5f59, #b33630);
361   background-image: -moz-linear-gradient(top, #dc5f59, #b33630);
362   background-image: -ms-linear-gradient(top, #dc5f59, #b33630);
363   background-image: -o-linear-gradient(top, #dc5f59, #b33630);
364   background-image: linear-gradient(to bottom, #dc5f59, #b33630);
365   -moz-box-shadow: none;
366   -webkit-box-shadow: none;
367   box-shadow: none;
368 }
369 .openerp .oe_form_dirty button.oe_highlight_on_dirty:hover {
370   background: #ed6f6a;
371 }
372 .openerp .oe_title {
373   width: 60%;
374 }
375 .openerp .oe_title:after {
376   content: ".";
377   display: block;
378   height: 0;
379   clear: both;
380   visibility: hidden;
381 }
382 .openerp .oe_button_box {
383   width: 38%;
384   text-align: right;
385 }
386 .openerp .oe_button_box button {
387   margin: 4px;
388 }
389 .openerp .oe_avatar {
390   margin: 0 16px 0 0;
391 }
392 .openerp .oe_avatar img {
393   height: 50px;
394   -moz-border-radius: 3px;
395   -webkit-border-radius: 3px;
396   border-radius: 3px;
397   -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
398   -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
399   box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
400   border: none;
401 }
402 .openerp .oe_button.oe_link {
403   border: none;
404   padding: 0;
405   margin: 0;
406   background: none;
407   -moz-border-radius: none;
408   -webkit-border-radius: none;
409   border-radius: none;
410   -moz-box-shadow: none;
411   -webkit-box-shadow: none;
412   box-shadow: none;
413 }
414 .openerp .oe_button.oe_link img {
415   display: none;
416 }
417 .openerp .oe_button.oe_link span {
418   border: none;
419   padding: 0;
420   margin: 0;
421   background: none;
422   -moz-border-radius: none;
423   -webkit-border-radius: none;
424   border-radius: none;
425   -moz-box-shadow: none;
426   -webkit-box-shadow: none;
427   box-shadow: none;
428   color: #8a89ba;
429   font-weight: bold;
430 }
431 .openerp .oe_button.oe_link span:hover {
432   text-decoration: underline;
433 }
434 .openerp .oe_webclient .oe_star_on, .openerp .oe_webclient .oe_star_off {
435   color: #cccccc;
436   text-shadow: 0 0 2px black;
437   vertical-align: top;
438   position: relative;
439   top: -5px;
440 }
441 .openerp .oe_webclient .oe_star_on:hover, .openerp .oe_webclient .oe_star_off:hover {
442   text-decoration: none;
443 }
444 .openerp .oe_webclient .oe_star_on {
445   color: gold;
446 }
447 .openerp.oe_tooltip {
448   font-size: 12px;
449 }
450 .openerp.oe_tooltip .oe_tooltip_string {
451   color: #ffdd55;
452   font-weight: bold;
453   font-size: 13px;
454 }
455 .openerp.oe_tooltip .oe_tooltip_help {
456   white-space: pre-wrap;
457 }
458 .openerp.oe_tooltip .oe_tooltip_technical {
459   padding: 0 0 4px 0;
460   margin: 5px 0 0 15px;
461 }
462 .openerp.oe_tooltip .oe_tooltip_technical li {
463   list-style: circle;
464 }
465 .openerp.oe_tooltip .oe_tooltip_technical_title {
466   font-weight: bold;
467 }
468 .openerp .oe_notebook {
469   margin: 8px 0;
470   padding: 0 16px;
471   list-style: none;
472   zoom: 1;
473 }
474 .openerp .oe_notebook.ui-corner-all {
475   -moz-border-radius: 0;
476   -webkit-border-radius: 0;
477   border-radius: 0;
478 }
479 .openerp .oe_notebook:before, .openerp .oe_notebook:after {
480   display: table;
481   content: "";
482   zoom: 1;
483 }
484 .openerp .oe_notebook:after {
485   clear: both;
486 }
487 .openerp .oe_notebook > li {
488   float: left;
489 }
490 .openerp .oe_notebook > li > a {
491   display: block;
492   color: #4c4c4c;
493 }
494 .openerp .oe_notebook {
495   border-color: #dddddd;
496   border-style: solid;
497   border-width: 0 0 1px;
498 }
499 .openerp .oe_notebook > li {
500   position: relative;
501 }
502 .openerp .oe_notebook > li > a {
503   padding: 0 12px;
504   margin-right: 2px;
505   line-height: 30px;
506   border: 1px solid transparent;
507   -moz-border-radius: 4px 4px 0 0;
508   -webkit-border-radius: 4px 4px 0 0;
509   border-radius: 4px 4px 0 0;
510 }
511 .openerp .oe_notebook > li > a:hover {
512   text-decoration: none;
513   background-color: #eeeeee;
514   border-color: #eeeeee #eeeeee #dddddd;
515 }
516 .openerp .oe_notebook > li.ui-state-active > a, .openerp .oe_notebook > li.ui-state-active > a:hover {
517   background-color: white;
518   border: 1px solid #dddddd;
519   border-bottom-color: transparent;
520   cursor: default;
521 }
522 .openerp .oe_notebook_page {
523   padding: 0;
524 }
525 .openerp div.ui-tabs {
526   padding: 3px 0px 3px 0px;
527 }
528 .openerp .ui-tabs-hide {
529   display: none;
530 }
531 .openerp .oe_dropdown, .openerp .oe_dropdown_hover, .openerp .oe_dropdown_toggle {
532   position: relative;
533   cursor: pointer;
534 }
535 .openerp .oe_dropdown_toggle {
536   color: #404040;
537   font-weight: normal;
538 }
539 .openerp .oe_dropdown_hover:hover .oe_dropdown_menu, .openerp .oe_dropdown_menu.oe_opened {
540   display: block;
541 }
542 .openerp .oe_dropdown_menu {
543   display: none;
544   position: absolute;
545   top: 26px;
546   left: 0;
547   z-index: 1;
548   border: 1px solid #afafb6;
549   background: white;
550   padding: 6px 0;
551   min-width: 140px;
552   text-align: left;
553   -moz-border-radius: 3px;
554   -webkit-border-radius: 3px;
555   border-radius: 3px;
556   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
557   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
558   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
559 }
560 .openerp .oe_dropdown_menu > li {
561   list-style-type: none;
562   float: none;
563   display: block;
564   position: relative;
565 }
566 .openerp .oe_dropdown_menu > li:hover {
567   background-color: #f0f0fa;
568   background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0fa), to(#eeeef6));
569   background-image: -webkit-linear-gradient(top, #f0f0fa, #eeeef6);
570   background-image: -moz-linear-gradient(top, #f0f0fa, #eeeef6);
571   background-image: -ms-linear-gradient(top, #f0f0fa, #eeeef6);
572   background-image: -o-linear-gradient(top, #f0f0fa, #eeeef6);
573   background-image: linear-gradient(to bottom, #f0f0fa, #eeeef6);
574   -moz-box-shadow: none;
575   -webkit-box-shadow: none;
576   box-shadow: none;
577 }
578 .openerp .oe_dropdown_menu > li > a {
579   white-space: nowrap;
580   display: block;
581   padding: 4px 15px;
582   color: #4c4c4c;
583   text-decoration: none;
584 }
585 .openerp .oe_dropdown_menu > li > a:hover {
586   text-decoration: none;
587 }
588 .openerp .oe_dropdown_arrow:after {
589   width: 0;
590   height: 0;
591   display: inline-block;
592   content: "&darr";
593   text-indent: -99999px;
594   vertical-align: top;
595   margin-top: 8px;
596   margin-left: 4px;
597   border-left: 4px solid transparent;
598   border-right: 4px solid transparent;
599   border-top: 4px solid #404040;
600   filter: alpha(opacity=50);
601   opacity: 0.5;
602 }
603 .openerp .oe_sidebar {
604   white-space: nowrap;
605 }
606 .openerp .oe_sidebar .oe_dropdown_menu .oe_sidebar_add_attachment {
607   height: 20px;
608   cursor: pointer;
609   padding-left: 6px;
610   margin-top: 6px;
611 }
612 .openerp .oe_sidebar .oe_dropdown_menu .oe_sidebar_add_attachment span {
613   font-weight: bold;
614 }
615 .openerp .oe_sidebar .oe_dropdown_menu .oe_sidebar_add_attachment .oe_hidden_input_file {
616   width: 200px;
617 }
618 .openerp .oe_sidebar .oe_dropdown_menu .oe_sidebar_add_attachment:hover {
619   background-color: #f0f0fa;
620   background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0fa), to(#eeeef6));
621   background-image: -webkit-linear-gradient(top, #f0f0fa, #eeeef6);
622   background-image: -moz-linear-gradient(top, #f0f0fa, #eeeef6);
623   background-image: -ms-linear-gradient(top, #f0f0fa, #eeeef6);
624   background-image: -o-linear-gradient(top, #f0f0fa, #eeeef6);
625   background-image: linear-gradient(to bottom, #f0f0fa, #eeeef6);
626   -moz-box-shadow: none;
627   -webkit-box-shadow: none;
628   box-shadow: none;
629 }
630 .openerp .oe_sidebar .oe_dropdown_menu li .oe_sidebar_delete_item {
631   position: absolute;
632   top: 4px;
633   right: 4px;
634   display: none;
635   width: 12px;
636   height: 12px;
637   padding: 1px;
638   color: #8786b7;
639   line-height: 8px;
640   text-align: center;
641   font-weight: bold;
642   text-shadow: 0 1px 1px white;
643 }
644 .openerp .oe_sidebar .oe_dropdown_menu li .oe_sidebar_delete_item:hover {
645   text-decoration: none;
646   color: white;
647   background: #8786b7;
648   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
649   -moz-border-radius: 2px;
650   -webkit-border-radius: 2px;
651   border-radius: 2px;
652 }
653 .openerp .oe_sidebar .oe_dropdown_menu li:hover .oe_sidebar_delete_item {
654   display: inline-block;
655 }
656 .openerp .oe_loading {
657   display: none;
658   z-index: 100;
659   position: fixed;
660   top: 0;
661   right: 50%;
662   padding: 4px 12px;
663   background: #a61300;
664   color: white;
665   text-align: center;
666   border: 1px solid #990000;
667   border-top: none;
668   -moz-border-radius-bottomright: 8px;
669   -moz-border-radius-bottomleft: 8px;
670   border-bottom-right-radius: 8px;
671   border-bottom-left-radius: 8px;
672 }
673 .openerp .oe_notification {
674   z-index: 1050;
675 }
676 .openerp .oe_login {
677   background: url("/web/static/src/img/pattern.png") repeat;
678   text-align: center;
679   font-size: 14px;
680   height: 100%;
681 }
682 .openerp .oe_login li {
683   list-style-type: none;
684   padding-bottom: 4px;
685 }
686 .openerp .oe_login button {
687   float: right;
688   display: inline-block;
689   cursor: pointer;
690   padding: 6px 16px;
691   border: 1px solid #222222;
692   color: white;
693   margin: 0;
694   background-color: #b92020;
695   background-image: -webkit-gradient(linear, left top, left bottom, from(#b92020), to(#600606));
696   background-image: -webkit-linear-gradient(top, #b92020, #600606);
697   background-image: -moz-linear-gradient(top, #b92020, #600606);
698   background-image: -ms-linear-gradient(top, #b92020, #600606);
699   background-image: -o-linear-gradient(top, #b92020, #600606);
700   background-image: linear-gradient(to bottom, #b92020, #600606);
701   -moz-border-radius: 4px;
702   -webkit-border-radius: 4px;
703   border-radius: 4px;
704   -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(155, 155, 155, 0.4) inset;
705   -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(155, 155, 155, 0.4) inset;
706   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(155, 155, 155, 0.4) inset;
707 }
708 .openerp .oe_login input, .openerp .oe_login select {
709   width: 252px;
710   font-family: "Lucida Grande", Helvetica, Verdana, Arial;
711   border: 1px solid #999999;
712   background: whitesmoke;
713   -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
714   -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
715   box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
716   -moz-border-radius: 3px;
717   -webkit-border-radius: 3px;
718   border-radius: 3px;
719 }
720 .openerp .oe_login input {
721   margin-bottom: 9px;
722   padding: 5px 6px;
723 }
724 .openerp .oe_login select {
725   padding: 1px;
726 }
727 .openerp .oe_login .oe_login_dbpane {
728   position: fixed;
729   top: 0;
730   right: 8px;
731   padding: 5px 10px;
732   color: #eeeeee;
733   border: solid 1px #333333;
734   background: #1e1e1e;
735   background: rgba(30, 30, 30, 0.94);
736   -moz-border-radius: 0 0 8px 8px;
737   -webkit-border-radius: 0 0 8px 8px;
738   border-radius: 0 0 8px 8px;
739 }
740 .openerp .oe_login .oe_login_dbpane input {
741   padding: 2px 4px;
742   margin: 4px 0;
743 }
744 .openerp .oe_login .oe_login_bottom {
745   position: absolute;
746   top: 50%;
747   left: 0;
748   right: 0;
749   bottom: 0;
750   text-shadow: 0 1px 1px #999999;
751   background-color: #b41616;
752   background-image: -webkit-gradient(linear, left top, left bottom, from(#b41616), to(#600606));
753   background-image: -webkit-linear-gradient(top, #b41616, #600606);
754   background-image: -moz-linear-gradient(top, #b41616, #600606);
755   background-image: -ms-linear-gradient(top, #b41616, #600606);
756   background-image: -o-linear-gradient(top, #b41616, #600606);
757   background-image: linear-gradient(to bottom, #b41616, #600606);
758 }
759 .openerp .oe_login .oe_login_pane {
760   position: absolute;
761   top: 50%;
762   left: 50%;
763   margin: -160px -166px;
764   border: solid 1px #333333;
765   background: #1e1e1e;
766   background: rgba(30, 30, 30, 0.94);
767   padding: 22px 32px;
768   color: #eeeeee;
769   text-align: left;
770   -moz-border-radius: 8px;
771   -webkit-border-radius: 8px;
772   border-radius: 8px;
773   -moz-box-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
774   -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
775   box-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
776 }
777 .openerp .oe_login .oe_login_pane h2 {
778   margin-top: 0;
779   font-size: 18px;
780 }
781 .openerp .oe_login .oe_login_logo {
782   position: absolute;
783   top: -70px;
784   left: 0;
785   width: 100%;
786   margin: 0 auto;
787   text-align: center;
788 }
789 .openerp .oe_login .oe_login_footer {
790   position: absolute;
791   bottom: -40px;
792   left: 0;
793   width: 100%;
794   text-align: center;
795 }
796 .openerp .oe_login .oe_login_footer a {
797   color: #eeeeee;
798   margin: 0 8px;
799 }
800 .openerp .oe_login .oe_login_footer a:hover {
801   text-decoration: underline;
802 }
803 .openerp .oe_login .oe_login_footer span {
804   font-weight: bold;
805   font-size: 16px;
806 }
807 .openerp .oe_login .oe_login_error_message {
808   display: none;
809   background-color: #b41616;
810   color: #eeeeee;
811   padding: 14px 18px;
812   margin-top: 15px;
813   text-align: center;
814   -moz-border-radius: 4px;
815   -webkit-border-radius: 4px;
816   border-radius: 4px;
817   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
818   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
819   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
820 }
821 .openerp .oe_login_invalid .oe_login_error_message {
822   display: inline-block;
823 }
824 .openerp .oe_database_manager {
825   background: white;
826   color: black;
827   text-align: left;
828 }
829 .openerp .oe_database_manager .oe_database_manager_menu {
830   color: black;
831 }
832 .openerp .oe_webclient {
833   width: 100%;
834   height: 100%;
835   border-spacing: 0px;
836 }
837 .openerp .oe_content_full_screen .oe_application {
838   top: 0;
839   left: 0;
840 }
841 .openerp .oe_content_full_screen .oe_topbar, .openerp .oe_content_full_screen .oe_leftbar {
842   display: none;
843 }
844 .openerp .oe_topbar {
845   width: 100%;
846   height: 31px;
847   border-top: solid 1px #d3d3d3;
848   background-color: #646060;
849   background-image: -webkit-gradient(linear, left top, left bottom, from(#646060), to(#262626));
850   background-image: -webkit-linear-gradient(top, #646060, #262626);
851   background-image: -moz-linear-gradient(top, #646060, #262626);
852   background-image: -ms-linear-gradient(top, #646060, #262626);
853   background-image: -o-linear-gradient(top, #646060, #262626);
854   background-image: linear-gradient(to bottom, #646060, #262626);
855 }
856 .openerp .oe_topbar .oe_topbar_item {
857   display: block;
858   padding: 5px 10px 7px;
859   line-height: 20px;
860   height: 20px;
861   color: #eeeeee;
862   vertical-align: top;
863   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
864 }
865 .openerp .oe_topbar .oe_topbar_item:hover {
866   background: #303030;
867   color: white;
868   -moz-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
869   -webkit-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
870   box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
871 }
872 .openerp .oe_topbar .oe_topbar_item .oe_active {
873   background: #303030;
874   font-weight: bold;
875   color: white;
876   -moz-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
877   -webkit-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
878   box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
879 }
880 .openerp .oe_topbar .oe_topbar_avatar {
881   width: 24px;
882   height: 24px;
883   margin: -2px 2px 0 0;
884   -moz-border-radius: 3px;
885   -webkit-border-radius: 3px;
886   border-radius: 3px;
887 }
888 .openerp .oe_topbar .oe_topbar_avatar {
889   vertical-align: top;
890 }
891 .openerp .oe_topbar .oe_dropdown_arrow:after {
892   border-top: 4px solid white;
893 }
894 .openerp .oe_topbar .oe_dropdown_menu {
895   top: 32px;
896   background: #333333;
897   background: rgba(37, 37, 37, 0.9);
898   border-color: #999999;
899   border-color: rgba(0, 0, 0, 0.2);
900   border-style: solid;
901   border-width: 0 1px 1px;
902   -moz-border-radius: 0 0 6px 6px;
903   -webkit-border-radius: 0 0 6px 6px;
904   border-radius: 0 0 6px 6px;
905   -webkit-background-clip: padding-box;
906   -moz-background-clip: padding-box;
907   background-clip: padding-box;
908 }
909 .openerp .oe_topbar .oe_dropdown_menu li {
910   float: none;
911 }
912 .openerp .oe_topbar .oe_dropdown_menu li a {
913   color: #eeeeee;
914 }
915 .openerp .oe_topbar .oe_dropdown_menu li a:hover {
916   background-color: #292929;
917   background-image: -webkit-gradient(linear, left top, left bottom, from(#292929), to(#191919));
918   background-image: -webkit-linear-gradient(top, #292929, #191919);
919   background-image: -moz-linear-gradient(top, #292929, #191919);
920   background-image: -ms-linear-gradient(top, #292929, #191919);
921   background-image: -o-linear-gradient(top, #292929, #191919);
922   background-image: linear-gradient(to bottom, #292929, #191919);
923   -moz-box-shadow: none;
924   -webkit-box-shadow: none;
925   box-shadow: none;
926 }
927 .openerp .oe_leftbar {
928   display: none;
929   width: 220px;
930   background: #f0eeee;
931   border-right: 1px solid #afafb6;
932   text-shadow: 0 1px 1px white;
933   padding-bottom: 16px;
934 }
935 .openerp a.oe_logo {
936   width: 220px;
937   display: block;
938   text-align: center;
939   height: 70px;
940   line-height: 70px;
941 }
942 .openerp a.oe_logo img {
943   height: 40px;
944   width: 157px;
945   margin: 14px 0;
946 }
947 .openerp .oe_footer {
948   position: fixed;
949   bottom: 0;
950   padding: 4px 0;
951   background: #f0eeee;
952   width: 220px;
953   text-align: center;
954 }
955 .openerp .oe_footer a {
956   font-weight: 800;
957   font-family: serif;
958   font-size: 16px;
959   color: black;
960 }
961 .openerp .oe_footer a span {
962   color: #c81010;
963   font-style: italic;
964 }
965 .openerp .oe_user_menu {
966   float: right;
967   padding: 0;
968   margin: 0;
969 }
970 .openerp .oe_user_menu li {
971   list-style-type: none;
972   float: left;
973 }
974 .openerp .oe_user_menu .oe_dropdown_menu {
975   right: -1px;
976 }
977 .openerp .oe_systray > div {
978   float: left;
979   padding: 0 4px 0 4px;
980 }
981 .openerp .oe_systray {
982   float: right;
983 }
984 .openerp .oe_menu {
985   float: left;
986   padding: 0;
987   margin: 0;
988 }
989 .openerp .oe_menu li {
990   float: left;
991 }
992 .openerp .oe_menu a {
993   display: block;
994   padding: 5px 10px 7px;
995   line-height: 20px;
996   height: 20px;
997   color: #eeeeee;
998   vertical-align: top;
999   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
1000 }
1001 .openerp .oe_menu a:hover {
1002   background: #303030;
1003   color: white;
1004   -moz-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
1005   -webkit-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
1006   box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
1007 }
1008 .openerp .oe_menu .oe_active {
1009   background: #303030;
1010   font-weight: bold;
1011   color: white;
1012   -moz-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
1013   -webkit-box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
1014   box-shadow: 0 1px 2px rgba(255, 255, 255, 0.3) inset;
1015 }
1016 .openerp .oe_secondary_menu_section {
1017   font-weight: bold;
1018   margin-left: 8px;
1019   color: #8a89ba;
1020 }
1021 .openerp .oe_secondary_submenu {
1022   padding: 2px 0 8px 0;
1023   margin: 0;
1024   width: 100%;
1025   display: inline-block;
1026 }
1027 .openerp .oe_secondary_submenu > li {
1028   position: relative;
1029   padding: 1px 0 1px 20px;
1030 }
1031 .openerp .oe_secondary_submenu > li a {
1032   display: block;
1033   color: #4c4c4c;
1034   padding: 2px 4px 2px 0;
1035 }
1036 .openerp .oe_secondary_submenu > li .oe_menu_label {
1037   position: absolute;
1038   top: 1px;
1039   right: 1px;
1040   font-size: 10px;
1041   background: #8a89ba;
1042   color: white;
1043   padding: 2px 4px;
1044   margin: 1px 6px 0 0;
1045   border: 1px solid lightGray;
1046   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
1047   -moz-border-radius: 4px;
1048   -webkit-border-radius: 4px;
1049   border-radius: 4px;
1050   -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
1051   -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
1052   box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
1053 }
1054 .openerp .oe_secondary_submenu .oe_menu_counter {
1055   float: right;
1056   background: #8a89ba;
1057   color: #eeeeee;
1058   font-size: 10px;
1059   border: 1px solid lightgray;
1060   padding: 2px 4px;
1061   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
1062   margin: 0px;
1063   -moz-border-radius: 4px;
1064   -webkit-border-radius: 4px;
1065   border-radius: 4px;
1066 }
1067 .openerp .oe_secondary_submenu .oe_active {
1068   background: #8a89ba;
1069   border-top: 1px solid lightGray;
1070   border-bottom: 1px solid lightGray;
1071   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
1072   -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
1073   -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
1074   box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
1075 }
1076 .openerp .oe_secondary_submenu .oe_active a {
1077   color: white;
1078 }
1079 .openerp .oe_secondary_submenu .oe_active .oe_menu_label {
1080   background: #eeeeee;
1081   color: #8a89ba;
1082   text-shadow: 0 1px 1px white;
1083   -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
1084   -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
1085   box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
1086 }
1087 .openerp .oe_secondary_submenu .oe_active .oe_menu_counter {
1088   background: #eeeeee;
1089   color: #8a89ba;
1090 }
1091 .openerp .oe_secondary_submenu .oe_menu_toggler:before {
1092   width: 0;
1093   height: 0;
1094   display: inline-block;
1095   content: "&darr";
1096   text-indent: -99999px;
1097   vertical-align: top;
1098   margin-left: -12px;
1099   margin-top: 4px;
1100   margin-right: 4px;
1101   border-top: 4px solid transparent;
1102   border-bottom: 4px solid transparent;
1103   border-left: 4px solid #4c4c4c;
1104   filter: alpha(opacity=50);
1105   opacity: 0.5;
1106 }
1107 .openerp .oe_secondary_submenu .oe_menu_opened:before {
1108   margin-top: 6px;
1109   margin-left: -16px;
1110   margin-right: 4px;
1111   border-left: 4px solid transparent;
1112   border-right: 4px solid transparent;
1113   border-top: 4px solid #4c4c4c;
1114 }
1115 .openerp .oe_application {
1116   width: 100%;
1117 }
1118 .openerp .oe_application a {
1119   color: #8a89ba;
1120 }
1121 .openerp .oe_application a:hover {
1122   text-decoration: underline;
1123 }
1124 .openerp .oe_application > div {
1125   height: 100%;
1126 }
1127 .openerp .oe_view_manager .oe_view_manager_body {
1128   height: inherit;
1129 }
1130 .openerp .oe_view_manager .oe_view_manager_view_kanban {
1131   height: inherit;
1132 }
1133 .openerp .oe_view_manager .oe_view_manager_header {
1134   width: 100%;
1135 }
1136 .openerp .oe_view_manager .oe_view_manager_header .oe_header_row {
1137   clear: both;
1138   text-shadow: 0 1px 1px white;
1139 }
1140 .openerp .oe_view_manager .oe_view_manager_header .oe_header_row:last-child td {
1141   padding-top: 0;
1142 }
1143 .openerp .oe_view_manager .oe_view_manager_header .oe_view_manager_sidebar {
1144   margin: 0px auto;
1145   width: 400px;
1146   text-align: center;
1147 }
1148 .openerp .oe_view_manager .oe_view_manager_header td {
1149   line-height: 26px;
1150 }
1151 .openerp .oe_view_manager .oe_view_manager_header h2 {
1152   font-size: 18px;
1153   margin: 0;
1154   float: left;
1155 }
1156 .openerp .oe_view_manager .oe_view_manager_header h2 a {
1157   color: #8a89ba;
1158 }
1159 .openerp .oe_view_manager .oe_view_manager_header .oe_button_group {
1160   display: inline-block;
1161   border: 1px solid #ababab;
1162   -moz-border-radius: 5px;
1163   -webkit-border-radius: 5px;
1164   border-radius: 5px;
1165 }
1166 .openerp .oe_view_manager .oe_view_manager_header .oe_button_group li {
1167   float: left;
1168   border-right: 1px solid #ababab;
1169 }
1170 .openerp .oe_view_manager .oe_view_manager_header .oe_button_group li:last-child {
1171   border: none;
1172 }
1173 .openerp .oe_view_manager .oe_view_manager_header .oe_button_group a {
1174   color: #4c4c4c;
1175 }
1176 .openerp .oe_view_manager .oe_view_manager_header .oe_button_group a:hover {
1177   text-decoration: none;
1178 }
1179 .openerp .oe_view_manager .oe_view_manager_header .oe_button_group .active {
1180   background: #999999;
1181   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
1182   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
1183   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
1184 }
1185 .openerp .oe_view_manager .oe_view_manager_header .oe_button_group .active a {
1186   color: white;
1187   text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
1188 }
1189 .openerp .oe_view_manager .oe_view_manager_header .oe_view_manager_buttons {
1190   white-space: nowrap;
1191 }
1192 .openerp .oe_view_manager .oe_view_manager_pager {
1193   line-height: 26px;
1194 }
1195 .openerp .oe_view_manager .oe_pager_value {
1196   float: left;
1197   margin-right: 8px;
1198 }
1199 .openerp .oe_view_manager .oe_pager_group {
1200   float: left;
1201   height: 24px;
1202   line-height: 24px;
1203   display: inline-block;
1204   border: 1px solid #ababab;
1205   cursor: pointer;
1206   -moz-border-radius: 5px;
1207   -webkit-border-radius: 5px;
1208   border-radius: 5px;
1209 }
1210 .openerp .oe_view_manager .oe_pager_group li {
1211   height: 24px;
1212   line-height: 24px;
1213   padding: 0;
1214   float: left;
1215   border-right: 1px solid #ababab;
1216 }
1217 .openerp .oe_view_manager .oe_pager_group li:last-child {
1218   border: none;
1219 }
1220 .openerp .oe_view_manager .oe_pager_group a {
1221   color: #4c4c4c;
1222   padding: 0 8px;
1223 }
1224 .openerp .oe_view_manager .oe_pager_group a:hover {
1225   text-decoration: none;
1226 }
1227 .openerp .oe_view_manager .oe_pager_group .active {
1228   background: #999999;
1229   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
1230   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
1231   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) inset;
1232 }
1233 .openerp .oe_view_manager .oe_pager_group .active a {
1234   color: white;
1235   text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
1236 }
1237 .openerp .oe_view_manager .oe_view_manager_switch li {
1238   text-align: center;
1239   width: 24px;
1240   height: 24px;
1241   line-height: 16px;
1242 }
1243 .openerp .oe_view_manager .oe_view_manager_switch li a {
1244   position: relative;
1245 }
1246 .openerp .oe_view_manager .oe_view_manager_switch .oe_vm_switch_list:after, .openerp .oe_view_manager .oe_view_manager_switch .oe_vm_switch_tree:after {
1247   padding: 2px;
1248   content: "i";
1249 }
1250 .openerp .oe_view_manager .oe_view_manager_switch .oe_vm_switch_form:after {
1251   content: "m";
1252 }
1253 .openerp .oe_view_manager .oe_view_manager_switch .oe_vm_switch_graph:after {
1254   font-family: "mnmliconsRegular" !important;
1255   font-size: 21px;
1256   font-weight: 300 !important;
1257   content: "}";
1258   top: -2px;
1259   position: relative;
1260 }
1261 .openerp .oe_view_manager .oe_view_manager_switch .oe_vm_switch_gantt:after {
1262   font-family: "mnmliconsRegular" !important;
1263   font-size: 21px;
1264   font-weight: 300 !important;
1265   content: "y";
1266   top: -2px;
1267   position: relative;
1268 }
1269 .openerp .oe_view_manager .oe_view_manager_switch .oe_vm_switch_calendar:after {
1270   content: "P";
1271 }
1272 .openerp .oe_view_manager .oe_view_manager_switch .oe_vm_switch_kanban:after {
1273   content: "k";
1274 }
1275 .openerp .oe_view_manager .oe_view_manager_switch .oe_vm_switch_diagram:after {
1276   content: "f";
1277 }
1278 .openerp .oe_view_manager_current {
1279   height: 100%;
1280 }
1281 .openerp .oe_view_manager_current > .oe_view_manager_header {
1282   border-top: 1px solid #cacaca;
1283   border-bottom: 1px solid #cacaca;
1284   background-color: #fcfcfc;
1285   background-image: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#dedede));
1286   background-image: -webkit-linear-gradient(top, #fcfcfc, #dedede);
1287   background-image: -moz-linear-gradient(top, #fcfcfc, #dedede);
1288   background-image: -ms-linear-gradient(top, #fcfcfc, #dedede);
1289   background-image: -o-linear-gradient(top, #fcfcfc, #dedede);
1290   background-image: linear-gradient(to bottom, #fcfcfc, #dedede);
1291   -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 9px rgba(0, 0, 0, 0.1);
1292   -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 9px rgba(0, 0, 0, 0.1);
1293   box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 9px rgba(0, 0, 0, 0.1);
1294 }
1295 .openerp .oe_view_manager_current > .oe_view_manager_header .oe_header_row td {
1296   padding: 8px;
1297 }
1298 .openerp .oe_view_manager_current > .oe_view_manager_header .oe_header_row:first-child td {
1299   padding-top: 8px;
1300 }
1301 .openerp .oe_view_manager_inline {
1302   height: 100%;
1303 }
1304 .openerp .oe_view_manager_inline > .oe_view_manager_header {
1305   display: none;
1306 }
1307 .openerp .oe_popup_form > .oe_formview > .oe_form_pager {
1308   display: none !important;
1309 }
1310 .openerp .oe_searchview {
1311   cursor: text;
1312   position: relative;
1313   float: right;
1314   padding: 1px 0;
1315   line-height: 18px;
1316   width: 480px;
1317   border: 1px solid #ababab;
1318   background: white;
1319   -moz-border-radius: 13px;
1320   -webkit-border-radius: 13px;
1321   border-radius: 13px;
1322   -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
1323   -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
1324   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
1325 }
1326 .openerp .oe_searchview input, .openerp .oe_searchview textarea {
1327   padding: 3px;
1328   height: 14px;
1329   font-size: 12px;
1330   line-height: 18px;
1331 }
1332 .openerp .oe_searchview.oe_focused {
1333   border-color: #a6a6fe;
1334   -moz-box-shadow: 0 1px 2px #a6a6fe inset;
1335   -webkit-box-shadow: 0 1px 2px #a6a6fe inset;
1336   box-shadow: 0 1px 2px #a6a6fe inset;
1337 }
1338 .openerp .oe_searchview .oe_searchview_clear {
1339   cursor: pointer;
1340   position: absolute;
1341   top: 0;
1342   right: 18px;
1343   width: 15px;
1344   height: 100%;
1345   background: url(../img/search_reset.gif) center center no-repeat;
1346 }
1347 .openerp .oe_searchview .oe_searchview_unfold_drawer {
1348   position: absolute;
1349   top: 0;
1350   right: 0;
1351   height: 100%;
1352   padding: 0 7px 0 4px;
1353   color: #cccccc;
1354   cursor: pointer;
1355 }
1356 .openerp .oe_searchview .oe_searchview_unfold_drawer:hover {
1357   color: #999999;
1358 }
1359 .openerp .oe_searchview .oe_searchview_unfold_drawer:before {
1360   position: absolute;
1361   top: 10px;
1362   right: 7px;
1363   width: 0;
1364   height: 0;
1365   display: inline-block;
1366   content: "";
1367   vertical-align: top;
1368   border-top: 5px solid #4c4c4c;
1369   border-left: 5px solid transparent;
1370   border-right: 5px solid transparent;
1371   filter: alpha(opacity=50);
1372   opacity: 0.5;
1373 }
1374 .openerp .oe_searchview .oe_searchview_facets {
1375   min-height: 22px;
1376 }
1377 .openerp .oe_searchview .oe_searchview_facets:before {
1378   color: #cccccc;
1379   font-family: "mnmliconsRegular";
1380   content: "r";
1381   font-size: 130%;
1382   display: inline;
1383   position: relative;
1384   left: 6px;
1385   top: 2px;
1386   color: #a3a3a3;
1387   padding-right: 4px;
1388 }
1389 .openerp .oe_searchview .oe_searchview_facets * {
1390   vertical-align: top;
1391   display: inline-block;
1392   line-height: 17px;
1393 }
1394 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_input, .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet {
1395   height: 18px;
1396   margin: 1px 0;
1397   font-size: 11px;
1398 }
1399 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_input:focus, .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet:focus {
1400   outline: none;
1401 }
1402 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_input {
1403   padding: 0 3px;
1404 }
1405 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet {
1406   position: relative;
1407   cursor: pointer;
1408   border: 1px solid #afafb6;
1409   -moz-border-radius: 3px;
1410   -webkit-border-radius: 3px;
1411   border-radius: 3px;
1412   background: #8786b7;
1413   -webkit-font-smoothing: auto;
1414 }
1415 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet:focus {
1416   border-color: #a6a6fe;
1417   -moz-box-shadow: 0 0 3px 1px #a6a6fe;
1418   -webkit-box-shadow: 0 0 3px 1px #a6a6fe;
1419   box-shadow: 0 0 3px 1px #a6a6fe;
1420 }
1421 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_values {
1422   background: #f0f0fa;
1423   -moz-border-radius: 0 3px 3px 0;
1424   -webkit-border-radius: 0 3px 3px 0;
1425   border-radius: 0 3px 3px 0;
1426 }
1427 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_category, .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_value {
1428   height: 18px;
1429   padding: 0 4px;
1430 }
1431 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_category {
1432   color: white;
1433   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
1434 }
1435 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_category.oe_i {
1436   font-size: 16px;
1437 }
1438 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_value {
1439   border-left: 1px solid #afafb6;
1440   text-shadow: 0 1px 1px white;
1441 }
1442 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_value:last-child {
1443   padding-right: 16px;
1444 }
1445 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_remove {
1446   position: absolute;
1447   top: 3px;
1448   right: 3px;
1449   color: #8786b7;
1450   line-height: 8px;
1451   width: 12px;
1452   height: 12px;
1453   text-align: center;
1454   font-weight: bold;
1455   cursor: pointer;
1456   text-shadow: 0 1px 1px white;
1457 }
1458 .openerp .oe_searchview .oe_searchview_facets .oe_searchview_facet .oe_facet_remove:hover {
1459   color: white;
1460   background: #8786b7;
1461   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
1462   -moz-border-radius: 2px;
1463   -webkit-border-radius: 2px;
1464   border-radius: 2px;
1465 }
1466 .openerp .oe_searchview.oe_searchview_open_drawer .oe_searchview_drawer {
1467   display: block;
1468 }
1469 .openerp .oe_searchview .oe_searchview_drawer {
1470   position: absolute;
1471   z-index: 100;
1472   margin-top: 4px;
1473   top: 100%;
1474   right: -1px;
1475   background-color: white;
1476   min-width: 100%;
1477   display: none;
1478   border: 1px solid #afafb6;
1479   text-align: left;
1480   -moz-border-radius: 4px;
1481   -webkit-border-radius: 4px;
1482   border-radius: 4px;
1483   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
1484   -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
1485   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
1486 }
1487 .openerp .oe_searchview .oe_searchview_drawer > div {
1488   border-top: 1px solid #cccccc;
1489   margin: 0;
1490   padding: 8px;
1491 }
1492 .openerp .oe_searchview .oe_searchview_drawer > div:first-child {
1493   border-top: none;
1494   margin: 0;
1495 }
1496 .openerp .oe_searchview .oe_searchview_drawer h3 {
1497   margin: 8px 4px 4px 12px;
1498   color: #8786b7;
1499   font-size: 13px;
1500 }
1501 .openerp .oe_searchview .oe_searchview_drawer h4, .openerp .oe_searchview .oe_searchview_drawer h4 * {
1502   margin: 0;
1503   cursor: pointer;
1504   font-weight: normal;
1505   display: inline-block;
1506 }
1507 .openerp .oe_searchview .oe_searchview_drawer h4:hover, .openerp .oe_searchview .oe_searchview_drawer h4 *:hover {
1508   background-color: #f0f0fa;
1509 }
1510 .openerp .oe_searchview .oe_searchview_drawer h4:before {
1511   content: "â–¸ ";
1512   color: #a3a3a3;
1513 }
1514 .openerp .oe_searchview .oe_searchview_drawer button {
1515   margin: 4px 0;
1516 }
1517 .openerp .oe_searchview .oe_searchview_drawer .button {
1518   border: none;
1519   background: transparent;
1520   padding: 0 2px;
1521   -moz-box-shadow: none;
1522   -webkit-box-shadow: none;
1523   box-shadow: none;
1524   -moz-border-radius: 0;
1525   -webkit-border-radius: 0;
1526   border-radius: 0;
1527 }
1528 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section {
1529   display: table;
1530   width: 100%;
1531 }
1532 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section > div {
1533   -webkit-box-sizing: border-box;
1534   -moz-box-sizing: border-box;
1535   -ms-box-sizing: border-box;
1536   box-sizing: border-box;
1537   display: table-cell;
1538   width: 50%;
1539 }
1540 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section ul {
1541   margin: 0 8px 8px;
1542   padding: 0;
1543   list-style: none;
1544 }
1545 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section li {
1546   list-style: none;
1547   padding: 2px 4px 2px 20px;
1548   line-height: 14px;
1549   color: inherit;
1550   cursor: pointer;
1551   position: relative;
1552 }
1553 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section li.oe_selected:before {
1554   content: "W";
1555   font-family: "entypoRegular" !important;
1556   font-size: 24px;
1557   font-weight: 300 !important;
1558   color: #a3a3a3;
1559   position: absolute;
1560   left: 4px;
1561   top: -2px;
1562 }
1563 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section li:hover {
1564   background-color: #f0f0fa;
1565 }
1566 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section form {
1567   margin-left: 12px;
1568 }
1569 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section form p {
1570   margin: 4px 0;
1571   line-height: 18px;
1572 }
1573 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_section form button {
1574   margin: 0 0 8px 0;
1575 }
1576 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom {
1577   padding: 0 8px 8px 8px;
1578 }
1579 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom form {
1580   display: none;
1581 }
1582 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom li {
1583   cursor: pointer;
1584   position: relative;
1585   line-height: 14px;
1586   padding: 2px 4px 2px 20px;
1587 }
1588 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom li:hover {
1589   background-color: #f0f0fa;
1590 }
1591 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom li button {
1592   position: absolute;
1593   top: 0;
1594   right: 5px;
1595 }
1596 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_dashboard form {
1597   display: none;
1598   margin-top: 2px;
1599 }
1600 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_advanced form {
1601   display: none;
1602   margin-top: 8px;
1603 }
1604 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_advanced button.oe_add_condition:before {
1605   content: "Z";
1606   font-family: "entypoRegular" !important;
1607   font-size: 24px;
1608   font-weight: 300 !important;
1609   margin-right: 4px;
1610 }
1611 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_advanced ul {
1612   list-style: none;
1613   padding: 0;
1614 }
1615 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_advanced li {
1616   position: relative;
1617   list-style: none;
1618   margin: 0;
1619   white-space: nowrap;
1620 }
1621 .openerp .oe_searchview .oe_searchview_drawer .oe_opened h4:before {
1622   content: "â–¾ ";
1623   position: relative;
1624   top: -1px;
1625 }
1626 .openerp .oe_searchview .oe_searchview_drawer .oe_opened form {
1627   display: block;
1628 }
1629 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom_delete, .openerp .oe_searchview .oe_searchview_drawer .searchview_extended_delete_prop {
1630   display: inline-block;
1631   width: 12px;
1632   height: 12px;
1633   line-height: 12px;
1634   padding: 1px;
1635   color: #8786b7;
1636   line-height: 8px;
1637   text-align: center;
1638   font-weight: bold;
1639   text-shadow: 0 1px 1px white;
1640 }
1641 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom_delete:hover, .openerp .oe_searchview .oe_searchview_drawer .searchview_extended_delete_prop:hover {
1642   text-decoration: none;
1643   color: white;
1644   background: #8786b7;
1645   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
1646   -moz-border-radius: 2px;
1647   -webkit-border-radius: 2px;
1648   border-radius: 2px;
1649 }
1650 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom_delete {
1651   display: none;
1652   position: absolute;
1653   bottom: 1px;
1654   right: 4px;
1655 }
1656 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom_private:hover .oe_searchview_custom_delete, .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom_public:hover .oe_searchview_custom_delete {
1657   display: inline-block;
1658 }
1659 .openerp .oe_searchview .oe_searchview_drawer .oe_searchview_custom_public:after {
1660   content: ",";
1661   font-family: "entypoRegular" !important;
1662   font-size: 22px;
1663   font-weight: 300 !important;
1664   margin: 0 0 0 4px;
1665   padding: 0;
1666 }
1667 .openerp .oe_view_nocontent > img {
1668   float: left;
1669   margin: 1.5em;
1670 }
1671 .openerp .oe_view_nocontent > div {
1672   overflow: hidden;
1673   padding: 35px 0px 0px 0px;
1674   max-width: 700px;
1675   font-size: 125%;
1676 }
1677 .openerp .oe_formview {
1678   background: white;
1679 }
1680 .openerp .oe_form_dropdown_section {
1681   position: relative;
1682   display: inline-block;
1683 }
1684 .openerp .oe_form_invalid input, .openerp .oe_form_invalid select, .openerp .oe_form_invalid textarea {
1685   background-color: #ff6666 !important;
1686   border: 1px solid #dd0000 !important;
1687 }
1688 .openerp .oe_view_manager_current .oe_form_editable .oe_highlight {
1689   color: #404040;
1690   background: none;
1691 }
1692 .openerp .oe_view_manager_current .oe_form_editable button.oe_highlight {
1693   background-color: #efefef;
1694   background-image: -webkit-gradient(linear, left top, left bottom, from(#efefef), to(#d8d8d8));
1695   background-image: -webkit-linear-gradient(top, #efefef, #d8d8d8);
1696   background-image: -moz-linear-gradient(top, #efefef, #d8d8d8);
1697   background-image: -ms-linear-gradient(top, #efefef, #d8d8d8);
1698   background-image: -o-linear-gradient(top, #efefef, #d8d8d8);
1699   background-image: linear-gradient(to bottom, #efefef, #d8d8d8);
1700   -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
1701   -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
1702   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
1703 }
1704 .openerp .oe_view_manager_current .oe_form_editable button.oe_highlight:active {
1705   background-color: #e3e3e3;
1706   background-image: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#f6f6f6));
1707   background-image: -webkit-linear-gradient(top, #e3e3e3, #f6f6f6);
1708   background-image: -moz-linear-gradient(top, #e3e3e3, #f6f6f6);
1709   background-image: -ms-linear-gradient(top, #e3e3e3, #f6f6f6);
1710   background-image: -o-linear-gradient(top, #e3e3e3, #f6f6f6);
1711   background-image: linear-gradient(to bottom, #e3e3e3, #f6f6f6);
1712   -moz-box-shadow: none;
1713   -webkit-box-shadow: none;
1714   box-shadow: none;
1715 }
1716 .openerp .oe_view_manager_current .oe_form_editable button.oe_highlight:hover {
1717   background-color: #f6f6f6;
1718   background-image: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#e3e3e3));
1719   background-image: -webkit-linear-gradient(top, #f6f6f6, #e3e3e3);
1720   background-image: -moz-linear-gradient(top, #f6f6f6, #e3e3e3);
1721   background-image: -ms-linear-gradient(top, #f6f6f6, #e3e3e3);
1722   background-image: -o-linear-gradient(top, #f6f6f6, #e3e3e3);
1723   background-image: linear-gradient(to bottom, #f6f6f6, #e3e3e3);
1724   -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
1725   -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
1726   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
1727 }
1728 .openerp .oe_form_invisible {
1729   display: none !important;
1730 }
1731 .openerp .oe_form_readonly .oe_edit_only, .openerp .oe_form_readonly .oe_form_field:empty {
1732   display: none !important;
1733 }
1734 .openerp .oe_form_readonly .oe_form .oe_form_field_date {
1735   width: auto;
1736 }
1737 .openerp .oe_form_nosheet {
1738   margin-left: 10px;
1739   margin-right: 10px;
1740 }
1741 .openerp .oe_form_nosheet > header {
1742   margin-left: -10px;
1743   margin-right: -10px;
1744 }
1745 .openerp .oe_form header {
1746   position: relative;
1747   border-bottom: 1px solid #cacaca;
1748   background-color: #fcfcfc;
1749   background-image: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#dedede));
1750   background-image: -webkit-linear-gradient(top, #fcfcfc, #dedede);
1751   background-image: -moz-linear-gradient(top, #fcfcfc, #dedede);
1752   background-image: -ms-linear-gradient(top, #fcfcfc, #dedede);
1753   background-image: -o-linear-gradient(top, #fcfcfc, #dedede);
1754   background-image: linear-gradient(to bottom, #fcfcfc, #dedede);
1755   padding: 0 8px;
1756   line-height: 30px;
1757 }
1758 .openerp .oe_form header ul {
1759   display: inline-block;
1760   float: right;
1761 }
1762 .openerp .oe_form footer {
1763   min-width: 650px;
1764   max-width: 860px;
1765   margin: 0 auto;
1766 }
1767 .openerp ul.oe_form_steps {
1768   height: 30px;
1769   padding: 0;
1770   margin: 0;
1771   text-shadow: 0 1px 1px white;
1772 }
1773 .openerp ul.oe_form_steps img {
1774   vertical-align: top;
1775   margin-left: 8px;
1776 }
1777 .openerp ul.oe_form_steps li {
1778   border-right: none;
1779   padding: 0;
1780   margin: 0;
1781   float: left;
1782   vertical-align: top;
1783   height: 30px;
1784   padding: 0 0 0 12px;
1785 }
1786 .openerp ul.oe_form_steps li:first-child {
1787   border-left: 1px solid #cacaca;
1788 }
1789 .openerp ul.oe_form_steps li:last-child {
1790   margin-right: 12px;
1791   padding-right: 12px;
1792   border-right: 1px solid #cacaca;
1793 }
1794 .openerp ul.oe_form_steps li a {
1795   color: #4c4c4c;
1796 }
1797 .openerp ul.oe_form_steps li a:hover {
1798   color: black;
1799 }
1800 .openerp ul.oe_form_steps .oe_form_steps_active {
1801   font-weight: bold;
1802   color: #b33630;
1803 }
1804 .openerp .oe_form .oe_subtotal_footer {
1805   width: 1% !important;
1806 }
1807 .openerp .oe_form .oe_subtotal_footer td.oe_form_group_cell {
1808   text-align: right;
1809   padding: 0 !important;
1810 }
1811 .openerp .oe_form .oe_subtotal_footer td.oe_form_group_cell_label {
1812   border-right: none;
1813 }
1814 .openerp .oe_form .oe_subtotal_footer .oe_form_field {
1815   width: auto !important;
1816 }
1817 .openerp .oe_form .oe_subtotal_footer .oe_subtotal_footer_separator {
1818   border-top: 1px solid #cacaca;
1819   font-sie: 120%;
1820   font-weight: bold;
1821 }
1822 .openerp .oe_form .oe_subtotal_footer label.oe_subtotal_footer_separator {
1823   font-weight: bold !important;
1824   padding: 2px 8px 2px 0px !important;
1825 }
1826 .openerp .oe_application .oe_form_sheetbg {
1827   background: url(/web/static/src/img/form_sheetbg.png);
1828   padding: 8px 0;
1829   border-bottom: 1px solid #dddddd;
1830 }
1831 .openerp .oe_application .oe_form_sheet_width {
1832   min-width: 650px;
1833   max-width: 860px;
1834   margin: 0 auto;
1835 }
1836 .openerp .oe_application .oe_form_sheet {
1837   background: white;
1838   min-height: 330px;
1839   padding: 16px;
1840   border: 1px solid #afafb6;
1841   -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
1842   -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
1843   box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
1844 }
1845 .openerp .oe_application .oe_form_sheet .ui-tabs {
1846   margin: 0 -16px;
1847 }
1848 .openerp .oe_application .oe_form_sheet .oe_notebook_page {
1849   padding: 0 16px;
1850 }
1851 .openerp .oe_form td.oe_form_group_cell_label {
1852   border-right: 1px solid #dddddd;
1853   padding: 2px 0px 2px 0px;
1854 }
1855 .openerp .oe_form td.oe_form_group_cell_label label {
1856   line-height: 18px;
1857   display: block;
1858   min-width: 110px;
1859 }
1860 .openerp .oe_form td.oe_form_group_cell + .oe_form_group_cell {
1861   padding-left: 6px;
1862 }
1863 .openerp .oe_form .oe_form_group {
1864   width: 100%;
1865   margin: 4px 0 4px 0;
1866 }
1867 .openerp .oe_form .oe_form_group .oe_group_right > tbody > tr > td:first-child {
1868   padding-left: 18px;
1869 }
1870 .openerp .oe_form .oe_form_label_help[for], .openerp .oe_form .oe_form_label[for] {
1871   font-weight: bold;
1872   white-space: nowrap;
1873   padding-right: 6px;
1874 }
1875 .openerp .oe_form .oe_form_label_help[for] span, .openerp .oe_form .oe_form_label[for] span {
1876   font-size: 80%;
1877   color: darkGreen;
1878   vertical-align: top;
1879   position: relative;
1880   top: -4px;
1881   padding: 0 2px;
1882 }
1883 .openerp .oe_horizontal_border {
1884   border-bottom: 1px solid black;
1885 }
1886 .openerp .oe_horizontal_separator {
1887   font-weight: bold;
1888   font-size: 20px;
1889   margin: 8px 0px 8px 0px;
1890   color: #aaaabb;
1891 }
1892 .openerp .oe_horizontal_separator:empty {
1893   height: 5px;
1894 }
1895 .openerp .oe_vertical_separator {
1896   border-left: 1px solid #666666;
1897   padding: 0 4px 0 4px;
1898 }
1899 .openerp .oe_form_field_progressbar {
1900   display: inline-block;
1901   min-width: 70px;
1902 }
1903 .openerp .oe_form_field_progressbar.ui-progressbar {
1904   height: 22px;
1905   font-size: 10px;
1906   -webkit-box-sizing: border-box;
1907   -moz-box-sizing: border-box;
1908   -ms-box-sizing: border-box;
1909   box-sizing: border-box;
1910   border: 1px solid #999999;
1911   -moz-border-radius: 3px;
1912   -webkit-border-radius: 3px;
1913   border-radius: 3px;
1914   background: white;
1915   min-width: 50px;
1916 }
1917 .openerp .oe_form_field_progressbar.ui-progressbar span {
1918   position: absolute;
1919   margin-left: 10px;
1920   font-weight: bold;
1921 }
1922 .openerp .oe_form_field_progressbar.ui-progressbar .ui-widget-header {
1923   background: #cccccc url(/web/static/lib/jquery.ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;
1924 }
1925 .openerp .oe_form .oe_form_field_text {
1926   width: 100%;
1927 }
1928 .openerp .oe_form .oe_form_field_char input,
1929 .openerp .oe_form .oe_form_field_url input,
1930 .openerp .oe_form .oe_form_field_email input,
1931 .openerp .oe_form .oe_form_field_text textarea,
1932 .openerp .oe_form .oe_form_field_selection select {
1933   width: 100%;
1934 }
1935 .openerp .oe_form .oe_form_field_text.oe_inline, .openerp .oe_form .oe_form_field_text.oe_inline > textarea {
1936   width: 500px;
1937 }
1938 .openerp .oe_form .oe_form_field_float input {
1939   width: 100px;
1940 }
1941 .openerp .oe_form h1 .oe_form_field_float input {
1942   width: 140px;
1943 }
1944 .openerp .oe_form h2 .oe_form_field_float input {
1945   width: 120px;
1946 }
1947 .openerp .oe_form h1, .openerp .oe_form h2, .openerp .oe_form h3, .openerp .oe_form h4, .openerp .oe_form h5, .openerp .oe_form h6 {
1948   margin: 0 0 4px 0;
1949 }
1950 .openerp .oe_form h1 input, .openerp .oe_form h2 input, .openerp .oe_form h3 input, .openerp .oe_form h4 input, .openerp .oe_form h5 input, .openerp .oe_form h6 input {
1951   height: inherit !important;
1952   font-size: inherit;
1953 }
1954 .openerp .oe_form .oe_form_field {
1955   width: 100%;
1956   display: inline-block;
1957   padding: 2px 2px 2px 0px;
1958   line-height: 18px;
1959 }
1960 .openerp .oe_form .oe_form_field input {
1961   margin: 0px;
1962 }
1963 .openerp .oe_form .oe_form_field_integer {
1964   width: 180px;
1965 }
1966 .openerp .oe_form .oe_form_field_float {
1967   width: 180px;
1968 }
1969 .openerp .oe_form .oe_form_field_date {
1970   width: 7.5em;
1971 }
1972 .openerp .oe_form .oe_form_field_datetime {
1973   width: 11em;
1974 }
1975 .openerp .oe_form input[type="text"], .openerp .oe_form input[type="password"], .openerp .oe_form input[type="file"], .openerp .oe_form select {
1976   height: 22px;
1977   padding-top: 2px;
1978 }
1979 .openerp .oe_form input[type="text"], .openerp .oe_form input[type="password"], .openerp .oe_form input[type="file"], .openerp .oe_form select, .openerp .oe_form textarea {
1980   -webkit-box-sizing: border-box;
1981   -moz-box-sizing: border-box;
1982   -ms-box-sizing: border-box;
1983   box-sizing: border-box;
1984   background: white;
1985   min-width: 70px;
1986   color: #1f1f1f;
1987 }
1988 .openerp .oe_form input[readonly], .openerp .oe_form select[readonly], .openerp .oe_form textarea[readonly], .openerp .oe_form input[disabled], .openerp .oe_form select[disabled] {
1989   background: #e5e5e5 !important;
1990   color: #666666;
1991 }
1992 .openerp .oe_form textarea[disabled] {
1993   border: none;
1994   border-left: 8px solid #eeeeee;
1995   padding-left: 8px;
1996   -moz-box-shadow: none;
1997   -webkit-box-shadow: none;
1998   box-shadow: none;
1999   -moz-border-radius: 0px;
2000   -webkit-border-radius: 0px;
2001   border-radius: 0px;
2002 }
2003 .openerp .oe_form .oe_form_field_url button img {
2004   vertical-align: top;
2005 }
2006 .openerp .oe_form .oe_form_field_date,
2007 .openerp .oe_form .oe_form_field_datetime {
2008   white-space: nowrap;
2009 }
2010 .openerp .oe_form .oe_form_field_boolean {
2011   padding-top: 4px;
2012   width: auto;
2013 }
2014 .openerp .oe_form .oe_form_field_many2manytags .text-wrap {
2015   width: 100% !important;
2016 }
2017 .openerp .oe_form .oe_form_field_many2manytags .text-wrap textarea {
2018   width: 100% !important;
2019 }
2020 .openerp .oe_form .oe_form_field_many2manytags .oe_form_field_many2manytags_box {
2021   border-radius: 2px;
2022   -webkit-box-sizing: border-box;
2023   -moz-box-sizing: border-box;
2024   -ms-box-sizing: border-box;
2025   box-sizing: border-box;
2026   position: relative;
2027   float: left;
2028   border: 1px solid #9daccc;
2029   background: #e2e6f0;
2030   color: black;
2031   padding: 0px 3px 0px 3px;
2032   margin: 0 2px 2px 0;
2033   height: 16px;
2034   font: 11px "lucida grande", tahoma, verdana, arial, sans-serif;
2035 }
2036 .openerp .oe_form .oe_form_field_many2manytags .text-core .text-wrap .text-dropdown .text-list .text-suggestion em {
2037   font-style: italic;
2038   text-decoration: none;
2039 }
2040 .openerp .oe_form .oe_datepicker_container {
2041   display: none;
2042 }
2043 .openerp .oe_form .oe_datepicker_root {
2044   display: inline-block;
2045 }
2046 .openerp .oe_form .oe_form_required input, .openerp .oe_form .oe_form_required select, .openerp .oe_form .oe_form_required textarea {
2047   background-color: #d2d2ff !important;
2048 }
2049 .openerp .oe_form .oe_form_invalid input, .openerp .oe_form .oe_form_invalid select, .openerp .oe_form .oe_form_invalid textarea {
2050   background-color: #ff6666 !important;
2051   border: 1px solid #dd0000 !important;
2052 }
2053 .openerp .oe_form .oe_input_icon {
2054   cursor: pointer;
2055   margin: 3px 0 0 -21px;
2056   vertical-align: top;
2057 }
2058 .openerp .oe_form .oe_input_icon_disabled {
2059   position: absolute;
2060   cursor: default;
2061   opacity: 0.5;
2062   filter: alpha(opacity=50);
2063   right: 5px;
2064   top: 3px;
2065 }
2066 .openerp .oe_form .oe_form_field_with_button.oe_no_button > .oe_button {
2067   display: none;
2068 }
2069 .openerp .oe_form .oe_form_field_with_button:not(.oe_no_button) input {
2070   border-right: none;
2071   -webkit-border-top-right-radius: 0px;
2072   -webkit-border-bottom-right-radius: 0px;
2073   -moz-border-radius-topright: 0px;
2074   -moz-border-radius-bottomright: 0px;
2075   border-top-right-radius: 0px;
2076   border-bottom-right-radius: 0px;
2077 }
2078 .openerp .oe_form .oe_form_field_with_button:not(.oe_no_button) > .oe_button {
2079   float: right;
2080   -moz-border-radius: 0;
2081   -webkit-border-radius: 0;
2082   border-radius: 0;
2083   border-bottom-left-radius: 0px;
2084   height: 22px;
2085 }
2086 .openerp .oe_form .oe_form_field_with_button input {
2087   width: 100%;
2088 }
2089 .openerp .oe_form .oe_form_field_with_button > div {
2090   position: relative;
2091   overflow: hidden;
2092 }
2093 .openerp .oe_hidden_input_file {
2094   overflow: hidden;
2095   position: relative;
2096   display: inline-block;
2097   width: 45px;
2098   height: 30px;
2099 }
2100 .openerp .oe_hidden_input_file input.oe_form_binary_file {
2101   z-index: 0;
2102   line-height: 0;
2103   font-size: 12px;
2104   position: absolute;
2105   top: 1px;
2106   right: 10px;
2107   opacity: 0;
2108   filter: alpha(opacity=0);
2109   -ms-filter: "alpha(opacity=0)";
2110   margin: 0;
2111   padding: 0;
2112 }
2113 .openerp .oe_form .oe_form_field_image {
2114   padding: 0;
2115   position: relative;
2116   display: inline-block;
2117   width: auto;
2118   vertical-align: top;
2119 }
2120 .openerp .oe_form .oe_form_field_image .oe_form_field_image_controls {
2121   position: absolute;
2122   top: 1px;
2123   padding: 3px 0 0 0;
2124   margin: 0 1px;
2125   display: none;
2126   width: 99%;
2127   text-align: center;
2128   background: url(/web/static/src/img/form_sheetbg.png);
2129   border-bottom: 1px dotted black;
2130   -webkit-box-sizing: border-box;
2131   -moz-box-sizing: border-box;
2132   -ms-box-sizing: border-box;
2133   box-sizing: border-box;
2134 }
2135 .openerp .oe_form .oe_form_field_image:hover .oe_form_field_image_controls {
2136   display: block;
2137 }
2138 .openerp .oe_form_field_many2one td:first-child {
2139   position: relative;
2140 }
2141 .openerp .oe_form_field_many2one span.oe_m2o_drop_down_button {
2142   position: absolute;
2143   top: 1px;
2144   right: 0px;
2145 }
2146 .openerp .oe_form .oe_form_field_one2many > .oe_view_manager .oe_list_pager_single_page {
2147   display: none;
2148 }
2149 .openerp .oe_form_field_one2many .oe_list .oe_list_edit_row_save {
2150   background: url(/web/static/src/img/iconset-b-remove.png) 50% 50% no-repeat;
2151 }
2152 .openerp .oe_form_field_one2many .oe_list .oe_list_edit_row_save:before {
2153   visibility: hidden;
2154 }
2155 .openerp .oe_form_field_one2many > .oe_view_manager .oe_header_row_top {
2156   display: none;
2157 }
2158 .openerp .oe_form_field_one2many > .oe_view_manager .oe_view_manager_header2 td {
2159   padding: 0px 8px;
2160   line-height: 16px;
2161 }
2162 .openerp .oe_form_field_one2many > .oe_view_manager .oe_view_manager_header2 td .oe_i {
2163   font-size: 13px;
2164 }
2165 .openerp .oe_form_field_one2many > .oe_view_manager .oe_view_manager_header2 td .oe_pager_group {
2166   height: auto;
2167   line-height: 16px;
2168 }
2169 .openerp .oe_form_field_one2many > .oe_view_manager .oe_view_manager_header2 td .oe_pager_group li {
2170   height: auto;
2171   line-height: 16px;
2172 }
2173 .openerp .oe_form .oe_form_field_many2many > .oe_list .oe_list_pager_single_page {
2174   display: none;
2175 }
2176 .openerp .oe_list_content {
2177   width: 100%;
2178 }
2179 .openerp .oe_list_content td:first-child:after, .openerp .oe_list_content th:first-child:after {
2180   border-width: 0;
2181 }
2182 .openerp .oe_list_content > thead {
2183   border-bottom: 2px solid #cacaca;
2184   background: #eeeeee;
2185   vertical-align: top;
2186 }
2187 .openerp .oe_list_content > thead th {
2188   position: relative;
2189 }
2190 .openerp .oe_list_content td, .openerp .oe_list_content th {
2191   padding: 3px 6px;
2192   line-height: 18px;
2193 }
2194 .openerp .oe_list_content th:after {
2195   position: absolute;
2196   right: 6px;
2197   content: "";
2198   margin-top: 7px;
2199   border-width: 0 4px 4px;
2200   border-style: solid;
2201   border-color: black transparent;
2202   visibility: hidden;
2203 }
2204 .openerp .oe_list_content th.sortup:after {
2205   visibility: visible;
2206   filter: alpha(opacity=60);
2207   opacity: 0.6;
2208 }
2209 .openerp .oe_list_content th.sortdown:after {
2210   border-bottom: none;
2211   border-left: 4px solid transparent;
2212   border-right: 4px solid transparent;
2213   border-top: 4px solid black;
2214   visibility: visible;
2215   -moz-box-shadow: none;
2216   -webkit-box-shadow: none;
2217   box-shadow: none;
2218   filter: alpha(opacity=60);
2219   opacity: 0.6;
2220 }
2221 .openerp .oe_list_content > tbody {
2222   cursor: pointer;
2223 }
2224 .openerp .oe_list_content > tbody > tr {
2225   border-top: 1px solid #dddddd;
2226 }
2227 .openerp .oe_list_content > tbody > tr > td.oe_list_field_cell {
2228   padding: 3px 6px;
2229 }
2230 .openerp .oe_list_content > tbody > tr > td, .openerp .oe_list_content > tbody > tr > th {
2231   line-height: 18px;
2232 }
2233 .openerp .oe_list_content > tbody > tr > td > button, .openerp .oe_list_content > tbody > tr > th > button {
2234   border: none;
2235   background: transparent;
2236   padding: 0;
2237   -moz-box-shadow: none;
2238   -webkit-box-shadow: none;
2239   box-shadow: none;
2240 }
2241 .openerp .oe_list_content > tbody > tr > td.oe_list_checkbox:first-child, .openerp .oe_list_content > tbody > tr th.oe_list_checkbox:first-child {
2242   width: 17px;
2243 }
2244 .openerp .oe_list_content > tbody > tr > td.oe_list_checkbox:first-child:after, .openerp .oe_list_content > tbody > tr th.oe_list_checkbox:first-child:after {
2245   border-width: 0;
2246 }
2247 .openerp .oe_list_content > tbody > tr > td.oe_number {
2248   text-align: right !important;
2249 }
2250 .openerp .oe_list_content > tbody > tr:nth-child(odd) {
2251   background-color: #f0f0fa;
2252   background-color: #f0f0fa;
2253   background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0fa), to(#eeeef6));
2254   background-image: -webkit-linear-gradient(top, #f0f0fa, #eeeef6);
2255   background-image: -moz-linear-gradient(top, #f0f0fa, #eeeef6);
2256   background-image: -ms-linear-gradient(top, #f0f0fa, #eeeef6);
2257   background-image: -o-linear-gradient(top, #f0f0fa, #eeeef6);
2258   background-image: linear-gradient(to bottom, #f0f0fa, #eeeef6);
2259 }
2260 .openerp .oe_list_content > tfoot {
2261   border-top: 2px solid #cacaca;
2262   border-bottom: 1px solid #cacaca;
2263   background: #eeeeee;
2264   font-weight: bold;
2265 }
2266 .openerp .oe_list_content > tbody tr:hover td, .openerp .oe_list_content tbody tr:hover th {
2267   background-color: #eeeeee;
2268   background-image: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#dedede));
2269   background-image: -webkit-linear-gradient(top, #eeeeee, #dedede);
2270   background-image: -moz-linear-gradient(top, #eeeeee, #dedede);
2271   background-image: -ms-linear-gradient(top, #eeeeee, #dedede);
2272   background-image: -o-linear-gradient(top, #eeeeee, #dedede);
2273   background-image: linear-gradient(to bottom, #eeeeee, #dedede);
2274 }
2275 .openerp .oe_list_content .numeric {
2276   text-align: right;
2277   width: 82px;
2278 }
2279 .openerp .oe_list_content .numeric input {
2280   text-align: right;
2281 }
2282 .openerp .oe_list_content .oe_list_edit_row_save:before {
2283   content: "S";
2284 }
2285 .openerp .oe_trad_field.touched {
2286   border: 1px solid green !important;
2287 }
2288 .openerp .oe_view_editor {
2289   width: 100%;
2290   border-collapse: collapse;
2291   margin-left: -12px;
2292   width: 100%;
2293   background-color: white;
2294   border-spacing: 0;
2295 }
2296 .openerp .oe_view_editor td {
2297   text-align: center;
2298   white-space: nowrap;
2299   border: 1px solid #d8d8d8;
2300   cursor: pointer;
2301   font-size: 90%;
2302 }
2303 .openerp .oe_view_editor_field td {
2304   border: 0px !important;
2305 }
2306 .openerp .oe_view_editor tr:hover {
2307   background-color: #ecebf2;
2308 }
2309 .openerp .oe_layout_debugging .oe_form_group {
2310   outline: 2px dashed green;
2311 }
2312 .openerp .oe_layout_debugging .oe_form_group_cell {
2313   outline: 1px solid blue;
2314 }
2315 .openerp .oe_layout_debugging .oe_form_group:hover, .openerp .oe_layout_debugging .oe_form_group_cell:hover {
2316   outline-color: red;
2317 }
2318 .openerp .oe_layout_debugging .oe_form_group_row_incomplete > td:last-child:after {
2319   content: "[Incomplete Row]";
2320   background: red;
2321   padding: 2px;
2322   font-weight: bold;
2323   color: white;
2324   float: right;
2325 }
2326 .openerp .oe_layout_debugging .oe_form_group_row_incomplete.oe_form_group_row_newline > td:last-child:after {
2327   content: "[newline]";
2328 }
2329 .openerp .oe_debug_view {
2330   float: left;
2331 }
2332 .openerp .oe_debug_view_log {
2333   font-size: 95%;
2334 }
2335 .openerp .oe_debug_view_log label {
2336   display: block;
2337   width: 49%;
2338   text-align: right;
2339   float: left;
2340   font-weight: bold;
2341   color: #000099;
2342 }
2343 .openerp .oe_debug_view_log span {
2344   display: block;
2345   width: 49%;
2346   float: right;
2347   color: #333333;
2348 }
2349
2350 .openerp .tree_header {
2351   background-color: #f0f0f0;
2352   border-bottom: 1px solid #cacaca;
2353   color: #4c4c4c;
2354   padding: 5px;
2355   height: 25px;
2356 }
2357 .openerp .tree_header button {
2358   float: right;
2359   height: 27px;
2360   margin-right: 5px;
2361 }
2362 .openerp .oe-treeview-table {
2363   width: 100%;
2364   background-color: white;
2365   border-spacing: 0;
2366 }
2367 .openerp .oe-treeview-table th {
2368   padding: 10px;
2369   color: #4c4c4c;
2370   font-weight: bold;
2371   background-color: #f0f0f0;
2372   border-bottom: 2px solid #cacaca;
2373 }
2374 .openerp .oe-treeview-table .treeview-tr, .openerp .oe-treeview-table .treeview-td {
2375   cursor: pointer;
2376   border-right: 1px dotted #afafb6;
2377   vertical-align: top;
2378   text-align: left;
2379   border-bottom: 1px solid #cfcccc;
2380 }
2381 .openerp .oe-treeview-table tr:hover {
2382   background-color: #e0e0f8;
2383 }
2384 .openerp .oe-treeview-table .oe-number {
2385   text-align: right !important;
2386 }
2387 .openerp .oe-treeview-table span {
2388   font-size: 90%;
2389   font-weight: normal;
2390   white-space: nowrap;
2391   display: block;
2392 }
2393 .openerp .oe-treeview-table .treeview-tr.oe-treeview-first {
2394   background: transparent url(/web/static/src/img/expand.gif) 0 50% no-repeat;
2395 }
2396 .openerp .oe-treeview-table .oe_open .treeview-tr.oe-treeview-first {
2397   background-image: url(/web/static/src/img/collapse.gif);
2398 }
2399 .openerp .oe-treeview-table .treeview-tr.oe-treeview-first span, .openerp .oe-treeview-table .treeview-td.oe-treeview-first span {
2400   margin-left: 16px;
2401 }
2402
2403 .kitten-mode-activated {
2404   background-image: url(http://placekitten.com/g/1365/769);
2405   background-size: cover;
2406   background-attachment: fixed;
2407 }
2408 .kitten-mode-activated > * {
2409   opacity: 0.7;
2410 }
2411
2412 div.ui-widget-overlay {
2413   background: black;
2414   filter: alpha(opacity=30);
2415   opacity: 0.3;
2416 }