IE Menu Problem...
Originally, I included CSS hacks for IE.
However, my comments before the doctype was the reason IE was running in non-strict mode.  I did not know this.
When Chris removed the comments, IE correctly went into strict mode and my IE hacks were no longer needed (the hacks were getting in the way now).
solution:
*) Make sure doctype is first on all files
*) removed all IE hacks from menu.css (since the doctype issue fixes IE)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45025 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/www/menu.css b/www/menu.css
index 1784a9d..0ecc74e 100644
--- a/www/menu.css
+++ b/www/menu.css
@@ -2,42 +2,34 @@
 /* page layout */

 /***************/

 

-/***IE***/

-#menu {

-	float:left;

-}

-#content {

-	float:left;

-	margin-left:1ex;

-}

-/***W3C***/

 [id=menu] {

 	position:fixed;

 }

 [id=content] {

-	/* *****  EDIT THIS VALUE IF CONTENT OVERLAPS MENU ***** */
-	padding-left:16ex;
+	/* *****  EDIT THIS VALUE IF CONTENT OVERLAPS MENU ***** */

+	padding-left:16ex;

 }

 

 /**************/

 /* menu style */

-/**************/
-
-#menu .submenu {
-	padding-top:1em;
-	display:block;
-}
+/**************/

+

+#menu .submenu {

+	padding-top:1em;

+	display:block;

+}

 

 #menu label {

-	display:block;
-	font-weight: bold;
+	display:block;

+	font-weight: bold;

 	text-align: center;

-	background-color: rgb(192,192,192);
+	background-color: rgb(192,192,192);

 }

 #menu a {

-	display:block;
+	padding:0 .2em;

+	display:block;

 	text-align: center;

-	background-color: rgb(235,235,235);
+	background-color: rgb(235,235,235);

 }

 #menu a:visited {

 	color:rgb(100,50,100);