/* 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; background-color: none; text-transform: none;}


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

/***** PAGE ELEMENTS *****/
div#container {}

ul#nav {}
	ul#nav li {}
	ul#nav li a {}
	ul#nav li a:hover, ul#nav li a:active, ul#nav li a:visited {}

div#header {}

div#main-content {}

div#footer {}
	div#footer span.Left {}
	div#footer span.Right {}
