@charset "utf-8";
/* 초기화 */

*{
	margin:0;
	padding:0;
}
body{
	font:0.75em "Noto Sans CJK KR Medium";
	color:#333;
}
li{
	list-style:none;
}
a{
	text-decoration:none;
	color:#333;
}
img{
	border:0;
	vertical-align: top;
}

.center{
	width:100%;
	max-width:640px;
	margin:0 auto;
}
#content img{
	width:100%;
	height:auto;
}

/*go top 버튼*/

.go_top{
	position:fixed;
	bottom:10px;
	right:10px;
	background:rgba(100,100,100,0.8);
	color:#fff;
	text-align:center;
	cursor:pointer;
	display:none;
	padding:15px;
	border-radius:10px;
	z-index:999;
}
.go_top:hover{
	background:#00afec;
}