
/* Style the buttons that are used to open and close the accordion panel */
.dp-accordion {
	/*  background-color: #eee;*/
	color: #444;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: 0.4s;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.dp-accordion.active, .dp-accordion:hover {
	background-color: #cfb2cf;
}
   .highlighted { background: yellow }
/* Style the accordion panel. Note: hidden by default */
div.panel {
	padding: 0 18px;
	background-color: #fdfafd;
	max-height: 0;
	overflow: hidden;
	transition: 0.6s ease-in-out;
	opacity: 0;
	margin-bottom:6px;
}
/* The "show" class is added to the accordion panel when the user clicks on one of the buttons. This will show the panel content */
div.panel.show {
	display: block;
	opacity: 1;
	padding:15px;
	max-height: 500px; /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */
}
.dp-accordion:after {
    content: '͕'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: left;
    margin-left: 5px;
	margin-right:20px;
	color:#B15EB2;
	margin-top:-4px;
}

.dp-accordion.active:after {
    content: "̬"; /* Unicode character for "minus" sign (-) */
}
.row-dk-purple {
	background-color: #f3e9f3;
}
.row-lt-purple {
	background-color: #fdfafd;
}
.pc-faq h2 {
	padding:25px 0 5px 0;
}
.pc-faq li {
line-height:150%;
list-style:inside;
}
.block-three-up {
	width:310px;
}

