/*Simulates the max-width property. If the window gets bigger than 960px + 2px(for left and right borders) = 962px, the wrap is set to
the clientWidth - left and right margins, i.e. 960px*/
* html #wrapper {
	width:expression(document.body.clientWidth > 962? "960px" : "auto");
	height:1px;
}

/*Prevent strange left-margin IE behavior when floated. Also disallow scrolling*/
* html #main {
	display:inline;
	overflow: hidden;
}

/*Prevent strange left-margin IE behavior when floated.*/
* html #leftmenu {
	display:inline;
	word-wrap:break-word;
}

/*displays a question mark*/
.help, acronym {
	cursor: help; 
}

/*IE again*/
#footer {
    height:1px;
}