﻿#borderimg {
    border-style: solid;
    border-width: 22px;
    padding: 1px;
    border-image: url("images/Bckgrd/box.png") 23 23 round;
}

#icon-bar {
    background-color: red;
    left: 0;
    z-index: 9999;
    width: 100%;
    white-space: nowrap;
    overflow: auto;
    text-align:left;
    font-size:0;
}

    #icon-bar > b > img {
        vertical-align: top;
        padding-top: 7px;
    }

    #icon-bar a {
        background-color: red;
        display: inline-block;
        transition: all 0.3s ease;
        text-decoration: none;
        color: white;
        font-size: medium;
        font-family: 'Times New Roman';
    }

        #icon-bar a:hover {
            transition: all 1s ease;
            background-color: black;
            text-decoration: underline
        }

#search {
    width: calc(100% - 810px);
    min-width: 150px
}

.below {
    padding: 0;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

    .sticky + .below {
        padding-top: 154px;
    }

.active {
    background-color: #FFF;
}

body {
    padding:0;
    margin:0;
}

.but1 {
    -webkit-transition-duration: 0.4s;
}

    .but1:hover {
        box-shadow: 0 6px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
        cursor:pointer;
    }

.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
}


.autocomplete-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;
}

    .autocomplete-items div {
        padding: 10px;
        cursor: pointer;
        background-color: #fff;
        border-bottom: 1px solid #d4d4d4;
    }

        .autocomplete-items div:hover {
            /*when hovering an item:*/
            background-color: #e9e9e9;
        }

.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}