/* レイアウトの設定*/
body{
    margin:0px;
    padding:0px;
    text-align:center;
}
/* ヘッダーの設定*/
#head{
    height:35px;
    width:550px;
    background-color:#D9D9D9;
    vertical-align:middle
}
/* ラッパーの設定*/
#wrap{
    position:relative;
    width:550px;
    background-color:#FFFFFF;
}
/* 左側の設定*/
#left{
    float:left;
    width:200px;
    height:500px;
    background-color:#C7D5FF;
}
/* 真ん中の設定*/
#center{
    float:left;
    width:200px;
    height:500px;
    background-color:#C7D5FF;
}
/* 右側の設定*/
#right{
    float:left;
    width:150px;
    height:500px;
    background-color:#FFD5C7;
}
/* フッターーの設定*/
#foot{
    margin:0 auto;
    height:35px;
    width:550px;
    background-color:#D9D9D9;
    clear:both;
    vertical-align:middle
}