@charset "utf-8";
/* CSS Document */

.htable {
	height:487;
	width:400;	
}

.htable td.mgap{
	height:20;	
	vertical-align:central;
}
.displayMe{
	font-size:2vmin;
  text-shadow: 2px 2px 3px #FFF;
}


.lowtext{
	font-size:14px;
}

.my-line td.mline {
	width:40px;
	cursor: pointer; 
	cursor: hand; 
}

.my-line td.sline {
	width:2px;	
}
.my-line {
	height:400px;	
}

.navbtn {
  font-size:11px;
  color:#000;
  text-shadow: 0 0 3px #000;
  -webkit-animation:fadeOut ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeOut ease-in 1;
  animation:fadeOut ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
  display: block;
  width: 100%;
}

.navbtn:hover {
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
  opacity:1;  /* make things invisible upon start */
}
/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

@-webkit-keyframes fadeOut { from { opacity:1; } to { opacity:0.01; } }
@-moz-keyframes fadeOut { from { opacity:1; } to { opacity:0.01; } }
@keyframes fadeOut { from { opacity:1; } to { opacity:0.01; } }

