/*===== 共通設定 =====*/
html { margin: 0; padding: 0; }
body { width: 260px; margin: 0; padding: 0; color: #000000; font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif; }
h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, address, img, hr, div { margin: 0; padding: 0; font-style: normal; font-size: 100%; }
h2, h3, h4, h5 { font-size: 90%; clear: both; }
h6 { font-size: 80%; clear: both; }
p, address, blockquote, table { font-size: 80%; line-height: 1.5em; }
ul, ol  { font-size: 80%; line-height: 1.8em; }
dl  { font-size: 80%; line-height: 1.5em; }

img { display: block; }
hr { clear: both; visibility: hidden; }

a:link { color: #387638; }
a:visited { color: #387638;  }
a:hover { color: #387638; text-decoration: none; }
a:active { color: #387638; }
a img { border: none; }

dl { margin: 10px; }
dt { margin-top: 5px; padding-left: 12px; background: url(../images/bg_dl_li_info.gif) no-repeat left center; }
dd { padding: 0 0 5px 12px; border-bottom: 1px solid #d0c8a2; }


/*===== ファイルアイコン表示設定 =====*/
a[href $='.pdf'] { padding-right: 16px; background: url(../images/icon_pdf.gif) no-repeat center right; }
a[href $='.doc'] { padding-right: 16px; background: url(../images/icon_doc.gif) no-repeat center right; }
a[href $='.xls'] { padding-right: 16px; background: url(../images/icon_xls.gif) no-repeat center right; }

* html a.icon_pdf { /* IE-expression (attr-selector) */
background: url(../images/icon_pdf.gif) no-repeat right center; padding-right: 16px; }

* html a.icon_doc { /* IE-expression (attr-selector) */
background: url(../images/icon_doc.gif) no-repeat right center; padding-right: 16px; }

* html a.icon_xls { /* IE-expression (attr-selector) */
background: url(../images/icon_xls.gif) no-repeat right center; padding-right: 16px; }

* html a{ /* IE-expression (attr-selector) */
behavior: expression(
this.className += (this.getAttribute("href").match(".pdf")) ? " icon_pdf" : "",
this.className += (this.getAttribute("href").match(".doc")) ? " icon_doc" : "",
this.className += (this.getAttribute("href").match(".xls")) ? " icon_xls" : "",
this.style.behavior = "none"
);
}