Wanted to share this.. In the reviews sidebox, the text color is white on a white background.. This is a no no with the search engines.. Here's Google's policy:

Hidden text and links

Hiding text or links in your content to manipulate Google’s search rankings can be seen as deceptive and is a violation of Google’s Webmaster Guidelines. Text (such as excessive keywords) can be hidden in several ways, including:

  • Using white text on a white background
  • Locating text behind an image
  • Using CSS to position text off-screen
  • Setting the font size to 0
  • Hiding a link by only linking one small character—for example, a hyphen in the middle of a paragraph
I changed the following in the stylesheet to address

Code:
.sideBoxContentItem a, #reviewsContent a {
    font-weight: normal;
    clear: both;
    color: #FFF;
    margin-bottom: 20px;
    padding-bottom: 10px;
}
}
Note I simply removed the color:#fff;.. The links should now inherit the default links colors.