~inspirated/arsenal/send-attachments-lpltk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
/* = Launchpad style sheet = */

/* == Contents == */
/*
 * Guidelines
 * Things browsers should do but don't
 * Overall presentation
  - Fonts and colors
  - Error, warning, and informational messages
  - Forms
  - Tables
   - Listing tables
   - Summary tables
...
 * Application-specific styles
  - Overview
  - Code
  - Bugs
  - Blueprints
  - Translations
  - Answers
...
*/

/* == Guidelines == */
/*
 * Use absolute units (e.g. px, pt) only when image sizes or CSS limitations
   demand it. Otherwise, use relative units (%, em).
*/
.yui-ieditor {padding-right: 288px};

.demo {background-color: #fee;}

/* == Things browsers should do but don't == */

.clearfix:after { /* use class="clearfix" whenever floats should be enclosed */
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {display: inline-table;}
/* Work around float bug in MSIE for Windows, while hiding from MSIE for Mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hiding from MSIE for Mac */
.visualClear {display: block; clear: both;} /* XXX Remove this */
a {outline: none;}
abbr[title], acronym[title] {border-bottom: 1px dotted black; cursor: help;}
address {font-style: inherit;}
* html body {word-wrap: break-word;} /* stops floats dropping in IE 5.5/6 */
div.aside {display: block;}
caption {caption-side: bottom; text-align: left;}
dt dfn {font-style: normal; font-weight: bold;}
dd {margin-bottom: 1em;}
input {visibility:inherit;}
kbd {
  background-color: #ddd;
  border: 1px solid;
  border-color: white gray gray white;
  color: black;
  margin: 1px;
  min-width: 1em;
  outline: 1px #666;
}
label {white-space: nowrap;}
legend {font-weight: bold;}
.listbox { /* a scrolling list of checkboxes or radio buttons */
  border: 1px solid #8cacbb;
  display: inline-block;
  max-height: 12em;
  overflow: auto;
  overflow: -moz-scrollbars-vertical;
}
.listbox label {
  background-color: #f6f6f6;
  border: solid white;
  border-width: 0 0 1px 0;
  display: block;
}
div.section {display: block; margin-bottom: 1em;}
table {border-collapse: collapse;}
textarea {display: block;}
thead {vertical-align: bottom;}
th, td {vertical-align: baseline;}
th {text-align: right;}
thead th, tr.thead th {text-align: center;}
/* make <wbr> work with Opera */
/* XXX: 20061026 jamesh Disabled since BjornT reported display problems */
/* wbr:after {content: "\00200B"} */

/* Opera doesn't use the general tr above for the radio button table */
table.radio-button-widget tr td {vertical-align: top;}

/* For readability, paragraphs and other potentially-long text blocks should
have a maximum width: */
label, p {max-width: 60em;}

/* == Overall presentation == */
/* These styles apply to pages regardless of layout or application. */

/* === Fonts and colors === */

/* Launchpad uses a white background with small, mostly black, text: */
html {background: #fff; color: #000; font: 83.33% sans-serif;}
/* Monospace text uses the reciprocal of this percentage, so that it
exactly obeys your preferred monospace font size: */
code, pre, samp, tt, #bug-description, .bug-comment {font: 120% monospace;}

/* Links are blue, brighter when clicked, and greyer once visited: */
:link, :visited               {color: #03a;    text-decoration: none;}
:link:hover, :visited:hover   {                text-decoration: underline;}
:link:active, :visited:active {color: #36c;}
/* Links that don't open separate pages are green to denote their behavior: */
a[onclick], .collapsible legend a, a.js-action               {color: #063;}
a[onclick]:active, .collapsible legend a:active, a.js-action {color: #093;}

/* Help links */
a.help {
  border-bottom: 1px dotted #03a;
  cursor: help;}
}
a.help:hover, a.help:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  background: none;
  clear: left;
  padding: 0;
  margin: 0 0 0.5em;
  /* Content headings are highlighted using a different color (the color is
     overriden per-application in subsequent rules) instead of bold text. */
  color: #83ad23;
  font-weight: normal;
}
h1 {font-size: 2em;}
h2 {font-size: 1.2em;}
h3, h4, h5, h6 {font-size: 1em;}
/* H1 is only used at the top the maincontent, maybe below a short description
   of the displayed object. It must have zero margin-top. */
h2, h3, h4, h5, h6 { margin-top: 1em; }
/* Browsers indent lists inconsistently, so we override them completely: */
ul {margin-left: 0; padding-left: 22px; /* works for 14px icons */}

.exception {color: #cc0000;}
.discreet, .lesser {font-size: 90%;}
.offline {text-align: center; margin: 2em 0;}
.unavailable {color: #999; background: none;}

/* Blank space at the top of the page makes the location bar more noticable.
Ideally page margins would scale non-linearly, but absolute is next best: */
body {margin: 0; padding: 10px 20px;}

/* === Error, warning, and informational messages === */
/* Error, warning, and informational alerts are in a centered box: */
.error.message, .warning.message, .informational.message {
  border: solid #666;
  border-width: 1px 2px 2px 1px;
  color: black;
  margin: 0 auto 10px auto;
  padding: 0 10px 10px 20px;
  width: 30em;
}
/* The alerts are preceded with an icon overlaying the top left corner: */
.error.message::before, .warning.message::before,
.informational.message::before {
  display: block; margin: -15px 0 -6px -35px;
}
/* Error messages are pink, with alerts having an error icon: */
.error         {background: #ffe4e4;}
.error.message::before         {content: url(/@@/error-large);}
/* Warning messages are orange, with alerts having a warning icon: */
.warning       {background: #fff59c;}
.warning.message::before       {content: url(/@@/warning-large);}
/* Informational messages are blue-to-grey, with alerts having an info icon: */
.informational {background: #d4e8ff url(/+icing/blue-fade-to-grey);}
.informational.message::before {content: url(/@@/info-large);}
/* Debugging messages are white on grey, with alerts having an info icon: */
.debugging     {background: #666; color: white;}
.debugging.message::before     {content: url(/@@/info-large);}
/* Form errors override this background color, because the lack of space
between the edge of fields and the edge of the color would look bad: */
table.form .error {background: none;}
/* And inside, the error message itself uses a smaller icon: */
.error .message {
  background: url(/@@/error) center left no-repeat;
  margin-bottom: 0.25em;
  padding-left: 18px;
}

/* Warning messages inlined in the page. */
.inline-warning {
    color: red;
    font-weight: bold;
}

.helpwanted {background-color: #fafca9; color: black; border: 1px solid black;
    padding: 0.5em; font-size: smaller; padding-left: 3em
}
.whiteboard {
  color: #666;
}
/* When shown as in a definition description, indent slightly. */
dd .whiteboard {
  padding-left: 1em;
}

/* === Forms === */

form {border: 0; margin: 0; padding: 0;}
fieldset {border-width: 2px 0 0; margin: 1em 0; padding: 1em 0 0;}
input[type="text"], input[type="search"], input[type="password"], textarea {
  font-family: sans-serif;
  margin: 0;
}
input[type="text"], input[type="search"], input[type="submit"],
input[type="reset"], textarea {
  font-size: 1em; /* Forces a readable font size in Safari */
}
form button, form input[type="button"], form input[type="file"], form input[type="password"],
form input[type="submit"], form input[type="text"], form select, form textarea {
  margin-right: 0.5em;
}
button{padding:0;}
input.urlTextType {width: 100%;}
.fieldRequired, .fieldOptional {color: #999;}
.formHelp {margin-top: 0.2em; margin-bottom: 0.5em; color: #777;}
/* Hack to add breathing room to bug status forms: */
table.listing div.field>table {margin-top: 0.5em;}
table.listing div.field>label, table.listing div.field>div>label,
table.listing div.actions {
  display: block; margin-top: 1em;
}
/* Text fields occupy as much of the page width as possible, minus a safety
margin for Internet Explorer, and up to a reasonable maximum: */
textarea {width: 90%; max-width: 60em;}

/* Many forms are laid out using tables, with appropriate spacing: */
table.form {margin: 1em 0; width: 100%;} /* http://launchpad.dev/firefox/+edit */
table.form th {font-weight: normal;}
table.form th, table.form td {padding-bottom: 1em;}
table.form td td {padding-bottom: 0;}

/* XXX: this is just to make tables look more consistent when used in a
 * summary pagelet; the concrete use case is in
 * person-pagelet-details.pt. We should move to use tables everywhere
 * and then kill this class I guess. -- kiko, 2007-12-05 */
table.slimpadding td, table.slimpadding th { padding: 0; padding-right: 3px }

/* === Tables === */
/* All table cells have horizontal padding between their contents: */
th, td {padding: 0 0.5em 0 0;} /* http://launchpad.dev/ubuntu "Officers" */

table.latest th, table.latest td {padding-bottom: 2em;}

th.icon, td.icon {vertical-align: top; white-space: nowrap; width: 1px;}
th.icon.left, td.icon.left {padding-right: 0;}
th.icon.right, td.icon.right {padding-left: 0;}
th.nowrap, td.nowrap {white-space: nowrap;}
tfoot th, table.contributions th {text-align: left;}
table.contributions th {font-weight: normal;}
table.contributions td {vertical-align: middle; width: 16px; text-align: left;}

/* ==== Listing tables ==== */

table.listing {margin: 0; width: 100%; font-size: 90%;}
table.listing, table.listing tbody, table.listing td.end-of-section {
  border-bottom: 1px solid #d2d2d2;}
table.listing thead, table.listing thead th, table.listing tfoot tr,
table.listing tr.thead th {
  border: 1px solid #d2d2d2;
  background-color: #fff;
}
table.listing tr.category {border-bottom: 1px solid #d2d2d2;}
table.listing tr.category th, table.listing tr.category td {padding-top: 1em;}
table.listing tfoot td {border: 1px solid #d2d2d2;}
table.listing thead td {border: none;}
tr.white {background-color: #fff;}
tr.shaded {background-color: #f6f6f6;}
table.listing tr.note {font-size: smaller;}
.amount {text-align: right;}
table.listing th, table.listing td {padding: 0.25em;}
/* We don't want extra padding on nested tables, such as batch navigation. */
table.listing table th, table.listing table td {padding: 0;}
table.listing thead th, table.listing tr.thead th {
  font-size: 1.125em; white-space: nowrap;}
table.listing td {border: 1px #d2d2d2; border-style: dotted none none none;}
table.listing tr.note td {border-style: none;}
table.listing img {vertical-align: middle;}
table.listing tr.secondary th, table.listing tr.secondary td {border-top: none;}
table.listing table tbody, table.listing table thead,
table.listing table thead th, table.listing tfoot tr,
table.listing table tfoot td, table.listing table td {
  border: none;
}
table.duplicate.listing * {color: #999;}

table.listing table.simple {margin-left: 2em;}
table.listing table.simple td {padding: 0.25em;}

table.listing .section-heading {
  font-size: 1.2em;
  border: none;
  padding-top: 1.5em;
}

table.compressed { width: auto }
table.compressed td { padding: 0.25em 0.5em }

/* ==== Summary tables ==== */

/* Tables presenting summary information have subdued headers and a little
row spacing: */
table.summary th, table.summary td,
table.listing table.summary th, table.listing table.summary td {
  padding: 0 0.5em 0.5em 0;
}
table.summary th {color: #555; font-weight: normal;}
table.summary caption {font-style: italic; margin-left: 1em;}
table.summary ul, table.summary ul li {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}


/* --- Sortable tables --- */

table.sortable a.sortheader {
  color:#666666;
  font-weight: bold;
  text-decoration: none;
  display: block;
}
table.sortable img.sortarrow {
  padding-left: 2px;
}
th.ascending {
  background-image: url(/@@/arrowDown);
  background-position: center right;
  background-repeat: no-repeat;
}
th.descending {
  background-image: url(/@@/arrowUp);
  background-position: center right;
  background-repeat: no-repeat;
}
/* Used to indicate a value to be used to sort cells in a row */
.sortkey, .revsortkey {display: none;}



/* --- Action links and buttons --- */

/*
  Action links are those that begin the process of doing something.
  For example, "Register a branch", "Edit profile", "Link to CVE".
  When presented inline, they are rendered by launchpad-inline-link.pt.

  Action buttons are those that submit a multi-row form.
  Often an action button will have an "or _Cancel_" link next to it.

  We want 0.5em horizontal gap between links and buttons in these sections.
  Using margin-left would cause a bad gap to the left of a leftmost item.
  Using margin-right would cause a bad gap to the right of a rightmost item.
  We could fix these problems with :first-child/:last-child, but not in IE.
  So we do something a little tricky.
  We go ahead and give each child of the actions container a right margin:
*/
.actions * {margin-right: 0.5em;}
.actions * * {margin-right: 0;} /* because ">" doesn't work in IE6 */
/*
  Then in addition to the top/bottom margins of the actions container, we
  give it a *negative* right margin, cancelling out that of the last child.
*/
.actions {margin: 1em -0.5em 1em 0;}
/*
  Examples:
  http://bugs.launchpad.dev/firefox/+bug/1 (after 'Affects' table)
  http://bugs.launchpad.dev/firefox/+bug/1/+subscribe (bottom button)
*/

/* --- Batch navigation links --- */

/* Next links have icons: */
.batch-navigation-links .next {
  background: center right no-repeat;
  padding-right: 14px;
}
.batch-navigation-links .next {background-image: url(/@@/arrowRight);}
.batch-navigation-links .next.inactive {
  background-image: url(/@@/arrowRight-inactive);
}
.batch-navigation-links .inactive {color: #999ea7;}
/* And all the links have spacing between them: */
.batch-navigation-links .previous, .batch-navigation-links .next,
.batch-navigation-links .last {
  margin-left: 0.25em;
}
.batch-navigation-links .first, .batch-navigation-links .previous,
.batch-navigation-links .next {
  margin-right: 0.25em;
}

/* --- Other --- */

/* No border on images that are links. */
a img {
  border: none;
}
/* No border on images that have link maps.
 * There's nothing special for this, as the image and map
 * may be separate.  So, just set no border for all images.
 */
img {
  border: none;
}

/* === Collapsible sections === */
/* Some page sections are hidden by default, expanded by clicking a link. */
/* see launchpad.js:activateCollapsibles() */
fieldset.collapsible {
  border: none;
  margin: 0;
  padding: 16px 0 0; /* "Add a comment/attachment" form in bug reports */
}
.collapsible legend a, .collapsible legend a:hover {text-decoration: none;}
img.collapseIcon {text-decoration: none; vertical-align: middle;}
.collapsible legend a span {text-decoration: underline;}
.collapsed {border: none; margin-bottom: 0;}
fieldset .collapsed {display: none;}
fieldset .expanded {display: block;}
fieldset.collapsible legend {font-weight: normal;}

form.primary.search {
  margin-bottom: 2em;
}
@media print {
  .notforprint {display:none;}
}
@media screen {
  .notforscreen {display:none;}
}

.highlighted, tr.highlight {background: #ddd; border: 1px solid #ddd;}
.highlighted {padding: 0.5em;}
.highlighted h3 {margin-top: 0;}
.unhighlighted {padding: 0 0.5em;}

strong em {
  font-style: normal;
  color: #353535;
}
.link_img {border: 0;}
.debug {
  background: none;
  color: #f09;
}

.anchor {
  height: 1px;
  overflow: hidden;
  display: none;
}
hr {
  display: none;
}

/* === Universal page layout === */

/* All pages begin with a global header or a topline. */
#globalheader {
  clear: both;
  position: relative;
  width: 100%;
  height: 21px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background-color: #EEE;
  background-image:  url(globalheader_bg.gif);
  background-repeat: repeat-x;
  background-position: top center;
}
#globalheader .sitemessage a {
  color: #FFF;
  text-decoration: underline;
}
/* Site-specific message. */
#globalheader .sitemessage {
  text-align: center;
  color: #FFF;
  font-size: 13px;
  padding-top: 2px;
}

/* === Location bar === */
/* The location bar consists of three element: the login control, the location
hierarchy, and the application tabs. */
#locationbar {margin-bottom: 30px;}

/* === Login control === */
/* At the top right of the page is a link to log in or a button to log out: */
#logincontrol {
    float: right;
}
#logincontrol a:hover {
    text-decoration: none;
}

/* push image a little bit down to make it line up better with the text */
#logincontrol img {
    margin-bottom: -2px;
}
/* The 'Log Out' button lacks the right margin that buttons usually have: */
#logincontrol input[type='submit'] {
  font-size: smaller;
  margin-right: 0;
}

/* === Location hierarchy === */
/*
  # XXX mpt 20080710 bug=247420: Known issues with the hierarchy:
  - The top border and bevel of the last segment is missing.
  - The right border and bevel of the last segment is missing.
  - The border between the last segment and the spine should not be present.
  - The spine should have a slight top bevel as well as a border.
*/
/*
  The location bar begins with a series of interlocking segments, showing
  your location in the hierarchy of people and projects:
*/
#lp-hierarchy {
  float: left;
  width: auto;
  background: #eee url(navigation-hierarchy-bg) top left no-repeat;
  margin-bottom: -1px;
  min-height: 25px;
}
/* The first segment has a rounded top left corner:*/
.first-rounded {
  background: url(navigation-hierarchy-nw) top left no-repeat;
  min-height: 25px;
  display: block;
  width: 6px;
  float: left;
}
/* The segments have '>' separators for the benefit of those without CSS: */
#lp-hierarchy small {display: none;}
/* The last segment is darker (on the front page, this is the only item): */
#lp-hierarchy.home {
  background: url(navigation-hierarchy-home-bg) no-repeat;
  padding: 0 0 2px 6px;
  width:110px;
}
/* Each segment appears as a clickable button: */
#lp-hierarchy a {
  color: #000; float:left; display: block; padding: 6px 22px 0 8px;
}
/* The segments have chevrons to convey their parent-child relationship: */
#lp-hierarchy .item {
  background: url(navigation-hierarchy-chevron-normal) no-repeat right;
  float: left;
  min-height: 25px;
  padding-bottom: 2px;
  vertical-align: middle;
}
/* The penultimate segment leads into the dark color of the last segment: */
#lp-hierarchy .before-last {
  background:url(navigation-hierarchy-chevron-selected) no-repeat right;
}
/* The last segment is dark, and has a rounded top right corner: */
#lp-hierarchy .last a {font-weight: bold; padding-right: 10px;}
#lp-hierarchy .last {
  background: #ddd url(navigation-hierarchy-ne) top right no-repeat;
}

/* === Location spine === */
/*
  A narrow horizontal bar ties the location bar together. On those pages with
  application tabs, it visually connects the selected hierarchy element and
  the selected tab:
*/
.apps-separator {
  clear: left;
  height: 5px;
  margin: 0;
  padding: 0;
  background: #ddd;
  border: 1px solid #ccc;
}

/* === Location application tabs === */
/* In most pages, the location bar includes six centered application tabs: */
#lp-apps {
  position: relative;
  width: 98%; /* leaves a minimum explanatory margin at the left and right */
  max-width: 72em; /* prevents each tab from being more than 12em wide */
  padding: 0;
  margin: 0 auto; /* centers the tabs */
}
/* The tabs have text separators for the benefit of those without CSS: */
#lp-apps small {display: none;}
/* The tabs are equal size, not too wide, and attached to the center bar: */
#lp-apps span {
  position: relative;
  float: left;
  width: 16.16%; /* = (100% / 6) - 0.5% left over */
  margin: 0 0.25%; /* = the leftover 0.5%, half each on the left and right */
    /* This is overridden in main-template.pt for Internet Explorer */
  padding: 0;
  text-align: center;
  color: #333;
  line-height: 1.5em;
  white-space: nowrap; /* keeps multi-word tab labels on a single line */
}
#lp-apps span a, #lp-apps span strong {
  display: block;
  color: #333;
  text-decoration: none;
  margin: 0;
  overflow: hidden;
  padding: 0 0 5px;
}
/* The active tab is darker, and looks contiguous with the spine above: */
#lp-apps .active {border-top: 1px solid #ddd; font-weight: bold; top: -1px;}
#lp-apps .overview {
  background: url(navigation-tabs-sw-overview) bottom right no-repeat;
}
#lp-apps .overview a, #lp-apps .overview strong {
  background: url(navigation-tabs-se-overview) bottom left no-repeat;
}
#lp-apps .overview a:hover {
  color: #8fb635;
}
#lp-apps .overview.active {
  background: url(navigation-tabs-sw-overview-active) bottom right no-repeat;
}
#lp-apps .overview.active strong, #lp-apps .overview.active a {
  background: url(navigation-tabs-se-overview-active) bottom left no-repeat;
}
#lp-apps .branches {
  background: url(navigation-tabs-sw-code) bottom right no-repeat;
}
#lp-apps .branches a, #lp-apps .branches strong {
  background: url(navigation-tabs-se-code) bottom left no-repeat;
}
#lp-apps .branches a:hover {
  color: #d18c3b;
}
#lp-apps .branches.active {
  background: url(navigation-tabs-sw-code-active) bottom right no-repeat;
  border-top: 1px solid #ddd;
}
#lp-apps .branches.active strong, #lp-apps .branches.active a {
  background: url(navigation-tabs-se-code-active) bottom left no-repeat;
}
#lp-apps .bugs {
  background: url(navigation-tabs-sw-bugs) bottom right no-repeat;
}
#lp-apps .bugs a, #lp-apps .bugs strong {
  background: url(navigation-tabs-se-bugs) bottom left no-repeat;
}
#lp-apps .bugs a:hover {
  color: #a02c35;
}
#lp-apps .bugs.active {
  background: url(navigation-tabs-sw-bugs-active) bottom right no-repeat;
}
#lp-apps .bugs.active strong, #lp-apps .bugs.active a {
  background: url(navigation-tabs-se-bugs-active) bottom left no-repeat;
}
#lp-apps .specifications {
  background: url(navigation-tabs-sw-blueprints) bottom right no-repeat;
}
#lp-apps .specifications a, #lp-apps .specifications strong {
  background: url(navigation-tabs-se-blueprints) bottom left no-repeat;
}
#lp-apps .specifications a:hover {
  color: #3895bd;
}
#lp-apps .specifications.active {
  background: url(navigation-tabs-sw-blueprints-active) bottom right no-repeat;
}
#lp-apps .specifications.active strong, #lp-apps .specifications.active a {
  background: url(navigation-tabs-se-blueprints-active) bottom left no-repeat;
}
#lp-apps .translations {
  background: url(navigation-tabs-sw-translations) bottom right no-repeat;
}
#lp-apps .translations a, #lp-apps .translations strong {
  background: url(navigation-tabs-se-translations) bottom left no-repeat;
}
#lp-apps .translations a:hover {
  color: #bb3a84;
}
#lp-apps .translations.active {
  background: url(navigation-tabs-sw-translations-active) bottom right no-repeat;
}
#lp-apps .translations.active strong, #lp-apps .translations.active a {
  background: url(navigation-tabs-se-translations-active) bottom left no-repeat;
}
#lp-apps .answers {
  background: url(navigation-tabs-sw-answers) bottom right no-repeat;
}
#lp-apps .answers a, #lp-apps .answers strong {
  background: url(navigation-tabs-se-answers) bottom left no-repeat;
}
#lp-apps .answers a:hover {
  color: #3941bf;
}
#lp-apps .answers.active {
  background: url(navigation-tabs-sw-answers-active) bottom right no-repeat;
}
#lp-apps .answers.active strong, #lp-apps .answers.active a {
  background: url(navigation-tabs-se-answers-active) bottom left no-repeat;
}
/* After all has been said and done, we still want disabled ones to look disabled */
#lp-apps .disabled-tab {
  background: url(navigation-tabs-sw-disabled) bottom right no-repeat;
}
#lp-apps .disabled-tab strong {
  background: url(navigation-tabs-se-disabled) bottom left no-repeat;
  display: block;
  font-weight: normal;
  color: #a7a7a7;
}
#view-navigation-tabs .navigation.menu > :first-child {
  background: url(navigation-nw-w-normal.png) top left no-repeat;
}
.navigation.menu > strong:first-child {
  background-image: url(navigation-nw-w-selected.png);
}
/* The bottom right corner is placed over top of the bottom border: */
.navigation.menu > :first-child::before {
  content: '';
  background: url(navigation-sw-normal.png) no-repeat bottom left;
  padding: 0.25em 2px;
  vertical-align: -1px;
}

