Getting the css href links

Using watir, how can I get the href links of the CSS in my pages:

These links are not among the results if I do something like:

require ‘watir’
ie=Watir::IE.new()

ie.goto(“http://www.elmundo.es”)
ie.links.each {|link|
puts link
}