/* format.css */

.floatLeft {
	float: left;
}
.floatRight {
	float: right;
}
.bold {
	font-weight: bold;
}
.center {
	text-align: center;
}
/*Float Container Hack Makes sure that the floating Divs containted w/in it has 
a measurable height that will expand and move down other elements below it.*/
.floatcontainer:after { 
	content: "."; 
	display: block; 
	height: 0; 
	font-size:0; 
	clear: both; 
	visibility:hidden; 
} 
.floatcontainer {
	display: inline-block;
	margin-bottom: 0px;
} 
/* Hides from IE Mac \*/ 
* html .floatcontainer { 
	height: 1%;
	margin-bottom: 0px;
} 
.floatcontainer {
	display: block;
} 
/* End Hack */ 
/* IE PNG FIX */
.transparent { 
 	behavior: url(js/iepngfix.htc);
}
/* IE PNG FIX END */
/* IE PNG FIX 
#topSectionShdwL, #topSectionShdwR, #topSectionShdwM, #dashBoardContent, #mainDashBoard .botTab, .transparent { behavior: url(/graphics/js/lib/iepngfix.htc); }*/