.tablemain ul{
   
    line-height: 1.5rem;
    a{
        color: aliceblue;
        transition: .4s; 
    }
    a:hover{
        color:bisque;
		 text-decoration: underline;
    }
}
.righttojournal{
    color: var(--e-global-color-e49147f);

    line-height: 19px;
}
.obj_article_details .main_entry .author_bios{
  display:none;
}
.addvertesment{
	display: flex; justify-content: center; padding-bottom: 23px;
}
#loading {
    position: fixed;
    top: 0;
    left: 0;
	  padding-left: calc(50% - 35px);
	
    width: 100%;
    height: 100%;
    background-color:rgba(255, 255, 255, 0.9);
  
    z-index: 9999;
}
.loadingtext{
  font-size: 15px;
    margin-top: -45px;
    margin-left: 15px;
    font-weight: 700;
}
.spinner {
    margin-top: 40%;
    border: 8px solid lightskyblue;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

