#divSuggestions /* the div that will be placed next to the search box */
{	
	position:absolute; /* the div's position will be set by placing it next to the search box */
	z-index:9050; /* z-index for the div */
	font-family:Arial, Helvetica, sans-serif;/* font for the suggestions */
	font-size:12px; /*font-size for the div */
	color:#111111; /* font color for the div */
	width:100px; /* width of the div */
}
#divSuggestions .yui-ac-content /* the content that will be placed inside the div */
{
	position:absolute; /* the content will be placed inside the div */
	left:0; /* distance from the left-top point of the div */
	top:0; /* distance from the left-top point of the div */
	border:1px solid #d2d2d2;  /*border of the content div */
	background-color:#fff;  /* background color for content */
	overflow:hidden; /* show/hide content flowing from the div */
	text-align:left; /* text-align of content */
	z-index:9050; /* z-index for the content */
	filter: alpha(opacity=0); /* Transperacy of the content, IE Support */
	/*opacity: .95;  Transperacy of the content */
	width:291px; /* width of the content */
}
#divSuggestions ul /* the list of suggestions */
{
	letter-spacing:0em; /* letter spacing */
	margin:0; /* margins for the ul */
	padding:5px 0; /* padding for the ul */
	width:100%; /* size relative to the content */	
}
#divSuggestions li /* a suggestion */
{
	padding:0 4px; /* padding for the suggestion */
	cursor:default; /* cursor type when hovering over a suggestion */
	white-space:wrap; /* break/don't break lines beyond the end of the li */
	cursor: pointer;
}
#divSuggestions li.ACQueryItem /* a suggestion */
{
	line-height:13pt  /* default line height for suggestions */
}

#divSuggestions li.ACQueryItem .ellipsis  /* a suggestion */
{
	line-height:20px;   /*default line height for suggestions */
	padding: 0 0 0 6px
}

#divSuggestions li.ACProductItem
{
	line-height:10pt;		/* increase this value if names are long and text overlaps */
	cursor: pointer;
	background-color:White; /* background color for the product suggetions */
	height: 57px
}
#divSuggestions li.ACHeaderItem /* a header */
{
	margin-left: 4px;
	margin-right: 4px;
	margin-bottom: 1px;	
	background-color:#dfdfdf;/* background color for the suggestion's heder, ie: Queries, Products */
	font-size:13px; /* font size for the headers */
	color:#000; /* color for the font */	
	line-height:30px; /* ling height for the headers */
	padding: 0 0 0 6px
}
#divSuggestions li.yui-ac-highlight /* highlighted suggestion */
{
	background-color:#dfdfdf; /* background color for highlighted content */
	color:#000; /* color for highlighted content */
	padding:0;
	margin:0px 5px 0px 4px;
	width: 283px
}
.ACproductText /* a product suggestion */
{
	font-family:Arial, Helvetica, sans-serif; /* font for the suggestions */
	font-size:12px; /* font size for the product suggestions */
	color:#000; /* font color for the product suggestions */
	vertical-align:center;
	padding-top:5px;
	line-height:18px
}
.ACproductText .ellipsis
{
	line-height:18px
}
U
{
	text-decoration: none;
}

.ACProduct /* a product suggestion */
{
	width:100%;
	margin:0;
	padding:2;
}
.ACProductImageCell 
{
	margin:0px 0px 0px 0px;
	padding:6px 5px 0px 0px;
}
img.ACProductImage /* product's image */
{
	width:45px; /* width */
	height:45px; /* height */
	padding: 0 0 0 6px
}
.Seperator /* Seperator between products */
{
	margin:2px 0px 0px 0px;
	width:95%;
	/*border-top:1px solid silver;*/
	font-size:1pt;
}
/*************************************  New Autocomplete css  ***********************************************/

.pac-container {
    /* background-color: #ebf2fe; */
    background-color: #fff;
    border-radius: 2px;
    /* border: 1px solid #000; */
    box-shadow: none; 
    /* box-sizing: border-box; */
    font-family: Arial,sans-serif;
    overflow: visible;
    position: absolute !important;
    z-index: 1000;
    min-width:350px;
}
.pac-logo::after {
    background-image: url("https://maps.gstatic.com/mapfiles/api-3/images/powered-by-google-on-white3.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 120px 14px;
    content: "";
    display: block;
    height: 16px;
    padding: 1px 1px 1px 0;
    text-align: right;
}
.hdpi.pac-logo::after {
    background-image: url("https://maps.gstatic.com/mapfiles/api-3/images/powered-by-google-on-white3_hdpi.png");
}
.pac-item {
    border: 1px solid #e6e6e6;
    background-color: #fff;
    color: #32465a;
    cursor: default;
    font-family: Verdana, Arial, sans-serif;
    font-size: 11px;
    line-height: 16px;
    margin: 0;
    overflow: hidden;
    padding: 5px 0;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width:350px;
}
.pac-item:hover {
    background-color: #ebf2fe;
}
.pac-item-selected, .pac-item-selected:hover {
    background-color: #ebf2fe;
}
.pac-matched {
    color: #336699;
    font-weight: bold;
}
.pac-item-query {
    color: #336699;
    display: block;
    font-size: 12px;
    padding-right: 3px;
}
.pac-icon {
    background-image: url("https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons.png");
    background-size: 34px auto;
    display: block;
    float: left;
    height: 20px;
    margin: 3px 5px 5px;
    padding: 0;    
    vertical-align: top;
    width: 15px;
}
.hdpi .pac-icon {
    background-image: url("https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons_hdpi.png");
}
.pac-icon-search {
    background-position: -1px -1px;
}
.pac-item-selected .pac-icon-search {
    background-position: -18px -1px;
}
.pac-icon-marker {
    background-position: -1px -161px;
}
.pac-item-selected .pac-icon-marker {
    background-position: -18px -161px;
}
.pac-placeholder {
    color: gray;
}
#ctl00_ContentPlaceHolder_shippingControl_addressControl_txtAddress1,
#ctl00_ContentPlaceHolder_billingControl_addressControl_txtAddress1 {
    /* background-image: url("/CSS30/images/bx-geoPinIcon.png"); */
    background-size: 8.5px;
    background-position: right center;
    background-repeat: no-repeat;
}