/* === Help pane === */
/*
Inline help is contained in a <div> and dynamically positioned by JavaScript.
*/
#help-pane {
  position: absolute;
  border: 1px solid black;
  padding: 1px 1px 5px 10px;
  z-index: 3000;  /* This should appear above all other content. */
  background-color: #fff;
  width: 600px; /* based on the help wiki, should change later */
}
/* We want the hidden pane to have dimensions so that we can position the
frame with them.  This works because the element an absolute position, taking
it out of the page flow. */
#help-pane.invisible {
    position: absolute;
    visibility: hidden;
    display: block;
    left: 0px;
    top: 0px;
}

#help-body {
    background: url(spinner.gif) no-repeat center center;
}
#help-pane iframe {width: 100%; height: 300px; border: 0;}
#help-pane iframe.invisible {
    visibility: hidden;
    display: block;
}
#help-footer {
  padding: 3px;
  border-top: 1px solid #ddd;
  text-align: right;
}
#help-footer button {
  margin-bottom: 10px;
  margin-top: 3px;
}

span.help {font-weight: normal;}

/* === ID and timestamp === */
/* The first text in many pages is the object's timestamp and identifier.
These may be <div>s or <p>s, but should have the same spacing regardless: */
.object {margin: 0 0 0.5em; padding: 0;}
/* The timestamp is the date last modified or (more usually) registered: */
.object.timestamp {float: right;}
/* An identifier is a unique label, such as a bug number or branch ID: */
.object.identifier {float: left;}

