/* 
    Document    : csstweaks
    Created on  : 03.12.2008, 09:52:59
    Author      : Germeshausen.de Webhosting
                  Sven Germeshausen
	Project     : TeamSpeak Adminpanel PRO 2.2
    Description :
        This file helps to fix browser related issues with
        some small tweaks and workarounds.
        This file is created to divide valid css 2.1 code from
        the tweaks to have a clean workspace.
*/

* html #header {
	/* Fixing IE5.5 & IE6 png transparence issue */
	behavior:url(iepngfix.htc);
}
html {
	/* Prevent content flickering while changing length of the context*/
	overflow-y:scroll;
	overflow-x:none;
}
.invisible {
	/* make it transparent for any case */
	filter:alpha(opacity=0);
	-moz-opacity:0.0;
	opacity:0.0;
}
#progresslayer {
	/* Create an alpha effect in all common browsers */
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
	opacity:0.8;
}
.flag, .icon {
	/* Fixing IE5.5 & IE6 png transparence issue */
	filter:Chroma(color=#E8E8E8);
}