/* global font and colour settings */
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 75.5%; /* This sets the default font size to be equivalent to 10px from 16px */
	color: #000;
	background-color: #fff;
	margin: 0;
	line-height: 140%;
	background-image:url(../images/bg_top.jpg);
	background-repeat:repeat-x;
	background-position:top;
}


/* 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; }
h1 { font-size: 1.5em; line-height: 1.5em; }
h2 { font-size: 1.4em; line-height: 1.4em; }
h3 { font-size: 1.3em; line-height: 1.3em; }
h4 { font-size: 1.2em; line-height: 1.2em; }
h5 { font-size: 1.1em; line-height: 1.1em; }
h6 { font-size: 1em; line-height: 1em; }


/* form elements */
input, select, option, textarea { font: inherit; padding: 0 3px; } /* for some reason, input, select, options and textareas get a separate font */
input, select, textarea { border: 1px solid #9cb4d2; }

p { margin: 0; }

/* no borders on normal images */
img { border: 0; }


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