CSS file wars / precedence

If I have a Templates folder beneath Client, such as:

ProjectName
	Client
		Templates
                   bla.html
                   bla.js
                   bla2.html
                   bla2.js
                   templateStyles.css
    	. . .
        Stylesheets
                styles.css
        . . .

…which has various .html/.js file pairs in it, and I add a .css file there, will it take precedence over other CSS files placed “further away”.

That is to say, if I also have a Stylesheets folder beneath Client (at the same level as Templates), which has one or more .css files in it, will the .css file in the Templates folder supercede those in the Stylesheets folder if there is a conflict/naming collision?

There is no precedence when it comes to CSS in meteor. Meteor will merge and minify all CSS files together no matter where they are on the client and send that file to the client.