You would start the selector with body.page-id-99 where 99 is the id of the page you want to limit your CSS to. So if you want the link text color to be white on a page with an id of 99 you would use.
HTML Code:
body.page-id-99 a:link {
color: #fff;
}