/* CSS Document */
/*widthは並べたい枚数にあわせて調整*/
#gallery{
	width:auto;
	background-color:#ffffff;
	margin: 20px;
}
/*widthは写真の大きさにあわせて調整
font-sizeは固定した方が良い*/
dl{
    margin:0px;
    margin-right:10px;
    margin-bottom:1em;
    padding:0px;
    float:left;
    width:120px;
    font-size:10px;
    border-width:1px 1px 0px;
    border-style:solid;
    border-color:#0066CC;
}
dt{
    margin:0px;
    padding:0px;
	height:180px;
}
dd{
    margin:0px;
    padding:4px 0.5em;
    border-color::#7F2D00;
    border-bottom:1px solid;
}
/*heightは行数＋α。*/
dd.name{
    height:2.2em;
}
dd.comment{
    height:7.4em;
    background-color:#fffff0;
}
dd.comment_ad{
	height:22.4em;
	background-color:#fffff0;
	font-size: 10px;
}
dd.date{
    height:1.2em;
}
