@charset "UTF-8";
/* CSS Document */
/* NOTE */
/*
When applying a background color or image to the HTML selector,
remember to use the auto height method to allow the BODY selector to expand.
Otherwise the background color or image applied to the BODY selector will get cut off.
WARNING!!! - When creating a sticky footer, you cannot use the auto height method
on the BODY selector and the HTML selector cannot have a background color or image.
*/

html {
	margin: 0px;
	padding: 0px;
	height: 100%;
	width: 100%;
}

/* CACHE ISSUE FOR BACKGROUND IMAGES */
/**************************************************/
body {
	filter: expression(document.execCommand("BackgroundImageCache", false, true));
}

body {
	margin: 0px;
	padding: 0px;
	/*min-height: 100%;
	height: auto !important;   Allows all browsers but IE to size to auto for expansion */
	height: 100%;
	font-size: 16px !important; /* Sets base font size to 16px for all browers except IE */
	font-size: 100%;  /* Base font size for IE */
	background-color: #fff;
	background-image: url(../gui/background-global.gif);
	background-repeat: repeat-x;
}

div, p, table, input, form, select, textarea {
	font-family: Arial, Verdana, Helvetica, sans-serif;
}
