/*
Title:		IE patches
Author: 	Hyperexis (Christian Iorio-Morin)
			Based on Dan Cederholm's "Handcrafted CSS"
Contact:	info@hyperexis.com
*/

/* IE 6 PNG fix */
* html #selector { /* for IE<6 */
	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 */
* html .group { /* IE6 */
	height: 1%;
	}
*:first-child+html .group { /* IE7 */
	min-height: 1px;
	}
	
/* Fluid grid hack */
#header {
	max-width: 1200px;
	}
	
.main-content {
	max-width: 1000px;
	}