/* 
-----------------------------------------------
Author:  Jeremy Ricketts http://www.jeremyricketts.com
Date: Nov 11th, 2006
----------------------------------------------- 
*/

/* RESET BROWSER DEFAULTS
----------------------------------------------------------------*/
* { 
	margin: 0; 
	padding: 0;
	}

html {
	overflow: -moz-scrollbars-vertical;
	}

body { 
	text-align: center; /* Hack for stoopid IE 5 */
	font-size:small;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#414141;
	}

a img,:link img,:visited img { 
	border: none;
	}

address { 
	font-style: normal;
	}
	
p {
	}

ul {
	margin:0;
	padding:0;
	}
	


/* EXTRA CLASSES EVERY CSS HACKER NEEDS
----------------------------------------------------------------*/
.clear { 
	clear: both; 
	}

.clearfix:after {
	/* What's this? --> http://www.positioniseverything.net/easyclearing.html */
	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 */
	}

.hide {
	display: none; 
	}

.block {
	display: block;
	}
