@charset "utf-8";
/* CSS Document */


/*Table Back color*/
.backColor {
background-color:#ecedee;
}
/*Table Back color*/

/*Activities till yet box*/

li.icon {    
	border:1px solid #ccc;
	margin-bottom:10px;
	padding-bottom:25px;
	padding-left:5px;
	padding-right:5px;
	padding-top:5px;
	border-radius:5px;
	background-color:#f1faff;
}
.dateRight {
color:#0073b7; 
font-weight:500;
float:right;
}
/*Activities till yet box*/

/*flash icon*/
 .flash {
  -webkit-animation-name: flash;
  animation-name: flash;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  color:#0073b7;
  }
  @-webkit-keyframes flash {
  0%, 50%, 100% {
  opacity: 1;
  }
  
  25%, 75% {
  opacity: 0;
  }
  }
  
  @keyframes flash {
  0%, 50%, 100% {
  opacity: 1;
  }
  
  25%, 75% {
  opacity: 0;
  }
  } 
/*flash icon end*/