/* CSS Document */
/* No Repeat (Example Flag) */
html {
     overflow: -moz-scrollbars-vertical;
     overflow: scroll;
}

Body {
	background-image: url(/images/htm/background_flag.jpg);
	background-position:center 0;
	background-repeat:no-repeat;
	background-color:#E3E3E3;
	margin: 0;
	padding: 0;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	color:#333333;
}

/* Repeat 
Body {
	margin: 0;
	padding: 0;
	background-image: url(/images/htm/background_flag.jpg);
	background-repeat:repeat-x;
	background-color:#E3E3E3;	
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	color:#333333;
}
*/