/* レイアウトの設定*/
body{
    margin:0px;
    padding:0px;
    text-align:center;
}
/* 枠の設定*/
#waku{
    position:relative;
    width:600px;
    background-color:#FFFFCC;
    margin:0px auto;
    text-align:center;
}
/* ヘッダーの設定*/
#head{
    width:600px;
    height:110px;
    background-color:#006633;
    text-align:center;
    font-size:9pt;color:antiquewhite;
}
/* 左側の設定*/
#left{
    width:250px;
    height:350px;
    float:left;
    background-color:#FF9933;
    text-align:center;
    font-size:9pt;color:darkred;
}
/* 右側の設定*/
#right{
    width:350px;
    height:1000px;
    float:right;
    background-color:#9999FF;
    text-align:center;
    font-size:9pt;color:navy
}
/* フッターの設定*/
#foot{
    position:relative;
    width:100%;
    height:300px;
    background-color:#333333;
    clear:both;
    text-align:center;
    font-size:9pt;color:moccasin;
}