/* === Navigation menus === */
/* A "navigation menu" categorizes the information about an object. */
/* For example, a distribution has "Details / Announcements / Mentoring..." */
/* Navigation menus appear as a segmented pill overlaid on a groove: */
/* First row of options */
#context-navigation-tabs .navigation.menu {
  margin: 0.5em 0 1em;
  text-align: center;
}
/* Segments have slight padding, and are normally light grey: */
#context-navigation-tabs .navigation.menu * {
  background: #808080 url(navigation-n.png) top left repeat-x;
  padding: 0.25em 0;
  color: #fff;
}
/* But the selected element is slightly darker: */
#context-navigation-tabs .navigation.menu strong * {background-color: #353434;}
/* All segments have a border, and padding around their text: */
#context-navigation-tabs .navigation.menu * * {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #353434;
  padding: 0.25em 0.5em;
}
/* For text browsers, there's a " / " separator, hidden from CSS browsers: */
#context-navigation-tabs .navigation.menu small {display: none;}
/* All text in the navigation menu is near-black, even the links: */
#context-navigation-tabs .navigation.menu, .navigation.menu a {color: #333;}
#context-navigation-tabs .navigation.menu a:hover {text-decoration: none;}
/* The first segment has a rounded cap, matching its color: */
#context-navigation-tabs .navigation.menu > :first-child {
  background: url(navigation-parent-nw-w-normal.png) top left no-repeat;
}
#context-navigation-tabs .navigation.menu > strong:first-child {
  background-image: url(navigation-nw-w-selected.png);
}
/* The bottom right corner is placed over top of the bottom border: */
#context-navigation-tabs .navigation.menu > :first-child::before {
  content: '';
  background: url(navigation-parent-sw-normal.png) no-repeat bottom left;
  padding: 0.25em 2px;
  vertical-align: -1px;
}
#context-navigation-tabs .navigation.menu > strong:first-child::before {
  background-image: url(navigation-sw-selected.png);
}
/* The last segment has a rounded cap, matching its color: */
#context-navigation-tabs .navigation.menu > :last-child {
  background: url(navigation-parent-ne-e-normal.png) top right no-repeat;
}
#context-navigation-tabs .navigation.menu > strong:last-child {
  background-image: url(navigation-ne-e-selected.png);
}
#context-navigation-tabs .navigation.menu > :last-child * {border-right: none;}
/* The bottom right corner is placed over top of the bottom border: */
#context-navigation-tabs .navigation.menu > :last-child::after {
  content: '';
  background: url(navigation-parent-se-normal.png) no-repeat bottom left;
  padding: 0.25em 2px;
  vertical-align: -1px;
}
#context-navigation-tabs .navigation.menu > strong:last-child::after {
  background-image: url(navigation-se-selected.png);
}
/* Second row of options */
#view-navigation-tabs .navigation.menu {
  margin: 0.5em 0 1em;
  text-align: center;
}
/* Segments have slight padding, and are normally light grey: */
#view-navigation-tabs .navigation.menu * {
  background: #4c4c4c url(navigation-n.png) top left repeat-x;
  padding: 0.25em 0;
  color: #fff;
}
/* But the selected element is slightly darker: */
#view-navigation-tabs .navigation.menu strong * {background-color: #000;}
/* All segments have a border, and padding around their text: */
#view-navigation-tabs .navigation.menu * * {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #0d0d0d;
  padding: 0.25em 0.5em;
}
/* For text browsers, there's a " / " separator, hidden from CSS browsers: */
#view-navigation-tabs .navigation.menu small {display: none;}
/* All text in the navigation menu is near-black, even the links: */
#view-navigation-tabs .navigation.menu, .navigation.menu a {color: #333;}
#view-navigation-tabs .navigation.menu a:hover {text-decoration: none;}
/* The first segment has a rounded cap, matching its color: */
#view-navigation-tabs .navigation.menu > :first-child {
  background: url(navigation-nw-w-normal.png) top left no-repeat;
}
#view-navigation-tabs .navigation.menu > strong:first-child {
  background-image: url(navigation-nw-w-selected.png);
}
/* The bottom right corner is placed over top of the bottom border: */
#view-navigation-tabs .navigation.menu > :first-child::before {
  content: '';
  background: url(navigation-sw-normal.png) no-repeat bottom left;
  padding: 0.25em 2px;
  vertical-align: -1px;
}
#view-navigation-tabs .navigation.menu > strong:first-child::before {
  background-image: url(navigation-sw-selected.png);
}
/* The last segment has a rounded cap, matching its color: */
#view-navigation-tabs .navigation.menu > :last-child {
  background: url(navigation-ne-e-normal.png) top right no-repeat;
}
#view-navigation-tabs .navigation.menu > strong:last-child {
  background-image: url(navigation-ne-e-selected.png);
}
#view-navigation-tabs .navigation.menu > :last-child * {border-right: none;}
/* The bottom right corner is placed over top of the bottom border: */
#view-navigation-tabs .navigation.menu > :last-child::after {
  content: '';
  background: url(navigation-se-normal.png) no-repeat bottom left;
  padding: 0.25em 2px;
  vertical-align: -1px;
}
#view-navigation-tabs .navigation.menu > strong:last-child::after {
  background-image: url(navigation-se-selected.png);
}


