/*
 * Date: August 28, 2012
 *
 * suggestions.css
 * CSS stylesheet controlling the 'did you mean' suggestions drop-down
 * Copyright (C) 2012 by Daniel Vidoni, Sydney Australia, All rights reserved.
 * Web: www.storefinder.com.au
 *
 * You may not distribute this code in any manner, modified or otherwise, without the express, written
 * consent from Daniel Vidoni.
 * 
 * You may make modifications and / or install this file on your servers for the purpose of
 * providing your website with store finder functionality.
 *
 * In all cases copyright and header must remain intact.
 */

/* === INPUT FIELD === */
#localityInput, #sf_locality {
	width: 210px;
	padding-left: 10px;
	margin-right: 10px;
	height: 26px;
	border: 1px solid grey;
	font-weight: bold;
	font-size: 11pt;
	text-transform: uppercase;
	color: #ff7000;
	float: left;
}

/* === SUGGESTIONS PANEL === */
#suggestionsPanel, #suggestions_panel, #sf_didyoumean {
	position: absolute;
	display: none;
	border: 1px solid #666;
	border-top: none;
	overflow-x: clip;
	overflow-y: scroll;
	scrollbar-width: none;
	max-height: 250px;
	z-index: 1000;
	box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.333);
}

/* === SUGGESTIONS LIST === */
#suggestionsList {
	list-style: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	font-size: 8.5pt;
	font-weight: normal;
	color: #000;
	white-space: nowrap;
}

/* drop-down list items */
#suggestionsList li {
	padding: 3px;
	margin: 0;
	height: 22px;
	align-content: center;
	font-size: 10pt;
}

/* drop-down row and hover colours */
#suggestionsList li.even {
	background-color: #fff;
}

#suggestionsList li.odd {
	background-color: #ddd;
}

#suggestionsList li.hover {
	color: #fff;
	background-color: #F90;
}

/* === ACTIVITY INDICATOR === */
#suggestions_loading_img {
	display: none;
	position: absolute;
	margin: 0;
	padding: 0;
	top: 80px;
	left: 160px;
}

/*
 * end of CSS
 */
 