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