diff --git a/header.html.erb b/header.html.erb
index 11cb716..a50c02b 100644
--- a/header.html.erb
+++ b/header.html.erb
@@ -2,6 +2,41 @@
<%= theme_include "user_menu", :locals => {:person => user.person} if user %>
+
diff --git a/style.css b/style.css
index f3c8448..298a4f9 100644
--- a/style.css
+++ b/style.css
@@ -1,12 +1,13 @@
@import url(../base/style.css);
/****************** ESTILO BASE ******************/
@import url(cabecalho.css);
+@import url(top-search-bar.css);
/****************** FIM cabecalho amarelo ******************/
@import url(style-core.css);
@import url(user-menu.css);
body, th, td, input {
-font-family: Arial, sans-serif;
+font-family: Open Sans;
}
#wrap-2 {background-color:#ebeff2;}
diff --git a/top-search-bar.css b/top-search-bar.css
new file mode 100644
index 0000000..41dda85
--- /dev/null
+++ b/top-search-bar.css
@@ -0,0 +1,10 @@
+#top-search-bar {
+ height: 26px;
+}
+
+#top-search-bar .hide{ display: none;}
+#top-search-bar ul { margin:0 0 0 20px; padding:0; list-style-type:none; list-style-position:outside; background:#ffffff; }
+#top-search-bar ul a:link, #top-search-bar ul a:active, #top-search-bar ul a:visited { display:block; padding:0; text-decoration:none; }
+#top-search-bar ul li { float:left; position:relative; background:none; padding:5px 12px; transition: all 300ms ease-in; }
+#top-search-bar ul li:hover { background:#257CAD; color: white; text-shadow: none; }
+#top-search-bar ul li a:hover { color: white; }
--
libgit2 0.21.2