/* -----------------------------------------------------------------
	Creation: 	Original:	07/05/2010
	Author:		Robert Dillon
				www.refreshingedge.com
	Contents
	-----------------------------
	00		stretch the page height
	01		clears, for floats etc
	02		noDisplay
	03		floats
	04		font/text styles	
	05		global site color	
	


	
/*	00	stretch the page height
------------------------------------------------------------------	*/
html, body { 
	height: 100%;
}	
	


/*	01	clears, for floats etc
------------------------------------------------------------------	*/
.clear {
	clear: both;
	padding-top: 1em;
}
	.clearLeft {
		clear: left;
		padding-top: 1em;
	}
	
	
	
/*	02	noDisplay
------------------------------------------------------------------	*/
.noDisplay {
	display: none;
}



/*	03	floats
------------------------------------------------------------------	*/
.floatLeft {
	float: left;
}
.floatRight {
	float: right;
}



/*	04	font/text styles
------------------------------------------------------------------	*/
.italic {
	font-style: italic;
}
.bold {
	font-weight: bold;
}
.textCenter {
	text-align: center;
}


/*	05	global site color
------------------------------------------------------------------	*/
.siteColor {
	color: #99ff00;
}