html, * {
	margin: 0;
	padding: 0;
}

body {
	font: 80%/1.3 Verdana, Helvetica, sans-serif;
	background-color: white;
}

img {
	border: 0px;
}

textarea, select, input {
	font-size: 95%;
	color: #000000;
}

/* LINKS */
	a:link, a:visited, a:hover, a:active {
	text-decoration:none;
}


/* Begin Aslett Clearing Method */
	.clearFix:after {
		content: ".";            /* the period is placed on the page as the last thing before the div closes */
		display: block;          /* inline elements don't respond to the clear property */ 
		height: 0;               /* ensure the period is not visible */
		clear: both;             /* make the container clear the period */
		visibility: hidden;	     /* further ensures the period is not visible */
	}
	
	.clearFix {
		display: inline-block;
	}   /* a fix for IE Mac */
/* End Aslett clearing method */

/* next a fix for the dreaded Guillotine bug in IE6 */
	/* Hides from IE-mac \*/
	* html .clearFix {
		height: 1%;
	}
	
	.clearFix {
		display: block;
	}
	/* End hide from IE-mac */
