/* CSS Toolbox */


/***** CSS RESET *****/
	* {margin: 0; padding: 0;}


/***** LAYOUT TOOLS *****/
	.floatRight {float: right;}
	.floatLeft {float: left;}
	
	.clear {clear: both;}
	.clearRight {clear: right;}
	.clearLeft {clear: left;}
	
	.layoutCenter {margin: 0 auto;}
	.textCenter {text-align: center;}
	.textRight {text-align: right;}
	.textLeft {text-align: left;}


/***** TYPOGRAPHICAL TOOLS *****/
	.bold {font-weight: bold;}
	.strikeOut {text-decoration: line-through;}
	.underline {text-decoration: underline;}
	.resetTypeStyle {font-weight: normal; font-style: normal; font-size: 100%; text-decoration: none; text-transform: none;}


/***** DISPLAY TOOLS *****/
	.hide {display: none;}
	.show {display: block;}
	.invisible {visibility: hidden;}
	
/**************************************************************************************************************************************************************************************/