/*
 * Firefox 3 - HUD location bar (awesome bar) drop-down menu
 *
 * Author      : Josep Crespo i Santacreu
 * Contact     : battleprogrammertidus at gmail dot com
 * Created     : August 31, 2008
 * Description : Shows the drop-down menu in the location bar with a style comes closest to HUD
 * Usage       : Use with the Stylish Firefox extension (http://userstyles.org/)
 * Licence     : http://creativecommons.org/licenses/by-nc-sa/3.0/
 */


@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);


/* -----------------------------------------------
 * Drop-down menu container
 * ----------------------------------------------- */

#PopupAutoCompleteRichResult
{ 
	margin-left: 10px !important;
	padding-right: 20px !important;
	background: none !important;
}


/* -----------------------------------------------
 * The drop-down menu box
 * ----------------------------------------------- */

.autocomplete-richlistbox
{
	background-color: #333333 !important;
	-moz-border-radius-bottomleft: 10px !important;
	-moz-border-radius-bottomright: 10px !important;
}


/* -----------------------------------------------
 * Rows of the drop-down menu
 * ----------------------------------------------- */

.autocomplete-richlistitem
{
	color: white !important;
}


/* -----------------------------------------------
 * The last row of the drop-down menu
 * ----------------------------------------------- */

.autocomplete-richlistitem:last-child
{
	border-bottom: none !important;
	-moz-border-radius-bottomleft: 10px !important;
	-moz-border-radius-bottomright: 10px !important;
}


/* -----------------------------------------------
 * URL directions
 * ----------------------------------------------- */

.ac-url-text
{
	color: #82BDFF !important;
}


/* -----------------------------------------------
 * The URL bar Go button
 * ----------------------------------------------- */

#go-button
{ 
	display: none !important;
}