
/* 掲示板リストとしての基本デザイン設定（各掲示板設定に関係のないデザイン） */

/* 初期化 */
.board_list *{
  padding: 0px;
  margin:  0px;
  line-height: 1.2em;
  line-height: 1.2em;
}

.board_list{
}
  .board_list a{
    text-decoration: none;
  }
  .board_list a:hover{
    text-decoration: underline;
  }
  .board_list .title{
    padding: 2px;
  }
    .board_list .title .icon{
      display: inline;
      vertical-align: middle;
    }
    .board_list .title h2{
      font-weight: bold;
      display: inline;
      vertical-align: middle;
    }
  .board_list .image_disp_area_top{
    display: none;
  }
  .board_list .threads{
  }
    .board_list .threads .not_found{
      display: none;
    }
    .board_list .threads .thread_list{
      list-style-type: none;
    }
      .board_list .threads .thread_list .thread{
        border-bottom: solid 1px black;
        word-break:break-all;
      }
        .board_list .threads .thread_list .thread .image{
          display: none;
        }
        .board_list .threads .thread_list .thread .subject_icon{
          padding: 0px 3px;
          display: block;
          float:left;
          height: 100%;
        }
        .board_list .threads .thread_list .thread .subject_icon img{
          position: relative;
          top: 40%;
        }
        .board_list .threads .thread_list .thread .subject{
          margin-left: 3px;
        }
        .board_list .threads .thread_list .thread .date{
          padding-right: 5px;
          display: block;
          text-align: right;
          width: 60px;
          float: right;
        }
    .board_list .threads .clear_both{
      clear: both;
    }
    .board_list .threads .more{
      font-weight: bold;
      text-align: right;
      padding: 0em 1em;
    }
  .board_list .image_disp_area_bottom{
    display: none;
  }
