/* Fixes for IE. Words cannot describe how I loathe thee IE. 

This file sent to IE only via server-side browser detection script
*/

/* Silly IE doesn't support min/max-width, but has no problem with complicated expressions that do the same thing */
#sizer {
	width:expression(document.body.clientWidth > 1100 ? "200px" : "66%" );
}

/* Allow top right corner background image to be visible due to double margin (or some other) bug. I'd fix this, but I just don't care any more. */
#header {
	padding-right:21px;
}

/* Fix for IE taborder bug. This expression sets tabIndex to -1, thus triggering 'hasLayout' for these elements to allow in-page anchors and ids to maintain keyboard navigation order after focus */
.section, #maincontent {
	behavior:expression((this.runtimeStyle.behavior="none")&&(this.tabIndex="-1"));
}
