/* 連番用レイアウト用css */

/* 改行しないで表示させる */
.white { white-space: nowrap }

/* レベル１・・・T．U．V． */
.ul1 { list-style-type:upper-roman }

/* レベル２・・・@．A．B． */
.ul2 { list-style-type:lower-roman }

/* レベル３・・・１．２．３． */
.ul3 { list-style-type:decimal }

/* レベル４・・・01．02．03． */
.ul4 { list-style-type:decimal-leading-zero }

/* レベル５・・・アルファベットの大文字 */
.ul5 { list-style-type:upper-alpha }

/* レベル６・・・アルファベットの小文字 */
.ul6 { list-style-type:lower-alpha }

/* レベル７・・・カタカナ　アイウエオ */
.ul7 { list-style-type:katakana }

/* レベル８・・・カタカナ　イロハ */
.ul8 { list-style-type:katakana-iroha }

/* レベル９・・・小さなマル */
.ul9 { list-style-type:circle }

/* レベル10・・・塗りつぶされた小さなマル */
.ul10 { list-style-type:disc }

/* レベル11・・・なし */
.ul11 { list-style-type:none ; list-style-position:outside }
