@charset "utf-8";

/* CSS Document */


html,body {
	margin-top:0px;
	margin-left:0px;
  /*height: 1000px;*/

	background-color:#000000;
  /*background-color:#CCCCCC;*/
}

#enchant-stage {
    #background-color:#CCCCCC;

    left:50%;
    /*top: 50%;*/
    top:0px;

} 

.txtload{
     margin-top: 10px;
     font-size: 30px;
     font-weight: bold;
     font-family: "Courier New", Courier, monospace;
     color: #FFF;
     cursor: default;
     border: medium;  
}

.txtitem{
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: #FFF;
    /*background-color: #f00;*/
}

.txtresult{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #FFF;
    /*background-color: #f00;*/
}

/*--------------------------------------------------------  DEFAULT CLASS ANIMATION --------------------------------------------------------*/

.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;
}


.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;
}

/*--------------------------------------------------------  DEFAULT CLASS ANIMATION --------------------------------------------------------*/

/*--------------------------------------------------------  DEFAULT ANIMATION --------------------------------------------------------*/

@-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 --------------------------------------------------------*/






















