/*
* html #maincontainer{
	width: expression(document.body.clientWidth < 796 ? "796px" : "auto");
} */ /* Useful, but works only with IE 5.5. IE6 hanged up, commented though*/
/* IE 6 and lower
 * html {}
 */

* html img.transparent { background:expression(transparent(this)); }
* html  #small_cart table{
		width: 100%; 
		smargin-left: -6px;
	}
	
* html #site_logo{
	background: none;
}

#main_menu ul{
	margin-top: 12px; /*for IE*/
}
/* Eof Opera 9 Forks*/	

/*
for IE7 & good browsers only: 

html> body{}

or use !important;
example:

p
    background: green !important;
    background: red;
}

background: red; - only for IE<7;

for good browsers only (no IE at all)

html>body}



for IE7 personaly you may use one of the following

-, body background: gray; }


or

* body p.test
  background: #95FF95;
}

or
*[class='my_class'] 
{
}

or

*:first-child+html p.test1
  background: #95FF95;
}
where *:first-child+html is a fork key


/* Opera 6 
@media all and (min-width: 1px)} #element color: red; } }
 
/* Opera 7, 8 
@media all and (min-width: 1px) #element color: red; } }
 
/* Opera 9 
@media all and (width) #element color: red; } }
 
/* Opera 9 
@media all and (min-width:0px)
	head~body #element color: red; }
}


/* Gecko
html:not([lang*=""]) #element color: red; }
 
/* Mozilla Firefox
html:not([lang]) #element color: red; }
 
/* Firefox / Firebird / Phoenix, Netscape 6+
html:not[lang*=""] #element color: red; }
 
/* Gecko 1.8+ - Firefox 1.5, Camino, Seamonkey, Galeon, Epiphany è ò.ä.

/* Safari 3
body:first-of-type #element color: red; }


IE


* html #calendar table {
	/*line for IE5*//*
	width: 93%;
	/* after voice-family lines  IE5 breaks its parsing*//*
	voice-family: "\"}\"";
	voice-family: inherit; 
	/*lines for IE6*//*
	width: 100%
}

html:not([lang*=""]):not(:only-child) #element color: red; }
RTFM: 
http://dimox.name/ie7_css_hack/
http://vremenno.net/html-css/css-hacks/
http://css-framework.ru/wiki/documentation/css-hack
*/