/*handled versioned resources such as 'background-image' present inside css
how to use: increase version whenever the resource content (image content) changes
Note: startup.cs explicit code will request caching for static files requests having '_cache_by_version_' parameter
Other: 
- Why not append a version without cache control: browser will revalidate by issuing 304 which is an extra call even if empty. To avoid that we 'cache' (for 60 days, better value than forever)
- this (parent) css file should be versioned. If not, the old css content is cached, which means the 'background-image' directive with 'old' version will be requested, which version is already cached, so nothing will change.
- this file shoud be declared before the actual css which will be using the below defined vars

*/

:root {
	--fhircast_icon: url('../images/fhircast.png?_cache_by_version_=1');
	--bi_imageSprite1_light: url('../images/imageSprite1.png?_cache_by_version_=1');
	--bi_imageSprite1_dark: url('../images/darkSkin/imageSprite1.png?_cache_by_version_=1');
	--bi_imageSprite2_light: url('../images/imageSprite2.png?_cache_by_version_=1');
	--bi_imageSprite2_dark: url('../images/darkSkin/imageSprite2.png?_cache_by_version_=1');
	--bi_imageSprite3_light: url('../images/imageSprite3.png?_cache_by_version_=1');
	--bi_imageSprite3_dark: url('../images/darkSkin/imageSprite3.png?_cache_by_version_=1');
	--bi_imageSprite4_light: url('../images/imageSprite4.png?_cache_by_version_=1');
	--bi_imageSprite4_dark: url('../images/darkSkin/imageSprite4.png?_cache_by_version_=1');
	--bi_imageSprite5_light: url('../images/imageSprite5.png?_cache_by_version_=1');
	--bi_imageSprite5_dark: url('../images/darkSkin/imageSprite5.png?_cache_by_version_=1');
	--bi_imageSprite6_light: url('../images/imageSprite6.png?_cache_by_version_=1');
	--bi_imageSprite6_dark: url('../images/darkSkin/imageSprite6.png?_cache_by_version_=1');
}