
/*	--------------------------------------------------------------------------------
	resources: 
		http://www.howtocreate.co.uk/ie6pita.html		
	--------------------------------------------------------------------------------
*/

/*	--------------------------------------------------------------------------------
	Pages in framesets are laid out assuming there is no vertical scrollbar. 
	When the page is long enough for there to be a vertical scrollbar, the pages 
	are laid out behind the scrollbar. So that you can see the whole page, a horizontal 
	scrollbar is also shown - unsightly and usually unwanted.

	This bug can be removed using a complicated CSS technique, using only one line of 
	CSS. The way it works is to firstly use a CSS parsing bug in IE < 6 to prevent them 
	seeing the rest of the CSS:
		voice-family: "\"}\"";
	The first \ escapes the quotes but IE versions less than 6 will view it as end of 
	quotes. Therefore, they read the } as end of style declaration. The following \"" will 
	be ignored. Browsers that do not suffer from the parsing bug (Gecko, Konqueror, etc.) 
	will have their voice reset to normal in the next declaration.
	The proprietary expression( ) is only understood by IE so only IE will adjust its 
	width to remove the frameset problem.

		<style style="text/css">
		<!--
			body {	voice-family: "\"}\""; 
					voice-family: inherit; 
					width: expression(document.documentElement.clientWidth - 20); }
		-->
		</style>

	Keep this CSS separate from other CSS stylesheets in your document, and make sure it 
	is the last stylesheet in your document.
	--------------------------------------------------------------------------------
*/
/*
body { 
	voice-family: "\"}\""; 
	voice-family: inherit; 
	width: expression( document.documentElement.clientWidth - 20 ); 
}
*/

.peek-a-boo {
	position: relative;
}
/* --- EOF ---*/

