/*

      Add on animations etc.
        wheninvented 
*/

.leftsidebar  {
    overflow: hidden;
    border: 2px solid #DDD;
    width: 80pt;
    margin: auto;
    z-index: 20;
     text-align: center;
    /* position: fixed;  
    top: 200px;
    left: 4px;  */
    /* font-size: normal;  */
    /* font-weight: bold;  */
    padding: 4px;
}


.element-animation{
     opacity:0;
    
  animation: animationFrames ease 8s 5s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  animation-fill-mode:forwards; /*when the spec is finished*/
  -webkit-animation: animationFrames ease 8s 5s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/ 
  -moz-animation: animationFrames ease 8s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -moz-animation-fill-mode:forwards; /*FF 5+*/
  -o-animation: animationFrames ease 8s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -o-animation-fill-mode:forwards; /*Not implemented yet*/
  -ms-animation: animationFrames ease 8s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
  -ms-animation-fill-mode:forwards; /*IE 10+*/
  
}

@keyframes animationFrames{
  0% {
    opacity:0;
    transform:  translate(0px,150px)  ;
  }
  100% {
    opacity:1;
    transform:  translate(0px,0px)  ;
  }
}

@-moz-keyframes animationFrames{
  0% {
    opacity:0;
    -moz-transform:  translate(0px,150px)  ;
  }
  100% {
    opacity:1;
    -moz-transform:  translate(0px,0px)  ;
  }
}

@-webkit-keyframes animationFrames {
  0% {
    opacity:0;
    -webkit-transform:  translate(0px,150px)  ;
  }
  100% {
    opacity:1;
    -webkit-transform:  translate(0px,0px)  ;
  }
}

@-o-keyframes animationFrames {
  0% {
    opacity:0;
    -o-transform:  translate(0px,150px)  ;
  }
  100% {
    opacity:1;
    -o-transform:  translate(0px,0px)  ;
  }
}

@-ms-keyframes animationFrames {
  0% {
    opacity:0;
    -ms-transform:  translate(0px,150px)  ;
  }
  100% {
    opacity:1;
    -ms-transform:  translate(0px,0px)  ;
  }
}

/*  
  *
  *    onthisday box
  *    
*/

.reflect {
  width: 120px;
  text-align: center;
  font-size: 16px;
  margin-top: 2px;
}

#news_ticker {
	overflow: hidden;
    height: 100px;
    width: 120px;
	position: relative;
    padding:0px;
    margin-top: 5px;
    border: 1px solid lightgrey
    
} 
#news_ticker span {
	float: left;
	position: relative;
}
 
/*  create variables  */
     /*  Android Boat browser no work & IE11 no support */
#news_ticker {
    --myanim: ticker 50s cubic-bezier(0.6, 0, 0, 0) infinite;
}
 
#news_ticker ul {
  
	list-style-type: decimal;
	float: left;
 	padding-left: 2px;  
	animation: var(--myanim);
	-webkit-animation: var(--myanim);
/*  	-webkit-animation: ticker 50s cubic-bezier(0.6, 0, 0, 0) infinite;  */ 
	-ms-animation: ticker 50s cubic-bezier(0.6, 0, 0, 0) infinite;
	-moz-animation: var(--myanim);
	-o-animation: var(--myanim);  
  animation-delay: 5s;
}

#news_ticker ul:hover {
/* 	-webkit-animation-play-state: paused;  */
	animation-play-state: paused;
}
#news_ticker li {
 
      line-height:16px;
      height: 95px;
      overflow: hidden;
      /* position: relative;  */ 
      /*  move text left */ 
      /* left: -5px;  */ 
      font-size: 12px;
      margin: 0px;  
    margin-bottom: 5px;}

#news_ticker a {
	color: #000;
	text-decoration: none;
	font-size: 13px;
}