
html, body {
    height: 100%
}


body {
    overflow: hidden;
}




#selector-container  {
    top: 3px;
    position : relative;
}

.selector-separator  {
    position : relative;
    top: 4.5px;
}


#quick-links  {
    top: 4.5px;
    position: relative;
}

#quick-links > a {
    margin-right: 10px;
    font-size: 10px;
}

#brand  {
    top: 6px;
    position: relative;
}


#menubar {
    height: 50px;
    background-color: #eee;
}

#menubar > * {
    margin: 5px;
}

#title {
    font-size: 14px;
    top: 8px;
    position: relative;
    color: inherit;
    text-decoration: inherit;
}

iframe {
    position: absolute;
    top: 50px;
    bottom: 50px;
    
    margin: 0px;
    padding: 0px;
    border: none;
    width: 100%;
    height: 100%;
}







/* modified from 
  http://stackoverflow.com/questions/20198247/twitters-typeahead-js-suggestions-are-not-styled-have-no-border-transparent-b */

.tt-input, .tt-hint {
    width: 180px;
    height: 30px;
    padding: 8px 12px;
    line-height: 30px;
    border: 2px solid #ccc;
    border-radius: 8px;
    outline: none;
}



.tt-input {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.tt-hint {
    color: #999;
}

.tt-menu {
    width: 422px;
    margin-top: 12px;
    padding: 8px 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,.2);

    max-height: 500px;
    overflow-y: auto;
}

.tt-suggestion {
    padding: 3px 20px;
    //font-size: 18px;
    line-height: 24px;
}

.tt-suggestion.tt-cursor, .tt-suggestion:hover {
    color: #fff;
    background-color: #0097cf;
}

.tt-suggestion p {
    margin: 0;
}