/* レイアウトの設定*/
body{
    margin:0px;
    padding:0px;
    text-align:center;
}
/* ラッパーの設定*/
#wrap{
    position:relative;
    width:100%;
    background-color:#FFFFFF;
    margin:0px auto;
    text-align:left;
}
/* ヘッダーの設定*/
#head{
    width:100%;
    height:50px;
    background-color:#CCFFCC;
}
/* 左側の設定*/
#left{
    width:70%;
    float:left;
    background-color:#FFFFEE;
}
/* 右側の設定*/
#right{
    width:30%;
    float:right;
    background-color:#CCCCFF;
}
s