Image not showing on div ( making a Banner)

Hello Fellow Web Engineers,

I am struggling, rather tossing my head around, making a simple Banner using a 20 by 60 gradient tile. I tried changing paths on my computer and even putting it into a folder. Finally, I uploaded the image to a site and directly placed the url link. Yet, I still do not see the image O_o


<!DOCTYPE html>
<html>
	<head>
		<style type="text/css" media="screen" >
		 #Banner {
			background-image: url('http://s12.postimage.org/jrt4cx809/tile_Banner.png') repeat-x;
			border: 1px solid #000;
			height: 60px;
			width: 100%;
		 }


		</style>
	</head>
	
	<body>
		<div id="Banner">
			<!-- This will have an image -->
		</div>
	</body>
</html>