Thomas: CSS-Link Reset beim ersten Laden der Seite

Hallo zusammen,

ich habe ein kleines Problem. Per CSS habe ich ein kleines Menü erstellt, dessen einzelne Einträge farbig (Hintergrund) hinterlegt sind.
Lade ich die Seite aber das erste Mal neu (Firefox), bzw. bei jedem neuen Laden (IE 7) haben die Links keine Hintergrundfarbe. Auch die Eigenschaft für "outline" wird ignoriert. Klicke ich dann drauf, erscheint es so, wie es soll.
Hat jemand einen Tipp??

Hier die entsprechenden CSS-Teile:
#update_top_menu {
  width: 100%;
  position: relative;
  float: left;
  padding-bottom: 2px;
}
.update_menu_item {
  position: relative;
  float: left;
  border: 1px solid #336699;
  padding: 0 5px 0 5px;
  margin: 1px 1px;
}
.update_menu_item a {
  text-decoration: none;
  font-weight: bold;
  color: black;
  outline: none;
}
.update_menu_item a:hover {
  color: purple;
}
#update_menu_new {
  margin-left: 30%;
  background: white;
}
#update_menu_active { background: yellow; }
#update_menu_pending { background: #FF6600; }
#update_menu_finished { background: #33FF00; }
#update_menu_error { background: red; }
#update_menu_all { background: silver; }
#update_content {
  position: relative;
  float: left;
  width: 100%;
  height: 400px;
  border: 1px inset black;
  overflow: auto;
}
#update_bottom_menu{
  width: 100%;
  position: relative;
  float: left;
  padding: 2px;
}
#update_menu_create {
  background: silver;
  margin-right: 1em;
}
#update_menu_import {
  background: silver;
}

Und der HTML Code:
<div id="update_top_menu">
    <div id="update_menu_new" class="update_menu_item"><a href="#" onclick="load_updates(1)">Neu</a></div>
    <div id="update_menu_active" class="update_menu_item"><a href="#" onclick="load_updates(2)">Aktiv</a></div>

<div id="update_menu_pending" class="update_menu_item"><a href="#" onclick="load_updates(3)">Neustart</a></div>
    <div id="update_menu_finished" class="update_menu_item"><a href="#" onclick="load_updates(4)">Beendet</a></div>
    <div id="update_menu_error" class="update_menu_item"><a href="#" onclick="load_updates(0)">Fehler</a></div>
    <div id="update_menu_all" class="update_menu_item"><a href="#" onclick="load_updates()">Alle</a></div>
  </div>