	input.locationinput {
		width: 200px;
	}

	input.smalllocationinput {
		width: 150px;
	}

    div.autocomplete {
      width:300px !important;
      background-color:#606060;
      border:1px solid #888;
      margin:0px;
      padding:0px;
      overflow-x: hidden;
      overflow-y: auto;
      max-height: 70px;
    }
    div.autocomplete ul {
      list-style-type:none;
      margin:0px;
      padding:0px;
    }
    div.autocomplete ul li.selected { background-color: #999999;color: #ffffff}
    div.autocomplete ul li {
      list-style-type:none;
      display:block;
      margin:0;
      padding:1px;
      cursor:pointer;
      color: #ffffff;
    }
    * html div.autocomplete {
      overflow-y: expression(this.scrollHeight > 70 ? "scroll" : "");
      height: expression(this.scrollHeight > 70 ? "60px" : "");
    }
