Added fly-in detail pane.
diff --git a/web/gui/src/main/webapp/onos.css b/web/gui/src/main/webapp/onos.css
index cfe37fb..2eae797 100644
--- a/web/gui/src/main/webapp/onos.css
+++ b/web/gui/src/main/webapp/onos.css
@@ -203,14 +203,25 @@
 }
 
 #flyout {
-    width: 300px;
-    height: 80%;
-    top: 10%;
-    right: 2%;
-    background-color: rgba(0,0,0,0.5);
-
     position: absolute;
     z-index: 100;
-    display: none;
+    display: block;
+    top: 10%;
+    width: 300px;
+    height: 80%;
+    right: -320px;
+    opacity: 0;
+    background-color: rgba(0,0,0,0.5);
+    padding: 10px;
+    color: white;
+}
+
+#flyout h2 {
+    margin: 8px 4px;
+    color: yellow;
+}
+
+#flyout p {
+    margin: 4px 4px;
 }