Your url is a relative path. It will not work the same in different url depths.
From www.mysite.com/home.aspx it will go to www.mysite.com/Icons/...
but from www.mysite.com/about/contact.aspx it will go to www.mysite.com/about/Icons...
The solution is to use as absolute path.
/Icons
will always go to www.mysite.com/Icons
Change your css as follows:
.footable.breakpoint > tbody > tr > td.expand {
background: url(/Icons/plus.png) no-repeat 5px center;
padding-left: 40px;
}
.footable.breakpoint > tbody > tr.footable-detail-show > td.expand {
background: url(/Icons/minus-1.png) no-repeat 5px center;
}