/* 
Title:	IE Patches
Author:	david.s.mohrman@state.or.us
*/

/* --[ PNG fix ]-- */
/* //[ A filter fix to get IE 6 to display alpha-channel PNGs to display properly(sometimes) ]// */

  /* for IE<6 */
* html #selector {
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='img/image.png'); 
  background-image: none; 
  background-repeat: no-repeat; 
  background-color: transparent;
  }

/* --[ self-clear floats ]-- */

  /* IE6 */
* html .group {
  height: 1%;
  }

  /* IE7 */
*:first-child+html .group {
  min-height: 1px;
  }

/* --[ End of IE Style Hacks ]-- */

