/* root element for accordion_verygood. decorated with rounded borders and gradient background image */
#accordion_verygood {
	/*background:#FFFFFF url(image/bg.gif) repeat scroll 0;*/
	background:#FFFFFF;
	height:155px;		/*高度增減[1]*/
	padding:0px 0px 0px 0px; /*上 右 下 左	*/
	width:565px;
border-left: 1px solid #FEDC43;
border-right: 1px solid #FEDC43;
border-bottom: 1px solid #FEDC43;	
}

/* accordion_verygood header */   /*沒選中的*/
#accordion_verygood img {
	float:left;
	margin-left:0px;
	/*margin-top:10px;*/
	cursor:pointer;
	opacity:0.5;
	filter: alpha(opacity=50);
/*padding:3px 3px 3px 3px;*/
border : 11px solid #ffffff;
border-top-width: 20px;
border-top-style: solid;
border-top-color: #FFFFFF	
}

/* currently active header */    /*選中的*/
#accordion_verygood img.current {
	cursor:default;
	opacity:1;
	filter: alpha(opacity=100);
/*padding:3px 3px 3px 3px;*/
border : 20px solid #FFECCE;
border-bottom:	20px solid #FFECCE;	/*加強下半的邊線*/		/*高度增減[2]*/
border-left-width: 20px;
border-right-width: 8px;	
}

/* 
	accordion_verygood pane. should initially have zero width and display:none.
	the first pane should override these with inline style
*/
#accordion_verygood div {  /*文字*/
	/*width:0px;*/
	background-color:#FFECCE;
	/*background-color:#ffffff;*/
	width:173px;
	height:175px;		/*高度增減[3]*/
	float:left;	
	display:none;		
	margin-left:-3px;
}

/* content inside a pane should have fixed width */
#accordion_verygood div h3 { /*標題字*/
	color:#EA0000;
	margin:20px 0 -10px 0;  /*上 右 下 左	*/
	/*width:75px;*/
	
	width:148px;
	text-align:left;
	font-size:15px;	
}
	
#accordion_verygood div p {	/*灰色字大小   字寬*/
	color:#333333;
	text-align:left;
	font-size:13px;
	font-weight: normal;
	width:148px;
}

a:link {
	color: #EA0000;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #EA0000;
}
a:hover {
	text-decoration: underline;
	color: #EA0000;
}
a:active {
	text-decoration: none;
	color: #EA0000;
}