/*reset.css*/

@charset "utf-8";


*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	}

/* 제목요소 */
h1, h2, h3, h4, h5, h6 {  
	font-size:100%;   /*100%=16px=12pt=1em(글꼴 크기 : 보통일 경우) */
	font-weight:normal;   
	} 

fieldset, img, abbr,acronym { border:0 none; } 

ol, ul { list-style:none; }

table {
	border-collapse: separate; 
	border-spacing:0;
	border:0 none;
	}
caption, th, td {
	text-align:left;
	font-weight: normal;
	border:0;
}

address, caption, strong, em, cite {
	font-weight:normal;
	font-style:normal;
	}
ins { text-decoration:none; }
del { text-decoration:line-through; }

blockquote:before, blockquote:after, q:before, q:after { content:""; }
blockquote,q { quotes:"" ""; }

hr { display:none; }


a{text-decoration:none; color:#111;}