.ac_results {
	padding: 0px;
	border: 1px solid black;
	background-color: white;
	overflow: hidden;
	z-index: 99999;
}

.ac_results ul {
	width: 100%;
	list-style-position: outside;
	list-style: none;
	padding: 0;
	margin: 0;
}

.ac_results li {
	margin: 0px;
	padding: 2px 5px;
	cursor: default;
	display: block;
	/* 
	if width will be 100% horizontal scrollbar will apear 
	when scroll mode will be used
	*/
	/*width: 100%;*/
	font: menu;
	font-size: 12px;
	/* 
	it is very important, if line-height not setted or setted 
	in relative units scroll will be broken in firefox
	*/
	line-height: 16px;
	overflow: hidden;
}

.ac_loading {
	background: white url('indicator.gif') right center no-repeat;
}

.ac_odd {
	background-color: #eee;
}

.ac_over {
	background-color: #0A246A;
	color: white;
}
/* jqModal base Styling courtesy of;
	Brice Burgess <bhb@iceburg.net> */

/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
	the Window's z-index value will be set to 3000 by default (via jqModal.js). */
	
.jqmWindow {
    display: none;
    
    position: fixed;
    top: 17%;
    left: 50%;
    
    margin-left: -300px;
    width: 600px;
    
    color: #333;
	
	z-index:100000;
}

.jqmClose_container { position:relative; float:right; margin-right:-2px; }

.jqmOverlay { background-color: #000; }

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.jqm {position:absolute;top:0;left:0;z-index:-1;
	width: expression(this.parentNode.offsetWidth+'px');
	height: expression(this.parentNode.offsetHeight+'px');
}

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html .jqmWindow {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

#current_tooltip {
	position: absolute;
	z-index: 10000;
	border: 1px solid #CBCBCB;
	background-color: #eee;
	padding: 5px;
	opacity: 0.85;
	font-size:12px;
	width:300px;
	height:165px;
	display:none;
}

#current_tooltip h3, #current_tooltip div { margin: 0; }

#current_tooltip .title {
	font-weight:bold;
	color:#4F2500;
	border-bottom: 1px solid #CBCBCB;
	margin:0;
	padding:3px 0;
	width:100%;
	overflow:hidden;
}

#current_tooltip .summary {
	font-size:10px;
	margin-top:5px;
	height:120px;
	width:300px;
	overflow:hidden;
	border-bottom:1px solid #CBCBCB;
}

#current_tooltip .summary p {
	margin-top:2px;
}

#current_tooltip .readMore {
	text-align:right;
	margin:3px 0 0 0;
	font-size:11px;
	color:#80452B;
}

#current_tooltip a:hover {
	background-color:#ffffd5;
}

