/*
 *   @name base.IE
 *   @type millipore core
 *   @desc Reset bowers classes, disables deprecated html and, Set General styles for site.
 *   @author Matthew Meyer
 *   @version 3.0
 *   @cat core
**/

/*
_______________________________
BASE.IE */

* html input {
	cursor:expression(this.type=='text' || this.type=='password' ? 'text' : 'pointer');
	display:expression(this.type=='hidden' ? 'none' : 'inline');
}

* html .content textarea,* html .content input,.content input[type='submit'],.content input[type='button'] {
	padding:0;
}

* html ul, * html li { min-height:1px; } /*- for IE7 -*/

/*
 *
 *   @notes
 *   
 *   To use png as background images in IE6, use this filter: (don't forget to hack out IE5)
 *     filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="image.png",sizingMethod="scale");
 *   
 *   To use transparency IE ( and Opera<9 ), use this filter:
 *     filter:alpha(opacity=[0-100]);
 *   
 */

