/* global font and colour settings */
body {
  font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
  font-size: 68.75%; /* This sets the default font size to be equivalent to 11px from 16px - so let's hope the default is 16! */
  color: #000;
  background-color: #fff;
  margin: 0;
  line-height: 140%;
}


/* default values for links */	
a:link 	  { color: #00f; }
a:visited { color: #00f; }
a:hover   { color: #f60; }
a:active  { color: #f30; }


/* headings */
h1, h2, h3, h4, h5, h6 {
	margin: 0.5em 0;
	font-family: 'Century Gothic', Tahoma, Verdana, Arial, Helvetica, sans-serif;
	text-transform: lowercase;
	font-weight: normal;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child { margin-top: 0; }

h1 { font-size: 2.00em; line-height: 1em; }
h2 { font-size: 1.50em; line-height: 1em; }
h3 { font-size: 1.20em; line-height: 1em; }
h4 { font-size: 1.10em; line-height: 1em; }
h5 { font-size: 1.05em; line-height: 1em; }
h6 { font-size: 1.00em; line-height: 1em; }


/* form elements */
input, select, options, textarea {
  font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
  font-size: 100%;
	background: #dfdfdf;
	padding: 4px 6px;
	border: 0;
	margin-top: 7px;
} /* for some reason, input, select, options and textareas get a separate font, and 'inherit' doesn't work for IE7, grr! */

pre { font-size: 130%; }
p { margin: 0; margin-bottom: 10px; }
form { margin: 0; padding: 0; }

/* no borders on normal images */
img { border: 0; /*behavior:	url('css/pngbehavior.htc');*/ } /* behaviour is for ie 5.5+ and transparent pngs - but be careful, it breaks stuff! */

ul { margin: 10px 0; padding: 0; }
li { list-style: url('../images/bullet.gif'); margin: 0; padding: 0; margin-left: 20px; }

/* 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 */
}