# File lib/juicer/merger/stylesheet_merger.rb, line 19
      def initialize(files = [], options = {})
        @dependency_resolver = CssDependencyResolver.new(options)
        super(files || [], options)
        @hosts = options[:hosts] || []
        @host_num = 0
        @use_absolute = options.key?(:absolute_urls) ? options[:absolute_urls] : false
        @use_relative = options.key?(:relative_urls) ? options[:relative_urls] : false
        @document_root = options[:document_root]
        @document_root = File.expand_path(@document_root).sub(/\/?$/, "") if @document_root # Make sure path doesn't end in a /
      end