html, body {
    height: 100%;
}

.search {
    height: 100%;
    background-image: url("/images/investigative/Search-Bkgd.jpg");
}

.search-full {
    height: 100%;
    background-image: url("/images/backgrounds/Search-Bkgd.jpg");
    background-size: cover;
}

.search-full .search-box {
    margin: 5% auto;
    display: inline-block;
    text-align: left;
}

.search-box {
    padding: 1.5em;
}

.search-box input {
    border-radius: 0;
}

.search-box button {
    border: 0;
    border-radius: 0;
    font-size: 1.1em;
}

.search-wrapper {
    min-height: 100%;
    position: relative;
    margin: 0 auto -10.25em;
    text-align: center;
}

.office-results {
    list-style-type: none;
    list-style-type: decimal !ie; /*IE 7- hack*/
     
    margin: 0;
    margin-left: 1.5em;
    padding: 0;
     
    counter-reset: li-counter;
}

.office-results > li{
    position: relative;
    margin-bottom: 1.5em;
    padding-left: .5em;
    min-height: 3em;
    border-left: 2px solid #CCCCCC;
}

.office-results > li:before {
    position: absolute;
    top: 0;
    left: -1em;
    width: 0.8em;
     
    font-size: 2em;
    line-height: 1;
    font-weight: bold;
    text-align: right;
 
    content: counter(li-counter);
    counter-increment: li-counter;
}

.office-results.gold-num > li:before {
    color: #fc3;
}

.office-results.orange-num > li:before {
    color: #f90;
}

.office-type {
    cursor: pointer;
    opacity: .25;
    border: 2px solid #FC3;
}

.office-type.active {
    opacity: 1;
    background: #FC3;
    color: #000;
}