/* This is the stylesheet for SuggestionMaker.js.
It should make the div look like a drop down list!

 Joshua A. S. Allen.
*/

/* Rule for suggestions. */
.suggestion
	{
	background-color:#e0e0e0;
	color:black;
	padding-left:3px;}

/* Rule for suggestions when hovering. */
/*.suggestion:hover*/
.visibleSuggestions div:hover
	{
	background-color:#21449C;
	color:white;
	cursor:pointer;
	padding-left:3px;
}

/* Rule for parent div when visible! */
.visibleSuggestions
	{
	background-color:white;
	display:block;
	/* Always absolute! */
	position:absolute;
	/* Set for your pages. */
	z-index:2;}

/* Rule for parent div when invisible! */
.invisibleSuggestions
	{
	display:none;}
