/* CSS Document */



.accordion dt {
	position: relative;
	margin-bottom: 10px;
	padding-top: 15px;
	padding-right: 15px;
	padding-left: 60px;
	padding-bottom: 15px;
	font-size: 100%;
	text-align: left;
	color: #FFFFFF;
	font-weight: 500;
	}
.accordion dt:after {
	position: absolute;
	content: url(../images/op.png);
	top: 10;
	right: 1em;
}
.accordion dt.open:after {
	content: url(../images/cl.png );
}
.accordion dt:hover {
	cursor: pointer;
	cursor: hand;
	opacity: 0.6;
}
.accordion dt:nth-of-type(odd) {
	background-color: #7B7875;
}
.accordion dt:nth-of-type(even) {
	background-color: #EEEEEE;
}
.accordion dd {
	display: none;
	padding-left: 60px;
	background: url(../images/icon_a.png) top left no-repeat;
	font-size: 100%;
	line-height: 160%;
	text-align: left;
	padding-bottom: 50px;
}

@media only screen and (max-width: 641px) {
	.accordion {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}
	.accordion dt {
	min-height: auto;
	padding: 0.5em 2.0em 0.5em 0.5em;
	font-size: 90%;
	}
	.accordion dt:after {
		top: 10px;
		right: 0.5em;
		content: url(../images/opsp.png);
	}
	.accordion dt.open:after {
	content: url(../images/clsp.png );
}
	.accordion dd {
		padding-left: 50px;
		font-size: 90%;
	}
}
