/*
 * basic.css for TMTS
 * Contains basic page styling
 */

html{
    padding: 0;
    margin: 0;
    height: 100%;
}

@font-face{
    font-family: "IPA-JA";
    src: url("/static/fonts/IPA-JA.ttf");
    font-weight: normal;
    font-style: normal;
}

body{
    padding: 0;
    margin: 0;
    height: 100%;

    background-color: #eaeaea;
    color: #000000;
    font-family: IPA-JA;

    overflow-x: hidden;
    cursor: default;
    text-rendering: optimizeLegibility;
}

img{
    border: none;
    margin: 0;
}

.rightIndent{
    margin-right: 3px;
}

#wrapper{
    position: relative;
    margin: 0 auto;
    padding-top: 60px;

    padding-bottom: 20px;

    overflow: auto; /* make div expand to cover panels */
}

#node-wrapper{
    position: relative;
    margin: 0 auto;
    padding-top: 30px;

    padding-bottom: 20px;

    overflow: auto; /* make div expand to cover panels */
}

.separateFromTop{
    position: relative;
    top: 60px;
}
