/*the container must be positioned relative:*/
.autocompleteBS {
  position: relative;
  /*display: inline-block;*/
}

.autocompleteBS-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocompleteBS-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocompleteBS-items div:hover {
  background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocompleteBS-active {
  background-color:  #d4d4d4 !important; 
  color: #ffffff;
}

#site-header {
    background-color: #6E5A39;
    border: 0px;
    border-radius: 0;
    margin-bottom: 0;
    padding: 0;
    text-align: center;
}

#site-header img {
    max-width: 650px;
    width: 100%;
}

h1.title {
    font-size: 1.8em;
    line-height: 1.0em;
    font-weight: bold;
    margin: 10px 0 10px 0;
}

h2.sub-title {
    font-size: 1.2em;
    line-height: 1.2em;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.bg-nav {
    background-color: #4B3D2C;
}

ul.flush li {
	margin: 0 0 5px -20px;
}
@media (max-width: 768px) {
    ul.flush li {
	    margin-bottom: 10px;
    }
}

.navbar-brand.active,
.navbar-nav .nav-item.active .nav-link, 
.navbar-nav .nav-item.active .nav-link:hover, 
.navbar-nav .nav-item.active .nav-link:focus {
    color: rgba(255, 255, 0, 1.0);
}


ul.multiCol {
    height: auto;
    width: 100%
}

ul.multiCol li {
    padding-right: 10px;
	margin-left: 0;
}

@media (min-width: 480px) {
    ul.multiCol {
        -webkit-column-count:1;
        -moz-column-count: 1;
        column-count: 1
    }
}

@media (min-width: 576px) {
    ul.multiCol {
        -webkit-column-count:2;
        -moz-column-count: 2;
        column-count: 2
    }
}

@media (min-width: 768px) {
    ul.multiCol {
        -webkit-column-count:3;
        -moz-column-count: 3;
        column-count: 3
    }
}

@media (min-width: 992px) {
    ul.multiCol {
        -webkit-column-count:4;
        -moz-column-count: 4;
        column-count: 4
    }
}

.spicePlaceholder {
	min-height: 90px;
}

/* Sticky Rail */
#RailSticky {
    height: auto !important;
    position: relative;
}

.stickyAd {
    position: fixed;
    top: 70px;
}

.stickyBottom {
    bottom: 20px;
    position: absolute;
}