#globalsearch {
  float: right;
  display: inline;
  font-weight: normal;
  margin-right: 1em;
}

#globalsearch input {
  font-size: small;
}

/* The last element on every page is a standard footer. */
#globalfooter {
    clear: both;
    border: solid #c1c9d6;
    border-width: 1px 0 0 0;
    margin: 0.5em 0;
}
/* XXX 20080617 mpt: That 20px will be obsolete in 2.0 (bug 240657). */
/* It has a top border if the page doesn't already have a rounded border. */
body.freeform #globalfooter {
  border-top: 1px solid #cbcbcb; /* matches color of mainarea_* images */
  padding-top: 0.5em;
}
#colophon            {float: left;}
#applications-footer {float: right;}
#lp-arcana           {float: right;}

/* === Specific page layouts === */

/*- App home pages and pillar indexes both have a heading and app buttons. -*/
table#applications {margin: 1em 0 -0.5em;}
table#applications th, table#applications td {vertical-align: bottom;}
table#applications th {padding-left: 60px; text-align: left;}
table#applications th h1 {margin: 0; padding: 0;}
table#applications td {text-align: right;}
body.tab-branches #applications,
body.tab-bugs #applications,
body.tab-specifications #applications,
body.tab-answers #applications,
body.tab-translations #applications {
  background-position: left bottom !important;
}
/* But the pillar indexes have no watermark, so no heading indenting. */
body.pillarindex table#applications th {padding-left: 0;}

.clear {
  clear: both;
  height: 0px;
  overflow: hidden;
}

/* Either that application/pillar heading, or a structural heading,
partly (but not visibly) overlaps the rounded border of the main area. */
#structuralobject, #applications {
  position: relative;
  z-index: 1;
}

/* Display the pillar image above mainarea, so the image does not appear
   cropped in wide windows on browsers that do not support transparent
   background. */
#structuralobjectheading img {
  z-index: 2;
}

#structuralobjectheading {
  background: none;
  color: black;
  float: left;
  margin: 10px 20px 0; /* XXX 20080617 mpt: remove 20px in 2.0 (bug 240657). */
 */
  width: 70%;
}
/* Structural headings contain an icon, maybe an intro, and a main heading.

   The icon size (when present) is 64x64, and is floated left. The left
   margins (3px on the icon, 70px on .intro and .main) provides 3px of
   horizontal spacing on each side of the icon. */
#structuralobjectheading img {
  float: left;
  margin: 0;
  margin-right: 3px;
  /* Large negative margin-bottom, so the presence or absence of the image
     will not affect the positioning of the #mainarea. */
  margin-bottom: -32px;
}
#structuralobjectheading .intro {
  margin: 2px 0 0 70px;
  font-size: 12px;
}
#structuralobjectheading .main {
  /* No bottom spacing here. If this does not wrap around, the spacing with
     "#mainarea" is provided by the margin-botom of "#globalsearch". If this
     does wrap around, we do not want spacing in addition to the font's
     descent. */
  font-weight: bold;
  margin: 1px 0 0 70px;
  font-size: 24px;
}

