@charset "utf-8";

/*
	File Name   : default.css
	Description : デフォルトのスタイルのリセット及び基本設定
*/


/* Universal reset
----------------------------------------------------------- */
* {
	margin: 0;
	padding: 0;
	font-style: normal;
}

html {
	overflow-y: scroll;
	font-size: 12px;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
	font-size: 100%;
}

caption, th {
	text-align: left;
}

object, embed {
	vertical-align: top;
}

hr, legend {
	display: none;
}

h1, h2, h3, h4, h5, h6 {
}

img {
	border: none;
	vertical-align: bottom;
}

li {
	list-style: none;
}

p {
	margin-bottom: 0em;
}

input {
	padding: 1px;
}

textarea {
	padding: 2px;
	overflow: auto;
	font-size: 100%;
}

option {
	padding-right: 10px;
}

acronym, abbr {
	cursor: help;
}


mark{
}


/* Link setting
----------------------------------------------------------- */
a:link,
a:visited {
	color:#A06904;
	text-decoration: none;
}

a:hover {
	color:#A06904;
	text-decoration: underline;
}

