/* The following CSS calls put a white background behind the main column and adjusts the web part drop shadows  */

/* This reduces the width of the edit icon column  */
div#leftCol td.ms-vb-icon {
    padding: 0px;
}
div#leftCol td.ms-vb-icon img {
    min-width: 16px;
}
/* This styles the main column solid #ffffff with a shadow  */
div#leftCol {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 27px;
}
/* this removes the main column shadows  */
#mainbody .orleg-layout .ms-webpart-chrome {
    box-shadow: none;
}
/* this retains the box shadows on the left-hand column  */
.zone2.span3 .ms-webpart-zone.ms-fullWidth .ms-webpart-chrome.ms-webpart-chrome-vertical.ms-webpart-chrome-fullWidth {
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2) !important;
}
/* Removes the column headers row  */
tr.ms-viewheadertr.ms-vhltr {
    display: none;
}