/* mainarea and three other divs supply the bottom (mainarea), top (x),
top left (y), and top right (z) of the rounded border. */
#mainarea {clear: both; position: relative;}

/* Inside those is a container for the main content, and the portlets if any. */
#container {margin: 0 0 40px;}
* html #container {margin-top: 0; position: static;} /* fixes in IE6 */

/* A two-column layout with portlets is achieved using floats: */
#maincontent, #maincontentsub, #portlets {float: left;}
/* ("maincontentsub" is used for a two-column section in bugtask-index.pt.) */
/* The main column should take the full width available, minus 200px for the
portlets. We achieve this using a negative right margin: */
#maincontent, #maincontentsub {width: 100%; margin-right: -200px;}
/* And the portlets use exactly this 200px: */
#portlets {width: 200px; margin: 0;}
/* Inside, the main column itself keeps 20px clear of the 200px column: */
#nonportlets {margin-right: 220px;}
/* Non-portlets can also be constrained to an easily readable width. */
#nonportlets.readable {max-width: 40em;}
/* One-column pages can construct portlets using <div class="aside">: */
div.aside {clear: right; float: right; margin-left: 20px; width: 200px;}

/* -- Pillar indexes -- */

/* Distributions, projects, and people have two-column main pages. */
/* The main heading and most of the information is in the second column: */
.pillar {
  margin-left: 212px;
  zoom: 1; /* sets hasLayout in IE, ensuring correct mugshot/heading layout */
}
.pillar h1 {clear: none;}
/* But the mugshot and the subheadings are in the first column: */
.pillar h2, .pillar .mugshot {
  clear: left;
  float: left;
  margin-left: -212px;
  text-align: right;
  width: 192px;
}
/* There is a margin between each section and the previous one: */
.pillar div.portlet, .pillar div.section {clear: both; margin-bottom: 2em;}
.pillar div.portlet h2, .pillar div.section h2 {margin-top: 0;}

/* === Official Bug Tag Management === */

.official-tags-layout-table {
  width: 100%;
}

.official-tags-layout-table td {
  padding: 0;
}

.official-tags-layout-table th {
  text-align: left;
  font-size: 1.25em;
  padding-bottom: 5px;
}

.official-tags-layout-table .left-column,
.official-tags-layout-table .right-column {
  vertical-align: top;
  width: 45%;
}

.official-tags-layout-table .middle-column {
  text-align: center;
  padding: 20px;
}

.official-tags-layout-table .middle-column input[type='submit'] {
  width: 75px;
  margin: 5px;
}

.official-tags-layout-table .input-field-layout-table td {
  border-style: none;
  padding: 5px;
}

.official-tags-layout-table ul {
  list-style-type: none;
  padding-left: 0 !important;
  margin: 0 !important;
}

.official-tags-layout-table li.selected {
  background-color: #eee;
}

.official-tags-layout-table ul .tag-used-count {
  color: #888;
  font-size: 75%;
}

.official-tags-layout-table .list-scrollable-area {
  height: 10em;
  overflow-y: scroll;
  border-style: solid;
  border-width: 1px;
  border-color: #eee;
}

.official-tags-layout-table .left-column .list-scrollable-area {
  background-color: #fefecc;
}

.official-tag-error-message {
  padding-top: 1em;
  padding-bottom: 1em;
}

.official-tag-error-message-header {
  font-weight: bold;
  font-size: 1.25em;
  margin-left: 1em;
}

.official-tag-error-message-value {
  color: red;
  text-decoration: underline;
}

a.official-tag { /* Looks just like a normal link */ }

a.unofficial-tag {
  color: #6699ee;
}

/* === Portlets === */
/* IE6 and  lower ignore the left padding, so we add extra positioning. */
* html #portlets {left: 20px;}
/* Portlets look the same whether as class="portlet" or class="aside": */
#portlets .portlet, div.aside {
  background-color: #fafafa;
  border:1px solid #d6d6d6;
  margin: 0 0 0.5em 0;
  color: #717171;
  padding: 8px;
  width: 182px; /* = 200px column - 2*1px vertical border - 2*8px padding */
  overflow: hidden;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-border-radius: 5px;
}
/* In the Actions menu, part of the horizontal padding is used for
highlighting menu items, so padding is handled by the contents instead: */
#portlets #actions {
  padding: 4px 0; width: 198px; /* 200px column - 2*1px vertical border */
}
#portlets .portlet, div.aside, #portlets .portlet h2, div.aside h2 {
  font-size: 12px;
}
#portlets .portlet h2, div.aside h2 {
  border-bottom: 1px solid #ccc;
  color: inherit !important;
    /* http://launchpad.dev/ubuntu/+source/pmount/+filebug-advanced */
  font-weight: bold;
  margin: 0 0 1em;
  padding: 0 0 1px;
}
#actions ul {
  list-style-type: none;
  margin: 0;
  padding: 0 4px;
  width: 191px; /* 200px column - 1px right border - 2*4px padding */
}
#actions li {
  margin: 0; /* neutralizes UA list item indenting */
  padding: 1px 0; /* works around a bug that makes items taller in WinIE */
}
#actions a, #actions strong {
  background: url(action.png) 4px center no-repeat;
  display: block; /* makes the clickable area equal to the highlighted area */
  padding: 2px 2px 2px 14px; /* 14px on the left makes room for the bullet */
}
#actions a:hover {background-color: #fff; text-decoration: underline;}

/* === Public/private status === */
/* The first portlet on many pages discloses whether the object is private: */
#privacy {background: #fff;}
#privacy.private {
  background: url(/@@/private-bg) top left repeat-x; /* 8px high */
  padding-top: 12px; /* = 8px + the usual 4px top padding */
}

.check,
.radio {
  background: transparent;
  width: auto !important;
  border: 0 !important;
}
#structural-children {
  clear: both;
  font-size: 0.75em;
  margin-top: 2em;
  padding: 2em 0 0;
  border-top: 1px dotted #cbcbcb; /* matches color of mainarea_* images */
}
#applicationchooser {
  clear: both;
  position: relative; /* needed to make z-index work */
  z-index: 10; /* ensures tabs appear above structural object heading */
}

/* Some pages end with links to related items. */
/* Examples: branch page, bug page. */
.related {
  margin-top: 4em;
  border-top: 1px solid #cbcbcb; /* matches color of mainarea_* images */
  padding-top: 1em;
}
.related ul {
  list-style: none;
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-indent: 0.5em;
}
.related ul li:before {content: "\00BB \0020";}

/* --- Various custom list formats --- */

#maincontent ol, #maincontent ul {
  margin-left: 24px;
  padding-left: 0;
}
ul.add, li.add                       {list-style-image: url(/@@/add);}
ul.architecture, li.architecture     {list-style-image: url(/@@/architecture);}
ul.build-success, li.build-success   {list-style-image: url(/@@/build-success);}
ul.blueprint, li.blueprint           {list-style-image: url(/@@/blueprint);}
ul.branch, li.branch                 {list-style-image: url(/@@/branch);}
ul.bug, li.bug                       {list-style-image: url(/@@/bug);}
ul.bug.remote, li.bug.remote         {list-style-image: url(/@@/bug-remote);}
ul.cve, li.cve                       {list-style-image: url(/@@/cve);}
ul.distro, li.distro                 {list-style-image: url(/@@/distribution);}
ul.distroseries, li.distroseries     {list-style-image: url(/@@/distribution);}
ul.download, li.download             {list-style-image: url(/@@/download);}
ul.edit, li.edit                     {list-style-image: url(/@@/edit);}
ul.faq, li.faq                       {list-style-image: url(/@@/faq);}
ul.info, li.info                     {list-style-image: url(/@@/info);}
ul.language, li.language             {list-style-image: url(/@@/language);}
ul.mail, li.mail                     {list-style-image: url(/@@/mail);}
ul.meeting, li.meeting               {list-style-image: url(/@@/meeting);}
ul.milestone, li.milestone           {list-style-image: url(/@@/milestone);}
ul.news, li.news {
  list-style-type: none;
  margin-bottom: 1em;
}
ul.package.binary, li.package.binary {list-style-image: url(/@@/package-binary);}
ul.package.source, li.package.source {list-style-image: url(/@@/package-source);}
ul.person, li.person                 {list-style-image: url(/@@/person);}
ul.product, li.product               {list-style-image: url(/@@/product);}
dl.products>dt:before                {content: url(/@@/product);}
ul.question, li.question             {list-style-image: url(/@@/question);}
ul.rss, li.rss                       {list-style-image: url(/@@/rss);}
ul.search, li.search                 {list-style-image: url(/@@/search);}
ul.team, li.team                     {list-style-image: url(/@@/team);}
ul.translation, li.translation       {list-style-image: url(/@@/translation);}
ul.link, li.link                     {list-style-image: url(/@@/link);}
ul.webref, li.webref                 {list-style-image: url(/@@/link);}

