/* nt_hover CSS */

/* 表作成  */
table.example {
width: 470px; /* 表の幅 */
border-bottom: 2px #cacaca solid; /* 大枠下の境界線 */
border-collapse: collapse;
font-size: 90%;
text-align: center;
color: #04045e;
}

/* タイトル  */
table.example caption {
padding-bottom: 2px; /* 表タイトルの下パディング */
}

/*  セル  */
table.example th,
table.example td {
/* width: 20%; */ /* セルの幅（セルの幅を均等にする場合） */
padding: 5px 8px; /* セルのパディング（上下、左右） */
border-bottom: 1px #ffffff solid; /* セル下の境界線 */
border-top: 1px #ffffff solid; /* セル上の境界線 */
}

/*  見出しセル  */
table.example thead th {
background-color: #339933; /* 見出しセルの背景色 */
color: #ffffff;
text-align: center;
}

/*  フッタセル  */
table.example tfo-ot td {
background-color: #ffffff; /* フッタセルの背景色 */
}

/*  表本体  */
table.example tbody {
background-color: #ffffff; /* 本体の背景色 */
}

/*  マウスオーバー時  */
table.example tbody tr:hover {
background-color: #ffff00; /* 行の背景色 */
}

