/* global font and colour settings */
body { 
  font-family:Helvetica, Tahoma, Arial;
  font-size: 75%; /* This sets the default font size to be equivalent to 12px from 16px */
  color: #333333;
  background-color: #333333;
  margin: 0;
  line-height: 160%;
}

a {}
a:link    { color: #0099CC; }
a:visited { color: #0099CC; }
a:hover   { color: #333333; }
a:active  { color: #333333; }

/* clearfix */
.clearfix:after {
  content: "."; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden;
}

* html>body .clearfix {
  display: inline-block; 
  width: 100%;
}

* html .clearfix {
  /* Hides from IE-mac \*/
  height: 1%;
  /* End hide from IE-mac */
}
.clearfix { zoom: 1; }