/*** 

Techtwo webdevelopment
Author: Wim La Haye

Resets the default browser styles and forces a baseline grid of 18px

***/

/*** Reset all margins and paddings ***/
* { 
	margin: 0px;
	padding: 0px;
}

/*** Maximize the body and html ***/
body, html {
	width: 100%;
	height: 100%;
}

/*** Lists ***/
ul, ol {
	line-height: 18px;
	padding-left: 18px;
	margin-bottom: 18px;
}

/*** Headers ***/
h1 {
	font-size: 24px;
	line-height: 36px;
	margin-bottom: 18px;
}
h2 {
	font-size: 18px;
	line-height: 18px;
	margin-bottom: 18px;
}
h3 {
	font-size: 12px;
	line-height: 18px;
	margin-bottom: 18px;
}

/*** Paragraph ***/
p {
	line-height: 18px;
	margin-bottom: 18px;
}

/*** Remove the default border from links within images ***/
a img {
	border: 0px;
}

/*** Set up some basic classes ***/
.floatleft {
	float: left !important;
	margin: 0 0 18px 18px;
}

.floatright {
	float: right !important;
	margin: 0 0 18px 18px;
}
.clear {
	clear: both;
}