@charset "utf-8";

/* ===================================
	File Name   : reset.css
	Description : Reset CSS
====================================== */

/*========== Style Contents ==========

	1. Primary Selectors Reset
	2. Individual Reset
		- List Mark Reset
	 	- Image Tag
	 	- Form Selectors
		- Table Selectors

====================================== */





/*===== ■1. Primary Selectors Reset =====*/
body,
div,
ul,ol,li,
h1,h2,h3,h4,h5,h6,
p,a,em,
img,
table,th,td,
dl,dt,dd,
form,
address,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 150%;
	font-weight: normal;
	font-style: normal;
	font-size: 100%;
	text-align: left;
}





/*===== ■2. Individual Reset =====*/
/* List Mark Reset */  
ul {
	list-style: none;
}

/* Image Tag */  
img {
	vertical-align: bottom;
	border: 0;
}

/* Form Selectors */  
button, fieldset, form, input, label, legend, select, textarea {  
	margin: 0px 1px;  
	padding: 0px 1px; 
	font-size: 100%;
	vertical-align: middle;  
}

input[type="text"] { padding: 1px;}
input[type="checkbox"],
input[type="radio"] { margin-right: 5px;}

textarea { padding: 3px;}


/* Table Selectors */  
table, th, td {  
	font-size: inherit;
	border-collapse: collapse;
	border-spacing: 0;
}  





