@charset "utf-8";
/* CSS Document */

/** base **/
html,
body{
    height:100%;
    overflow-y:hidden;
}
body{
    position:relative;
    min-width:1600px;
    font-family:  "Dotum", "Arial", sans-serif;
    font-size:12px;
    color:#333;
}



/** scrollBox **/
.scrollBox{
    min-width:1200px;
    height:100%;
    position:relative;
}

.scrollBox .wrap{
    min-width:1200px;
    position:relative;
    overflow:hidden;
}

.scrollBox .wrap > div{
    height:1759px;
    position:relative;

}

.scrollBox .wrap .objs > li{
    position:absolute;
    left:50%;	/* 브라우저 창의 크기에 따라 반응을 해야 해서 가운데 기준을 잡는다 */
}





/** Scene01 **/
#scene01{
    background: url("../img/smeg/back02.png");
}



#scene01 .objs .face{
    top:0;
    margin-left:-692px;/* left값을 50%로 적용했기 때문에 마진값으로 위치를 조절한다 */
}





