Even after using the code below, I am still unable to remove the small drop shadows at the top and bottom. How can I get rid of them completely?
div#inner_container {
width: 960px;
margin: 0 auto;
background-color: rgb(255, 255, 255);
box-shadow:0 9px 0 0 transparent,
0 -9px 0 0 transparent,
12px 0 15px -4px rgba(255, 255, 255, 0.5),
-12px 0 15px -4px rgba(255, 255, 255, 0.5);
position: relative;
z-index: 5000;
}