/**
 * aheadWorks Co.
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the EULA
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://ecommerce.aheadworks.com/LICENSE-M1.txt
 *
 * @category   AW
 * @package    AW_Seacrhautocomplete
 * @copyright  Copyright (c) 2003-2010 aheadWorks Co. (http://www.aheadworks.com)
 * @license    http://ecommerce.aheadworks.com/LICENSE-M1.txt
 */

/* styles for entire widget */
.yui-ac {
    height:30px;
    width:287px;
    padding:8px 10px 0px 10px;
}

/* For Magento  1.3
label within container */
.yui-ac label
{
    display:none; 
    height:21px;
    width:0px;
    overflow:hidden;
    text-align:left;
    text-indent:-999em;
}
/* For Magento  1.3
button within container */
.yui-ac button
{
    display:block;
    padding:0;
    margin:0;
    width:auto;
    vertical-align:middle;
    overflow:visible;
    border:0 none;
    cursor:pointer;
    background:none repeat scroll 0 0 transparent;
    color:#2F2F2F;
    font:12px/15px Arial,Helvetica,sans-serif;
}
.yui-ac button span
{
    display:block;
    height:21px;
    padding:0 0 0 3px;
    background:url("../images/aw_searchautocomplete/btn_search.gif") no-repeat scroll 0 0 transparent;
    color:#FFFFFF;
    text-align:center;
    white-space:nowrap;
    font:bold 11px/21px Tahoma,Verdana,Arial,sans-serif;
}
.yui-ac button span span
{
    background-position:100% 0;
    padding:0 6px 0 3px;
}

/* results container */
#myContainer,
.yui-ac-container {
	border:none;
    position:relative;
    left:-11px !important;
	top:4px !important;
    z-index:999;
	line-height:1.4em;
}

/* results content */
.yui-ac-content {
	background-color: #FFF;
	border:solid 2px #6e6e6e;
	width: 304px;
	padding:0;
    margin:0;
	font-size:1.1em;
}

.yui-ac-content strong { font-size:.9em; }

/* header within container */
.yui-ac-hd {
	color:#fff;
	display:block;
	background:#999;
	padding:2px;
	font-size:.9em;
	text-align:center;
	font-style:italic;
}

/* item list (ul) container */
.yui-ac-bd {
}

/* items container*/
.yui-ac-content ul,
.header .form-search .search-autocomplete ul {
	background-color:#ffffff;
    border:none;
}

/* result item */
.header .form-search .search-autocomplete li,
.yui-ac-content li
{
    border:none;
	margin:0;
	padding:5px;
	cursor:pointer;
}
.yui-ac-highlight { /* highlighted result item */
	background-color: #e4e4e4;
}
.searched-words { /* highlight of the words being searched */
	background:#3399ff;
	color:#fff;
}
#myInput {
    float:left;
    width:215px;
	height:15px;
	padding:2px;
	border:1px solid #5C7989;
	font:12px arial,helvetica,sans-serif;
	vertical-align:middle;
	text-align:left;
}

