div.suggestions {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #808080;
    position: absolute;
    left: 300px;
	z-index:9999;	
}

div.suggestions div {
    cursor: default;
    padding: 0px 3px;
}

div.suggestions div.selected_item {
    background-color: #FFA500;
    color: black;
}


div.suggestions .odd_term {
	background-color: #F2F5D7;
	padding: 1px 0 1px 0;
}
div.suggestions .even_term {
	background-color: #FFDEFB;
	padding: 1px 0 1px 0;
}
div.suggestions .term_title {
	background-color: #BDB76B;
	color: #1e1e1e;
	font-weight: bold;
	padding: 5px 0 1px 0;
}

/* for search results in find_comm.htm */
div.committee_name_head{
	float: left;
	width: 100%;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #B0C4DE;
}
div.term_title2 {
	background-color: #B0C4DE;
	color: #00008B;
	font-weight: bold;
	line-height:2em;
}
div.committee_name_odd {
	float: left;
	width: 100%;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #FDF5E6;
}
div.committee_name_even {
	float: left;
	width: 100%;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #E0DCD0;
}

/***********************************************************************************************/
/* Go To Top Button */
/***********************************************************************************************/
.go-top {
	position: fixed;
	bottom: 2em;
	right: 2em;
	text-decoration: none;
	color: white;
	font-size: 1em;
	padding: 1em;
	display: none;
	background-color: #555555;  /* default color for browsers not support rgba */
	background: rgba(0, 0, 0, 0.5);  /* deliberately use background instead of background-color so that it will not affect the setting for not supported browsers above */
}

.go-top:hover {
	text-decoration: none;
	color: white;
	background-color: #222222;  /* default color for browsers not support rgba */
	background: rgba(0, 0, 0, 0.8);    /* deliberately use background instead of background-color so that it will not affect the setting for not supported browsers above */
}
