/* レイアウトの設定*/
body{
    margin:0px;
    padding:0px;
    text-align:center;
	background-color:#FFFFFF;
	background-image:url(img/bg.gif);
}
/* ラッパーの設定*/
#wrap{
    position:relative;
    width:700px;
    background-color:#FFFFFF;
    margin:0px auto;
    text-align:left;
	border:solid #000000;
}
/* ヘッダーの設定*/
#head{
    width:700px;
	height:auto;

	text-align:center;
}
/* 左側の設定*/
#left{
    width:350px;
    height:550px;
    float:left;
	background-image:url(img/bg2.gif);
	background-position:bottom;
	background-repeat:no-repeat;
	}
/* 右側の設定*/
#right{
    width:350px;
    height:550px;
    float:right;
	background-image:url(img/bg3.gif);
	background-position:right;
	background-repeat:no-repeat;
}
/* フッターの設定*/
#foot{
    position:relative;
    width:100%;
	height:auto;
	background-color:#000000;
    clear:both;
}
