Adjust your CSS like this:
#picture{
background-image:url('/path/to/Nobullying.jpg');
width:40px; height:40px;
position: absolute;
left: 5px;
}
Remember: when you use css background images, the path goes from the point of view of the css file (and not the html file in which css is included).
So, if your directory structure was like
root
--> css -> styles.css
--> images -> Nobullying.jpg
--> index.html
Then your path can be url('../images/Nobullying.jpg')either `url ('/images/Nobullying.jpg');