/*
 * 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.
 *
 */
 

/* redundant div container. used for developmenr. Can probably delete */
#inputDialogueLayer
{
	position:absolute;
	padding:0px;
	margin:0px;
	height:300px;
  [if !IE] width: 300px;  	/* specify width for non IE browsers */
	z-index:1;
	opacity:0;
/*	Filter:Alpha(Opacity=0, FinishOpacity=0, Style=1, StartX=0, StartY=15, FinishX=0, FinishY=1); */
}

/* search input box where users type in their postcode or suburb */
#sf_locality
{
	width:230px;
	border:solid #bbb 1px;
	border-bottom:solid #ddd 1px;
	border-right:solid #666 1px;
	font-weight:bold;
	font-size:11pt;
	line-height:25px;
	height:25px;
	text-transform:uppercase;
	color:#ff7000;
}

/* redundant search container. used for developmenr. Can probably delete */
#search
{
	font-size:11pt;
	line-height:20px;
}

/* suggestions drop-down container */
#suggestions_panel, #sf_didyoumean {
	background-color:#fff;
	border:solid #bbb 1px;
	border-top:none;
	border-bottom:solid #666 1px;
	border-right:solid #666 1px;
	padding:0px;
	margin:0px;
	position:absolute;
	left:33px;
  top:100px;
	overflow:auto;
	white-space:normal;
	display:none;
	text-align:left;
	width:275px;
	max-height:176px;
	z-index:1000;
/*	height:180px; */
}

/* suggestions drop-down */
#suggestionsList {
/*	max-height:195px; */
	list-style:none;
	list-style-type:none;
/*	line-height:20px; */
	padding:0px;
	margin:0px;
	cursor:pointer;
	font-size:8.5pt;
	font-weight:normal;
	color:#000;
}

/* drop-down list items */
#suggestionsList li {
	padding:3px;
	margin:0px;
	height:16px;
	line-height:16px;
}

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

/* suggestions/'did you mean' activity spinner */
#suggestions_loading_img {
	display:none;
	position:absolute;
	margin:0px;
	padding:0px;
	top:80px;
	left:160px;
}


/*
 * end of CSS
 *
 */
