/* レイアウトの設定*/
body{
    margin:0px;
    padding:0px;
}
/* 左側の設定*/
#left{
    width:20%;
    height:500px;
    float:left;
    background-color:#FFAC99;
}
/* 右側の設定*/
#right{
    height:500px;
    margin-left:20%;
    background-color:#CCCCFF;
}
/* フッターの設定*/
#foot{
    position:relative;
    width:100%;
    height:100px;
    background-color:#CCFFCC;
    clear:both;
}