





/* 

iss.css
rather than edit this file, copy it to your template directory and 
edit it there: e.g. twentyten/iss.css 

contents:

	1. instant search & suggest plugin

*/


/* 1. instant search & suggest plugin
--------------------------------------------------------------------------------------- */

/* force a scrollbar to stop visual jumping */ 
html 
	{
	overflow-y: scroll; 
	}

.iss_results 
	{
	background: #eee;
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	z-index: 10000;
	-webkit-border-bottom-right-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
	max-width: 300px; /* set this to the width of your search box */
	}

.iss_results li 
	{
	padding: 5px 10px;
	text-align: left;
	word-wrap: break-word;
	}
	
.iss_over 
	{
	background: #ccc;
	cursor: pointer;
	color: #000;
	}

.iss_results li:last-child,
.iss_reuslts li.ac_over:last-child
	{
	-webkit-border-bottom-right-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
	}

.iss_match
	{
	text-decoration: underline;
	}

/* while search is being performed show loading icon */

.iss-on
	{
	background-image: url(images/wp-content-plugins-instant-search-suggest-assets-images-loader.gif) !important;
	background-repeat: no-repeat !important;
	background-position: 98.5% center !important;
	}