@charset "utf-8";
/* CSS Document */
html { 
	height:100%; /* fix height to 100% for IE */

	padding: 0; /*remove padding */
	margin: 0; /* remove margins */
	border: 0; /* remove borders */
	background: #ffffff /*color background - only works in IE */
	overflow: hidden; 				/*get rid of scroll bars in IE */
	overflow-y: hidden;
	overflow-x: hidden; 
} 
body {
	height: 100%; /* fix height to 100% for IE */
	padding: 0; /*remove padding */
	margin: 0; /* remove margins */
	border: 0; /* remove borders */


	overflow: hidden			/*from IE5/Mac*/
	overflow: hidden;		 /*get rid of scroll bars in IE */
	overflow-y: hidden;
	overflow-x: hidden;
	background-color: #FFFFFF;
}
#content {
	height: 100%;
	width: 100%;
}

