$(document).ready(function(){ 
    
    // Remove the margin for even list items
    $('ul.authors li:nth-child(even)').css("margin-right", 0);

    
});