/* レイアウトの設定*/
body{
    margin:0px;
    padding:0px;
}
/* 左側の設定*/
#left{
    width:10%;
    height:2000px;
    float:left;
    background-color:#0000FF;
}
/* 右側の設定*/
#right{
    height:1200px;
    margin-left:10%;
    background-color:#FFFFFF;
}
/* フッターの設定*/
#foot{
    position:relative;
    width:100%;
    height:100px;
    background-color:#0000FF;
    clear:both;
}
