div.footer { position: relative ;/* Establish 'positioned' ancestor */
text-align: center ; /* Center the contained text */
}
div.footer p {
color:#999999 ; /* Must specify colors */
/*background-color: white ;  otherwise transparent! */
position: fixed ; /* position relative to window */
bottom: 0px ; /* against the window bottom */
/* left: 0 ;  Stretch to go clear */
right: 10px ; /* across viewport */

margin-bottom: 0px ; /* Adjust to suit */
padding-top: 0px ;/*  with a nice top padding */
}

A:link {text-decoration: none; color:#999999}
A:visited {text-decoration: none; color:#999999}
A:active {text-decoration: none; color:#999999}
A:hover {text-decoration: underline; color:#999999}