div#search_bar {
margin: 0 auto;
max-width: 800px;
background-color: #edf6ff;
border-top: 1px solid #dce9f7;
padding: 5px 8px;
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 4px 10px;
font: 12px 'Droid Sans', Arial, sans-serif;
}

#sg_search_form {
position: relative;
display: flex;
gap: 6px;
flex: 1 1 260px;
max-width: 360px;
}

#search_bar a:link, #search_bar a:visited {
color: #233758;
text-decoration: none;
}

#search_bar a:hover {
color: #2370b9;
text-decoration: underline;
}

.search_links {
border-left: 1px solid #c9dcef;
padding-left: 10px;
color: #8b98a4;
white-space: nowrap;
}

#sg_search_input {
flex: 1;
min-width: 0;
font: 13px 'Droid Sans', Arial, sans-serif;
color: #233758;
padding: 4px 8px;
border: 1px solid #c9dcef;
border-radius: 3px;
background: #fff;
}

#sg_search_input:focus {
outline: none;
border-color: #2370b9;
}

#sg_search_form button {
font: bold 12px 'Droid Sans', Arial, sans-serif;
color: #fff;
background: #2370b9;
border: 0;
border-radius: 3px;
padding: 4px 12px;
cursor: pointer;
}

#sg_search_form button:hover {
background: #233758;
}

#sg_search_dropdown {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
margin-top: 2px;
background: #fff;
border: 1px solid #c9dcef;
border-radius: 3px;
box-shadow: 0 3px 10px rgba(0,0,0,.15);
z-index: 50;
text-align: left;
}

#sg_search_dropdown.open {
display: block;
}

#sg_search_dropdown a.sg_search_item {
display: flex;
align-items: baseline;
gap: 8px;
padding: 6px 10px;
font: 13px 'Droid Sans', Arial, sans-serif;
color: #233758;
text-decoration: none;
border-bottom: 1px solid #f0f4f8;
}

#sg_search_dropdown a.sg_search_item:hover, #sg_search_dropdown a.sg_search_item.active {
background: #edf6ff;
color: #2370b9;
}

.sg_search_type {
flex: 0 0 44px;
font-size: 10px;
text-transform: uppercase;
color: #8b98a4;
}

.sg_search_label {
flex: 1;
}

.sg_search_meta {
font-size: 11px;
color: #8b98a4;
white-space: nowrap;
}

#sg_search_dropdown a.sg_search_all {
font-weight: bold;
border-bottom: 0;
}
