/*
 * jQuery UI Autocomplete 1.8.6
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Autocomplete#theming
 */
.ui-autocomplete { 
  position: absolute; cursor: default; max-height:300px; overflow:auto; z-index:10000; display:inline-block; width:auto;*display:inline;*overflow-x:hidden;
 }	

/* workarounds 
* html .ui-autocomplete { width:auto; background-color:#996} /* without this, the menu expands to 100% in IE6 */

/*
 * jQuery UI Menu 1.8.6
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Menu#theming
 */
.ui-menu {
	list-style:none;
	padding: 0px;
	margin: 0;
	background-color:#FFF;
	border:1px solid #ccc;
	list-style-position:outside;
	font-family:Arial, Helvetica, sans-serif;
	-webkit-box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.4);
	-moz-box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.4);
	box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.4);
}
.ui-menu .ui-menu {
	margin-top: 30px;
}
.ui-menu .ui-menu-item {
	margin:0px;
	padding:0px;
}
.ui-menu-item.even{
	/*background-color:#edebee;*/
}
.ui-menu .ui-menu-item a {
	text-decoration:none;
	display:block;
	padding:5px 5px 5px 6px;
	line-height:1.5;
	color:#222;
	margin:0px;
	font-size:12px;
}
.ui-menu .ui-menu-item a:hover {
	color:#222;
}
.ui-menu .ui-menu-item a.ui-state-hover,
.ui-menu .ui-menu-item a.ui-state-active {
	font-weight: normal;
	color:#222;
	background-color:#f6f6f6;
        border: 0px;
}
.ui-menu .ui-menu-item a b{
	padding:0px;
	margin:0px;
}
.ui-bgIframe{
	background-color:transparent;
	position:absolute;
	left:0px;
	top:0px;
	height:0px;
	width:0px;
	filter:Alpha(Opacity='0');
}