#content input
{
    width:80%;
	 margin: 10px auto;
	 margin-left: 10px;
	 margin-right: 10px;
	-webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
	   box-sizing:border-box;
}

* {
			/*  box-sizing: border-box;  */
			}

			#myInput {
			  background-image: url('img/searchicon.png');
			  background-position: 10px 10px;
			  background-repeat: no-repeat;
			  width: 100%;
			  /* font-size: 18px; */
			  padding: 8px 20px 8px 40px;
			  border: 1px solid #5e75ba;
			  /* border-radius: 10px; */
			  margin-bottom: 12px;
			}

			#myUL {
			  list-style-type: none;
			  padding: 0;
			  margin: 0;
			}

			#myUL li a {
			  border: 1px solid #ddd;
			  margin-top: -1px; /* Prevent double borders */
			  background-color: #fff;
			  padding: 0px;    /* 12 originally */
			  text-decoration: none;
			  /* font-size: 15px; */
			  color: black;
			  display: block
			}

			#myUL li a.header {
			  background-color: #e2e2e2;
			  cursor: default;
			}

			#myUL li a:hover:not(.header) {
			  background-color: #eee;
			}
			
			#myUL li :nth-child(odd) {
				background-color: # #f2f2f2;
			}
			#myUL li :nth-child(even) {
				background-color: # #FFF;
			}
			
		

		
