@charset "utf-8";

/*--------------------------------------
  Default Style Sheet
  Last Update 2006-08-17

  - Universal selector
  - Structure Module
  - Text Module
  - Hypertext Module
  - List 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;
	background-color: white;
}

/*--------------------------------------
  Text Module
---------------------------------------*/

p,
pre,
address,
cite {
	font-size: 90%;
	line-height: 1.5;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	line-height: 1.2;
	margin: 0;
}

h1 {
	font-size: 130%;
}

h2 {
	font-size: 110%;
}

h3 {
	font-size: 100%;
}

h4 {
	font-size: 95%;
}

h5 {
	font-size: 90%;
}

h6 {
	font-size: 90%;
}

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: 90%;
	color: #455c5d;
	content: attr(title);
	background-color: #e0e4e5;
	margin: 2px;
	padding: 0.1em 16px;
}

blockquote[cite]::after {
	display: block;
	font-size: 90%;
	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;
}

strong {
	color: #FF4500;
}

/*--------------------------------------
  Hypertext Module
---------------------------------------*/

a:link {
	color: #005585;
}

a:visited {
	color: #485270;
}

a:hover {
	color: #b83800;
}

/*--------------------------------------
  List Module
---------------------------------------*/

ul,
ol {
	margin: 0 0 0 1em;
	padding: 0;
}

dl {
	margin:0;
}

li,
dt,
dd {
	font-size: 90%;
	line-height:1.5;
}

dd {
	padding-left:1em;
}

li li,
li p,
li pre,
li dt,
li dd,
dd li,
dd p,
dd pre,
dd dt,
dd dd {
	font-size:100%;
}

li ul,
li ol,
li dl,
li p,
dd ul,
dd ol,
dd dl,
dd p {
	margin: 0.4em 8px;
}

/*--------------------------------------
  Forms Module
---------------------------------------*/

form {
	clear: both;
	margin: 0;
  padding: 0;
}


fieldset {
	border: none;
	padding: 1px 0;
}

legend {
	display: none;
	font-size: 85%;
	background-color: #e8e8e8;
	padding: 0.1em 8px;
}

input,
textarea {
	font-family: Arial, Helvetica, "ヒラギノ角ゴ Pro W3",  sans-serif;
	background-color: white;
	border: none;
	border: 1px solid #ccc;
	padding: 0.1em 8px;
}

input:hover,
textarea:hover {
	background-color: #eaeeef;
	border-top: 1px solid #b9c3c8;
	border-left: 1px solid #b9c3c8;
}

input:focus,
textarea:focus {
	background-color: #e2e6e7;
	border-top: 1px solid #a7abac;
	border-left: 1px solid #a7abac;
}

textarea {
	padding: 0.4em 8px;
}

p input {
	margin-left: 8px;
}

input.radio {
	background-color: transparent;
	border: none;
}

input.checkbox {
	background-color: transparent;
	border: none;
}

/*--------------------------------------
  Tables Module
---------------------------------------*/

table {
	background-color: white;
  border-collapse:collapse;
	border-spacing:0;
}

caption {
	font-size: 90%;
}

td,
th {
	font-size: 90%;
	line-height: 1.5;
  text-align: left;
}

td p {
	font-size: 100%;
}

th {
	font-weight: normal;
}

/*--------------------------------------
  Image Module
---------------------------------------*/

img {
	vertical-align: bottom;
	border:0;
}

/*--------------------------------------
  Object Module
---------------------------------------*/

object,
embed {
	margin: 0;
}

