/* CSS RESET */

	html, body, div, span, applet, object, iframe,
	h1, h2, h3, h4, h5, h6, p, blockquote, pre,
	a, abbr, acronym, address, big, cite, code,
	del, dfn, em, font, img, ins, kbd, q, s, samp,
	small, strike, strong, sub, sup, tt, var,
	dl, dt, dd, ol, ul, li,
	fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
	}



/* BASIC STRUCTURE */

	body {
	font-size: 75%;
	font-family: "trebuchet ms",sans-serif;
	background: #e4f7f2;
	}
	
	#col1, #col2, #col3, #col4 {
	width: 220px;
	margin: 60px 0 0 20px;
	float: left;
	}
	
	
/* BASIC TYPOGRAPHY */

	h1 {
	margin: 0 0 30px 0;
	}
	h2 {
	color: #000;
	margin: 0 0 10px 0;
	font-size: 0.9em;
	}
	p {
	color: #888;
	font-size: 0.9em;
	line-height: 1.4em;
	}

/* HEADER */

	div#header {
	padding: 20px 20px 30px 20px;
	background: #fff;
	display: block;
	margin: 0 0 20px 0;
	font-size: 0.9em;
	}
	div#header ul {
	list-style: none;
	margin: 0 0 30px 0;
	}
	div#header ul li {
	margin: 0 0 6px 0;
	}
	div#header a {
	text-decoration: none;
	color: #333;
	padding: 3px 0;
	}
	div#header a:hover {
	color: #aaa;
	}
	

/* POST */

	a.post {
	text-decoration: none;
	padding: 20px 20px 30px 20px;
	background: #fff;
	display: block;
	margin: 0 0 20px 0;
	}
	a.post:hover {
	opacity: 0.5;
	}
	a.post img {
	margin: 0 0 10px 0;
	}
	