/* --- A list with icons instead of bullets --- */
ul.iconed {
  list-style-type: none;
  padding-left: 0 !important;
  margin: 0 !important;
}

/* Various custom link icons */
a.info {
    background: url('/@@/info') no-repeat scroll left center;
    padding-left:18px;
}
a.edit {
    background: url('/@@/edit') no-repeat scroll left center;
    padding-left:18px;
}
a.add {
    background: url('/@@/add') no-repeat scroll left center;
    padding-left:18px;
}

/* == Application-specific styles == */

#application-footer strong {font-weight: normal;}

.description {font-size: 1.125em;}
/* person/project/bug descriptions, bug comments */
.report h2 {font-size: 1.4em;}
.boardComment, .boardCommentSummary {border: 1px solid #ddd;}
.boardComment {margin: 1em 0 1.5em;}
.boardCommentSummary {margin: 0.3em 0 0.3em 0;}
.remoteBugComment {background-color: #f6f6f6;}
* html .boardComment {float: left; clear: both; width: 99%;} /* IE float bug */
.boardCommentDetails {
  background-color: #eee;
  padding: 0.5em 12px;
  border-bottom: 1px solid #ddd
}
.boardCommentBody {padding: 0.5em 12px 0;}
.boardBugActivityBody {
  padding: 0.5em 12px;
  background-color: #fafafa;
  color: #555;
}
.boardBugActivityBody table {
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}
.boardCommentContent { line-height: 1.5em;}
.boardCommentFooter {background-color: #eee; padding: 0.5em 12px;}
dl.faq dt {font-weight: bold;}
dl.faq dd {margin: 1em 0 2em 4em;}

/* --- Overview --- */

body.tab-overview #mainarea #portlets .portlet.active h2 a,
body.tab-overview #mainarea div#portlets div.portlet.active a {
  background-color: #F0CB00;
}
body.tab-overview #mainarea #portlets .portlet.active h2 a:hover,
body.tab-overview #mainarea div#portlets div.portlet.active a:hover {
  background-color: #FFE40F;
}
body.tab-overview #mainarea #portlets .portlet.active div,
body.tab-overview #mainarea #portlets .portlet.active ul,
body.tab-overview #mainarea #portlets .portlet.active ul li a,
body.tab-overview #mainarea #portlets .portlet.active ul li a:hover,
body.tab-overview #mainarea div#portlets div.portlet.active ul,
body.tab-overview #mainarea div#portlets div.portlet.active ul li a,
body.tab-overview #mainarea div#portlets div.portlet.active ul li a:hover {
  background-color: #FEFCF0;
}
body.tab-overview #mainarea #portlets .portlet.active div {
  border-left: 4px solid #FEFCF0;
  border-right: 4px solid #FEFCF0;
}
body.tab-overview #actions, body.tab-overview .results {
  background: #e6eed3;
}
body.tab-overview #actions h2, body.tab-overview #actions h2:hover {
  background-color: #83ad23;
}

.tab-overview #application-footer strong {
  background: none;
  color: #83ad23;
}

/* The top-most Person portlet, Contact Details, is allowed to float up and
beside the mugshot. */
#contact-details {clear: none;}

.product.series, .project {margin-bottom: 1em;}
#packages h1, #projects h1 {margin-top: 1.2em;}

/* --- Home --- */
#home-description {
  font-size: 1.5em;
  font-family: "URW Gothic L","MgOpen Moderna","Lucida Sans",sans-serif;
  text-align: center;
  margin: 1em 0 1em 0;
  padding: 0.2em;
  background-color: #ededed;
}
#home-stats {
  margin: auto;
  text-align: center;
  color: gray;
  max-width: 40em;
}
#home-page h2 {
  width: 100%;
  text-align: center;
  margin-left: -0.8em;
}
#home-page img {
  vertical-align: middle;
}
#featured-projects ul {
  list-style-type: none;
  width: 50%;
  margin: 0;
  padding: 0 ;
  float: left;
}
#featured-projects li {
  padding-bottom: 2px;
}
.home-banners {
  background-color: #8890ff;
  width: 220px;
  padding: 1em 0 1em 1em;
  margin-top: 1em;
  overflow: hidden;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.home-banners a {
  font-weight: bold;
  color: white;
}
.home-banner-container {
  width: 100%;
  background-color: #ededed;
  padding: 1em;
  padding-top: 0;
}

.important-notice-container {
  text-align: center;
  width: 100%;
  padding-bottom: 1em;
  position: relative;
}

.important-notice-balloon {
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-border-radius: 5px;
  background-color: #ededed;
  padding: 1em;
  border: 1px solid #000;
  width: auto;
  overflow: hidden;
}

.important-notice-buttons {
  float: right;
}

.important-notice-cancel-button {
  visibility: hidden;
  cursor: pointer;
}

.important-notice {
  padding: 0px 0px 40px 0px;
  height: 32px;
  overflow: hidden;
}

.important-notice a {
  font-weight: bold;
  color: black;
  text-decoration: underline;
}

/* Soyuz-related styles (that don't have a facet, but generally are
 * under Overview)
 */
#sources-list-entries {
  border: 1px solid gray;
  padding: 0.3em;
  float: left; /* So the border doesn't use 100% of the page */
}

#package_counters {
    clear: both;
    float: left;
}

div#build-status-summary {
    clear:right;
    float:right;
}

div#build-status-summary h2 {
    margin-top:0;
}

div#build-status-summary th {
    text-align:left;
}

div#signing-key {
    clear: both;
    float: left;
}

div#signing-key p {
    max-width: none;
    background: url(/@@/info) center left no-repeat;
    padding-left: 18px;
}

div#signing-key a {
    font-weight: bold;
}

div.archive #description {
    width: 50em;
}
div.archive #description fieldset {
    border: 1px solid gray;
    padding: 0 1em;
    margin:0 1em 1em 0;
}
table#package-requests {
    width: 60em;
    margin: 1em 0;
}
table#package-requests td {
    padding: 0.5em;
}
form.package-search-filter {
    clear: both;
}
h1.disabled {
    color: grey;
}
table#packages_list {
    margin-top: 1em;
}
p.update-failure-message {
    background: url(/@@/no) center left no-repeat;
    padding-left: 18px;
}

.update-in-progress-message {
    background: url(/@@/spinner) center left no-repeat;
    padding-left: 18px;
}

a.update-retry {
    padding-left: 1em;
}
/* --- Code --- */

body.tab-branches #applications {background: url(app-code-wm.gif) no-repeat;}
body.tab-branches #mainarea #portlets .portlet.active h2 a,
body.tab-branches #mainarea div#portlets div.portlet.active a {
  background-color: #CE4227;
}
body.tab-branches #mainarea #portlets .portlet.active h2 a:hover,
body.tab-branches #mainarea div#portlets div.portlet.active a:hover {
  background-color: #E2563B;
}
body.tab-branches #mainarea #portlets .portlet.active div,
body.tab-branches #mainarea #portlets .portlet.active ul,
body.tab-branches #mainarea #portlets .portlet.active ul li a,
body.tab-branches #mainarea #portlets .portlet.active ul li a:hover,
body.tab-branches #mainarea div#portlets div.portlet.active ul,
body.tab-branches #mainarea div#portlets div.portlet.active ul li a,
body.tab-branches #mainarea div#portlets div.portlet.active ul li a:hover {
  background-color: #FCF4F2;
}
body.tab-branches #mainarea #portlets .portlet.active div {
  border-left: 4px solid #FCF4F2;
  border-right: 4px solid #FCF4F2;
}
body.tab-branches #actions, body.tab-branches .results {background-color: #ffc;}
body.tab-branches #actions h2, body.tab-branches #actions h2:hover {
  background-color: #d18b39;
}
.tab-branches h1, .tab-branches h2, .tab-branches h3,
.tab-branches #application-footer strong, .tab-branches #application-summary strong, .tab-branches #page-summary strong.count {
  background: none;
  color: #d18b39;
}

