
/* Selectmode¿¡¼­ ¿ÞÂÊ ¸Þ´º */
.selectmode_left {
	animation-name: selectmode_left;
	animation-duration	: 0.5s;  
	animation-iteration-count : 1;
	animation-timing-function:ease-in-out; /* ease-in  ease-out linear ease-in-out*/
	animation-direction : normal;
	animation-fill-mode : forwards;
	animation-play-state	: running;		
}
/*¿ÞÂÊ¿¡¼­ ¿À¸¥ÂÊÀ¸·Î ÇöÀç À§Ä¡±îÁö ÀÌµ¿ */
@keyframes selectmode_left 
{
	0%		{transform: translateX(-800px);} 
	100%	{transform: translateX(0);}
}


/* Selectmode¿¡¼­ ¿ÞÂÊ ¸Þ´º */
.selectmode_right {
	animation-name: selectmode_right;
	animation-duration	: 0.5s;  
	animation-iteration-count : 1;
	animation-timing-function:ease-in-out; /* ease-in  ease-out linear ease-in-out*/
	animation-direction : normal;
	animation-fill-mode : forwards;
	animation-play-state	: running;		
}
/*¿À¸¥ÂÊ¿¡¼­ ¿ÞÂÊÀ¸·Î ÇöÀç À§Ä¡±îÁö ÀÌµ¿ */
@keyframes selectmode_right 
{
	0%		{transform: translateX(800px);} /*ÇöÀç À§Ä¡¿¡¼­ 800px¶³¾îÁø °÷¿¡¼­ ½ÃÀÛÇØ¼­ */
	100%	{transform: translateX(0);} /*ÇöÀç À§Ä¡±îÁö */
}
