/* レイアウトの設定*/
body{
    margin:0px;
    padding:0px;
    text-align:center;
}
/* ラッパーの設定*/
#wrap{
    position:relative;
    width:700px;
    background-color:#FFFFFF;
    margin:0px auto;
    text-align:left;
}
/* ヘッダーの設定*/
#head{
    width:700px;
    height:50px;
    background-color:#CCFFCC;
}
/* 左側の設定*/
#left{
    width:500px;
    float:left;
    background-color:#FFFFEE;
}
.clmntitle{
	color:#dd8888;
	font-size:small;
	font-weight:bold;
	border-bottom:1px solid #747e0a;
	margin-top:20px;
	padding:0 0 4px 2px;  /* 上 右 下 左 */
}

/* 右側の設定*/
#right{
    width:200px;
    float:right;
    background-color:#CCCCFF;
}
