Solution :
Please note your failing URL:
Failed ... http://localhost:8080/RetailSmart/jsp/Jquery/jquery.multiselect.css
Now you need to examine one of your links:
<link href="../Jquery/jquery.multiselect.css" rel="stylesheet"/>
Here "../" is a shorthand for "The containing directory", or a "Up one directory". This is the relative URL. And I guess, you have the file in /jsp/<somefolder>/ which contains a <link /> and <style /> elements.
So I recommend you to use an absolute URL as below:
<link href="/RetailSmart/Jquery/jquery.multiselect.css" rel="stylesheet"/>
The reason behind using the absolute url is that I'm guessing that your links are contained in some of the common file and if you try to correct your relative paths by adding the second "../", then you may break any files contained in the /jsp.