/* レイアウトの設定*/
body{
    margin:5px;
    padding:5px;
    text-align:center;
}
/* ラッパーの設定*/
#wrap{
    position:relative;
    width:600px;
    background-color:#FFFFCC;
    margin:0px auto;
    text-align:left;
}
/* 左側の設定*/
#left{
    width:150px;
    height:250px;
    float:left;
    background-color:#ffffff;
}
/* 右側の設定*/
#right{
    width:450px;
    height:550px;
    float:right;
    background-color:#FFECEC;
}
/* フッターの設定*/
#foot{
    position:relative;
    width:100%;
    height:50px;
    background-color:#FFECEC;
    clear:both;
}
