if you remove these two lines from above code it will remove top and bottom border

border-top: 1px solid #CCC;
border-bottom: 1px solid #CCC;

and below will leave you a line separator
border-left: 1px solid #CCC;


you can then adjust padding according to your needs.
see more about padding here
http://www.w3schools.com/css/css_padding.asp

Edit: nvm u got the solution