#container-story08{
		position:absolute;
		width:600px;
		height:600px;
	}
	#start_bg{
		width:610px;
		height:610px;
		background:url(../img/story08/start_bg.png);
	}
	#start_hand{
		width:511px;
		height:196px;
		background:url(../img/story08/start_hand.png);
		position:absolute;
		left:48px;
		top:415px;
	}
	#start_icon{
		left:5px;
	}
	#start_hello_world{
		position:absolute;
		font-size:18px;
		color:#06a615;
		left:199px;
		top:224px;
		border-right: .1em solid black;
	    white-space:nowrap;
	    overflow:hidden;
	    text-shadow:0 0 5px #06a615;
	}
	.hello_world{
		-webkit-animation: typing 5s steps(8, end), /* # of steps = # of characters */
	                        blink-caret 1s step-end infinite;
	}
	#start_start{
		position:absolute;
		font-size:18px;
		color:#06a615;
		left:327px;
		top:282px;
		border-right: .1em solid black;
	    white-space:nowrap;
	    overflow:hidden;
	    text-shadow:0 0 5px #06a615;
	}
	.start_start{
		-webkit-animation: typingStart 2s steps(5, end), /* # of steps = # of characters */
	                        blink-caret 1s step-end infinite;
	}

	#start_lang01{
		position:absolute;
		font-size:16px;
		color:#06a615;
		left:210px;
		top:330px;
		text-align: center;
		border-right: .1em solid black;
	    white-space:nowrap;
	    overflow:hidden;
	    text-shadow:0 0 5px #06a615;
	}
	.start_lang01{
		-webkit-animation: typingEN 5s steps(30, end), /* # of steps = # of characters */
	                        blink-caret 1s step-end infinite;
	}

	#start_lang02{
		position:absolute;
		font-size:16px;
		color:#06a615;
		left:230px;
		top:350px;
		text-align: center;
		border-right: .1em solid black;
	    white-space:nowrap;
	    overflow:hidden;
	    text-shadow:0 0 5px #06a615;
	}
	.start_lang02{
		-webkit-animation: typingENS 4s steps(20, end), /* # of steps = # of characters */
	                        blink-caret 1s step-end infinite;
	}

	/*typing*/
	@-webkit-keyframes typing {
    from { width: 0 }
    to { width:105px }
	}

	@-webkit-keyframes typingStart {
    from { width: 0 }
    to { width:55px }
	}

	@-webkit-keyframes typingEN {
    from { width: 0 }
    to { width:230px }
	}

	@-webkit-keyframes typingENS {
    from { width: 0 }
    to { width:180px }
	}
	@-webkit-keyframes blink-caret {
	    from, to { border-color: transparent }
	    50% { border-color: #06a615 }
	}