.branchstatusMATURE       {color: #090;}
.branchstatusDEVELOPMENT  {color: #900;}
.branchstatusEXPERIMENTAL {color: #930;}
.branchstatusMERGED       {color: #666;}
.branchstatusABANDONED    {color: #666;}
.branchstatusNEW          {color: black;}

.voteAPPROVE       {color: green;}
.voteNEEDS_FIXING  {color: #930;}
.voteDISAPPROVE    {color: red;}
.voteRESUBMIT      {color: red;}
.voteABSTAIN       {color: grey;}
.votePENDING       {color: #f60;}

.mergestatusWORK_IN_PROGRESS  {color: black;}
.mergestatusNEEDS_REVIEW      {color: #f60;}
.mergestatusCODE_APPROVED     {color: green;}
.mergestatusREJECTED          {color: red;}
.mergestatusMERGED            {color: green;}
.mergestatusMERGE_FAILED      {color: red;}
.mergestatusQUEUED            {color: black;}
.mergestatusSUPERSEDED        {color: grey;}

.stale-diff { color: #f60; }
.conflicts-diff { color: red; }

.branch-no-dev-focus {
  background: #FFF59C;
  vertical-align: middle;
  text-align: center;
  height: 2.5em;
}

.mergeproposal p {margin: 0.5em 0 }

.vcsimportSUCCESS {} /* inherited text color */
.vcsimportFAILURE {color: Red;}

.greylink a:link, .greylink a:visited {
  color: grey;
}

.commentSuffix {
  height: 2.5em;
}
.commentVote {
  float: right;
}
.codereviewcomment {font: 120% monospace;}
.codereviewcomment .attachment, #review-diff .attachment {
  background-color: #f6f6f6;
}

body.tab-branches table.listing .section-heading {
  color: #d18b39;
}

#proposal-summary td, #proposal-summary th { padding-bottom: 2px; }
table.diff {
   white-space: pre-wrap;
   font: 120% monospace;
   width: 100%;
   background-color: white;
}
table.diff .text { width: 99%; padding-left: 0.5em; }
table.diff .line-no {
  text-align: right;
  background-color: #f6f6f6;
  color: #999;
  border-right: solid 4px white;
}
table.diff .diff-chunk, table.diff .diff-file, table.diff .diff-header {
 font-weight: bold;
}
table.diff .diff-added { background-color: #92ED92; }
table.diff .diff-removed { background-color: #FF7F7F; }
.back-link { margin-top: 3em; }

/* === Bugs === */
/* The Launchpad Bugs application uses a maroon color: */
body.tab-bugs #applications {background: url(app-bugs-wm.gif) no-repeat;}
body.tab-bugs #mainarea #portlets .portlet.active h2 a,
body.tab-bugs #mainarea div#portlets div.portlet.active a {
  background-color: #F0CB00;
}
body.tab-bugs #mainarea #portlets .portlet.active h2 a:hover,
body.tab-bugs #mainarea div#portlets div.portlet.active a:hover {
  background-color: #FFE40F;
}
body.tab-bugs #mainarea #portlets .portlet.active div,
body.tab-bugs #mainarea #portlets .portlet.active ul,
body.tab-bugs #mainarea #portlets .portlet.active ul li a,
body.tab-bugs #mainarea #portlets .portlet.active ul li a:hover,
body.tab-bugs #mainarea div#portlets div.portlet.active ul,
body.tab-bugs #mainarea div#portlets div.portlet.active ul li a,
body.tab-bugs #mainarea div#portlets div.portlet.active ul li a:hover {
  background-color: #FEFCF0;
}
body.tab-bugs #mainarea #portlets .portlet.active div {
  border-left: 4px solid #FEFCF0;
  border-right: 4px solid #FEFCF0;
}
body.tab-bugs #actions, body.tab-bugs .results {background-color: #fee;}
body.tab-bugs #actions h2, body.tab-bugs #actions h2:hover {
  background-color: #9f2b33;
}
.tab-bugs h1, .tab-bugs h2, .tab-bugs h3, .tab-bugs #application-footer strong,
.tab-bugs table.listing thead {
  background: none;
  color: #9f2b33;
}

.statusNEW,           .statusNEW a           {color: #930;}
.statusINCOMPLETE,    .statusINCOMPLETE a    {color: red;}
.statusCONFIRMED,     .statusCONFIRMED a     {color: red;}
.statusTRIAGED,       .statusTRIAGED a       {color: #f60;}
.statusINPROGRESS,    .statusINPROGRESS a    {color: black;}
.statusFIXCOMMITTED,  .statusFIXCOMMITTED a  {color: #050;}
.statusFIXRELEASED,   .statusFIXRELEASED a   {color: green;}
.statusINVALID,       .statusINVALID a       {color: gray;}
.statusWONTFIX,       .statusWONTFIX a       {color: gray;}
.importanceCRITICAL,  .importanceCRITICAL a  {color: red;}
.importanceHIGH,      .importanceHIGH a      {color: #f60;}
.importanceMEDIUM,    .importanceMEDIUM a    {color: green;}
.importanceLOW,       .importanceLOW a       {color: black;}
.importanceWISHLIST,  .importanceWISHLIST a  {color: blue;}
.importanceUNDECIDED, .importanceUNDECIDED a {color: #999;}
.status :link, .importance :link {text-decoration: none;}

/* In a bug report page, the current context is highlighted in yellow: */
#affected-software tr.highlight {background-color: #ff9;}


/* --- Blueprints --- */

body.tab-specifications #applications {
  background: url(app-blueprints-wm.gif) no-repeat;
}
body.tab-specifications #mainarea #portlets .portlet.active h2 a,
body.tab-specifications #mainarea div#portlets div.portlet.active a {
  background-color: #F0CB00;
}
body.tab-specifications #mainarea #portlets .portlet.active h2 a:hover,
body.tab-specifications #mainarea div#portlets div.portlet.active a:hover {
  background-color: #FFE40F;
}
body.tab-specifications #mainarea #portlets .portlet.active div,
body.tab-specifications #mainarea #portlets .portlet.active ul,
body.tab-specifications #mainarea #portlets .portlet.active ul li a,
body.tab-specifications #mainarea #portlets .portlet.active ul li a:hover,
body.tab-specifications #mainarea div#portlets div.portlet.active ul,
body.tab-specifications #mainarea div#portlets div.portlet.active ul li a,
body.tab-specifications #mainarea div#portlets div.portlet.active ul li a:hover {
  background-color: #FEFCF0;
}
body.tab-specifications #actions, body.tab-specifications .results {
  background-color: #eff;
}
body.tab-specifications #actions h2, body.tab-specifications #actions h2:hover {
  background-color: #3594bb;
}
.tab-specifications h1, .tab-specifications h2, .tab-specifications h3,
.tab-specifications #application-footer strong,
.tab-specifications table.listing thead {
  background: none;
  color: #3594bb;
}
.specstatusAPPROVED             {color: green;}
.specstatusPENDINGAPPROVAL      {color: #f09;}
.specstatusPENDINGREVIEW        {color: #f09;}
.specstatusDRAFT                {color: #930;}
.specstatusDISCUSSION           {color: #930;}
.specstatusNEW                  {color: red;}
.specstatusSUPERSEDED           {color: gray;}
.specstatusOBSOLETE             {color: gray;}
.specpriorityNOTFORUS           {color: gray;}
.specpriorityUNDEFINED          {color: gray;}
.specpriorityLOW                {color: black;}
.specpriorityMEDIUM             {color: #f60;}
.specpriorityHIGH               {color: red;}
.specpriorityESSENTIAL          {color: red;}
.specdeliveryUNKNOWN            {color: gray;}
.specdeliveryNOTSTARTED         {color: gray;}
.specdeliveryDEFERRED           {color: red;}
.specdeliveryNEEDSINFRASTUCTURE {color: red;}
.specdeliveryBLOCKED            {color: red;}
.specdeliverySTARTED            {color: blue;}
.specdeliverySLOW               {color: red;}
.specdeliveryGOOD               {color: blue;}
.specdeliveryBETA               {color: #f60;}
.specdeliveryNEEDSREVIEW        {color: purple;}
.specdeliveryAWAITINGDEPLOYMENT {color: red;}
.specdeliveryIMPLEMENTED        {color: green;}
.specdeliveryINFORMATIONAL      {color: green;}

/* === Translations === */

body.tab-translations #applications {
  background: url(app-translations-wm.gif) no-repeat;
}
body.tab-translations #mainarea #portlets .portlet.active h2 a,
body.tab-translations #mainarea div#portlets div.portlet.active a {
  background-color: #3594bb;
}
body.tab-translations #mainarea #portlets .portlet.active h2 a:hover,
body.tab-translations #mainarea div#portlets div.portlet.active a:hover {
  background-color: #29B0DC;
}
body.tab-translations #mainarea #portlets .portlet.active div,
body.tab-translations #mainarea #portlets .portlet.active ul,
body.tab-translations #mainarea #portlets .portlet.active ul li a,
body.tab-translations #mainarea #portlets .portlet.active ul li a:hover,
body.tab-translations #mainarea div#portlets div.portlet.active ul,
body.tab-translations #mainarea div#portlets div.portlet.active ul li a,
body.tab-translations #mainarea div#portlets div.portlet.active ul li a:hover {
  background-color: #F1F9FC;
}
body.tab-translations #mainarea #portlets .portlet.active div {
  border-left: 4px solid #f1f9fc;
  border-right: 4px solid #f1f9fc;
}
body.tab-translations #actions, body.tab-translations .results {
  background-color: #f1d7e6;
}
body.tab-translations #actions h2, body.tab-translations #actions h2:hover {
  background-color: #bb3a84;
}
.tab-translations h1, .tab-translations h2, .tab-translations h3,
.tab-translations #application-footer strong,
.tab-translations table.listing thead {
  background: none;
  color: #bb3a84;
}
.translation code {font-weight: bold;} /* an interpolation code, such as %i */
.translation samp { /* a leading/trailing space */
  background: url(/@@/translation-space) center center no-repeat;
  padding: 0 4px; /* should be half the width of /@@/translation-space */
  white-space: pre; /* stops consecutive spaces from collapsing */
}
/* In translation forms, single-line text fields occupy nearly all of the
available width, just like multi-line fields (see "textarea" above): */
input.translate {width: 90%; max-width: 60em;}

/* === Answers === */

body.tab-answers #applications {background: url(app-answers-wm.gif) no-repeat;}
body.tab-answers #mainarea #portlets .portlet.active h2 a,
body.tab-answers #mainarea div#portlets div.portlet.active a {
  background-color: #3840be;
}
body.tab-answers #mainarea #portlets .portlet.active h2 a:hover,
body.tab-answers #mainarea div#portlets div.portlet.active a:hover {
  background-color: #5350E0;
}
body.tab-answers #mainarea #portlets .portlet.active div,
body.tab-answers #mainarea #portlets .portlet.active ul,
body.tab-answers #mainarea #portlets .portlet.active ul li a,
body.tab-answers #mainarea #portlets .portlet.active ul li a:hover,
body.tab-answers #mainarea div#portlets div.portlet.active ul,
body.tab-answers #mainarea div#portlets div.portlet.active ul li a,
body.tab-answers #mainarea div#portlets div.portlet.active ul li a:hover {
  background-color: #F4F4FC;
}
body.tab-answers #mainarea #portlets .portlet.active div {
  border-left: 4px solid #F4F4FC;
  border-right: 4px solid #F4F4FC;
}
body.tab-answers #actions, body.tab-answers .results {background-color: #eef;}
body.tab-answers #actions h2, body.tab-answers #actions h2:hover {
  background-color: #3840be;
}
.tab-answers h1, .tab-answers h2, .tab-answers h3,
.tab-answers #application-footer strong, .tab-answers table.listing thead {
  background: none;
  color: #3840be;
}

