body { 
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */ 
	padding: 0; 
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */ 
	color: #000000; 
	font-family: Helvetica, Verdana, Arial, sans-serif; 
	font-size: 11px; 
	background-color: #FFFFFF; 
	background-repeat:repeat-y; 
	background-position:center;
	height: 100%;
} 

.background { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	background-color: #ffffff; 
	background-repeat:repeat-y; 
	background-position:center; 
	height:auto; 
} 

.textbox 
        {
         font-family: Verdana, Arial;
         font-size: 10px;
         /*color: GrayText;*/
         color: Black;
         background-color: #efefef;  
        }
        
        .button
        {
         background-color: #efefef;  
         font-family: Verdana, Arial;
         font-size: 10px; 
        }
        


a:link {
	color: #003300; /* can also put hex value: #FF0000 */
}

a:visited {
  color: #003300;  /* can also put hex value: #FF0000 */
}
