﻿@charset "utf-8";
/*--------------------------------------
  Default Style Sheet
  Last Update 2006-04-11

  - Universal selector
  - Structure Module
  - Text Module
  - Hypertext Module
  - List Module
  - Edit Module
  - Forms Module
  - Tables Module
  - Image Module
  - Object Module

---------------------------------------*/

/*--------------------------------------
  Universal selector
---------------------------------------*/

*{
/*	color: black;*/
/*	font-size: 100%;*/
/*	background-color: transparent;*/
	margin:	 0;
	padding : 0;
}
	
/*--------------------------------------
  Structure Module
---------------------------------------*/

body {
/*	font-family: Arial, Helvetica, sans-serif;*/
/*	line-height: 1.5;*/
	background-color: white;
	padding-bottom: 20px;
}

/*--------------------------------------
  Text Module
---------------------------------------*/
p,
pre,
address,
cite {
	font-size: 80%;
	margin: 0.8em 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	line-height: 1.2;
	margin: 1em 16px;
}

h1 {
	font-size: 170%;
}

h2 {
	font-size: 130%;
}

h3 {
	font-size: 110%;
}

h4 {
	font-size: 90%;
}

h5 {
	font-size: 80%;
}

h6 {
	font-size: 80%;
}

pre {
	width: auto;
	_width: 90%; /*for IE*/
	overflow: auto;
	font-size: 75%;
	letter-spacing: 1px;
	color: #3d4263;
	background-color: #f5f5f5;
	border: 1px solid #cccccc;
	padding: 8px 16px;
}

pre[title]::before {
	display: block;
	color: black;
	content: attr(title);
	margin-bottom: 0.8em;
}

blockquote {
	display: block;
	background-color: #eaeeef;
	border-top: 1px solid #b9c3c8;
	border-left: 1px solid #b9c3c8;
	margin: 0.8em 24px;
	padding: 1px;
}

blockquote * {
	color: #434755;
}

blockquote[title]::before {
	display: block;
	font-size: 80%;
	color: #455c5d;
	content: attr(title);
	background-color: #e0e4e5;
	margin: 2px;
	padding: 0.1em 16px;
}

blockquote[cite]::after {
	display: block;
	font-size: 80%;
	color: #333333;
	text-align: right;
	content: attr(cite);
	margin: 0;
	padding: 0.1em 16px;
}

cite {
	display: block;
	color: #333333;
	font-style: normal;
	text-align: right;
}

em {
	font-style: normal;
	font-weight: bold;
}

code {
	font-family: "Osaka－等幅", monospace;
	color: #3d4263;
}

kbd {
	font-family: "Osaka－等幅", monospace;
	text-transform: uppercase;
	background-color: #f5f5f5;
	border: 1px solid #6a8eaa;
	padding: 0 0.4em;
}

kbd.accesskey {
	padding: 0 0.2em;
}

/*--------------------------------------
  Hypertext Module
---------------------------------------*/

a {
	text-decoration: under-line;
}

a:link {
	color: #00f;
}

a:visited {
	color: #606;
}

a:hover {
	color: #f36;
	text-decoration: none;
}

/*--------------------------------------
  Tables Module
---------------------------------------*/
table {
	background-color: #fff;
	border-width: 0;
	border-collapse : collapse;
}

td,
th {
	color: #000;
}

th {
	font-weight: normal;
	color: #536066;
	background-color: #fff;
	border-width: 0;
}

td {
	background-color: #fff;
	border-width: 0;
}
/*--------------------------------------
  Image Module
---------------------------------------*/

img {
	margin : 0;
	padding : 0;
	border : 0;
}

