1/**************************************************************
2	ボタンページ用スタイルシート
3
4 **************************************************************/
5
6BODY
7{
8	font-size			: 10pt;
9	background-color	: #fff;
10	color				: #111;
11}
12
13
14/*============================================================
15	ボタン用テーブル設定
16 *============================================================*/
17
18TABLE
19{
20	background-color	: #cdf;
21	border-color		: #88a;
22	border-width		: 1pt;
23	border-style		: solid;
24
25	width				: 100%;
26        height				: 100%;
27	margin				: 2px 0px 2px 0px;
28	padding				: 0px;
29}
30
31
32TH
33{
34	color				: #333;
35	text-align			: center;
36	font-weight			: bold;
37	font-size			: 11px;
38
39	background-color	: #abf;
40	border-color		: #def #668 #668 #def;
41	border-width		: 1px;
42	border-style		: solid;
43}
44
45
46TD
47{
48	color				: #333;
49	text-align			: center;
50	font-weight			: bold;
51	font-size			: 11px;
52
53	background-color	: #bcf;
54	border-color		: #def #668 #668 #def;
55	border-width		: 1px;
56	border-style		: solid;
57}
58
59
60/*============================================================
61	リンク表示設定
62 *============================================================*/
63
64A
65{
66	display				: block;
67	padding				: 2px;
68	margin				: 0px;
69
70	text-decoration		: none;
71}
72
73A:VISITED
74{
75}
76
77A:HOVER
78{
79	background-color	: #fe4;
80	text-decoration		: underline;
81}
82
83A:ACTIVE
84{
85	color				: #f00;
86}
87