| 1 |
@charset 'iso-2022-jp'; |
| 2 |
@namespace h 'http://www.w3.org/2002/06/xhtml2'; |
| 3 |
|
| 4 |
/* Meta informations */ |
| 5 |
h|head { |
| 6 |
display: none; |
| 7 |
} |
| 8 |
|
| 9 |
/* Headings */ |
| 10 |
h|h { |
| 11 |
display: block; |
| 12 |
font-weight: bolder; |
| 13 |
} |
| 14 |
|
| 15 |
/* List */ |
| 16 |
h|ul, h|nl { |
| 17 |
display: block; |
| 18 |
margin-top: 1em; margin-bottom: 1em; |
| 19 |
list-style-item: disc; |
| 20 |
} |
| 21 |
h|ul h|ul, h|nl h|ul, h|ul h|nl, h|nl h|nl { |
| 22 |
margin-top: 0; |
| 23 |
margin-bottom: 0; |
| 24 |
list-style-type: circle; |
| 25 |
} |
| 26 |
h|ul h|ul h|ul, h|nl h|ul h|ul, h|ul h|nl h|ul, h|nl h|nl h|ul, |
| 27 |
h|ul h|ul h|nl, h|nl h|ul h|nl, h|ul h|nl h|nl, h|nl h|nl h|nl { |
| 28 |
list-style-type: square; |
| 29 |
} |
| 30 |
h|li { |
| 31 |
display: list-item; |
| 32 |
margin-left: 1em; |
| 33 |
list-style-position: outer; |
| 34 |
} |
| 35 |
|
| 36 |
h|ol { |
| 37 |
display: block; |
| 38 |
margin-top: 1em; margin-bottom: 1em; |
| 39 |
} |
| 40 |
h|ol > h|li { |
| 41 |
display: block; |
| 42 |
margin-left: 0; |
| 43 |
list-style-item: none; |
| 44 |
text-align: center; |
| 45 |
} |
| 46 |
h|ol > h|li + h|li:before { |
| 47 |
content: "$B"-(B"; |
| 48 |
display: block; |
| 49 |
text-align: center; |
| 50 |
} |
| 51 |
|
| 52 |
h|dl { |
| 53 |
display: block; |
| 54 |
margin-top: 1em; |
| 55 |
margin-bottom: 1em; |
| 56 |
} |
| 57 |
h|dt { |
| 58 |
display: list-item; |
| 59 |
margin-left: 1em; |
| 60 |
} |
| 61 |
h|dd { |
| 62 |
display: block; |
| 63 |
margin-left: 3em; |
| 64 |
} |
| 65 |
|
| 66 |
h|p { |
| 67 |
display: block; |
| 68 |
text-indent: 1em; |
| 69 |
} |
| 70 |
|
| 71 |
h|l { |
| 72 |
display: block; |
| 73 |
} |
| 74 |
|
| 75 |
h|dfn { |
| 76 |
font-weight: bolder; |
| 77 |
} |
| 78 |
|
| 79 |
h|table { |
| 80 |
display: table; |
| 81 |
margin-left: auto; |
| 82 |
margin-right: auto; |
| 83 |
margin-top: 1em; |
| 84 |
margin-bottom: 1em; |
| 85 |
} |
| 86 |
h|tbody { |
| 87 |
display: table-row-group; |
| 88 |
} |
| 89 |
h|tr { |
| 90 |
display: table-row; |
| 91 |
} |
| 92 |
h|th, h|td { |
| 93 |
display: table-cell; |
| 94 |
} |
| 95 |
|
| 96 |
|
| 97 |
|