/* global font and colour settings */
body {
	font-family:Arial, Verdana, Tahoma, Helvetica, sans-serif;
	font-size: 12px; /* This sets the default font size to be equivalent to 10px from 16px */
	color: #545454;
	background-color: #fff;
	margin-top: 10px;
	line-height: 130%;
	text-align:justify;
}


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


/* headings */
h1, h2, h3, h4, h5, h6 { margin: 0.5em 0; }
h1 { font-size: 2em; }
h2 { font-size: 1.7em; }
h3 { font-size: 1.5em; }
h4 { font-size: 1.3em; }
h5 { font-size: 1.1em; }
h6 { font-size: 1em; }


/* form elements */
input, select, options, textarea { font: inherit; } /* for some reason, input, select, options and textareas get a separate fonte */


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

/* paragraphs...feckers */
p { margin-top:8px;}


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