* {
	margin: 0 auto;
	padding: 0;
	border: 0;
}
* {
	box-sizing: border-box;
}

#container {
	width: 800px;
	margin-top: 30px;
	display: block;
	border : 1px solid black;
	font-size: 100%;
	background-color: #fafafa;
}

h1 {
	margin-top: 30px;
	font-family: malgun gothic;
	font-size: 2em;
	color: #225c84;
	text-align: center;
	text-shadow: 2px 2px gray;
}

h2 {
	padding-top: 10px;
	padding-bottom: 10px;
	font-family: malgun gothic;
	font-size: 1.5em;
	color: #996633;
	text-align: center;
}

#scroll-left {
	width: 400px;
	height:50px;
	margin-top: 15px;
	margin-bottom: 15px;
	position: relative;
	overflow: hidden;
	background-color:
}

#scroll-left ul {
	position: absolute;
	animation-name: scroll-left;
	animation-duration: 15s;
	animation-delay: 2s;
	animation-timing-function: linear;
	animation-iteration-count: 3;
}

@keyframes scroll-left {
	from {left: 0px;}
	to {left: -200px;}
}

#box1 {
	width: 600px;
	margin-top: 15px;
	margin-bottom: 30PX;
}