/**
 * Rounded corner definitions
 *
 * each definition for rounded corners includes the
 * css3 definitions (which do not include a prefix)
 * followed by the mozilla (firefox) definitions (which
 * include the -moz prefix and a variance in syntax
 * followed by a third declaration for webkit-powered
 * browsers (ex. Safari) with the prefix -webkit
 */

#HeaderNav a
{
  border-top-left-radius:5px;
  border-top-right-radius:5px;
  -moz-border-radius-topleft:5px;
  -moz-border-radius-topright:5px;
  -webkit-border-top-left-radius:5px;
  -webkit-border-top-right-radius:5px;
}

#ContentNav .navList a
{
  border-top-right-radius:4px;
  border-bottom-right-radius:4px;
  -moz-border-radius-topright:4px;
  -moz-border-radius-bottomright:4px;
  -webkit-border-top-right-radius:4px;
  -webkit-border-bottom-right-radius:4px;
}
  
.locationsPage #ContentNav li
{
  border-top-left-radious:4px;
  border-bottom-left-radius:4px;
  -moz-border-radius-topleft:4px;
  -moz-border-radius-bottomleft:4px;
  -webkit-border-top-left-radius:4px;
  -webkit-border-bottom-left-radius:4px;
}

.homePage #ContentMain .locationListing li
{
  border-radius:4px;
  -moz-border-radius:4px;
  -webkit-border-radius:4px;
}

.locationsListItemSelected
{
  border-top-right-radius:0px;
  border-bottom-right-radius:0px;
  -moz-border-radius-topright:0px;
  -moz-border-radius-bottomright:0px;
  -webkit-border-top-right-radius:0px;
  -webkit-border-bottom-right-radius:0px;
}

.imageWithDesc
{
  border-radius:4px;
  -moz-border-radius:4px;
  -webkit-border-radius:4px;
}

.tip, .tip .tip-text
{
  border-radius:8px;
  -moz-border-radius:8px;
  -webkit-border-radius:8px;
}