body {
  background-color: #103452;
}
/* top-menu: menu's surrounding box (i.e. the menu bar) */
#top-menu {
  background: #103452;       /* Background color, change as required */
  width:100%; height:60px; /* Menu bar size, change as required */
  margin:0 auto 0;           /* Menu bar centered horizontally */
  padding:0;
  font-family: Verdana, Helvetica, Arial, sans-serif;
  font-size:12px;
  align: center;
}

/* Menu items are part of a Unordered List */
#top-menu ul {
  list-style:none;   /* No bullet s displayed in from of items */
  margin:0 1px;     /* Starts at 15 pixel from left */
  padding:2px 0 0 0; /* To center items' text in menu bar */
}

/* Menu items are li elements of the Unordered List */
#top-menu ul li {
  display:inline; /* Menu options to display horizontally */
}

/* Menu items are also anchors within the li elements */
#top-menu ul li a {
  margin-right:2px;  /* Space between menu options */
  padding:1px 10px;  /* Padding for the option selection box */
  text-align:center; /* Text centered in the option selection box */
  color:#fff;        /* Text color of the option selection box */
  text-decoration:none; /* No underline for menu options */
}

/* Menu items colors when mouse over */
#top-menu ul li a:hover {
  background:#369;
  color:#fff;
}

/* Active menu items colors */
#top-menu ul li a.active,
#top-menu ul li a.active:hover {
  background:#6495ED;
  color:#fff;
}
