1/*****************************************************************************
2	メインページ用スタイルシート
3
4 *****************************************************************************/
5
6body
7{
8	font-family			: Arial;
9	font-size			: 10pt;
10
11	background-color	: #fff;
12	color				: #111;
13}
14
15
16/*============================================================
17	タイトル
18 *============================================================*/
19
20div.title
21{
22	font-family			: Arial;
23	font-size			: 20pt;
24	font-weight			: bold;
25
26	text-align			: left;
27
28	margin				: 10px 0px 10px 50px;
29}
30
31div.version
32{
33	font-family			: Arial;
34	font-size			: 12pt;
35	font-weight			: bold;
36	color				: #f00;
37
38	text-align			: right;
39	margin				: 0px 30px 20px 0px;
40}
41
42
43/*============================================================
44	注意書き
45 *============================================================*/
46
47p.confidential
48{
49	font-family			: Arial;
50	font-size			: 10pt;
51	font-weight			: bold;
52	color				: #000;
53
54	text-align			: left;
55	margin				: 0px 20px 10px 20px;
56}
57
58p.caution-en
59{
60	font-family			: Arial;
61	font-size			: 8pt;
62	font-weight			: normal;
63	color				: #333;
64	text-align			: left;
65	margin				: 0px 20px 20px 20px;
66}
67
68p.caution-jp
69{
70	font-family			: Arial;
71	font-size			: 8pt;
72	font-weight			: bold;
73	color				: #000;
74	background-color	: #fe0;
75	text-align			: left;
76	margin				: 0px 0px 4px 10px;
77	padding				: 4px 4px 4px 30px;
78}
79
80p.copyright
81{
82	font-family			: Arial;
83	font-size			: 8pt;
84	font-weight			: bold;
85	color				: #000;
86	text-align			: right;
87	margin				: 0px 10px 0px 0px;
88}
89
90p.browser
91{
92	font-family			: Arial;
93	font-size			: 9pt;
94	font-weight			: bold;
95	color				: #e0f;
96	text-align			: right;
97	margin				: 20px 10px 0px 0px;
98}
99
100hr
101{
102	height				: 4px;
103	color				: #48f;
104	margin				: 4px 0px 4px 10px;
105}
106
107
108/*============================================================
109	見出し
110 *============================================================*/
111
112h1
113{
114	font-family			: Arial;
115	font-size			: 12pt;
116	font-weight			: bold;
117	text-decoration		: underline;
118	color				: #000;
119	text-align			: left;
120	margin				: 10px 0px 20px 20px;
121}
122
123h2
124{
125	font-family			: Arial;
126	font-size			: 12pt;
127	font-weight			: bold;
128	text-decoration		: none;
129	margin				: 20px 0px 0px 40px;
130}
131
132
133/*============================================================
134	更新内容テーブル
135 *============================================================*/
136
137table
138{
139	text-align			: left;
140	border-width		: 0pt;
141	margin-left			: 70px;
142	margin-right		: auto;
143}
144
145td
146{
147	font-family			: Arial;
148	font-size			: 10pt;
149	font-weight			: normal;
150}
151
152
153/*============================================================
154	説明記述
155 *============================================================*/
156
157p
158{
159	font-family			: Arial;
160	font-weight			: normal;
161	font-size			: 10pt;
162
163	margin				: 0px 8px 10px 20px;
164	padding				: 0px;
165}
166
167pre
168{
169	font-family			: "Courier New", monospace;
170	font-weight			: normal;
171	font-size			: 10pt;
172
173	margin				: 0px 20px 10px 30px;
174	padding				: 2px 4px 2px 4px;
175
176	background-color	: #eee;
177}
178
179ul
180{
181	font-family			: Arial;
182	font-weight			: normal;
183	font-size			: 10pt;
184
185	margin				: 0px 8px 10px 40px;
186	padding				: 0px;
187}
188
189ol
190{
191	font-family			: Arial;
192	font-weight			: normal;
193	font-size			: 10pt;
194
195	margin				: 0px 8px 10px 50px;
196	padding				: 0px;
197
198	list-style-type		: decimal;
199}
200
201li
202{
203	margin				: 0px 8px 2px 16px;
204	padding				: 0px;
205}
206
207
208/*============================================================
209	リンク
210 *============================================================*/
211
212a
213{
214	color				: inherit;
215	background-color	: inherit;
216	text-decoration		: none;
217}
218
219a:visited
220{
221	color				: inherit;
222}
223
224a:hover
225{
226	background-color	: #fe4;
227	text-decoration		: underline;
228}
229
230a:active
231{
232	color				: #ff0000;
233}
234