To start with, neither of these are valid
float: left: 20;
position: left:200;
That would/should be
float: left
position: (absolute, fixed, relative, static or inherit)
left: 200px
However, to get the tab over to the left, simply remove the auto margin from #sliding-panel .tab .toggle as it's centering that div to the middle of the screen.