/* 초기화 */
*{
    margin:0;
    padding:0;
    font-family: 'Noto Sans KR', sans-serif;
}
li{
    list-style:none;
}
a:link, a:visited{
    text-decoration: none;
	color:#333;
}

a:hover, a:focus{
	text-decoration:none;
}

header,nav,footer,section{
    display:block;
}
img{
    border:none;
}
button{
    cursor: pointer;
}

/* 전체 */
#wrap, #header_wrap, #container, #footer_wrap{
    width:100%;
}

