You could use DocumentViewer's SetMargin function to set it to 0 and then disable the shadow on elements with the pageContainer class.
The code would look like:
$(document).on('viewerLoaded', function() {
readerControl.docViewer.SetMargin(0);
});
And then in docViewer.css look for the .pageContainer css style and remove the box-shadow lines.