#accordion-container {
	background: #ffffff;
	width:99%;
}

.accordion-header {
	font-size: 14px;
	background: #f4f4f4;
	margin: 5px auto 0 auto;
	padding: 0px;
	border: 1px solid #ddd;
	cursor: pointer;
	color: #666666;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	width:98%;
}


.siteTit{
	padding:15px 10px 0 10px;
	min-width:270px;
}

.siteName{
	width:150px;
	float:left;
}

.active-header {
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	background-image:
    url("images/active-header.gif"), /* 最前面の背景レイヤーの背景画像 */
    -moz-linear-gradient(top center, #feeddd 0%, #ffe5ce 100%);
	background: url(images/active-header.gif) repeat 0 0,
	-moz-linear-gradient(top, #feeddd, #ffe5ce 20%, #eee);
	background: url(images/active-header.gif) repeat 0 0,
	-webkit-gradient(
	linear,
	left top, left bottom,
	color-stop(0, #feeddd),
	color-stop(100%, #ffe5ce));
	background-repeat: no-repeat;
	background-position: right 50%;	
}


.inactive-header {
	background: url(images/inactive-header.gif) #f4f4f4;
	background-repeat: no-repeat;
	background-position: right 50%;
}


.accordion-content {
	display: none;
	padding: 5px 0px 20px 0px;
	background: #ffffff;
	margin:0 0px 0 10px;
	width:97%;
}