#navcontainer {
	width: 100%;
}

#navcontainer ul {
  padding: 0;
  /*width: 760px;*/
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row;
  margin: 0 auto;
}

#navcontainer ul li {
  list-style-type: none;
  text-align: center;
}

#navcontainer ul li a {
  color: #fff;
  border-right: 1px solid #95bc0e;
  padding: .4rem .65rem;
  display: block;
}

#navcontainer ul li:last-child a {
	border: none;
}

#navcontainer ul li a:hover {
  color: #485b06;
  background-color: #b4e019;
}

div#time {
  font-family: tahoma;
  font-size: 8pt;
  font-weight: bold;
  left: 10px;
  position: absolute;
  text-align: left;
  top: 10px;
}

/*ZMIENIAM FLOW ELEMENTÓW W MENU*/
@media (max-width: 610px) {
  #navcontainer ul {
    flex-flow: wrap;
  } 
}