/*クリックで展開と折りたたみが出来るソース：CSS版*/

div.info{
/*	width:500px;	*/
	padding: 10px;
	text-align: center;
}

div.info a{
	padding:5px 0px;	
		/*余白*/
/*	padding-top: 3px;	*/
/*	padding-left: 10px;	*/
/*	padding-right: 10px;*/
/*	padding-bottom: 3px;*/
/*	margin: 30px;		*/
}

/*ボタンに見えるようにしたレイアウト*/
span.btn {
	/*一旦、下線を無くして*/
	text-decoration: none;				
	/*ボックスの左線の設定*/
	border-left: 3px solid #ffdd99;
	/*ボックスの上線の設定*/
	border-top: 3px solid #ffdd99;
	/*ボックスの右線の設定*/
	border-right: 3px solid #ddbb11;
	/*ボックスの下線の設定*/
	border-bottom: 3px solid #aa9922;
	/*背景色*/
	background: #ffbb66;
	padding-top: 3px;	
	padding-left: 10px;	
	padding-right: 10px;
	padding-bottom: 3px;
	color: #000000;
	width: 150px;
	cursor: pointer;
}

div.moreInfo{
	display: none;
	padding: 20px;
	background-color: #f2f2f2;
	text-align: left;
}


