@charset "EUC-JP";

/* 各要素のベースになる振る舞いを定義 */

/* ======================================
 * Reset
 *
 * -Element-
 * 01.Structure
 * 02.Text
 * 03.Hypertext
 * 04.Forms
====================================== */

/* Reset
-------------------------------------- */

* {
	margin: 0;
	padding: 0;
	zoom: 1; /* hasLayout = true */
}

address,cite,code,var,dfn,em {
	font-style: normal;
}

h1,h2,h3,h4,h5,h6,strong,caption,th {
	font-weight: normal;
}

ul,ol,dl {
	list-style: none;
}

li {
	display: list-item;
	zoom: normal; /* hasLayout = false */
}

li a {
	zoom: normal; /* hasLayout = false */
}

input,textarea {
	vertical-align: middle;
}

img {
	vertical-align: bottom;
}

img,fieldset,abbr,acronym {
	border: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption,th,td {
	text-align: left;
	vertical-align: top;
}

/* for IE6 */

a:hover {
	background-color: transparent;
}

/* for IE6 */

br {
	letter-spacing: 0;
}

/* 01.Structure
-------------------------------------- */

body {
	font-size: 12px;
	color: #666;
	line-height: 1.4;
}

/* 02.Text
-------------------------------------- */

/* Block */

/* -------- Heading */

h1,h2,h3,h4,h5,h6 {
	font-size: 12px;
}

/* -------- pre */

pre {
	white-space: -moz-pre-wrap; /* for Mozilla */
	white-space: -pre-wrap;     /* for Opera 4-6 */
	white-space: -o-pre-wrap;   /* for Opera 7 */
	white-space: pre-wrap;      /* for CSS3 */
	word-wrap: break-word;      /* for IE 5.5+ */
	background-color: #eee;
	border: #999 dotted 1px;
	padding: 0.5em;
}

/* Inline */

/* -------- strong,em */

strong {
	font-weight: bold;
}

em {
	color: #333;
}

/* -------- dfn */

dfn {
	border-bottom: 1px dotted #666;
	cursor: help;
}

/* 03.Hypertext
-------------------------------------- */

a {
	color: #D96200;
}

a:visited {
	color: #8C3F00;
}

a:hover {
	color: #FF8826;
}

/* 04.Forms
-------------------------------------- */

select,input,textarea	{
	font-size: 12px;
	color:#333;
}

option { 
	padding-right: 10px; 
}

input,textarea {
	padding: 0.1em 5px; 
}

input {
	line-height: 1.2;
}

form label {
	cursor: pointer;
}

/* for Safari */

html[xmlns*=""] body:last-child form label {
	cursor: auto;
}

