@charset "utf-8";

/* CSS Document */



body {
	margin-top:0px;
	margin-left:0px;
	background-color:#000;
}

#enchant-stage {
	#background-color:#CCCCCC;
	width:320px;
	height:420px;
	left:50%;
	margin-left:-160px;
}

.txtload{
	margin-top:10px;
	font-size:30px;
	font-weight:bold;
	font-family:"Courier New", Courier, monospace;
	color:#fff;
	cursor:default;
	border:medium;	
}

.txtloading{

	margin-top:10px;
	font-size:18px;
	font-weight:bold;
	font-family:"Courier New", Courier, monospace;
	text-align:center;
	color:#000;
	cursor:default;
	border:medium;
  /*background-color: #f00;*/
}

.txtscore2{

  margin-top:10px;
  font-size:40px;
  font-weight:bold;
  font-family:"Courier New", Courier, monospace;
  text-align:center;
  color:#009;
  cursor:default;
  border:medium;
  /*background-color: #f00;*/
}

.txtscore{

  margin-top:10px;
  font-size:18px;
  font-weight:bold;
  font-family:"Courier New", Courier, monospace;
  text-align:center;
  color:#3E3A39;
  cursor:default;
  border:medium;
  /*background-color: #f00;*/
}


.loading{

	position:absolute;
	text-align:center;

	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;

	background: -moz-linear-gradient(top, #a8cee0 0%, #e3edf7 44%, #e8eaed 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a8cee0), color-stop(44%,#e3edf7), color-stop(100%,#e8eaed)); /* Chrome,Safari4+ */	

	
	display:block;
	width:200px;
	height:50px;
	opacity:0.8;
}



.button{
	position:absolute;
	text-align:center;

	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background: -moz-linear-gradient(top, #a8cee0 0%, #e3edf7 44%, #e8eaed 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a8cee0), color-stop(44%,#e3edf7), color-stop(100%,#e8eaed)); /* Chrome,Safari4+ */	

	display:block;
	width:200px;
	height:50px;
	opacity:0.9;
}



.txtbutton{
	margin-top:10px;
	margin-left:10px;
	font-size:14px;
	font-weight:bold;
	font-family:"Courier New", Courier, monospace;
	color:#000;
	cursor:default;
	border:medium;
}


/*--------------------------------------------------------  DEFAULT CLASS ANIMATION --------------------------------------------------------*/

.moveupdown{
  -webkit-animation-name: upmovedown;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-delay: 0s;


  -moz-animation-name: upmovedown;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: normal;
  -moz-animation-duration: 1.5s;
  -moz-animation-delay: 0s;
}

.moveupdown2{
  -webkit-animation-name: upmovedown;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-delay: 0s;


  -moz-animation-name: upmovedown;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: normal;
  -moz-animation-duration: 1.2s;
  -moz-animation-delay: 0s;
}

.moveup{
  -webkit-animation-name: upmove;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-delay: 0s;


  -moz-animation-name: upmove;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: normal;
  -moz-animation-duration: 0.5s;
  -moz-animation-delay: 0s;
}

.fadein{

  -webkit-animation-name: fadeshow;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0s;


  -moz-animation-name: fadeshow;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: normal;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0s;
}

.fadeout{
  -webkit-animation-name: fadehide;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0s;

  -moz-animation-name: fadehide;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: normal;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0s;
}


.sizescale{
  -webkit-animation-name: zoomin;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0s;


  -moz-animation-name: zoomin;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: normal;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0s;
}

/*--------------------------------------------------------  DEFAULT CLASS ANIMATION --------------------------------------------------------*/

/*--------------------------------------------------------  DEFAULT ANIMATION --------------------------------------------------------*/

@-webkit-keyframes zoomin {
  from { -webkit-transform:scale(0,0) }
  
  40%{
	   -webkit-transform:scale(1,1);
  }
  
  70%{
	  -webkit-transform:scale(0.9,0.9);
  }  

  to{ 
	  -webkit-transform:scale(1,1);
	 * -webkit-animation-timing-function: ease-in-out;
  }
}

@-moz-keyframes zoomin {
  from { -moz-transform:scale(0,0); }
  
  40%{
	   -webkit-transform:scale(1,1);
  }
  
  70%{
	  -webkit-transform:scale(0.9,0.9);
  } 
  
  to{ 
	  -moz-transform:scale(1,1);
	  *-moz-animation-timing-function: ease-in-out;
  }
}


@-webkit-keyframes upmovedown {
  from { top:425px; }
  
  40%{
	 top:260px;
  }
  
  70%{
	 top:260px;
  } 

  to{ 

  top:425px;

  -webkit-animation-timing-function: ease-in;

  -moz-animation-timing-function: ease-in;

  }
}

@-moz-keyframes upmovedown {
  from { top:425px; }
  
  40%{
	 top:260px;
  }
  
  70%{
	 top:260px;
  }     

  to{ 

  top:425px;

  -webkit-animation-timing-function: ease-out;

  -moz-animation-timing-function: ease-out;

  }
}

@-webkit-keyframes upmove {
  from { top:88px; }

  to{ 

  top:20px;

  -webkit-animation-timing-function: ease-in;

  -moz-animation-timing-function: ease-in;

  }
}

@-moz-keyframes upmove {
  from { top:88px; }

  to{ 

  top:20px;

  -webkit-animation-timing-function: ease-in;

  -moz-animation-timing-function: ease-in;

  }
}


@-webkit-keyframes fadeshow {

  from { opacity:0; }

  to{ 
    opacity:1; 
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
  }

}

@-moz-keyframes fadeshow {

  from { opacity:0; }

  to{ 
    opacity:1; 
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
  }

}


@-webkit-keyframes fadehide {
  from { opacity:1; }

  to{ 
    opacity:0; 
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
  }

}



@-moz-keyframes fadehide {
  from { opacity:1; }

  to{ 
    opacity:0; 
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
  }	

}


/*--------------------------------------------------------  DEFAULT ANIMATION --------------------------------------------------------*/






















