re-implementing profiler output
diff --git a/system/libraries/Profiler.php b/system/libraries/Profiler.php
index 980cf09..b0241b2 100644
--- a/system/libraries/Profiler.php
+++ b/system/libraries/Profiler.php
@@ -364,20 +364,19 @@
 	 * @return	string

 	 */	

 	function run()

-	{		

-		$output = '<br clear="all" />';

-		$output .= "<div style='background-color:#fff;padding:10px;'>";

+	{

+		$output .= "<div id='codeigniter_profiler' style='clear:both;background-color:#fff;padding:10px;'>";

 

 		$output .= $this->_compile_uri_string();

 		$output .= $this->_compile_controller_info();

 		$output .= $this->_compile_memory_usage();

-		$output .= $this->_compile_benchmarks();	

+		$output .= $this->_compile_benchmarks();

 		$output .= $this->_compile_get();

 		$output .= $this->_compile_post();

 		$output .= $this->_compile_queries();

-		

+

 		$output .= '</div>';

-		

+

 		return $output;

 	}