Prev/Next Arrows

Hey Guys,

Here is the site…

http://chapleaubrand.ca/

If you click on News it will scroll down to In development section.

I looked in two CSS documents and trying to give the prev and next arrows a left: -40px; and a right: -40px; and I did that in spots where seems to and the files but they still don’t show up I even put !important after them to over ride any other ones but still nothing.

Any suggestions would be great!

Thanks,

Mike

.bx-wrapper .bx-controls-direction a {
    height: 32px;
    [color=blue]margin-top: 0;[/color]
    outline: 0 none;
    position: absolute;
    text-indent: -9999px;
    [color=blue]top: 40%;[/color]
    width: 32px;
    z-index: 9999;
}

.bx-wrapper .bx-prev {
    background: url("images/controls.png") no-repeat scroll 0 -32px rgba(0, 0, 0, 0);
    [color=blue]left: -40px;[/color]
}

.bx-wrapper .bx-next {
    background: url("images/controls.png") no-repeat scroll -43px -32px rgba(0, 0, 0, 0);
    [color=blue]right: -40px;[/color]
}