/* CSS Document 
author: Chris Sparshott
use of conditional comments have been used throughout site, therefore several styles have been filtered into appropriate IE6/IE7 CSS documents - notes have been made next to relevant css rules*/
/* ------------------------------------------------------------------
Sets default margin and padding
-------------------------------------------------------------------*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, th, td {
	margin: 0;
	padding: 0;
	border:none;
	outline:none;
}
body {
	font-size:62.5%;
}

/* ------------------------------------------------------------------
 Sets default font-size for headers 
 -------------------------------------------------------------------*/
h1, h2, h3, h4, h5 {
	font-size: 100%;
}
/* ------------------------------------------------------------------
Sets font-style and font-weight to normal
-------------------------------------------------------------------*/
address, caption, cite, code, dfn, em, th, var {
	font-style: normal;
	font-weight: normal;
}
/* ------------------------------------------------------------------
Sets font family for form elelments
-------------------------------------------------------------------*/
input, select, textarea {
	outline:none;
}
textarea {
	overflow:auto;
	resize:none; /* For Google Chrome */
}
/* ------------------------------------------------------------------
Removes border from fieldset and image
-------------------------------------------------------------------*/
fieldset, img {
	border: 0;
}
/* ------------------------------------------------------------------
Link styles
-------------------------------------------------------------------*/
a, a:link, a:visited {
	outline:none;
}
a:hover, a:active {
	cursor:pointer;
}
/* ------------------------------------------------------------------
=Generic classes
-------------------------------------------------------------------*/
p {
	margin:0 0 20px 0;
}
.floatLeft {
	float: left !important;
}
.floatRight {
	float: right !important;
}
.alignLeft {
	text-align:left !important;
}
.alignRight {
	text-align:right !important;
}
.clear {
	height:1px;
	display:block;
	clear: both;
}
.noMargin {
	margin:0 !important;
}
.noBorder {
	border:none !important;
}
.noBackground {
	background:none !important;
}
.displayNone {
	display:none !important;
}
.hideMe {
	display:none;
}
/* ------------------------------------------------------------------
=table classes
-------------------------------------------------------------------*/
table {
	border-collapse:collapse;
}