/*	
	BUG MANAGEMENT...
	Where ever you see the following...
				parametre : expression(SOME_JSCRIPT_HERE) ; 
	eg.		 width : expression(document.getElementsByTagName("body")[0].clientWidth > 800 ? "1024px" : "768px" ) ;
	This is to target specifically IE 5, 5.5, 6
	
	Wherever you see the following...
				html>body parametre { STYLE_SHEET_STUFF_HERE }
	eg.		 html>body.liquid #right { width : 20% ; }
	This is to hide style type stuffs from IE and hopefully target all compliant browsers.
	This works actually shows on Mac IE, so if you want to hide it from that as well you will need to do the following...
	eg.		 html>body.liquid #right { 
	/*	hide from mac ie	\* /
				width : 20% ; 
	/*	stop hiding	* /
				}
	TAKE NOTE: I have added a space here in between the closing * and / otherwise it will close the comments, so take them out when you use them.
	
	Wherever you see the following...
				@media all and (min-width: 0px) { parametre { STYLE_SHEET_STUFF_HERE }	}
	eg.		 @media all and (min-width: 0px) { body.fixed #container { width : 77em ; }	}
	This is to display style rules to Opera only.
*/
	@import "structure.css" ; 
	@import "design.css" ; 
	@import("mac_ie5.css"); 