* {
      margin: 0;
      padding: 0;
    }
{
	width: 100%;
	margin: 0 auto;
	padding: 0px 0px 0px 0px; /* TOP, LEFT BOTTOM, RIGHT */
	text-align: center;

			}
	nav {
      display: block;
      margin: 0px 0px;  /* OVERALL OR RELATIVE?? */
      text-align: center;
	 	 /* text-transform: uppercase;  MENU BAR PRE-COLLAPSE */
    }
    nav ul {
      list-style: none;
    }
    nav li {
      display: inline-block;
    }
    nav a {
      display: inline-block;
      background: ;
	  margin: 0px -2px;
      color: black;
      padding: 20px 30px;  /* INNER - TOP/BOTTOM, SIDES */
      text-decoration: none;
	  transition: 0.3s;
    }
    nav a:hover {
      background: #0099cc;
	  color: white;  /* ROLLOVER FONT*/
    }
    nav a:active {
      background: hsla(13,81%,27%,.65); /* ON-CLICK FOR A FRACTION OF A SEC */
    }
    nav select {
      display: none;
    }

    @media (max-width: 1180px) {
      nav ul     { display: none; }
      nav select { display: inline-block; }
    }