.questionstatusOPEN      {color: #000;} /* black */
.questionstatusNEEDSINFO {color: #930;} /* brown */
.questionstatusANSWERED  {color: #363;} /* grey-green */
.questionstatusSOLVED    {color: #090;} /* green */
.questionstatusEXPIRED   {color: #666;} /* dark grey */
.questionstatusINVALID   {color: #c00;} /* red */


/* --- Other --- */

ul#applicationchooser a, ul#applicationchooser a:hover {
  color: #000;
}

/* ====== Content area styles ====== */

/* -- Front pages -- */

#applications {clear: both; width: 100%;}
div#applications {padding: 1em 0; text-align: center;}
#applications span {
  display: inline-block;
  float: right;
}
#applications a img {
  margin: 0 auto;
}
.central {
  clear: left; /* Bugs FP */
  font-size: 1.125em;
  margin: 0 auto 1em;
  padding: 0.5em 0; /* FP should fit in ~750px; Bugs FP */
  width: auto;
}
.central input {
  font-size: 1em;
}
.front_page label {
  color: #303030;
  font-size: 1.2em;
}
#application-summary, #application-footer, #page-summary {
  font-size: 1.2em;
  line-height: 1.4em;
  margin-top: 0;
}
#application-footer {
  border-top: 1px dotted #999;
  clear: both;
  margin-top: 2em;
  padding-top: 1em;
}

/* -- Other pages -- */

img.mugshot {
  float: right;
  margin-left: 20px;
}
img.mugshot:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
img.mugshot {display: inline-table;}
/* Work around float bug in MSIE for Windows, while hiding from MSIE for Mac \*/
* html img.mugshot {height: 1%;}
img.mugshot {display: block;}
/* End hiding from MSIE for Mac */

div.columns {clear: both;}
div.left, div.right {width: 50%;}
div.left {clear: both; float: left;}
div.right {clear: right; float: right;}
div.left div.portlet, div.right div.portlet {
  border: dotted #cbcbcb; /* matches color of mainarea_* images */
  border-width: 1px 0 0 0;
  margin-top: 0;
  padding-top: 0.5em;
}
div.left div.portlet {
  border-width: 1px 0 0 0;
  padding: 0 0.5em 0.5em 0;
}
div.right div.portlet { /* is this necessary? */
  border-width: 1px 0 0 1px;
  padding: 0 0 0.5em 0.5em;
}
div.columns div.right div.portlet {border: none; padding: 0;} /* BlueprintsFP */

div.three.column.middle {margin-right: 1%;}
div.three.column.left, div.three.column.middle, div.three.column.right {
  clear: none;
  float: left;
  width: 33%;
}
div.three.column.left, div.three.column.right { margin: 0;}
.title {
  font-weight: bold;
}
ul.buttons {margin: 0.5em 0 0.5em 0 !important; padding: 0 !important;}
/*- without !important, gets overridden by the '#maincontent ol' etc rule -*/
ul.buttons li {display: inline; margin: 0 0 0 0;}
body.applicationhome ul.buttons {float: right; margin: 0 0 0 1em !important;}
body.applicationhome ul.buttons li {display: block; margin-right: 0;}
ul.cross-reference {font-size: 1.25em;}

ul.helplinks {float: right; margin: 0.5em;}
/* We set `display: block` to lose the bullets.  We should use
 * `list-style-type:none` but this is what our existing code does.
 */
ul.helplinks li {display: block; margin: 0 0 0 0;}

/*
li {
  margin-bottom: 0.75em;
}
*/

/* Clouds of links. */
.cloud-size-smallest {
  font-size: 0.8em;
}
.cloud-size-small {
  font-size: 1.1em;
}
.cloud-size-medium {
  font-size: 1.4em;
}
.cloud-size-large {
  font-size: 1.7em;
}
.cloud-size-largest {
  font-size: 2.0em;
}
.cloud-dark {
  color: #00f;
}
.cloud-medium {
  color: #7878ff;
}
.cloud-light {
  color: #b8b8ff;
}

.lowerCaseText {
  text-transform: lowercase
}

div.popupTitle {
  background: #ffffdc;
  padding: 0 1em;
  border: 1px black solid;
  position: absolute;
  display: none;
}

/* Search results*/

#search-results {
  margin-top: 1em;
}


#search-results ul {
  margin: 0 0 .5em 0;
  padding: 0;
  list-style-type: none;
}

#search-results ul li {
  margin-bottom: 1em;
}

#search-results ul li div.summary {
  margin-left: 17px;
  font-weight: normal;
}

#search-results ul.exact-matches {
  margin-top: 1em;
  margin-bottom: 1em;
}
#search-results ul.site-matches {
  max-width: 55em;
}

#search-results div.upper-batch-nav {
  border-top: 1px solid #d2d2d2;
  margin-top: 2.5em;
  margin-bottom: 0.5em;
}
#search-results .search-batch {
  background: #e7effc;
  margin-bottom: 10px;
}

#search-results div.lower-batch-nav {
  margin-top: 1.5em;
  border-top: 1px solid #d2d2d2;
}

#no-results {
  margin-top: 2em;
}

#no-results span.search_text {
  font-weight: bold;
}

/* From nice_pre in tales.py */
pre.wrap {
  white-space: -moz-pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}

/* Don't add styles here.
A chronologically-ordered style sheet is hard to maintain and debug.

First, see if you can solve your problem by correcting the HTML.
If not, see if there is an existing class that does what you want.
As a last resort, if you really do need extra CSS, add it to the appropriate
section of the style sheet, as shown in the table of contents.

Don't add styles here. Thanks. */