@charset "UTF-8";

/* ===================================
	File Name   : reset.css
	Description : Reset CSS
	Editors     : NS Sakurai
	Create Date : 2010/07/05

	Update Description :
		2011/04/21 Modify - Value Reset Setting Update
		2011/04/08 Appended - object (For Firefox4 FLASH)
		2010/07/05 File Create
====================================== */

/*========== Style Contents ==========

	1. Primary Selectors Reset
	2. Individual Reset
		- List Mark Reset
	 	- Image Tag
	 	- Form Selectors
		- Table Selectors

====================================== */


/*===== ■1. Primary Selectors Reset =====*/
body,
div,
dl,dt,dd,
ul,ol,li,
pre,code,form,fieldset,legend,input,textarea,
p,a,blockquote,
th,td {
	margin: 0;
	padding: 0;
}

table,th,td,
dl,dt,dd,
form {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 1.4em;
	font-weight: normal;
	font-style: normal;
	font-size: 100%;
	text-align: left;
}

h1,h2,h3,h4,h5,h6 {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-weight: normal;
}

address,
caption,
cite,code,dfn,
em,strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}




/*===== ■2. Individual Reset =====*/
/* List Mark Reset */  
ul,ol {
	list-style: none;
}

/* Image Tag */  
img {
	vertical-align: bottom;
	display: block;
	border: 0;
}

/* Form Selectors */  
button, fieldset, form, input, label, legend, select, textarea {  
	margin: 0px 3px 3px 1px;  
	padding: 0px 1px 1px;  
	vertical-align: middle;  
}  

input,textarea,select {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

input,textarea,select {
	*font-size: 100%;
}

/* Table Selectors */  
table {
	border-collapse: collapse;
	border-spacing: 0;
}

th, td {  
	font-size: inherit;
	text-align: left;
}  

/* Other Selectors */  
object {
	outline: none;
}

sup {
	vertical-align: text-top;
}

sub {
	vertical-align: text-bottom;
}

q:before,q:after {
	content:'';
}

abbr,acronym {
	border: 0;
	font-variant: normal;
}

fieldset {
	border: 0;
}





