#menuBlock {
    display: block;
    flex-grow: 1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: black;
    background-color: darkgray;
    margin-bottom: 35px;
    padding: 0px 10px;
    font-size: 20px;    
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    border-style: solid;
    border-color: silver;
    border-width: 3px;
    overflow: hidden;
    height: 40px;
}

#menuBlock a {
    text-decoration: none;    
    color: black;
    font-size: 20px;
    line-height: 40px;
}

#menuBlock a:visited {
    color: black;
}

#menuBlock a:link {
    color: black;
}

#menuBlock a:hover {
    color: #0844ed;
}

.menuHeader {
    margin: 0;
    font-size: 1.1em;
    color: White;
}

.spacer {
    display: inline-block;
    width: 25px;
}

.searchBlock {
    display: flex;
    width: 100%;
    max-width: 500px;
    min-width: 275px;
    height: 40px;
    color: white;
    border: 1px solid white;
    line-height: 40px;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.searchBlock label {
    display: inline;
    flex: 0;
    border-right: 1px solid white;
    text-align: right;
    margin-left: 5px;
}

.searchBlock .searchText {
    display: inline;
    flex: 1;
    margin: 5px 0;
    font-size: .9em;
}

.searchBlock .searchSubmit {
    display: inline;
    flex: 0;
    background: none;
    color: white;
    font-size: 25px;
    border-color: white;
    border-style: solid;
    border-width: 0 0 0 1px;
    cursor: pointer;
}

@media (max-width: 735px) {
    #menuBlock {
        padding: 0px 5px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        border-width: 3px 0px;
        /*height: 24px;*/
    }
}

@media (max-width: 450px) {
    #menuBlock a {
        font-size: 15px;
        /*line-height: 21px;*/
    }
}