/* CSS Document */
* {
    margin: 0;
}
html, body {
    height: 100%;
    overflow: auto;
}
.wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: auto;
}
.detail {
    position: fixed;
    left: 35px;
    top: 46px;
}
* html .detail {
    position: absolute;
}

