html {
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 10;
	font-family: Verdana, Arial, sans-serif;
    font-size: 16px;
    line-height: 110%;	
    text-align: center;
	background-color: #EDEDED;  /* светло-серый фон */
	color: #990000; /* черно-зеленый  */
    font-weight: normal;
    font-style: normal;
}

A:link{  /* ссылки на сером везде */
 color: #008000;
 text-decoration: none;
}

A:visited {
 color: #008000; 
 text-decoration: none;
}

A:hover {
 color: #00B300; 
 text-decoration: underline;
}

A:active {
 color: #008000;
 text-decoration: underline;
}


