@charset "SHIFT_JIS";
/*
File name: reset.css
Date: 2010.11.10

Table of Contents:
[1] display
[2] various blank resets
[3] list-style resets
[4] border resets
[5] font resets
[6] overflow resets
[7] various align resets
[8] cursor resets
[9] link resets
*/


/*========================================
[1] display
========================================*/
ins,del {
	display: block;
}
p ins,p del,ul ins,ul del,ol ins,ol del,dl ins,dl del,table ins,table del {
	display: inline;
}

/*========================================
[2] various blank resets
========================================*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,p,blockquote,table,thead,tbody,tfoot,caption,th,td {
	margin: 0;
	padding: 0;
}

/*========================================
[3] list-style resets
========================================*/
ol,ul {
	list-style: none;
}

/*========================================
[4] border resets
========================================*/
table {
	border-collapse: collapse;
	border-spacing: 0;
}
fieldset,img{
	border: 0 none;
}
abbr,acronym {
	border-bottom: 1px dashed;
}

/*========================================
[5] font resets
========================================*/
h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
}
h1,h2,h3,h4,h5,h6,em,strong {
	font-weight: bold;
}
em {
	font-style: normal;
}
address,caption,cite,code,dfn,th,var {
	font-style: normal;
	font-weight: normal;
}
table {
	font-size: 100%;
}
select,input,textarea {
	font-size: 100%;
	font-weight: bold;
}
var,code,samp,kbd {
	font-family: monospace;
}

/*========================================
[6] overflow resets
========================================*/
html {
	overflow: scroll;
	overflow: -moz-scrollbars-vertical;
	/*overflow-x: scroll;*/
}
textarea {
	overflow: auto;
}

/*========================================
[7] various align resets
========================================*/
caption,th {
	text-align: left;
}
img,input {
	vertical-align: middle;
}

/*========================================
[8] cursor resets
========================================*/
a,input[type="submit"] {
	cursor: pointer;
}

/*========================================
[9] link resets
========================================*/
a:link,a:visited,a:hover,a:active {
	text-decoration: none;
}
