/*
	The following fixes png-transparency for IE6 only.
	
	Since IE does not support background-positioning with filters, it is incompatible with CSS sprites.  
	Colorbox preloads the 'previous', 'next', 'close' hover-states to account for this.
*/
/*
* html #contentPrevious{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/public/images/colorbox/previous.png, sizingMethod='crop');}
* html #contentPrevious:hover{filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/public/images/colorbox/previousHover.png, sizingMethod='scale');}
* html #contentNext{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/public/images/colorbox/next.png, sizingMethod='crop');}
* html #contentNext:hover{filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/public/images/colorbox/nextHover.png, sizingMethod='scale');}
* html #modalClose{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/public/images/colorbox/close.png, sizingMethod='crop');}
* html #modalClose:hover{filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/public/images/colorbox/closeHover.png, sizingMethod='scale');}
*/
* html #contentPrevious{background: transparent url(/public/images/colorbox/previous.png) no-repeat;}
* html #contentPrevious:hover{background: transparent url(/public/images/colorbox/previousHover.png) no-repeat;}
* html #contentNext{background:transparent url(/public/images/colorbox/next.png) no-repeat;}
* html #contentNext:hover{background: transparent url(/public/images/colorbox/nextHover.png) no-repeat;}
* html #modalClose{background:transparent url(/public/images/colorbox/close.png) no-repeat;}
* html #modalClose:hover{background: transparent(/public/images/colorbox/closeHover.png) no-repeat;}

/* 
	Because IE does not support CSS sprites while using the filter attribute 
	this area is for declaring hover-state backgrounds so they can be preloaded
*/
* html #preloadPrevious{background-image:url(/public/images/colorbox/previousHover.png);}
* html #preloadNext{background-image:url(/public/images/colorbox/nextHover.png);}
* html #preloadClose{background-image:url(/public/images/colorbox/closeHover.png);}