body{
	color:#333333;
	margin:0px;
	background:#ffffff url(img/back.gif) repeat-y;
	}

a:link { color: #fb9e1b; text-decoration: underline }
a:visited { color: #fb9e1b; text-decoration: underline }
a:hover { color: #6699ff; text-decoration: none }

.j10 , .j12 {font-family: Osaka, "ＭＳ Ｐゴシック", "MS UI Gothic", sans-serif }
.e10 , e12 {font-family: Arial, Verdana, sans-serif }

/* 表全体のデザイン */
table.sample {
   border-spacing: 0px;   /* セルの間隔をなくす */
   font-family: Verdana,sans-serif;   /* フォントの指定 */
   font-size: smaller;   /* 文字サイズを小さめに */
}
/* セルのデザインのうちヘッダと中身の共通部分 */
table.sample th, table.sample td {
   border-width: 1px;   /* セルの枠線は太さ1ピクセル */
   border-style: solid;   /* セルの枠線は実線 */
   padding: 2px;   /* セル内側の余白は2ピクセル */
}
/* ヘッダセルのデザイン */
table.sample thead th {
   border-color: #ccffcc #7ca866 #7ca866 #ccffcc;   /* ※1 */
   background-color: #bceaa8;   /* ※1 */
}
table.sample tbody th {
   border-color: #ffffcc #aca866 #aca866 #ffffcc;   /* ※2 */
   background-color: #eceaa8;   /* ※2 */
}
/* セルのデザイン */
table.sample td {
   border-color: #ffffff #aca899 #aca899 #ffffff;   /* ※3 */
   background-color: #ecead8;   /* ※3 */
}

